.slidecontainer {
  width: 100%;

}

.slider {
  -webkit-appearance: none;
  -webkit-appearance: slider-horizontal;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 100px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}


.sliderVerical {
  -webkit-appearance: none;
  -webkit-appearance: slider-vertical;
  writing-mode: bt-lr;
  width: 25px;
  height: 100%;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  transform: rotate(180deg);
 
}

.sliderVerical:hover {
  opacity: 1;
}

.sliderVerical::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 100px;
  background: #4CAF50;
  cursor: pointer;
}

.sliderVerical::-moz-range-thumb {
  width: 25px;
  height: 100px;
  background: #4CAF50;
  cursor: pointer;
}


/**************************************************/



.sliderRound {
  -webkit-appearance: none;
  width: 100%;
  
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.sliderRound:hover {
  opacity: 1;
}

.sliderRound::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}

.sliderRound::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}


















/*
@media (orientation: portrait){
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
  }
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
  }
      

}*/
