.smartcaptcha-check {
    width: 100%;
    min-width: 0;
    margin: 0;
    color: #697180;
    text-align: left;
}

.smartcaptcha-check__widget {
    width: 100%;
    min-height: 1px;
}

.smartcaptcha-check__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    margin: 0;
    color: #697180;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-align: left;
}

.smartcaptcha-check__shield {
    flex: 0 0 auto;
    color: #7b8493;
    font-size: 12px;
}

.smartcaptcha-check__spinner {
    display: none;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border: 2px solid #c5cad2;
    border-top-color: #697180;
    border-radius: 50%;
    animation: smartcaptcha-spin .7s linear infinite;
}

.smartcaptcha-check__status[data-state="checking"] .smartcaptcha-check__shield {
    display: none;
}

.smartcaptcha-check__status[data-state="checking"] .smartcaptcha-check__spinner {
    display: inline-block;
}

.smartcaptcha-check__status[data-state="verified"] {
    color: #39733b;
}

.smartcaptcha-check__error {
    margin-top: 6px;
    color: var(--red, #a3211a);
    font-size: 13px;
    line-height: 1.35;
}

.smartcaptcha-check__error:focus {
    outline: none;
}

.smartcaptcha-check__error:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 2px;
}

.smartcaptcha-check.is-invalid .smartcaptcha-check__status {
    color: #a3211a;
}

.smartcaptcha-check--ticket {
    margin-top: -2px;
}

.smartcaptcha-check--ticket .ticket-quick-order__field-error {
    margin-top: 6px;
}

.smartcaptcha-check--one-click,
.smartcaptcha-check--ajaxform {
    margin: 4px 0 14px;
}

.is-smartcaptcha-pending [type="submit"] {
    cursor: wait;
}

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

@media (max-width: 640px) {
    .smartcaptcha-check__status,
    .smartcaptcha-check__error {
        font-size: 12px;
    }
}
