.custom-scrollbar-container {
  position: relative;
}

.custom-scrollbar-container > .viewport {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.custom-scrollbar-container > .viewport > .overview {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  max-width: unset;
}

.custom-scrollbar-container > .scrollbar.disable {
  display: none;
}

.custom-scrollbar-container > .scrollbar,
.custom-scrollbar-container > .scrollbar > .track > .thumb {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.custom-scrollbar-container > .scrollbar,
.custom-scrollbar-container > .scrollbar-vertical {
  display: block;
  background: #ccc;
  border-radius: 10px;
  width: 100%;
  height: 10px;
}

.custom-scrollbar-container > .scrollbar-vertical {
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0;
  right: 2px;
}

.custom-scrollbar-container > .scrollbar > .track {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-scrollbar-container > .scrollbar > .track > .thumb {
  display: block;
  position: relative;
  height: 100%;
  background: #888;
  cursor: pointer;
  width: 50px;
  border-radius: 10px;
}

.custom-scrollbar-container > .scrollbar-vertical > .track > .thumb {
  width: 100%;
  height: 50px;
}
