.form-group.radios {
  text-align: left;
}

.form-group input[type="radio"] {
  vertical-align: middle;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.625rem;
  background: none;
  border: 0;
  box-shadow: inset 0 0 0 1.5px #fff;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin-bottom: 2px;
  margin-left: 7px;
  transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
  pointer-events: none;
  order: 1;
}

.radios-label {
  font-size: 20px;
  font-weight: 300;
  display: flex;
  /* flex-direction: row-reverse; */
  align-items: center;
  cursor: pointer;
}

.form-group input[type="radio"]:checked {
  box-shadow: inset 0 0 0 0.4rem #fff;
}

.radios-container {
  display: flex;
  column-gap: 3vw;
  margin-left: 22px;
}

@media screen and (max-width: 767px) {
  .form-group input[type="radio"] {
    margin-right: 3px;
  }

  .radios-container {
    justify-content: center;
  }

  .radios-label {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .radios-container {
    margin-left: 0;
    column-gap: 2vw;
  }

  .radios-label {
    align-items: unset;
    font-size: 13px;
  }

  .form-group input[type="radio"] {
    width: 1rem;
    height: 1rem;
  }

  .form-group input[type="radio"]:checked {
    box-shadow: inset 0 0 0 0.35rem #fff;
  }
}
