.Ordered {
  max-height: 580px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.Ordered .no_data_main_div {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.Ordered .no_data_main_div .no_data_text {
  color: #707070;
  font-size: 12px;
  margin-bottom: 0px;
  font-weight: 700;
  text-decoration: underline;
  text-align: center;
  position: relative;
  width: fit-content;
}

.Ordered .no_data_main_div .no_data_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -136px;
  width: 120px;
  background-color: #707070;
  height: 1px;
}

.Ordered .no_data_main_div .no_data_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -136px;
  width: 120px;
  background-color: #707070;
  height: 1px;
}

@media (min-width: 0px) and (max-width: 575px) {
  .Ordered .no_data_main_div .no_data_text::after {
    right: -55px;
    width: 43px;
  }

  .Ordered .no_data_main_div .no_data_text::before {
    left: -55px;
    width: 43px;
  }
}
