/** Shopify CDN: Minification failed

Line 46:12 Expected identifier but found whitespace
Line 46:13 Unexpected "2.6rem"

**/
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0.6rem 0rem;
  z-index: 2;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.2);
}
.sticky-atc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
.sticky-atc__button {
  flex-shrink: 0;
}
.sticky-atc .button {
  padding: 0 1rem;
  min-height: auto;
  min-width: auto;
  line-height: 3.5em;
  font-size: 1.6rem;
}
.sticky-atc__title {
  margin: 0px;
  font-size: 0rem;
}

.sticky-atc__price {
  margin-top: 0rem;
}
.sticky-atc__price .price {
  column-gap: 0.5rem;
  margin-bottom: 0;
}
.sticky-atc__price .price,
  font-size: 2.6rem;
  color: #fff;
}
.sticky-atc__price .price-item--regular {
  font-size: 1.2rem;
  color: #fff;
}

.sticky-atc__price .badge {
  font-size: 1.4rem;
}
.sticky-atc.color-inverse .price-item {
   color: #fff;
}
.sticky-atc.color-inverse .price__sale .price-item--regular {
  color:  #fff;
}

.sticky-atc.color-accent-1 .price-item,
.sticky-atc.color-accent-1 .price-item {
  color: rgb(var(--color-foreground));
}
.sticky-atc.color-accent-1 .badge,
.sticky-atc.color-accent-1 .badge {
  background: rgb(var(--color-foreground));
  color:  #fff;
}

.sticky-atc .price__regular .price-item--regular {
  font-size: 2rem;
  line-height: 1.1;
}

@media screen and (min-width: 400px) {
  .sticky-atc__price .price,
  .sticky-atc__price .price-item--regular {
    font-size: 1.6rem;
  }
  .sticky-atc__title {
    font-size: 1.7rem;
  }
  .sticky-atc__price .badge {
    font-size: 1rem;
  }
  .sticky-atc .button {
    font-size: 1.7rem;
    padding: 0 1.1em;
  }
}
@media screen and (min-width: 500px) {
  .sticky-atc__price .badge {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 750px) {
  .sticky-atc__price .price,
  .sticky-atc__price .price-item--regular {
    font-size: 1.8rem;
      color:  #fff;
  }
  .sticky-atc .price__regular .price-item--regular {
    font-size: 2.2rem;
      color:  #fff;
  }
  .sticky-atc__title {
    font-size: 2rem;
  }
  .sticky-atc__price .badge {
    font-size: 1.3rem;
      color:  #fff;
  }
  .sticky-atc .button {
    font-size: 1.9rem;
    padding: 0 1.5em;
  }
}

.sticky-atc--after-scroll {
  transform: translateY(100%);
}
.sticky-atc--after-scroll.sticky-atc--active {
  animation: btnAppear 0.15s ease-in-out forwards;
}

@keyframes btnAppear {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.quick-add-modal__content .sticky-atc {
  display: none;
}
