/**
 * Minimal carousel layout (replaces swiper.min.css on pages using C9Carousel only).
 * Keep .swiper-* class names so existing style.css / page rules still apply.
 */
.swiper-container {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	box-sizing: content-box;
}
.swiper-slide {
	flex-shrink: 0;
	position: relative;
	box-sizing: border-box;
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	left: 0;
	right: 0;
	z-index: 10;
	transform: translate3d(0, 0, 0);
}
.swiper-pagination-bullet {
	display: inline-block;
	border-radius: 50%;
	cursor: pointer;
	background: #fff;
}
