.toggle-switch {
    display: inline-block;
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid;
    border-color: #cccccc;
    position: relative;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    min-width: 54px;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin: 0;    
    font-size:12px;
}

.toggle-switch .knob {
    color: #333333;
    background: #ffffff;
    border: 0;
    width: 32%;

}

.toggle-switch .switch-left {
     color: #fff;    
     background: #6DD900; 
     width: 26px;
     height: 26px;
     -moz-border-radius: 50%;
     -webkit-border-radius: 50%;
     border-radius: 50%;
     
}

.toggle-switch .switch-right {
    color: #000;
    background: #eeeeee;
    width: 26px;
    height: 26px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;

      /*width: 15px;
    height: 15px;
    background: red;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 70px;*/
}
