.imageZoom{
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.imageZoom img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}
.imageZoom::after{
  display: var(--display, block);
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: var(--url, none);
  background-size: 500%;
  background-position: var(--zoom-x, 0) var(--zoom-y, 0);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000;
}

.imageSlide {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.scrolling-image {
  flex: auto;
  width: auto;
  height: auto;
  text-align: center;
}

.scrollable {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

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

.scrolling-buttons-container span {
  margin: 0 10px;
  cursor: pointer;
}