@import url("https://fonts.googleapis.com/css2?family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

/* ====================
Reset Default CSS Start
==================== */

:root {
  --primary-color: #cccccc;
  --secondary-color: #030304;
  --accent-color1: #333333;
  --accent-color2: #b3b3b3;
  --white: #ffffff;
  --primary-font: "KoHo";
  --secondary-font: "Roboto Mono";
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  margin-top: 0;
}

p {
  font-family: var(--primary-font);
  margin-top: 0;
}

span {
  font-family: var(--primary-font);
}

a {
  text-decoration: none !important;
  font-family: var(--primary-font);
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  font-family: var(--primary-font);
}

button {
  border: none;
  outline: none;
  font-family: var(--primary-font);
}

input {
  outline: none;
  font-family: var(--primary-font);
}

label {
  font-family: var(--primary-font);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--secondary-color) !important;
  overflow-x: hidden;
}

/* ====================
  Reset Default CSS End
  ==================== */

/* Dashboard Main Start */

#dashboard {
  margin-top: 20px;
  margin-bottom: 60px;
}

.dashboard_banner {
  width: 100%;
  background: url(../images/dashboard_banner_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border: 1px solid var(--accent-color1);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.dashboard_banner h4 {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.dashboard_banner h2 {
  font-family: var(--primary-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  margin-top: 24px;
}

.dashboard_banner_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  width: 100%;
  padding: 10px;
  margin-top: 24px;
  background: #141414;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.dashboard_banner_btn:hover {
  background: var(--accent-color2);
  color: var(--secondary-color);
}

.dashboard_banner_btn:hover .dashboard_banner_btn_icon {
  background: var(--secondary-color);
}

.dashboard_banner_btn_icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.dashboard_receive_btn img {
  width: 14px;
  height: 14px;
}

.dashboard_withdrawal_btn img {
  width: 18px;
  height: 18px;
}

/* Coin Table Start */
.coin_table {
  margin-top: 20px;
}

.coin_table {
  width: 100%;
  border: 1px solid var(--accent-color1);
  border-radius: 16px;
  overflow: auto;
  padding: 30px;
}

.coin_table .table {
  width: 100%;
  margin-bottom: 0;
}

.coin_table .table thead th,
.coin_table .table tbody td {
  color: var(--primary-color);
  background: var(--accent-color) !important;
  padding: 12px 8px !important;
}

.coin_table .table tr {
  border-bottom: 1px solid var(--accent-color1);
}

.coin_table .table thead th {
  font-family: var(--primary-font);
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
}

.coin_table .table td {
  text-align: left;
  vertical-align: middle;
}

.coin_table .table thead th:nth-last-child(1),
.coin_table .table td:nth-last-child(1) {
  text-align: right;
}

.coin_table .table thead th:nth-child(2),
.coin_table .table td:nth-child(2) {
  text-align: center;
}

.coin_table .coin_icon {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.coin_table .coin_icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.coin_table .currency,
.coin_table .balance,
.coin_table .coin_name {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0px;
}
/* Coin Table End */

/* Transactions Table Start */
.transactions_table .table_wrap {
  width: 100%;
  overflow: auto;
}

.transactions_table {
  margin-top: 20px;
  width: 100%;
  border: 1px solid var(--accent-color1) !important;
  padding: 30px;
  border-radius: 16px;
  overflow: auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.transactions_table .table {
  width: 100%;
}

.transactions_table .table thead th {
  font-family: var(--primary-font);
  color: var(--white) !important;
  font-size: 22px;
  font-weight: 500;
}

.transactions_table .table thead th,
.transactions_table .table tbody td {
  color: var(--primary-color);
  background: var(--accent-color) !important;
  padding: 12px 8px !important;
}

.transactions_table .table thead th,
.transactions_table .table td {
  text-align: center;
  vertical-align: middle;
}

.transactions_table .table tr {
  border-bottom: 1px solid var(--accent-color1) !important;
}

.transactions_table .table thead th:nth-last-child(1),
.transactions_table .table td:nth-last-child(1) {
  text-align: right;
}

.transactions_table .table thead th:nth-child(1),
.transactions_table .table td:nth-child(1) {
  text-align: left;
}

.transactions_table .invoice,
.transactions_table .currency,
.transactions_table .status,
.transactions_table .amount {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0px;
}
.transactions_table .status {
  padding: 8px 0px;
}
.transactions_table .status .approve {
  background: green;
  border-radius: 30px;
  padding: 2px 12px;
  font-size: 16px;
}
.transactions_table .status .pending {
  background: rgb(128, 62, 0);
  border-radius: 30px;
  padding: 2px 12px;
  font-size: 16px;
}

.button_wrap .load_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 8px 30px;
  background: #141414;
  border-radius: 12px;
  transition: 0.4s;
}

.button_wrap .load_btn:hover {
  background: var(--accent-color2);
  color: var(--secondary-color);
}

/* Dashboard Main End */

/* Transactions page End */

.transactions_banner {
  width: 100%;
  background: url(../images/dashboard_banner_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border: 1px solid var(--accent-color1);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.transactions_banner .title {
  font-family: var(--primary-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

.transactions_banner p {
  width: 100%;
  max-width: 60%;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  margin-top: 24px;
}

.transactions_banner_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 30px;
  margin-top: 24px;
  background: #141414;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.transactions_banner_btn:hover {
  background: var(--accent-color2);
  color: var(--secondary-color);
}
/* Transactions page End */

/* Payout API key page End */

.api_banner {
  width: 100%;
  background: url(../images/dashboard_banner_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border: 1px solid var(--accent-color1);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.api_banner .title {
  font-family: var(--primary-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

.api_banner p {
  width: 100%;
  max-width: 60%;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  margin-top: 24px;
}

.api_banner_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 30px;
  margin-top: 24px;
  background: #141414;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.api_banner_btn:hover {
  background: var(--accent-color2);
  color: var(--secondary-color);
}

.api_table {
  width: 100%;
  max-width: 600px;
  border: 1px solid var(--accent-color1);
  margin-top: 20px;
  border-radius: 16px;
  padding: 30px;
  overflow: auto;
}

.api_table .table {
  width: 100%;
  border: none !important;
  border-radius: 16px;
}

.api_table .table thead tr th {
  border-bottom: 1px solid var(--accent-color1) !important;
  font-family: var(--primary-font);
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
}

.api_table .table tbody tr td {
  border: none !important;
  font-family: var(--secondary-font);
}

.api_table .table tbody tr td span {
  font-family: var(--secondary-font);
}

.api_table .table thead th,
.api_table .table tbody td {
  color: var(--primary-color);
  background: var(--accent-color) !important;
  padding: 12px 8px !important;
}

.api_table .table thead th,
.api_table .table td {
  text-align: center;
  vertical-align: middle;
}

.api_table .table thead th:nth-last-child(1),
.api_table .table td:nth-last-child(1) {
  text-align: right;
}

.api_table .table thead th:nth-child(1),
.api_table .table td:nth-child(1) {
  text-align: left;
}

.api_table .table td .key {
  color: var(--primary-color);
}

.api_table .table td .key.active {
  color: var(--white);
}

.toggle {
  position: relative;
}

.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle .onoff {
  width: 40px;
  color: #fff;
  font-size: 16;
  text-align: center;
  display: block;
  font-family: var(--secondary-font);
}

.toggle .slider {
  position: relative;
  display: block;
  cursor: pointer;
  background-color: var(--accent-color1);
  transition: 0.4s;
  width: 45px;
  height: 24.5px;
}

.toggle .slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: var(--secondary-color);
  transition: 0.4s;
  top: 2px;
  left: 4px;
}

.toggle input:checked + .slider {
  background-color: var(--white);
  box-shadow: 0 0 12px var(--white);
}

.toggle input:checked + .slider:before {
  transform: translateX(19px);
  -webkit-transform: translateX(19px);
  -moz-transform: translateX(19px);
  -ms-transform: translateX(19px);
  -o-transform: translateX(19px);
}

.toggle .slider.round {
  border-radius: 20px;
}
.toggle .slider.round::before {
  border-radius: 20px;
}
/* Payout API key page End */
