.hizoom {
  position: relative;
  z-index: 10;
  /* max-width: 100%; */
}
.hizoom .magnifier {
  box-sizing: border-box;
  border: 1px solid #999;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  cursor: move;
}
.hizoom .small,
.hizoom .big {
  box-sizing: content-box;
  position: absolute;
  border: 1px solid #ddd;
  /* max-width: 100% !important; */
}
.hizoom .small {
  top: 0;
  left: 0;
  cursor: move;
}
.hizoom .big {
  overflow: hidden;
  display: none;
}
.hizoom .small img,
.hizoom .big img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  max-width: unset;
  background: white;
}
/* .hizoom .small img {
  max-width: 100% !important;
} */
