#cookie_notice_container.remove{
	opacity:0;
	display:none;
}
#cookie_notice_container{
	opacity: 1;
	transition: opacity .2s;
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	_height:100px;
	width:100%;
	background-color:white;
	border:4px solid black;
}
#cookie_notice_inner{
	max-width:1100px;
	margin:0 auto;
	padding:20px 20px 0 20px;
	display:grid;
	 grid-template-columns: 70% 30%;
	overflow:hidden;
}

#cookie_notice_content{
	color:black;
	font-size:1rem;

}
#cookie_notice_content a{
	font-weight:bold;
	color:black;
}

#cookie_notice_controls{
	padding-bottom:10px;
}
#cookie_notice_controls a{
	display:block;
}
a#accept_cookie{
	padding:10px 20px;
	background-color:black;
	color:white;
	font-weight:bold;
	text-decoration: none;
	_margin:20px auto 0 auto;
	text-align: center;
}
a#removeCookienotice{
	color:white;
	margin-top:5px;
	text-align: center;
	display:block;
	padding:10px 20px;
	display: none;
}
#cookie_notice_options.hidden_options{
	margin-bottom:-100%;
	transition: margin 3s;
}

#cookie_notice_options{
	display:block;
	width:100%;
	grid-column: 1 / span 2;
	margin-bottom:0;
	transition:margin .3s;
	padding-bottom:20px;
}
#cookie_notice_options ul{
	padding:0;
	margin:0;
	display: flex;
	justify-content: flex-end;
}
#cookie_notice_options a#confirm_options{
	display:table;
	margin:0 auto;
	padding:10px 20px;
	text-decoration:none;
	color:white;
	border:3px solid white;
	margin-top:40px;
}
#cookie_notice_options ul li{
	display:inline-block;
	width:33.333%;
	vertical-align: top;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
	
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.text_content{
	display:block;
	position:absolute;
	top:7px;
	left:70px;
	width:100%;
	font-size:1em;
	min-width:200px;
}

#cookie_notice_content,
#cookie_notice_content p{
	font-size:1rem;
}

#cookie_notice_controls a{
	font-size:1rem;
	padding:10px 20px;
	text-decoration: none;
}
a#removeCookienotice,
a#open_hidden_options{
	text-align:center;
	color:black;
	position: relative;
}

#open_hidden_options::before{
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background: url(../img/settings.svg) center center no-repeat;
    z-index: 3;
    left: 0;
    background-size: cover;
    top: 0;
}
#open_hidden_options:hover::before{
	-webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*overlay*/


#cookie_notice_container.overlay{
	top:0;
	background:rgba(255,255,255,.9);
	border:0;
}
#cookie_notice_container.overlay #cookie_notice_inner{
	width:500px;
	height:auto;
	background:white;
	border:4px solid black;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-250px;
	margin-top:-250px;
	display:block;
}

#cookie_notice_container.overlay #cookie_notice_options ul{
	display:block;
	margin-top:0;
	transition: margin .3s;
	padding:15px 0;
}
#cookie_notice_container.overlay #cookie_notice_options.hidden_options ul{
	margin-top:-100%;
}
#cookie_notice_container.overlay #cookie_notice_content{
	margin-bottom:30px;
}

#cookie_notice_container.overlay #cookie_notice_options{
	overflow:hidden;
	padding-bottom:0;
}
#cookie_notice_container.overlay #cookie_notice_options.hidden_options{
	margin-bottom:0;
}

@media (max-width:767px){
	#cookie_notice_inner{
		grid-template-columns: 100%;
	}
	#cookie_notice_content, #cookie_notice_controls {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
	}
	#cookie_notice_controls {
		grid-column:1 / 2;
		grid-row:2/2
	}
}
@media (max-width:540px){
	#cookie_notice_container.overlay #cookie_notice_inner{
		width:auto;
		max-width:100%;
		left:20px;
		margin-left:0;
		right:20px;
	}
}