.sl-switch 
{
    display: block;
	margin: 12px auto;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 30px;
	padding: 3px;
	background-color: white;
	-moz-border-radius: 18px;
	-webkit-border-radius: 18px;
	cursor: pointer;
}

.sl-switch .sl-switch-label 
{
	position: relative;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	-moz-border-radius: inherit;
	-webkit-border-radius: inherit;
	border-radius: inherit;
	-webkit-transition: 0.15s ease-out;
	-moz-transition: 0.15s ease-out;
	-o-transition: 0.15s ease-out;
	transition: 0.15s ease-out;
	-webkit-transition-property: opacity background border;
	-moz-transition-property: opacity background border;
	-o-transition-property: opacity background border;
	transition-property: opacity background border;
}

.sl-switch.on .sl-switch-label
{
    background:#616c72;
}

.sl-switch.off .sl-switch-label
{
    background:#bdc3c7;
}

.sl-switch.on .sl-switch-label span,.sl-switch.off .sl-switch-label span
{
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}

.sl-switch.off .sl-switch-label span
{
   right: 11px;
}

.sl-switch.on .sl-switch-label  span
{
   left: 11px;
}

.sl-switch .sl-switch-toggler
{
 	position  : absolute;
    top       : 28%;
    width	  : 18px;
    height	  : 18px;
    background: white;
}