#cookieConsentContainer {
	position: fixed;
	bottom: 0;
	z-index: 10;
	min-height: 112px;
	display: flex;
	align-items: center;
	background-color: black;
	font-size: 14px;
	padding: 12px;
	margin: auto;
	justify-content: center;
	flex-direction: column;
}
#cookieConsentContainer a {
	color: #00eaff;
}
#cookieConsentButtons {
	display: flex;
}
#acceptCookies {
	background-color: var(--secondary);
	font-weight: bold;
	color: var(--lightgrey);
}
#acceptCookies, #rejectCookies {
	font-size: 14px;
	margin: 7px;
	padding: 5px 20px;
	cursor: pointer;
	border-radius: 50px;
	border: none;
	background: white;
	color: black;
}