/* tabScroller */
.tabScroller {
    list-style: none;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tabScroller::-webkit-scrollbar-track {
    background-color: transparent;
}

.tabScroller::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.tabScroller::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
}

.tabScroller::-webkit-scrollbar {
    background-color: transparent;
    display: none;
}