[data-carousel] {
	overflow: hidden;
	cursor: grab;
	user-select: none;

	&:active {
		cursor: grabbing;
	}

	& > :first-child {
		display: flex;

		[data-carousel-axis='y'] > & {
			flex-direction: column;
			height: 100%;
		}

		& > * {
			flex-shrink: 0;
			flex-grow: 1;
			min-width: 0;
			min-height: 0;
		}
	}
}