@charset "UTF-8";
.photo-gallery-main, .photo-gallery-thumbs {
		border-radius: var(--radius-small);
}
.photo-gallery-main .swiper-slide {
		width: 100%;
}
.photo-gallery-thumbs {
		margin-top: 16px;
}
.photo-gallery-thumbs .swiper-slide {
		width: auto;
}
.photo-gallery-thumbs .swiper-slide:not(:first-child) {
		padding-left: 8px;
}
.photo-gallery-thumbs .swiper-slide:not(:last-child) {
		padding-right: 8px;
}
.photo-gallery-thumbs .swiper-slide > * {
		width: 75px;
		height: 60px;
		overflow: hidden;
		backface-visibility: hidden;
		border-radius: var(--radius-small);
		background: var(--color1);
}
@media only screen and (min-width: 940px) {
		.photo-gallery-thumbs .swiper-slide > * {
				width: 170px;
				height: 96px;
		}
}
.photo-gallery-thumbs img {
		height: 100%;
		width: auto;
		max-width: 100%;
		object-fit: cover;
		object-position: center;
		margin: 0 auto;
		display: block;
}