/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 25 2023 | 12:21:44 */
.up {
    animation-name: up; animation-duration: 0.8s
}
.left {
    animation-name: left; animation-duration:0.8s
}
.right {
    animation-name: right; animation-duration:0.8s
}

@keyframes up {
    from {
        opacity: 0;
        transform: translate3d(0px, 80px,0px);
    }

    to {
        opacity: 1;
        transform: 0
    }
}


@keyframes right {
    from {
        opacity: 0;
        transform: translate3d(80px, 0px,0px);
    }

    to {
        opacity: 1;
        transform: 0
    }
}


@keyframes left {
    from {
        opacity: 0;
        transform: translate3d(-80px, 0px,0px);
    }

    to {
        opacity: 1;
        transform: 0
}