/* Product Gallery */
.product-gallery-wrapper {
	position: relative;
}

.swiper-slide img {
	width: 100%;
}

.product-gallery-wrapper .swiper-button-prev,
.product-gallery-wrapper .swiper-button-next {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #333;
	background-color: white;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.product-gallery-wrapper:hover .swiper-button-prev,
.product-gallery-wrapper:hover .swiper-button-next {
	opacity: 1;
}


.product-gallery-wrapper .swiper-button-prev::after,
.product-gallery-wrapper .swiper-button-next::after {
	font-size: 14px;
}
@media (max-width: 768px){
	.product-gallery-wrapper:hover .swiper-button-prev, .product-gallery-wrapper:hover .swiper-button-next {
		opacity: 0;
	}
}
@media (min-width: 768px){
	.product-gallery-wrapper:hover .swiper-scrollbar{
		opacity:  0 !important;
	}
}
