
    /* Cookie Dialog */
    .gdpr-cookie-message {
        display: none;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        max-width: 100%;
        background-color: rgba(0,0,0, .8);
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 6px 6px rgba(0,0,0,0.25);
        text-align: left;
        text-align: -webkit-left;
        text-align: -moz-left;
        z-index: 15;
    }
    .gdpr-cookie-message .cookie-title {
        color: #ffffff;
        font-size: 18px;
    }
    .gdpr-cookie-message p {
        color: white;
        font-size: 15px;
        line-height: 1.5em;
    }

    .gdpr-cookie-message a {
        color: #ffffff;
        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: #ffffff;
        border-bottom-color: #0a6d10;
        border-bottom-style: solid ;
        transition: all 0.3s ease-in;
    }
    .gdpr-cookie-message button {
        border: none;
        background: #0a6d10;
        color: white;
        font-size: 15px;
        padding: 7px;
        border-radius: 3px;
        cursor: pointer;
        margin: 0 auto;
        transition: all 0.3s ease-in;
    }
    .gdpr-cookie-message button:hover {
        background: white;
        color: #0a6d10;
        transition: all 0.3s ease-in;
    }
