<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 287:0 Unexpected "}"

**/
body.modal-addons-active {
  overflow: hidden;
}

.modal-addons {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  overflow-y: auto;
  display: none;

  --color-text: #312621;
  --color-primary: #de1c2b;
}

.modal-addons.show {
  display: block;
}

.modal-addons__wrapper {
  padding: 2rem 0 10rem;
}
@media only screen and (min-width: 768px) {
  .modal-addons__wrapper {
    padding: 40px 0 80px;
  }
}

.modal-addons__close {
  position: absolute;
  top: 20px;
  right: 20px;

  background: none;
  border: 1px solid #000;
  color: #000;
  display: block;
  height: 25px;
  width: 25px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.5;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .modal-addons__close {
    height: 45px;
    width: 45px;
    font-size: 2.4rem;
  }
}

.modal-addons__close:hover,
.modal-addons__close:focus {
  opacity: 1;
}

.modal-addons__header {
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .modal-addons__body-wrapper {
    display: flex;
    gap: 30px;
  }
}

.modal-addons__heading {
  font-size: 2rem;
  font-style: normal;
  margin: 0 40px 8px 0;
}
@media only screen and (min-width: 768px) {
  .modal-addons__heading {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1024px) {
  .modal-addons__heading {
    font-size: 3.6rem;
  }
}

.modal-addons__body-text {
}

.modal-addons__text-link {
  display: inline-block;
  font-size: 2rem;
  font-family: glance-bold;
  text-transform: uppercase;
  color: var(--color-primary);
}

.modal-addons__product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .modal-addons__product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 60%;
  }
}
@media only screen and (min-width: 1024px) {
  .modal-addons__product-list {
    width: 70%;
  }
}

.modal-addons__product-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(50% - 15px);
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .modal-addons__product-list__item {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (min-width: 1200px) {
  .modal-addons__product-list__item {
    width: calc(25% - 30px);
  }
}

.modal-addons__product-list__item--disabled {
  pointer-events: none;
  opacity: 0.5;
}

.modal-addons__product-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.modal-addons__product-image-toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
}

.modal-addons__product-image-thumbnail {
  display: block;
  width: 100%;
  height: auto;
}

.modal-addons__product-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-addons__product-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.modal-addons__product-price {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--color-text);
}

.modal-addons__product-qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-addons__product-qty-input {
  background-color: #fff;
  border: 1px solid #c1bebc;
  border-radius: 4px;
  margin: 0 5px;
  padding: 0;
  height: 38px;
  width: 45px;
  text-align: center;
}
@media only screen and (min-width: 425px) {
  .modal-addons__product-qty-input {
    width: 60px
  }
}

.modal-addons__product-qty-input:focus,
.modal-addons__product-qty-input:hover {
  border-color: var(--color-primary);
}

.modal-addons__product-qty-button {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: visible;
  padding: 7.5px 15px;
  text-decoration: none;
  width: 48px;
  transition: all ease-in-out 0.2s;
}

.modal-addons__product-qty-button.disabled,
.modal-addons__product-qty-button[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.modal-addons__summary {
  font-size: 1.4rem;
  color: var(--color-text);
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .modal-addons__summary {
    width: 40%;
    border-top: 0;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .modal-addons__summary {
    width: 30%;
  }
}


.modal-addons__summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-addons__summary-total,
.modal-addons__summary-list__item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.modal-addons__summary-total p,
.modal-addons__summary-list__item p {
  margin-top: 0;
}

.modal-addons__summary-total {
  border-top: 1px solid var(--color-text);
}

.modal-addons__sold-out-text {
  padding: 4.5px 0px;
}
}</pre></body></html>