<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lightbox-carousel {
    display: none; 
    position: fixed; 
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.3); 

    justify-content: center;
    align-items: center;
  }

  /* Modal Content/Box */
.lightbox-content {
  background-color: #fff;
  background-image: url(../images/leadership-gradient.svg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
  width: 90vw;
  flex: 0 0 90vw;
  max-width: 1145px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  overflow-y: auto;
  animation-name: animatefade;
  animation-duration: 0.2s;
  /* margin: 2% 5%; */
  max-height: 95vh;
  position: relative;
}

.lightbox-content-box {
  padding: 20px;
  overflow: hidden;
}



  .lightbox-controls {
    text-align: right;
  }
  
  
  .lightbox-controls a {
    text-align: right;
    margin-left: 30px;
    font-size: 16px;
  }

  .lightbox-controls a i{
    font-size: 14px;
  }

  /* The Close Button */
  .lightbox-carousel .close {
    color: var(--e-global-color-secondary);
    font-size: 31px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    line-height: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    padding-right: 2px;
    cursor: pointer;
    margin: 15px 15px 0px 0px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  
  .lightbox-carousel .close:hover,
  .lightbox-carousel .close:focus {
    background: rgba(255, 255, 255, 0.5);
    color: var(--e-global-color-secondary);
  }


  @keyframes animatefade {
    from {opacity: 0}
    to {opacity: 1}
  }


  @media (max-width: 1023px) {
    .lightbox-content-box {
      overflow-y: auto;
      max-height: 95vh;
    }
  }
</pre></body></html>