.product-gallery {
  display: flex;
  gap: 10px;
}
.swiper-thumbs {
  width: 100px;
  height: 400px;
}
.swiper-thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
}

.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-main {
  width: 100%;
  height: calc(100vh - 80px);
  background: #fff;
}
.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.swiper-navigation-wp{
	position: absolute;
	right: 10px;
	left: auto;
	top: 50%;
	transform: translate3d(0px,-50%,0);
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 6px;
	z-index: 1020;
}
.swiper-button-prev,
.swiper-button-next {
  position: relative;
  cursor: pointer;
  padding: 0px;
  margin: 0;
  transition: opacity 0.3s;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  width: 20px;
  height: 14px;
}
.swiper-button-prev svg, .swiper-button-next svg{
	width: 100%;
	height: 100%;
}
.swiper-pagination{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 5px;
	top: unset !important;
	right: unset !important;
	left: unset !important;
	bottom: unset !important;
	transform: translate3d(0px,0,0) !important;
}
.swiper-pagination-bullet{
	width: 2px;
	height: 18px;
	border-radius: 0;
	margin: 0 !important;
}
.swiper-pagination-bullet-active{
	background: #000 !important;
}

.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
  stroke-opacity: 1;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

@media screen and (max-width: 768px){
	.swiper-main{
		height: 70vh;
	}
}