/** Shopify CDN: Minification failed

Line 89:142 Expected ":"
Line 94:83 Expected ":"
Line 112:30 Expected ":"
Line 124:41 Expected ":"
Line 125:42 Expected ":"
Line 126:105 Expected ":"

**/
.gallery-image-outer {
  display: grid;
  grid-template-areas:
    "large1 small1 center small2"
    "large1 small3 center small4";
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.gallery-image-outer {
    padding-top: 0px;
}


.image-gallery-wrapper .gallery-image {
    max-width: 220px;
    height: 100%;
}
.image-gallery-wrapper {
    text-align: center;
}

.image-gallery-wrapper h2.heading {
    margin: 0;
}
.gallery-image-outer .gallery-image img {
    height: 100%;
}
.gallery-image-outer .gallery-image:nth-child(1) {
  grid-area: large1;
  height:100%;
  max-width:100%;
}
.gallery-image img {
    max-width: 100%;
}
.modal .close svg {
    width: 15px;
    height: 15px;
    stroke: #000;
}
  .modal-content a {
    cursor: pointer;
}
.gallery-image-outer .gallery-image:nth-child(2) {
  grid-area: small1;
}

.gallery-image-outer .gallery-image:nth-child(3) {
  grid-area: center;
  height:100%;
  max-width:100%;
}

.gallery-image-outer .gallery-image:nth-child(4) {
  grid-area: small2;
}

.gallery-image-outer .gallery-image:nth-child(5) {
  grid-area: small3;
}

.gallery-image-outer .gallery-image:nth-child(6) {
  grid-area: small4;
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}
.modal-content .slider {
    min-height: 100vh;
}
.modal {display: none;position: fixed;z-index: 3;left: 0;top: 0;width: 100%;height: 100%;overflow: hidden;background-color: rgba(0,0,0,0.8);  }
.modal-content .slider {display: flex;align-items: center;justify-content: center;}
body.popup_visible {
    overflow-y: hidden;
}
.modal-content {position: relative;margin: auto;max-width: 100%;max-height: 100%;  }
.close {
    color: #000;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 30px;
    font-weight: 500;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 50px;
}
.slider {position: relative;  }.mySlides {display: none;}
.image-gallery-modal .prev,.image-gallery-modal .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    user-select: none;
    display: flex;
}
.image-gallery-modal .prev {left: 20px;  }
.image-gallery-modal .next {right: 20px;  }
.image-gallery-modal.prev:hover,.image-gallery-modal .next:hover {background-color: rgba(0, 0, 0, 0.8);  }

@media screen and (max-width:767px){
  .modal-content .slider .mySlides {
    width: 90%;
    margin: 0 auto;
}
  
.modal-content .slider .mySlides img {
    max-width: 100%;
    object-fit: cover;
}
.gallery-image-outer.collage--mobile{
    grid-template-areas: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

.gallery-image-outer.collage--mobile .gallery-image {
    grid-area: unset !important;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}