#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 17%;
	width: 66%;
	background-color: #f9f9f9;
	color: #000;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 5px;
	z-index: 9999;
}
#cookie-banner p {
	margin: 0;
}
#cookie-banner .close-icon {
	position: absolute;
	right: 10px;
	top: 5px;
	cursor: pointer;
}
@media (max-width: 768px) {
	#cookie-banner {
		left: 2%;
		width: 96%;
	}
}