input.error[type="checkbox"] + label {
    border: 2px solid #d9534f;
    padding: 3px 5px;
    border-radius: 4px;
    background-color: #ffe6e6;
}

.countdown__badge  .h2 {
    font-size: 20px;
}

.input-content {
    margin-bottom: 20px;
}

.header__address:has(div.elem) {
    display: flex;
    align-items: center;
}

.header__time {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header__address .elem {
    display: flex;
    flex-direction: column;
}

span.error {
    color: #d9534f !important;
}

span.error a {
    color: #d9534f !important;
}

#telephone-error.error {
    color: #d9534f;
    margin-top: 5px;
    display: block;
    font-size: 11px;
}

.popup-offer-assets__item-values .text-muted {
    text-decoration: line-through;
}

.form-check-label.text-body {
    line-height: normal;
}

.level-item__card {
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: 12.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .level-item__card::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 140%;
    height: 140%;
    top: 3rem;
    left: 10%;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(ellipse farthest-side at center, var(--bs-theme-gradient-2) 100%);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
/* Hover стили */
.level-item__card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.level-item__card:hover::before {
opacity: 0.7;
transform: translate(-50%, -50%) scale(1.05);
}
.level-item__card:hover .level-item__title {
color: var(--bs-primary);
}
.level-item__card:hover .level-item__subtitle {
color: var(--bs-theme-color-3);
}
.level-item__card:hover .level-item__tags .badge {
background: var(--bs-primary);
color: white;
border-color: var(--bs-primary);
}


/* Hover стили */
.level-item__card.active {
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.level-item__card.active::before {
opacity: 0.7;
transform: translate(-50%, -50%) scale(1.05);
}
.level-item__card.active .level-item__title {
color: var(--bs-primary);
}
.level-item__card.active .level-item__subtitle {
color: var(--bs-theme-color-3);
}
.level-item__card.active .level-item__tags .badge {
background: var(--bs-primary);
color: white;
border-color: var(--bs-primary);
}

/* Анимация тряски */
@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;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.section-header {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
}
.section-header__heading {
    color: #000;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    font-family: inherit;
    text-align: center;
}
.section-header__addons {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.section-header .btn {
    height: 46px;
    min-width: 190px;
}
.section-policy {
    padding: 60px 0;
}
.section-policy a {
    display: inline;
    text-decoration: underline;
}
.section-policy h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.section-policy h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.section-policy p {
    margin-bottom: 15px;
    text-align: justify;
}
.section-policy ul {
    margin-bottom: 15px;
    padding-left: 20px;
}
.section-policy li {
    margin-bottom: 8px;
}
.section-policy .section {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .countdown__badge .h2 {
        font-size: 14px;
    }
    
    .section-policy {
        padding: 40px 0;
    }
    .section-header__heading {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }
    .section-header__heading:before {
        display: none;
    }
    .section-policy p {
        font-size: 16px;
    }
}

.person__photo img{
    max-width: 100%;
}