.form-type-radio input, .form-type-radio label {
  vertical-align: middle;
}
.form-type-radio input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  border: 1px solid #000;
  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-radio input[type=radio]:checked {
  box-shadow: 0 0 0 4px white inset;
  background-color: #000;
}
.form-type-radio input[type=radio]:hover {
  border: 1px solid #000;
}