<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gallery-container {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}

.swiper {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 6px;
}

/* Apply shadow for the main gallery */
.swiper.main-gallery {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: 5px solid #fff;
	background: #fff;
	border-radius: 6px;
}
.main-gallery {
	margin-bottom: 10px;
	--swiper-navigation-color: #666;
	--swiper-pagination-color: #666;
}

/* Main gallery navigation buttons */
.main-gallery .swiper-button-prev:after,
.main-gallery .swiper-button-next:after {
	background: rgba(0,0,0,.3);
	border-radius: 3px;
	color: #fff;
	content: "nexts";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 200%;
	line-height: 1.3;
	padding: 5px;
	position: absolute;
	text-align: center;
	text-indent: 0;
	opacity: 0;
	-webkit-transition: all .15s ease-in-out 0s;
	-moz-transition: all .15s ease-in-out 0s;
	-o-transition: all .15s ease-in-out 0s;
	transition: all .15s ease-in-out 0s;
}
.main-gallery .swiper-button-prev:after {
	content: '\f053';
	left: 0;
}
.main-gallery .swiper-button-next:after {
	content: '\f054';
	right: 0;
}
.main-gallery:hover .swiper-button-prev:after,
.main-gallery:hover .swiper-button-next:after {
	opacity: 1;
}
.main-gallery .swiper-button-prev:hover:after,
.main-gallery .swiper-button-next:hover:after {
	background: rgba(0,0,0,.6);
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background-color: #fff;
	
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	
	background-size: cover;
	background-position: center;
}

.main-gallery .swiper-slide img {
	border-radius: 6px;
	cursor: pointer;
}

.thumbs-gallery {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}
.thumbs-gallery .swiper-slide {
	width: 100px;
	height: 70px;
	margin: 0 2px;
	float: none;
	outline: medium none;
	overflow: hidden;
	opacity: 0.4;
	border-bottom: 4px solid #ccc;
}
.thumbs-gallery .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}</pre></body></html>