@charset "UTF-8";

#article-330 .progress-advanced {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    to right,
    #3498db,
    #9b59b6
  );
  transform-origin: left;
  transform: scaleX(0);
  z-index: 999;
  animation: grow linear;
  animation-timeline: scroll();
}

@keyframes grow {
  to {
    transform: scaleX(1);
  }
}
