#cookieConsent {
	display: block;
	position: fixed;
	right: 25px;
	bottom: 25px;
	background-color: rgba(255, 255, 255, 0.9);
	color: black;
	border-radius: 10px;
	padding: 20px;
	max-width: 350px;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0.9);
	background-clip: padding-box;
}
	#cookieConsent a {
		color: black;
		text-decoration: underline;
	}

	#cookieConsent a:hover {
		color: #1a1a1a;
	}

	#cookieConsent > div {
		display: flex;
		align-items: center;
		margin-bottom: 1em;
	}

	#cookieConsent > div > span {
		font-size: 3em;
		margin-right: .5em;
	}

	#cookieConsent > div > p {
		margin: 0;
	}

#acceptCookies {
	background-color: #1a1a1a;
	color: white;
	border: none;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	display: block;
	margin: 0 auto;
}

#acceptCookies:hover {
	background-color: #333;
}

@media (max-width: 400px) {
	#cookieConsent {
		padding: 10px;
		text-align: center;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
}

#analyticsToggle {
	margin: 10px;
	cursor: pointer;
}

#analyticsToggle:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 2px solid #000;
	border-radius: 3px;
}

#analyticsToggle:checked:before {
	background-color: #000;
}