.onoffswitch {
    position: relative; 
    width: 28px;    
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; 
    overflow: hidden; 
    cursor: pointer;
    height: 10px !important; 
    padding: 0; 
    line-height: 16px !important;
    border: 0px solid #FFFFFF; 
    border-radius: 16px;
    background-color: rgba(0,0,0,0.09);
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-label:before {
    content: "";
    display: block;
    height: 16px !important;
    width: 16px !important;    
    margin: -5px;
    background: #747474;
    position: absolute; 
    top: 2px;
    bottom: 0;
    right: 18px;
    border-radius: 16px;    
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: rgb(4, 65, 139);
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    border-color: #747474; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 3px;
    background-color:#065AC7;
    
}