.images-container {
  position: relative;
  width: 495px;
  height: 495px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  user-select: none;
}

.img-imageWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-before,
.img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-after-imageWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  clip-path: inset(0 70% 0 0); /* initially 30% shown */
  transition: clip-path 0s;
}

.imageSliderWrap {
  position: absolute;
  top: 0;
  left: 30%;

  width: 16px;

  height: 100%;

  cursor: ew-resize;
  z-index: 2;
  transform: translateX(-8px);
  touch-action: none;

  display: flex;
  justify-content: center;
  align-items: center;
}

.imageSlider {
  background: white;
  height: 100%;
  z-index: 3;
  width: 4px;
}
