[type="checkbox"] {
    position: relative;
    left: 0px; 
    top: 0px;
    z-index: 0;
    -webkit-appearance: none;
  }
  /* [type="checkbox"] {
    /* position: relative;
    display: block;
    cursor: pointer; */
    /* font-family: sans-serif; */
    /* font-size: 24px; */
    /* line-height: 1.3; */
    /* padding-left:70px; */
    /* margin-top: -30px; */
  /*} */
  [type="checkbox"]:before {
    width: 60px;
    height: 20px;
    border-radius: 20px;
    border: 2px solid #ddd;
    background-color: #EEE;
    content: "";
    margin-right: 15px;
    transition: background-color 0.5s linear;
    z-index: 5;
    position: absolute;
    left: 0px;
    top: -6px;
  }
  [type="checkbox"]:after {
    width: 30px;
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    content: "";
    transition: margin 0.1s linear;
    box-shadow: 0px 0px 5px #aaa;
    position: absolute;
    left: 2px;
    top: -4px;
    z-index: 10;
  }
  [type="checkbox"]:checked:before {
    background-color: #6f228d;
  }
  [type="checkbox"]:checked:after {
    margin: 0 0 0 30px;
  }