/** Shopify CDN: Minification failed

Line 65:66 The "-" operator only works if there is whitespace on both sides
Line 66:67 The "-" operator only works if there is whitespace on both sides

**/
/* Small grid */
.small-grid {    
  --columns-count: 2;
  --line-height: var(--font-s-line-height) * 1em;
  --used-lines: 6;

  display: grid;
  grid-auto-flow: dense;
  margin: calc(-0.5 * var(--grid-gap));
  grid-template-columns: repeat(var(--columns-count), calc(100% / var(--columns-count)));
  position: relative ;
}
@media (max-width: 500px){
  .small-grid.two-columns .small-block{
    grid-column: span 2;
  }
}
@media (min-width:800px){
  .small-grid.three-columns,
  .small-grid.four-columns,
  .small-grid.five-columns{
      --columns-count: 3;
  }
}
@media (min-width:1000px){
  .small-grid.four-columns,
  .small-grid.five-columns{
      --columns-count: 4;
  }
}
@media (min-width:1200px){
  .small-grid.five-columns{
      --columns-count: 5;
  }
}

.small-block {box-sizing: border-box;padding:calc(var(--grid-gap)/ 2);display:flex;flex-direction: column;position:relative;}

.small-block .promotion{display: flex;}
.small-block .promotion::before {content:' ';display:block;width:0;padding-bottom:calc(100% / var(--aspect-ratio) + var(--used-lines) * var(--line-height));}
.small-block .promotion {position: relative;overflow: hidden;color:rgb(var(--text_color));background-color:rgb(var(--background_color));}
.small-block .promotion>div{width: 100%;}
.small-block .promotion .content-background{position: absolute;height: 100%;width: 100%;object-fit: cover;z-index: 0;}
.small-block .promotion .content-background img{height: 100%;width: 100%;object-fit: cover;z-index: 0;transform: scale(1); transition: 0.3s ease transform;}
.small-block a.promotion:hover .content-background img{transform:scale(var(--grid-zoom-image-on-hover))}
.small-block .promotion .content-text{position: relative;z-index: 1;padding: min(var(--space-around), 24px);}

.small-block .small-block-top{aspect-ratio: var(--aspect-ratio);flex-grow:1;position:relative;overflow:hidden; width: 100%;}
.small-block .small-block-top img,.small-block .small-block-top svg{width: calc(100% + 1px);height:calc(100% + 1px);object-fit:cover;position:absolute;transform: scale(1);transition: 0.3s ease transform, var(--grid-image-on-hover-speed) ease opacity;}
.small-block a.small-block-top:hover img{transform: scale(var(--grid-zoom-image-on-hover));}
.small-block .small-block-top.with-second-image img:not(:first-of-type){opacity: 0;}
.small-block a.small-block-top.with-second-image:hover img{opacity:0;}
.small-block a.small-block-top.with-second-image:hover img:not(:first-of-type){opacity: 1;}
.small-block .small-block-bottom{min-height: calc(var(--used-lines) * var(--line-height));line-height: var(--line-height);position: relative;padding: 16px 40px 0 0;}
.small-block .small-block-bottom .icon.icon-add-to-cart{top:0; right: 0;position: absolute;}
.small-block .small-block-bottom .underline-animation{margin-bottom: -0.25em;}
.small-block .small-block-bottom p{margin:0;}
.small-block  .block-badge {position: absolute;z-index: 3; padding: 9px 12px 9px;background-color: rgb(var(--background_color));}
.small-block  .block-badge-top_left {top: calc(var(--grid-gap)/ 2 -1px );left: calc(var(--grid-gap)/ 2 - 1px);}
.small-block  .block-badge-top_right {top: calc(var(--grid-gap)/ 2 -1px );right: calc(var(--grid-gap)/ 2 - 1px);}

.small-grid .small-block.size-wide{grid-column: span 2;}
.small-grid .small-block.size-wide .small-block-top{aspect-ratio: calc(var(--aspect-ratio) * 2);}
.small-grid .small-block.size-wide .promotion::before {padding-bottom:calc(100% / (var(--aspect-ratio) * 2) + var(--used-lines) * var(--line-height));}
.small-grid .small-block.size-tall{grid-row: span 2;}
.small-grid .small-block.size-tall .small-block-top{aspect-ratio: calc(var(--aspect-ratio) / 2);}
.small-grid .small-block.size-tall .promotion::before {padding-bottom:calc(100% / (var(--aspect-ratio) / 2) + var(--used-lines) * var(--line-height) + var(--grid-gap) + var(--used-lines) * var(--line-height));}
.small-grid .small-block.size-large{grid-column: span 2; grid-row: span 2} 

.small-block-notes{
  padding-right: 12px;
  position: relative;
  /* height: calc(2 * var(--line-height)); */
  width: 100%;
  /* overflow: hidden; */
}
.small-block-notes>p{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
/* .small-block-notes:after,.small-block-notes:before{
  content: "...";background-color: rgb(var(--background_color)); z-index: 1; position: absolute; right: 0; padding-left: 3px;
}
.small-block-notes:before{top: calc(var(--line-height));}
.small-block-notes:after{color: transparent;min-height: calc(2 * var(--line-height));} */

.small-block .product-name-with-price>p {
  display: inline;
}
@media(max-width: 480px){
  .small-block .product-name-with-price>p,.small-block .product-name-with-price>span {
     display: block
} 
  .small-block .product-name-with-price>.dot{
      display: none
  }
  
}

/* Gallery v2 */
.gallery-grid{
  --columns-count: 2;
  --aspect-ratio: 1;

  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(var(--columns-count), 1fr);
  }
  .full-width>.gallery-grid.with-gap,
  .full-width>*>.gallery-grid.with-gap{
    margin-left:var(--space-around);
    margin-right:var(--space-around);
  }
  .gallery-grid.with-gap{
    grid-gap: var(--grid-gap);
  }
  .gallery-grid.text-gallery-grid{
    margin-left: calc(-1* var(--space-around));
    margin-right: calc(-1* var(--space-around));
  }
  .gallery-grid.columns-2,.gallery-grid.columns-3{
    --columns-count: 1;
  }
@media (min-width:600px){ 
  .gallery-grid.columns-2{
    --columns-count: 2;
  }
  .gallery-grid.columns-3,
  .gallery-grid.columns-5{
      --columns-count: 3;
  }
}
@media (min-width:800px){
  .gallery-grid.columns-4,
  .gallery-grid.columns-6{
      --columns-count: 4;
  }
}
@media (min-width:1000px){
  .gallery-grid.columns-5{
      --columns-count: 5;
  }
}
@media (min-width:1200px){
  .gallery-grid.columns-6{
      --columns-count: 6;
  }
}
.gallery-grid-item {
    position: relative;
    z-index: 1;
    background-color: rgb(var(--background_color));
    color: rgb(var(--text_color));
}
.gallery-grid-item>div{
  width:100%;
}

.gallery-grid-item .text .text-content.with-small-margin{
  margin: calc(var(--space-around) / 2);
}
.gallery-grid-item .text .text-content.without-margin{
  margin: 0;
}

.gallery-grid-item.cover::before{
    content:" ";
    display: block;
    width:0;
    padding-bottom: calc(var(--aspect-ratio) * 100%);
}
.gallery-grid-item.cover .media{
    position: absolute;
    top:0;
    height: 100%;
    width:100%;
    overflow: hidden;
    z-index: 0;
}
.gallery-grid-item.cover .media>*{
    width:calc(100% + 2px);
    height: calc(100% + 2px);
    object-fit: cover;
}
.gallery-grid-item.cover .text{
    position: relative;
    min-height: 100%;
    width: 100%;
}
.gallery-grid-item.link{cursor: pointer;}
.gallery-grid-item.link .media>*{
  transform: scale(1);
  transition: transform 0.3s ease;
}
.gallery-grid-item.link:hover .media>*{
  transform: scale(1.1);
}
.gallery-grid-item .button{
    display: inline-block;
}


  /* Large grid */
  .large-grid {
    display: grid;    
    justify-content: center;
    grid-auto-flow: dense;
    grid-template-columns: 1fr;

    grid-gap: var(--space-around) var(--space-around);
}
@media (min-width: 765px){
  .large-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.large-block {
    position: relative;display: flex;background-color:rgb(var(--background_color));color:rgb(var(--text_color));
}
.large-block .collection-large-block h2{
  word-break:break-word;
}
.large-block .media,.large-block .media>*{
  display:block;
  width:100%;
  height:calc(100% + 2px);
  object-fit: cover;
}
@media (max-width: 764px){
.large-block:not(.only_text):not(.large-block-with-text):after {content: " ";display: block;width:0px;padding-bottom: 70.2%;}
.large-block.tall:not(.only_text){grid-row: span 2;justify-content: center;}
.large-block.tall:not(.only_text):after{padding-bottom: calc(140.4% + var(--space-around))}
}
@media (min-width: 765px){
  .large-block:not(.large-block-with-text):after {content: " ";display: block;width:10px;padding-bottom: 70.2%;}
  .large-block.large {grid-column: span 2;grid-row: span 2;justify-content: center;}
  .large-block.wide {grid-column: span 2;justify-content: center;}  
  .large-block.tall {grid-row: span 2;justify-content: center;}
  .large-block.tall:after{padding-bottom: calc(140.4% + var(--space-around))}
  
  .large-block.large:after{padding-bottom: calc((100% - var(--space-around))/2 * 1.404 + var(--space-around))}
  .large-block.wide:after{padding-bottom: calc((100% - var(--space-around))/2 * 0.702)}
  .large-block.adapt::after{padding-bottom: 0px;}
}

@media (max-width: 764px){
  .large-grid.grid-square .large-block:not(.only_text):not(.large-block-with-text):after {padding-bottom: 100%;}
  .large-grid.grid-square .large-block.tall:not(.only_text):after{padding-bottom: calc(200% + var(--space-around))}
  }
  @media (min-width: 765px){
    .large-grid.grid-square .large-block:not(.large-block-with-text):after {padding-bottom: 100%;}
    .large-grid.grid-square .large-block.tall:after{padding-bottom: calc(200% + var(--space-around))}
    .large-grid.grid-square .large-block.large:after{padding-bottom: calc((100% - var(--space-around))/2 * 2 + var(--space-around))}
    .large-grid.grid-square .large-block.wide:after{padding-bottom: calc((100% - var(--space-around))/2 * 1)}
    .large-grid.grid-square .large-block.adapt::after{padding-bottom: 0px;}
  }
.large-block>div.background {position: absolute;top: 0;left: 0;width: 100%;height: 100%;pointer-events: none;overflow: hidden; }
.large-block .background>* {transform: scale(1);transition: 0.3s transform ease;}
a.large-block:hover .background>* {transform: scale(1.1);}
.large-block>div.content{display: flex; flex-grow: 1; z-index: 1;}
.large-block .content>div {
  flex-grow: 1;
  }
  .large-block .text-content {
    margin: 24px;
  }
  @media(max-width: 809px){
    .large-block .text-content {
      margin: 5.93vw;
    }
  }

/* Large grid for blog */
.large-block-with-text {
    flex-direction: column;
}

.large-block-with-text .article-text h3 {
    margin: 14px 0 8px 0;
}

.large-block-with-text .article-text .article-info {
    margin-top: 36px;
    font-weight: bold;
}
@media(max-width:480px){ 
  .large-block-with-text .article-text .article-info {
    margin-top: 24px;
  }
}
.large-block-with-text .article-text .article-info span:not(.article-label)+span.article-label{
  padding-left:14px;
}
.large-block-with-text .article-text .article-label:not(:last-child){
  padding-right:14px;
}

.large-block-with-text .article-text p {
  padding: 4px 0px 8px;
  margin:0;
  font-size: 1em;
}

.large-block-with-text .article-text .article-link {
  margin-top: 0;
}

.article-text .article-text {
  margin-bottom: 8px;
}

.large-block-with-text .article-text{
  margin:0;
  margin-right: 24px;
  margin-bottom: 0;
}
@media (min-width: 765px){
  .large-block-with-text .article-text{
    margin-right: 48px;
  }
}

a.article-image-url:hover + div.article-text h3 a span.underline-animation {
  background-size: 100% 1px;
}

/* Three grid, footer-grid */
.three-grid{
    display: grid;    
    justify-content: center;
    grid-auto-flow: dense;
    grid-template-columns: 1fr;

    grid-gap: var(--grid-gap)
}
.legal-block{
  order: 10; 
}
@media (min-width: 765px){
  .three-grid{
    grid-template-columns: 1fr 1fr;
  }
  .legal-block{
    grid-column-start: 1;
    order: unset;
  }
  .three-block.wide{
    grid-column: span 2;
  }
  .three-block.tall {grid-row: span 2;}
}
@media (min-width: 1136px){
  .three-grid{
    grid-template-columns: 1fr 1fr 1fr;
  }
}