@import url(https://fonts.googleapis.com/css?family=Ubuntu);
    /* Cookie Dialog */
    #gdpr-cookie-message {
        position: fixed;
        right: 0px;
        bottom: 10px;
        max-width: 40%;
        background-color:#f6eeea;
        padding: 10px;
        border-radius: 0px;
        box-shadow: 0 6px 6px rgba(0,0,0,0.25);
        margin-right: 30px;
        z-index:1001;
    }
    #gdpr-cookie-message h2 {
        color:#933;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 2px;
        padding-left:6px;
    }
    #gdpr-cookie-message h3 {
        color:#933;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
        margin-top:10px;
        margin-left:0px;
        font-variant: normal;
    }
    #gdpr-cookie-message p, 
    #gdpr-cookie-message ul {
        color: #000;
        font-size: 12px;
        line-height: 1.3em;
    }
    #gdpr-cookie-message p:last-child {
        margin-bottom: 0;
        text-align: right;
    }
    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }
	
	#gdpr-cookie-message label {
            font-weight:normal;
    }    
       
    #gdpr-cookie-message a {
        color: #900;
        text-decoration: none;
        font-size: 13px;
        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: #900;
        border-bottom-color:#fb9;
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message button {
        border:1px solid #333;
        background-color:#900;
        color:#fff;
        font-size: 13px;
        padding:4px 7px;
        margin-top:10px;
        border-radius: 0px;
        margin-left: 0px;
        margin-right:15px;
        cursor: pointer;
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message button:hover {
        background-color:#888;
        color: #fff;
        transition: all 0.3s ease-in;
    }
    button#gdpr-cookie-advanced {
        background-color:#f7f7f7;
        color:#000;
        border:1px solid #555;        
    }
    
    #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:500px) {
    #gdpr-cookie-message {
        position:fixed;
        left:2px;
        max-width:100%;
        margin-left:0;}    
    button#gdpr-cookie-advanced {margin-top:16px;}
    #gdpr-cookie-message ul {font-size:12px;}
}    

