/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.cart-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e6e6e6;
  padding-top: 1rem;
}

.cart-footer__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cart-footer__bottom-item {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #054040;
}
.cart-footer__bottom-item .bottom-item__total-discount {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 500;
}
.cart-footer__bottom-item--main .bottom-item__subtotal-title {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: -0.0125rem;
}
@media (min-width: 992px) {
  .cart-footer__bottom-item--main .bottom-item__subtotal-title {
    font-size: 1.25rem;
  }
}
.cart-footer__bottom-item--main .bottom-item__subtotal-price {
  font-size: 1.25rem;
  line-height: 140%;
  font-weight: 600;
  letter-spacing: -0.025rem;
}
@media (min-width: 992px) {
  .cart-footer__bottom-item--main .bottom-item__subtotal-price {
    font-size: 1.5rem;
  }
}
.cart-footer__bottom-item small {
  font-size: 0.75rem;
  line-height: 160%;
  font-weight: 500;
}
.cart-footer__bottom-item .order-discount {
  display: flex;
  justify-content: space-between;
}
.cart-footer__bottom-item .order-discount--title {
  font-size: 0.75rem;
  line-height: 140%;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  border-left: 2px solid #50fcce;
  padding-left: 0.5rem;
}
.cart-footer__bottom-item .order-discount--price {
  font-size: 0.75rem;
  line-height: 160%;
  font-weight: 500;
}

.cart-footer__bottom-item--discount-applications {
  display: block;
}

.cart-footer__bottom-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .cart-footer__bottom-actions {
    padding-bottom: 1rem;
  }
}
.cart-footer__bottom-actions form {
  width: 100%;
}

.cart-footer__upsell {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #949494;
}
.cart-footer__upsell--for-cart {
  order: 1;
}

.cart-footer__upsell-title {
  font-size: 1.75rem;
  line-height: 130%;
  font-weight: 600;
  letter-spacing: -0.075rem;
  margin-bottom: 0.5rem;
}

.cart-footer__upsell-product {
  padding: 1rem 0;
  border-bottom: 1px solid #949494;
}
.cart-footer__upsell-product .shop-the-look-product {
  gap: 1rem;
}
.cart-footer__upsell-product .shop-the-look-product__media {
  height: 7.5rem;
  width: 5.625rem;
}

.cart-footer__gift-wrap {
  margin-bottom: 1.5rem;
}
