/* WebKit browsers */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #2c2c2c;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Firefox */

* {
  scrollbar-width: thin;
  scrollbar-color: #555 #2c2c2c;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #555 #2c2c2c;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: #2c2c2c;
  border-radius: 20px;
}

*::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 20px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #888;
}

