@media (min-width: 768px) {
  .fotoZoomContainer.-active {
    z-index: 10;
  }
  .fotoZoom {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
  }
  .fotoZoom img {
    height: auto !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    position: absolute;
    left: 0;
    top: 0;
    cursor: crosshair;
  }
  .fotoZoomContainer.-active .fotoZoom {
    opacity: 1;
    visibility: visible;
  }
}
/*# sourceMappingURL=foto_zoom.css.map */