<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 188:25 Expected "}" to go with "{"

**/
.upsell-products {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.upsell-products .br-img {
  border-radius: min(12px, var(--br-img));
}

.no-js .upsell-products quantity-input {
  display: none;
}

.upsell-products quantity-input.quantity {
  font-size: 14px;
  margin-right: 16px;
}

.upsell-products .select {
  position: relative;
}

.upsell-products .select select {
  width: 100%;
  padding: 4px 8px 4px 30px;
  cursor: pointer;
}

.upsell-products .select svg {
  position: absolute;
  left: 0px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.upsell-products .card-body {
  padding: 0 min(16px, var(--card-body-padding));
}

.upsell-products .product-form__buttons .product-form__submit {
  --button-padding: 8px 16px;
  min-height: auto;
  padding: var(--button-padding) !important;
  margin-right: 2px; /* Add right margin to the button */
}

.upsell-products .card--product {
  --thumbnail-width: 72px;
  grid-template-columns: var(--thumbnail-width) 1fr auto;
  align-items: self-start;
}

.upsell-products .card-actions {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .upsell-products quantity-input.quantity {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1023px) {
  .upsell-products quantity-input.small {
    --width: 60px;
  }
  .upsell-products .quantity__button {
    display: none;
  }
}

.upsell-card {
  background-color: #e3e3e1;
  display: flex;
  align-items: center;
  padding: 0px;
  overflow: hidden;
  margin-top: 0; /* Added to set top margin to zero */
}

.upsell-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.upsell-image-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.upsell-image {
  width: 100px; /* Adjust this value as needed */
  height: auto;
  object-fit: contain; /* Ensure the image is not cropped */
}

.upsell-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 100%;
}

.upsell-title,
.upsell-variant,
.upsell-pricing {
  line-height: 1;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
}

.discounted-price {
  color: red;
  font-size: 0.9em;
}

.upsell-action {
  padding-left: 10px;
   margin-top: 0; /* Ensures the top margin is zero */
    /* Add any other styling as needed */
}

.upsell-button {
  padding: 6px 12px;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 0.8em;
  cursor: pointer;
   margin-top: 0; /* Ensures the top margin is zero */
    /* Add any other styling as needed */
}

    .checkbox-wrapper {
        display: flex;
        align-items: center;
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .product-form__checkbox {
        margin-right: 10px;
        width: 20px;
        height: 20px;
        appearance: none;
        border: 1px solid #ccc;
        border-radius: 3px;
        position: relative;
    }
    .product-form__checkbox:checked::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 6px;
        width: 6px;
        height: 12px;
        border: solid #000;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    .product-form__checkbox-label {
        display: flex;
        align-items: center;
    }
    .original-price, .discounted-price {
        margin-left: 5px;</pre></body></html>