/** Shopify CDN: Minification failed

Line 119:13 Expected identifier but found whitespace
Line 119:20 Unexpected ";"
Line 130:3 Unexpected "/"

**/
.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgb(var(--color-background, 255 255 255));
  border-top: 1px solid rgba(var(--color-foreground, 0 0 0), .08);
  box-shadow: 0 -6px 20px -12px #0003;
  transform: translateY(0);
  transition: transform .25s ease;
}

.sticky-atc[hidden] {
  display: block; /* override default display:none so the transition can run */
  transform: translateY(100%);
  pointer-events: none;
}

.sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
}

.sticky-atc__media {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(var(--color-foreground, 0 0 0), 0.04);
}

.sticky-atc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sticky-atc__info {
  flex: 1 1 auto;
  min-width: 0;
}

.sticky-atc__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc__price {
  margin: 2px 0 0;
  font-size: 1.3rem;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.sticky-atc__price-compare {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 1.2rem;
}

.sticky-atc__variant {
  flex: none;
}

.sticky-atc__variant-select {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(var(--color-foreground, 0 0 0), 0.2);
  font-size: 1.3rem;
  max-width: 160px;
}

/* .sticky-atc__quantity {
  flex: none;
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--color-foreground, 0 0 0), 0.2);
  overflow: hidden;
} */

/* .sticky-atc__qty-btn {
  width: 32px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(var(--color-foreground), 0.75);
}

.sticky-atc__qty-btn:hover {
  background: rgba(var(--color-foreground, 0 0 0), 0.06);
} */

/* .sticky-atc__qty-input {
  width: 40px;
  height: 36px;
  border: none;
  /* border-left: 1px solid rgba(var(--color-foreground, 0 0 0), 0.15);
  border-right: 1px solid rgba(var(--color-foreground, 0 0 0), 0.15); */
  text-align: center;
  font-size: 1.3rem;
  -moz-appearance: textfield;
  background: transparent;
  color: rgba(var(--color-foreground), 0.75);
}

.sticky-atc__qty-input::-webkit-outer-spin-button,
.sticky-atc__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */

.sticky-atc__btn {
  flex: none;
  white-space: nowrap;
  min-width: 140px;
}

.sticky-atc__quantity {
    color: rgba(var(--color-foreground));
    position: relative;
    width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
    display: flex;
    border-radius: var(--inputs-radius);
    min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
}

.sticky-atc__quantity:before {
    background: rgb(var(--color-background));
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--inputs-radius-outset);
    box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
    z-index: -1;
}

.sticky-atc__quantity:after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: var(--inputs-border-width);
    right: var(--inputs-border-width);
    bottom: var(--inputs-border-width);
    left: var(--inputs-border-width);
    border: .1rem solid transparent;
    border-radius: var(--inputs-radius);
    box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
    transition: box-shadow var(--duration-short) ease;
    z-index: 1;
}

.sticky-atc__qty-btn {
  width: calc(4.5rem / var(--font-body-scale));
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}

.sticky-atc__qty-input {
  color: currentColor;
  font-size: 1.6rem;
  font-weight: 500;
  opacity: .85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 .5rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.sticky-atc__qty-input::-webkit-outer-spin-button,
.sticky-atc__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sticky-atc__qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
}



@media screen and (max-width: 749px) {
  .sticky-atc__inner {
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  .sticky-atc__media {
    display: none;
  }

  .sticky-atc__variant, 
  .sticky-atc__info, 
  .sticky-atc__inner .button  {
     flex: 1 1 100%;
  }

  .sticky-atc__inner .button {
    flex: 1 1 100%;
  }

  .sticky-atc__btn {
    flex: 1 1 100%;
    min-width: 0;
  }
}