*::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}
*::-webkit-scrollbar-track {
  background: #FFFFFF;
}
*::-webkit-scrollbar-thumb {
  background: #C0C3C9;
  border-radius: 4px;
}
* {
  -ms-overflow-style: auto;
}
*::-ms-scrollbar {
  width: 4px;
  height: 4px;
}
*::-ms-scrollbar-track {
  background: #FFFFFF;
}
*::-ms-scrollbar-thumb {
  background-color: #C0C3C9;
  border-radius: 4px;
}
body {
  overflow: auto;
}
.custom-scrollbar {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #C0C3C9;
  background: #FFFFFF;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #FFFFFF;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #C0C3C9;
  border-radius: 4px;
}
