input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: rgba(0, 0, 0, 0);
  /* Not removed via appearance */
  margin: 0;
  position: relative;
  -webkit-border-radius: 0;
  display: inline-block;
  overflow: hidden;
  width: 51px;
  height: 31px;
  border-radius: 15.5px;
  background-color: #e9e9ea;
  transition: background-color 250ms;
  vertical-align: middle;
}
input[type=checkbox]:before {
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 15.5px;
  content: "";
  dispaly: inline-block;
  width: 27px;
  height: 27px;
  background-color: white;
  transition: all 200ms;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}
input[type=checkbox]:checked {
  background-color: #075e54;
}
input[type=checkbox]:checked:before {
  left: 22px;
}
input[type=checkbox]:disabled {
  background-color: #efefef;
}
input[type=checkbox]:disabled:before {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
input[type=checkbox]:disabled:checked {
  /*background-color: #b7dec0;*/
  background-color: #075e54;
}
input[type=checkbox] + label {
  vertical-align: middle;
  font-family: Verdana;
}