/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2c2e31;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #646669;
  border-radius: 10px;
  transition: background-color 0.2s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #606264;
}