#modalCookie{
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background:rgba(10,10,10,0.9);
	z-index:9999;
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
}
#modalCookieContent{
	position:absolute;
	bottom:0px;
	width:100%;
	left:0px;
	right:0px;
	box-sizing:border-box;
	background:#000000;
	color:#fff;
	border-top:3px solid #fff;
}
#modalCookieContentInner{
	text-align:center;
	width:100%;
	max-width:680px;
	margin:0 auto;
}
#modalCookieContent h2,#modalCookieContent h3{
	color:#fff;
	padding-left:8px;
	padding-right:8px;
}
#modalCookieContent p{
	color:#fff;
	padding-left:8px;
	padding-right:8px;
}
#modalCookieContent a.btnModalCookieContent, #modalCookieContent input.btnModalCookieContent{
	color:#000;
	background:#fff;
	display:inline-block;
	padding:6px;
	margin:8px;
	text-decoration:none;
	border-radius:6px;
}
body #modalCookieContent a{
	color:#ffffff;
	text-decoration:underline;
}
#modalCookieContentExtra{
	margin-left:12px;
	margin-right:12px;
	background:#fff;
	color:#000;
	padding:8px;
}
#modalCookieContent #modalCookieContentExtra p,#modalCookieContent #modalCookieContentExtra h3{
	color:#000;
}
#modalCookieContent #modalCookieContentExtra input.btnModalCookieContent{
	background:#000000;
	color:#ffffff;
	padding:12px;
	border:0px;
	cursor:pointer;
}
 /* The switch - the box around the slider */
.modalCookieContentSwitch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
  margin-left:10px;
}

/* Hide default HTML checkbox */
.modalCookieContentSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.modalCookieContentSwitchSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.modalCookieContentSwitchSlider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.modalCookieContentSwitch input:checked + .modalCookieContentSwitchSlider {
  background-color: #2196F3;
}

.modalCookieContentSwitch input:focus + .modalCookieContentSwitchSlider {
  box-shadow: 0 0 1px #2196F3;
}

.modalCookieContentSwitch input:checked + .modalCookieContentSwitchSlider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.modalCookieContentSwitchSlider.modalCookieContentSwitchSliderRound {
  border-radius: 34px;
}

.modalCookieContentSwitchSlider.modalCookieContentSwitchSliderRound:before {
  border-radius: 50%;
} 
@media screen and (max-width: 560px) {
	#modalCookie{
		font-size:0.9em;
	}
	#modalCookie h2{
		font-size:16px;
	}
}