/* CSS FOR COOKIE CONSENT POP-UP */

#cookie-banner {
	position: fixed;
	top: 100px;
	left: 20%;
	right: 20%;
	height: auto;
	border-radius: 10px;
	padding: 15px;
	background-color: white;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: black;
	z-index:10;
	opacity: 0;
}
.closeCookie {
	height: 20px;
	background-color: #777;
	border: none;
	color: white;
	border-radius: 2px;
	cursor: pointer;
}