﻿.tem_4cart {
  max-width: 1500px;
  margin: 50px auto;
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.cart_top {
  width: 100%;
  line-height: 100px;
  vertical-align: middle;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}

.is_sel {
  opacity: 1;
  color: #fff;
  border-bottom: 2px solid var(--primary-color-te6);
}

.not_sel {
  opacity: .8;
}

.left_cart {
  width: 50%;
}

.left_cart table {
  width: 100%;
}

.right_cart {
  width: 20%;
  padding: 0px 20px;
}

thead {
  color: #1f1e1e;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

tbody tr {
  border-bottom: 1px solid #eee;
}

tbody tr td {
  padding: 20px 10px 10px;
}

.title {
  color: #000;
  opacity: .8;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;

}

.price {
  color: var(--primary-color-te6);
  font-size: 14px;
  font-family: var(--bs-body-font-family);
}

.remove {
  font-size: 12px;
  color: #777;
  text-decoration: underline;
  cursor: pointer;
  margin: 0px;
}

.remove:hover {
  text-decoration: none;

}

.total_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 5px;
  font-size: 14px;
}

.total_price span {
  display: inline-block;
  color: #777;

}

@media screen and (max-width:880px) {

  .right_cart,
  .left_cart {
      width: 100%;
      padding: 20px;
  }

  .title {
      display: -webkit-box;
      -webkit-line-clamp: 4;

      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;

  }
}

.btn_search {
  display: inline-block;
  background-color: var(--primary-color-te6);
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  cursor: pointer;
}
.checkout_btn:hover{
 color: #fff;
 border-radius: 5px;
 background-color: #3c3b3b;
}
.checkout_btn{
 padding: 10px 0px;
 text-align: center;font-size: 14px;color: #fff;cursor: pointer;background-color: #121212;
}