body {
  margin: 0;
  padding: 0;
  width:50vw;
  height: 100vh;
  background-color: #eee;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width:50%;
  height:100%;
}

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #242f3f;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  animation: loader 2s infinite ease;
  z-index: 15;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
  z-index: 15;
}
@keyframes loader {
  0% { transform: rotate(0deg);}
  25% { transform: rotate(180deg);}
  50% { transform: rotate(180deg);}
  75% { transform: rotate(360deg);}
  100% { transform: rotate(360deg);}
}

@keyframes loader-inner {
  0% { height: 0%;}
  25% { height: 0%;}
  50% { height: 100%;}
  75% { height: 100%;}
  100% { height: 0%;}
}

body {
  margin: 0;
  padding: 0;
  width:100vw;
  height: 100vh;
  background-color: #eee;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100%;
}
.start{
  position: absolute;
  color:black;
  letter-spacing: 1px;
  line-height: 1.4;
  top: 10%;
  font-size: 2vw;
  padding-top: 3%;
  left: 20%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-family: 'Julius Sans One', sans-serif;
}
.slidecontainer {
  position: absolute;
  width: 10%; /* Width of the outside container */
  left: 8.3%;
  top: 4.5%;
  z-index: 10;
  display: inline-block;
  cursor: pointer;

}

.img-5{
  width: 5.8vw;
  position: absolute;
  bottom: 2vh;
  left: 8vw;
}
.img-6{
  width: 6vw;
  position:absolute;
  bottom: 2vh;
  left: 1.2vw;
}

.cyclebutton{
  position: absolute;
  border: none;
  color: white;
  padding: 2vh 0.8vw;
  text-align: center;
  display: inline-block;
  font-size: 1vw;
  right: 1%;
  width: 11%;
  font-family: 'Julius Sans One', sans-serif;
  background-color: #8d8d8d;
  z-index: 10;
}
.button3 {top: 3%;}
.button7 {top: 12%;}
.button6 {top: 21%;}
.button9 {top: 30%;}
.button10 {top: 39%;}
.button1 {top: 3%; left: 21%; width: 5%}
.button2 {top: 3%; left: 27%; width: 5%}


/* The slider itself */
.slider {
  position: absolute;
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 1.4vw; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 14%; /* Set a specific slider handle width */
  height: 100%; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  position: absolute;
  width: 14%; /* Set a specific slider handle width */
  height: 100%; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.box{
  position: absolute;
  color: white;
  padding: 2vh 2vw;
  padding-right: 12vw;
  display: inline-block;
  font-size: 1vw;
  top: 3%;
  left: 3%;
  font-family: 'Julius Sans One', sans-serif;
  background-color: #8d8d8d;
  z-index: 9;
}
.helpbox{
  position: absolute;
  color: white;
  padding: 0.8vh 1vw;
  display: inline-block;
  font-size: 0.7vw;
  width: 9%;
  top: 48%;
  right: 1%;
  font-family: 'Julius Sans One', sans-serif;
  background-color: #8d8d8d;
  z-index: 9;
}