::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #f5f0e8;
  border-radius: 100px;
}
::-webkit-scrollbar-thumb {
  background: rgba(180, 120, 30, 0.35);
  border-radius: 100px;
  border: 2px solid #f5f0e8;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 120, 30, 0.65);
}
::-webkit-scrollbar-corner {
  background: #f5f0e8;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 120, 30, 0.35) #f5f0e8;
}