    :root {
        --purple: #000000;
        --red: #a61c35;
    }



    .highlight {
        background: rgba(255,215,0,0.115);
    }


    /* Cookie Dialog */
    #gdpr-cookie-message {
        position: fixed;
        bottom: 0px;
        width:100%;
        background-color: #e2e2e2;
        padding: 5px;
        text-align: center;
        z-index:500;
    }
    #gdpr-cookie-message .cookie-conteiner {
        width: 85%;
        margin: 0 auto;
    }
    #gdpr-cookie-message h4 {
        color:  #a61c35;
        font-family: 'Quicksand', sans-serif;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message h5 {
        color:  #a61c35;
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message p, #gdpr-cookie-message ul {
        color: #000000;
        font-size: 13px;
        line-height: 1.5em;
        display: inline-block;
        vertical-align: top;
    }
    #gdpr-cookie-message p:last-child {
        text-align: right;
    }
    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }
    #gdpr-cookie-message a {
        color:  #a61c35;
        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;
    }
    #gdpr-cookie-message a:hover {
        color: white;
        border-bottom-color: var(--red);
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message button {
        border: none;
        background:  #a61c35;
        color: white;
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        padding: 10px 24px 10px 24px;
        border-radius: 3px;
        margin-left: 15px;
        cursor: pointer;
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message .cookie-text {
        width:77%;
        text-align:left;
    }
    #gdpr-cookie-message button:hover {
        background: white;
        color:  #a61c35;
        transition: all 0.3s ease-in;
    }
    button#gdpr-cookie-advanced {
        background: white;
        color:  #a61c35;
    }
    #gdpr-cookie-message button:disabled {
        opacity: 0.3;
    }
    #gdpr-cookie-message input[type="checkbox"] {
        float: none;
        margin-top: 0;
        margin-right: 5px;
    }

    @media only screen and (max-width:900px){
        #gdpr-cookie-message .cookie-text {
            width: 100%;
        }
        #gdpr-cookie-message .cookie-conteiner {
            width: 90%;
        }
    }