.et-switch {
  display: inline-block;
  height: 20px;
  line-height: 1;
  position: relative;
  width: 48px;
}

.et-switch input {
  opacity: 0;
}

.et-slider {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  background-color: #DEE0E2;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 48px;
}

.et-slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 22px;
  left: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 48px;
  box-shadow: -1.19px 0.59px 2.37px 0px rgba(0, 0, 0, 0.25);
}

input#et-toggle-opt-out:checked + .et-slider {
  background-color: #F24E1E;
}

input#et-toggle-opt-out:checked + .et-slider::before {
  left: 24px;
  background-color: white;
}

input#et-toggle-opt-out + span::after {
  content: "Meine Besuchsdaten fließen nicht in die Web-Analyse ein.";
  position: absolute;
  left: 58px;
  width: auto;
  white-space: nowrap;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

input#et-toggle-opt-out:checked + span::after {
  content: "Meine Besuchsdaten fließen in die Web-Analyse ein.";
}

input#et-toggle-opt-out:focus + span {
  outline: 1px dashed grey;
  outline-offset: 2px;
}

@media only screen and (max-width: 800px) {
  input#et-toggle-opt-out + span::after {
    white-space: normal;
    width: calc(100vw - 150px);
  }
}
