/* width */
::-webkit-scrollbar {
  width: 11px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 grey;
  border-radius: 15px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #626464;
  border-radius: 33px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #121313;
  cursor: pointer;
}
