/** Shopify CDN: Minification failed

Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"
Line 23:10 Expected identifier but found whitespace
Line 23:12 Unexpected "{"
Line 23:21 Expected ":"
Line 30:18 Expected identifier but found whitespace
Line 30:20 Unexpected "{"
Line 30:29 Expected ":"
Line 30:75 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:icon-with-text-box (INDEX:16) */
.icon-rows {
    padding: 24px;
    background-color: {{ section.settings.background_color }};
    color: {{ section.settings.font_color }};
  }

  .icon-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: {{ section.settings.row_margin_bottom | default: 30 }}px;
  }

  .icon-row .material-icons {
    font-size: 24px;
    margin-right: 16px;
  }
/* END_SECTION:icon-with-text-box */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:upsells-popup (INDEX:108) */
#ss-upsell-popup {
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:999999;
  display:none;
  background:rgba(0,0,0,.45);
  padding:60px;
  box-sizing:border-box;
}

#ss-upsell-popup.ss-upsell-active{
  display:block;
}

.ss-upsell-container{
  position:relative;
  width:100%;
  height:calc(100% + 60px);
  overflow-y:auto;
  overflow-x:hidden;
  background:#fff;
  -webkit-overflow-scrolling:touch;
  box-sizing:border-box;
  border-radius:4px;
  padding:30px 40px 120px;
}

.ss-upsell-close{
  position:fixed;
  top:70px;
  right:75px;
  z-index:1000000;
  padding:0;
  border:0;
  background:transparent;
  font-size:50px;
  line-height:1;
  cursor:pointer;
}
.ss-upsell-title {
  margin: 0 0 15px;
  text-align: center;
  display: block;
  font-size: 32px;
  line-height: 1.2;
  font-family: 'RedHatDisplayBold';
}
.ss-upsell-subtitle{margin: 0 0 30px; text-align: center; font-weight: 300; font-family: 'RedHatDisplayRegular'; font-size: 18px; width: 100%; line-height: 1.3;}
.ss-upsell-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:900px;margin:0 auto}
.ss-upsell-item{
  display:block;
  color:inherit;
  text-decoration:none;
}

.ss-upsell-item > a{
  display:block;
  color:inherit;
  text-decoration:none;
}

.ss-upsell-item-image{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ss-upsell-item-title{
  margin-top:10px;
  font-size:14px;
  line-height:1.4;
  text-align:left;
}

.ss-upsell-item-price{
  margin-top:5px;
  font-size:13px;
  line-height:1.4;
  text-align:left;
  
}

.ss-upsell-item-atc{
  display:block;
  width:100%;
  margin-top:12px;
  padding:12px 15px;
  border:0;
  background:#000;
  color:#fff;
  cursor:pointer;
  font-size:14px;
  line-height:1.2;
  text-align:center;
}

.ss-upsell-item-atc:disabled{
  opacity:.6;
  cursor:default;
}
.ss-upsell-item-title{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.ss-upsell-skip-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1000001;
  width:100%;
  padding:12px 40px;
  box-sizing:border-box;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(253,250,245,.8);
}


.ss-upsell-skip{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  max-width:300px;
  margin:0;
  padding:14px 25px;
  border:0;
  background:#000;
  color:#fff;
  cursor:pointer;
  font-size:16px;
  line-height:1.2;
  text-align:center;
}

/* SS Upsell entrance animation */
#ss-upsell-popup.ss-upsell-active{
  animation:ss-upsell-fade-in .3s ease both;
}

#ss-upsell-popup.ss-upsell-active .ss-upsell-content{
  animation:ss-upsell-content-in .4s cubic-bezier(.22,1,.36,1) .05s both;
}

@keyframes ss-upsell-fade-in{
  from{opacity:0}
  to{opacity:1}
}

@keyframes ss-upsell-content-in{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media screen and (max-width:749px){
  #ss-upsell-popup{
    padding:40px 15px;
  }

  .ss-upsell-container{
    padding:50px 15px 50px;
    height:calc(100% + 40px);

  }

  .ss-upsell-skip-bar{
    padding:13px 20px;
  }

  .ss-upsell-skip{
    max-width: 125px;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .ss-upsell-close{
    top:40px;
    right:35px;
    font-size: 40px;
  }

  .ss-upsell-content{
    padding:0px 0px 40px;
  }

  .ss-upsell-title{
    font-size: 22px;
    margin-bottom: 5px;
  }

  .ss-upsell-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .ss-upsell-subtitle{
    font-size: 14px;
    margin-bottom: 20px;
  }

  .ss-upsell-item-title{
    font-size:14px;
    line-height:1.2;
  }
  .ss-upsell-item-atc {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
/* END_SNIPPET:upsells-popup */