/* Parallax */
.ancr-clips-anim,
.ancr-parallax-item,
.ancr-parallax {
    top: 100%;
}

.ancr-clips-anim-wrap,
.ancr-parallax-wrap,
.ancr-parallax-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.ancr-parallax-wrapper .ancr-fadeIn {
    opacity: 0;
}

.ancr-parallax-wrapper .ancr-zoomIn,
.ancr-parallax-wrapper .ancr-zoomOut {
    z-index: 999999;
}

/* Colors Animation */
.ancr-colors-anim-fade,
.ancr-colors-anim-ver-moving,
.ancr-colors-anim-hor-moving {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.ancr-colors-anim-hor-moving {
    animation-name: ancr_colors_anim_hor_moving;
}

.ancr-colors-anim-ver-moving {
    animation-name: ancr_colors_anim_ver_moving;
}

@keyframes ancr_colors_anim_hor_moving {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 100% 100%;
    }

}

@keyframes ancr_colors_anim_ver_moving {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 100% 100%;
    }

}