form[data-job-apply-captcha] .form__submit button[aria-busy="true"] {
    cursor: wait;
    opacity: .72;
}

.job-apply-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #5c6067;
}

.job-apply-progress[hidden] {
    display: none;
}

body.vacancy-page .job-apply-progress {
    color: #fff;
}

.job-apply-progress__spinner {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: job-apply-spin .7s linear infinite;
}

@keyframes job-apply-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .job-apply-progress__spinner {
        animation: none;
        border-right-color: currentColor;
    }
}
