.clear_cart_link {
  padding-bottom: 2px;
  border-bottom: 1px dotted #d2d2d2;
  color: #6f6f6f;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  white-space: nowrap;
  align-self: flex-end;
}
.clear_cart_link:hover {
  text-decoration: none;
  border-color: transparent;
}
.cart_page_items_table {
  margin-top: 32px;
  border-collapse: collapse;
}
.cart_page_items_table tr {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  min-height: 80px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #f3f3f3;
}
.cart_page_items_table tr:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
tr.cart_page_items_table_header {
  display: none;
}
.cart_page_item_image,
.cart_page_item_name,
.cart_page_item_count,
.cart_page_item_price,
.cart_page_item_del {
  display: block;
}
.cart_page_item_image {
  width: 15%;
  min-width: 120px;
  padding-right: 10px;
  order: 1;
}
.cart_page_item_image img {
  max-width: 100%;
}
.cart_page_item_name {
  width: 65%;
  margin-left: 0;
  vertical-align: top;
  order: 2;
}
.cart_page_item_name h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
.cart_page_item_name a {
  padding-bottom: 2px;
  color: #212121;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e5e5e5;
}
.cart_page_item_name a:hover {
  text-decoration: none;
  border-bottom-color: transparent;
}
.cart_page_item_options {
  font-size: 13px;
  color: #9c9c9c;
}
.cart_page_item_count{
  order: 4;
}
.cart_page_item_count,
.cart_page_item_del {
  width: 50%;
  margin-top: 15px;
}
.cart_page_item_count .price {
  max-width: 120px;
}
.cart_page_item_del {
  text-align: right;
  order: 7;
  float: right;
}
.cart_page_item_del button {
  display: inline-block;
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid #e3e3e3;
  border-radius: 100%;
  text-align: center;
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 600;
  background-color: #ffffff;
}
.cart_page_item_del button:hover {
  background: #76b624;
  border-color: #76b624;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.cart_page_item_price {
  order: 5;
  width: 45%;
  /*max-width: 120px;*/
  margin-top: 15px;
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  float: right;
}
.product_quantity{
  margin-top: 0;
}
.cart_page_item_price del{
  font-weight: normal;
  color: #8b8b8b;
}
.cart_page_item_price_total{
  order: 6;
  width: 45%;
  margin-top: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  float: left;
}
@media screen and (min-width: 480px) {
  .cart_page_header {
    display: flex;
  }
  .cart_page_item_name {
    width: 60%;
  }
}

@media screen and (min-width: 720px) {
  .cart_page_item_name {
    width: 70%;
  }
}

@media screen and (min-width: 768px) {
  .cart_page_items_table tr {
    display: table-row;
  }
  .cart_page_items_table th {
    color: #9c9c9c;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 16px;
  }
  .cart_page_item_header_name {
    width: 50%;
  }
  .cart_page_item_header_count,
  .cart_page_item_header_price {
    width: 20%;
  }
  .cart_page_item_header_price {
    text-align: center;
    padding-left: 0;
  }
  .cart_page_item_header_count {
    text-align: right;
  }
  .cart_page_item_header_count span {
    display: inline-block;
    width: 120px !important;
    padding-right: 28px;
  }
  .cart_page_item_header_del {
    width: 10%;
  }
  .cart_page_items_table td {
    display: table-cell;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  /* .cart_page_items_table th,
  .cart_page_items_table td {
    outline: 1px solid #333;
  } */
  .cart_page_item_image {
    width: 15%;
  }
  .cart_page_item_name {
    width: 30%;
  }
  .cart_page_item_count,
  .cart_page_item_price {
    width: 20%;
    vertical-align: middle;
  }
  .cart_page_item_price {
    max-width: auto;
    font-size: 16px;
    float: none;
    text-align: center;
  }
  .cart_page_item_price_total {
    float: none;
    text-align: center;
  }
  .cart_page_item_count .price {
    margin-left: auto;
  }
  .cart_page_item_del {
    width: 10%;
    vertical-align: middle;
    float: none;
  }
}
