form.cartForm .row {
  border-top: 1px #d9d9d9 solid;
  padding: 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
form.cartForm .row span {
  font-weight: 700;
  padding: 0 0 10px 0;
  display: block;
}
form.cartForm .row input {
  height: 45px;
  outline: none;
  padding: 0px 20px;
  line-height: 45px;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 22px;
  width: 100%;
}
form.cartForm .row:first-child {
  border-top: none;
}

form.cartForm .row button {
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
  width: 160px;
  text-transform: uppercase;
  border: none;
  background: #f62626;
  color: #fff;
  font-weight: bold;
  height: 45px;
  border-radius: 22px;
}

form.cartForm {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.listOrders {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 0;
}
.listOrders ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 0;
}
.listOrders li {
  padding: 10px;
  background: #fff;
  border: 1px #d9d9d9 solid;
  margin: 10px 0;
}

.listOrders ul li {
  border: none;
  border-bottom: 1px #d9d9d9 solid;
  margin: 0;
}
.listOrders ul li:last-child {
  border: none;
}

.listOrders .orderCaption {
  display: flex;
  justify-content: space-between;
}
.listOrders .orderStatus {
  padding: 5px 7px;
  background: #d9d9d9;
  border-radius: 4px;
  display: flex;


  margin: 0 auto;
  font-size: 13px;
}

.order-pay-link {
  display: flex;
  width: 300px;
  margin: auto;
  color: #0169d3;
  font-weight: 800;
}

.listOrders .orderStatus.green {
  background: #9dc78c;
  text-decoration: underline;
  cursor: pointer;
}
.listOrders .orderStatus.orange {
  background: #fcb777;
}
.listOrders .orderStatus.grey {
  background: #d9d9d9;
}

.listOrders .listOrdersProds {
  width: 100%;
}
.listOrders .listOrdersProds li {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.listOrders .listOrdersProds li button {
  transition: 0.3s;
  cursor: pointer;
  width: 160px;
  text-transform: uppercase;
  border: none;
  background: #f62626;
  color: #fff;
  font-weight: bold;
  height: 45px;
  border-radius: 22px;
}

@media screen and (max-width: 768px) {
  .order-pay-link {
    width: 100%;
  }
}


button.btn2cart{border:none; background:#face2f;  height:32px; padding:0 10px;  border-radius: 5px; color:#333; }
#cartModalContent{position: fixed; left: 50%; top: 50%; width: 0px; opacity:0; height: 0px; z-index:9999; overflow:hidden; transition:opacity 0.3s ; display: flex;}
#cartModalContent.show{position: fixed; left: 0;opacity:1; top: 0; width: 100%; height: 100%; z-index:9999; display: flex;}
#cartBlacker{position: absolute; z-index:10; background:rgba(0,0,0,0.6); left: 0; top: 0; width: 100%; height: 100%;}
#cartModalContent .cart2order{width:90%;  padding:30px; font-size:18px; text-align: center;  box-shadow:0 0 20px rgba(0,0,0,0.7); position: relative;  z-index:20;  display: flex; flex-direction: column; max-width: 500px; margin:auto; display: flex; background:#fff;  border-radius: 20px;}
