@keyframes loading {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

.loader-bar.animate {
  animation: loading 2.2s ease forwards;
}
