.order-tables-page {
  padding-bottom: 120px;
}
.my-account-nav-section {
  background-color: #000000;
}
.my-account-nav-section .my-account-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
  padding-right: 35px;
}
.my-account-nav-section .my-account-nav li a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.7px;
  color: #ffffff;
  text-decoration: none;
  padding: 22px 0;
  display: block;
  transition: 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}
.my-account-nav-section .my-account-nav li:last-child{
  padding-right: 20px;
}
.my-account-nav-section .my-account-nav li a.current{
  color:#FF7606;
}
.my-account-nav-section .my-account-nav li a:hover{
  color:#FF7606;
}
.account-details-section .title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.orders-column {
  width: 100%;
}

.mobile-cards {
  display: none;
}

.orders-table {
  width: 100%;
}

.orders-table th {
  text-align: left;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.orders-table,
.orders-table thead,
.orders-table tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.orders-table tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.orders-table td,
.orders-table th {
  width: 16%;
}
.orders-table td:last-child,
.orders-table th:last-child {
  width: 4%;
  text-align: right;
}
.orders-table thead tr {
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
}
.orders-table tbody tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 15px 0px;
  cursor: pointer;
  border-bottom: 1px solid #000;
  align-items: center;
}
.orders-table tbody tr td {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.orders-table tbody tr td.completed {
  color: #0DA526;
}
.orders-table tbody tr td.canceled {
  color: #E12E31;
}
.orders-table tbody .view-order {
  background-image: url(assets/icons/my-order-view-btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  background-color: #000000;
  display: block;
  height: 42px;
  width: 42px;
  transition: 0.2s;
}
tbody tr:hover .view-order {
  background-color: #FF7606;
}
.order-pagination .nav-buttons .btn-transparent {
  padding: 10px 24px;
  display: block;
  background-image: url(assets/icons/page-back-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.order-pagination .nav-buttons .btn {
  padding: 18px 50px 18px 35px;
  background-image: url(assets/icons/next-page-icon.svg);
  background-repeat: no-repeat;
  background-position: 160px center;
}
.order-pagination .nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.order-pagination .nav-buttons a{
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  transition: 0.2s;
  text-decoration: none;
}
.order-pagination .nav-buttons a:hover{
  color: #FF7606;
}
.order-pagination .nav-buttons a.current{
  color: #FF7606;
}
.order-pagination {
  margin-top: 40px;
}
.empty-order-table {
  font-family: Poppins;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: #D0CBC2;
  padding: 160px 0;
  border-bottom: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  .my-account-nav-section .container {
    overflow-x: scroll;
  }
  .mobile-cards {
    display: block;
  }
  .desktop-order-table {
    display: none;
  }
  .orders-cards .order-card {
    padding: 24px 0;
    border-bottom: 1px solid #000;
  }
  .orders-cards .order-card:not(:last-child) {
    margin-bottom: 8px;
  }
  .order-pagination {
    margin-top: 24px;
  }
  .order-pagination .nav-buttons {
    display: flex;
    gap: 17px;
    justify-content: center;
    position: relative;
  }
  .order-pagination .nav-buttons .next-page {
    position: absolute;
    left: 0;
    top: 40px;
  }
  .order-pagination .nav-buttons .prev-page {
    position: absolute;
    right: 0;
    top: 40px;
  }
  .order-card .order-label{
    font-weight: 400;
    font-size: 16px;
  }
  .order-card .order-value{
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0,7px;
    text-transform: uppercase;
  }
  .order-card .order-row, .order-card .invoice-row{
    display: flex;
    justify-content: space-between;
  }
  .order-card .order-row:not(:last-child){
    margin-bottom: 20px;
  }
  .order-card  .more-link{
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color:#000;
    text-decoration:none;
  }
  .account-details-section .title {
    margin-bottom: 0px;
    font-size: 24px;
    border-bottom: 1px solid #000;
    padding-bottom: 16px;
  }
  .more-link.inner-order img{
    width: 14px;
    height: 12px;
  }
  .more-link.inner-order {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .order-card  .order-value {
    text-transform: capitalize;
  }
  .order-card  .order-value.completed {
    color: #0DA526;
  }
  .order-card  .order-value.canceled {
    color: #E12E31;
  }
  .order-card .button-row{
    display: flex;
    justify-content: center;
  }
  .order-card .button-row .view-order {
    background-image: url(assets/icons/my-order-view-btn.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    background-color: #000000;
    display: block;
    height: 42px;
    width: 42px;
    transition: 0.2s;
  }
  .order-card .button-row .view-order:hover{
    background-color: #FF7606;
  }
}
