.tt-cart-modal {
  display: none;
}

.tt-cart-modal.tt-cart-modal--active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-cart-modal__wrapper {
  background-color: white;
  padding: 10px 20px 20px;
  position: relative;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  max-height: 100vh;
  overflow-y: auto;
}

.tt-cart-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  appearance: none;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: #555555;
  font-family: "Arial", "Helvetica", sans-serif !important;
  font-weight: 400;
  font-size: 36px !important;
}

.tt-cart-modal__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
}

.tt-cart-modal-product {
  display: flex;
  width: clamp(300px, 800px, 100vw);
  max-width: 100%;
  align-items: center;
}

.tt-cart-modal-product__img-wrapper {
  flex-basis: 320px;
  flex-shrink: 0;
  flex-grow: 1;
  margin-right: 10px;
}
.tt-cart-modal-product__img-wrapper img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 70vh;
  display: block;
  object-fit: contain;
  object-position: center;
}

.tt-cart-modal-product__details {
  padding: 10px;
}

.tt-cart-modal-product__title {
  font-size: 20px;
  color: #0370AF;
  margin-bottom: 9px;
}

.tt-cart-modal-product__product-sheet {
  margin-top: 1em;
  text-align: right;
}
.tt-cart-modal-product__product-sheet, .tt-cart-modal-product__product-sheet a {
  color: black;
  font-size: 13px;
  font-weight: bold;
}

.tt-cart-modal-product__price {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

.tt-cart-modal__actions {
  display: flex;
  margin-top: 40px;
}
.tt-cart-modal__actions > * {
  width: auto;
  flex-grow: 1;
  text-align: center;
}
.tt-cart-modal__actions .button {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}
.tt-cart-modal__actions .button.tt-cart-modal__to-checkout {
  background-color: #f88e2a;
}
.tt-cart-modal__actions .button.tt-cart-modal__to-checkout:hover {
  background-color: rgb(249.6227272727, 168.1954545455, 91.3772727273);
}
.tt-cart-modal__actions .button + .button {
  margin-left: 10px;
}
@supports (gap: 10px) {
  .tt-cart-modal__actions {
    gap: 10px;
  }
  .tt-cart-modal__actions .button + .button {
    margin-left: 0;
  }
}

.tt-cart-modal.tt-cart-modal--upsell .button.tt-cart-modal__continue-shopping, .tt-cart-modal.tt-cart-modal--upsell .button.tt-cart-modal__continue-shopping:hover {
  background: none;
  border: none;
  color: #0370AF;
  text-decoration: underline;
  box-shadow: none !important;
}

@media (max-width: 800px) {
  .tt-cart-modal__wrapper {
    padding: 10px 12px 12px;
  }
  .tt-cart-modal__title {
    font-size: 1.5rem;
  }
  .tt-cart-modal-product {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .tt-cart-modal-product__img-wrapper {
    flex-basis: 100% !important;
    margin-right: 0;
    flex-shrink: 1;
    flex-grow: 0;
  }
  .tt-cart-modal-product__img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 260px;
    max-width: none;
  }
  .tt-cart-modal-product__details {
    flex-basis: 100%;
    margin-top: 1rem;
  }
  .tt-cart-modal__actions {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media (min-width: 800px) {
  .tt-cart-modal--upsell .tt-cart-modal__actions {
    justify-content: space-between;
    gap: 1rem;
  }
  .tt-cart-modal--upsell .tt-cart-modal__actions > * {
    flex-grow: 0;
  }
  .tt-cart-modal--upsell .tt-cart-modal__actions .button.tt-cart-modal__continue-shopping {
    padding-left: 0;
    padding-right: 0;
  }
}

/*# sourceMappingURL=upsell-popup.css.map */
