::-webkit-scrollbar {
 width: 0;
}

#scrollPath {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

#progressbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to top, rgba(2,0,36,1), rgba(140,56,255,1), rgba(21,93,199,1));
  animation: animate 5s linear infinite;
}

@keyframes {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}

#progressbar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2,0,36,1), rgba(140,56,255,1), rgba(21,93,199,1));
  filter: blur(30px);
}

#progressbar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2,0,36,1), rgba(140,56,255,1), rgba(21,93,199,1));
  filter: blur(30px);
}
