    :root {
        --purple: #fff;
        --red: rgb(0, 124, 87);
    }

    #gdpr-cookie-message {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--purple);
        padding: 10px;
        text-align: center;
        font-family: system-ui;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #gdpr-cookie-message h4 {
        color: var(--red);
        font-family: 'Quicksand', sans-serif;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message h5 {
        color: var(--red);
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message p, #gdpr-cookie-message ul {
        color: #000;
        font-size: 15px;
        line-height: 1.5em;
        margin: 0;
    }
    #gdpr-cookie-message p:last-child {
        margin-bottom: 0;
        text-align: center;
    }
    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }
    #gdpr-cookie-message a {
        color: var(--red);
        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: rgb(0, 124, 87);

        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message button {
        padding: 11px 20px;
        margin-left: 50px;
        background: rgb(0, 124, 87);
        color: #fff;
        font-size: 18px;
        line-height: 22px;
        font-weight: 700;
        border: none;
        position: relative;
        border-radius: 40px;
    }
    #gdpr-cookie-message button:hover {
        background: rgb(0, 124, 87);

        transition: all 0.3s ease-in;
    }
    button#gdpr-cookie-advanced {
        background: white;
        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;
    }

    @media (max-width: 1000px) {
        #gdpr-cookie-message {
            flex-direction: column;

        }
        #gdpr-cookie-message button {
            margin-left: 0;
            margin-top: 10px;
        }
    }