.toggle-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.toggle-label {
  width: 48px;
  height: 21px;
  background: #ccc;
  position: relative;
  display: inline-block;
  border-radius: 46px;
  border: 1px solid #aaa;
  transition: 0.4s;
  box-sizing: border-box;
  text-align: right;
  color: #999;
}
.toggle-label:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  left: 2px;
  top: 2px;
  z-index: 2;
  background: #999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.toggle-input:checked + .toggle-label {
  background-color: #fff;
  text-align: left;
}
.toggle-input:checked + .toggle-label:after {
  left: 28px;
}

.toggle-input + .toggle-label span:first-child {
  display: none;
}
.toggle-input:checked + .toggle-label span:first-child {
  display: inline-block;
  text-align: right;
  padding-left: 4px;
  padding-bottom: 12px;
  font-size: 12px;
  vertical-align: middle;
}
.toggle-input + .toggle-label span:last-child {
  display: inline-block;
  padding-right: 4px;
  padding-bottom: 12px;
  font-size: 12px;
  vertical-align: middle;
}
.toggle-input:checked + .toggle-label span:last-child {
  display: none;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 21px;
  margin-top: 6px;
}