 
    :root {
        --purple: #3B3646;
        --red: #000;
    }
    * {
        padding: 0;
        margin: 0;
        border: none;
    }
    
   
    }
    .highlight {
        background: rgba(255,215,0,0.115);
    }
   
   
    input[type="checkbox"] {
        margin-top: 10px;
        margin-right: 15px;
        float: left;
    }
    label {
        display: inline-block;
        max-width: 90%;
    }
    code {
        color: var(--red);
        font-family: monospace;
        font-size: 16px;
        background: #f7f7f7;
        padding: 3px 5px;
        border-radius: 3px;
        border: 1px solid #ebebeb;
    }
    /* Cookie Dialog */
    #gdpr-cookie-message {
        position: fixed;
        right: 30px;
        bottom: 30px;
        max-width: 375px;
        background-color: var(--purple);
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 6px 6px rgba(0,0,0,0.25);
        margin-left: 30px;
        font-family: system-ui;
    	z-index: 999;
    }
    #gdpr-cookie-message h4 {
    color: #fff;
    font-family: calibri;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
    #gdpr-cookie-message p {
    color: white;
    font-size: 13px;
    line-height: 1.5em;
    font-family: calibri;
}
    #gdpr-cookie-message p:last-child {
        margin-bottom: 0;
        text-align: right;
    }
    #gdpr-cookie-message a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgb(255, 255, 255);
    transition: all 0.3s ease-in;
    font-family: calibri;
}
    #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: #000;
    color: white;
    font-family: calibri;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
    #gdpr-cookie-message button:hover {
        background: white;
        color: #000;
        transition: all 0.3s ease-in;
    }



    
