::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d90a0a;
  border-radius: 1.5px;
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: #d90a0a #f1f1f1;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: thin;
}

body::-webkit-scrollbar {
  width: 3px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background-color: #d90a0a;
  border-radius: 1.5px;
}