/* Module slider vertical
======================================== */
.module-slider--vertical{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	/* height: 100%; */
	height: var(--height-viewport);
	display: grid;
	grid-auto-rows: min-content;
	background-color: var(--color-bg);
	overflow-x: hidden;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-snap-type: y mandatory;
	z-index: 1;
}

/* Gradient */
.gradient{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: var(--height-header);
	background: linear-gradient(var(--color-bg) var(--height-gradient), transparent);
	z-index: 2;
}

/* Module slide */
.module-slider--vertical .module-slider--slide{
	position: relative;
	/* width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content; */
	min-height: var(--height-viewport);
	scroll-snap-align: start;
}
.module-slider--vertical .module-slider--slide{
	z-index: 1;
}
.module-slider--vertical .module-slider--slide.module-media{
	z-index: 3;
}

/* Links */
.module-slide--link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
/* .module-slide--link ~ *{
	-webkit-user-select: none;
		-moz-user-select: none;
		 -ms-user-select: none;
			  user-select: none;
} */
