/*
 * cookiebanner.css
 */

 .cookiebanner-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
}

.cookiebanner-all .border {
   background: #00b1e9;
   background-size: 100% 8px;
   padding-top: 10px;
   margin: 0 -40px;
 }

.cookiebanner-header header h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.cookiebanner a{
  text-decoration: underline;
}

.cookiebanner a.btn-cookie {
  color:#fff;
  width: 100%;
  max-width: unset!important;
  background: #000;
  color: #fff;
  padding: 20px 12px;
  font-size: 16px;
  border-radius: 0;
  text-decoration: none;
}

.btn-cookie:hover {
  background: #00b4ea;
  color: #fff;
}

.cookiebanner-slide {
  width: 100%;
  max-width: 630px;
  padding: 30px 40px;
  transition: margin-left ease-in-out 300ms;
  background-color: #FFF;
}

.slide1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.slide2 {
  position: relative;
  left: 100%;
}
.slide2.active { margin-left: -100%; }

.cookiebanner-withdrawal {
  padding-top: 30px;
}

.cookiebanner-headline-slide1 h2, .cookiebanner-headline-slide2 h2 {
  color: #0053A1;
}

.cookiebanner-header { padding-bottom: 30px; }
.cookiebanner-header h1 { font-size: 30px; }


.cookiebanner-overlay.cookiebanner-active {
  opacity: 1;
  visibility: visible;
}
/*body.cookiebanner-active > :not(.cookiebanner) {
	-webkit-filter: blur(5px);
	filter: blur(5px);
}*/

.cookiebanner-scroll {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 100vh;
}

.cookiebanner-all {
	position: relative;
	width: 100%;
	max-width: 630px;
	overflow-x: hidden;
}
.cookiebanner-content-all h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
/*.cookiebanner-content-all h3 { font-size: 22px;}*/
.cookiebanner-content-all p {
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 20px;
}


.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #00b1e9;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.container-checkbox .checkmark:after {
  left: 8px;
  top: 3px;
  width: 9px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cookiebanner-close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  /*opacity: 0.3;*/
  opacity: 0.7;
  z-index: 1;
}
.cookiebanner-close:hover {
  opacity: 1;
}
.cookiebanner-close:before, .cookiebanner-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  /*background-color: #333;*/
  background-color: #00b1e9;
}
.cookiebanner-close:before {
  transform: rotate(45deg);
}
.cookiebanner-close:after {
  transform: rotate(-45deg);
}
.cookiebanner-withdrawal p,
.cookiebanner-footer p {
  margin-bottom: 0;
}