.lcs_wrap {
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0;	
}
.lcs_wrap input {
	display: none;	
}

.lcs_switch {
	display: inline-block;
	position: relative;
	width: 39px;
	height: 19px;
	top: 1px;
	padding-left: 8px;
	margin-bottom: -4px;
	border-radius: 5px;
	background: #ddd;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: 	all .5s ease-in-out;
	transition: 		all .5s ease-in-out;
}
.lcs_cursor {
	display: inline-block;
	position: absolute;
	top: 2px;
   width: 6px;
   height: 14px;
   border-radius: 3px;
   background: #fafafa;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
	z-index: 10;
	
	-webkit-transition: all .5s linear;  
	-ms-transition: 	all .5s linear; 
	transition: 		all .5s linear; 
}
.lcs_label {
   color: #fff;
   font-weight: normal;
   position: absolute;
   /* width: 11px; */
	overflow: hidden;
	text-align: center;
	opacity: 0;
	
	-webkit-transition: all .5s ease-in-out .1s;  
	-ms-transition: 	all .5s ease-in-out .1s;   
	transition: 		all .5s ease-in-out .1s;   
}
.lcs_label.lcs_label_on {
	right: 13px;
	z-index: 6;
	top: -1px;
}
.lcs_label.lcs_label_off {
	right: 12px;
	top: -1px;
}


/* on */
.lcs_switch.lcs_on {
	background: rgba(0, 132, 0, 0.9);
	box-shadow: 0px -1px 2px rgba(0, 244, 0, 0.5) inset;
}
.lcs_switch.lcs_on .lcs_cursor {
	left: 38px; /* width .lcs_switch - (width .lcs_cursor + 2) */
}
.lcs_switch.lcs_on .lcs_label_on {
	opacity: 1;

}


/* off */
.lcs_switch.lcs_off {
	background: rgba(184, 0, 0, 0.9);
	box-shadow: 0px -1px 2px rgba(248, 0, 0, 0.5) inset;
}
.lcs_switch.lcs_off .lcs_cursor {
	left: 3px;
}
.lcs_switch.lcs_off .lcs_label_off {
   opacity: 1;
}


/* disabled */
.lcs_switch.lcs_disabled {
	opacity: 0.65;
	filter: alpha(opacity=65);	
	cursor: default;
}