label.switchify.switchify-label {
  display: inline-block;
  position: relative;
  top: 3px;
}

label.switchify.switchify-label > input.switchified {
  display: none;
}

label.switchify.switchify-label > span.switchify-switch {
  display: block;
  background-color: #cecece;
  height: 16px;
  width: 40px;
  position: relative;
  border-radius: 1em;
  transition: background-color 0.25s, border-color 0.25s;
  cursor: pointer;
}

label.switchify.switchify-label > span.switchify-switch::after {
  content: "";
  background-color: #fff;
  display: block;
  height: 22px;
  width: 17px;
  position: absolute;
  border-radius: 1em;
  left: -1px;
  transition: left 0.25s;
  box-shadow: 0 0 3px black;
  top: -3px;
  cursor: pointer;
}

label.switchify.switchify-label > input.switchified:checked + span.switchify-switch {
  background-color: #299309;
}

label.switchify.switchify-label > input.switchified:checked + span.switchify-switch::after {
  left: calc(100% - 16px);
}