.custom-scrollbar {
  overflow: overlay !important;
}
@supports (-moz-appearance:none) {
  .custom-scrollbar {
    overflow: scroll;
    scrollbar-width: thin;
  }
}
.custom-scrollbar.show-scrollbar::-webkit-scrollbar,
.custom-scrollbar:hover::-webkit-scrollbar {
  display: block;
}
.custom-scrollbar::-webkit-scrollbar {
  display: none;
  width: 6px;
  height: 6px;
  margin-right: 12px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}
.custom-scrollbar-show::-webkit-scrollbar {
  display: block;
}
