.wd-checkout-prod {
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
}
.wd-checkout-prod-img {
  margin-inline-end: 10px;
}
.wd-checkout-prod-img img {
  min-width: 65px;
  max-width: 65px;
  border-radius: calc(var(--wd-brd-radius) / 1.5);
}
.wd-checkout-prod-cont {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  text-align: start;
}
.wd-checkout-prod-cont .quantity {
  order: 1;
}
.wd-checkout-prod-cont
  .quantity
  :is(input[type='button'], input[type='number'], input[type='text']) {
  height: 32px;
}
.wd-checkout-prod-title {
  display: flex;
  flex-wrap: wrap;
  margin-inline-end: 10px;
}
.wd-checkout-prod-title > .cart-product-label-link {
  color: var(--wd-entities-title-color);
}
.wd-checkout-prod-title > .cart-product-label-link:hover {
  color: var(--wd-entities-title-color-hover);
}
.wd-checkout-prod-title > :is(.cart-product-label-link, .cart-product-label) {
  margin-inline-end: 5px;
}
.wd-checkout-prod-title
  > *:not(
    :is(.cart-product-label-link, .cart-product-label, .product-quantity)
  ) {
  margin-top: 10px;
  width: 100%;
  max-width: 100% !important;
}
.wd-checkout-prod-total {
  text-align: end;
}
.wd-checkout-remove-btn-wrapp {
  margin-inline: -5px 5px;
  width: 25px;
  flex-shrink: 0;
}
.wd-checkout-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 25px;
  color: var(--color-gray-800);
  font-weight: 600;
  font-size: 10px;
}
.wd-checkout-remove-btn:hover {
  color: var(--color-gray-500);
}
.wd-checkout-remove-btn:after {
  content: '\f112';
  font-family: 'dctech-font';
}
@media (max-width: 576px) {
  .wd-manage-on thead .product-total {
    display: none;
  }
  .wd-checkout-prod-cont {
    display: block;
  }
  .wd-checkout-prod-title {
    margin-inline-end: 0;
    margin-bottom: 10px;
  }
  .wd-checkout-prod-total {
    text-align: start;
  }
}
