/* CSS Document 2015-03-25 21:15 */
	#Identite {
	position:relative;
	top:5px;
	margin: 0 auto;
	left:0px;
	z-index:1;
	text-align:center;
}
    .style1 {
	color: #CCCCCC;
	font-size: 18px;
}
    #button {
	float: left;
	width:70px;
	height:26px;
	z-index:2;
	top: 5px;
}
    #options {
	display:none;
	float: left;
	background-color:#222222;
	opacity:1;
	width:560px;
	height:180px;
	z-index:100000;
	top: 0px;
	color:#FFFFFF;
	font-size:9px;
	margin-left: 10px;
}
    #sliders{
	display: block;
	z-index:100001;
	left: 0px;
	top: 12px;
}
.backbutton {
	float : left;
}
.optionscontainer, .slidecontainer {
  display: flex;
  flex-direction: column;
    flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
width:600px;
height:80px;
padding: 10px;
row-gap: 10px;
column-gap: 2em;
}
.slide {
    align-self : auto;
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}




