span.error {
    display: none !important;
}


/* Анимация тряски */
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20%,
    60% {
        transform: translateX(-5px);
    }
    40%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Подсветка label при неотмеченном чекбоксе */
.form-check-label.highlighted {
    color: #d9534f !important;
    transition: color 0.3s;
}

/* Подсветка ссылки внутри label, если она есть */
.form-check-label.highlighted a {
    color: #d9534f !important;
    text-decoration: underline;
}

/* Подсказка-ошибка рядом с чекбоксом (если используешь) */
.policy-hint {
    color: #ff0000;
    font-size: 12px;
    margin-left: 10px;
    font-weight: normal;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.form-check:has(.form-check-input.error) *{
    color: #d9534f !important;
}
.header__logo, .footer__logo {
    text-decoration: none;
}

.form-control {
    border: 1px solid #c3c3c3;
}

@media (min-width: 992px) {
    .logo.small .d-lg-block {
        display: flex !important;
    }
}

.cases__title {
    font-size: 3rem;
}

.reviews__title {
    font-size: 3.2rem;
}

@media (max-width: 991.98px) {
    .cases__title, .reviews__title {
        font-size: var(--fs-1);
    }
}

.logo__img {
    height: 4.5em;
}

.header__card .card-body {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    border-radius: var(--bs-border-radius-pill) !important;
}

.form-check {
    display: flex;
    gap: 10px;
}

.form-check .form-check-label {
    margin: auto 0;
}

.quiz__slider .swiper-wrapper {
    height: auto;
}