  /* Hide scrollbar for IE, Edge and Firefox */
  .scrollable-custom {
    overflow: auto;
    scrollbar-width: thin;          /* "auto" or "thin" */
    scrollbar-color: white rgba(0, 0, 0, 0);   /* scroll thumb and track */
} 

.scrollable-custom::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
}

.scrollable-custom::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);        /* color of the tracking area */
}

.scrollable-custom::-webkit-scrollbar-thumb {
    background-color: white;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid rgba(0, 0, 0, 0);  /* creates padding around scroll thumb */
}