/** Shopify CDN: Minification failed

Line 157:49 Unexpected ";"

**/

/* .modal .splide__arrow svg {fill: #fff;} */
#gallery-splide .splide__list img {cursor: pointer;}
#gallery-splide-main .splide__list img {cursor: grab;}

/* ############## lightbox ############### */
#Lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0,0,0, 0.8);
}
#Lightbox-overlay .modal-content {
  display:none;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 0;
  width: 100%;
  height: 100%;  

  margin-top: 2.0em;
}

div[id^="gallery-splide-"] {
  width: 100%;
  max-width: 1000px;
}

#gallery-splide-cards {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  max-height: calc(100vh - 2em);
}

#Lightbox-overlay .close {
  color: white;
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  line-height: normal;
}    
#Lightbox-overlay .close:hover,
#Lightbox-overlay .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
/* ############## / lightbox ############# */


/* ############## gallery grid ############# */
.cmpOverlay {
  position:absolute; 
  top:0; left:0; 
  width:100%; height:100%; 
  min-height:280px; 
  background: #000; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-overlay-plus-button, .video-overlay-play-button {
    box-sizing: border-box;
    width: 100%;
    height: 100%;    
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.5;
    cursor: pointer;
}

.image-overlay-plus-button {padding: 10px calc(50% - 16px);}
.video-overlay-play-button {padding: 10px calc(50% - 50px);}

.grid-layout {
    display: grid;
    grid-gap: 2px;
}

.grid-layout {grid-template-columns: auto auto;}

section[class^="grid-col-"] {
    grid-template-columns: 1fr;
}

.grid-layout .grid-item { 
    width: 100%;
    background-color: #000;
}

.featured {
    grid-row: 1 / span 2;
    grid-column: 1 / span 2;
}

.grid-item-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* meilisearch (theme.css) set margin-bottom to 10px */
.grid-item img { margin-bottom: unset; }


.grid-item-content .cmplazypreviewmsg, .grid-item-content .cmplazypreviewiframe {
  display: none!important;
}

.grid-item-content img {
    width:100%;
    height: 100%;
    object-fit: cover;
    max-width: unset;
}

.grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-title { 
    background: rgba(0,0,0, 0.4);
    color: #fff;
    margin: 0;
    padding: 2px 5px;
}

.grid-item-overlay h2, .grid-item-overlay p { margin: 0; }
.grid-layout .grid-item:hover img { opacity: 1; };



.modal-content .splide__arrow {
  opacity: .6;
}

.modal-content .splide__arrow, #recipe-splide .splide__arrow {
  background: #fff;
  top: calc(50% - 0.8em);
  height: 1.6em;
  width: 1.6em
}

.modal-content .splide__arrow--next {
  right: 0.5em;
}
.modal-content .splide__arrow--prev {
  left: 0.5em;
}

.modal-content .splide__slide {
  padding: 0 0;
}

.modal-content header {
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.modal-content .splide-img-content img {
  width: calc(25% - 0.5rem);
  max-width:250px;
  padding-top: 3px;
}



/* cards */
.modal-cards .splide-text-cotainer {
  display:flex; 
  justify-content:center; 
  width:100%;
  height: 100%;
}

.modal-cards .splide-img-content, .modal-cards .splide-text-cotainer {
  background:#fff;
}

.modal-cards .splide-text-cotainer .splide-text-content { 
  width:100%; 
  max-width:1000px; 
  padding: 0.5em 2.3em 0.8em; 
}

.modal-cards .splide-text-cotainer .splide-text-content h3 {
  margin: 0;
  padding: 0;
  font-weight: 800;
}

.modal-cards .splide-text-cotainer .splide-text-content p {
  line-height: normal;
}


/* scrollbar fix */
.modal-cards .splide-text-cotainer .splide-text-content::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  .modal-cards .splide-text-cotainer .splide-text-content::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
  }
  
  .modal-cards .splide-text-cotainer .splide-text-content::-webkit-scrollbar-track {
    border-radius: 0.125rem;
    background-color: lightgray;
  }
  /* /scrollbar fix */
/* /card */



.grid-col-12 {grid-template-columns: auto;}

/* media queries */
@media all and (max-width: 576px) {
  .hide--mobile {display: none!important;}
  .modal-cards .splide-img-content img {width: calc(33.333% - 0.5rem);}
}

@media all and (min-width: 576px) {
  .grid-layout { grid-template-columns: auto auto auto; }
  .grid-col-1 {grid-template-columns: 1fr;}
  .grid-col-12 {grid-template-columns: 1fr 1fr;}
  .grid-col-123 {grid-template-columns: 1fr 1fr;}

  .image-overlay-plus-button, .video-overlay-play-button {
    opacity: 0.7;
    transition: opacity 150ms;
  }

  .grid-layout:hover img { 
    opacity: 0.6;
    transition: visibility 0s 0.3s, opacity 0.3s linear;
  };


    .modal-content .splide__slide { padding: 0 20px; }
    .modal-cards .splide-text-cotainer .splide-text-content { padding: 0.5em 1em 0.8em; }
}

@media (min-width: 768px) {
  .grid-layout { grid-template-columns: auto auto auto auto; }
  .grid-col-1 {grid-template-columns: 1fr;}
  .grid-col-12 {grid-template-columns: 1fr 1fr;}
  .grid-col-123 {grid-template-columns: 1fr 1fr 1fr;}
  .splide .splide-center {justify-content: center;}
}

@media screen and (min-width: 1140px) {
  .modal-content .splide__arrow--prev { left: -40px;}
  .modal-content .splide__arrow--next {right: -40px;}
}
