.toggleChecked {
    position: relative;
    width: 45px;
    height: 17px;
    border-radius: 20px;
    margin-top: 5px;
    background-color:rgba(150,150,150,.25);
    box-shadow:inset rgba(0,0,0,.35) 0 1px 3px;
}
.toggleChecked input {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width:100%;
    height:100%;
}

.toggleChecked input:checked ~ .checkedBall {
    left: 0;
}

.toggleChecked input:checked ~ .checkedBall:before {
  background-color:rgb(3, 172, 255);
}


.txtOption {
    color:#888;
    cursor:pointer;
    position:absolute;
    margin: 0 14px;
    transition: color 0.25s ease 0.25s;
    font:12px/17px "Segoe UI", Segoe, Optima, Candara, "DejaVu Sans", Calibri, Arial, sans-serif;
}
.f_html {
    right:100%;
    pointer-events: none;
    color:#888;
}
.f_flash {
    left:100%;
}
.toggleChecked input:checked ~ .f_html {
    pointer-events: auto;
    color:#111;
}

.toggleChecked .checkedBall {
    display: block;
    position: absolute;
    z-index: 4;
    top: 3px;
    left: 23px;
    width: 8px;
    height: 8px;
    border-radius: 23px;
    transition: left 0.25s ease;
  /*  box-shadow:rgba(0,0,0,.3) 0 4px 7px, inset #fff 0 -1px 1px;
    background: #f0f0f0;
    background: linear-gradient(to bottom,  #ffffff 0%,#f7f7f7 50%,#f0f0f0 50%,#e7e7e7 82%,#dadada 100%);*/

}
.toggleChecked .checkedBall:before {
    content:" ";
    display:block;
    position:absolute;
    top:2px;
    left:8px;
    width:8px;
    height:8px;
    border-radius:3px;
    background-color:red;
    box-shadow:inset rgba(0,0,0,.3)0 1px 1px, #fff 0 1px;
}
