/** Shopify CDN: Minification failed

Line 107:10 Unexpected "{"
Line 107:19 Expected ":"
Line 108:14 Expected identifier but found whitespace
Line 108:16 Unexpected "{"
Line 108:25 Expected ":"
Line 108:76 Expected ":"
Line 109:17 Expected identifier but found whitespace
Line 109:19 Unexpected "{"
Line 109:28 Expected ":"
Line 109:82 Expected ":"
... and 10 more hidden warnings

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

.rich-text__wrapper {
  display: flex;
  justify-content: center;
  width: calc(100% - 4rem / var(--font-body-scale));
}

.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%;
}

@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) {
  .rich-text__blocks {
    max-width: 78rem;
  }
}

.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: center;
}

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

.rich-text__blocks.center .rich-text__buttons {
  justify-content: center;
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.rich-text__comparison-table {
  width: 100%;
  max-width: 385px;
  margin: 0 auto;
  margin-top: 3rem;
  padding: 1rem 0;
}

:root {
  --comparison-table-gap: 8px;
  --comparison-table-background-color: var(--color-foreground);
  --comparison-table-border-color: var(--color-button);
}

.comparison-table__table {
  position: relative;
}


.comparison-table__heading {
  margin-bottom: 1.5rem;
}

.comparison-table__header {
  display: flex;
  font-weight: 700;
  margin-bottom: 0rem;
  align-items: center;
  justify-content: center;
}

.comparison-table__header .comparison-table__column {
  flex: 1 0 auto;
  padding: 0;
  align-items: center;
}

.comparison-table__header .comparison-table__column--VS {
  flex: 0 1 auto;
}

.comparison-table__rows {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: scroll
}

.comparison-table__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: scroll;
  border-bottom: 1px solid rgb(var(--comparison-table-border-color));
  align-items: stretch;
  justify-content: center;
  margin: 0;
}


.comparison-table__row::-webkit-scrollbar {
  display: none;
}

.comparison-table__row:last-child {
  border-bottom: none;
}
.comparison-table__column {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  justify-content: center;
}

.comparison-table__column a {
  color: rgb(var(--color-button));
}

.comparison-table__row .comparison-table__column:last-child {
  border-left: 1px solid rgb(var(--comparison-table-border-color));
}

.comparison-table__column:last-child {
  color: rgba(var(--color-foreground), 1);
}

.comparison-table__column--feature {
  font-weight: 500;
}

.comparison-table__column--rgmn {
  color: rgba(var(--comparison-table-background-color), 1);
}

.comparison-table__header .comparison-table__column {
  justify-content: center;
}

.rich-text__image-wrapper {
  margin: 0 auto;
}

.rich-text__image-wrapper img {
  max-width: 100%;
}