.cookiePopup {
	z-index: 502;
	display: flex;
	justify-content: space-around;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.cookiePopup > div {
	display: flex;
	flex-direction: column;
	vertical-align: middle;
}

.cookiePopup > div > div {
	width: 100%;
	max-width: 700px;
	margin: auto;
	border-radius: 5px;
	background-color: white;
	padding: 10px;
	box-shadow: 0px 0px 10px 5px;
	text-align: center;
}

.cookiePopup a[href] {
	margin: 5px 0px;
}

.cookiePopup > div > div > div {
	text-align: center;
	margin-top: 10px;
}

.cookiePopup span {
	cursor: pointer;
	border: 1px solid black;
	border-radius: 3px;
	background-color: #d3d3d3;
	padding: 3px 12px;
	color: black;
}

.cookiePopup.cookiePopup span:hover {
	background-color: #e2e2e2;
}