.toggle-label {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 34px;
  font-family: sans-serif;
}

.toggle-label input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E80A0A;
  transition: 0.4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Quando ligado */
.toggle-label input:checked + .toggle-slider {
  background-color: #4CAF50;
}

.toggle-label input:checked + .toggle-slider::before {
  transform: translateX(36px);
}
