@charset "UTF-8";


#impressum,
#datenschutz {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 10px;
  z-index: 100;
  cursor: pointer;
}
#impressum img,
#datenschutz img {
  width: 100%;
  height: auto;
}
#datenschutz {
  right: 10px;
}
#impressum {
  right: 60px;
}
.overlay {
  display: none;
  position: absolute;
  width: 70%;
  left: 13%;
  background-color: #fff;
  max-height: 80vh;
  color: #333;
  z-index: 100;
  top: 7vh;
  padding: 2%;
  font-family: 'Dosis', sans-serif;
}
.overlay.show {
  display: block;
}
.overlay.overlay-datenschutz {
  overflow-y: scroll;
}
.overlay .close {
  color: #333;
  width: 40px;
  height: 40px;
  border: 3px solid #333;
  border-radius: 50%;
  text-align: center;
  font-size: 55px;
  line-height: 0.45;
  right: 15px;
  top: 15px;
  position: absolute;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s ease;
}
.overlay .close:hover {
  transform: rotate(135deg);
}
