/*Cookie Consent Begin*/
#cookie-consent {
    position: fixed;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    min-height: 100px;
    width: 100%;
    font-size: 0.85em;
    color: #fff;
    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{
    /* font-size: 1em; */
    line-height: 1.5;
}
#cookie-consent a {
    color: white;
    text-decoration: underline;
}

#cookie-consent a:hover {
    color: #e0e0e0;
    text-decoration: none;
}

/* .jbtn{
    padding: 4px 8px;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
    border: white solid 1px;
    color: white;
}

.jbtn:hover{
    background: white;
    border: white solid 1px;
    color: black;
} */

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

}