/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
.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
  }

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