.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    transition: all .5s;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgb(209, 213, 219);
    border-radius: 5px;
    transition: all .5s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(156 163 175);
}

::-webkit-resizer {
    display: none;
}