/*




*/
#cookie-notice,
#cookie-notice * {
	box-sizing: border-box;
	text-align: center;
}
#cookie-notice,
#cookie-notice p,
#cookie-notice-button {
	margin: 0;
}
#cookie-notice {
	bottom: 0;
	left: 0;
	margin: 0;
	max-height: 0;
	padding: 1rem;
	position: fixed;
	width: 100%;
	z-index: 32123;
	/**/
	background-color: rgb(5, 120, 190);
	color: white;
}
/*



*/
#cookie-notice a {
	color: white;
	text-decoration: underline;
}
#cookie-notice-button {
	background-color: rgb(60, 60, 60);
	border: 0;
	color: white;
	display: block;
	line-height: 1;
	padding: 8px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: background ease .1s;
	transition: background ease .1s;
	}
#cookie-notice #cookie-notice-button:hover {
	background-color: rgb(93,105,112);
}
@media ( max-width: 575.98px ) {
	#cookie-notice-button {
		margin: 35px auto -7px;
	}
}
@media ( min-width: 576px ) {
	#cookie-notice-button {
		position: absolute;
		right: 15px;
		top: 50%;
	}
}
/*




*/

#cookie-notice .container {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 970px;
}
@media ( min-width: 576px ) and ( max-width: 1179.98px ) {
	#cookie-notice .container {
		padding: 0 115px 0 15px;
	}
}
@media ( min-width: 1180px ) and ( max-width: 1800px ) {
	#cookie-notice .container {
		padding: 0 15px;
	}	
}
/*




*/
[data-cookie-notice="hidden"]
#cookie-notice {
	display: none !important;
	height:0 !important;
	opacity: 0;
	overflow:hidden;
}
[data-cookie-notice="visible"]
#cookie-notice {
	display:block;
	max-height: none;
}
/*




*/
[data-cookie-notice-position="top"]
#cookie-notice {
	box-shadow: 0 -10px 10px 5px rgba(0,0,0,.5);
	height: 13rem;
	max-height: 13rem;
	top: -13rem;
	-webkit-transition-property: top, opacity, height;
	transition-property: top, opacity, height;
}
[data-cookie-notice-position="top"]
body {
	padding-top: 0;
}
[data-cookie-notice-position="top"][data-cookie-notice="visible"]
body {
	padding-top: 13rem;
	-webkit-transition-property: padding-top;
	transition-property: padding-top;
}
[data-cookie-notice-position="top"][data-cookie-notice="visible"]
#cookie-notice {
	top: 0;
	opacity: 1;
}
/*




*/
@media print {
	body {
		padding-top:0 !important;
	}
}
