/*!
 * @author acclectic
 * @version 0.1
 * @url https://www.acclectic.com
 */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;1,300&display=swap');
:root {
  --backgroundColor: #ffffff;
  --foregroundColor: #000000;
  --foregroundInvert: 0;
  --fixedDark: #000000;
}

.noscroll {
  overflow: hidden;
}

.lightbox-background {
  background-color: var(--backgroundColor);
}

#acclectic-lightbox-top {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  /* At maximum - 10. */
  z-index: 16777261;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#acclectic-lightbox-top.visible {
  display: block;
  opacity: 1;
}

#acclectic-lightbox-container {
  position: relative;
  display: grid;
  /* grid-template-columns: auto auto auto auto; */
  grid-template-columns: 60px max-content auto 60px;
  grid-template-rows: 100vh;
  grid-gap: 0;
  height: 100%;
  width: 100%;
}

#acclectic-lightbox-container #nav-left {
  width: 100%;
  /* Attempts to center image but no longer works in most browsers. */
  text-align: center;
  /* At maximum. */
  z-index: 16777271;
}

#acclectic-lightbox-container .lightbox-controls {
  list-style-type: none;
  padding: 0;
  margin: 0;
  /* At maximum. */
  z-index: 16777271;
}

#acclectic-lightbox-container #info {
  width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 16777271;
  display: flex;
  align-items: center;
}

#acclectic-lightbox-container #info.visible {
  /* max-width: 20%; */
  width: 300px;
}

#acclectic-lightbox-container #info .info-container {
  font-family: 'Open Sans Condensed', sans-serif;
  color: var(--foregroundColor);
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#acclectic-lightbox-container #info .info-title {
  font-size: 22px;
}

#acclectic-lightbox-container #mobile-menu-button {
  display: none;
}

@media screen and (max-width: 960px) {
  #acclectic-lightbox-container {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
  }
  #acclectic-lightbox-container #nav-left {
    display: none;
  }
  #acclectic-lightbox-container #info {
    display: none;
  }
  #acclectic-lightbox-container #info.visible {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    max-height: 50%;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0.85;
  }
  #acclectic-lightbox-container #nav-right {
    display: none;
  }
  #acclectic-lightbox-container #mobile-menu-button {
    display: block;
    opacity: 0.85;
    max-width: 90%;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    z-index: 16777271;
  }
  #acclectic-lightbox-container .lightbox-controls {
    height: 25px;
    width: max-content;
  }
  #acclectic-lightbox-container .lightbox-controls li {
    display: inline-block;
    height: 25px;
  }
  #acclectic-lightbox-container .lightbox-controls li img {
    margin: 0px 10px 0px 10px;
  }
}

/* Deprecated.
#acclectic-lightbox-container #info .info-caption {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
*/

/** Section contains heading and value. */

#acclectic-lightbox-container #info .info-section {
  margin-top: 10px;
  margin-bottom: 10px;
}

#acclectic-lightbox-container #info .info-heading {
  font-size: 16px;
  text-transform: uppercase;
}

#acclectic-lightbox-container #info .info-value {
  font-size: 14px;
}

#acclectic-lightbox-container #info .info-value table, #acclectic-lightbox-container #info .info-value th, #acclectic-lightbox-container #info .info-value tr {
  border: 0;
  margin: 0px;
}

#acclectic-lightbox-container #info .info-value .attr-label {
  border: 0;
  margin: 0px;
  padding: 0px;
  padding-right: 10px;
  font-size: 12px;
  width: 100px;
}

#acclectic-lightbox-container #info .info-value .attr-value {
  border: 0;
  margin: 0px;
  padding: 0px;
  font-size: 13px;
}

#acclectic-lightbox-container #info .gps-iframe {
  width: 250px;
  height: 250px;
  border: 0;
}

#acclectic-lightbox-container #slider-frame {
  height: 100%;
}

#acclectic-lightbox-container #nav-right {
  /* At maximum. */
  z-index: 16777271;
}

#acclectic-lightbox-container .lightbox-controls li {
  line-height: 0px;
}

#acclectic-lightbox-container .control-icon {
  position: relative;
  width: 25px;
  height: 25px;
  /* margin: auto centers the image horizontally in the div. */
  margin: 12px auto 0px auto;
  clear: both;
  filter: brightness(0) invert(var(--foregroundInvert));
}

#acclectic-lightbox-container .control-icon:hover {
  cursor: pointer;
}

#acclectic-lightbox-container .nav-arrow {
  position: sticky;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(0, -50%);
  /* margin: auto centers the image horizontally in the div. */
  margin: auto;
  clear: both;
  filter: brightness(0) invert(var(--foregroundInvert));
}

#acclectic-lightbox-container .nav-arrow:hover {
  cursor: pointer;
}

#acclectic-lightbox-container .nav-close {
  position: relative;
  width: 36px;
  height: 36px;
  /* margin: auto centers the image horizontally in the div. */
  margin: 10px auto 10px auto;
  clear: both;
  filter: brightness(0) invert(var(--foregroundInvert));
}

#acclectic-lightbox-container .nav-close:hover {
  cursor: pointer;
}

#acclectic-lightbox-slider {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  -webkit-transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
  transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease;
  /* At maximum - 5 */
  z-index: 16777265;
}

#acclectic-lightbox-container .acclectic-lightbox-slide {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  /* Attempt to center the image but no longer works on most browsers. Use translate in img. */
  text-align: center;
  vertical-align: middle;
}

#acclectic-lightbox-container .acclectic-lightbox-slide .slide-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#acclectic-lightbox-container .acclectic-lightbox-slide figure {
  position: relative;
  max-width: calc(100% - 20px);
}

#acclectic-lightbox-container .acclectic-lightbox-slide img {
  width: auto;
  height: auto;
  max-height: 100vh;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#acclectic-lightbox-container .acclectic-lightbox-slide figcaption {
  position: absolute;
  top: 100%;
  left: 0%;
  transform: translate(0%, -100%);
  width: 100%;
  font-family: 'Open Sans Condensed', sans-serif;
  margin: 0 !important;
  background: #ffffffaa;
  padding: 10px 10px 10px 10px;
  opacity: 0;
}

#acclectic-lightbox-container .acclectic-lightbox-slide figcaption.visible {
  opacity: 1;
}

#acclectic-lightbox-container .acclectic-lightbox-slide .title-bar-title {
  display: none;
  opacity: 0;
  text-align: left;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--fixedDark);
}

#acclectic-lightbox-container .acclectic-lightbox-slide .title-bar-title.visible {
  display: block;
  opacity: 1;
}

#acclectic-lightbox-container .acclectic-lightbox-slide .title-bar-caption {
  display: none;
  opacity: 0;
  text-align: left;
  font-size: 16px;
}

#acclectic-lightbox-container .acclectic-lightbox-slide .title-bar-caption.visible {
  display: block;
  opacity: 1;
}

#acclectic-lightbox-slider.bounce-start {
  animation: bounceStart .5s ease-out;
  -webkit-animation: bounceStart .5s ease-out;
}

#acclectic-lightbox-slider.bounce-end {
  animation: bounceEnd .5s ease-out;
  -webkit-animation: bounceEnd .5s ease-out;
}

@-webkit-keyframes bounceStart {
  0% {
    margin-left: 0;
  }
  25% {
    margin-left: -30px;
  }
  50% {
    margin-left: 20px;
  }
  75% {
    margin-left: -10px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceStart {
  0% {
    margin-left: 0;
  }
  25% {
    margin-left: -30px;
  }
  50% {
    margin-left: 20px;
  }
  75% {
    margin-left: -10px;
  }
  100% {
    margin-left: 0;
  }
}

@-webkit-keyframes bounceEnd {
  0% {
    margin-left: 0;
  }
  20% {
    margin-left: 30px;
  }
  50% {
    margin-left: -20px;
  }
  75% {
    margin-left: 10px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceEnd {
  0% {
    margin-left: 0;
  }
  20% {
    margin-left: 30px;
  }
  50% {
    margin-left: -20px;
  }
  75% {
    margin-left: 10px;
  }
  100% {
    margin-left: 0;
  }
}

/* Spinner element from: http://tobiasahlin.com/spinkit/ */

#acclectic-lightbox-container .acclectic-lightbox-slide .spinner-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  animation: loading-spinner 2.5s infinite linear both;
}

.loading-spinner-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: loading-spinner-dot 2.0s infinite ease-in-out both;
}

.loading-spinner-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--foregroundColor);
  border-radius: 100%;
  animation: loading-spinner-dot-before 2.0s infinite ease-in-out both;
}

.loading-spinner-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.loading-spinner-dot:nth-child(2) {
  animation-delay: -1.0s;
}

.loading-spinner-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.loading-spinner-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.loading-spinner-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.loading-spinner-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.loading-spinner-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.loading-spinner-dot:nth-child(2):before {
  animation-delay: -1.0s;
}

.loading-spinner-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.loading-spinner-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.loading-spinner-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.loading-spinner-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes loading-spinner {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-spinner-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-spinner-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1.0);
  }
}