.cookie-consent-banner {
    background-color: #fff;
    color: #808080;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 9999;
    display: none; 
}
.cookie-consent-banner p {
    display: block;
    margin-right: 10px;
    float: left;
    width: 75%;
    text-align: left;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 23px;
}
#accept-cookie {
    background-color: #A3A3A3;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 13px;
}
#decline-cookie {
    background-color: #A3A3A3;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}
#accept-cookie:hover, #decline-cookie:hover {
background-color: #181818;
}
.cookie-buttons {
    float: left;
    margin-left: 30px;
    width: 20%;
    margin-top: 5px;
}
.consent_lnks {
   margin-left: 5px;
   color: #65bc47;
}

 @media (min-width: 320px) and (max-width: 767px) {
.cookie-consent-banner p {
    width: 100%;
   }
.cookie-buttons {
    width: 100% !important;
    margin-top: 20px;
    margin-left: 0px;
}
}