/* COOKIE BANNER - MEYN-ANGUS */

.cookiebannerContainer {
	width: 100%;
	height: 100%;
	float: none;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
.cookiebannerContent {
	width: 100%;
	max-width: 800px;
	height: 320px;
	float: none;
	position: relative;
	background: #fff;
	padding: 2em;
	margin: 0 auto;
	overflow-y: scroll;
}
.cookiebannerContent::-webkit-scrollbar {
	width: 5px !important;
	height: 5px !important;
	border-radius: 2px !important;
}
.cookiebannerContent::-webkit-scrollbar-track {
	background: #fff !important;
}
.cookiebannerContent::-webkit-scrollbar-thumb {
	background: #CDE300 !important;
}
.cookiebannerContent.top {
	top: 0;
	left: 0;
}
.cookiebannerContent.bottom {
	top: calc(100% - 320px);
	left: 0;
}
.cookiebannerContent.center {
	top: calc(50% - 160px);
	left: 0;
}
.cookiebannerContent label.title {
	width: 100%;
	height: auto;
	float: left;
	font-family: RW_BLD;
	font-size: 22px;
	color: #000;
}
.cookiebannerContent label.text {
	width: 100%;
	height: auto;
	float: left;
	font-family: RW_STD;
	font-size: 15px;
	color: #000;
}
.cookiebannerContent label.checkboxtext {
	width: auto;
	height: 20px;
	float: none;
	font-family: RW_STD;
	font-size: 15px;
	color: #000;
	cursor: default;
}
.cookiebannerContent label.checkboxtext:hover {
	cursor: pointer;
}
.cookiebannerContent label.text a {
	width: auto;
	float: none;
	color: #5B884A;
	text-decoration: none;
	cursor: default;
}
.cookiebannerContent label.text a:hover {
	color: #434343;
	text-decoration: underline;
	cursor: pointer;
}
.cookiebannerContent input[type=button] {
	width: 33%;
	height: 35px;
	float: right;
	background: #5B884A;
	color: #fff;
	border: 2px solid #5B884A;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: default;
}
.cookiebannerContent input[type=button]:hover {
	background: #fff;
	color: #5B884A;
	border: 2px solid #5B884A;
	cursor: pointer;
}
.cookiebannerContent input[type=checkbox] {
	width: 16px;
	height: 16px;
	float: none;
	vertical-align: sub;
	cursor: default;
}
.cookiebannerContent input[type=checkbox]:hover {
	cursor: pointer;
}
.cookiebannerElement_width {
	width: 25%;
}

/* Media Query für Ansicht iPhoneX Landscape (Apple) */
@media screen and (max-width: 820px) {
	
	.cookiebannerContent {
		width: auto;
		margin: 0 2em 0 2em;
	}
}

/* Media Query für Ansicht Tab Portrait (iPad, Android Tablets) */
@media screen and (max-width: 768px) {
	
	.cookiebannerContent {
		width: auto;
		height: 350px;
		margin: 0 2em 0 2em;
	}
	.cookiebannerContent.bottom {
		top: calc(100% - 350px);
		left: 0;
	}
	.cookiebannerContent.center {
		top: calc(50% - 175px);
		left: 0;
	}
}

/* Media Query für Ansicht Smartphone Landscape (iPhone 6/7/8, Neuere Android Smartphones) */
@media screen and (max-width: 670px) {
	
	.cookiebannerContent {
		height: 340px;
	}
	.cookiebannerContent.bottom {
		top: calc(100% - 340px);
		left: 0;
	}
	.cookiebannerContent.center {
		top: calc(50% - 170px);
		left: 0;
	}
}

/* Media Query für Ansicht Smartphone Landscape (iPhone 4/5, Ältere Android Smartphones) */
@media screen and (max-width: 570px) {
	
	.cookiebannerContent {
		background: rgba(255, 255, 255, 0.7);
	}
}

/* Media Query für Ansicht Smartphone Portrait (iPhone 6/7/8/X, Neuere Android Smartphones) */
@media screen and (max-width: 500px) {
	
	.cookiebannerContent {
		height: 500px;
		background: rgba(255, 255, 255, 1.0);
	}
	.cookiebannerContent.bottom {
		top: calc(100% - 500px);
		left: 0;
	}
	.cookiebannerContent.center {
		top: calc(50% - 250px);
		left: 0;
	}
	.cookiebannerContent input[type=button] {
		width: 100%;
	}
	.cookiebannerElement_fullwidth {
		width: 100%;
	}
}

/* Media Query für Ansicht Smartphone Portrait (iPhone 4/5, Ältere Android Smartphones) */
@media screen and (max-width: 320px) {
	
	.cookiebannerContent {
		background: rgba(255, 255, 255, 0.7);
	}
}