:root {
    --purple: #fafafa;
    --red: #131313;
}
* {
    padding: 0;
    margin: 0;
    border: none;
}

.container {
    margin: 0 auto;
    max-width: 550px;
}
.highlight {
    background: #fafafa;
}
h1 {
    color: var(--red);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
}

h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 20px;
}
p, ul {
    margin-bottom: 20px;
    line-height: 1.75em;
}

li {
    list-style: none;
    margin-bottom: 10px;
}

li:last-child {
    margin-bottom: 0;
}

input[type="checkbox"] {
    margin-top: 10px;
    margin-right: 15px;
    float: left;
}

label {
    display: inline-block;
    max-width: 90%;
}

code {
    color: var(--red);
    font-family: monospace;
    font-size: 16px;
    background: #f7f7f7;
    padding: 3px 5px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
}

button#ihavecookiesBtn {
    margin-left: 0px !important;
}

/* Cookie Dialog */
#gdpr-cookie-message {
	position: fixed;
	left: 0px;
	z-index: 1000;
	bottom: 0px;
	max-width: 375px;
	background-color: var(--purple);
	border-radius: 5px;
	box-shadow: 0 6px 6px rgba(0,0,0,0.25);
	font-family: system-ui;
	min-width: 100vw;
	padding: 10px;
	display: flex;
    justify-content:space-between;
}

.cookiegroup {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

#gdpr-cookie-message label {
    margin: 0px !important;
}

.cookieBtns {
	display: flex;
}

.cookieBtns button{
	margin-top:0px !important;
}

#gdpr-cookie-types {
	flex: 1 1 100%;
}

#gdpr-cookie-message h4 {
    color: var(--red);
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display:none;
}

#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: #131313;
	font-size: 12px;
	/* line-height: 1.5em; */
	margin: 0px;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
}

#gdpr-cookie-message li {
	display: flex;
}

#gdpr-cookie-message ul {
	display: flex;
	gap: 30px;
}

#gdpr-cookie-message a {
    color: var(--red);
    text-decoration: none;
    font-size: 12px;
    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: #131313;
    border-bottom-color: var(--red);
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: var(--red);
    color: #fafafa;
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:hover {
    background: #131313;
    color: #fafafa;
    transition: all 0.3s ease-in;
}

button#gdpr-cookie-advanced {
    background: #131313;
    color: #fafafa;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}
