.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 #122291;
  background-color: #fff;
  box-shadow: 0 0 0 0 #122291 inset;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  transition: all ease 0.4s;
  cursor: pointer;
}
.form-type-checkbox input[type=checkbox]:checked {
  box-shadow: 0 0 0 2px #fff inset;
  background-color: #122291;
  border: 1px solid #122291;
}
.form-type-checkbox input[type=checkbox]:focus {
  outline: none;
}
.form-type-checkbox label {
  font-weight: 400 !important;
}