/** Shopify CDN: Minification failed

Line 23:8 Expected identifier but found whitespace
Line 23:10 Expected identifier but found "%"
Line 23:49 Unexpected "0%"
Line 23:52 Expected identifier but found "%"
Line 23:61 Unexpected "calc("
Line 23:104 Expected identifier but found "%"
Line 35:0 Unexpected "{"
Line 35:1 Expected identifier but found "%"
Line 47:0 Unexpected "{"
Line 47:1 Expected identifier but found "%"
... and 6 more hidden warnings

**/
.rich-text {
  z-index: 1;
}

.rich-text__wrapper {
  display: flex;
  justify-content: center;
  width: {% if request.path contains 'contact' %}0%{% else %}calc(100% - 4rem / var(--font-body-scale)){% endif %};

}

.rich-text:not(.rich-text--full-width) .rich-text__wrapper {
  margin: auto;
  width: calc(100% - 8rem / var(--font-body-scale));
}

.rich-text__blocks {
  width: 100%;
}
{% if request.path contains 'contact' %}
  p.store-address-contact-page {
    margin-top: 0px !important;
}
p.write-to-us-contact-page {
    margin-bottom: 0;
    font-size: 22px;
      text-decoration: underline;
}
.contact-info a {
    text-decoration: none;
}
{% endif %}


@media screen and (min-width: 750px) {
  .rich-text__wrapper {
    width: 100%;
  }

  .rich-text__wrapper--left {
    justify-content: flex-start;
  }

  .rich-text__wrapper--right {
    justify-content: flex-end;
  }

  .rich-text__blocks {
    max-width: 50rem;
  }
}

@media screen and (min-width: 990px) {
 {% if request.path contains 'contact' %}
    .rich-text__blocks {
      max-width: 78rem;
    }
  {% else %}
    .rich-text__blocks {
      max-width: 100%;
    }
{% endif %}

}

.rich-text__blocks * {
  overflow-wrap: break-word;
}

.rich-text__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}

.rich-text__blocks > * + * {
  margin-top: 2rem;
}

.rich-text__blocks > * + a {
  margin-top: 3rem;
}

.rich-text__buttons {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 45rem;
  word-break: break-word;
}

.rich-text__buttons--multiple > * {
  flex-grow: 1;
  min-width: 22rem;
}

.rich-text__buttons + .rich-text__buttons {
  margin-top: 1rem;
}

.rich-text__blocks.left .rich-text__buttons {
  justify-content: flex-start;
}

.rich-text__blocks.right .rich-text__buttons {
  justify-content: flex-end;
}
