
.slickSliderImageStyle 
{
    width: 250px !important;
   margin: 15px;
    display: inline-block !important;
    position: relative;
    height:250px !important;
    background-size: cover; /* Ensure the image covers the div */
    background-position: center; /* Center the image */
    border-radius: 17px !important;
    box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.1), 0 12px 10px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}




.media-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15,15,15,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.media-modal.active {
  display: flex;
}



.custom_mediaContent 
{
  position: relative;
  max-width: 1000px;
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: center;
}



.media-slide-wrapper {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.media-slide-wrapper img,
.media-slide-wrapper iframe {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: grab;
}


#mediaSlideWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh; /* make wrapper full screen height */
  overflow: hidden;
}

#mediaSlideWrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* fit without cropping */
  display: block;
}


.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}