/*
* {
	box-sizing: border-box;
}
body {
	width: 100%;
	height: 100%;
}
*/
.cookie-notification {
	position: fixed;
	/*background-color: rgba(0, 0, 0, .8);*/
	/*background-color: #9EAC31;*/
	background-color: rgba(158, 172, 49, 1.0);
	bottom: 0;
	/*width: 100%;*/
	color: white;
	padding: 5px 10px 5px 10px;
	z-index: 99999;
	border-radius: 7px;
	left: 50%;
    transform: translateX(-50%);
    /*width: 500px;*/
}
.cookie-notification_hidden_yes {
	display: none;
}
.cookie-notification__header {
	margin-bottom: 3px;
	font-size: 14px;
	text-align: center;
}
.cookie-notification__body {
	margin-bottom: 5px;
	font-size: 12px;
	text-align: center;
}
.cookie-notification__body a {
	color: white;
	text-decoration: underline;
}
.cookie-notification__buttons {
	text-align: center;
}
.cookie-notification__button {
	font-size: 14px;
	margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  /* Styles to be applied for screens up to 600px wide (e.g., mobile phones) */
.cookie-notification {
	padding: 5px;
	border-radius: 0px;
	width: 100%;
}
