::-webkit-scrollbar {
  display: none;
}

.pager::-webkit-scrollbar,
.slider::-webkit-scrollbar {
  display: none;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 43, 54, 255);
}

body {
  scrollbar-width: none; /* Firefox */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.pager {
  -webkit-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
}

.page {
  -webkit-scroll-snap-align: start;
  scroll-snap-align: start;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: flex;
  flex: 0 0 100vh;
  flex: 0 0 100dvh;
  width: 100%;
}

.slider {
  -webkit-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: scroll;
  display: flex;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
}

.slide {
  -webkit-scroll-snap-align: start;
  scroll-snap-align: start;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  display: flex;
  height: 100%;
  width: 100%;
}

.swiper {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.swiper:hover {
  opacity: 1;
}

.swiper::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  background: #04aa6d;
  cursor: pointer;
}

.swiper::-moz-range-thumb {
  width: 35px;
  height: 35px;
  background: #04aa6d;
  cursor: pointer;
}
