html {
  margin: 0;
  padding: 0;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* background-color: grey; */
}

.Container {
  max-width: 100%;
  max-height: 100%;
  fill: white!important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.slider {
  -webkit-appearance: none;  
  appearance: none;
  width: 20.5%; 
  height: 5px; 
  background-color: rgb(200, 200, 200);
  background-size: 0;
  outline: none; 
  opacity: 1; 
  -webkit-transition: .2s; 
  transition: opacity .2s;
  position: relative;
  left: 72.5vw;
  margin-top: 22vh;
  z-index: 10;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color:#ff6c00;
  overflow: visible;
  cursor: pointer;
}

.slider2 {
  -webkit-appearance: none;  
  appearance: none;
  width: 20.5%; 
  height: 5px; 
  background-color: rgb(200, 200, 200);
  background-size: 0;
  outline: none; 
  opacity: 1; 
  -webkit-transition: .2s; 
  transition: opacity .2s;
  position: relative;
  left: 72.5vw;
  margin-top: 20vh;
  z-index: 11;
}

.slider2::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color:#ff6c00;
  overflow: visible;
  cursor: pointer;
}