#cookie-consent-banner, #cookie-preferences {
    position: fixed;
    background-color: white;
    color: black;
    padding: 24px;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    box-shadow: 
    rgba(0, 0, 0, 0.2) 0px 4px 6px -3px,   
    rgba(0, 0, 0, 0.2) 0px -4px 6px -3px, 
    rgba(0, 0, 0, 0.2) 4px 0px 6px -3px,   
    rgba(0, 0, 0, 0.2) -4px 0px 6px -3px, 
    rgba(0, 0, 0, 0.1) 0px 10px 15px -5px, 
    rgba(0, 0, 0, 0.1) 0px -10px 15px -5px,
    rgba(0, 0, 0, 0.1) 10px 0px 15px -5px, 
    rgba(0, 0, 0, 0.1) -10px 0px 15px -5px;
  
}


#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 9990;
}
    
#cookie-preferences h3,
#cookie-consent-banner h3 {
    margin-bottom: 1rem;
    line-height: 1;
    color: #e30327!important;
    font-size: 1.8rem!important;
    font-weight: 700!important;
}

#cookie-consent-banner .link-learn-more,
#cookie-consent-banner p {
    color: black;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

#cookie-consent-banner .cookie-btn-primary,
#cookie-consent-banner .cookie-btn-outline-primary {
    display: block;
}
#cookie-preferences .cookie-btn-primary,
#cookie-preferences .cookie-btn-outline-primary {
    padding: 0.8rem 1.5rem !important;
}
.cookie-btn-primary {
    background-color: #e30327 !important;
    color: rgb(255, 255, 255) !important;
    border-color: #e30327 !important;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.cookie-btn-outline-primary {
    color: #e30327 !important;
    border: 1px solid #e30327 !important;
    padding: 0.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.small-font {
    font-size: 0.8rem;
}

@media (min-width: 1000px) {
    #cookie-consent-banner{
        width: 625px;
    }
    #cookie-preferences {
        width: 925px;
    }
  }

  @media (min-width: 668px) {
    #cookie-consent-banner, #cookie-preferences {
        padding: 40px;
    }
    .btn-div {
        display: inline-block;
    }
    .cookie-btn-primary,
    .cookie-btn-outline-primary {
        padding: 0.8rem 1.5rem;
    }
}