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%;
  }
}
