.cookie{
    z-index: 999;
    position: fixed;
    max-width: 360px;
    max-height: 183px;
    bottom: 20px;
    right: 76px;
    padding: 20px;
    background: white;
    box-shadow: 0 10px 20px #0000001F;
}


.cookie__text{
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    margin: 0 0 12px;
    max-width: 320px;
}

.cookie__link{
    color: black;
    font-weight: 600;
}

.cookie__button{
    width: 100%;
    padding: 13px 0;
    border: none;
    background-color: rgba(14, 15, 23, 0.85);
    color: white;
    font-weight: 600;
    font-size: 11px;
    line-height: 140%;
    cursor: pointer;

    &:hover{
        opacity: 0.6;
    }
}

.cookie__button-red{
    background-color: rgba(14, 15, 23, 0.85);
}

.cookie.hidden {
    display: none !important;
}

@media(max-width:869px){
    .cookie{
        right: auto; /* убираем right */
        left: 50%; /* позиционируем по центру */
        transform: translateX(-50%); /* смещаем назад на половину своей ширины */
        width: calc(100% - 30px); /* оставляем отступы по 15px с каждой стороны */
        max-width: 869px; /* сохраняем максимальную ширину */
    }
}