.slidecontainer {
	width: 100%;
  }
  
  .slider {
	/*-webkit-appearance: none;*/
	width: 100%;
	height: 3px;
	border-radius: 5px;
	
	outline: none;
	opacity: 0.5;
	-webkit-transition: .2s;
	transition: opacity .2s;
	margin: 5px 0px 0px 0px;
	border:solid 10px #fcc;
	background: #bbb;
  }
  
  .slider:hover {
	opacity: 1;
  }
  
  .slider::-webkit-slider-thumb  {
	-webkit-appearance: none;
	appearance: none;
	width: 15 px;
	height: 10px;
	border-radius: 50%; 
	cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
	width: 15px;
	height: 10px;
	border-radius: 50%;
	cursor: pointer;
  }

  #sldX::-webkit-slider-thumb{	
	background: red;
  }
  #sldY::-webkit-slider-thumb{	
	background: #E0C000;
  }
  #sldZ::-webkit-slider-thumb{	
	background: blue;
  }

  



  /*
  #sldX::-moz-range-thumb{	
	background: red;
  }
  #sldY::-moz-range-thumb{	
	background: #E0C000;
  }
  #sldZ::-moz-range-thumb{	
	background: blue;
  }
  */
  