/* Hidden state */
.flp-hidden {
    display: none !important ;
}
/* Shimmer effect */
.shimmer {
  position: relative;
  height: 100vh;
  max-height: 750px;
  width: 100%;
  max-width: 750px;
  overflow: hidden;
  background: #F3F3F3;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: shimmer 0.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.placeholder {
    background: #efeee9; /* Fallback background color */
    width: 100%; /* Ensures it fills its container */
    height: 100%; /* Ensures it fills its container */
    object-fit: cover; /* Ensures image scales properly */
}

.placeholder::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: absolute;
    top: 0;
    left: 0;
}

/* Shortcode Gallery */
div.ivs-fpl-gallery-section--block {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
}
div.ivs-fpl-gallery-main-cover {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
max-height: 750px;
width: 100%;
max-width: 750px;
margin-bottom: 17px;
}
div.ivs-fpl-gallery-container {

}
div.ivs-fpl-gallery-container .swiper-slide {

}
div.ivs-fpl-gallery-section--block div.swiper-button-next, div.ivs-fpl-gallery-section--block div.swiper-button-prev {
display: none;
top: 50%;
width: 34px;
color: #AA8A71;
background-image: none;
}
div.ivs-fpl-gallery-section--block div.swiper-button-next {
right: 0px;
}
div.ivs-fpl-gallery-section--block div.swiper-button-prev {
left: 0px;
}
div.ivs-fpl-gallery-section--block .swiper-button-next svg, div.ivs-fpl-gallery-section--block .swiper-button-prev svg {
width: auto;
}
div.ivs-fpl-gallery-section--block div.swiper-pagination {
bottom: -20px !important;
}
div.ivs-fpl-gallery-section--block span.swiper-pagination-bullet {
width: 15px;
height: 15px;
border: 1px solid #AA8A71;
transform: none !important;
opacity: 1;
background-color: #FFFFFF;
}
div.ivs-fpl-gallery-section--block span.swiper-pagination-bullet-active {
background-color: #AA8A71;
}
@media only screen and (min-width: 1601px) {
.shimmer {
max-height: 1000px;
max-width: 1000px;
}
div.ivs-fpl-gallery-main-cover {
max-height: 100%;
max-width: 1000px;
}
}
@media only screen and (max-width: 767px) {
div.ivs-fpl-gallery-container .swiper-slide {
padding: 0px;
margin-bottom: 30px;
}
div.ivs-fpl-gallery-section--block div.swiper-button-next, div.ivs-fpl-gallery-section--block div.swiper-button-prev {
top: auto;
bottom: 0px;
width: 30px;
}
div.ivs-fpl-gallery-section--block div.swiper-button-prev {
left: 35%;
}
div.ivs-fpl-gallery-section--block div.swiper-button-next {
right: 35%;
}
div.ivs-fpl-gallery-section--block div.swiper-pagination {
bottom: 5px !important;
}
}
