/* Animation Classes */

body {
    overflow-x: hidden;
}

.wp-block-columns {
    overflow-x: clip;
}

.fade-in-top,
.fade-in-bottom,
.fade-in-left,
.fade-in-right {
    position: relative;
    opacity: 0;
    transition: all 1s cubic-bezier(0.44, 0, 0.15, 1.1);
}

.fade-in-top {
    top: -50px;
}

.fade-in-bottom {
    top: 50px;
}

.fade-in-left {
    left: -50px;
}

.fade-in-right {
    left: 50px;
}

.editor-styles-wrapper .fade-in-top,
.editor-styles-wrapper .fade-in-bottom,
.editor-styles-wrapper .fade-in-left,
.editor-styles-wrapper .fade-in-right {
    opacity: 1;
    top: 0;
    left: 0;
}
