scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.7);
}

::-webkit-scrollbar-thumb {
  background: white;
  transition: all .3s;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: gray;
}
