.onoffswitch {
    position: relative; 
	width: 66px;
	display: inline-block;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
display: block;
overflow: hidden;
cursor: pointer;
background-color: #fff;
border-radius: 20px;
}

.onoffswitch-inner {
    width: 200%; margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
float: left;
width: 50%;
height: 27px;
padding: 0;
line-height: 24px;
font-size: 11px;
color: white;
font-family: "robotoregular", Arial, Helvetica, sans-serif;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

.onoffswitch-inner:before {
content: "On";
padding-left: 5px;
background-color: #2fbf7a;
color: #FFFFFF;
border: 1px solid #2fbf7a;
	text-align: left;
}

.onoffswitch-inner:after {
content: "Off";
padding-right: 5px;
background-color: #fff;
color: #999999;
text-align: right;
border: 1px solid #dfdfdf;
border-radius: 20px;
}
.funding-edit-bar-checkboxs .onoffswitch-inner:after {content: "Offline";}
.funding-edit-bar-checkboxs .onoffswitch-inner:before {content: "Online";}

.onoffswitch-switch {
	width: 27px;
	margin-top: 3px;
	margin-right: -1px;
	margin-left: 3px;
	margin-bottom: 3px;
	height: 27px;
	background: #FFFFFF;
	border-radius: 50%;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: -3px;
	bottom: 0;
	right: 45px;
	-moz-transition: all 0.3s ease-in 0s;
	-webkit-transition: all 0.3s ease-in 0s;
	-o-transition: all 0.3s ease-in 0s;
	transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}
