.check_label{
  display: block;
  color: #333;
}
.customcheck{
  width: 150px;
    height: 34px;
    line-height: 25px;
    padding: 0px 27px 0px 0px;
    border-radius: 22.5px;
    border: solid 1px #d8d8d8;
    cursor: pointer;
    position: relative;
    margin: .5rem 0 0;
    box-sizing: border-box;
}
.customcheck:before,
.customcheck:after{
	color: #939393;
	position: absolute;
	top: 4px;
	width: 70px;
	height: 20px;
	padding: 0px 25px 0px 22px;
	z-index: 0;
  box-sizing: border-box;
}
.customcheck:before{
	left: 5px;
}
.customcheck:after{
	right: 5px;
}
.customcheck:before,
.customcheck.active .checkitem:before{
	content: 'Oui';
}
.customcheck:after,
.checkitem:before{
	content: 'Non';
}
.customcheck .checkitem{
	color: #fff;
	width: 70px;
	height: 25px;
	margin: 0;
	padding: 0px 25px 0px 22px;
	border-radius: 17.5px;
	background-color: #999;
	transition: all .5s ease;
	position: absolute;
	right: 5px;
	top: 4px;
  box-sizing: border-box;
  z-index: 1;
}
.customcheck.active .checkitem{
	right: calc(100% - 75px);
  background-color: #2fb5d2;
}
.checkitem:before{
	transition: all .5s ease;
}
.customcheck + .wpcfu-list-item-label{
	display: none;
}