/*
 * Click Position Analytics - Public Heatmap Overlay
 * Only becomes visible for administrators previewing a page with
 * ?cpa_heatmap_preview=1 (see CPA_Public::print_heatmap_overlay_container()).
 */

#cpa-heatmap-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 999999;
	display: none;
}

#cpa-heatmap-overlay.cpa-active {
	display: block;
}

#cpa-heatmap-overlay .cpa-point {
	position: absolute;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	filter: blur(6px);
	mix-blend-mode: multiply;
}
