label[class*=toogle-switch] input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
label[class*=toogle-switch] > span {
    display: block;
    height: 34px;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    border-radius: 34px;
    width: 60px;
    transition: .4s
}
label[class*=toogle-switch] > span:before {
    position: relative;
    display: block;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: -4px;
    background-color: white;
    -webkit-transition: .2s;
    border-radius: 50%;
    transition: .2s;
}  
label[class*=toogle-switch] > input:checked + span {
    background-color: #0362DD;
}
label[class*=toogle-switch] > input:checked + span:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}