/*Cookie Consent Begin*/
#cookieConsent {
    z-index: 100000000000000000;
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 375px;
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    font-family: system-ui;
    opacity: 0.95;
}

#closeCookieConsent {
    border: none;
    background: #39c5f3;
    color: white;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    display: inline-block;
}

#closeCookieConsent:hover {
    cursor: pointer;
    background: white;
    color: #39c5f3;
    transition: all 0.3s ease-in;
}

#cookieConsent p {
    color: white;
    font-size: 14px;
    line-height: 1.5em;
}

#cookieConsent p:last-child {
    margin-bottom: 0;
    text-align: right;
    float: right;
}

#cookieConsent h4 {
    color: #39c5f3;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: none;
}

#cookieConsent a {
    display: inline-block;
    color: #39c5f3;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}

#cookieConsent a:hover {
    color: white;
    border-bottom-color: #39c5f3;
    transition: all 0.3s ease-in;
}
