/* Progress bar animation */

.progress-bar {
  width: 0;
  animation: progress 0.75s ease-in-out forwards;
}

@keyframes progress {
  from {
    width: 0;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
