.post-type-archive-gallery .d-none {
  display: none;
}
.post-type-archive-gallery .ratio {
  position: relative;
  width: 100%;
}
.post-type-archive-gallery .ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.post-type-archive-gallery .ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-type-archive-gallery #work-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .post-type-archive-gallery #work-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .post-type-archive-gallery #work-gallery {
    grid-template-columns: 1fr;
  }
}
.post-type-archive-gallery #work-gallery .launch-gallery-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}
.post-type-archive-gallery #work-gallery .gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  background: #2b459d;
  padding: 10px;
  display: flex;
}
.post-type-archive-gallery #work-gallery .col {
  transition: all 0.3s ease;
}
.post-type-archive-gallery #work-gallery:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  top: 2.5rem;
  left: 50%;
  visibility: hidden;
}
.post-type-archive-gallery #work-gallery.loading .col {
  opacity: 0.3;
}
.post-type-archive-gallery #work-gallery.loading:after {
  visibility: visible;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}
.post-type-archive-gallery .card .gallery-zoom-icon {
  opacity: 0;
  transition: all 0.3s ease;
}
.post-type-archive-gallery .card img {
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .post-type-archive-gallery .card:hover .gallery-zoom-icon, .post-type-archive-gallery .card:hover .gallery-zoom-icon, .post-type-archive-gallery .card:focus .gallery-zoom-icon, .post-type-archive-gallery .card:focus .gallery-zoom-icon {
    opacity: 1;
  }
  .post-type-archive-gallery .card:hover img, .post-type-archive-gallery .card:focus img {
    opacity: 0.6;
  }
}
.post-type-archive-gallery .caption {
  background: #2b459d;
  padding: 0.25rem;
  text-align: center;
  color: #FFF;
  font-size: 0.85em;
  font-weight: 700;
  opacity: 0.95;
  text-transform: uppercase;
}
.post-type-archive-gallery .facetwp-pager {
  text-align: center;
}
.post-type-archive-gallery .modal#galleryModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3019607843);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner {
  position: relative;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body {
  min-width: 80vw;
  max-width: 80vw;
  background: #FFF;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner {
  display: block;
  width: 100%;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .carousel-item .item-image {
  padding: 1rem 1rem 0;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .carousel-item .item-image img {
  display: block;
  width: 100%;
  object-fit: contain;
  height: calc(70vh - 2rem);
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .carousel-item .caption-container {
  text-align: center;
  padding-top: 0.5rem;
  font-size: 21px;
  font-weight: bold;
  background: #2b459d;
  color: #FFF;
  text-transform: uppercase;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  z-index: 9;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .slick-arrow svg {
  height: auto;
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  padding: 20%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  width: 100%;
  fill: currentColor;
  border-color: currentColor;
  transition: all 0.3s;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .slick-arrow.slick-prev {
  left: 0;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner .modal-body #galleryCarousel .carousel-inner .slick-arrow.slick-next {
  right: 0;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner button.btn.btn-close {
  position: absolute;
  background: #FFF;
  z-index: 99;
  bottom: calc(100% - 1rem);
  left: calc(100% - 1rem);
  margin: 0;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
  line-height: 1;
  min-width: 2rem;
  min-height: 2rem;
  border: 1px solid;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.post-type-archive-gallery .modal#galleryModal .modal-inner button.btn.btn-close:hover, .post-type-archive-gallery .modal#galleryModal .modal-inner button.btn.btn-close:focus {
  opacity: 0.6;
}

/*# sourceMappingURL=gallery.css.map */
