#progress {
    background-color: #f5f5f5;
}

.progress { 
    height: 5px;
    position: relative;
    background: #f3efe6;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
}

.progress {
    background-color: var(--color-primary);
    animation-fill-mode:both; 
}

.progress.run {
    animation: progressBar 7s ease-in-out;
}

@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}
