Disable animations in the Elementor editor only

/* Disable animations in the Elementor editor only */
body.elementor-editor-active .elementor-invisible {
    visibility: visible !important;
    animation: none !important;
}

body.elementor-editor-active [data-animation] {
    animation: none !important;
}


/* Disable Elementor entrance animations in editor */
body.elementor-editor-active .elementor-invisible {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Remove any animation attribute inside the editor */
body.elementor-editor-active [data-settings*="animation"] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}