/**
 * FX Efeito Texto - Front-end
 * Versão: 1.0.1
 */

.fxet-highlight {
	background-image: linear-gradient(var(--fxet-color, #ffe66d), var(--fxet-color, #ffe66d));
	background-position: 0 88%;
	background-repeat: no-repeat;
	background-size: 0% 78%;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	transition: background-size 0.9s ease;
}

.fxet-highlight.fxet-highlighted {
	background-size: 100% 78%;
}

@media (prefers-reduced-motion: reduce) {
	.fxet-highlight {
		transition: none;
	}
}
