<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Container */
.style-swiper-container {
	position:relative;
}

.style-swiper-slide-btn-wrap {
	position:relative;
}

/* Slides */
.style-swiper-slides {
	display:flex;
	overflow-x:auto;
	scroll-snap-type:mandatory; /* Fallback if "x" not supported */
	scroll-snap-type:x mandatory;
	-ms-scroll-snap-type:mandatory;
	-webkit-scroll-snap-type:mandatory;
	-webkit-scroll-snap-destination:0% 0%;
	-webkit-overflow-scrolling:touch;
	/* Note:IE11 only supports touch - graceful fallback is standard scroll area */
}
.style-swiper-slides &gt; * {
	flex-shrink:0;
	max-width:100%;
	scroll-snap-align:start;
}

/* Buttons */
.style-swiper-btn-prev, .style-swiper-btn-next {
	position:absolute;
	top:50%;
	margin:0px;
	padding:0px;
}
.style-swiper-btn-prev {
	left:-10px;
}
.style-swiper-btn-next {
	right:-10px;
}

@media (min-width: 992px) {
	.style-swiper-btn-prev {
		left:-23px;
	}
	.style-swiper-btn-next {
	right:-23px;
}
}

/* Pagination */
.style-swiper-pagination-wrap {
	margin:auto;
	padding:auto;

	z-index:9999;
	text-align:center;
}

@media (min-width: 992px) {
	.style-swiper-pagination-wrap {

	}
}
.style-swiper-pagination {
	display:inline-block;
}
.style-swiper-page {
	display:inline-block;
	margin:5px;
}
.style-swiper-page button {
	border:0;
	width:10px;
	height:10px;
	border-radius:10px;
	background-color:#a1a1a1;
	cursor:pointer;
}
.style-swiper-page.style-swiper-visible button {
	background-color:#a1a1a1;
}
.style-swiper-page.style-swiper-active button {
	background-color:#39190f;
}

/* Scrollbar */
.hide-scrollbar {
	scrollbar-width:none; /* Firefox */
	-ms-overflow-style:none;
}
.hide-scrollbar::-webkit-scrollbar {
	display:none;
}

/* Hidden */
.style-swiper-hidden {
	display:none;
}</pre></body></html>