.checkbox {
  display:none;
}

.checkbox-label {
  cursor: pointer;
}

.custom-checkbox {
  display: inline-block;
  margin-right: 5px;
  width: 19px;
  height: 19px;
  border: 1px solid #ccc;
  border-radius: 2px;
  position: relative;
  top: 2px;
  background-color: #fff;
  transition: all .25s ease-in-out;

  &:hover {
    border-color: @blue-light;
  }

  &:after {
    .expl-icon-class;
    content: '\e800';
    font-size: 9px;
    color: white;
    top: -2px;
    left: 3px;
    position: relative;
    transition: all .3s ease-in-out;
  }
}

input[type="checkbox"]:checked + .expl-custom-checkbox {
  border-color: @blue-light;
  background-color: @blue-light;
}
