.input-Checkbox-Version2-box {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #727272;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .input-Checkbox-Version2-box .inputCheck {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .input-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
  }
  
  .input-Checkbox-Version2-box:hover .inputCheck ~ .input-checkmark {
    background-color: #ccc;
  }
  
  .input-Checkbox-Version2-box .inputCheck:checked ~ .input-checkmark {
    background-color: #7560fb;
  }
  .input-checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .input-Checkbox-Version2-box input:checked ~ .input-checkmark:after {
    display: block;
  }
  .input-Checkbox-Version2-box .input-checkmark:after {
    left: 8px;
    top: 3px;
    width: 7px;
height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }