@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700');

#cookieNotificationId {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	background: rgba(0,0,0,0.4);
	overflow: auto;
}
.cookieNotificationContainer {
	font-family: 'Roboto Condensed';
	max-height: 1000px;
	max-width: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%,-50%);
	font-family: 'Roboto Condensed';
	font-weight: 300;
	font-size: 18px;
	text-align: left;
	background-color: #ffffff;
	color: #4b5056;
	padding: 20px 20px;
	border: 5px solid #ffffff;
	border-radius: 5px;
	-moz-box-shadow: 4px 4px 1px 1px #4b5056;
	-webkit-box-shadow: 4px 4px 1px 1px #4b5056;
	box-shadow: 4px 4px 1px 1px #4b5056;
}
@media only screen and (max-width: 1280px) {
	.cookieNotificationContainer {
		top: 0;
		transform: translate(-50%,0);
	}
}
@media only screen and (max-width: 960px) {
	.cookieNotificationContainer {
		top: 0;
		transform: translate(-50%,0);
	}
}
.cookieNotificationClose {
	position: fixed;
	top: 0px;
	right: 5px;
	font-size: 40px;
	cursor: pointer;
}
.cookieNotificationText {
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 20px;
	font-weight: 300;
	line-height: 130%;
}