.cookie-bar {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    z-index: 998;
    transition: bottom 0.5s ease-in-out;
    background-color: #273c75;
    color: #d3dffb;
    font-weight: 500;
    font-size: 18px;
    line-height:1.5;
}

.cookie-bar.cookie-bar-active {
    bottom: 0;
}

.cookie-bar-content {
    padding: 15px 0 ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.cookie-bar-content .wpt__coupon-btn{
    font-size: 18px;
    color: #fff;
    border-color: #273c75;
    background-color: #152245;
}

.cookie-bar-content .wpt__coupon-btn:before{
    font-family: 'wptime_tf_icons';
    content: '\e830';
    font-weight: 400;
    margin-right: 7px;
}

.cookie-bar-content .wpt__coupon-btn:before{
    display:none;
}

.cookie-bar-text {
    flex: 1;
    padding: 0 20px 0 10px;
}

.cookie-bar-icon:before{
    font-weight: 400;
}

.cookie-bar-text a {
    text-decoration: underline;
    color: #d3dffb;
}

.cookie-bar-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    color: #d3dffb;
    font-weight: 400;
}

.cookie-bar-close:before{
    font-weight: 400;
}

.cookie-bar-light {
    background-color: #f8f9fa;
    color: #212529;
}

.cookie-bar-light a {
    color: #0056b3;
}

.cookie-bar-light .cookie-bar-close {
    color: #212529;
}

.cookie-bar-light .wpt__coupon-btn{
    background-color: #212529;
    border-color: #f8f9fa;
}

.cookie-bar-dark {
    background-color: #343a40;
    color: #ffffff;
}

.cookie-bar-dark a {
    color: #8bb9fe;
}

.cookie-bar-dark .cookie-bar-close {
    color: #ffffff;
}

.cookie-bar-dark .wpt__coupon-btn{
    background-color: #1b1e22;
    border-color: #343a40;
}

.cookie-bar-red {
    background-color: #942525;
    color: #fddcdc;
}

.cookie-bar-red a {
    color: #fddcdc;
}

.cookie-bar-red .cookie-bar-close {
    color: #fddcdc;
}

.cookie-bar-red .wpt__coupon-btn{
    background-color: #6c1a1a;
    border-color: #942525;
}

.cookie-bar-green {
    background-color: #2ba74c;
    color: #e9ffef;
}

.cookie-bar-green a {
    color: #e9ffef;
}

.cookie-bar-green .cookie-bar-close {
    color: #e9ffef;
}

.cookie-bar-green .wpt__coupon-btn{
    background-color: #156d2c;
    border-color: #2ba74c;
}

html.has-cookie-bar{
    padding-bottom: 54px;
}

@media all and (max-width: 1360px){
    .cookie-bar-content{
        max-width: 95%;
    }
}

@media all and (max-width: 1023px){
    .cookie-bar-content{
        max-width: 91%;
    }
}

@media (max-width: 600px) {
    .cookie-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-bar-icon{
        display: none;
    }
    
    .cookie-bar-text {
        padding: 0;
    }

    .cookie-bar-close{
        display:block;
        padding: 10px 10px 0 10px;
    }

    html.has-cookie-barr{
        padding-bottom: 84px;
    }
}