﻿/* ===== MOTORCLIC LOADING BAR ===== */
/* ===== MOTORCLIC NPROGRESS OVERRIDE ===== */
#nprogress .bar {
    height: 1px !important;
    background: linear-gradient( 90deg, #ffdd05, #ffb703, #be00ff, #7b2cff, #ffdd05 ) !important;
    background-size: 300% 100% !important;
    animation: motorclic-loading 1.4s linear infinite !important;
    z-index: 99999 !important;
}

#nprogress .peg {
    box-shadow: 0 0 12px rgba(255, 221, 5, 0.9), 0 0 20px rgba(190, 0, 255, 0.7), 0 0 30px rgba(123, 44, 255, 0.5) !important;
}

#nprogress .spinner {
    display: none !important;
}

@@keyframes motorclic-loading {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}
