/* ==========================================================
   VBC Framework
   Base Animations
   Version: 0.1.0
========================================================== */

/*
 * This file was referenced in the asset manifest but did not exist,
 * so wp_enqueue_style() was pointing at a 404. Component-level
 * animations (e.g. product-tabs.css, product-faq.css) already define
 * their own scoped @keyframes and don't depend on this file. These
 * are shared, generic fade/slide keyframes for anything else that
 * wants one without redefining it locally.
 */

@keyframes vbcFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes vbcFadeUp {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
