.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align:left;
    z-index:100000;
    max-width:800px;
    background:#f8f9fa url('cookie.webp') -20px -20px no-repeat
}

.cookie-consent-banner .container{
    
}

.cookie-consent-banner .flx{
    display:flex;
}
.cookie-consent-banner .btns{
    width:250px;
}
.cookie-consent-banner .btns button{
    display:block;
    width:100%;
    text-align:center;
    margin-bottom:10px;
}

.cookie-consent-banner div.p,
.cookie-consent-banner div.h{
    color: black;
    text-align: left;
   
}

.cookie-consent-banner div.p{
    margin-bottom:25px;
    font-size:13px;
}

.cookie-consent-banner div.h{
    font-size:23px;
    margin-bottom:15px;
    margin-top:10px;
    text-align:left;
    font-weight:bold;
}

.cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: .5;
}

.cookie-consent-button.btn-success {
    background-color: #003566;
    color: white;
}

.cookie-consent-button.btn-grayscale {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-button.btn-outline {
    background-color: #c6d7e8;
    color: #003566;
}

.cookie-consent-options {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-consent-options label {
    padding: 0 10px;
    font-size: 16px;
}

.cookie-consent-options input {
    margin-right: 13px;
}

@media (max-width: 600px) {
    .cookie-consent-banner{
        max-width:100vw;
        left:0;
    }
    .cookie-consent-banner .flx{
        display:block;
    }
    .cookie-consent-options label,
    .cookie-consent-options {
        display: block;
    }
}