.lbl2 {
  position: relative;
  display: block;
  height: 20px;
  width: 44px;
  background: #898989;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.lbl2:after {
  position: absolute;
  left: -2px;
  top: -3px;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0px 3px 3px rgba(0,0,0,0.05);
  content: '';
  transition: all 0.5s ease;
}
.lbl2:active:after { transform: scale(1.15, 0.85); }

.cbx:checked ~ label { background: #3F51B5; }

.cbx:checked ~ label:after {
  left: 20px;
  background:#171796;
}

.cbx:disabled ~ label {
  background: #d5d5d5;
  pointer-events: none;
}

.cbx:disabled ~ label:after { background: #bcbdbc; }




.cbx2:checked ~ label { background: #3F51B5; }

.cbx2:checked ~ label:after {
  left: 20px;
  background:#171796;
}

.cbx2:disabled ~ label {
  background: #d5d5d5;
  pointer-events: none;
}

.cbx2:disabled ~ label:after { background: #171799; }



.hidden { display: none; }