.orderlist {
  padding: 0px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--white);
  border: 1px solid var(--primary);
}

.orderlist:last-child {
  margin-bottom: 0px;
}

.orderlist-head {
  padding: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.orderlist-head h4 {
  color: var(--primary);
}

.orderlist-details {
  padding: 25px;
  border-radius: 8px;
  background: var(--body);
  margin-bottom: 30px;
}

.orderlist-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.orderlist-details li:last-child {
  margin-bottom: 0px;
}

.orderlist-details li h5 {
  line-height: 26px;
  white-space: nowrap;
}

.orderlist-details li h5 small {
  font-size: 14px;
  font-weight: 700;
  margin-right: 3px;
}

.orderlist-details li p {
  width: 250px;
  text-align: right;
}

.orderlist-deliver {
  height: 215px;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--body);
}

.orderlist-deliver h5 {
  margin-bottom: 15px;
}

.orderlist-deliver p {
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .orderlist {
    padding: 0px 15px;
  }
  .orderlist-head {
    padding: 15px 0px;
  }
  .orderlist-body ul,
  .orderlist-deliver {
    padding: 15px;
  }
}
