/* WebKit-Based Browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: none;
  border-radius: 10px;
  margin-top: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(92, 96, 245, 0.85);
  border-radius: 10px;
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(92, 96, 245, 1);
}

