/** Shopify CDN: Minification failed

Line 572:12 Expected ":"

**/
/* #Cart - general */

.cart__empty-text,
.is-empty .cart__contents {
  display: none;
}

.is-empty .cart__empty-text,
.is-empty .cart__warnings {
  display: block;
}

.cart__warnings {
  display: none;
  text-align: center;
}

.cart__empty-text {
  margin: 0 0 var(--spacing-05);
}

.cart__contents>*+* {
  margin-top: 1.25rem;
}

@media screen and (min-width: 990px) {
  .cart__empty-text {
    margin: 0 0 1.5rem;
  }
}

.cart__note {
  height: fit-content;
}

.cart__note label {
  display: flex;
  align-items: flex-end;
  position: absolute;
  line-height: 1;
  height: 1rem;
  top: -1.5rem;
  color: rgba(var(--color-foreground), 0.75);
}

.cart__note .field__input {
  height: 100%;
  position: relative;
  border-radius: var(--inputs-radius);
  padding: .5rem 1.25rem;
}

.cart__note .text-area {
  resize: vertical;
}

.cart__note:after,
.cart__note:hover.cart__note:after,
.cart__note:before,
.cart__note:hover.cart__note:before,
.cart__note .field__input:focus,
.cart__note .field__input {
  border-bottom-right-radius: 0;
}

@media screen and (min-width: 750px) {
  .cart__contents>*+* {
    margin-top: 0;
  }
}

.cart__ctas button {
  width: 100%;
}

.cart__ctas>*:not(noscript:first-child)+* {
  margin-top: .5rem;
}

.cart__update-button {
  margin-bottom: .5rem;
}

.cart__dynamic-checkout-buttons {
  max-width: 25rem;
  margin: 0 auto;
}

.cart-note__label {
  display: inline-block;
  margin-bottom: .5rem;
  line-height: calc(1 + 1 / var(--font-body-scale));
}

.tax-note {
  margin: var(--spacing-04) 0 var(--spacing-05) auto;
  text-align: center;
  display: block;
  color: var(--color-foreground-dimmed);
}

.cart__checkout-button {
  max-width: 25rem;
}

.cart__ctas {
  text-align: center;
  margin-top: var(--spacing-05);
}

@media screen and (min-width: 750px) {
  .cart-note {
    max-width: 25rem;
  }

  .cart__update-button {
    margin-bottom: 0;
    margin-right: 0.4rem;
  }

  .tax-note {
    margin-bottom: var(--spacing-06);
    text-align: right;
  }

  [data-shopify-buttoncontainer] {
    justify-content: flex-end;
  }

  .cart__ctas {
    display: flex;
    gap: .5rem;
  }
}

/* .cart-quantity {
  max-width: 7rem;
  min-height: 2.5rem;
  height: fit-content;
}

.cart-quantity .quantity__button {
  width: 2.5rem;
  height: 2.5rem;
} */

/* #Cart - items */

.cart-item {
  position: relative;
}

.cart-items td,
.cart-items th {
  padding: 0;
  border: none;
}

.cart-items th {
  text-align: left;
  opacity: 0.85;
  font-weight: normal;
}

.cart-item__quantity-wrapper {
  display: flex;
  gap: var(--spacing-03);
  justify-content: flex-start;
}

.cart-item__totals {
  position: relative;
}

.cart-items *.right {
  text-align: right;
}

.cart-item__image-container {
  display: inline-flex;
  align-items: flex-start;
}

.cart-item__image-container:after {
  content: none;
}

.cart-item__image {
  height: auto;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 100%;
  border-radius: var(--media-radius);
}

@media screen and (min-width: 750px) {
  .cart-item__image {
    max-width: 100%;
  }
}

.cart-item__details {
  font-size: 1rem;
  align-self: baseline;
}

.cart-item__details>* {
  margin: 0;
  max-width: 16rem;
}

.template--cart main .cart-item__details>* {
  max-width: unset;
}

/* .cart-item__details > * + *:not(:empty) {
  margin-top: var(--spacing-02);
} */

.cart-item__media {
  position: relative;
}

.cart-item__link {
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cart-item__name {
  text-decoration: none;
  display: block;
  word-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.2;
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: var(--font-size-body);
}

@media screen and (max-width: 749px) {
  .cart-item__name {
    font-size: var(--font-size-body);
  }
}

.cart-item__price-wrapper>* {
  display: block;
  margin: 0;
  padding: 0;
}

.cart-item__discounted-prices dd {
  margin: 0;
}

.cart-item__discounted-prices .cart-item__old-price {
  font-size: 0.9rem;
}

.cart-item__old-price {
  display: block;
  color: var(--color-foreground-dimmed);
  font-weight: 400 !important;
}

.cart-item__final-price {
  font-weight: 400;
  font-size: var(--font-size-body-sm) !important;
}

.cart-item__discounted-prices .cart-item__old-price {
  font-size: var(--font-size-body-xs) !important;
}

.product-option {
  font-size: var(--font-size-body-xs);
  word-break: break-all;
  line-height: 1.5;
  /* letter-spacing: 0.05ch; */
  display: inline;
  color: var(--color-foreground-dimmed);
}

.product-option dd[data-file] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cart-item cart-remove-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .cart-item cart-remove-button {
    width: 2rem;
    height: 2rem;
  }
}

cart-remove-button .button.button--icon {
  --color-button: transparent;
  /* --color-button: var(--color-text); */
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  /* border-color: var(--color-border); */
}

cart-remove-button .button.button--icon:hover {
  --color-button-text: var(--color-foreground-dimmed);
  background-color: transparent;
}

cart-remove-button .button.button--secondary {
  border-color: transparent;
}

cart-remove-button .button:before,
cart-remove-button .button:after {
  content: none;
}

@media screen and (min-width: 750px) {
  cart-remove-button .button {
    min-width: 2rem;
    min-height: 2rem;
  }
}

cart-remove-button .icon-remove {
  height: 1rem;
  width: 1rem;
}

/* .cart-item .loading-overlay {
  top: 0;
  left: auto;
  right: auto;
  bottom: 0;
  padding: 0;
} */

.cart-item:has(.loading-overlay:not(.hidden)) * {
  cursor: wait !important;
}

@media screen and (min-width: 750px) {
  .cart-item .loading-overlay {
    padding-top: inherit;
  }
}

/* .cart-item .loading-overlay:not(.hidden)~* {
  visibility: hidden;
} */

.cart-item__error {
  display: flex;
  align-items: flex-start;
}

.cart-item__error-text {
  font-size: 0.8rem;
  order: 1;
}

.cart-item__error-text+svg {
  flex-shrink: 0;
  width: 0.8rem;
  margin-right: 0.5rem;
}

.cart-item__error-text:empty+svg {
  display: none;
}

.product-option * {
  display: inline;
  margin: 0;
}

.cart-items thead th {
  text-transform: uppercase;
}

@media screen and (max-width: 749px) {

  .cart-items,
  .cart-items thead,
  .cart-items tbody {
    display: block;
    width: 100%;
  }

  .cart-items thead tr {
    display: flex;
    justify-content: space-between;
    border-bottom: var(--border-style);
  }

  .cart-items thead th {
    border-bottom: 0 !important;
  }

  .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .cart-item:last-child {
    margin-bottom: 0;
  }

  .cart-item__media {
    grid-row: 1 / 3;
  }

  .cart-item__details {
    grid-column: 2 / 4;
  }

  .cart-item__quantity {
    grid-column: 2 / 5;
  }

  .cart-item__quantity-wrapper {
    flex-wrap: wrap;
  }

  .cart-item__totals {
    align-self: baseline;
    justify-self: flex-end;
  }

  .cart-item__details .cart-item__discounted-prices {
    display: none;
  }
}

.cart-item__error-text+svg {
  margin-top: 0.2rem;
}

@media screen and (min-width: 750px) {
  .cart-items {
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: none;
    width: 100%;
    display: table;
  }

  .cart-items th {
    border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  }

  .cart-items thead th:first-child {
    width: 50%;
  }

  .cart-items td {
    vertical-align: top;
    padding-top: 2.5rem;
  }

  .cart-item {
    display: table-row;
  }

  .cart-item__details {
    width: 24rem;
  }

  .cart-item__media {
    width: 5rem;
  }

  /* .cart-item__price-wrapper > *:only-child:not(.cart-item__discounted-prices) {
    margin-top: 1rem;
  } */
}

@media screen and (min-width: 990px) {
  .cart-item__details {
    width: 30rem;
  }

  .cart-items thead th:first-child {
    width: 60%;
  }
}

/* Totals */

.totals {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.totals>* {
  font-size: 1rem;
  margin: 0;
}

.totals>h2 {
  font-size: var(--font-size-body-lg);
  font-family: var(--font-heading-family);
  font-weight: 600;
}

.totals * {
  line-height: 1;
}

.totals>*+* {
  margin-left: var(--spacing-03);
}

.totals__subtotal-value {
  font-size: 1rem;
  font-weight: 600;
}

.cart__ctas+.totals {
  margin-top: 1.5rem;
}

@media all and (min-width: 750px) {
  .totals {
    justify-content: flex-end;
  }
}

/* Discounts */

.discounts:not(:empty) {
  margin-top: var(--spacing-03)
}

.discounts__discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  /* gap: 0.4rem; */
  line-height: 1.2;
  background-color: var(--color-background-dimmed);
  padding: 0.2rem 0.5rem;
  width: fit-content;
  border-radius: 0.5rem;
  margin-top
}

.discounts__discount svg {
  flex: 0 0 .75rem;
}

/* Item properties */

[bss-po-line-properties] {
  display: contents;
}

.cart-drawer .cart-item__details dl,
.cart-item__details .product-options {
  display: flex;
  flex-direction: column;
  /* margin-top: var(--spacing-03); */
}

.product-option dt {
  font-weight: 600;
}

@media screen and (min-width: 750px) {
  .template--cart main .product-option {
    font-size: var(--font-size-body-sm);
  }
}

/* Subheading */

.cart-item__subheading {
  font-size: var(--font-size-body-sm);
  font-weight: 500;
  margin-bottom: .2rem;
}

/* Addons */

.cart-item__addon__header {
  display: flex;
  justify-content: space-between;
  /* color: var(--color-foreground-dimmed); */
}

.cart-item__addons,
.cart-item__information {
  background-color: var(--color-background-dimmed);
  padding: var(--spacing-04);
  margin-top: var(--spacing-03);
}

.cart-item__addon__price {
  font-weight: 500;
  color: var(--color-foreground);
}

.cart-item__addon__properties {
  padding-left: .8rem;
}

.cart-item__addon__property {
  color: var(--color-foreground-dimmed);
}

.cart-item__addon__property>* {
  display: inline;
}

/* Actions */

.cart-item__actions {
  padding-top: 0 !important;
}