
#tb-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 11, 51, 0.80);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#tb-lightbox.show {
  display: flex;
}

.tb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#tb-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .25s ease-out, transform .25s ease-out;
}

#tb-lightbox.show #tb-lightbox-img {
  opacity: 1;
  transform: scale(1);
}

.tb-controls {
  margin-top: 0px;
  display: flex;
  justify-content: center;  
  align-items: center;
  width: 100%;             
  max-width: 90vw;
  position: relative;
}

.tb-prev,
.tb-next {
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  opacity: .85;
  user-select: none;
  margin: -10px 40px 0;
}

.tb-prev:hover,
.tb-next:hover {
  opacity: 1;
}

.tb-close {
  position: absolute;
  right: 0;                 
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  opacity: .85;
  user-select: none;
}

.tb-close:hover {
  opacity: 1;
}

@media (max-width: 767px) {

  .tb-prev, .tb-next {
    font-size: 50px;
  }
  .tb-close {
    font-size: 32px;
  }
}
