img.wcphg-target:not(.wcpl-label) {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center center;
}

.wcphg-img-parent {
	position: relative;
}

img.wcphg-target.wcpl-label,
.wcpl-labels img.wcphg-target {
	position: static;
	width: auto;
	height: auto;
	max-width: var(--wcpl-size-loop, 80px);
	max-height: var(--wcpl-size-loop, 80px);
	object-fit: contain;
	object-position: unset;
}

.wcphg-overlay {
	position: absolute;
	inset: 0;
	z-index: 15;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.18s ease, visibility 0.18s ease;
}

.wcphg-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.wcphg-dots {
	display: flex;
	align-items: center;
	gap: 7px;
}

.wcphg-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
	animation: wcphg-dot 1s ease-in-out infinite;
}

.wcphg-dots span:nth-child(2) {
	animation-delay: 0.16s;
}

.wcphg-dots span:nth-child(3) {
	animation-delay: 0.32s;
}

@keyframes wcphg-dot {
	0%,
	80%,
	100% {
		opacity: 0.35;
		transform: scale(0.75);
	}
	40% {
		opacity: 1;
		transform: scale(1);
	}
}
