@font-face {
  font-family: Altone;
  src: url(../fonts/Altone.ttf);
  font-style: normal;
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-font: "Altone";
  --bg-color: #000;
  --bg-01: #111110;
  --bg-02: #0b0b0b;
  --primary-color-01: #c3ff19;
  --primary-color-02: #8dbf00;
  --btn-color: #c3ff19;
  --btn-01: #252525;
  --text-color1: #ffffff;
  --text-color2: #dddddd;
  --text-color3: #000000;
  --text-color4: #9d9d9d;
  --card-bg: #0e0e0d;
  --breaker-01: #2a2a29;
  --breaker-02: #1b1b1b;
  --breaker-03: #1e1e1e;
}

/* Scroll Bar CSS Start */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #27272a;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--btn-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #71717a;
}

/* Scroll Bar CSS End */

/* Order History table start */

body {
  height: 100vh;
  background-image: url(../img/dashboard/Dashboard-domain-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#order_history .domain_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#order_history .domain_head_btn a {
  text-decoration: none;
  color: var(--primary-color-01);
}

#order_history .content_wrapper {
  padding: 0 30px;
}

#order_history .domain_item {
  width: 100%;
}

#order_history .domain_item h2 {
  font-family: var(--main-font);
  font-size: 1.4em;
  color: var(--text-color1);
  margin: 20px 0;
}

#order_history .domain_table {
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

#order_history .domain_table th {
  background-color: var(--bg-01);
  color: var(--text-color4);
  font-size: 14px;
}

#order_history .domain_table th,
td {
  padding: 14px;
  font-family: var(--main-font);
  /* font-weight: 600; */
}

#order_history .domain_table td {
  color: var(--text-color1);
  background-color: var(--bg-02);
  font-size: 14px;
  vertical-align: middle;
  border-top: 1px solid var(--breaker-02);
}

#order_history .domain_table td:first-child {
  color: var(--primary-color-01);
}

#order_history .domain_table td:nth-child(2) {
  color: var(--primary-color-01);
}

#order_history .domain_table td img {
  width: 18px;
  margin-top: -3px;
  margin-right: 3px;
}

#order_history .domain_table td .active {
  color: var(--text-color1);
  margin-right: 20px;
}

@media screen and (max-width: 900px) {
  #order_history .domain_table {
    width: 100%;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }

  #order_history .domain_table th,
  td {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #order_history .content_wrapper {
    padding: 0 20px;
  }
}

@media screen and (max-width: 575px) {
  #order_history .domain_head {
    display: block;
    margin-bottom: 20px;
  }

}

/* Order History table End */



/* Order History2 table start */
.content_wrapper {
  padding: 0 30px 30px;
}

#order_history2 .domain_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#order_history2 .domain_head_btn a {
  text-decoration: none;
  color: var(--primary-color-01);
}

#order_history2 .domain_item {
  width: 100%;
}

#order_history2 .domain_item h2 {
  font-family: var(--main-font);
  font-size: 1.4em;
  color: var(--text-color1);
  margin: 20px 0;
}

#order_history2 .domain_table {
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

#order_history2 .domain_table th {
  background-color: var(--bg-01);
  color: var(--text-color4);
  font-size: 14px;
}

#order_history2 .domain_table th {
  padding: 14px;
  font-family: var(--main-font);
}

#order_history2 .domain_table td .active {
  color: var(--text-color1);
  margin-right: 20px;
}

#order_history2 .empty-notice {
  background: var(--bg-02);
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -4px;
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  padding: 100px 0;
}

#order_history2 .empty-notice h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color1);
  padding: 20px 0 12px 0;
}

#order_history2 .empty-notice p {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color-01);
}

@media screen and (max-width: 900px) {
  #order_history2 .domain_table {
    width: 100%;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }

  #order_history2 .domain_table th {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #order_history2 .content_wrapper {
    padding: 0 20px;
  }
}

@media screen and (max-width: 575px) {
  #order_history2 .domain_head {
    display: block;
    margin-bottom: 20px;
  }

  #order_history2 .domain_head_btn a {
    margin-bottom: 25px;
  }
  #order_history2 .empty-notice {
    padding: 50px 0;
  }

  #order_history2 .empty-notice h6 {
    font-size: 16px;
  }
  
  #order_history2 .empty-notice p {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color-01);
  }
}

/* Order History2 table End */
