/*	Copyright 2020-Present Titan Informatics LLC. All Rights Reserved.
 *
 *	Proprietary and Confidential.
 *	Author: Douglas Noorzadeh
 *
 *	This source code is the exclusive property of Titan Informatics LLC.
 *	Unauthorized use, reproduction, disclosure, or distribution without written permission is strictly prohibited.
 */

[data-type="slider"] {
	width: 100%;
	min-height: 0;
	border: var(--border);
	background: var(--f6f6f6);
	display: flex;
	align-items: stretch;
	scrollbar-width: none;
	overflow: hidden;
}
[data-type="slider"]::-webkit-scrollbar {
	display: none;
}
[data-type="slider"] > li {
	padding: 20px;
	flex: 0 0 auto;
	scroll-snap-align: start;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
}
[data-type="slider"][data-orientation="horizontal"] {
	flex-flow: row nowrap;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}
[data-type="slider"][data-orientation="horizontal"] > li {
	width: 100%;
}
[data-type="slider"][data-orientation="vertical"] {
	flex-flow: column nowrap;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
}
[data-type="slider"][data-orientation="vertical"] > li {
	height: 100%;
}
