.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.nav.prev {
  left: 16px;
}

.nav.next {
  right: 16px;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.65);
}

.nav:active {
  transform: translateY(-50%) scale(0.98);
}

/* Indicators */
.indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 2;
}

.indicators button {
  width: 100%;
  height: 12px;
  max-width: 12px !important;
  max-height: 12px !important;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  transform-origin: center center;
}

.indicators button.active {
  background: #fff;
  max-width: 22px !important;
}

@media screen and (max-width: 650px) {
  .nav.prev, .nav.next {
    display: none;
  }
}/*# sourceMappingURL=MinimalTouchSlider.css.map */