﻿
.progress-bar {
  width: 0;
  animation: fillBar 150s forwards; 
}

@keyframes fillBar {
  from { width: 0; }
  to { width: 85%; }
}