.Order_Details_Card {
    background: #ffe9ea;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.Order_Details_Card .top_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.Order_Details_Card .top_section .order_id {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 0px;
}

.Order_Details_Card .top_section .date_text_div {}

.Order_Details_Card .top_section .date_text_div .date_text {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0px;
}

.Order_Details_Card .middle_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.Order_Details_Card .black_text {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
}

.Order_Details_Card .middle_section .track_order_text {
    color: #000;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.Order_Details_Card .bottom_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.Order_Details_Card .bottom_section .black_text .subtext {
  color: #a30404;
  font-size: 12px;
  margin-bottom: 0px;
  font-weight: 700;
  margin-left: 5px;
}

.Order_Details_Card .bottom_section .view_details_text {
  color: #000;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 991px) {

  .Order_Details_Card .top_section .date_text_div .date_text {
    font-size: 13px;
    font-weight: 600;
    padding-left: 10px;
  }

  .Order_Details_Card .top_section .order_id,
  .Order_Details_Card .black_text {
    font-size: 13px;
    font-weight: 600;
  }

  .Order_Details_Card .middle_section .track_order_text,
  .Order_Details_Card .bottom_section .view_details_text {
    font-size: 13px;
  }
}