@charset "UTF-8";
#cookiedisplaywrap {
	position: fixed;
	top: 0;
	z-index: 11111;
	width: 100%;
	height: 100%;
	background: rgba(95, 95, 95, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: justify;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	font-family: Arial, sans-serif;
	letter-spacing: .02em;
	font-size: 1rem;
	line-height: 1.4rem;
}
#cookiedisplaywrap p {
	margin: 0 0 1.1rem 0
}
#cookiedisplaywrap h5, #cookiedisplaywrap h6 {
	font-size: 1.1rem;
	line-height: 1.2rem;
	font-weight: bold;
}
#cookiedisplay {
	width: 95%;
	min-width: 300px;
	max-height: 95%;
 padding: .7rem 1.5rem .7rem 1.5rem;
	background: rgba(255, 255, 255, 1);
	font-size: 95%;
	line-height: 25px;
	border-radius: 5px;
	border: 1px solid rgba(60,60,60,.4);
	box-shadow: 0 0 7px 3px rgba(60,60,60,.5);
}
.cdsigap {
	display: block;
 margin: .6rem 0 .6rem 0;
}
.sessioninfo-close {
	color: #fff;
	white-space: nowrap;
	padding: 1px 5px 1px 5px;
	background: #1083bc;
	border: 1px solid #1083bc;
	border-radius: 3px;
	-webkit-appearance: none;
	cursor: pointer;
}
.sessioninfo-close:hover {
	color: #555;
	padding: 1px 5px 1px 5px;
	background: #fff;
	border: 1px solid #C5C5C5;
}
#cookiedisplay a {
	color: #555;
	text-decoration: underline;
}
#cookiedisplay a:hover {
	text-decoration: none;
	color: #C5C5C5;
}
 @media screen and (min-width: 576px) {
#cookiedisplay {
	width: 90%;
	border-radius: 5px;
}
}
 @media screen and (min-width: 992px) {
#cookiedisplay {
	width: 80%;
}
}
 @media screen and (min-width: 1024px) {
#cookiedisplay {
	width: 75%;
}
}
input.sessioninfo {
	display: none;
}
.sinfoclose:checked ~ #cookiedisplaywrap {
	transform-origin: top;
	transform: translateY(-101%);
	transition: transform 1.2s ease .8s;
	animation: csdisplaywrap 2s linear;
	z-index: -1;
}
 @keyframes csdisplaywrap {
 0% {
 transform: translateY(0);
 z-index: 11111;
}
 50% {
 transform: translateY(0);
}
 99% {
 z-index: 11111;
}
 100% {
 transform-origin: top;
 transform: translateY(-101%);
 z-index: -1;
}
}
.tabsc {
	display: flex;
	flex-flow: row wrap;
	max-width: 100%;
	margin-bottom: 1.2rem;
	background: #fff;
}
.tabcinput {
	position: absolute;
	display: none;
}
.tabcbutton {
	width: 100%;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	background: transparent;
	color: #848a8d;
	border-bottom: 1px solid #ccc;
	transform: scaleX(1);
}
.tabcbutton:hover {
	color: #515151;
}
.tabsc .tabcbuttonactive {
	color: #515151;
}
.tabcinput:checked + .tabcbutton {
	background-color: #fff;
	color: #515151;
}
.tabc {
	width: 100%;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform-origin: top;
	transition: all .6s ease -.2s;
	transform: scaleY(0.5);
}
.tabcinput:checked + .tabcbutton + .tabc {
	max-height: 100%;
	opacity: 1;
	transform-origin: top;
	transition: all .6s ease;
	transform: scaleY(1);
}
.tabccontent {
 padding: 1rem 1rem .4rem 1rem;
	background: #fff;
	border-bottom: 1px solid #ccc;
	max-height: 100%;
}
.tabccontent h6 {
	font-size: 1.1rem;
	font-weight: bold;
}
.cdscrollbar {
	scrollbar-width: thin;
	overflow: auto;
}
.cdscrollbar {
	-ms-scrollbar-track-color: #ccc;
}
 .cdscrollbar::-webkit-scrollbar-track {
 background: #ccc;
}
 .cdscrollbar::-webkit-scrollbar-thumb {
}
 .cdscrollbar::-webkit-scrollbar {
 width: 8px;
}
 @media (min-width: 768px) {
.tabcbutton {
	flex: 1;
	text-align: center;
	height: 50px;
	line-height: 50px;
	position: relative;
	z-index: 1;
	border: 0;
	border: solid #ccc;
	border-width: 0 0 1px 0;
}
.tabcinput:checked + .tabcbutton {
	z-index: 1;
}
.tabc {
	order: 99;
	margin-top: -1px;
}
.tabccontent {
 padding: 1.6rem 1.4rem .4rem 1.4rem;
}
.tabc {
	max-height: 0;
	opacity: 0;
	transform-origin: top;
	transform: scaleY(0.7);
	transition: transform 0.5s linear, opacity 0.5s linear;
}
.tabcinput:checked + .tabcbutton + .tabc {
	max-height: 100%;
	opacity: 1;
	transform-origin: top;
	transform: scaleY(1);
	transition: transform 0.5s linear, opacity 0.5s linear;
}
}
.tabcbutton {
	position: relative;
}
.tabcbutton:after {
	content: "";
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	bottom: 0px;
	opacity: 0;
	transform-origin: bottom;
	transform: scaleX(0);
	transition: all 0.4s ease-in-out;
}
.tabcbutton:hover:after, .tabcinput:checked + .tabcbutton:after {
	opacity: 1;
	transform: scaleX(1);
}
.cookiesettings {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
	justify-content: space-between;
}
.csetbutton {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
 margin-bottom: .8rem;
	text-align: center;
	line-height: 2.5rem;
	font-weight: bold;
	border-radius: 3px;
	-webkit-appearance: none;
	cursor: pointer;
}
.csetbutton:hover {
	line-height: 2.5rem;
	color: #515151;
	background-color: #fff;
	border-radius: 3px;
	-webkit-appearance: none;
}
 @media screen and (min-width: 576px) {
.csetbutton {
	width: 48%;
	max-width: 48%;
}
}
 @media screen and (min-width: 768px) {
.csetbutton {
	width: 24%;
	max-width: 24%;
}
}
.showhidecdisplay {
	display: none;
}
.showhidecdisplay:checked ~ #cookiedisplaywrap, .sinfoclose:checked ~ #cookiedisplaywrap {
	transform-origin: top;
	transform: translateY(-101%);
	transition: transform 1.2s ease .8s;
	animation: csdisplaywrap 2s linear;
	z-index: -1;
}
 @keyframes csdisplaywrap {
 0% {
 transform: translateY(0);
 z-index: 11111;
}
 50% {
 transform: translateY(0);
}
99% {
 z-index: 11111;
}
 100% {
 transform-origin: top;
 transform: translateY(-101%);
 z-index: -1;
}
}
#csconfirmation {
	position: fixed;
	bottom: 50%;
	right: 50%;
	width: 300px;
	max-width: 300px;
	transform: translateX(50%) translateY(50%);
	z-index: -1;
	color: #555;
	text-align: center;
 font-size: .95rem;
	font-weight: bold;
	background: #fff;
	border-radius: 5px;
	border: 1px solid rgba(60,60,60,.4);
	box-shadow: 0 0 7px 3px rgba(60,60,60,.5);
	padding: 1rem 1rem 0 1rem;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
}
.showhidecdisplay:checked ~ #csconfirmation {
	animation: csconfirm 4s linear;
}
 @keyframes csconfirm {
 0% {
 max-height: 0;
 opacity:0;
 z-index: 11112;
}
 40% {
 max-height: 1000px;
 opacity:1;
}
 70% {
 max-height: 1000px;
 opacity:1;
}
 90% {
 opacity:0;
}
99% {
 z-index: 11112;
}
 100% {
 max-height: 0;
 z-index: -1;
}
}
.tabcdetailout {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.tabcdetailout, .tabcdetailin {
	margin: 0;
}
.tabcdetailin {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
 padding: .3rem 0 0 0;
	z-index: 1;
}
.csdetailbutton {
 padding: .4rem .8rem .4rem 1.5rem;
	line-height: 2rem;
	cursor: pointer;
}
.csdetailbutton:hover {
	text-decoration: underline;
}
.csditems, .csdcitems {
	width: 28px;
	height: 28px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
 margin-left: .9rem;
	font-size: 95%;
	font-weight: bold;
	background: #ddd;
	border-radius: 50%;
}
.csdetailinput {
 margin: .4rem 0 .4rem .8rem;
	cursor: pointer;
}
.csdetailcontent {
	position: relative;
	width: 90%;
	border-bottom: 1px solid #ccc;
}
.csdetailcontent:last-of-type {
	border-bottom: 0;
}
 @media screen and (min-width: 576px) {
.csdetailcontent {
	width: 93%;
}
}
.csdclist {
	opacity: 1;
	appearance: none;
	position: absolute;
	top: -1.7rem;
	left: -5px;
	width: 16px;
	height: 10px;
	cursor: pointer;
	z-index: 2;
	background: url('../img/more.png') no-repeat;
}
.csdclistE {
	opacity: 1;
	appearance: none;
	position: absolute;
	top: -1.5rem;
	left: -5px;
	width: 16px;
	height: 10px;
	cursor: pointer;
	z-index: 2;
	background: url('../img/empty.png') no-repeat;
}
.csdclc {
	opacity: 1;
	appearance: none;
	position: absolute;
	top: 1rem;
 right:.5rem;
	width: 16px;
	height: 10px;
	cursor: pointer;
	z-index: 2;
	background: url('../img/more.png') no-repeat;
}
.csdclist:checked, .csdclc:checked {
	background: url('../img/less.png') no-repeat;
}
.csdclcE {
	opacity: 1;
	appearance: none;
	position: absolute;
	top: 1rem;
 right:.5rem;
	width: 16px;
	height: 10px;
	cursor: pointer;
	z-index: 2;
	background: url('../img/empty.png') no-repeat;
}
.csdclisting {
	position: relative;
}
.csdclisting a {
	font-weight: bold!important;
	text-decoration: none!important;
}
.csdclisting a:hover {
	font-weight: bold!important;
	color: #707070!important;
}
.csdclisting, .csdclcontent {
	display: none;
 padding: .7rem .7rem .1rem .7rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.csdclcontent {
	background: #f7f7f7;
}
.csdclheader {
	font-weight: bold;
}
.cookieproviderlink {
	font-weight: bold;
}
.cookieproviderlink:after {
	content:'\2937';
	position:relative;
	top:.2rem;
	padding: 0 0 0 .5rem;
	font-size: 1.2rem;
	color: #777;
}
.csdclist:checked ~ .csdclisting, .csdclc:checked ~ .csdclcontent {
	display: block;
}
input.cddatenschutz {
	display: none;
}
.cddatas {
	position: fixed;
	top: 40%;
	right: 50%;
	width: 96%;
	max-width: 100%;
	transform: translateX(50%) translateY(-40%);
	z-index: 11113;
	color: #555;
	font-size: 100%;
	background: #fff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: max-height 1.2s ease, opacity 1.2s ease;
}
 @media screen and (min-width: 576px) {
.cddatas {
	width: 91%;
	max-width: 91%;
}
}
 @media screen and (min-width: 992px) {
.cddatas {
	width: 81%;
}
}
 @media screen and (min-width: 1024px) {
.cddatas {
	width: 76%;
}
}
.cddatenschutz:checked + .cddatas {
	padding: 1.4rem 1rem 1.4rem 1rem;
	border: 1px solid rgba(60,60,60,.4);
	border-radius: 5px;
	box-shadow: 0 0 7px 3px rgba(60,60,60,.5);
	opacity: 1;
	min-height: 300px;
	max-height: 90%;
}
 @media screen and (min-width: 992px) {
.cddatenschutz:checked + .cddatas {
	max-height: 80%;
}
}
.button-cdds {
	text-decoration: underline;
	cursor: pointer;
}
.cdds-close {
	display: flex;
	justify-content: flex-end;
	position: sticky;
	bottom: 0;
	right: 0;
}
.button-cdds-close {
	color: #fff;
	white-space: nowrap;
	padding: 1px 5px 1px 5px;
	border-radius: 3px;
	cursor: pointer;
	opacity: 1;
}
.cddatenschutz:not(:checked) + .cddatas .cdds-close .button-cdds-close {
	opacity: 0;
	transition: opacity 0s ease;
}
.button-cdds-close:hover {
	color: #555!important;
	padding: 1px 5px 1px 5px;
	background: #fff;
	border: 1px solid #C5C5C5;
}
.button-cdds:hover, .button-cdds-close:hover {
}
