::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background: transparent;

}

::-webkit-scrollbar-track {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.8);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(140, 140, 140, 0.9);
  background: rgba(255, 255, 255, 0.5);
}

/* For Firefox */
:root{
  scrollbar-width: thin;
  scrollbar-color:rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.4);
}