/** Shopify CDN: Minification failed

Line 58:20 Expected ":"
Line 58:22 Expected identifier but found "4px"

**/
/* START_SECTION:ks-dawn-sticky-add-to-cart (INDEX:21) */
.ks-sticky-atc {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 8px 0;
    transform: translateY(100%);
    transition: all 0.2s ease-out;
    visibility: hidden;
    border-top: .1rem solid rgba(var(--color-foreground), .08);
  }

  .ks-sticky-atc.show {
    visibility: visible;
    z-index: 9;
    transform: translateY(0);
  }

  .ks-sticky-atc-left img {
    display: block;
    margin-right: 8px;
  }

  .ks-sticky-atc-left h3 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .ks-sticky-atc-left-inner {
    display: flex;
    align-items: center;
  }

  @media (max-width: 749px) {
    .ks-sticky-atc-left img {
      max-height: 60px;
      width: auto;
    }
    .ks-sticky-atc-right button {
      min-height: auto;
      padding: 9px;
    }
    .ks-sticky-atc-right {
      padding-top: 8px;
      padding-bottom; 4px;
    }
  }

  @media (min-width: 750px) {
    .ks-sticky-atc-inner {
      display: flex;
      align-items: center;
    }
    .ks-sticky-atc-left {
      width: 50%;
    }
    .ks-sticky-atc-right {
      width: 50%;
      padding-left: 16px;
      padding-right: 16px;
    }
  }
/* END_SECTION:ks-dawn-sticky-add-to-cart */
