.whatsapp_minitoggle {
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 9;
}
.notifier_email_switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 27px;
}

.notifier_email_toggle {
  opacity: 0;
  width: 0;
  height: 0;
}
.notifier_email_toggle:checked + .notifier_slider {
  background-color: #4caf50;
}

.notifier_email_toggle:focus + .notifier_slider {
  box-shadow: 0 0 1px #4caf50;
}

.notifier_email_toggle:checked + .notifier_slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}

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

.notifier_slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Rounded sliders */
.notifier_slider_round {
  border-radius: 34px;
}

.notifier_slider_round:before {
  border-radius: 50%;
}
@media all and (max-width: 822px) {
  .notifier_email_switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 27px;
  }
}
@media all and (max-width: 1080px) {
  .notifier_email_switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 27px;
  }
}
@media all and (max-width: 576px) {
  .notifier_email_switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 25px;
  }

  .notifier_email_toggle:checked + .notifier_slider:before {
    transform: translateX(15px);
  }
  .notifier_slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
