.banner-cookies {
    position: fixed;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    bottom: 30px;
    width: 60%;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.07);
    left: 20%;
    z-index: 10000;
}
.cookies_agree_btn {
    background: #00B2FF;
    color: #fff;
    display: block;
    width: 130px;
    text-align: center;
    padding: 10px 15px;
    margin: 0 auto;
    text-decoration: none;
}
.cookies_agree_btn:hover {
    background: #4CC9FF;
    color: #fff;
}

@media (max-width: 992px) {
    .banner-cookies {
        display: block;
        width: 90%;
        left: 5%;
    }
}
