/*Cookie Consent Begin*/

#cookie-consent {

    position: fixed;
    bottom: 0;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: #f8f9fa;
    /* background-image: url("/assets/img/cookies.png"); */
    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: 'Poppins';
    color: #542700;
}

#cookie-consent a {
    color: #b1b695;
}

#cookie-consent a:hover {
    
    color: #b1b695;
    text-decoration: underline !important;
}

#cookie-consent .jbtn{
    font-family: 'Philosopher';
    text-transform: uppercase;
    font-size: 20px;
    padding: 15px 30px;
    color: #fff;
    border-radius: 5px;
    border: none;
    background-color: #b1b695;
    border: 1px solid #b1b695;
    margin-right: 30px;
    transition-duration: 0.3s;
}

#cookie-consent .jbtn:hover{

    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;
}

strong {
    font-family: 'Philosopher';
    font-size: 20px;
}

/* 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;
    }
}