/**
 * Visually hides any scrollbar.
 */
@mixin hide-scrollbar($z-index: null) {
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;

	&::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
		appearance: none;
	}
}
