/** Shopify CDN: Minification failed

Line 113:10 Expected identifier but found whitespace
Line 113:12 Unexpected "{"
Line 113:21 Expected ":"
Line 113:45 Expected ":"
Line 126:21 Expected identifier but found whitespace
Line 126:23 Unexpected "{"
Line 126:32 Expected ":"
Line 155:21 Expected identifier but found whitespace
Line 155:23 Unexpected "{"
Line 155:32 Expected ":"
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.hidden-test-banner {
  display: none !important;
}

  
/* Banner container */
.memorial-day-banner {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 50px 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

/* Title */
.banner-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  color: #bf0a30;
  font-size: 36px;
  margin: 0 0 10px;
}

/* Subtitle */
.banner-subtitle {
  font-family: "Quattrocento", serif;
  color: #244a5c;
  font-size: 46px;
  margin: 0 0 0px;
}

.banner-gift-offer  {
    font-size: 16px;
    color: #6b6b6b;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    padding: 0px 10px 30px 10px;
    max-width: 690px;
    margin: 0  auto;
    line-height: 1.7;
}

/* Timer text */
.banner-timer-text {
  font-family: "Poppins", sans-serif;
  color: #696969;
  font-size: 18px;
  margin: 0;
}

/* Button */
.shop-now-btn {
  display: inline-block;
  background-color: #1d4a5b;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  padding: 14px 36px;
  margin-top: 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #1d4a5b;
}

.shop-now-btn:hover {
  background-color: #fff;
  color: #1d4a5b;
}

.shop-note {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-top: 12px;
}

.timer-wrapper {
    background-color: #ffffff78;
    padding: 5px;
    border-radius: 9px;
    display: inline-block;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.countdown-timer-block {
  margin-right: 20px;
}
.box {
    width: {{ section.settings.card-width}}px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 15px;
  }
  .detail-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: {{ section.settings.detail-box }};
  }
  .type {
    display: flex;
    flex-direction: column;
  }
  .type a {
    color: #222222;
    margin: 5px 0px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-right: 8px;
  }
  .type span {
    color: rgba(26, 26, 26, 0.5);
  }
  .price {
    color: #333333;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  .overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: {{ section.settings.color_bg--overlay | color_modify: 'alpha', 0.6}};
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .overlay {
    visibility: hidden;
  }
  .slide-img:hover .overlay {
    visibility: visible;
    animation: fade 0.5s;
  }
  @keyframes fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  :focus {
    outline: none !important;
  }
  .slick-dots li button::before {
    font-size: 22px !important;
  }
  span.icon.icon-arrow-left.slick-arrow,
  span.icon.icon-arrow-right.slick-arrow {
    display: none !important;
  }
  ul.slick-dots {
    display: none !important;
  }
  @media screen and (max-width: 479px) {
    /* start of phone styles */
    .box {
      width: 265px;
    }
    .type a {
      font-size: 16px;
    }
    .type span {
      font-size: 16px;
    }
    .detail-box {
      padding: 10px !important;
    }
  }
  {%- if section.settings.arrows -%}
      span.icon.icon-arrow-left.slick-arrow,
      span.icon.icon-arrow-right.slick-arrow {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
        display: inline !important;
      }
      span.icon.icon-arrow-left.slick-arrow {
        left: -22px;
      }
      span.icon.icon-arrow-right.slick-arrow {
        right: -22px;
      }
      @media screen and (max-width: 479px) {
        /* start of phone styles */
        span.icon.icon-arrow-left.slick-arrow,
        span.icon.icon-arrow-right.slick-arrow {
          display: none !important;
        }
      }
  {%- endif -%}
  {%- if section.settings.dots -%}
      ul.slick-dots {
        display: block !important;
      }
  {%- endif -%}
.banner-image {
  aspect-ratio: 2.86 / 1;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  .accordion:after {
    content: '\02C3';
    color: #777;
    font-weight: bold;
    margin-left: 10px;
  }
  .active:after {
    content: "\02C5";
  }
  .panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .pb-ingredients-link {
  	font-family: DINPro-Bold;
      font-size: 20px;
      color: #244a5c;
      font-weight: 500;
      line-height: 36px;
      text-transform: uppercase;
      margin-bottom: 0;
  }
.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  .accordion:after {
    content: '\02C3';
    color: #777;
    font-weight: bold;
    margin-left: 10px;
  }
  .active:after {
    content: "\02C5";
  }
  .panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .pb-ingredients-link {
  	font-family: DINPro-Bold;
      font-size: 20px;
      color: #244a5c;
      font-weight: 500;
      line-height: 36px;
      text-transform: uppercase;
      margin-bottom: 0;
  }
.accordion {
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.accordion:after {
  content: '\02C3';
  color: #777;
  font-weight: bold;
  margin-left: 10px;
}
.active:after {
  content: "\02C5";
}
.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.pb-ingredients-link {
	font-family: DINPro-Bold;
    font-size: 20px;
    color: #244a5c;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  .accordion:after {
    content: '\02C3';
    color: #777;
    font-weight: bold;
    margin-left: 10px;
  }
  .active:after {
    content: "\02C5";
  }
  .panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .pb-ingredients-link {
  	font-family: DINPro-Bold;
      font-size: 20px;
      color: #244a5c;
      font-weight: 500;
      line-height: 36px;
      text-transform: uppercase;
      margin-bottom: 0;
  }
.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  .accordion:after {
    content: '\02C3';
    color: #777;
    font-weight: bold;
    margin-left: 10px;
  }
  .active:after {
    content: "\02C5";
  }
  .panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .pb-ingredients-link {
  	font-family: DINPro-Bold;
      font-size: 20px;
      color: #244a5c;
      font-weight: 500;
      line-height: 36px;
      text-transform: uppercase;
      margin-bottom: 0;
  }