.freeform-form button[type=submit].freeform-processing {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
}
.freeform-form button[type=submit].freeform-processing:before {
    content: "";
    display: block;
    flex: 1 0 11px;
    width: 11px;
    height: 11px;
    margin-right: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent transparent #fff #fff;
    border-radius: 50%;
    animation: freeform-processing .5s linear infinite;
}
.freeform-form .freeform-fieldtype-table [type=radio] {
    display: inline;
    padding: 0;
    margin-right: 8px;
}
.freeform-form .freeform-fieldtype-table [type=radio] + label {
    display: inline;
}
@keyframes freeform-processing {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(1turn);
    }
}
.freeform-form label.required:after {
    content: "*";
    color: #d00;
    margin-left: 3px;
}
.freeform-form .alert p:last-of-type {
    margin-bottom: 0;
}
.freeform-form .mt-n1 {
    margin-top: -0.5rem !important;
}