div.img-scroll {
  background-color: light-dark(black, white);
  overflow: auto;
  white-space: nowrap;
  padding: 0px;
  width: 100%;
  height: auto;
  scroll-snap-type: x mandatory;
  border: 10px solid light-dark(black, white);
  box-shadow: 0px 0px 10px black;
}

div.img-scroll img {
  width: 100%;
  height: auto;
  padding: 0px;
  margin: auto;
}

.scroll-img {
    scroll-snap-align: start;
}

.img-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.img-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
