/*Cookie Consent Begin*/
.jbtn {

    display: inline-block;
    padding: 9px 30px;
    background: #1b314d;
    color: white;
    text-decoration: none;
    border: 2px solid #1b314d;
    font-size: 1.2rem;
    transition-duration: 0.3s;
    font-family: "Playfair_Display_Regular";
}

#cookie-consent {

    position: fixed;
    bottom: 0;
    background-color: #f3f6f9;
    min-height: 100px;
    line-height: 26px;
    padding: 20px 55px 10px 55px;
    left: 8%;
    right: 8%;
    display: none;
    z-index: 2147483645;
}

#cookie-consent p {

    letter-spacing: auto;
    font-size: 0.85em;
    line-height: 1.5;
    color: #14161c;
    font-family: "Proxima_Nova_Regular";
}

#cookie-consent a {
    color: #1b314d;
    text-decoration: underline !important;

}

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

#cookie-consent .jbtn{

    transition-duration: 0.3s;

}

#cookie-consent .jbtn:hover{

    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    scale: 1.1;
}

#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 {

    color: #1b314d;
    font-family: "Playfair_Display_Regular";
    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;
    }
}