#cookie-consent {
    display: none;
    position: fixed;
    border-radius: 15px;
    margin-left: 5px;
    margin-bottom: 5px;
    width: 350px;
    background: rgba(0, 0, 0, 0.8) url('images/cookies.svg') center center no-repeat ;
    background-size: 100% !important;
    color: rgb(255, 255, 255);
    left: 0px;
    bottom: 0px;
    padding: 25px;
    z-index: 1000;
    text-align: left;
    
}

#cookie-consent p, #cookie-consent a {
    
    font-size: 12px;
    line-height: normal;
}

#cookie-consent a {
    margin-bottom: 15px;
    margin-top: 10px;
    display: block;
}

#cookieModal h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

#cookie-consent h5 {

    font-size: 15px;
}

#cookie-consent button, #cookieModal button {
    
    border-radius: 5px;
    color: #fff;
    width: calc(50% - 10px) !important;
    display: inline-block;
    padding: 5px 10px;
    min-width: none !important;
    margin-right: 7px;
    font-size: 12px;
}

#cookieModal button {
    float: right;
    margin-top: 20px;
}

#cookieOverlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease-in-out;
z-index: 9999;
}

#cookieModal {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
opacity: 0;
transition: opacity 0.3s ease-in-out;
position: relative;
min-width: 500px;
}

#cookieModal h5 {
border-bottom: 1px solid #f6f6f6;
font-size: 15px;
font-weight: 700;
margin-bottom: 15px;
padding-bottom: 10px;
}

#cookieModal .custom-control-input {
margin-right: 15px;
margin-top: 2px;
}

#cookieModal label {
font-size: 12px;
}

#cookieModal #close-btn {
cursor: pointer;
color: #333;
font-size: 35px;
position: absolute;
top: 5px;
right: 20px;
z-index: 2;
}

#cookieModal .modal-body {
padding: 30px;
}

#cookieOverlay.show, #cookieModal.show {
opacity: 1;
}

@media only screen and (max-width: 768px) {
    #cookieModal {
        min-width: auto;
        width: calc(100% - 20px);
        margin-top: -200px;
    }
    #cookieModal .modal-body {
        padding: 15px;
    }
  }