/*
 * Transitions de pages ALPA.
 * Les styles critiques (couleur, logo) sont également émis en inline
 * dans <head> par alpa-page-transitions.php pour une application immédiate.
 */

#alpa-pt-overlay {
	position: fixed;
	inset: 0;
	background-color: var(--wp--preset--color--accent-4, #31beff);
	z-index: 2147483646;
}

#alpa-pt-overlay > img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	object-fit: contain;
	pointer-events: none;
	-webkit-user-drag: none;
	filter: brightness(0) invert(1);
}

@media (prefers-reduced-motion: reduce) {
	#alpa-pt-overlay {
		transition: none !important;
	}
}
