a:hover {
  color: #81b29a !important;
}

.cart-items_images img {
  width: 90%;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  padding: 3px;
}

.carthead {
  display: flex;
  justify-content: space-between;
}

.heading {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.carthead .underlined-link {
  text-decoration: underline !important;
  color: #81b29a;
  font-size: 16px;
}

.cart-items_quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.cart-items_info-name a {
  color: #222;
  font-weight: 600;
  display: block;
}

.tvh-product-price {
  text-align: left;
  margin-bottom: 5px;
  margin-top: 8px;
}

.tvh-price_new {
  margin-left: 10px;
}

.cart-items_quantity .buttons_added {
  border: 1px solid #ddd;
}

.cart-items_quantity .buttons_added button {
  border-radius: 0;
  border: none;
  color: #222;
  padding: 0;
  margin: 0;
  width: 36px;
  background-color: #fff;
  height: 30px;
}

.cart-items_quantity .buttons_added input {
  width: 40px;
  border: none;
  background: #fff;
  text-align: center;
}

.input-qty {
  outline: none;
  border: none;
  text-align: center;
}

.cart-list_item-header,
.cart-list_item {
  border-bottom: 1px solid #ddd;
}

.cart__footer>div:only-child {
  margin-left: auto;
  margin-top: 30px;
}

.totals {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 20px;
  gap: 10px;
}

.totals__subtotal {
  font-size: 22px;
  font-weight: 600;
}

.totals * {
  line-height: 1;
}

.totals > * {
  margin: 0;
}

.totals__subtotal-value {
  font-size: 20px;
  color: #222;
  font-weight: 600;
}

.tax-note {
  text-align: right;
  display: block;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin-top: 15px;
}

.cart__blocks>*+* {
  margin-top: 1rem;
  text-align: right;
}

.cart__checkout-button {
  display: inline-flex;
  vertical-align: middle;
  line-height: 1.25;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #81b29a;
  color: #fff;
  transition: .3s ease;
  font-size: 16px;
  letter-spacing: .5px;
  text-transform: capitalize;
  padding: 0.5rem 0.75rem;
  width: 320px;
}

@media screen and (min-width: 768px) {
  .cart__footer {
    display: flex;
    justify-content: space-between;
  }
  
  .cart__footer {
    text-align: right;
  }
  
  .cart__footer>* {
    width: 35rem;
  }
}

@media (max-width: 991px) {
  .heading, .wblogos .heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .carthead .underlined-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .carthead .underlined-link {
    font-size: 14px;
  }
  
  .cart-items_info-name a {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  
  .tvh-price_default,
  .cart-items_info-title {
    font-size: 14px;
  }
  
  .tvh-price_new {
    font-size: 13px;
  }
  
  .cart-items_info-title {
    margin-bottom: 10px;
  }
  
  .cart-items_quantity {
    justify-content: space-between;
  }
  
  .col-3.col-md-2.col-lg-2 {
    padding-right: 0;
  }
  
  .tvh-product-price {
    margin-top: 3px;
    margin-bottom: 3px;
  }
  
  .cart-list_item-header .col-12.col-md-4.col-lg-3.text-center,
  .text-none {
    display: none;
  }
}


