/*================================================
MF Cart Area CSS
=================================================*/
.mf-cart-table table {
  margin-bottom: 0;
}
.mf-cart-table table thead tr {
  border: none;
}
.mf-cart-table table thead tr th {
  vertical-align: middle;
  padding: 0 0 18px 0;
  white-space: nowrap;
  font-weight: bold;
  font-size: 22px;
  border: none;
  color: var(--optional-black-color);
  letter-spacing: 0.05em;
}
.mf-cart-table table tbody tr {
  border: none;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.mf-cart-table table tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 20px 0 20px 0;
  border: none;
}
.mf-cart-table table tbody tr td:last-child {
  text-align: end;
}
.mf-cart-table table tbody tr td.product-thumbnail {
  display: flex;
  align-items: center;
}
.mf-cart-table table tbody tr td.product-thumbnail .image a img {
  max-width: 90px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title {
  margin-left: 25px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title h3 a {
  color: var(--black-color);
}
.mf-cart-table table tbody tr td.product-thumbnail .title .price {
  margin-bottom: 10px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title .price .old-price {
  text-decoration-line: line-through;
  color: var(--paragraph-color);
}
.mf-cart-table table tbody tr td.product-thumbnail .title .price .new-price {
  font-weight: 600;
  color: var(--optional-black-color);
  margin-left: 5px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title .list {
  padding-left: 0;
  margin-bottom: 0;
}
.mf-cart-table table tbody tr td.product-thumbnail .title .list li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
  display: inline-block;
  margin-right: 15px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title .list li span {
  color: var(--optional-black-color);
  font-size: 14px;
}
.mf-cart-table table tbody tr td.product-thumbnail .title .list li:last-child {
  margin-right: 0;
}
.mf-cart-table table tbody tr td.product-quantity .input-counter {
  text-align: center;
  display: inline-block;
  position: relative;
  background: #F9F9F9;
  padding: 15px 25px;
}
.mf-cart-table table tbody tr td.product-quantity .input-counter span {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  cursor: pointer;
  position: relative;
  top: 1.5px;
}
.mf-cart-table table tbody tr td.product-quantity .input-counter input {
  color: var(--black-color);
  outline: 0;
  display: inline-block;
  border: none;
  background-color: transparent;
  text-align: center;
  width: 65px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  top: -2px;
}
.mf-cart-table table tbody tr td.product-quantity .input-counter input::-moz-placeholder {
  color: var(--black-color);
}
.mf-cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: var(--black-color);
}
.mf-cart-table table tbody tr td.product-subtotal .subtotal-amount {
  color: var(--optional-black-color);
  font-weight: bold;
  font-size: 17px;
}
.mf-cart-table table tbody tr td.remove a i {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background: #F5F5F5;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  color: var(--main-color);
  transition: var(--transition);
}
.mf-cart-table table tbody tr td.remove a i:hover {
  background-color: var(--optional-black-color);
  color: var(--white-color);
}
.mf-cart-table table tbody:not(:first-child) {
  border-top: unset;
}

.mf-cart-totals-box {
  background: #F9F9F9;
  padding: 35px 35px 45px;
  margin-left: 30px;
}
.mf-cart-totals-box .list {
  padding-left: 0;
  margin-bottom: 0;
}
.mf-cart-totals-box .list li {
  list-style-type: none;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.mf-cart-totals-box .list li span {
  font-weight: 600;
  font-size: 18px;
  color: var(--black-color);
}
.mf-cart-totals-box .list li .semi-bold {
  font-weight: 600;
  font-size: 20px;
}
.mf-cart-totals-box .list li .bold {
  font-weight: 700;
  font-size: 20px;
}
.mf-cart-totals-box .list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.mf-cart-totals-box .checkout-btn {
  margin-top: 30px;
  text-align: center;
}
.mf-cart-totals-box .checkout-btn .mf-default-btn {
  width: 100%;
}
.mf-cart-totals-box .guarantee {
  margin-top: 35px;
}
.mf-cart-totals-box .guarantee span {
  color: var(--paragraph-color);
  display: block;
  margin-bottom: 12px;
}
.mf-cart-totals-box .shopping-btn {
  margin-top: 35px;
  text-align: center;
}
.mf-cart-totals-box .shopping-btn .mf-default-btn {
  background-color: transparent;
  color: var(--black-color);
  border: 1px solid var(--optional-black-color);
  width: 100%;
}
.mf-cart-totals-box .shopping-btn .mf-default-btn:hover {
  background-color: var(--optional-black-color);
  color: var(--white-color);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .mf-cart-table table tbody tr td {
    padding: 20px 50px 20px 0px;
  }
  .mf-cart-totals-box {
    padding: 20px;
    margin-left: 0;
    margin-top: 30px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mf-cart-table table tbody tr td {
    padding: 20px 50px 20px 0px;
  }
  .mf-cart-totals-box {
    padding: 20px;
    margin-left: 0;
    margin-top: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mf-cart-totals-box {
    margin-left: 0;
    margin-top: 30px;
  }
}/*# sourceMappingURL=cart.css.map */