#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 30px);
	background-color: #222;
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	z-index: 9999;
	border-radius: 5px;
}
#cookie-banner .close-icon {
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	font-size: 20px;
}
@media (min-width: 768px) {
	#cookie-banner {
		width: calc(100% - 30px);
	}
}