::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: #e6e7e9;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #afafaf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #e6e7e9;
}

::-webkit-scrollbar-thumb:horizontal {
    background: #000;
    border-radius: 10px;
}
/* Firefox */
.scroller {
    overflow-y: scroll !important;
    scrollbar-color: #e6e7e9 #afafaf !important;
    scrollbar-width: thin !important;
    width: 15px !important;
    height: 15px !important;
}

/* Chrome */
.scroller::-webkit-scrollbar {
    width: 15px !important;
    height: 15px !important;
    scrollbar-width: thin !important;
}

.scroller::-webkit-scrollbar-track-piece {
    background-color: #afafaf !important;
    scrollbar-width: thin !important;
}

.scroller::-webkit-scrollbar-thumb:vertical {
    height: 15px !important;
    width: 15px !important;
    background-color: #afafaf !important;
    scrollbar-width: thin !important;
}

/* Root Alternative */
:root {
    scrollbar-color: #e6e7e9 #afafaf !important;
    scrollbar-width: thin !important;
}

:root::-webkit-scrollbar-thumb {
    background-color: #afafaf !important;
    border-radius: 20px !important;
    border: 3px solid #afafaf !important;
}
