/* Professional Loading Indicator */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Clean progress bar at top */
.pace .pace-progress {
    background: #5156be;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
    transition: transform 0.3s ease-in-out;
}

.pace-inactive .pace-progress {
    display: none;
}

/* Subtle loading spinner in top-right */
.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.pace.pace-active .pace-activity {
    opacity: 1;
}

.pace .pace-activity::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid #e0e7ff;
    border-top-color: #5156be;
    border-radius: 50%;
    animation: pace-spinner 0.8s linear infinite;
}

@keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hide activity on small screens to be less intrusive */
@media (max-width: 768px) {
    .pace .pace-activity {
        display: none;
    }
}
/*# sourceMappingURL=preloader.min.css.map */
