#jm-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #695ae7, #7c9eff);
  z-index: 99999;
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
#jm-progress-bar.jm-progress-active {
  opacity: 1;
}
