:root{
	--gallery-height:564px;
	--gallery-width:calc(var(--gallery-height) * 5);
}

.product-gallery-module {
  display: flex;
  align-items: flex-start;
	position:relative;
	overflow: hidden;
}

.product-gallery-column{
	overflow: hidden;
	    max-width: 55%;
}


.thumb-gallery,
.product-gallery {
  position: relative;
  overflow: hidden;
}


.thumb-gallery {
  height: 100%; /* adjust as needed */
      width: auto;
  display: flex;
	position:absolute;
	z-index:1;
}


.thumb-wrapper {
  flex-direction: column;
	display:flex;
	justify-content:start;
}


.thumb-card {
  width: 100%;
  opacity: 0.5;
  transition: opacity .3s;
	cursor: pointer;
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
	max-width:99px;
}

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


.product-gallery {
  flex-shrink: 1;
  margin-left: 20%;
}

.gallery-wrapper {
  display: flex;
  width: 100%;
}

.image-card {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
	cursor: grab;
}

.product-gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    margin-top: 0.75rem !important;
    margin-bottom: 1rem !important;
}

.product-gallery-pagination span:hover {
    opacity: 1;
}

.product-gallery-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.product-gallery-pagination span {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 99px;
    opacity: .5;
    cursor: pointer;
}

@media (min-width:769px)
{	
	.product-gallery-pagination{
		display:none;
	}
	
}

@media (max-width:768px)
{
	
	.product-gallery{
		margin-left:0;
	}
	
		.thumb-gallery{
		display:none;
	}
	
	.product-gallery-column{
	max-width:100%;
}
	
}

