.errorBox {
    margin-top: 32px;
}
.errorBox div {
    margin-bottom: 0;
}
.formControl>div select+label, .formControl>div textarea+label {
    top: 8px;
    font-size: 12px;
}
.spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    right: 10px;
    margin: -40px 0 0 -30px;
    width: 25px;
    height: 25px;
}
.spinner .path {
    stroke: rgb(0 109 181);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.tax-spinner {
    display: none;
}
.fs-12 {
    font-size:12px
}