form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

label {
  display: flex;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
  /* Accessible outline */
  /* Remove comment to use */
  /*
    &:focus-within {
        outline: .125em solid $primary-color;
    }
  */
}
label input {
  position: absolute;
  left: -9999px;
}
label input:checked + span {
  background-color: #e8eaee;
}
label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #6d7993;
}
label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}
label span:hover {
  background-color: #e8eaee;
}
label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #6d7993;
}/*# sourceMappingURL=style.css.map */