.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: 0px;  /* Firefox */
}


.custom-scrollbar::-webkit-scrollbar {
    height: 10px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--tertiary-color);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--main-color);
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}