/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 16 2022 | 22:21:33 */
.up {
    animation-name: up; animation-duration: 0.9s;
}
.left {
    animation-name: left; animation-duration:0.9s
}
.right {
    animation-name: right; animation-duration:0.9s
}

@keyframes up {
    from {
        opacity: 0;
        transform: translate3d(0px, 100px,0px);
		
    }

    to {
        opacity: 1;
        transform: 0;
		
    }
}


@keyframes right {
    from {
        opacity: 0;
        transform: translate3d(100px, 0px,0px);
		
    }

    to {
        opacity: 1;
        transform: 0
    }
}


@keyframes left {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0px,0px);
    }

    to {
        opacity: 1;
        transform: 0
}