#cookie-bar {
    background:#fff;
    height:auto;
    line-height:24px;
    color:#eeeeee;
    text-align:center;
    box-shadow: 0 5px 40px -10px rgba(37,59,134,0.4);
}
#cookie-bar.fixed {
    position:fixed; 
    max-width: 1186px;
    margin: auto;
    left: -50%;
    right: -50%;
    bottom: 0px!Important;
    z-index: 999;
    transition:all 1s ease;
    opacity:0;
}
#cookie-bar.fixed.cookie-visible{
    opacity:1;
    bottom:40px!important;
}
#cookie-bar.fixed.bottom {bottom:0; top:auto;}
#cookie-bar p {margin:0; padding:0;color: #8A8A8A; font-size: 14px;}
#cookie-bar a {color:#273d85; display:inline-block; font-weight: 600; border-radius:0px; text-decoration: none; padding:0;}
#cookie-bar .cb-enable {
    color: #FFFFFF;
    padding: 9px 30px;
    border-radius: 0px;
    background: #4BBBC5;
    border: 1px solid #4BBBC5;
    box-sizing: border-box;
    border-radius: 60px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.21px;
    line-height: 21px;
    text-align: center;
    float: right;
    margin-left:15px;
    text-transform: uppercase;
}
#cookie-bar .cb-enable:hover {
    color: #4BBBC5;
    background-color: transparent;
}
#cookie-bar{
    display:flex;
    align-items: center;
    padding:20px 15px;
}
#cookie-bar span{
    float: left;
    color: #8A8A8A;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    padding:0px 10px;
    display:flex;
    align-items: center;
    width:100%;
}
#cookie-bar span:last-child{
    float: right;
    text-align: right;
    justify-content: flex-end;
}
#cookie-bar span:first-child p{
    margin:0px;
}

#cookie-bar .cb-enable::before {
    background: #5b6697 none repeat scroll 0 0;
}

@media only screen and (max-width: 1000px) {
    #cookie-bar{
        flex-wrap: wrap;
     }
     #cookie-bar span:last-child{
        text-align: left;
        justify-content: flex-start;
    }
}