.order_details_titles, .order_lists {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.order_history_block {
  margin-top: 25px;
  margin-bottom: 50px;
}

.order_details_titles {
  display: flex;
  background: #333333;
  padding: 18px 20px;
  justify-content: space-between;
  margin: 0;
}
.order_details_titles .order_num {
  flex: 0 0 20%;
  max-width: 20%;
}
.order_details_titles .order_item {
  flex: 0 0 10%;
  max-width: 10%;
}
.order_details_titles .order_total {
  flex: 0 0 10%;
  max-width: 10%;
}
.order_details_titles .order_status {
  flex: 0 0 20%;
  max-width: 20%;
}
.order_details_titles .order_date {
  flex: 0 0 20%;
  max-width: 20%;
}
.order_details_titles li {
  line-height: 1.2em;
  font-size: 160%;
  color: #ffffff;
  font-family: "bold";
}

.order_drop_row:nth-child(2n) ul {
  background: #f2f2f2;
}
.order_drop_row ul {
  display: flex;
  padding: 18px 20px;
  justify-content: space-between;
}
.order_drop_row ul .order_num {
  flex: 0 0 20%;
  max-width: 20%;
}
.order_drop_row ul .order_item {
  flex: 0 0 10%;
  max-width: 10%;
}
.order_drop_row ul .order_total {
  flex: 0 0 10%;
  max-width: 10%;
}
.order_drop_row ul .order_status {
  flex: 0 0 10%;
  max-width: 10%;
}
.order_drop_row ul .order_date {
  flex: 0 0 20%;
  max-width: 20%;
}
.order_drop_row ul .order_actions {
  flex: 0 0 5%;
  max-width: 5%;
}
.order_drop_row ul li {
  display: inline-block;
  flex: 1;
  line-height: 1.2em;
  font-size: 160%;
  color: #000000;
  font-family: "regular";
}
.order_drop_row ul li:last-child {
  font-family: "regular" !important;
  text-align: right;
  text-decoration: underline;
  font-weight: 100;
  color: #333333;
}
.order_drop_row ul li a:before {
  content: attr(data-title_closed);
  display: block;
}
.order_drop_row ul .shipped_status {
  color: #34601C;
}
.order_drop_row ul .canceled_status {
  color: #DC1616;
}
.order_drop_row ul .pending_status {
  color: #D9B410;
}

.opened ul li:not(last-child) {
  font-family: "bold" !important;
}
.opened ul li:not(last-child) a:before {
  content: attr(data-title_opened);
}

.drop_block {
  display: none;
}

.order_block {
  display: flex;
  padding: 27px 20px;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
}
.order_block div, .order_block a {
  font-size: 160%;
  line-height: 1.2em;
  color: #000000;
}
.order_block .order_title {
  flex: 0 0 50%;
  max-width: 50%;
}
.order_block .order_count {
  flex: 0 0 15%;
  max-width: 15%;
}
.order_block .order_price {
  flex: 0 0 35%;
  max-width: 35%;
}

.order_info_block {
  padding: 18px 20px;
  display: flex;
  color: #333333;
  justify-content: space-between;
}
.order_info_block .order_shipping_title {
  font-family: "bold";
  max-width: 50%;
  flex: 0 0 50%;
  font-size: 160%;
  line-height: 1.2em;
}
.order_info_block .order_total_price {
  font-family: "bold";
  max-width: 35%;
  flex: 0 0 35%;
  font-size: 160%;
  line-height: 1.2em;
}
.order_info_block .order_total_title {
  font-family: "bold";
  max-width: 15%;
  flex: 0 0 15%;
  font-size: 160%;
  line-height: 1.2em;
  text-align: right;
}

.order_shipping_address {
  max-width: 220px;
  padding-left: 20px;
  font-size: 160%;
  line-height: 1.5em;
}

.view_drop:hover {
  cursor: pointer;
}

@media (max-width: 767px) {
  .order_block .order_price {
    text-align: right;
  }

  .order_details_titles {
    display: none;
  }

  .order_block div, .order_block a {
    font-size: 120%;
  }

  .order_info_block .order_shipping_title {
    font-size: 140%;
  }
  .order_info_block .order_total_price {
    font-size: 140%;
  }
  .order_info_block .order_total_title {
    font-size: 140%;
  }

  .order_drop_row ul {
    flex-direction: column;
  }
  .order_drop_row ul li {
    font-size: 140%;
    width: 100%;
    max-width: 100% !important;
    display: flex;
    text-align: center;
    margin: 0;
    justify-content: space-between;
    width: 100% !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1.5em;
  }
  .order_drop_row ul li:before {
    display: block;
    content: attr(data-title);
    color: #000000;
    text-decoration: none;
  }
  .order_drop_row ul li:last-child:before {
    content: "";
  }

  .order_info_block .order_total_price {
    text-align: right;
  }

  .order_shipping_address {
    font-size: 140%;
    margin-bottom: 20px;
  }
}
.web .view_drop:hover {
  color: #333333;
}

.touch .view_drop {
  -o-transition: all;
  -ms-transition: all;
  -moz-transition: all;
  -webkit-transition: all;
  transition: all;
}
.touch .view_drop:active {
  color: #333333;
  opacity: 0.7;
}

.web .view_drop {
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/*# sourceMappingURL=orderHistory.css.map */
