._animFadeUp {
    transform: translate(0px, 120%);
    opacity: 0;
    transition: all 0.8s ease 0s;
}

._animFadeUp._active,
._active .anim-show {
    opacity: 1;
    transform: translate(0px, 0px);
}

._animFadeUpM {
    margin-top: 120%;
    opacity: 0;
    transition: all 0.8s ease 0s;
}

._animFadeUpM._active,
._active .anim-show {
    opacity: 1;
    margin-top: 0px;
}


._animFadeDown {
    transform: translate(0px, -120%);
    opacity: 0;
    transition: all 0.8s ease 0s;
}

._animFadeDown._active,
._active .anim-show {
    opacity: 1;
    transform: translate(0px, 0px);
}

._animFadeRight {
    transform: translate(120%, 0px);
    opacity: 0;
    transition: all 0.8s ease 0s;
}

._animFadeRight._active,
._active .anim-show {
    opacity: 1;
    transform: translate(0px, 0px);
}

._animFadeLeft {
    transform: translate(-120%, 0px);
    opacity: 0;
    transition: all 0.8s ease 0s;
}

._animFadeLeft._active,
._active .anim-show {
    opacity: 1;
    transform: translate(0px, 0px);
}