#cookie-bar {
    background: #b80f24f0;
    height: auto;
    line-height: 24px;
    color: #FFFFFF;
    text-align: left;
    padding: 16px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar p {
    width: 45%;
    padding: 0;
    color: #fff;
    font-size: 16px;
}


#cookie-bar a {
    color: #ffffff;
    display: inline-block;
    border-radius: 0px;
    text-decoration: none;
    padding: 8px 16px;
    margin: 4px;
    letter-spacing: 0.05em;
  
}

#cookie-bar .cb-enable {
    background: rgb(255 255 255);
    border: 1px solid #FFFFFF; 
    font-weight: 500;
    color: #b80f24;
    /* padding: 0 4px; */
}

#cookie-bar .cb-enable:hover {
    background: #ececec;
    color: #b80f24;
    border: 1px solid #FFFFFF; 
}

#cookie-bar .cb-disable {
    border: 1px solid #ffffff;
    font-weight: 400;
    color: #ffffff;
}

#cookie-bar .cb-disable:hover {
    background: #fefefe0f;
    color: #fff;
}

#cookie-bar .cb-policy {
    border: 1px solid #ffffff;
    font-weight: 400;
    color: #ffffff;
}

#cookie-bar .cb-policy:hover {
     background: #fefefe0f;
    color: #fff;
}


@media (max-width: 768px) {
    #cookie-bar p {
      width: 90%;
    }
  }