.hide {
  display: none;
}

.imageTogglerText {
  cursor: pointer;
}
.imageTogglerText.selected {
  border-left: 5px solid #2cdbad;
  padding-left: 10px;
}

.slides {
  padding-bottom: 30px;
  color: #000c33;
  font-family: "Montserrat", sans-serif;
}

.slides .slidecontainer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin: 5px;
}

.bigNumber {
  font-size: 4rem;
  font-weight: bold;
  color: #2cdbad;
  display: inline-block;
  padding: 0 50px;
  font-family: "Montserrat", sans-serif;
}

.valueNumber {
  font-size: 3rem;
  font-weight: bold;
  color: #2cdbad;
  display: inline-block;
  padding: 0 50px;
  position: relative;
  top: 20px;
  font-family: "Montserrat", sans-serif;
}

.slides .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #000c33;
  outline: none;
}

.slides .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #2cdbad;
  cursor: pointer;
}

.slides .slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #2cdbad;
  cursor: pointer;
}

.slides .slides {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.infos {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  margin-top: 30px;
  text-align: center;
}

.infos h2 {
   text-align: center;
}

.slides input {
  margin: 0!important;
  width: 100%!important;
  overflow: visible!important;
}

.slides .slidebox {
  width: 80%;
}

.slides .numberContainer {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .slides .numberContainer {
    display: block;
  }
  .slides .numberContainer>div {
    width: 100%;
    text-align: center;
  }
  .slides .slidecontainer {
    display: block;
    width: 100%;
  }
  .slides .slidecontainer>div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .slides .numberContainer>div {
    font-size: 10vw!important;
  }
}


/* Carousel */
.hukka-carousel {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.hukka-carousel-slides {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  transition: left 0.5s;
}
.hukka-carousel-slide {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.hukka-carousel-heightElem {
  position: relative;
  display: block;
  width: 100%;
  visibility: hidden;
}
.hukka-carousel-nav {
  user-select: none;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 30px;
  transform: translate(0,-50%);
  background: #2cdbad;
  line-height: 1;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding-top: 5px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 1;
}
.hukka-carousel:hover .hukka-carousel-nav {
  opacity: 1;
}
.hukka-carousel-prev {
  left: 0;
}
.hukka-carousel-next {
  right: 0;
}
