/* GDPR Cookie dialog */
#cookiebanner{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(58,67,77,.75);
	z-index: 1000;
	pointer-events: all;
}


.gdprcookie {
	position: fixed;
    color: white;

    left: 1.5rem;
	right: 1.5rem;
    bottom: 1.5rem;
    
    padding: 1rem;
    background: black;
	z-index: 1001;
	overflow: auto;

	font-family: arial;
    font-size: 1em;
    line-height: 1em;
}

@media screen and (max-width: 980px){
	.gdprcookie{
		top:1.5rem;
	}
	.gdprcookie input[type=checkbox]{width: 50px; height:50px; margin-right: 20px;}
	.gdprcookie-types li label{font-size: 1.8em;}
}

.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1em;
    margin-bottom: .5rem;
	color: #fff;
}
.gdprcookie h2 {
    font-size: 1.0em;
}
.gdprcookie a {
    color: inherit;
	text-decoration: none;
}
.gdprcookie p{margin-left: 75px; clear: both;}
.gdprcookie table { padding: 20px 0;}
.gdprcookie td {
    font-size: 0.8em;
}

.gdprcookie .gdprcookie-intro p{margin-left: 0px;}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}
.gdprcookie-buttons button {
    color: white;
    font-family: inherit;
    font-size: 1em;
    padding: .8rem;
    border: solid .05rem currentColor;
    border-radius: .15rem;
    margin: .2rem .5rem;
    background: none;
    cursor: pointer;
}
.gdprcookie-buttons button:hover,
.gdprcookie-buttons button:first-of-type:hover{
	background-color:#666;
	border-color:#666;
}

.gdprcookie-buttons button:first-of-type{background-color: #49b300; border-color: #49b300;}

.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
}


/* GDPR Cookie types */

.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}
.gdprcookie-types li {
    display: block;
    list-style: none;
	/*
    float: left;
    width: 45%;
	*/
    padding: 0;
    margin: 10px 0;
}

.gdprcookie-types li table{width:100%; font-weight: normal;}
.gdprcookie-types li table td{border: 1px solid #333; vertical-align: top; padding:2px; color: #fff;}
.gdprcookie-types li table tr:first-of-type td{font-weight: bold;}



.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
}




.cont h4{ font-weight: bold; font-size: 1.2em; line-height: 1.1em; display: block; margin: 7px 0 5px 15px; float: left;}


.switch {
  display: block;
	float: left;
  height: 34px;
  position: relative;
  width: 60px;
}

.switch input {
  display:none;
}

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

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

input:checked + .slider {
  background-color: #49b300;
}

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

.slider.round {
  border-radius: 34px;
}

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


@media screen and (max-width: 510px){
	.gdprcookie p{margin: 20px 0 0 0; font-size: 0.8em;}
	.gdprcookie td{font-size: 1em;}
	.cont h4{ font-size: 1em; margin: 2px 0 5px 15px;}
	.switch{
		height: 17px;
		width: 30px;
	}
	
	.slider:before {
		bottom: 2px;
		height: 13px;
		left: 2px;
		width: 13px;
	}
	input:checked + .slider:before {
		transform: translateX(13px);
	}
}

