/* Search Progress Bar */
.search-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--secondary-dark);
    /* Blue */
    width: 0%;
    z-index: 2000;
    /* Above header */
    transition: width 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
}

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