/* Hide scrollbar in Safari and other WebKit browsers */
.element {
overflow: auto; /* or scroll, depending on your layout */
scrollbar-width: none; /* For Firefox */
-ms-overflow-style: none; /* For IE and Edge */
}
.element::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}