
/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 375px;
    background: rgb(243, 243, 243);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px -4px 18px rgb(0 0 0 / 25%);
    margin-left: 30px;
    font-family: system-ui;
    z-index: 999999999;
}
#gdpr-cookie-types ul > li label {
    display: inline-block;
    margin-bottom: 0px;
    font-weight: normal;
}
#gdpr-cookie-message h4 {
    color: rgb(22, 194, 114);
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
    color: rgb(22, 194, 114);
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #333;
    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 a {
    color: rgb(22, 194, 114);
    text-decoration: none;
    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: #000;
    border-bottom-color: rgb(22, 194, 114);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: rgb(22, 194, 114);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-accept:hover {
	background: rgb(16, 143, 84);
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: #f6f6f6;
	color: #333;
    border: solid 1px #dddddd;
}
#gdpr-cookie-message button:disabled {
	border: solid 1px;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}
#gdpr-cookie-types div.checker input {
    -moz-appearance: auto;
    -webkit-appearance: auto;opacity: 1;
}

div#gdpr-cookie-types div.checker {
    float: left;
}
button#gdpr-cookie-accept {
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
	#gdpr-cookie-message button, button#ihavecookiesBtn {
		padding: 7px 0 7px 0;
		width: 100%;
		margin: 0;
	}
button#gdpr-cookie-accept {
    height: 42px;
    margin-bottom: 7px;
}
}