/*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: "Montserrat";
    color: #91819b;
}

#cookie-consent a {
    color: #2752f1;
}

#cookie-consent a:hover {
    color: #0856a7;
}

#cookie-consent .jbtn {
    justify-self: center;
    width: auto;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    background: #0856a7;
    border: #0856a7 2px solid;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#cookie-consent .jbtn:hover {
    background: transparent;
    border: #0856a7 solid 2px;
    color: #0856a7;
}

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