/* COOKIE NOTICE */
#cookie_agreement {
	background-color: rgb(6, 68, 175, 0.9);

	display: none;	
	position: fixed;
	z-index: 100;

	top: 0;
	bottom:0;
	left: 0;
	right: 0;
}

#cookie_notification {
	background-color: #F8F8F8;
	color: #101010;

	text-align: center;
	overflow: auto;
	width: var(--navigation_main_size);
}

#cookie_notification a,
#cookie_notification a:visited {
	color: var(--BM_blue);
}

#cookie_notification a:hover {
	color: var(--BM_lightgreen);
}

#cookie_notification img {
	height: 36px;
	margin-top: 24px;
}

#cookie_notification p,
#cookie_notification button {
	margin-top: 10px;
}

#cookie_notification p {
	font-size: 16px;
	text-align: left;
	
	margin-bottom: 10px;
	margin-left: 27px;
	margin-right: 27px;
}

#cookie_notification button {
	margin-bottom: 25px;
}

/* COOKIE NOTICE ON SMALLER DEVICES */
@media screen and (max-width: 1024px) {
	#cookie_notification {
		border-radius: 2px;

		margin: auto;
		max-height: 90%;
		width: 80%;
	}

	#cookie_notification img {
		height: 40px;
	}
}