/*================================================
Em Wishlist Area CSS
=================================================*/
.em-wishlist-area .container {
  max-width: 1100px;
  margin: auto;
}

.wishlist-table table {
  margin-bottom: 0;
}
.wishlist-table table thead tr {
  border: none;
}
.wishlist-table table thead tr th {
  vertical-align: middle;
  padding: 0 25px 25px 25px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  border: none;
  color: #7B7B7B;
  letter-spacing: 0.05em;
}
.wishlist-table table tbody tr {
  border: none;
  background: #FBFBFB;
  margin-bottom: 25px;
  border-bottom: 1px solid #F1F1F1;
}
.wishlist-table table tbody tr.border-none {
  border-bottom: none;
}
.wishlist-table table tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 25px;
  border: none;
}
.wishlist-table table tbody tr td.product-thumbnail {
  display: flex;
  align-items: center;
}
.wishlist-table table tbody tr td.product-thumbnail .image a img {
  width: 100px;
  border-radius: 5px;
}
.wishlist-table table tbody tr td.product-thumbnail .title {
  margin-left: 20px;
}
.wishlist-table table tbody tr td.product-thumbnail .title h3 {
  font-weight: 500;
  font-size: 14px;
}
.wishlist-table table tbody tr td.product-thumbnail .title h3 a {
  color: #161414;
}
.wishlist-table table tbody tr td.product-price .unit-amount {
  color: var(--black-color);
  font-weight: 500;
  font-size: 12px;
}
.wishlist-table table tbody tr td.product-subtotal .subtotal-amount {
  color: var(--black-color);
  font-weight: bold;
  font-size: 12px;
}
.wishlist-table table tbody tr td.add-to-cart a {
  font-weight: 600;
  font-size: 14px;
  color: var(--main-color);
}
.wishlist-table table tbody:not(:first-child) {
  border-top: unset;
}

.em-wishlist-shopping-content {
  margin-top: 40px;
}
.em-wishlist-shopping-content a {
  position: relative;
  font-weight: 500;
  color: #161414;
  padding-right: 25px;
}
.em-wishlist-shopping-content a i {
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 2px;
  line-height: 1;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .wishlist-table table tbody tr td.product-thumbnail .image a img {
    max-width: 65px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wishlist-table table tbody tr td.product-thumbnail .image a img {
    max-width: 65px;
  }
}/*# sourceMappingURL=wishlist.css.map */