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

  }
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  /* When the radio button is checked, add a blue background */
  input:checked ~ .checkmark {
    background-color: #F6B39A;
    border: solid 1px transparent;
    display:block;
  }

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

  /* Style the indicator (dot/circle) */
  .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

}
