input[type=radio] {
  -webkit-appearance: none;
  cursor: pointer;
  height: 1.125rem;
  width: 1.125rem;
  border: 1px solid #161616;
  background-color: transparent;
  position: relative;
  top: 5px;
  margin: 2px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
input[type=radio]:checked:before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #161616;
  box-sizing: border-box;
  border-radius: 50%;
}
@media screen and (-ms-high-contrast: active) {
  input[type=radio]:checked:before {
    background-color: windowText;
  }
}
input[type=radio]:disabled {
  border-color: #c6c6c6;
}
input[type=radio]:disabled:checked:before {
  background-color: #c6c6c6;
}
input[type=radio]:disabled:before {
  background-color: #c6c6c6;
}
input[type=radio]:disabled + label {
  color: #c6c6c6;
}

.form-radios {
  display: flex;
  margin-top: 0.5rem;
  flex-direction: column;
  align-items: flex-start;
}

.form-type-radio {
  position: relative;
}
.form-type-radio label {
  margin-left: 0.25rem;
}
.form-type-radio label:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=radio.css.map */
