#rec1668224341 {
    display: none;
}
.custom-img-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.9);
  cursor: zoom-out;
  box-sizing: border-box;
}
.custom-img-zoom-overlay.is-active {
  display: flex;
}
.custom-img-zoom-overlay img {
  max-width: 96vw;
  max-height: 96vh;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.custom-img-zoom-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1000000;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
}
.custom-img-zoom-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
body.custom-img-zoom-open {
  overflow: hidden;
}
.t107 img.t-img {
  cursor: zoom-in;
}
@media screen and (max-width: 640px) {
  .custom-img-zoom-overlay {
    padding: 20px;
  }
  .custom-img-zoom-close {
    top: 12px;
    right: 12px;
  }
}