
.range-slider {
  position: relative;
  width: 110px;
  height:40px;
  top:0px;
  margin:10px;
  padding:5px;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 110px;
  height: 0px;
  background-color: #ddd;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  position: absolute;
  top: 35px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background-color: #4CAF50;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.slider::-moz-range-thumb {
  width: 10px;
  height: 20px;
  background-color: #4CAF50;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.slider:nth-child(1)::-webkit-slider-thumb {
  background-color: #2196F3;
}

.slider:nth-child(1)::-moz-range-thumb {
  background-color: #2196F3;
}

.slider:nth-child(2)::-webkit-slider-thumb {
  background-color: #F44336;
}

.slider:nth-child(2)::-moz-range-thumb {
  background-color: #F44336;
}

.slider:focus {
  outline: none;
  opacity: 1;
}

.slider:nth-child(1) {
  z-index: 2;
}

.slider:nth-child(2) {
  z-index: 3;
}


.dropdownContainer {
  position: relative;
  display: inline-block;
  background-color: gainsboro;
  width: 30px;
  
  left: 140px;
  top: -20px;
  border: solid 2px;
  border-radius: 5px;
}

.dropdownRandom {
	position:relative;
	
  padding: 0px;
  margin-top:0px;
  margin-left:0px;
  background-color: red;
  border: none;
  cursor: pointer;
  user-select: none;
}

.dropdownContent {
height:100px;
  width:30px;
  display: none;
  position: relative;
  top:-20px;
  left:-2px;
  z-index: 1;
  
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdownContent .sliderContainer {
  margin-top:0px;
  margin-left:0px;
  height:0px;
  width:30px;
  background-color:white;
}

.dropdownContainer:hover .dropdownContent {
  display: block;
}
.sliderRnd{
	transform: rotate(90deg);
	position:relative;
	left:-45px;
	top:40px;
	height:0px;
	width:100px;
}
.sliderRnd2{
	transform: rotate(90deg);
	position:relative;
	left:-45px;
	top:40px;
	height:0px;
	width:100px;
}