#blank #labelBlank {
	margin-right: 25px;
	position: relative;
	top: 9px;
}

#blank [type="checkbox"]:not(:checked),
#blank [type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
#blank [type="checkbox"]:not(:checked) + label,
#blank [type="checkbox"]:checked + label {
	position: relative;
	padding-left: 75px;
	cursor: pointer;
}
#blank [type="checkbox"]:not(:checked) + label:before,
#blank [type="checkbox"]:checked + label:before,
#blank [type="checkbox"]:not(:checked) + label:after,
#blank [type="checkbox"]:checked + label:after {
	content: '';
	position: absolute;
}
#blank [type="checkbox"]:not(:checked) + label:before,
#blank [type="checkbox"]:checked + label:before {
	left:0; top: -3px;
	width: 75px; height: 30px;
	background: #FF0000;
	border-radius: 15px;
	-webkit-transition: background-color .2s;
	-moz-transition: background-color .2s;
	-ms-transition: background-color .2s;
	transition: background-color .2s;
}
#blank [type="checkbox"]:not(:checked) + label:after,
#blank [type="checkbox"]:checked + label:after {
	width: 20px; height: 20px;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	transition: all .2s;
	border-radius: 50%;
	background: #C70000;
	top: 2px; left: 5px;
}

/* on checked */
#blank [type="checkbox"]:checked + label:before {
	background:#00CC00;
}
#blank [type="checkbox"]:checked + label:after {
	background: #009900;
	top: 2px; left: 50px;
}

#blank [type="checkbox"]:checked + label .ui,
#blank [type="checkbox"]:not(:checked) + label .ui:before,
#blank [type="checkbox"]:checked + label .ui:after {
	position: absolute;
	left: 6px;
	width: 75px;
	border-radius: 15px;
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	transition: all .2s;
}
#blank [type="checkbox"]:not(:checked) + label .ui:before {
	content: "Non";
	left: 32px
}
#blank [type="checkbox"]:checked + label .ui:after {
	content: "Oui";
	color: #fff;
}
#blank [type="checkbox"]:focus + label:before {
	border: 1px dashed #777;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: -1px;
}
