#cboxLoadedContent.ad-cbox-zoom {
  overflow: hidden !important;
  cursor: zoom-in;
  position: relative;
}

#cboxLoadedContent.ad-cbox-zoom.is-zoomed {
  cursor: zoom-out;
}

#cboxLoadedContent.ad-cbox-zoom .ad-cbox-zoom-img {
  display: block;
  transition: transform 180ms ease-out;
  will-change: transform;
  transform-origin: 50% 50%;
}

#cboxLoadedContent.ad-cbox-zoom.is-zoomed .ad-cbox-zoom-img {
  transform: scale(var(--ad-cbox-zoom-scale, 2));
}

#cboxLoadedContent.ad-cbox-zoom::after {
  content: "Zum Zoomen bewegen";
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 5;
}

#cboxLoadedContent.ad-cbox-zoom:hover::after {
  opacity: 1;
}

#cboxLoadedContent.ad-cbox-zoom.is-zoomed::after {
  opacity: 0;
}

@media (hover: none), (pointer: coarse) {
  #cboxLoadedContent.ad-cbox-zoom::after {
    content: "Zum Zoomen tippen";
    opacity: 1;
  }

  #cboxLoadedContent.ad-cbox-zoom.is-zoomed::after {
    opacity: 0;
  }
}
