::-webkit-scrollbar {
  width: 10px;
  color: #ffffff;
}

::-webkit-scrollbar-track {
  background: #212529;
  display: none;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0,87,255,1) 0%, rgba(255,245,0,1) 100%);
  border-radius: 30px;
  -webkit-animation: GradientAnimation 5s ease infinite;
  -moz-animation: GradientAnimation 5s ease infinite;
  animation: GradientAnimation 5s ease infinite;
}

/* ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0,87,255,1) 5%, rgba(255,245,0,1) 100%);
} */

