.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 90%;
	max-width: 400px;
	background-color: #222;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-top-right-radius: 8px;
	z-index: 10000;
}
.cookie-banner p {
	margin: 0;
}
.cookie-banner .close {
	position: absolute;
	top: 5px;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
}
@media (min-width: 768px) {
	.cookie-banner {
		width: 80%;
		max-width: 500px;
	}
}
@media (min-width: 1024px) {
	.cookie-banner {
		width: 70%;
		max-width: 600px;
	}
}