.cookies_agree {
    margin-top: 61px;
    padding-top: 10px;
    display: none;
}
.cookie-consent {
    position: fixed;
    bottom: -200px; /* Начальное положение за пределами экрана */
    left: 20px;
    right: 20px;
    max-width: 50%;
    margin: 0 auto;
    background-color: #f4f7fb;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: bottom 0.5s ease-out; /* Анимация появления */
}

.cookie-text {
    font-size: 15px;
    color: #0f2a38;
    margin-right: 15px;
}

.cookie-btn {
    background-color: #0f2a38;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: #ffffff;
    color: #0f2a38;
    border: 1px solid #0f2a38;
}

@media screen and (max-width: 1280px) {
    .cookie-consent {
        max-width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .cookie-consent {
        display: block;
    }
    .cookie-btn {
        float: right;
    }
}