/*
Add Custom CSS code that you would not like to load in WP Editor but yes on Page.
This is good if you have animation that needs to start away from the screen but would like for the user to see the final in WP Editor
*/

.add_animation_left_to_right{
    max-width: 100%;
    right: 94%;
    opacity: 0;
        -webkit-transition: opacity 1s, margin-left 1s, right 1s, -webkit-transform 1s;
    transition: opacity 1s, margin-left 1s, right 1s, transform 1s;
}
.add_animation_right_to_left{
    max-width: 100%;
    right: -94%;
    opacity: 0;
    -webkit-transition: opacity 1s, margin-left 1s, right 1s, -webkit-transform 1s;
    transition: opacity 1s, margin-left 1s, right 1s, transform 1s;
}