.elite-lightbox {
  background: transparent;
  border: 0;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  padding: 2rem;
  width: 100%;
}

.elite-lightbox::backdrop {
  background: rgba(3, 7, 18, .88);
  backdrop-filter: blur(8px);
}

.elite-lightbox__stage {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: min(1100px, calc(100vw - 8rem));
}

.elite-lightbox img {
  border-radius: 1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .45);
  display: block;
  height: auto;
  margin: auto;
  max-height: calc(100vh - 6rem);
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.elite-lightbox button {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: center;
  line-height: 1;
  position: fixed;
  z-index: 2;
}

.elite-lightbox__close {
  background: #fff;
  border-radius: 50%;
  color: #111827;
  font-size: 1.7rem;
  height: 44px;
  right: 1.25rem;
  top: 1.25rem;
  width: 44px;
}

.elite-lightbox__nav {
  background: rgba(17, 24, 39, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #fff;
  font-size: 2rem;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
}

.elite-lightbox__nav:hover {
  background: rgba(31, 41, 55, .92);
}

.elite-lightbox__nav:disabled {
  cursor: default;
  opacity: .45;
}

.elite-lightbox__nav--prev {
  left: 1.5rem;
}

.elite-lightbox__nav--next {
  right: 1.5rem;
}

@media (max-width: 767.98px) {
  .elite-lightbox {
    padding: 1rem;
  }

  .elite-lightbox__stage {
    max-width: calc(100vw - 2rem);
  }

  .elite-lightbox__nav {
    height: 44px;
    width: 44px;
  }

  .elite-lightbox__nav--prev {
    left: .75rem;
  }

  .elite-lightbox__nav--next {
    right: .75rem;
  }
}