.return_search {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #6b6b6b;
  text-decoration: none;
  gap: 4px;
  margin-top: 24px;
}
.map,
.list_order {
  margin-inline: 12px;
}

.order {
  padding: 12px;
  background-color: white;
  border-radius: 8px;
}
.order:nth-child(1) {
  margin-top: 24px;
}
.order:nth-child(n + 1) {
  margin-top: 12px;
}
.order .order_product_des {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 8px;
}
.order .order_name {
  font-size: 20px;
  line-height: 26px;
  color: #1077d0;
  font-weight: 600;
  text-decoration: none;
}
.order .order_name > span::first-letter {
  text-transform: uppercase;
}
.order .order_quantity {
  margin-top: 8px;
  color: #bea500;
  font-size: 14px;
}
.order .order_infor {
  display: flex;
  justify-content: space-between;
  color: #6b6b6b;
  font-size: 14px;
}
.order_infor .order_infor_des {
  display: flex;
  align-items: center;
  gap: 4px;
}
.no-orders {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 36px;
  text-align: center;
  gap: 16px;
  color: #b2b2b2;
}
/* Bản đồ cơ bản */
#myMap {
  border-radius: 12px;
  overflow: hidden;
  height: 226px;
}
.pagination {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.pagination > li {
  list-style: none;
  background-color: white;
}
.pagination > li > a {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  border: 1px solid #f7f7f7;
}
.pagination > li.active a {
  color: #1077d0;
  background-color: #ebf2f8;
}
.btn_open_filter_results_wrapper {
  padding: 16px;
  background-color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.btn_open_filter_results {
  box-sizing: border-box;
  max-width: 840px;
  padding: 12px;
  display: flex;
  justify-content: center;
  border: 1px solid #1077d0;
  border-radius: 6px;
  cursor: pointer;
  color: #1077d0;
  font-size: 16px;
  gap: 4px;
  font-weight: bold;
  background-color: #ebf2f8;
  margin-inline: auto;
}
#filter {
  margin-inline: auto;
  box-sizing: border-box;
  max-width: 840px;
  padding: 12px;
}
#filter input {
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  margin-top: 12px;
  box-sizing: border-box;
}
.filter_results_inputs,
.filter_results_btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.filter_results_btns .btn {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-radius: 6px;
  font-weight: bold;
  outline: none;
  border: none;
  cursor: pointer;
}
.filter_results_inputs .input{
  flex: 1;
}
.filter_results_btns .btn:nth-child(1) {
  display: flex;
  background-color: #ebf2f8;
  color: #1077d0;
  gap: 4px;
}
.filter_results_btns .btn:nth-child(2) {
  background-color: #ebebeb;
  color: #b2b2b2;
}
#autoComplete1,#autoComplete2{
  position: relative;
}
.autocomplete-suggestions {
  border: 1px solid #999;
  background: #fff;
  overflow: auto;
  bottom: calc(100% - 10px) !important;
}
.autocomplete-suggestion {
  padding: 3px 5px;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid #ddd;
}
.autocomplete-selected {
  background: #f0f0f0;
  cursor: pointer;
}
.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399ff;
}
.autocomplete-group {
  padding: 2px 5px;
}
.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}
#filter input:not(:placeholder-shown) ~ .filter_results_btns .btn:nth-child(2) {
  color: #ffffff;
  background-color: #1077d0;
}
input[name="filter_results"] + #btn_open_filter_results {
  display: flex;
}
input[name="filter_results"]:checked + #btn_open_filter_results {
  display: none;
}
input[name="filter_results"] ~ #filter {
  display: none;
}
input[name="filter_results"]:checked ~ #filter {
  display: block;
}
@media screen and (max-width: 600px) {
  .filter_results_inputs{
    flex-direction: column;
  }
  .return_search {
    display: none;
  }
  .order .order_product_des {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 8px;
  }
  .order .order_name {
    font-size: 14px;
    line-height: 22.4px;
    text-decoration: none;
  }
  .order .order_quantity {
    font-size: 12px;
    line-height: 19.2px;
  }
  .order .order_infor {
    flex-direction: column;
    font-size: 12px;
    line-height: 19.2px;
  }

  /* Bản đồ cơ bản */
  #myMap {
    height: 150px;
  }

  .btn_open_filter_results {
    background-color: white;
  }
}
