.onoffswitch {
    position: relative; width: 60px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFF; 
    border-radius: 20px;
    background-color: #E0E0E0;
    margin-bottom:0;
}

.onoffswitch-inner-sfy {
    display: block;
    width: 200%;
   /* margin-left: -91%;*/
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner-sfy:before {
    content: "ON";
}
.onoffswitch-inner-sfy:after {
    content: "OFF";
}
.onoffswitch-inner-sfy:before, .onoffswitch-inner-sfy:after {
    display: block;
    float: left;
    width: 50%;
    height: 25px;
    padding: 0;
    line-height: 25px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner-sfy:before {
    padding-left: 10px;
    background-color: #E0E0E0;
    color: #FF5A4E;
}
.onoffswitch-inner-sfy:after {
    padding-right: 4px;
    background-color: #E0E0E0;
    color: #999999;
    text-align: right;
}
.onoffswitch-switch-sfy {
    display: block;
    margin: 1px;
    background: #A1A1A1;
    position: absolute;
    top: 6px;
    bottom: 0;
    right: 40px;
    width: 15px;
    height: 15px;
    /* border: 1px solid #FFFFFF; */
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
    
    
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner-sfy {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch-sfy{
    right: 5px; 
    background-color: #FF5A4E; 
}



/* alternative switch */
.onoffswitch-plugin {
    position: relative; width: 60px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-plugin-checkbox {
    display: none;
}
.onoffswitch-plugin-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFF; 
    border-radius: 20px;
    background-color: #E0E0E0;
    margin-bottom:0;
}

.onoffswitch-plugin-inner-sfy {
    display: block;
    width: 200%;
   /* margin-left: -91%;*/
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-plugin-inner-sfy:before {
    content: "ON";
}
.onoffswitch-plugin-inner-sfy:after {
    content: "OFF";
}
.onoffswitch-plugin-inner-sfy:before, .onoffswitch-plugin-inner-sfy:after {
    display: block;
    float: left;
    width: 50%;
    height: 25px;
    padding: 0;
    line-height: 25px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-plugin-inner-sfy:before {
    padding-left: 10px;
    background-color: #E0E0E0;
    color: #FF5A4E;
}
.onoffswitch-plugin-inner-sfy:after {
    padding-right: 4px;
    background-color: #E0E0E0;
    color: #999999;
    text-align: right;
}
.onoffswitch-plugin-switch-sfy {
    display: block;
    margin: 1px;
    background: #A1A1A1;
    position: absolute;
    top: 6px;
    bottom: 0;
    right: 40px;
    width: 15px;
    height: 15px;
    /* border: 1px solid #FFFFFF; */
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
    
    
}
.onoffswitch-plugin-checkbox:checked + .onoffswitch-plugin-label .onoffswitch-plugin-inner-sfy {
    margin-left: 0;
}
.onoffswitch-plugin-checkbox:checked + .onoffswitch-plugin-label .onoffswitch-plugin-switch-sfy{
    right: 5px; 
    background-color: #FF5A4E; 
}







