/**
 * FM Scroll Fill Text
 */

.fm-sft,
.fm-sft *,
.fm-sft *::before,
.fm-sft *::after {
	box-sizing: border-box;
}

.fm-sft {
	--fm-sft-base-color: rgba(15, 23, 42, 0.18);
	--fm-sft-fill-color: #0f172a;
	--fm-sft-marker-color: #dbeafe;
	--fm-sft-marker-text-color: #0f172a;
	--fm-sft-marker-radius: 0.18em;
	--fm-sft-marker-padding-x: 0.08em;
	position: relative;
	width: 100%;
	text-align: left;
}

.elementor-widget-flowmax-scroll-fill-text,
.elementor-widget-flowmax-scroll-fill-text>.elementor-widget-container {
	width: 100%;
	max-width: 100%;
}

.fm-sft__text {
	display: block;
	width: 100%;
	max-width: 100% !important;
	margin: 0;
	color: var(--fm-sft-base-color);
	text-wrap: normal;
}

.fm-sft__content {
	display: inline;
	white-space: pre-wrap;
	font: inherit;
}

.fm-sft__fill {
	position: relative;
	color: var(--fm-sft-base-color);
	background-image: linear-gradient(90deg,
			var(--fm-sft-fill-color),
			var(--fm-sft-fill-color));
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 0% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-stroke-width: 0;
	-webkit-text-stroke-color: transparent;
	will-change: background-size;
}

.fm-sft[data-fm-fill-direction="right"] .fm-sft__fill {
	background-position: right center;
}

.fm-sft__content--lines {
	display: block;
}

.fm-sft__line {
	display: block;
}

.fm-sft__measure-word {
	display: inline;
	font: inherit;
}

.fm-sft__content--words {
	display: inline;
	white-space: normal;
}

.fm-sft__word {
	display: inline;
}

.fm-sft__content--markers {
	display: inline;
	color: var(--fm-sft-fill-color);
	white-space: pre-wrap;
}

.fm-sft__mark {
	position: relative;
	display: inline;
	padding-inline: var(--fm-sft-marker-padding-x);
	border-radius: var(--fm-sft-marker-radius);
	color: var(--fm-sft-marker-text-color);
	background-image: linear-gradient(90deg,
			var(--fm-sft-marker-color),
			var(--fm-sft-marker-color));
	background-repeat: no-repeat;
	background-position: left 100%;
	background-size: 0% 0.42em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	will-change: background-size;
}

.fm-sft[data-fm-fill-direction="right"] .fm-sft__mark {
	background-position: right 100%;
}

.fm-sft--marker .fm-sft__text {
	color: var(--fm-sft-fill-color);
}

.fm-sft.is-static-filled .fm-sft__fill {
	background-size: 100% 100%;
}

.fm-sft.is-static-filled .fm-sft__mark {
	background-size: 100% 0.42em;
}

.fm-sft.is-static-base .fm-sft__fill {
	background-size: 0% 100%;
}

.fm-sft.is-static-base .fm-sft__mark {
	background-size: 0% 0.42em;
}

@media (prefers-reduced-motion: reduce) {

	.fm-sft__fill,
	.fm-sft__mark {
		will-change: auto;
	}
}