/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* app/assets/stylesheets/application.css */

/* THE LOADER SPECIFIC ANIMATIONS */

/* 1. Rise up from below the screen */
@keyframes wave-rise {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* 2. Swirl/Rotate to create the liquid effect */
@keyframes wave-swirl {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ensure the loader doesn't flicker on "Hard Refresh" */
#initial-loader {
    opacity: 1;
}