#popup-contacts .contacts__info{
    margin-bottom: 20px;
    margin-top: 20px;
}

#popup-contacts .popup__text.telephone{
    font-size: 1.7rem;
}

input.error {
    border:1px solid red;
}

.error {
    color: red;
}

.anchor {
    position: relative;
    display: block;
    top: -125px;
    visibility: hidden;
}

.model-main-color__color-list button {
    cursor: pointer;
}

.feedback-discount__form span.error {
    display: none !important;
}

.feedback-special__card span.error {
    display: none !important;
}

.fast-form-credit__calc-form input {
    pointer-events: none;
}

.input-number__btn {
    /* Общий стиль для кнопок */
    cursor: pointer;
}

.input-number__btn--disabled {
    color: gray; /* Цвет для недоступных кнопок */
    cursor: not-allowed; /* Указываем, что кнопка недоступна */
}

.input-number__btn--active {
    color: black; /* Цвет для активных кнопок */
}

.comlectations-item__list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-top: 20px;
}

.text-logo-main {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    justify-content: space-between;
}

.small {
    font-size: 12px;
    color: #9E9E9E;
}

.model-content__heading-404 {
    font-size: 40px;
    margin-bottom: 15px;
}

.buttons-404 {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.section-404 {
    padding: 100px 0;
    text-align: center;
}

@media (max-width: 992px) {
    .comlectations-item__list {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        margin-top: 20px;
    }  
}

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

.shake {
animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
display: inline-block;
}

/* Стиль для подсказки */
.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; }
}

/* Подсветка текста согласия */
.highlighted.shake {
    color: #ff0000 !important;
}

.highlighted.shake a {
    color: #ff0000 !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(.36,.07,.19,.97) both;
    display: flex;
}

.agreement__wrapper:has(.agreement__checkbox.error) span.error {
    display: none !important;
}

.agreement__wrapper:has(.agreement__checkbox.error) .checkbox__label {
    color: red;
}

.cookies__wrapper {
    position: fixed;
    align-items: center;
    z-index: 4;
    bottom: 24px;
    left: 24px;
    width: fit-content;
    padding: 24px 32px;
    background: #fff;   
    display: flex;
    gap: 32px;
    box-shadow: 0px -4px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.cookies__btn {
    border-radius: 8px;
    background: var(--Dark-blue, #2e58db);
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    color: #fff;
    align-items: center;
    border: none;
    cursor: pointer;
}

.cookies__text {
    max-width: 444px;
    color: var(--Grey-Dark-Grey, #5A5F65);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
}
.cookies__text a {
    color: var(--Hague-Blue, #2e58db);
}

@media (max-width: 1100px) {
    .cookies__text {
        max-width: none;
    }

    .cookies__wrapper {
        width: 100%;
        left: 0;
        bottom: 0;
        gap: 24px;
        padding: 24px 16px;
        flex-direction: column;
        box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.05);
    } 
    .cookies__btn {
        width: 100%;
    }
}

.footer_cb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}


@media (max-width: 1100px) {
    .footer_cb * {
        width: 100%;
    }
    .footer_cb {
        flex-direction: column-reverse;
        align-items: flex-start;
        width: 100%;
    }
}