.cookie-notification-modal {
    width: 60%;
    font-size: 13px;
    position: fixed;
    bottom: 2%;
    left: 1%;
    z-index: 1060;
    padding: 10px;
    line-height: 1.5;
    background: #fff;;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border-radius: var(--theme-button-border-radius, 4px);
}
.cookie-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.cookie-agree{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    width:100%
}
@media (max-width:767px){
    .cookie-agree{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column
    }
}
.cookie-agree__text{
    line-height:1.5;
    margin:0;
}
@media (min-width:768px){
    .cookie-agree__text{
        padding-right:10px
    }
}
@media (max-width:767px){
    .cookie-agree__text{
        margin-bottom:10px
    }
}
.cookie-agree__buttons{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
}
@media (max-width:767px){
    .cookie-agree__buttons{
        flex-wrap: wrap;
        -ms-flex-item-align:center;
        align-self:center;
        -webkit-box-pack:stretch;
        -ms-flex-pack:stretch;
        justify-content:stretch;
        width:100%;
        gap:10px
    }
}
.cookie-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:#fff;
    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
}
@media (min-width:768px){
    .cookie-agree__button{
        width:140px
    }
}
@media (max-width:767px){
    .cookie-agree__button{
        -webkit-box-flex:1;
        -ms-flex:1 0 140px;
        flex:1 0 140px
    }
}
.cookie-agree__button:not(:last-child){
    margin-right:10px
}
.cookie-agree__button.btn-green{
    background:#66c05d;
    border:1px solid #66c05d
}
.cookie-agree__button.btn-orange{
    background:#f9680f;
    border:1px solid #f9680f
}
@media (min-width:992px){
    .cookie-agree__button.btn-green:hover{
        color:#71c768;
        background:#fff
    }
    .cookie-agree__button.btn-orange:hover{
        background:rgba(251, 119, 10, .9);
        border:1px solid rgba(251, 119, 10, .9)
    }
}
@media (max-width:991px){
    .cookie-agree__button.btn-green:active{
        color:#71c768;
        background:#fff
    }
    .cookie-agree__button.btn-orange:hover{
        background:rgba(251, 119, 10, .9);
        border:1px solid rgba(251, 119, 10, .9)
    }
}
.cookie-agree__button.btn-dark{
    background:#333f46;
    border:1px solid #333f46
}
.cookie-agree__button.btn-orange--outline{
    color: #f9680f;
    border: 1px solid #f9680f;
}
@media (min-width:992px){
    .cookie-agree__button.btn-dark:hover{
        color:#333f46;
        background:#fff
    }
    .cookie-agree__button.btn-orange--outline:hover{
        background:#f9680f;
        border:1px solid #f9680f;
        color: #fff;
    }
}
@media (max-width:991px){
    .cookie-agree__button.btn-dark:active{
        color:#333f46;
        background:#fff
    }
    .cookie-agree__button.btn-orange--outline:active{
        background:#f9680f;
        border:1px solid #f9680f;
        color: #fff;
    }
}

@media (max-width: 1280px) {
    .cookie-notification-modal {
        width: 100%;
        bottom: 0;
        left: 0;
    }
}