.cookies-notification-modal {
    width:100%;
    font-size: 17px;
    position:fixed;
    bottom:40px;
    z-index:1060;
    padding:28px 32px;
    line-height:1.2;
    display: flex;
    justify-content: center;
}
.cookies-notification-modal .container {
    padding: unset;
    align-items: center;
}
.cookies-agree {
    max-width:1200px;
    width:100%;
    max-height: 100px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    align-items:center;
    padding:28px 32px;
    background:#000;
    /*border-radius:30px;*/
    border: 1px solid #000;
}
.cookies-agree__text {
    line-height:1.5;
    margin:0;
    color: #FFF;
}
.cookies-agree__buttons {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
.cookies-agree__button {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    color:#000;
    background:#FFCD00;
    /*font-size:12px;*/
    height:35px;
    /*border-radius:4px;*/
    -webkit-transition:color .3s ease-out,background .3s ease-out;
    transition:color .3s ease-out,background .3s ease-out;
    cursor:pointer
}
.cookies-agree__button:not(:last-child) {
    margin-right:10px
}
.cookies-agree__button.btn-green {
    padding:23px 82px;
    background:#FFCD00;
    border:1px solid #FFCD00;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}
.cookies-agree__button.btn-dark {
    background:#333f46;
    border:1px solid #333f46
}

@media (max-width:767px) {
    .cookies-agree__buttons {
        -ms-flex-item-align:center;
        align-self:center;
        -webkit-box-pack:stretch;
        -ms-flex-pack:stretch;
        justify-content:stretch;
        width:100%;
        font-size:18px;
        padding: 8px 20px;
    }
}
@media (min-width:768px) {
    .cookies-agree__button {
        width:140px;
        font-size:14px;
    }
}
@media (max-width:767px) {
    .cookies-agree__button {
        -webkit-box-flex:1;
        -ms-flex:1 0 140px;
        flex:1 0 140px
    }
}
@media (min-width:992px) {
    .cookies-agree__button.btn-green:hover {
        color:#FFF;
        background:#000;
        border-color: #FFF;
        /*font-size: 14px;*/
    }
}
@media (max-width:991px) {
    .cookies-agree__button.btn-green:active {
        color:#FFF;
        background:#5F4A5E;
    }
}
@media (max-width:767px) {
    .cookies-notification-modal {
        bottom:90px;
        padding:16px;
    }
    .cookies-agree{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column;
        padding:20px;
        max-height: 215px;
        font-size:14px
    }
}
@media (min-width:992px) {
    .cookies-agree__button.btn-dark:hover {
        color:#333f46;
        background:#fff
    }
}
@media (max-width:991px) {
    .cookies-agree__button.btn-dark:active {
        color:#333f46;
        background:#fff
    }
}