.progress-bar {
    height: 6px;
    margin-top: -6px;
    background-color: rgba(65, 148, 136, 0.2);
    width: 100%;
    overflow: hidden;
    display: none;
}

.progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: rgb(65, 148, 136);
    animation: indeterminateAnimation 5s 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);
    }
}
