.interactive-graphic *:hover {
	transform: unset !important;
	box-shadow: unset !important;
}

.interactive-graphic {
  position: relative;
  width: 100%;
}

/* ORIGINALBILD bestimmt Höhe */
.interactive-img.base {
  position: relative;
  display: block;
  z-index: 1;
}

/* OVERLAY-BILDER */
.interactive-img.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s linear;
  z-index: 2;
}

.interactive-img.overlay.active {
  opacity: 1;
  visibility: visible;
}

