.ios_toggle {
	display:none;
}
.ios_toggle + label+ label{
	color:#cc0000;
	font-size:0.8em;
}
.ios_toggle:checked + label+ label{
	color:#004020;
}
.ios_toggle + label+ label:before{
	content:' ';
	white-space: pre;
	font-weight: bold;
}
.ios_toggle + label {
	position: relative;
	display: inline-block;
	height: 1.5em;
	width: 3em;
	background-color: #FFF;
	border-radius: 1.5em;
	border: 1px solid #999999;
	cursor: pointer;
	transition: background-color 0.2s ease-out;
}
.ios_toggle + label:after {
	content: '';
	background-color: #FFF;
	position: absolute;
	display: block;
	height: 100%;
	width: 50%;
	border-radius: 1.5em;
	border: 1px solid #999;
	box-shadow: 0 1px 1px 0px #999;
	top: -1px;
	left: -1px;
}
.ios_toggle:checked + label {
	background-color: #66ff8c;
}
.ios_toggle:checked + label:after {
	left: calc(50% - 1px);
}