/* Thin Progress Bar - Top of Page */
.page-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0089d3;
    z-index: 99999;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.page-progress-bar.loading {
    opacity: 1;
}

.page-progress-bar.complete {
    width: 100% !important;
}
