#black {
    position: absolute;
    z-index: 2000;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}

#cookie-box {
    position: fixed;
    width: 600px;
    max-width: 90%;
    background-color: white;
    z-index: 3000;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 10px;
    display: none;
}

#cookie-box #info-page, #cookie-box #settings-page {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

#cookie-box #settings-page {
    display: none;
}

#cookie-link {
    position: fixed;
    bottom: 0;
    left: 20px;
    padding: 5px 15px;
    background-color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 3;
    font-size: 1rem;
}

#cookie-box a, #cookie-link a {
    cursor: pointer;
}

#cookie-box .button-row {
    display: flex;
    align-items: start;
}

#cookie-box a {
    display: block;
    width: 150px;
    background-color: grey;
    height: 50px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 20px;
}

#cookie-box #cookie-accept {
    background-color: green;
}

/* Schalter */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.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%;
}