.product_carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product_carousel .big-image {
  width: 100%;
  aspect-ratio: 5/4;
}
.product_carousel .controls {
  display: flex;
}
.product_carousel .controls .other-images {
  display: flex;
  gap: 12px;
}
.product_carousel .controls .other-images .thumbnail {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}
.product_carousel .controls .other-images .thumbnail:hover {
  transform: scale(1.05);
}
.product_carousel .controls .other-images .thumbnail.active {
  border: 2px solid var(--e-global-color-primary);
}
.product_carousel .controls .other-images .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}/*# sourceMappingURL=product_carousel.css.map */