.lightbox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9000;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  font-size: 0;
  cursor: zoom-out;
}
.lightbox-close {
  z-index: 300;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  cursor: zoom-out;
}
.lightbox-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-height: 100vh;
  max-width: 100vw;
  vertical-align: middle;
  z-index: 400;
}
.lightbox-img {
  object-fit: contain;
  height: 100vh;
  width: 100vw;
}
.lightbox-imgContainer {
  position: relative;
}
.topRadius {
  border-top-left-radius: var(--size-border);
  border-top-right-radius: var(--size-border);
}
.fullRadius {
  border-radius: var(--size-border);
}
.lightbox-desc {
  background-color: #000;
  font-size: 20px;
  line-height: 200%;
  text-align: center;
  color: var(--color-background);
  padding: var(--size-columnPaddingMedium) var(--size-columnPaddingLarge) var(--size-columnPaddingMedium) var(--size-columnPaddingLarge);
  border-bottom-left-radius: var(--size-border);
  border-bottom-right-radius: var(--size-border);
}
@media only screen and (max-width: 768px) {
  .lightbox-img {
    max-height: 100vh;
    max-width: 100vw;
  }
  .topRadius {
    border-radius: 0;
  }
  .fullRadius {
    border-radius: 0;
  }
  .lightbox-desc {
    border-radius: 0;
  }
}
.lightbox-left {
  /* background-color: rgba(0,0,0,0.8); */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 50%;
  width: 50%;
  height: 100%;
  cursor: w-resize;
}
.lightbox-right {
  /* background-color: rgba(255,0255,0255,0.8); */
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 50%;
  width: 50%;
  height: 100%;
  cursor: e-resize;
}

.hide {
  display: none;
}