/* The customContainer */
.customContainer {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 24px;
  cursor: pointer;
  color: #3f3f3f;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Muli', sans-serif;
  font-weight: 700;
}
  
  /* Hide the browser's default checkbox */
  .customContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .customCheckmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* On mouse-over, add a grey background color */
  .customContainer:hover input ~ .customCheckmark {
    border-color: #f94144;
  }
  
  /* When the checkbox is checked, add a blue background */
  .customContainer input:checked ~ .customCheckmark {
    background-color: #f94144;
    border-color: #f94144;
  }
  
  /* Create the customCheckmark/indicator (hidden when not checked) */
  .customCheckmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the customCheckmark when checked */
  .customContainer input:checked ~ .customCheckmark:after {
    display: block;
  }
  
  /* Style the customCheckmark/indicator */
  .customContainer .customCheckmark:after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0px 2px 2px 0px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .customText {
    font-size: 14px;
    position: relative;
    top: 1px;
  }
