.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body {
  touch-action: pan-y;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#slider-container {
  touch-action: pan-y;
  height: 75vh;
  max-height: 650px;
  min-height: 400px;
  position: relative;
  user-select: none;
  overflow: hidden;
  cursor: grab;
}

#slider-container:active {
  cursor: grabbing;
}

#slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.slider-item {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.slider-item img {
  max-height: 95%;
  max-width: 95%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: 16px;

  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* Desktop view */
@media (min-width: 700px) {
  .slider-item {
    flex: 0 0 33.33%;
    /* padding: 20px; */
  }

  .slider-item img {
    max-height: 85%;
    max-width: 85%;
  }
}
