/* CSS */
.engagement-slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
  }
  
  .engagement-slideshow-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .engagement-carousel {
    width: 100%;
    height: 100%;
  }
  
  .engagement-carousel-cell {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .engagement-carousel-cell img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  .engagement-carousel-cell[aria-hidden="true"] {
    display: none;
  }
  
  .engagement-close-btn {
    color: #fff;
    font-size: max(3vw, 5vh);
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
  }
  