/** Shopify CDN: Minification failed

Line 62:31 Unexpected "{"

**/
.sticky-mobile-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 40;
  padding: 0 12px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(calc(100% + 60px));
  transition: transform 0.25s ease;
  pointer-events: none;
}

.sticky-mobile-atc.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-mobile-atc__inner {
  background: rgb(var(--color-background-rgb));
  color: rgb(var(--color-foreground-rgb));
  border: 1px solid rgb(var(--color-border-rgb) / 0.15);
  border-radius: 18px;
  box-shadow: 0 -8px 30px rgb(0 0 0 / 0.12);
  overflow: hidden;
}

.sticky-mobile-atc__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.sticky-mobile-atc__summary-text {
  flex: 1;
  min-width: 0;
}

.sticky-mobile-atc__title {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}


.sticky-mobile-atc__per-day-line {
  display: none;
  align-items: center;
  gap: 0px;
  font-size: 13px;
  line-height: 1.2;
}
.is-expanded .sticky-mobile-atc__per-day-line {
  display: flex;
}
.sticky-mobile-atc__price-line,{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 1.2;
}
.sticky-mobile-atc__price {
  font-weight: 600;
}

.sticky-mobile-atc__from {
  opacity: 0.7;
}

.sticky-mobile-atc__per-day-line {
  margin-top: 4px;
  opacity: 0.8;
}

.sticky-mobile-atc__expand-button {
  min-width: 40px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #0A1A3B;
  color: white;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-mobile-atc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgb(var(--color-border-rgb) / 0.1);
}

.sticky-mobile-atc.is-expanded .sticky-mobile-atc__panel {
  max-height: 70vh;
  overflow-y: auto;
}

.sticky-mobile-atc__options {
  padding: 14px 16px 6px;
}

.sticky-mobile-atc__option + .sticky-mobile-atc__option {
  margin-top: 14px;
}

.sticky-mobile-atc__option-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
}

.sticky-mobile-atc__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sticky-mobile-atc__option-button {
  appearance: none;
  border: 1px solid rgb(var(--color-border-rgb) / 0.35);
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 42px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sticky-mobile-atc__option-button.is-active {
  background: #0A1A3B;
  color: white;
  border-color: #0A1A3B;
}

.sticky-mobile-atc__option-day {
  opacity: 0.8;
}

.sticky-mobile-atc__footer {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  padding: 14px 16px 16px;
  position: sticky;
  bottom: 0;
  background: rgb(var(--color-background-rgb));
}

.sticky-mobile-atc__quantity-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  opacity: 0.7;
}

.sticky-mobile-atc__quantity-controls {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.35);
  border-radius: 999px;
  overflow: hidden;
  min-height: 44px;
}

.sticky-mobile-atc__quantity-btn {
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  height: 44px;
}

.sticky-mobile-atc__quantity-input {
  border: 0;
  background: transparent;
  text-align: center;
  width: 100%;
  height: 44px;
  padding: 0;
  appearance: textfield;
}

.sticky-mobile-atc__quantity-input::-webkit-outer-spin-button,
.sticky-mobile-atc__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sticky-mobile-atc__submit {
  align-self: end;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #0A1A3B;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 16px;
}

.sticky-mobile-atc__submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.sticky-mobile-atc__submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media screen and (min-width: 750px) {
  .sticky-mobile-atc {
    display: none;
  }
}