﻿.progress-bar {
    height: 3px;
    background-color: #fff0;
    width: 100%;
    overflow: hidden;
    box-shadow: none !important;
    position: fixed;
    z-index: 999;
}

.progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: var(--secondary-background-color);
    animation: indeterminateAnimation 2s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }

    40% {
        transform: translateX(0) scaleX(0.4);
    }

    100% {
        transform: translateX(100%) scaleX(0.5);
    }
}
