.cart-detail-table .items {
  width: 25%;
}

.cart-detail-table .order-number {
  width: 11%;
}

.custmoreOrder {
  padding: 40px 0;
  position: relative;
}

.custmoreWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 0;
}

.custmorInner {
  flex: 0 0 auto;
  width: calc(33.3% - 30px);
  border: 1px solid #eee;
  padding: 14px 15px;
  max-height: 100%;
  border-radius: 8px;
}

.orderSubHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 10px;
}

.orderList .orderListItem {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0;
  justify-content: space-between;
}

.orderHeading {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.orderList {
  margin: 0;
  padding: 0;
}

.orderSubHeading .orderBtn {
  border: 1px solid #eee;
  padding: 6px 15px;
  border-radius: 8px;
  color: #667;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.orderSubHeading .orderBtn:hover {
  background-color: rgb(var(--color-button-background));
  color: #fff;
}

.listSubHeading {
  font-size: 18px;
  font-weight: 500;
  color: #101;
  width: 50%;
  letter-spacing: 0.3px;
}

.orderListItem .orderListContent {
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

.descriptionOrder {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* ======================================================== >> Responsive << ======================================================== */
@media (max-width: 1199px) {
  .orderListItem .orderListContent {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .orderHeading {
    font-size: 17px;
  }

  .custmorInner {
    width: calc(50% - 27px);
  }

  .custmoreWrapper .custmorInner:last-child {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .custmorInner {
    width: 100%;
    margin: 12px 0;
  }
  .custmoreWrapper {
    gap: 0;
  }
}
