

/* CSS from section stylesheet tags */
ul {
    list-style-type: none;
  }
  h3 {
    margin: 1em 0 0.5em 0;
  }
ul {
    list-style-type: none;
  }
  h3 {
    margin: 1em 0 0.5em 0;
  }
section.subscription-comparison {
  h2 {
    font-size: 28px;
  }
  article {
    --padding: 16px;
    --border-thickness: 1px;
    background: white;
    border: var(--border-thickness) solid transparent;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: border 0.3s ease-in-out;
    @media only screen and (min-width: 749px) {
      --padding: 32px;
    }
  }

  article:nth-child(2) {
    box-shadow: 0px 0px 0px 16px #caf2c3;
    h3 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 var(--padding);
      &::after {
        background: #BFF4BE;
        content: "Most popular";
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 3px 6px;
        text-transform: uppercase;
      }
    }
  }
}
.subscription-product-comparison__discount {
  background: #caf2c3;
  border: 1px solid #caf2c3;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 12px auto;
  min-height: 16px;
  padding: 6px 10px;
  text-align: center;
  width: max-content;
  max-width: calc(100% - (var(--padding) * 2));
  text-transform: uppercase;
}

article .subscription-product-comparison__discount:first-child {
  top: -28px;
  position: relative;
}

.subscription-product-comparison__discount--secondary {
  background: #fbe3df;
  border: 1px solid #fbe3df;
  color: #2B2B2B;
}
.subscription-product-comparison__discount.subscription-product-comparison__discount--empty {
  background: transparent;
  border: 1px solid transparent;
  color: transparent;
  display: block;
}
.subscription-comparison-group {
   background: var(--COLOR-A5);
   margin-top: 8px;
   padding: 24px;
   width: 100%;

  .subscription-comparison-group__body {
    padding-top: 32px;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr);

    hr {
      margin: var(--padding) calc(var(--padding) * -1);
    }
    h3 {
      font-size: 18px;
      margin-top: 0;
    }
    h4 {
      font-size: 35px;
      margin: 0 var(--padding);
      text-align: center;
    }
    h5 {
      font-family: var(--FONT-STACK-BODY);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
    }
    p {
      font-size: 20px;
      margin: 8px var(--padding);
      text-align: center;
      font-weight: normal;
    }
    a {
      margin: 16px var(--padding) 16px var(--padding);
      width: calc(100% - (var(--padding) * 2));
      &.is-disabled {
        pointer-events: none;
        cursor: not-allowed;
      }
    }
    .btn.btn--large.btn--solid.btn--primary {
      font-size: 18px;
    }
    ul {
      margin-top: 16px;
    }
    .subscription-product-comparison__subheading {
      font-size: 24px;
      font-weight: 600;
      span {
        font-size: 32px;
      }
    }

    @media only screen and (min-width: 749px) {
      gap: 40px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      padding: 32px;
      h3 {
        font-size: 24px;
      }
      h4 {
        font-size: 48px;
      }
    }
  }
  .subscription-comparison-group__header {
    width: 100%;
    text-align: center;

    h3 {
      margin-top: 0;
      font-size: 24px;
    }

    p {
      font-weight: normal;
    }

    ul {
      grid-template-columns: 1fr 1fr;
      margin-top: 20px;
      margin-bottom: 0;

      @media only screen and (min-width: 749px) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 20px;
      }

      display: grid;
      list-style: none;
      text-align: center;

      li:before {
        content: '';
        position: relative;
        left: -10px;
        width: 1em;
        height: 1em;
        background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
        display: inline-block;
      }

      @media only screen and (max-width: 749px) {
        li:last-child {
          grid-column: 1 / 3;
        }
      }
    }
  }
  .subscription-product-comparison__item-quantity {
    font-size: 24px;
  }
}
.storista-header {
    display: flex;
    width: 100%;
  }

  .storista-header-left {
    justify-content: start;
  }

  .storista-header-center {
    justify-content: center;
  }

  .storista-header-right {
    justify-content: end;
  }