.basicLightbox {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  will-change: opacity;
  pointer-events: none;
}
.basicLightbox--visible {
  opacity: 1;
  pointer-events: auto;
}
.basicLightbox__placeholder {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.4s;
  will-change: transform;
  transform: scale(0.9);
}
.basicLightbox--visible .basicLightbox__placeholder {
  transform: scale(1);
}
