#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#overlay.hidden {
  display: none;
}

#lightbox-title {
  font-size: calc(0.8rem + 1vh + 1vw);
  font-family: 'agencyfbbold';
  font-weight: bold;
  color: rgb(255,255,255);
  /*align-items: center;*/
  /*justify-content: center;*/
  /*display: flex;*/
  /*letter-spacing: 3px;*/
  margin: 0px;
  text-transform: uppercase;
  line-height: 100%;
}

@media (min-width: 576px) {
  #lightbox-title {
    font-size: 4vh;
    font-family: 'agencyfbbold';
    font-weight: bold;
    color: rgb(255,255,255);
    /*align-items: center;*/
    /*justify-content: center;*/
    /*display: flex;*/
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 100%;
    text-transform: uppercase;
  }
}

#lightbox-details {
  margin-bottom: 0px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 1.4vh;
  color: var(--bs-yellow);
}

@media (min-width: 576px) {
  #lightbox-details {
    font-size: 1.4vh;
    margin-bottom: 0px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    color: var(--bs-yellow);
  }
}

.lightbox-bold-stats {
  font-family: 'Lato';
  font-size: 1.8vh;
  color: #ffffff;
  font-weight: 900;
  line-height: 15px;
  margin: 0px;
}

@media (min-width: 576px) {
  .lightbox-bold-stats {
    font-family: 'Lato';
    font-size: 1.8vh;
    color: #ffffff;
    font-weight: 900;
    line-height: 15px;
    margin: 0px;
  }
}

.lightbox-disclaimer {
  font-family: Lato, sans-serif;
  font-size: 1.2vh;
  color: var(--bs-yellow);
  font-weight: 400;
}

@media (min-width: 576px) {
  .lightbox-disclaimer {
    font-family: Lato, sans-serif;
    font-size: 1vh;
    color: var(--bs-yellow);
    font-weight: 400;
  }
}

.lightbox-disclaimer-missing {
  font-family: Lato, sans-serif;
  font-size: 1.2vh;
  color: var(--bs-emphasis-color);
  font-weight: 400;
  background-color: #da0037;
  padding: 3px;
}

@media (min-width: 576px) {
  .lightbox-disclaimer-missing {
    font-family: Lato, sans-serif;
    font-size: 1.2vh;
    font-weight: 400;
  }
}

.lightbox-disclaimer-missing a {
  text-decoration: underline;
  font-weight: 800;
  color: #ffffff;
}

.lightbox-credits {
  font-family: Lato, sans-serif;
  font-size: 1vh;
  color: var(--bs-secondary-bg-subtle);
  font-weight: 400;
  background-color: #fca311;
  padding: 3px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .lightbox-credits {
    font-family: Lato, sans-serif;
    font-size: 1vh;
    /*margin-bottom: 50px;*/
  }
}

.lightbox-credits a {
  text-decoration: underline;
  font-weight: 400;
  color: #000000;
}

.lightbox-credits-bold {
  font-weight: 800;
  text-transform: uppercase;
}

.technique {
  font-family: Lato, sans-serif;
  font-size: 1.4vh;
  color: #ffffff;
}

@media (min-width: 576px) {
  .technique {
    font-family: Lato, sans-serif;
    font-size: 1.2vh;
    color: #ffffff;
    font-weight: 400;
  }
}

.technique.span {
  font-family: Lato, sans-serif;
  font-size: 1.4vh;
  color: var(--bs-yellow);
}

@media (min-width: 576px) {
  .technique.span {
    font-family: Lato, sans-serif;
    font-size: 1.2vh;
    color: var(--bs-yellow);
    /*font-weight: 900;*/
  }
}

.technique.high {
  color: var(--bs-teal);
  font-weight: 600;
}

.technique.low {
  color: var(--bs-red);
  font-weight: 600;
}

.technique.regular {
  color: var(--bs-yellow);
  font-weight: 600;
}

/* BUTTONS */

.lightbox-button {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: rgba(240,240,240,0);
  color: rgb(255,255,255);
  border-style: none;
  font-size: 50px;
  opacity: 0.50;
  padding: 0px;
}

.lightbox-button:hover {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: rgba(240,240,240,0);
  color: rgb(255,255,255);
  border-style: none;
  font-size: 50px;
  opacity: 1;
}

/* NAV BUTTONS */

#previous-button {
  left: 0px;
}

#next-button {
  right: 0px;
}

#lightbox-image {
  height: 60vh;
  /*width: auto;*/
  object-fit: contain;
}

@media (max-width: 992px) {
  #lightbox-image {
    display: block;
    width: 70vw;
    object-fit: contain;
  }
}

#close-button {
  position: absolute;
  right: 20px;
  background: rgba(255,255,255,0);
  border-style: none;
  font-weight: bold;
  font-family: Lato, sans-serif;
  font-size: 50px;
  color: var(--bs-gray);
  padding: 0PX;
  top: 0px;
  margin: 0px;
  z-index: 2;
}

#lightbox-info {
  display: none;
  padding-left: 50px;
  padding-right: 50px;
  width: 60ch;
}

@media (max-width: 992px) {
  #lightbox-info {
    display: none;
    width: 50ch;
  }
}

#info-button {
  display: inline-block;
  position: absolute;
  left: 25px;
  top: 25px;
}

@media (min-width: 992px) {
  #info-button {
    display: none;
  }
}

@media (max-width: 992px) {
  #info-button.active + #lightbox-content #lightbox-info {
    display: block;
  }
}

@media (min-width: 992px) {
  #lightbox-image, #lightbox-info {
    display: block;
  }
}

.credit-link {
  text-decoration: underline;
  color: #ffc107;
}

#lightbox-content {
}

@media (min-width: 992px) {
  #lightbox-content {
    padding-left: 50px;
  }
}

.pattern-background {
  background: url("../../assets/img/various-assets/download-background.jpg") center / auto repeat;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
}

.pattern-background-lightbox {
  background: url("../../assets/img/various-assets/download-background.jpg") center / auto repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

