/* CSS Consentbox System */
:root {
	--x6pt: 6pt;
	--x7pt: 7pt;
	--x8pt: 8pt;
	--x9pt: 9pt;
	--x10pt: 10pt;
	--x11pt: 11pt;
	--x12pt: 12pt;
	--clrBackground: #444444;
	--clrHeadline: #e2e2e2;
	--clrText: #c1c1c1;
	--clrTextSecondary: #CFCFCF;
	--clrButton: #262626;
	--clrButtonText: #c1c1c1;
	--clrLink: #666666;
	--clrHighlight: #FFFDCD;
}


#ConsentBox {
	background-color: var(--clrBackground);
	border-top: solid 8px var(--clrButton);
	border-right: none;
	border-bottom: solid 5px var(--clrButton);
	border-left: none;
	padding: 40px;	
	bottom: 0;
	left: 0;
	width: 100%;
	position: fixed;
	font-family: Arial,sans-serif;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.75);
	box-sizing: border-box;
	transition-property: background-color,height,width,max-height,max-width,display,position,left,top,bottom,right,transform;
	transition-duration: .9s;
	transition-timing-function:ease-in-out;
	z-index: 9999999;
}

.ConsentboxHide {
	display: none;
}

.ConsentBoxInnen {
	height: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

.ConsentBoxLogo {	
	right: 20px;
  	top: 20px;
	position: absolute;
}

.ConsentLogo {
	max-width: 80%;
	height: auto;
}

.ConsentBoxContent {
	display: inline-block;
	max-width: 70%;
	padding-bottom: 0;	
	padding: 0;
}

.ConsentBoxButtons {
	display: inline-block;
	min-width: 30%;
	margin-top: 40px;
	max-width: 30%;	
	text-align: center;
	min-height: 50px;
	flex-shrink: 0;
	padding: 0;
}

.ConsentBoxDiv {
	z-index: 33333;
	position: relative;
}

.ConsentBoxText {
	padding-bottom: 20px;
	color: var(--clrText);
	font-size: var(--x11pt);
	line-height: 1.3em;
	text-align: justify;
}

.ConsentBoxHeadline {
	font-size: 12pt;
	color: var(--clrHeadline);
	padding-bottom: 10px;
	font-weight: bold;
}

.ConsentBoxSwitches {
	margin-bottom: 20px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;	
}

.ConsentBoxSwitchBox {
	column-span: none;
	display: inline-flex;
	margin-bottom: 5px;
	width: 240px;
	text-align: left;
	margin-right: 15px;
}

.ConsentSwitchButton, .ConsentSwitchText {
	font-size: 11pt;
	color: var(--clrText);
}

.ConsentSwitchButton {
	display: inline;
	margin-right: 5px;
	flex-shrink: 0;
}

.ConsentSwitchText {
	display: inline;
	padding-top: 2px;
	cursor: pointer;
}

.WeitereLinks {
	text-align: center;
	font-size: var(--x9pt);
	color: var(--clrLink);
	line-height: 1em;
}

.WeitereLinks a {	
  font-size: 9pt;
  color: var(--clrLink);
  padding: 10px;
  display: inline-block;
}
.LinkTrenner {
	padding: 10px;
  	display: inline-block;
}
.ConsentButtons {
	display: inline-block;
}

.ConsentButtonNo {
	font-size: 11pt;
	color: var(--clrButtonText);
	background-color: var(--clrButton);
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.5);	
	margin: 10px;	
	width: 200px;
	max-width: 100%;
	display: inline-block;
	text-align: center;
	position: relative;
	height: auto;
	padding: 7px 0 7px 10px;
	border-radius: 3px;
	line-height: normal;
}
.ConsentButtonYes {
	font-size: 11pt;
	color: var(--clrButtonText);
	background-color: var(--clrButton);
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.5);	
	margin: 10px;	
	width: 200px;
	max-width: 100%;
	display: inline-block;
	text-align: center;
	position: relative;
	height: auto;
	padding: 7px 0 7px 10px;
	border-radius: 3px;
	line-height: normal;
}
.ConsentButtonSave {
	font-size: 11pt;
	color: var(--clrButtonText);
	background-color: var(--clrButton);
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.5);	
	margin: 10px;	
	width: 200px;
	max-width: 100%;
	display: inline-block;
	text-align: center;
	position: relative;
	height: auto;
	padding: 7px 0 7px 10px;
	border-radius: 3px;
	line-height: normal;
}
.ConsentButtonNo:hover, .ConsentButtonYes:hover, .ConsentButtonSave:hover {
	background-color: #666666;
	
}
.InfoTextBox {
	display: block;
}
.InfoTextEinstellungen {
	display: none;
}
.InfoTextMarketing {
	display: none;
}
.InfoTextMessung {
	display: none;
}
.ConsentTextWillkommen {
	display: block;
}

.ConsentTextDetails {
	display: none;
}
.ShowWillkommen{
	display: none;
}
.ShowDetails {
	display: block;
}