.form-type-checkbox input, .form-type-checkbox label {
  vertical-align: middle;
}
.form-type-checkbox input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  background-color: white;
  box-shadow: 0 0 0 0 white inset;
  width: 30px;
  height: 30px;
  -webkit-appearance: none;
  transition: all ease 0.4s;
  cursor: pointer;
}
.form-type-checkbox input[type=checkbox]:checked {
  box-shadow: 0 0 0 4px white inset;
  background-color: #79dea8;
}
.form-type-checkbox input[type=checkbox]:hover {
  border: 1px solid #79dea8;
}