/* 	Slider auteur: Okba Design  https://codepen.io/Okba-Design/pen/KKVJdNq */
.range input{
	-webkit-appearance:none;
	width:200px;
	height:4px;
	top:50px;
	border-radius:5px;
	background-color:#808080;
	outline:none;
}
.range input::-webkit-slider-thumb{
	-webkit-appearance:none;
	width:20px;
	height:20px;
	border-radius:50%;
	background-color:#606060;
}
.range span{
	position:absolute;
	margin-left:14px;
	margin-top:-14px;
	width:50px;
	height:30px;
	background-color:#808080;
	color: #fff;
	border-radius:3px;
	text-align:center;
	line-height:30px;
}
.range span:before{
	content:'';
	position:absolute;
	border-right:9px solid transparent;
	border-left:9px solid transparent;
	border-bottom:12px solid #808080;
	left:-10px;
	top:16px;
	transform:translateY(-50%) rotate(-90deg);
}

.habillage {
	visibility: visible;
}


/* 	Bouton Marche/Arrêt  */
#Arret {
	width: 70px;
	height: 70px;
	visibility: visible;
	margin: auto;
	display: block;
	cursor: pointer;
}

#Marche {
	width: 70px;
	height: 70px;
	visibility: hidden;
	margin: auto;
	display: block;
	cursor: pointer;
}
/* 	Fin bouton Marche/Arrêt  */