.progress-container {
  position: sticky;
  top: 60px;
  width: 100%;
  background: transparent;
  z-index: 1100;
  margin-bottom: 20px;
}

.progress-bar {
  height: 10px;
  width: 0%;
  background: #1a73e8;
  border-radius: 5px;
  transition: width 0.3s;
}

.progress-bar.blink {
  animation: progress-blink 0.4s linear 4;
}

@keyframes progress-blink {
  50% {
    opacity: 0;
  }
}

