body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

 /* Customize Close Icon */
 .lb-close {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18.36 6.64a1 1 0 00-1.42 0L12 11.58 7.05 6.64a1 1 0 00-1.42 1.42L10.42 13l-4.79 4.79a1 1 0 001.42 1.42L12 14.42l4.95 4.95a1 1 0 001.42-1.42L13.58 13l4.79-4.79a1 1 0 000-1.42z"/></svg>') no-repeat center center;
  background-size: contain;
}

/* Customize Navigation Arrows */
.lb-prev, .lb-next {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.71 16.29a1 1 0 010-1.42L11.83 11l3.88-3.88a1 1 0 00-1.42-1.42L9.71 11a1 1 0 000 1.42l4.59 4.59a1 1 0 001.42 0z"/></svg>') no-repeat center center;
  background-size: contain;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}



.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail video {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.video-thumbnail:hover video {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.play-icon:hover {
    color: rgba(255, 255, 255, 1);
}


/* -------------------------------- front end gallery page ------------------------------ */
.gallery .image-container {
  width: 100%;
  height: 200px; /* Set a fixed height for all images */
  overflow: hidden;
  border-radius: 8px; /* Optional: Rounded corners for images */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow for better visuals */
}

.gallery .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fits within the container while maintaining aspect ratio */
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

.gallery .gallery-image:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Lightbox fixes for small devices */
.lightbox {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
}

.lg-toolbar .lg-close {
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lg-toolbar .lg-close:hover {
  background: rgba(255, 0, 0, 0.7);
}
