.cookies-section.show-cookies {
    opacity: 1;
    z-index: 100;
    visibility: visible;
    height: auto;
}
.cookies-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
    opacity: 0;
    z-index: -5;
    visibility: hidden;
    height: 0;
    box-shadow: 0 10px 15px 6px #cacaca;
}

.cookies-section__text {
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}

.cookies-section__btn, .cookies-section__btn:hover {
    padding: 7px 30px;
    background: #3bbd53;
    box-shadow: 4px 4px 0 rgb(66 226 130 / 20%);
    border-radius: 3px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin-left: 30px;
    transition: 0.3s;
    white-space: nowrap;
}
body.s-cookie .vps-side-info {
    bottom: 58px;
}

.cookies-section {
    max-width: 600px;
    padding: 20px 40px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .cookies-section {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .cookies-section__btn {
        margin-top: 10px;
        margin-left: 0;
    }
}