html.has-scroll-animations .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
html.has-scroll-animations .page-container main > section [data-scroll-anim] {
	opacity: 0;
	will-change: opacity, transform;
	transition: opacity 0.7s ease,
				transform 0.7s ease;
}

html.has-scroll-animations.scroll-style-fadeUp .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
html.has-scroll-animations.scroll-style-fadeUp .page-container main > section [data-scroll-anim] {
	transform: translateY(32px);
}

html.has-scroll-animations.scroll-style-slideLeft .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
html.has-scroll-animations.scroll-style-slideLeft .page-container main > section [data-scroll-anim] {
	transform: translateX(-48px);
}

html.has-scroll-animations.scroll-style-slideRight .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
html.has-scroll-animations.scroll-style-slideRight .page-container main > section [data-scroll-anim] {
	transform: translateX(48px);
}

html.has-scroll-animations.scroll-style-zoomIn .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
html.has-scroll-animations.scroll-style-zoomIn .page-container main > section [data-scroll-anim] {
	transform: scale(0.96);
}

html.has-scroll-animations .page-container main > section:not([data-scroll-anim-skip]) > :first-child.is-visible,
html.has-scroll-animations .page-container main > section [data-scroll-anim].is-visible {
	opacity: 1;
	transform: none;
	will-change: auto;
}

html.has-scroll-animations body.editor-open .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
html.has-scroll-animations body.editor-open .page-container main > section [data-scroll-anim] {
	opacity: 1;
	transform: none;
	transition: none;
	will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
	html.has-scroll-animations .page-container main > section:not([data-scroll-anim-skip]) > :first-child,
	html.has-scroll-animations .page-container main > section [data-scroll-anim] {
		opacity: 1;
		transform: none;
		transition: none;
		will-change: auto;
	}
}
