body {
    padding-top: 70px;
    background: var(--bg-color);
    transition: background-color .2s ease;
}

[color-scheme='dark'] .invert-color {
    filter: invert(1)
}

[color-scheme='light'] .invert-color {
    filter: invert(0)
}

@media (prefers-color-scheme: dark) {
    .invert-color {
        filter: invert(1)
    }
}


h1,
h2 {
    margin-top: var(--gap);
    text-align: center;
    font-size: var(--fs-title-h2);
    color: var(--p-color);
}
h2 {
  font-size: var(--fs-title-h2);
}
.net-fee-table {
  width: 650px;
  margin: 30px auto var(--gap);
  border-radius: var(--br);
  box-shadow: 0 10px 27px #0003;
  padding: 40px;
  padding-right:60px;
  border: 1px dashed var(--t-color-light);
  box-sizing: border-box;
}
.arzpaya-table span.name {
  display: none;
}
.arzpaya-table tr {
  height: 60px;
  line-height: 22px;
}
.arzpaya-table .crypto-logo {
  width: 27px;
  height: 27px;
  object-fit: contain ;
  flex-shrink : 0;
  margin-inline-end: 10px;
}
.arzpaya-table .crypto-token {
  display: flex;
  align-items: center;
}
.arzpaya-table thead td {
  font-size: var(--fs-normal);
  color: var(--t-color-light);
  opacity: 0.5;
  font-weight: bold;
  text-align: center;
  -moz-font-feature-settings: 'ss02';
  -webkit-font-feature-settings: 'ss02';
  font-feature-settings: 'ss02';
}
.arzpaya-table tbody td {
  font-size: var(--fs-important);
  color: var(--t-color-light);
  font-weight: bold;
  text-align: center;
  -moz-font-feature-settings: 'ss02';
  -webkit-font-feature-settings: 'ss02';
  font-feature-settings: 'ss02';
}
/*.arzpaya-table thead td:first-child {
    text-align:right ;
}*/
.wallet-con {
  width: 100%;
  margin: calc(var(--gap) / 3) auto;
  border-radius: var(--br);
    box-shadow: 0 10px 27px #0003;
    padding: 25px;
    border: 1px dashed var(--t-color-light);
  box-sizing: border-box;
}
.net-search {
  width: 100%;
  height: 60px;
  border: 2px solid var(--p-color);
  border-radius: var(--br);
  margin-top: calc(var(--gap) / 2);
  display: flex;
  align-items: center;
}
.net-search input[type='text'] {
  width: calc(100% - 100px);
  height: 50px;
  border: none;
  font-family: inherit;
  border-radius: 0 var(--br) var(--br) 0;
  padding-inline-start: 25px;
  font-size: var(--fs-text);
}
.net-search button {
  border: none;
  border-radius: 5px;
  font-family: inherit;
  background-color: var(--p-color);
  color: #fff;
  width: 150px;
  margin-inline-end: 5px;
  height: 50px;
  font-size: var(--fs-text);
}
.net-fee-pagination {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap);
  direction: ltr;
}
.net-fee-pagination > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--p-color-od);
  color: var(--p-color);
  -moz-font-feature-settings: 'ss02';
  -webkit-font-feature-settings: 'ss02';
  font-feature-settings: 'ss02';
  border-radius: var(--br);
  font-weight: bold;
  text-shadow: 0 3px 5px var(--p-color);
  margin-inline-start: 10px;
  box-sizing: border-box;
}
.net-fee-pagination > a:last-child {
  margin-inline-start: 0;
}
.net-fee-pagination > a.current,
.net-fee-pagination > a:hover {
  background-color: var(--bg-color);
  border: 2px solid var(--p-color);
  text-shadow: none;
}
.tab {
  overflow: hidden;
  display: flex;
  padding-inline-end: 80px;
}
.tab button {
  font-family: inherit;
  font-weight: bold;
}
.tab .tab-links {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;

  font-weight: bold;
  font-size: var(--fs-text);
  position: relative;
  color: var(--t-color-light);
  margin-inline-end: 20px;
}
.tab .tab-links.active,
.tab .tab-links:hover {
  color: var(--p-color);
}
.tab .tab-links::before {
  content: '';
  position: absolute;
  width: 00%;
  height: 5px;
  border-radius: 7px 7px 0 0;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--p-color);
  transition: width 0.15s;
}
.tab .tab-links.active::before {
  width: 80%;
}
.tabcontent {
  display: none;
  padding: 6px 12px;
}

.tabs {
  opacity: 0;
  transition: opacity 0.15s;
}
.show {
  display: table;
}
.animate {
  opacity: 1;
}
.hide {
  display: none;
}
.spacer {
  flex-grow: 1;
}
.status-links {
  color: var(--c1-color);
  font-size: 14px;
  margin: 10px;
  padding: 13px 15px 11px 11px;
  background-color: var(--p-color-od);
  border: none;
  border-radius: 9px;
  cursor: pointer;
}
.status-links div {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: bottom;
  border-radius: 50%;
}
.red {
  background-color: #f5465d;
  border: 2px solid #ecccda;
}
.green {
  background-color: #2bba43;
  border: 2px solid #c3e4d5;
}
.crypto-token {
  position: relative;
}
.crypto-token-status-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  inset-inline-start: -5px;
}
.default-direction {
  direction: ltr;
}
.crypto-logo {
  max-height: 35px;
}
.market-info-coin-unit {
  color: gray;
  font-size: 12px;
}


.landing-table {
    border:0px;
    -webkit-align-items: center;
    background-color: var(--p-color);
    width: 100%;
    border-radius: var(--br);
    padding: 0px !important
}

    .landing-table thead tr th {
        font-size: 14px;
        font-weight: bolder;
        height: 40px;
        text-align: center;
        background-color: var(--bg-color);
        border-radius: var(--br) var(--br) 0 0;
    }

    .landing-table tbody tr {
        line-height: 30px !important;
    }

        .landing-table tbody tr td {
            text-align: center;
            line-height: 25px;
            font-size: 12px;
            height: 40px;
            -webkit-align-items: center;
            align-items: center;
            background-color: var(--bg-color);
        }

        .landing-table tbody tr .td-last-border {
            border-radius: 0 0 var(--br) var(--br);
        }

.td-description {
    height: auto !important;
}



@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 800px) {


    .landing-table tbody tr .td-last-border {
        border-radius: var(--br);
    }

    .landing-table {
        background-color: unset;
    }
    .net-fee-table, .wallet-con {
        width: 100%;
        margin: var(--gap) auto;
        border-radius: var(--br);
        box-shadow: none;
        padding: 0;
        border: none;
    }
  .arzpaya-table span.name {
    display: block;
  }
  .arzpaya-table thead {
    display: none;
  }
  .arzpaya-table tr {
    display: flex;
    flex-direction: column;
    height: auto;
    line-height: unset;
  }
    .arzpaya-table tbody td {
        font-size: var(--fs-text);
        color: var(--t-color-light);
        font-weight: normal;
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
        background-color: #b2c7ff66 !important;
        border-radius: var(--br);
        margin-bottom: 5px;
    }
  .arzpaya-table tr:nth-child(2n) td {
        filter: hue-rotate(265deg);
  }
  .arzpaya-table tr:nth-child(2n) td img {
    filter: hue-rotate(-265deg) drop-shadow(0 0 1px #fff);
   }
  .arzpaya-table .crypto-token {
    flex-direction: row-reverse;
  }
  .arzpaya-table .crypto-logo {
    width: 25px;
    margin-inline-end: unset;
    margin-inline-start: 10px;
  }
  .net-search input[type='text'] {
    padding-inline-start: 15px;
    font-size: var(--fs-normal);
  }
  .net-search button {
    font-size: var(--fs-normal);
  }
  .tab {
    padding-inline-end: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .crypto-token-status-icon {
    top: 5px;
    inset-inline-start: unset;
    inset-inline-end: -10px;
  }
  .spacer {
    display: none;
  }
  .wallet-con {
    margin-top: 0;
  }
  .status-links {
    margin-top: 20px;
  }
}
