@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&family=Sriracha&display=swap');


/* ROOT VARIABLE */
:root {
  --themeColor: #E4B13B;
  --primaryColor: #FF971D;
  --grayColor: #737373;
  --white: #fff;
  --borderColor: #343B4F;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

body {
  overflow: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: #171821 !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background-color: #7E6221;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #cfcfcf;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

.clip-path {
  clip-path: border-box;
}

/* FONT SIZE */
.font-40 {
  font-size: clamp(1.375rem, 1.121rem + 1.1613vw, 2.5rem);
}

.font-34 {
  font-size: clamp(1.5rem, 1.3589rem + 0.6452vw, 2.125rem);
}

.font-26 {
  font-size: clamp(1.25rem, 1.15rem + 0.35vw, 1.625rem);
}

.font-24 {
  font-size: clamp(1rem, 0.8987rem + 0.5063vw, 1.5rem);
}

.font-22 {
  font-size: clamp(0.9375rem, 0.8489rem + 0.443vw, 1.375rem);
}

.font-20 {
  font-size: clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.font-16 {
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

/* Gap */
.scalable-gap-30 {
  gap: clamp(24px, 5vw, 30px);
}

.scalable-gap-40 {
  gap: clamp(24px, 3vw, 40px);
}

.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-gap-12 {
  gap: 12;
}

/* PADDING */
.scalable-p-24-16 {
  padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

/* FONT WEIGHT */
.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500 !important;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.grayColor {
  color: var(--grayColor);
}

.text-danger {
  font-size: 12px;
}

.black {
  color: #000;
}

.green {
  color: #10B80D;
}

.black {
  color: var(--black);
}

.bgthemeColor {
  background-color: var(--themeColor) !important;
}

:focus-visible {
  outline: var(--Primary-color) auto 0px;
}

.lh-0 {
  line-height: 0;
}

/* BUTTON */
.primary-button {
  background-color: var(--themeLightColor);
  color: var(--white);
  border-radius: 24px;
  font-weight: 500;
  border: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-align: center;
}

/* SIDEBAR */
.menu {
  padding: 36px 8px 0px 0px;
  height: calc(100% - 80px);
}

.menu li {
  position: relative;
}

.sidebar-icon {
  border-radius: 6px;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}

.logo-sidebar {
  display: none;
}

.sidebar {
  width: 250px;
  flex: none;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s width, 1s background;
  box-shadow: 8px 0px 32px rgba(0, 0, 0, 0.25);
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.menu-text {
  display: inline;
  color: var(--grayColor);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.menu .active {
  width: 100%px;
  background: linear-gradient(90deg, #E4B13B 0%, #7E6221 100%);
  transition: 1s background;
  border-radius: 0px 12px 12px 0px;

  .sidebar-icon {
    background-color: transparent;
  }

  img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(658%) hue-rotate(28deg) brightness(117%) contrast(100%);
  }

  .menu-text {
    color: var(--white) !important;
  }
}


/* PARENT ACTIVE MENU */

.menu .parent-active>a {
  background: linear-gradient(90deg, #E4B13B 0%, #7E6221 100%);
  border-radius: 0px 12px 12px 0px;
}

.menu .parent-active .sidebar-icon {
  background-color: transparent;
}

.menu .parent-active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(658%) hue-rotate(28deg) brightness(117%) contrast(100%);
}

.menu .parent-active .menu-text {
  color: var(--white) !important;
}

.menu .parent-active .submenu-arrow svg path {
  stroke: var(--white) !important;
}

/* LOGO / SIDEBAR */

.logo-collapsed {
  border-bottom: 1px solid #4A4A4F;
}

.sidebar {
  overflow-x: hidden;
}

.sidebar.collapsed {
  width: 70px;
}

.sidebar.collapsed .active {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  transition: background 0.3s ease;
}

.sidebar.collapsed .logo-container {
  padding: 8px;
}

.sidebar.collapsed .menu-text {
  display: none;
}

.sidebar.collapsed .logo-sidebar {
  display: block;
  border-bottom: 1px solid #4A4A4F;
}

.sidebar.collapsed .logo-collapsed {
  display: none;
}

/* COMMON FIX (BLEED ISSUE) */

.menu li>a,
.submenu a {
  position: relative;
  overflow: hidden;
}

/* LIST RESET */

li {
  list-style: none;
}


/* SUBMENU */

.has-submenu>a {
  cursor: pointer;
}

.submenu-arrow {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  opacity: 0.7;
}

.has-submenu.expanded .submenu-arrow {
  transform: rotate(90deg);
}

.has-submenu:hover .submenu-arrow {
  opacity: 1;
}

/* SUBMENU CONTAINER */

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-left: 0;
  margin: 0;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
  margin-right: 8px;
}

.submenu.expanded {
  max-height: 260px;
  padding: 4px 0;
}

.submenu li {
  margin: 0;
}

/* SUBMENU LINKS */

.submenu a {
  padding: 8px 0 8px 68px;
  color: var(--grayColor);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-radius: 0 12px 12px 0;
}

/* Bullet indicator */
.submenu a::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--grayColor);
  transition: all 0.3s ease;
}

/* Hover */
.submenu a:hover {
  background-color: rgba(255, 151, 29, 0.1);
  color: var(--primaryColor);
}

.submenu a:hover::before {
  background-color: var(--primaryColor);
  transform: translateY(-50%) scale(1.2);
}

/* Active submenu */
.submenu a.active {
  background: transparent;
  color: var(--themeColor);
}

.submenu a.active::before {
  background-color: var(--themeColor);
  box-shadow: 0 0 8px rgba(228, 177, 59, 0.4);
}

.submenu-text {
  white-space: nowrap;
}

/* COLLAPSED SIDEBAR FIXES */

.sidebar.collapsed .submenu a {
  padding-left: 0;
}

.sidebar.collapsed .submenu a::before {
  display: none;
}

/* Optional polish */
.sidebar.collapsed .parent-active>a {
  width: 48px;
}

/* Collapsed sidebar submenu styles */
.sidebar.collapsed .submenu-arrow {
  display: none;
}

.sidebar.collapsed .submenu {
  display: none;
}

.sidebar.collapsed .has-submenu>a {
  justify-content: center;
}

/* NAVBAR */
.navBar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(30px);
  padding: 10px 28px;
  transition: background-color 0.3s ease, padding 0.3s ease;
  z-index: 99 !important;
  border-bottom: 1px solid #4A4A4F;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1020;
}

.iconBackground {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--primaryColor);
  transition: all 0.6s ease;
  cursor: pointer;
}

.iconBackground:hover {
  background: #e5871a;
  transform: scale(1.08);
}

.logo-container {
  padding: 8px 20px 8px 20px;
}

.iconBackground:hover {
  .fill-icon {
    fill: var(--white);
  }
}

.icon-hover {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.icon-hover img {
  transition: all 0.3s ease;
}

.icon-hover:hover {
  background: #2b2b2e;
}

.icon-hover:hover img {
  transform: scale(1.12);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

/* profile dropdown */
.profile-tabs {
  width: clamp(8.125rem, 7.625rem + 2.5vw, 10.625rem);
}

.profile-name {
  h4 {
    color: #404040;
  }

  h5 {
    color: #565656;
  }
}

.profile-dropdown {
  .dropdown-menu {
    border-radius: 8px;
    background-color: #171821;
    border: 1px solid #e8e8e80d;
    width: 200px;
    box-shadow: 0px 0px 14px rgb(163 127 42 / 11%);
  }
}

.profile-dropdown-list:hover {
  background-color: #a8832c24;
  border-radius: 2px;
}

.logout:hover {
  background-color: #FF59591A;
}

.borderBottom {
  border-bottom: 1px solid #e8e8e80d;
}

/* DASHBOARD */
.main-content {
  overflow-y: auto;
}


/* Middle content */
.middle-content {
  padding: 30px clamp(1rem, 0.8228rem + 0.8861vw, 1.875rem);
}

.heading {
  background-color: #E3DDCC;
  padding: clamp(0.625rem, 0.5237rem + 0.5063vw, 1.125rem);
  border-radius: clamp(0.625rem, 0.4984rem + 0.6329vw, 1.25rem);

  h3 {
    color: #795500;
  }
}

/* Dashboard */
.card-linear-gradiant {
  background: linear-gradient(135deg, #E4B13B 0%, #7E6221 100%);
}

.dashboard-card {
  padding: 18px 18px;
  border-radius: 14px;
}

.dashboard-card-icon {
  background-color: #D9D9D9;
  border-radius: 16px;
  padding: 8px;
  aspect-ratio: 1;
  height: 60px;
  width: 60px;
}

.summary-card {
  border-radius: 15px;
  background-color: #202022;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.25);
  gap: 30px;
}

.summary-card-header {
  background: linear-gradient(90deg, #E4B13B 0%, #7E6221 100%);
  border-radius: 15px 15px 0px 0px;
  padding: 16px clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.summary-card-content {
  padding: 0px clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem);
}

.dashboard-gold-trading-card {
  background: linear-gradient(135deg, #E4B13B 0%, #7E6221 100%);
  border-radius: 35px;
  padding: 6px 0px 20px 0px;
  border: 1px solid #FFFFFF;
}

.gold-trading-card-content {
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 0px 0px 20px;
}

.total-investment-card {
  padding: 0px 20px;
}

.total-investment {
  background-color: #D9D9D966;
  border-radius: 12px;
  padding: 6px 16px;
}

.dashboard-top-cards {
  padding: clamp(0rem, -0.7595rem + 3.7975vw, 3.75rem) 0px;
}

.dashboard-invitation-card {
  background-color: var(--white);
  border-radius: 35px;
  padding: 7px 18px clamp(1.25rem, 0.9462rem + 1.519vw, 2.75rem) clamp(1.25rem, 0.9968rem + 1.2658vw, 2.5rem);
  gap: 24px;
}

.primary-btn {
  background: linear-gradient(135deg, #E4B13B 0%, #7E6221 100%);
  border-radius: 15px;
  border: 0;
  outline: 0;
}

.invitation-icons {
  height: clamp(1.5rem, 1.3987rem + 0.5063vw, 2rem);
}

.scalable-p-12 {
  padding: clamp(0.75rem, 0.7rem + 0.2vw, 0.75rem);
}

.scalable-p-12-36 {
  padding: 12px clamp(28px, 3vw, 36px);
}

.user-details-content {
  padding: 5px 0px clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem) 0px;
}

.user-avtar {
  border: clamp(0.125rem, 0.0997rem + 0.1266vw, 0.25rem) solid var(--themeColor);
  border-radius: 50%;
  object-fit: cover;
  height: clamp(5rem, 4.7468rem + 1.2658vw, 6.25rem);
  width: clamp(5rem, 4.7468rem + 1.2658vw, 6.25rem);
}

.mining-trading-card-content {
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 0px clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 24px;

  button {
    padding: 10px clamp(1.25rem, 1.0601rem + 0.9494vw, 2.1875rem);
  }
}

.earn-trading-card-content {
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) clamp(1.5rem, 1.2342rem + 1.3291vw, 2.8125rem) clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 0px;

  button {
    padding: 10px clamp(1.25rem, 1.0601rem + 0.9494vw, 2.1875rem);
  }
}

/* Deposit */
.deposit-card {
  width: 300px;
  height: 180px;
  border-radius: 25px;
}

.deposit-content {
  border-top: 1px solid var(--white);
  padding: 31px 47px 24px;
}

/* Input */
.form-group {
  position: relative;
}

.custom-input {
  width: 100%;
  padding: clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem) 18px clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem) 18px;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  background: transparent;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

.custom-input:focus {
  border-color: #846722;
  box-shadow: 0 0 0 3px rgb(157 122 41 / 8%);
  background: #d3a4370a;
}

.custom-input:hover {
  border-color: #846722;
}

.custom-input::placeholder {
  color: #A6A6A6;
  font-weight: 400;
}

.date-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

/* Custom icon */
.date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.secondary-btn {
  background: linear-gradient(135deg, #E4B13B 0%, #7E6221 100%);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem) 16px;
  min-width: 250px;
}

.genrate-OTP {
  background: linear-gradient(135deg, rgba(228, 179, 59, 0.9), rgba(126, 98, 33, 0.9));
  border-radius: 4px;
  border: 1px solid #be9533;
  outline: 0;
  padding: clamp(0.5rem, 0.4494rem + 0.2532vw, 0.75rem) clamp(0.625rem, 0.5491rem + 0.3797vw, 1rem);
  position: absolute;
  right: 0;
  height: 100%;
}

/* form buttons */
.form-btn {
  background: linear-gradient(135deg, #E4B13B 0%, #7E6221 100%);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.5rem, 0.4114rem + 0.443vw, 0.9375rem) clamp(1.5rem, 0.9177rem + 2.9114vw, 4.375rem);
}

.cancel-btn {
  background: linear-gradient(135deg, #F70000 0%, #910000 100%);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.5rem, 0.4114rem + 0.443vw, 0.9375rem) clamp(1.5rem, 0.9177rem + 2.9114vw, 4.375rem);
}

.card-bottom {
  padding-bottom: clamp(1.875rem, 0.9889rem + 4.4304vw, 6.25rem);
}

.gradint-card {
  padding: 26px 41px;
  border-radius: 24px;
  background: linear-gradient(0deg,
      #E4B13B 0%,
      #B868AC 100%);
  color: #19191A;
}

.instant-withdrawal {
  gap: 60px;
  padding-top: 50px;
}

/* Table css */
.dataTables_wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper {
  .dt-layout-full {
    border: 1px solid #343B4F;
    padding: 0;
  }

  .table.dataTable thead>tr>th div.dt-column-header {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 0px 12px;
    white-space: nowrap;
  }

  div.table-responsive>div.dt-container>div.row {
    margin: 12px !important;
  }

  div.dt-container div.dt-search input,
  div.dt-container div.dt-length select {
    display: inline-block;
    width: auto;
    background-color: #19191A;
    border-color: #343B4F;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
  }


  .table.dataTable td {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: clamp(0.75rem, 0.6234rem + 0.6329vw, 1.375rem) clamp(0.75rem, 0.6487rem + 0.5063vw, 1.25rem);
    white-space: nowrap;
    background-color: #19191A;
    vertical-align: middle;
    text-align: center;
  }

  .approved-btn {
    background-color: #e4b13b96;
    border: 0;
    padding: 3px 8px;
    color: #fff;
  }

  .inactive-btn {
    padding: 3px 14px;
    color: #fff;
    border: 1px solid #D90026;
    background-color: transparent;
  }

  .active-btn {
    padding: 3px 14px;
    color: #fff;
    border: 1px solid #03CF65;
    background-color: transparent;
  }

  .table-bordered>:not(caption)>* {
    border-color: #343B4F;
  }

  .dt-layout-start,
  .dt-layout-end {
    padding: 12px 12px;
  }

  .dt-info {
    margin-bottom: clamp(0rem, -0.1266rem + 0.6329vw, 0.625rem);
  }

  .table.dataTable th.dt-type-numeric div.dt-column-header {
    flex-direction: row;
  }

  .table.dataTable thead>tr>th div.dt-column-header {
    gap: 24px;

  }

  table.dataTable td.dt-type-date {
    text-align: start;
  }

  .dt-info,
  .dt-length,
  .dt-search {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
  }

  .form-control:focus,
  .form-select:focus {
    border: 1px solid var(--themeColor);
    box-shadow: 0 0 0 3px rgb(131 102 34 / 12%);
    background: #d3a4370a;
  }

  .pagination {
    border-radius: 8px;
    padding: 4px !important;
    gap: 8px;
  }

  .pagination button {
    padding: 4px 14px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #e4b13b21;
  }

  table.dataTable thead>tr>th div.dt-column-header span.dt-column-title {
    flex-grow: 0;
  }

  .page-link:focus {
    box-shadow: 0 0 0 3px rgb(157 122 41 / 8%);
  }

  .active>.page-link {
    color: #171821;
    background-color: var(--themeColor);
  }

  .dt-scroll-headInner {
    width: 100% !important;
  }

}


.table-hover>tbody>tr:hover>* {
  background-color: #d3a4370a !important;
  color: var(--white) !important;
}

/* Pagination */
.custom-pagination {
  .pagination .page-link {
    background-color: #19191A;
    border-color: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border-radius: 6px;
    padding: 6px 15px;
    border: none;
    outline: 0;
  }

  .pagination .page-item.active .page-link {
    color: #171821;
    background: linear-gradient(90deg, #FEB95A 0%, #986F36 100%);
    font-weight: 600;
  }

  .page-link:hover {
    z-index: 2;
    color: #976f36;
    background-color: transparent;
  }

  .page-link:focus {
    box-shadow: none;
  }
}

/* login css */
.background-img {
  background-image: url("../images/png/login-bg-img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.login-card {
  background-color: #202022;
  border-radius: 8px;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.25);
  padding: 24px 24px 50px;
  gap: clamp(1rem, 0.6962rem + 1.519vw, 2.5rem);
}

.login-heading {
  font-size: 32px;
  font-weight: 600;
}

.lightColor {
  color: #BFBFBF;
}

.borderColor {
  border: 1px solid #313135;
  padding: 8px 14px;
}

/* Custom Checkbox */
.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #8A92A6;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}

.custom-checkbox:checked {
  background-color: var(--secondary-color);
  border-color: var(--primaryColor);
}

.custom-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(6deg);
  color: var(--white);
  font-size: 10px;
  font-weight: bold;
}

.custom-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(121, 73, 255, 0.15);
}

.cta-login {
  background-color: var(--themeColor);
  color: #202022;
  border-radius: 4px;
  padding: 8px;
  min-width: 190px;
  border: 0;
  transition: all 0.3s ease;
}

.cta-login:hover {
  box-shadow: 0 0px 14px #ff971d59;
  transform: translateY(-2px);
  color: var(--white);
}

.cursor-pointer {
  cursor: pointer;
}

.scroll-bar {
  max-height: 325px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.available-balance {
  background-color: #737373;
  border-radius: 4px;
  border: 1px solid #D5D5D5;
  padding: 14px 18px;
  color: #19191A;
}

.truncate-input {
  width: 100%;
  padding-right: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-btn {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

/* Choose file */
.choose-file-btn {
  background: linear-gradient(135deg, rgba(228, 179, 59, 0.9), rgba(126, 98, 33, 0.9));
  border-radius: 4px;
  border: 1px solid #ac882f;
  outline: 0;
  padding: 12px 16px;
  position: absolute;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.file-wrap {
  position: relative;
  width: 100%;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.qr-code {
  background-color: var(--white);
}

.qr-card {
  padding: 35px 10px 80px;
}




/* media query */

@media (max-width: 480px) {
  .navBar {
    padding: 6px 8px;
  }

  .input-search {
    width: 150px;
    padding: 8px 16px;
  }
}

@media (max-width: 991px) {

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background-color: #19191A;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 8px 0px 32px rgba(0, 0, 0, 0.25);
    will-change: transform;
  }

  /* OPEN STATE */
  .sidebar:not(.collapsed) {
    transform: translateX(0);
  }

  /* COLLAPSED STATE */
  .sidebar.collapsed {
    transform: translateX(-100%);
  }

  /* Overlay */
  .sidebar-container::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
  }

}

@media (max-width: 576px) {
  .img-BYBIT {
    width: 45%;
  }

  .img-Invitation {
    width: 45%;
  }
}


@media (min-width:768px) and (max-width: 1250px) {
  .img-BYBIT {
    width: 50%;
  }

  .img-Invitation {
    width: 50%;
  }
}


/* Data table css */
@media screen and (max-width:575px) {

  div.dt-container div.dt-length,
  div.dt-container div.dt-search {
    text-align: start !important;
  }

  .dt-layout-start,
  .dt-layout-end {
    padding: 8px 12px !important;
  }

  div.dt-container div.dt-paging ul.pagination {
    margin: 0px 0px 10px !important;
  }

  .borderRight {
    display: none;
  }

  .mining-img {
    height: 50% !important;
  }

  .mining-trading-card-content h2 {
    font-size: 14px;
  }

  .earn-trading-card-content h2 {
    font-size: 14px;
  }
}

@media (min-width: 576px) {
  .d-md-flex {
    display: flex !important;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto !important;
  }
}


/* add css in 26/12/2025 */

/* Bottom Navbar */
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #E4B13B 0%, #7E6221 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 13px 30px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9;
  border-radius: 15px 15px 0px 0px;
}

.bottom-navbar a {
  color: var(--white);
  text-decoration: none;
  font-size: 8px;
  font-weight: 400;
  gap: 4px;
}

.bottom-navbar a:hover {
  color: var(--white);
  transform: scale(1.1);
  transition: 0.3s;
}

.bottom-navbar i {
  font-size: 20px;
  margin-bottom: 5px;
}

.borderRight {
  border: 1px solid #fff;
}

.green {
  color: #03CF65;
}

.login-success-btn {
  background-color: green !important;
  border: 0 !important;
  color: #fff !important;
  text-align: center !important;
}

/* add css 1/3/2026 */
.table-responsive {
  overflow-y: hidden !important;
}



.hidden.sm\:flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}



.table-wrapper nav {

  svg {
    height: 20px;
    width: 20px;
  }

  span[aria-current="page"]>span {
    color: #171821;
    background-color: var(--themeColor);
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    border: 0 !important;
    margin-left: 8px;
    margin-right: 4px;
  }

  /* normal pagination link */
  a[aria-label^="Go to page"] {
    padding: 4px 12px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #e4b13b21 !important;
    border: 0 !important;
  }

  /* Next button base */
  a[rel="next"] {
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #e4b13b21 !important;
    border: 0 !important;
    font-size: 14px;
    font-weight: 500;
    margin: 8px;

  }


  span.cursor-not-allowed {
    color: #171821 !important;
    background-color: var(--themeColor) !important;
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    border: 0 !important;
    font-size: 14px;
    font-weight: 500;
  }

  a[rel="prev"] {
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #e4b13b21 !important;
    border: 0 !important;
    font-size: 14px;
    font-weight: 500;
    margin: 8px;

  }

  p {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0px;
  }

  nav .flex.sm\:hidden {
    display: none;
  }

  @media (max-width: 575px) {

    .hidden.sm\:flex {
      flex-direction: column !important;
      gap: 16px;
      align-items: start !important;
      justify-content: end;
    }
  }

}