.t-popup .t-descr_xxs{
    font-size: 18px !important;
}

/* Только мобильные устройства */
@media screen and (max-width: 1200px) {
    /* Разблокируем скролл */
    body.t-body-scroll-lock {
        overflow: auto !important;
        position: relative !important;
    }
    
    /* Куки-блок с разделением pointer-events */
    .t887 {
        pointer-events: none;
    }
    
    .t887__container,
    .t887__close-button {
        pointer-events: auto;
    }
    
    /* Ваши стили для крестика */
    .t887 {
        top: 0px !important;
    }
    
    .t887__close-button {
        width: 24px !important;
        height: 24px !important;
    }
    
    .t887__close-button svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Десктоп — оставляем как есть */
@media screen and (min-width: 1201px) {
    .t887__close-button {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
}



.zero_btn a {
overflow: hidden;
position: relative;
z-index: 0;
}
.zero_btn a:before {
background-color: #ffd800; /*фон кнопки при ховере*/
position: absolute;
z-index: -1;
top: 100%;
left: 0;
width: 100%;
height: 100%;
content: "";
transition: all .3s ease-out;
}
.zero_btn a:hover:before {
top: 0;
transition: all .3s ease-out;
}