.lg-container .lg-toolbar .lg-icon,
.lg-container .lg-counter {
	color: #fff;
}
.lg-container picture.lg-img-wrap,
.lg-container .lg-video-cont,
.lg-container .lg-video-object {
	padding: 20px;
}

{# General Styles #}
.image-gallery .image-gallery--item {
	display: grid;
	position: relative;
	cursor: pointer; 
}
.lg-container .lg-sub-html {
	display: none;
}
.lg-container .lg-backdrop {
	background: rgba(35,31,32,.75);
}


{# Layout - Image Popup #}
.ig__layout--image_popup .image-gallery__hover {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: grid;
	justify-content: center;
	align-items: center;
	z-index: -1;
	transition: .5s;
	opacity: 0;
	visibility: hidden;
}

.ig__layout--image_popup .image-gallery--item:hover .image-gallery__hover {
	z-index: 2;
	opacity: 1;
	visibility: visible;
}
.ig__layout--image_popup .image-gallery--item:hover img {
	opacity: 20%;
}

.image-gallery--item img {height:100%; box-shadow: 4px 4px 20px rgba(93,23,37,.25);}

{# Layout - Zoom In #}
.ig__layout--zoom_in .image-gallery--item {
	position: relative;
	overflow: hidden;
}
.ig__layout--zoom_in .image-gallery__hover {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 2;
}
.ig__layout--zoom_in .image-gallery--item img {
	transition: .5s linear;
}
.ig__layout--zoom_in .image-gallery--item:hover img {
	transform: scale(1.2);
}
.ig__layout--zoom_in .image-gallery__hover p:last-child {
	margin-bottom: 0;
}
{# Layout - Bigger #}
.ig__layout--bigger .image-gallery--item  > img {
	margin: 0 auto;
	max-width: 540px;
	width: 100%;
}
.swiper-bigger-thumbnail {
	margin-top: 28px;
}
.container-bigger-thumbnail {
	position: relative;
}
.container-bigger-thumbnail .swiper-slide {
	cursor: pointer;
  width: 100px; /* Set a fixed width for thumbnails */
  height: auto; /* Set a fixed height for thumbnails */
  overflow: hidden; /* Hide any part of the image that exceeds the thumbnail size */
  display: flex; /* Center the image within the thumbnail */
  align-items: center;
  justify-content: center;
  margin-right: 10px; /* Keep existing margin for spacing */
}

.container-bigger-thumbnail .swiper-slide img{width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the thumbnail while maintaining aspect ratio */
}