/*Cookie Consent Begin*/

#cookie-consent {
    position: fixed;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    /* background-color: rgba(8, 86, 167, 0.9); */
    min-height: 100px;
    /* width: 100%; */
    /* font-size: 0.85em; */
    /* color: #111; */
    line-height: 26px;
    padding: 20px 55px 10px 55px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    left: 8%;
    right: 8%;
    display: none;
    z-index: 2147483645;
}

#cookie-consent p {
    letter-spacing: auto;
    font-size: 0.85em;
    line-height: 1.5;
    font-family: 'Varela Round', sans-serif;
    color: #333;
}

#cookie-consent a {
    color: #f99b1c;
}

#cookie-consent a:hover {
    color: #e48100;
    text-decoration: underline !important;
}

#cookie-consent .jbtn{
    width: auto;
    font-family: 'Varela Round', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-decoration: none;
    color:white;
    background: #f89b00;
    border:#f89b00 2px solid;
    padding: 8px 40px 6px 40px;
    border-radius: 10px;
    margin-top: 0;
}

#cookie-consent .jbtn:hover{
    color:#f89b00;
    background: white;
    border: white 2px solid;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    scale: 1.05;
}

#cookie-consent .consent-content {
    display: grid;
    grid-template-columns: auto auto;
}

#cookie-consent .consent-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 30px 55px;
}

/* TABLET */

@media (max-width: 990px) {
    #cookie-consent .consent-content {
        grid-template-columns: 1fr;
    }
    #cookie-consent .consent-btn-container {
        padding: 15;
    }
    #cookie-consent .consent-btn-container {
        padding: 15px 0 15px 0;
    }
}