.rank-container {
  position: relative;
  width: 100%;
  background: #212122;
  height: 420px;
  border-top: 3px solid #535357;
  border-bottom: 3px solid #535357;
}

.slider-container {
  margin: auto;
  display: block;
  position: relative;
  width: 70%;
  top: 50%;
}

.slider-container > img {
  position: absolute;
  width: 200px;
  transform: translateX(-50%);
}

.above {
  bottom: 100%;
}

.below {
  top: 100%;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #C8AA6E;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #C8AA6E;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;  
}


input[type="range"] {
  -webkit-appearance: none; 
  appearance: none;
  height: 5px;
  width: 100%;
  position: absolute;
  background-color: #5B5A56;
  pointer-events: none;
}

#from-slider {
  height: 0;
  z-index: 1;
}
