.gallery {
  width: 84rem;
  max-width: 100%;
  min-height: 50vh;
}
.gallery-column {
  flex: 0 1 100%;
}
.gallery-column-item {
  transition: opacity 0.5s;
  opacity: 1;
}
.gallery-column-item img {
  transition: width 0.5s, height 0.5s;
}
.gallery-column-item-info {
  background-color: rgba(255, 255, 255, 0.8);
  bottom: -10rem;
  transition: bottom 0.5s, opacity 0.5s;
  padding-bottom: 1.5rem;
}
.gallery-column-item:hover {
  cursor: pointer;
}
.gallery-column-item:hover img {
  zoom: 1.2;
}
.gallery-column-item:hover .gallery-column-item-info {
  opacity: 1;
  bottom: 0;
}
.single-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: opacity 0.5s;
  opacity: 0;
}
@media (max-width: 840px) {
  .single-container .desktop-arrow {
    display: none;
  }
}
.single-container .mobile-arrows {
  width: 60%;
  justify-content: space-evenly;
  margin-top: auto;
  margin-bottom: 4rem;
}
@media (min-width: 841px) {
  .single-container .mobile-arrows {
    display: none;
  }
}
@media (max-width: 840px) {
  .single-container {
    flex-direction: column;
    align-items: center;
  }
  .single-container .single {
    flex-direction: column-reverse;
    margin: auto 0;
  }
  .single-container .single img {
    height: 65vh;
    max-width: 100%;
  }
}
.single .min {
  min-width: 12rem;
}
@media (max-width: 840px) {
  .single .min {
    margin-top: 2rem;
  }
}
.single img {
  height: 80vh;
  max-width: calc(100% - 5rem);
  object-fit: contain;
}
.single-close {
  position: absolute;
  top: 1.125rem;
  right: 3rem;
}
.single-close svg {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}
.min-height-100 {
  min-height: 12.5rem;
}
.faded {
  opacity: 0;
}
.hidden-arrow {
  opacity: 0 !important;
  pointer-events: none;
}
@media (max-width: 1024px) {
  #gallery-desktop {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  #gallery-tablet {
    display: none !important;
  }
}
@media (max-width: 480px) {
  #gallery-tablet {
    display: none !important;
  }
}
@media (min-width: 481px) {
  #gallery-mobile {
    display: none !important;
  }
}
/*# sourceMappingURL=gallery.css.map */