/* GDPR Cookie dialog */

.gdprouter{
	position: fixed;
	backdrop-filter: blur(6px);
	top:0;
	left:0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.25);
}


.gdprcookie {
    color: white;
    font-size: 1em;
    line-height: 1.5em;
    max-width: 40em;
    padding: 1rem;
    background-color: #728389;
	 z-index: 99;
	 border-radius: 4px;
	 -webkit-box-shadow: 0px 0px 22px 3px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 22px 3px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 22px 3px rgba(0,0,0,0.75);
	margin: auto;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.4em;
    margin-bottom: .5rem;
    color: white;
}
.gdprcookie h2 {
    font-size: 1.2em;
}
.gdprcookie a {
	font-weight: bold;
   color: #CF6A66;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.gdprcookie a:hover {
	color: #F4EDFF;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}
.gdprcookie-buttons button {
    color: white;
    font-family: inherit;
    font-size: 1.2em;
    padding: .4rem .8rem;
	 border: 0;
    border-radius: 2px;
    margin: 0 .5rem;
    background: #CF6A66;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-transform:uppercase;
}
.gdprcookie-buttons button:hover {
    color: #fff;
    background: #394849;
    cursor: pointer;
}

.gdprcookie-buttons button:disabled {
    color: #728389;
    background: #93A1A7;
	 cursor: default;
}


/* 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: 50%; */
    padding: 0;
    margin: 4px 0;
    width: 35px;
    height: 17px;
    border-radius: 8.5px;
    background: #CA0000;
    position: relative;
}

.gdprcookie-types input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.gdprcookie-types input + label {
  position: absolute;
  left: 40px;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.gdprcookie-types input + label:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}

.gdprcookie-types input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: -40px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gdprcookie-types input:disabled + label:after {
  opacity: .5;
  cursor: default;
}

.gdprcookie-types input:checked + label:after {
  left: -20px;
}

.gdprcookie-types input:checked + label:before {
  background: Green;
}

/* .gdprcookie-types input[type=checkbox]:not(:checked), .gdprcookie-types input[[type="checkbox"]:checked {
   margin-right: .25rem;
	position: absolute;
	pointer-events: none;
	opacity: 0;
} */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.gdprcookie {
		min-width: 480px;
	}
}


@media only screen and (max-width: 479px) {
	.gdprcookie {
		width: 100%;
	    max-width: 40em;
	}
}
