/* Coherence Extension por for Elementor v1.10.0 */

/* Clips Animation */
.coherence-clips-anim-wrap .coherence-clips-anim{
	position: absolute;
}

/* Section Particles */
.coherence-section-particles {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


/* Parallax */
.coherence-clips-anim,
.coherence-parallax-item,
.coherence-parallax{
	top: 100%;
}
.coherence-clips-anim-wrap,
.coherence-parallax-wrap,
.coherence-parallax-wrapper{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.coherence-parallax-wrap .coherence-parallax-item,
.coherence-parallax-wrapper .coherence-parallax{
	position: absolute;
}
.coherence-parallax-wrapper .coherence-fadeIn{
	opacity: 0;
}
.coherence-parallax-wrapper .coherence-zoomIn,
.coherence-parallax-wrapper .coherence-zoomOut{
	z-index: 999999;
}

/* Reading Progressbar */
.coherence-reading-progressbar-wrap{
	position: fixed;
	width: 100%;
	z-index: 9999999;
}
.coherence-reading-progressbar{
	width: 0;
}
.coherence-reading-progressbar-wrap.top{
	top: 0
}
.coherence-reading-progressbar-wrap.bottom{
	bottom: 0
}

/* Preloader */
.coherence-preloader-wrap{
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	justify-content: center;
	align-items: center;
	-webkit-animation-duration: 2s;
	animation-duration: 2.1s;
}

/* Colors Animation */
.coherence-colors-anim-fade,
.coherence-colors-anim-ver-moving,
.coherence-colors-anim-hor-moving{
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.coherence-colors-anim-hor-moving{
	animation-name: coherence_colors_anim_hor_moving;
}
.coherence-colors-anim-ver-moving{
	animation-name: coherence_colors_anim_ver_moving;
}

@keyframes coherence_colors_anim_hor_moving {
	0% {
		background-position: 0% 100%;
	}
	100% {
		background-position: 100% 100%;
	}
}
@keyframes coherence_colors_anim_ver_moving {
	0% {
		background-position: 100% 0%;
	}
	100% {
		background-position: 100% 100%;
	}
}


/* Grids Animation */
.coherence-animated-grid{
	position: fixed;
	top: 0;
	height: 100%;
}
.coherence-animated-grid-clip{
	position: absolute;
	animation-name: coherence_grid_animation_ver_moving;
}

@keyframes coherence_grid_animation_ver_moving {
	0% {
		top: -1%;
	}
	100% {
		top:  100%;
	}
}