﻿/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 1px;
    bottom: 30px;
    max-width: 675px;
    /*background-color: #f16521;*/
    background-color: #0E7C82; /* WTB? */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    font-family: system-ui;
}

    #gdpr-cookie-message p, #gdpr-cookie-message ul {
        color: white;
        font-size: 15px;
        line-height: 1.5em;
    }

    #gdpr-cookie-message a:hover {
        /*color: #D67F1A;*/
        color: #0E7C82; /* WTB? */
        border-bottom-color: var(--red);
        transition: all 0.3s ease-in;
    }

    #gdpr-cookie-message button,
    button#ihavecookiesBtn {
        border: none;
        background: var(--red);
        color: white;
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        padding: 0px;
        border-radius: 3px;
        margin-left: 5px;
        cursor: pointer;
        transition: all 0.3s ease-in;
    }

        #gdpr-cookie-message button:hover {
            /*background: #f45001;*/
            background: #0E7C82; /* WTB? */
            color: var(--red);
            transition: all 0.3s ease-in;
        }

button#gdpr-cookie-advanced {
    /*background: #D67F1A;*/
    background: #0E7C82; /* WTB? */
    color: var(--red);
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}
