/** Shopify CDN: Minification failed

Line 106:53 Unexpected "{"
Line 106:62 Expected ":"
Line 106:68 Unexpected ","

**/
body.sticky-atc-bar-enabled {
  padding-bottom: var(--sticky-atc-bar-height, 0px);
}

.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 29;
  background: #fff;
  box-shadow: 0 -6px 10px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(var(--color-border), var(--color-border-alpha, 1));
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s all;
  transform: translate3d(0, 100%, 0);
}
.sticky-atc-bar--show {
  transform: translate3d(0, 0, 0);
  bottom: var(--mobile-sticky-bar-height, 0px);
}
.mobile-sticky-bar-down .sticky-atc-bar--show {
  bottom: 0;
}
.sticky-atc-bar__inner {
  padding: 0.6rem 0;
  gap: 0.8rem;
}
.sticky-atc-bar__product-image {
  width: 7rem;
}
.sticky-atc-bar .form-control {
  --inputs-border-width: 1px;
  background: none;
}
.sticky-atc-bar .select {
  max-width: 25rem;
}
.sticky-atc-bar .select select {
  min-width: 8rem;
}
.sticky-atc-bar .quantity {
  flex-shrink: 0;
}
.sticky-atc-bar__form {
  flex-shrink: 0;
}
.sticky-atc-bar__form .shopify-payment-button__more-options {
  display: none;
}
.sticky-atc-bar .product-form__buttons {
  flex-wrap: nowrap;
  align-items: center;
}
.sticky-atc-bar .foxkit-preorder-note {
  margin-top: 0;
}

@media (max-width: 1023.98px) {
  .sticky-atc-bar .product-form__submit {
    padding: 0 2.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .sticky-atc-bar__product {
    gap: 0.8rem;
  }
  .sticky-atc-bar__form {
    gap: 0.8rem;
  }
  .sticky-atc-bar .product-form__buttons {
    gap: 0.8rem;
  }
  .sticky-atc-bar .product-form__submit {
    padding: 0 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .sticky-atc-bar .select {
    max-width: 100%;
  }
  .sticky-atc-bar__form {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .sticky-atc-bar.page-width--full {
    --page-padding: 5rem;
  }
}

/* 2/3 – 1/3 split, scoped to override theme defaults */
.sticky-atc-bar .sticky-atc-bar__form {
  display: flex;
  align-items: center;
  flex-shrink: 1;            /* undo flex-shrink:0 */
  width: 100%;
}

/* Quantity = 1/3 */
.sticky-atc-bar .sticky-atc-bar__form #QuantityForm-{{ section.id }},
.sticky-atc-bar .sticky-atc-bar__form .quantity {
  flex: 1 1 0 !important;    /* beats flex-shrink:0 */
  min-width: 0;
  width: 100%;
}

/* Buttons = 2/3 */
.sticky-atc-bar .sticky-atc-bar__form .product-form__buttons {
  flex: 2 1 0 !important;
  min-width: 0;
}

.sticky-atc-bar .sticky-atc-bar__form .product-form__submit {
  width: 100%;
  min-width: 0;
}
.sticky-atc-bar .sticky-atc-bar__form .quantity__input {
  flex: 1 1 auto;
  min-width: 0;
}