/* Estilo iOS */
.switch__container {
  margin: 8px auto;
  width: 38px;
}

.switch {
  visibility: hidden;
  position: absolute;
  margin-left: -9999px;
}

.switch + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.switch--shadow + label {
  padding: 2px;
  width: 35px;
  height: 20px;
  background-color: #dddddd;
  border-radius: 40px;
}
.switch--shadow + label:before,
.switch--shadow + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
.switch--shadow + label:before {
  right: 1px;
  background-color: #f1f1f1;
  border-radius: 15px;
  transition: background 0.4s;

  content: "N";
  font-size: 12px;
  padding-top: 2px;
  padding-left: 22px;
  color: #999999;

}
.switch--shadow + label:after {
  width: 18px;
  left: 1px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}
.switch--shadow:checked + label:before {
  background-color: #66e075;
  font-size: 12px;
  content: "S";
  padding-top: 2px;
  padding-left: 5px;
  color: white;
}

.switch--shadow:checked + label:after {
  transform: translateX(15px);
}

/* Estilo Flat */
.switch--flat + label {
  padding: 2px;
  width: 30px;
  height: 15px;
  background-color: #dddddd;
  border-radius: 2px;
  transition: background 0.4s;
}
.switch--flat + label:before,
.switch--flat + label:after {
  display: block;
  position: absolute;
  content: "N";
}
.switch--flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: background 0.4s;
}
.switch--flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 14px;
  background-color: #dddddd;
  border-radius: 1px;
  transition: margin 0.4s, background 0.4s;
}
.switch--flat:checked + label {
  background-color: #66e075;
}
.switch--flat:checked + label:after {
  margin-left: 12px;
  background-color: #66e075;
  /*background-color: #8ce196;*/
}