

/* COOKIE BOX - BEGIN */
@keyframes CookieFadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
    
#cookie-banner-container {
	-webkit-transition: opacity .3s;
    transition: opacity .3s;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
    z-index: 9999;
    overflow-y: scroll;
}

#cookie-banner-container.overlay {
	background-color: rgba(85,100,115,0.8);
}

#cookie-banner {
	width: 780px;
	height: auto;
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background: white;
	border-radius: 4px;
	animation: CookieFadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    border: 1px solid #AAA;
}

#cookie-banner .overlay {
	border: 0;
}

#cookie-banner a {
	color: #60c47a;	
}

#cookie-banner p.title {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: bold;
	color: black;
	text-align: center;
}


#cookie-banner p.title2 {
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}


#cookie-banner p {
	font-size: 12px;
}

#cookie-banner p.text {
	text-align: center;
}

#cookie-banner .item {
	border-bottom: 1px solid #DDD;
	padding-bottom: 15px;
	margin-bottom: 15px;
	color: #888;
	position: relative;
}

#cookie-banner .item p {
	margin-right: 80px;
}

#cookie-banner .buttons {
	text-align: center;
	margin-top: 20px;
}

#cookie-banner .buttons button {
	padding: 17px 25px;
	margin: 10px;
	border-radius: 6px;
	border: 1px solid black;
	background: #ffffff;
	font-weight: bold;
	cursor: pointer;
	font-size: 14px;
}

#cookie-banner .buttons button.highlight {
	background: #60c47a;
	border: 1px solid #60c47a;
	color: white;
}


#cookie-banner .buttons #cookie-button-acceptAll.highlight {	
	border: 1px solid black;
	background: #ffffff;
	color: black;
}

#cookie-banner #cookie-button-accept {
	
}

#cookie-banner #cookie-button-reject {
	

}

#cookie-banner #cookie-button-customize {
	
}


#cookie-banner .switch {
  position: absolute;
  display: inline-block;
  width: 54px;
  height: 28px;
  right: 0;
  top: 0;
}

#cookie-banner .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

#cookie-banner .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

#cookie-banner .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

#cookie-banner .switch.disabled .slider {
	cursor: not-allowed;
  	pointer-events: all !important;
}



#cookie-banner input:checked + .slider {
  background-color: #60c47a;
}

#cookie-banner input:focus + .slider {
  box-shadow: 0 0 1px #60c47a;
}


#cookie-banner input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
#cookie-banner .slider.round {
  border-radius: 28px;
}

#cookie-banner .slider.round:before {
  border-radius: 50%;
}

a.cookies-show-setup {
	border: 1px solid white;
	padding: 10px 20px 10px 10px;
	background: none;
	color: #999;
	/*border-radius: 22px;*/
}

a.cookies-show-setup .icon {
	display: inline-block;
	-webkit-mask-image: url(../images/cookie-bite.svg);
	mask-image: url(../images/cookie-bite.svg);
	background-color: orange;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom: 3px;
}

@media screen and (max-width: 800px) {
	#cookie-banner {
		width: 460px;
	}
	
	#cookie-banner button {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	#cookie-banner {
		width: 100%;
	}
	
	#cookie-banner button {
		width: 100%;
	}
}

@media screen and (max-height: 500px) {
	#cookie-banner {
		transform: translateX(-50%);
		top: 10px;
	}
}

@media screen and (max-width: 800px) and (max-height: 768px)  {
	#cookie-banner {
		transform: translateX(-50%);
		top: 10px;
	}
}


/* COOKIE BOX - END  */