/* Pour cacher la scrollbar mais garder le scroll */
html,
body {
    overflow: auto; /* ou scroll */
    overflow-x: hidden;
}

/* Chrome, Safari et autres basés sur Webkit */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none; /* enlève la scrollbar */
}

/* Internet Explorer et Edge ancien */
html {
    -ms-overflow-style: none;
}


