/** Shopify CDN: Minification failed

Line 393:18 Unexpected "{"
Line 393:27 Expected ":"
Line 398:18 Unexpected "{"
Line 398:27 Expected ":"
Line 404:18 Unexpected "{"
Line 404:27 Expected ":"
Line 415:18 Unexpected "{"
Line 415:27 Expected ":"
Line 422:18 Unexpected "{"
Line 422:27 Expected ":"
... and 116 more hidden warnings

**/
/*
 *  1.0. Mixins / Toggle Base
*/

toggle-tab {
  display: block;
  margin-bottom: 0 !important;
}

toggle-tab:not(.toggle--table) + toggle-tab {
  border-top: 0;
}

toggle-tab.opened .toggle__title {
  cursor: pointer;
  pointer-events: all;
}

toggle-tab.opened .toggle__title .toggle__icon {
  transform: rotate(180deg);
}

toggle-tab.opened .toggle__title + .toggle__content {
  display: block;
}

.toggle__title {
  width: 100%;
  position: relative;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: var(--font-weight-body-bold);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle__title .toggle__icon {
  flex-shrink: 0;
}

.toggle__title .toggle__icon svg * {
  transition: all 100ms linear;
  fill: var(--color-text-main);
}

.toggle__title + .toggle__content {
  padding-bottom: 1rem;
  display: none;
}

.toggle__content {
  overflow-x: auto;
}

/*
 *  2.0. FAQ Toggle
*/

.toggle--faq {
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.no-touchevents .toggle--faq:hover {
  background-color: #fffefb;
  border-color: rgba(0, 0, 0, 0.09);
}

.toggle--faq.opened {
  background-color: #fffefb;
  border-color: rgba(143, 175, 138, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
}

.toggle--faq .toggle__content {
  padding-inline-start: 24px;
  padding-inline-end: 24px;
  padding-top: 4px;
  padding-bottom: 24px;
  border-top: solid 1px rgba(0, 0, 0, 0.06);
}

.toggle--faq .toggle__content figure {
  max-width: 100%;
}

.toggle--faq .toggle__subtitle {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  margin-top: 0.375rem;
  color: rgba(0, 0, 0, 0.68);
}

.toggle--faq .toggle__subtitle svg {
  width: 1rem;
  height: 1rem;
  overflow: visible;
}

.toggle--faq .toggle__subtitle svg * {
  stroke: var(--color-text-main);
  stroke-width: 0.2rem;
}

.toggle--faq .toggle__title {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-areas: "heading button";
  gap: 16px;
  padding: 20px 22px;
  font-weight: var(--font-weight-body);
  align-items: center;
  background: transparent;
}

.toggle--faq.opened .toggle__title {
  background: rgba(143, 175, 138, 0.06);
}

.toggle--faq .toggle__title > .button {
  grid-area: button;
}

@media screen and (max-width: 767px) {
  .toggle--faq .toggle__title {
    grid-template-columns: 1fr max-content;
    grid-template-areas: "heading button";
    padding: 16px 16px;
    gap: 12px;
    align-items: flex-start;
  }

  .toggle--faq .toggle__title > .button {
    width: max-content;
  }
}

.toggle--faq .toggle__heading {
  grid-area: heading;
  min-width: 0;
}

.toggle--faq .toggle__heading span {
  display: inline-block;
  width: 100%;
}

.toggle--faq .toggle__icon-alternate {
  display: none;
}

.toggle--faq .toggle__icon-alternate path {
  fill: var(--color-text-main);
}

.toggle--faq .toggle__icon--minus {
  display: none;
}

.toggle--faq.opened .toggle__icon--plus {
  display: none;
}

.toggle--faq.opened .toggle__icon--minus {
  display: block;
}

/*
 *  3.0. Product Data / Table Toggle
*/

.toggle--table {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.no-touchevents .toggle--table:hover {
  border-color: rgba(0, 0, 0, 0.09);
  background: #fffefb;
}

.toggle--table.opened {
  border-color: rgba(143, 175, 138, 0.42);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
  background: #fffefb;
}

.toggle--table .toggle__title {
  padding-inline-start: 18px;
  padding-inline-end: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
  background: transparent;
  min-height: auto;
}

.toggle--table.opened .toggle__title {
  background: rgba(143, 175, 138, 0.06);
}

.toggle--table .toggle__icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #2a2a2a;
}

.toggle--table .toggle__icon-title svg,
.toggle--table .toggle__icon-title img {
  flex: 0 0 auto;
}

.toggle--table .toggle__icon-title svg path {
  stroke: var(--color-text-main);
}

.toggle--table .toggle__content {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.toggle--table .table {
  margin: 0;
}

.toggle--table .table-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 0.5rem 0;
  font-size: 14px;
  line-height: 1.5;
}

.toggle--table .table-line:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.toggle--table .table-line--indent {
  padding-inline-start: 0.75rem;
}

.toggle--table .table-line--heading {
  font-weight: var(--font-weight-body-bold);
  border-bottom-width: 2px !important;
  padding-top: 0;
  padding-bottom: 0.625rem;
}

.toggle--table .table-line:empty,
.toggle--table .table-line span:empty,
.toggle--table .table-line strong:empty {
  display: none;
}

html[dir=rtl] .toggle--table .table-line {
  text-align: left;
}

html[dir=ltr] .toggle--table .table-line {
  text-align: right;
}

.toggle--table .table-line > span:first-child {
  flex: 1;
  text-align: left;
  padding-inline-end: 1rem;
  color: rgba(0, 0, 0, 0.82);
}

.toggle--table .table-line > span:last-child {
  flex: 0 0 auto;
  min-width: 72px;
}

.toggle--table .table:empty {
  display: none;
}

.toggle--table .table:not(:last-child) {
  margin-bottom: 1rem;
}

.toggle--table .rte {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.78);
}

@media screen and (max-width: 767px) {
  .toggle--table {
    border-radius: 12px;
    margin-bottom: 8px;
  }

  .toggle--table .toggle__title {
    padding-inline-start: 16px;
    padding-inline-end: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .toggle--table .toggle__icon-title {
    gap: 0.625rem;
    font-size: 14px;
  }

  .toggle--table .toggle__content {
    padding: 14px 16px 16px;
  }

  .toggle--table .table-line {
    font-size: 13px;
    gap: 10px;
  }

  .toggle--table .table-line > span:last-child {
    min-width: 60px;
  }
}

/*
 *  4.0. FAQ Layout
*/

.faq-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--grid-gap);
}

@media screen and (max-width: 1023px) {
  .faq-layout {
    grid-template-columns: 100%;
  }
}

/*
 *  5.0. Contact Cell
*/

.contact-cell {
  padding: calc(var(--gutter-regular) * 1.5);
}

.contact-cell input,
.contact-cell textarea {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .contact-cell {
    position: sticky;
    top: 1.25rem;
  }
}

/*
 *  6.0. Green Pawly FAQ Styling
*/

#shopify-section-{{ section.id }} .gp-content-toggle-section__header {
  margin-bottom: 28px;
  max-width: 760px;
}

#shopify-section-{{ section.id }} .gp-content-toggle-section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#shopify-section-{{ section.id }} .gp-content-toggle-section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FAF8A;
  font-weight: 700;
}

#shopify-section-{{ section.id }} .gp-content-toggle-section__heading {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: #2A2A2A;
}

#shopify-section-{{ section.id }} .gp-content-toggle-section__subheading {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.76);
}

#shopify-section-{{ section.id }} .gp-content-toggle-section__wrap {
  background: transparent;
}

#shopify-section-{{ section.id }} .gp-toggle {
  margin-bottom: 12px;
}

#shopify-section-{{ section.id }} .gp-toggle:last-child {
  margin-bottom: 0;
}

#shopify-section-{{ section.id }} .gp-toggle__title {
  position: relative;
}

#shopify-section-{{ section.id }} .gp-toggle__heading {
  min-width: 0;
  flex: 1 1 auto;
}

#shopify-section-{{ section.id }} .gp-toggle__heading-text {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  color: #2a2a2a;
  font-weight: 600;
}

#shopify-section-{{ section.id }} .gp-toggle__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
  min-width: 40px;
}

#shopify-section-{{ section.id }} .gp-toggle__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f5f4ef;
  color: #2a2a2a;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  flex-shrink: 0;
}

#shopify-section-{{ section.id }} .gp-toggle__chevron svg {
  width: 13px;
  height: 13px;
}

#shopify-section-{{ section.id }} .gp-toggle.opened .gp-toggle__chevron {
  transform: rotate(180deg);
  background: #8FAF8A;
  color: #ffffff;
}

#shopify-section-{{ section.id }} .gp-toggle__content {
  padding: 4px 24px 24px;
}

#shopify-section-{{ section.id }} .gp-toggle__content-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

#shopify-section-{{ section.id }} .gp-toggle__content-inner--with-image {
  grid-template-columns: minmax(0, 1fr);
}

#shopify-section-{{ section.id }} .gp-toggle__text {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.82);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

#shopify-section-{{ section.id }} .gp-toggle__text p {
  margin: 0 0 14px;
}

#shopify-section-{{ section.id }} .gp-toggle__text p:last-child {
  margin-bottom: 0;
}

#shopify-section-{{ section.id }} .gp-toggle__text br {
  display: block;
  content: "";
  margin-top: 6px;
}

#shopify-section-{{ section.id }} .gp-toggle__text ul,
#shopify-section-{{ section.id }} .gp-toggle__text ol {
  margin: 12px 0 14px;
  padding-left: 0;
  list-style: none;
}

#shopify-section-{{ section.id }} .gp-toggle__text ul li,
#shopify-section-{{ section.id }} .gp-toggle__text ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

#shopify-section-{{ section.id }} .gp-toggle__text ul li:last-child,
#shopify-section-{{ section.id }} .gp-toggle__text ol li:last-child {
  margin-bottom: 0;
}

#shopify-section-{{ section.id }} .gp-toggle__text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: #4a7c59;
  font-weight: 700;
  font-size: 13px;
}

#shopify-section-{{ section.id }} .gp-toggle__text strong {
  color: #2a2a2a;
}

#shopify-section-{{ section.id }} .gp-toggle__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.2);
  text-underline-offset: 2px;
}

#shopify-section-{{ section.id }} .gp-toggle__text a:hover {
  text-decoration-color: #4a7c59;
}

#shopify-section-{{ section.id }} .gp-toggle__image-wrap {
  margin-top: 4px;
}

#shopify-section-{{ section.id }} .gp-toggle__image {
  width: 100%;
  overflow: hidden;
}

#shopify-section-{{ section.id }} .gp-toggle__button-mobile-wrap {
  display: none;
  margin-top: 18px;
}

#shopify-section-{{ section.id }} .gp-content-toggle-section__contact {
  padding: 24px;
  background: #fff;
}

#shopify-section-{{ section.id }} .gp-toggle__title::before,
#shopify-section-{{ section.id }} .gp-toggle__title::after,
#shopify-section-{{ section.id }} .gp-toggle__title .toggle__icon,
#shopify-section-{{ section.id }} .gp-toggle__title .toggle__title-icon,
#shopify-section-{{ section.id }} .gp-toggle__title .toggle__plus,
#shopify-section-{{ section.id }} .gp-toggle__title .toggle__minus,
#shopify-section-{{ section.id }} .gp-toggle__title .icon-plus,
#shopify-section-{{ section.id }} .gp-toggle__title .icon-minus,
#shopify-section-{{ section.id }} .gp-toggle__title .plus,
#shopify-section-{{ section.id }} .gp-toggle__title .minus,
#shopify-section-{{ section.id }} .gp-toggle__title [class*="plus"],
#shopify-section-{{ section.id }} .gp-toggle__title [class*="minus"] {
  display: none !important;
  content: none !important;
}

@media screen and (min-width: 990px) {
  #shopify-section-{{ section.id }} .gp-toggle__content-inner--with-image {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: start;
  }
}

@media screen and (max-width: 989px) {
  #shopify-section-{{ section.id }} .gp-content-toggle-section__header {
    margin-bottom: 20px;
  }

  #shopify-section-{{ section.id }} .gp-toggle {
    margin-bottom: 10px;
    border-radius: 14px;
  }

  #shopify-section-{{ section.id }} .gp-toggle__content {
    padding: 2px 18px 18px;
  }

  #shopify-section-{{ section.id }} .gp-content-toggle-section__contact {
    margin-top: 20px;
    padding: 18px;
  }
}

@media screen and (max-width: 749px) {
  #shopify-section-{{ section.id }} .gp-content-toggle-section__heading {
    font-size: clamp(26px, 7vw, 34px);
  }

  #shopify-section-{{ section.id }} .gp-toggle__actions {
    gap: 8px;
    min-width: 32px;
  }

  #shopify-section-{{ section.id }} .gp-toggle__button {
    display: none;
  }

  #shopify-section-{{ section.id }} .gp-toggle__button-mobile-wrap {
    display: block;
  }

  #shopify-section-{{ section.id }} .gp-toggle__heading-text {
    font-size: 16px;
    line-height: 1.4;
  }

  #shopify-section-{{ section.id }} .gp-toggle__chevron {
    width: 24px;
    height: 24px;
  }

  #shopify-section-{{ section.id }} .gp-toggle__chevron svg {
    width: 12px;
    height: 12px;
  }

  #shopify-section-{{ section.id }} .gp-toggle__text {
    font-size: 14px;
    line-height: 1.72;
  }

  #shopify-section-{{ section.id }} .gp-toggle__text ul li,
  #shopify-section-{{ section.id }} .gp-toggle__text ol li {
    padding-left: 22px;
  }
}