.lbl{
    display: inline-block;
    width: 70px;
    height: 25px;
    background: #fff;
    border-radius: 20px 0px;
    cursor: pointer;
    position: relative;
    transition: .2s;
  }
   
  .lbl::after{
    content: '';
    display: block;
    width: 35px;
    height: 15px;
    /* background: #a2a6aa; */
    background: #053162;
    border-radius: 20px 0px;
    position: absolute;
    top: 5px;
    left: 4px;
    transition: .2s;
  }
   
  #switch:checked + .lbl::after{
    left: 30px;
    /* background: #043262; */
    background: #dc3445;
  }
  
  #switch{
    display: none;
  }
  