main > *:not(:first-child), .animate:not(.animated) {
    transition: all 0.6s ease-in-out;
    transition-delay: 100ms;
    transform: translate3d(0,10%,0);
    opacity: 0;
}

#brx-content {
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
body[data-builder-window="iframe"] #brx-content,
body[data-builder-window="iframe"] main > *:not(:first-child), 
body[data-builder-window="iframe"] .animate {

    transform: translate3d(0,0,0);
    opacity: 1;
}
section.animated, div.animated, #brx-content.animated {

    transform: translate3d(0,0,0);
    opacity:1;
}


