/* ============================================================
   Product Gallery Widget
   ============================================================ */

.pg-wrapper {
	width: 100%;
}

/* Main Swiper */
.pg-main-swiper {
	width: 100%;
	overflow: hidden;
	margin-bottom: 12px;
}

.pg-main-swiper .swiper-slide {
	overflow: hidden;
}

.pg-main-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Thumbnails Wrap */
.pg-thumbs-wrap {
	position: relative;
	padding: 0;
}

.pg-thumbs {
	width: 100%;
	overflow: hidden;
}

/* Thumbnails nav arrows */
.pg-thumbs-prev,
.pg-thumbs-next {
	display: none;
}

/* Thumbnails Swiper */
.pg-thumbs .swiper-slide {
	height: 120px;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.55;
	transition: opacity 0.25s ease;
	border: 2px solid transparent;
}

.pg-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pg-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

