/*Cookie Consent Begin*/

#cookie-consent {
    position: fixed;
    bottom: 0;
    background-color: rgba(255, 255, 255, 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";
    color: #91819b;
}

#cookie-consent a{
    color: #1193f5;
}

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

/* #cookie-consent a {
    color: #1aa4b8;
}

#cookie-consent a:hover {
    color: #1a84b8;
} 

#cookie-consent .jbtn {
    justify-self: center;
    width: auto;
    font-family: 'Varela Round', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-decoration: none;
    color:white;
    background: #1aa4b8;
    border:#1aa4b8 2px solid;
    padding: 9px 23px 7px 23px;
    border-radius: 50px;
    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 {
    color:#1aa4b8;
    background: white;
    border: white 2px solid;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}*/

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