body {
    position: relative;
}

.b-cookie-alert {
    position: fixed;
    z-index: 1002;
    background-color: #fff;
    border-radius: 8px;
    left: 40px;
    bottom: 16px;
    padding: 10px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    color: #383838;
    line-height: 148%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-shadow: 0 12px 80px rgba(15,58,33,.16);
    box-shadow: 0 12px 80px rgba(15,58,33,.16);
}

.b-cookie-alert a {
    color: #fff;
    text-decoration: underline;
}

.cookies__desc {
    line-height: 1.3625;
    margin-right: 15px;
    display: inline-block;
}

.b-cookie-alert__close {
    display: inline-block;
}

.b-cookie-alert__close .button {
    background: #0ba433;
    border: 2px solid #0ba433;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    height: 40px;
    line-height: 16px;
}

.b-cookie-alert__close .button:hover {
    background: #fff;
    color: #0ba433;
    cursor: pointer;
}

.b-cookie-alert.is-active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .b-cookie-alert {
        left:  50%;
        transform: translate(-50%, 0);
        width: 90%;
    }
}

@media (min-width: 480px) and (max-width: 599px) {
    .container {
        display: block;
    }
    .cookies__desc {
        margin: 0;
    }
    .b-cookie-alert__close {
        display: block;
        margin-top: 1.4rem;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .container {
        display: block;
    }
    .cookies__desc {
        margin: 0;
    }
    .b-cookie-alert__close {
        display: block;
        margin-top: 1.4rem;
        text-align: center;
    }
}