@media print {
  @page {
    size: 210mm 297mm;
    margin: 5mm;
  }
  body .order_details {
    margin: auto;
  }
}
.order_details {
  display: flex;
  flex-direction: column;
}
.order_details .order_details_header {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  grid-gap: 0.5rem;
  border: 1px solid silver;
}
.order_details .order_details_header .label {
  font-weight: bold;
  padding: 0.5em;
  background: #efefef;
}
.order_details .order_details_header .value {
  padding: 0.5em;
  background: #fff;
}
.order_details .order_details_header .order_status_dropdown_container {
  display: flex;
  padding: 0.25rem;
  margin: auto;
}
.order_details .order_addresses_container {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
  margin-top: 1rem;
  gap: 0.5em;
}
.order_details .order_addresses_container .order_addresses_address_container {
  background: #FFF;
  border: 1px solid silver;
}
.order_details .order_addresses_container > * {
  flex: 1 1 auto;
}
.order_details .order_addresses_container .order_address {
  padding: 0.25em;
}
.order_details .order_addresses_container .order_address_header {
  font-weight: bold;
  background: #efefef;
  padding: 0.25em;
}
.order_details .order_items_container {
  display: flex;
  flex-direction: row;
}
.order_details .order_items_container .order_items_table {
  border-spacing: 0px;
  border-collapse: collapse;
  border-top: 1px solid silver;
  table-layout: fixed;
  /*				
                min-width: max-content;
*/
  flex: 1 1 auto;
}
.order_details .order_items_container .order_items_table tr.discount_code_display_row {
  display: none;
}
.order_details .order_items_container .order_items_table tr.discount_code_edit_row {
  display: table-row;
}
.order_details .order_items_container .order_items_table.applied_discount tr.discount_code_edit_row {
  display: none;
}
.order_details .order_items_container .order_items_table.applied_discount tr.discount_code_display_row {
  display: table-row;
}
.order_details .order_items_container .order_items_table tr.empty_cart > td {
  font-size: 1.25em;
  text-align: center;
  font-weight: bold;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.order_details .order_items_container .order_items_table tr.item_row {
  background: #fff;
  border-bottom: 1px solid silver;
  border-right: 1px solid silver;
  border-left: 1px solid silver;
}
.order_details .order_items_container .order_items_table tr.item_row + tr.empty_cart {
  display: none;
}
.order_details .order_items_container .order_items_table tr.item_row td {
  text-align: center;
}
.order_details .order_items_container .order_items_table tr.item_row td > .remove_from_cart_icon::after {
  content: "\1F5D1";
  font-size: 1.5em;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.order_details .order_items_container .order_items_table tr.item_row td.quantity_edit > input.quantity {
  text-align: center;
  max-width: 4em;
}
.order_details .order_items_container .order_items_table tr.item_row td.url {
  white-space: nowrap;
}
.order_details .order_items_container .order_items_table tr.header_row {
  border-bottom: 1px solid silver;
  border-right: 1px solid silver;
  border-left: 1px solid silver;
  font-weight: bold;
  background: #efefef;
  padding: 0.25em;
}
.order_details .order_items_container .order_items_table tr.header_row th {
  text-align: center;
  width: auto;
}
.order_details .order_items_container .order_items_table tr.header_row th.quantity {
  max-width: 500em;
}
.order_details .order_items_container .order_items_table tr.header_row th.description {
  width: 100%;
}
.order_details .order_items_container .order_items_table tr .table_header_row_price_formatted,
.order_details .order_items_container .order_items_table tr .item_row_price_formatted {
  text-align: center;
}
.order_details .order_items_container .order_items_table tr .footer_row_value,
.order_details .order_items_container .order_items_table tr .item_row_item_subtotal_formatted,
.order_details .order_items_container .order_items_table tr .table_header_row_item_subtotal_formatted {
  text-align: right;
}
.order_details .order_items_container .order_items_table tr.table_header_row,
.order_details .order_items_container .order_items_table tr.footer_row {
  font-weight: bold;
}
.order_details .order_items_container .order_items_table tr.footer_row td.label {
  text-align: right;
}
.order_details .order_items_container .order_items_table tr.footer_row.footer_row_subtotal_formatted_label {
  text-align: right;
}
.order_details .order_items_container .order_items_table tr.footer_row td {
  text-align: center;
}
.order_details .order_items_container .order_items_table tr.footer_row td.shipping {
  text-align: left;
}
.order_details .order_items_container .order_items_table tr.footer_row td.discount_code_display_label span.discount_code_display {
  margin-left: 0.5rem;
}
.order_details .order_items_container .order_items_table tr.footer_row td.discount_code input {
  text-align: left;
  box-sizing: border-box;
  width: 8rem;
}
.order_details .order_items_container .order_items_table tr.footer_row td.action_button {
  text-align: left;
}
.order_details .order_items_container .order_items_table tr.footer_row td.action_button .btnApplyDiscountCode {
  margin-left: 0.25rem;
  font-size: 0.8em;
  font-weight: normal;
  padding: 0.4rem 1rem;
  display: inline;
}
.order_details .order_items_container .order_items_table tr.footer_row td.action_button .btnRemoveDiscountCode {
  margin-left: 0.25rem;
  font-size: 0.8em;
  font-weight: normal;
  padding: 0.4rem 1rem;
  display: inline;
}
.order_details .order_items_container .order_items_table tr th,
.order_details .order_items_container .order_items_table tr td {
  padding: 0.5em;
}
.order_details .order_items_container .order_items_table tr td.no_shipping_error {
  color: red;
  text-align: right;
}
.order_details .order_items_container .order_items_table tr td.contact_for_shipping {
  color: green;
  text-align: right;
}
.order_details .order_items_container .order_items_table tr td.contact_for_shipping a {
  color: inherit;
}
html body.cart_page > .body_inner > .content > .main_content {
  align-items: normal;
}
html body.cart_page > .body_inner > .content > .main_content .minimum_order_text {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.below_cart {
  display: flex;
  flex-direction: row;
  padding-top: 0.25em;
  align-items: center;
}
.below_cart .left {
  flex: 1 1 auto;
  justify-content: start;
  display: flex;
}
.below_cart .left .btn {
  display: inline-block;
}
.below_cart .right {
  flex: 1 1 auto;
  justify-content: end;
  display: flex;
}
.below_cart .right .btn {
  display: inline-block;
}
.below_cart .btnContinue {
  width: auto;
}
/*# sourceMappingURL=cart.css.map */