/* Hide scrollbar */
::-webkit-scrollbar {
    width: 0 !important;
    background-color: transparent !important;
    display: none !important;
}

::-webkit-scrollbar-thumb {
    display: none !important;
}

::-webkit-scrollbar-thumb:hover {
    display: none !important;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none !important;
}

/* Hide scrollbar for IE/Edge */
body {
    -ms-overflow-style: none !important;
}