/* FORM SUBMIT BUTTON SPINNER
   Selectors are prefixed with .wpcf7-form on purpose: Contact Form 7 prints its
   own stylesheet in the footer (after this one), so equal-specificity rules
   lost and the stock grey circle came back. Specificity, not order, decides. */
.button-container {
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
}
.button-container.gy-cf-right {
    justify-content: flex-end;
    float: right;
}
.button-container.gy-cf-center {
    justify-content: flex-end;
    margin: auto;
}
.wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}
.wpcf7-form .wpcf7-spinner {
    display: none;
    width: 16px;
    height: 16px;
    margin: 0;
    position: absolute;
    left: 12px;
}
.wpcf7-form .wpcf7-submit.submitting {
    padding-left: 36px;
}
.wpcf7-form .wpcf7-submit.submitting .wpcf7-spinner {
    display: inline-block;
}
.wpcf7-form .wpcf7-spinner {
    width: 20px;
    height: 20px;
    border: 4px solid #0B1D45;
    opacity: 1;
    border-bottom-color: transparent;
    background: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}
.wpcf7-form .wpcf7-spinner:before {
    display: none;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}