    /* Cookie Dialog */
    #gdpr-cookie-message {
        position: fixed;
		background: rgb(88, 54, 73);
		background: linear-gradient(90deg, #583649 0%, #865C73 100%);
        padding: 10px;
        border-radius: 0px;
        font-family: system-ui;
    }
	
	#gdpr-cookie-message h4 {
		display:none;
	}
	
    #gdpr-cookie-message p{
		font-family: 'Roboto';
        color: #fff;
        font-size: 16px;
        line-height: 1.2em;
    }
    #gdpr-cookie-message p:last-child {
        margin-bottom: 0;
        text-align: right;
    }
    #gdpr-cookie-message a {
        color: var(--red);
        text-decoration: none;
        font-size: 14px;
        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: rgba(255, 255, 255, 0.2);
		color: #fff;
		font-family: sans-serif;
		font-size: 15px;
		font-weight:700;
		padding: 16px 50px;
		border-radius: 22px;
		margin-left: 0px;
		cursor: pointer;
		transition: all .3s ease-in;
		text-transform: uppercase;
		line-height: 12px;
    }
    #gdpr-cookie-message button:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
	
		#gdpr-cookie-advanced {
			display:none;
		}
		
		#gdpr-cookie-message p a {
			display:none;
		}