.radio-selection {
  position: relative;
  font-family: 'Gilmer';
  label {
    margin-left: 36px;
  }
  input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .checkmark {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 1px #EAEAEA;
    border-radius: 50%;
  }
  /* On mouse-over, add a grey background color */
  &:hover input ~ .checkmark {

  }

  /* When the radio button is checked, add a blue background */
  input:checked ~ .checkmark {
    background-color: black;
    border: solid 1px transparent;
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the indicator (dot/circle) */
  //.checkmark:after {
  //  top: 6px;
  //  left: 6px;
  //  width: 8px;
  //  height: 8px;
  //  border-radius: 50%;
  //  background: white;
  //}
  &:not(:last-child) {
    margin-bottom: .875rem;
  }
}
