/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */

/*# sourceMappingURL=user.css.map*/

@keyframes jnan-spin {
    from {
        transform: rotate(0deg); /* Starting state: 0 degrees rotation */
    }
    to {
        transform: rotate(360deg); /* Ending state: 360 degrees rotation (one full turn) */
    }
}

.jnan-loader{
    animation: jnan-spin 1s linear infinite;
}