/**
 * hcg-pinch-zoom - companion styles
 * HTML Code Generator (https://www.html-code-generator.com/javascript/pinch-zoom-library)
 */

.hcg-pinch-zoom {
  position: relative;
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.hcg-pinch-zoom-content {
  display: block;
  max-width: none;
  transform-origin: 0 0;
  will-change: transform;
}

.hcg-pinch-zoom-draggable {
  cursor: grab;
}

.hcg-pinch-zoom-dragging {
  cursor: grabbing;
}

.hcg-pinch-zoom-disabled {
  pointer-events: none;
  opacity: 0.65;
}
