/** Shopify CDN: Minification failed

Line 99:49 Unexpected "*"

**/
.main-product-cust-class {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.elvtd-product {
  margin: 0 auto;
  /* margin-bottom: 80px; */
  padding-top: 80px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
  background: var(--base-bg-color);
  max-width: var(--base-max-width);
  padding: 0 20px;

  @media(max-width: 1024px) {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  #ProductContainer {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 80px;

    @media (max-width: 1366px) {
      gap: 50px;
      /* padding: 0 20px; */
    }

    @media (max-width: 1024px) {
      gap: 30px;
    }

    @media (max-width: 767px) {
      gap: 30px;
      flex-direction: column;
    }
  }

  .product-info-wrapper {
    max-width: calc(50% - 40px);
    flex: 1 1 calc(50% - 40px);

    @media (max-width: 1366px) {
      max-width: calc(50% - 25px);
      flex: 1 1 calc(50% - 25px);
    }

    @media (max-width: 1024px) {
      max-width: calc(50% - 15px);
      flex: 1 1 calc(50% - 15px);
    }

    @media (max-width: 767px) {
      width: 100%;
      max-width: 100%;
      flex: 1 1 100%;
    }

    .affirm-as-low-as {
      margin-top: 10px;
      max-width: 100%;

      @media(max-width: 767px) {
        margin-top: 0;
      }
    }

    reviewsio-product-ratings {
      margin-bottom: 10px;
      display: block;
    }
  }
}

p.affirm-as-low-as a {
  font-weight: 300;
  font-size: .9em;
  color: #000;
  text-decoration-line: underline;
}

.product-info-container .shopify-app-block:not(id*="yotpo") {
  @media (max-width: 767px) {
    justify-content: center;
    display: flex;
  }
}

.product-info-container .shopify-app-block:has(reviewsio-product-ratings) {
  @media (max-width: 767px) {
    justify-content: flex-start;
  }
} 