.return_search {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #6b6b6b;
  text-decoration: none;
  gap: 4px;
  margin-top: 24px;
}
.list-orders {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.order {
  padding: 12px;
  background-color: white;
  border-radius: 8px;
}
.order .name_order {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #1077d0;
  margin-bottom: 20px;
}
.order .title_order {
  display: flex;
  align-items: center;
  color: #b2b2b2;
  font-size: 14px;
  list-style: 22.4px;
  font-weight: 400;
}
.order .title_order > span {
  margin-left: 4px;
}
.order .location,
.order .time {
  display: flex;
  margin-bottom: 20px;
  gap: 12px;
}
.order .location > div,
.order .time > div {
  flex: 1;
}
.order .infor {
  margin-top: 4px;
  margin-left: 28px;
  font-size: 14px;
  line-height: 22.4px;
  color: #303030;
}
.order .infor.recieve_time,
.order .infor.price {
  font-weight: 600;
  color: #151515;
}
.order .btns {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}
.order .btns > button,
.order .btns > .btn {
  flex: 1;
  padding-block: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 22.4px;
  outline: none;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  text-decoration: none;
}
.order .btns > a {
  background-color: #ebf2f8;
  color: #1077d0;
  cursor: pointer;
}
.order .btns > label[for="recieve"] {
  color: white;
  background-color: #1077d0;
  cursor: pointer;
}
.list-orders .no-orders {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #b2b2b2;
  text-align: center;
}
.list-orders .no-orders img {
  margin-top: 36px;
  margin-bottom: 16px;
}
input[name="recieve"][id="recieve"] + div.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(165, 165, 165, 0.5);
  z-index: 10;
  display: none;
}
input[name="recieve"][id="recieve"]:checked + div.modal {
  display: block;
}
input[name="recieve"][id="recieve"] + div.modal .container {
  position: absolute;
  max-width: 840px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
input[name="recieve"][id="recieve"] + div.modal .container .content {
  background-color: white;
  border-radius: 8px;
  text-align: center;
  border-radius: 8px;
}
.modal .content-infor {
  background-color: #fff9ec;
  padding: 12px;
  border-radius: 8px;
}
.modal .content .order-receive {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-align: left;
  padding-top: 12px;
  padding-bottom: 24px;
}
.modal .content-infor .title_name {
  font-size: 16px;
  font-weight: 600;
  line-height: 22.4px;
  color: #1077d0;
  text-align: left;
  margin-bottom: 12px;
}
.modal .content-infor .infor {
  text-align: left;
}
.modal .content #received {
  background-color: #1077d0;
  color: white;
}
.modal .content #close {
  background-color: #ebf2f8;
  color: #1077d0;
}
.map {
  padding-inline: 0px;
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .return_search {
    display: none;
  }
  .list-orders {
    gap: 12px;
  }
  .location.input_text {
    margin-inline: 12px;
  }
  .order {
    margin-inline: 12px;
  }
  .order .name_order {
    font-size: 14px;
    line-height: 22.4px;
    margin-bottom: 12px;
  }
  .order .title_order {
    font-size: 12px;
    line-height: 19.2px;
  }
  .order .infor {
    font-size: 12px;
    line-height: 19.2px;
    margin-left: 20px;
  }
  .order img {
    width: 16px;
    height: 16px;
  }
  .order .location,
  .order .time {
    margin-bottom: 12px;
  }
  .order .location {
    flex-direction: column;
  }
  .order .btns > a,
  .order .btns > button {
    padding-block: 9px;
  }
  .modal .content-infor .title_name {
    font-size: 14px;
  }
  .modal .content .btns {
    flex-direction: column;
  }
  .map {
    padding-inline: 12px;
  }
}
