/*
 * Droidfirm
 * Copyright 2026 Droidfirm LLC.
 * Licensed under MIT ()
 */
 * {
  margin:0;
  padding:0;
  box-sizing:border-box;
} 
:root {
  --fxg-white: #ffffff;
  --fxg-orange: #fc9506;
  --fxg-dark-brown: #6c3015;
  --fxg-dark: #222222;
  --fxg-black: #000000;
  --fxg-light-gray: #f6f6f6;
  --fxg-gradient-white: #737373;
  --fxg-gradient-black: #737373;
}
@font-face {
  font-family: "OswaldRegular";
  src: url("font/Oswald-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "OswaldBold";
  src: url("font/Oswald-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLight";
  src: url("font/Poppins-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsMedium";
  src: url("font/Poppins-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsRegular";
  src: url("font/Poppins-Regular.woff2") format("woff2");
  font-display: swap;
}
body {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: 0; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  position: relative;
  font-family: 'IBM Plex Sans', sans-serif;
  background: #060912;
  color: #f1f5f9;
  /* overflow: auto; */
  height: 100vh;
  height: 100dvh;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none; /* Safari and Chrome */
}
/* For all text selections */
::selection {
  background-color: var(--fxg-orange); /* Yellow background */
  color: var(--fxg-white);
}

/* For Firefox */
::-moz-selection {
  background-color: var(--fxg-orange);
  color: var(--fxg-white);
}


  ::-webkit-scrollbar { width: 6px; height: 6px; }
  ::-webkit-scrollbar-track { background: #0a0e1a; }
  ::-webkit-scrollbar-thumb { background: #1f2937; border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: #374151; }

  /* Logo Styles */
  .logo-container {
    display: flex;
    align-items: center;
    gap: 1vw;
  }
  
  .logo-img {
    width: 4vw;
    height: 4vw;
    object-fit: contain;
    border-radius: 1vw;
  }
  
  .logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.3);
  }
  
  .logo-text {
    color: white;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .logo-brand-text {
    color: white;
    font-weight: 700;
    font-size: 3vw;
    letter-spacing: -0.5px;
  }
  
  .logo-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  }

  /* Gradient text */
  .gradient-text {
    background: linear-gradient(135deg, #4bb4b3, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .digit-circle {
    transition: stroke-dashoffset 0.35s ease-out, stroke 0.35s ease;
  }

  /* Triangle Marker Animation */
  .triangle-marker {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    filter: drop-shadow(0 0 4px currentColor);
  }
  
  .digit-active .triangle-marker {
    opacity: 1;
    animation: bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  @keyframes bounce {
    0% { transform: translateX(-50%) translateY(8px); opacity: 0; }
    50% { transform: translateX(-50%) translateY(-3px); opacity: 1; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  }

  .digit-active .digit-circle {
    stroke-width: 4px;
    filter: drop-shadow(0 0 6px currentColor);
  }
  
  .digit-active .digit-text {
    font-weight: 800;
    font-size: 1.1rem;
  }

  /* Pulse ring on active digit */
  .digit-active::before {
    content: '';
    position: absolute;
    inset: -1vw;
    border-radius: 50%;
    border: 2px solid #00ab96;
    background: #00ab96;
    opacity: 0;
    animation: pulseRing 1.5s ease-out infinite;
  }
  
  @keyframes pulseRing {
    0% {transform: scale(0.6);opacity: 0.6;}
    100% {transform: scale(1.1);opacity: 0;}
  }

  .flash-up { animation: flashGreen 0.5s ease-out; }
  .flash-dn { animation: flashRed 0.5s ease-out; }
  @keyframes flashGreen { 0% { background: rgba(16, 185, 129, 0.2); } 100% { background: transparent; } }
  @keyframes flashRed { 0% { background: rgba(255, 68, 79, 0.2); } 100% { background: transparent; } }

  .input-dark {
    background: #111827;
    border: 1px solid #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace;
    width: 100%;
    outline: none;
    text-align: center;
  }
  .input-dark:focus { border-color: #4bb4b3; }

  .btn-green { 
    background: linear-gradient(135deg, #10b981, #14b8a6); 
    color: white; 
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }
  .btn-green:hover { 
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
  }
  .btn-red { 
    background: linear-gradient(135deg, #ff444f, #e11d48); 
    color: white; 
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 68, 79, 0.3);
  }
  .btn-red:hover { 
    box-shadow: 0 6px 20px rgba(255, 68, 79, 0.4);
    transform: translateY(-1px);
  }
  .btn-green:active, .btn-red:active { transform: scale(0.98); }

  .layout-grid { 
    display: grid; 
    grid-template-columns: 280px 1fr 300px; 
    height: calc(100vh - 56px); 
  }
  
  @media(max-width: 1024px) {
    .layout-grid { grid-template-columns: 1fr; }
    .col-left, .col-right { display: none; }
    .col-center { display: flex; }
  }

  /* Card hover effects */
  .trade-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .trade-card-hover:hover {
    transform: translateY(-2px);
  }
  .tv-lightweight-charts {
    height: calc( 100vh - 8rem) !important;
    width: 100% !important;
  }
  #digitContainer {
    background-color: transparent;
    --tw-backdrop-blur: blur(0);
    backdrop-filter: none;
    --tw-shadow: none;
    --tw-shadow-colored: none;
    box-shadow: none;
    bottom: 2vw;
    gap: 0;
    z-index: 10;
    max-width: 100%;
  }
  .fxg-loader {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 52;
  background-color: #0b0e1a78;
  backdrop-filter: blur(5px);
  box-shadow: none;
  bottom: 0vw;
  gap: 0;
  }
  .fxg-loader-logo {
    width: 30vw;
    animation: anima 4s both infinite;
  }
  @keyframes anima {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0px);
  }
}
.fxg-bars {
  display: none;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}

.fxg-bar {
  width: 7px;
  height: 18px;
  margin: 0 9px;
  border-radius: 10px;
  animation: loading_fxg 1s ease-in-out infinite;
  background-color: #10b981;
}

.fxg-bar:nth-child(1) {
  animation-delay: 0.01s;
}

.fxg-bar:nth-child(2) {
  animation-delay: 0.09s;
}

.fxg-bar:nth-child(3) {
  animation-delay: 0.19s;
}

.fxg-bar:nth-child(4) {
  animation-delay: 0.29s;
}

@keyframes loading_fxg {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1, 2.5);
  }

  40% {
    transform: scale(1);
  }
}
@keyframes iosDropIn {
  0% {
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
  }
  60% {
    transform: translateY(8px) scale(1.02);
    opacity: 1;
  }
  80% {
    transform: translateY(-4px) scale(0.99);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes iosSlideOut {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  30% {
    transform: translateY(-8px) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-120%) scale(0.95);
    opacity: 0;
  }
}
.fxg-toast {
  top: 12vw !important;
  z-index: 500;
}
.flex-1 {
    flex: 1 !important;
}
.bg-emerald-500\/10 {
  background-color: color-mix(in oklab, lab(66.9756% -58.27 19.5419) 10%, transparent);
}
.bg-emerald-500\/20 {
  background-color: color-mix(in oklab, lab(66.9756% -58.27 19.5419) 20%, transparent);
}
.border-emerald-500\/20 {
  border-color: lab(66.9756% -58.27 19.5419) !important;
}
.text-emerald-400 {
  color: lab(78.503% -64.9265 39.7492);
}
.text-emerald-400\/60 {
  color: color-mix(in oklab, lab(78.503% -64.9265 39.7492) 60%, transparent);
}
.ring-emerald-500\/30 {
  --tw-ring-color: color-mix(in oklab, lab(66.9756% -58.27 19.5419) 30%, transparent);
}
.text-rose-400 {
  color: lab(64.4125% 63.0291 19.2068);
}
.text-rose-400\/60 {
  color: color-mix(in oklab, lab(64.4125% 63.0291 19.2068) 60%, transparent);
}
.text-amber-400 {
  color: lab(80.1641% 16.6016 99.2089);
}
.text-amber-400\/60 {
  color: color-mix(in oklab, lab(80.1641% 16.6016 99.2089) 60%, transparent);
}
.ring-amber-500\/30 {
  --tw-ring-color: color-mix(in oklab, lab(72.7183% 31.8672 97.9407) 30%, transparent);
}
.bg-amber-400 {
  background-color: lab(80.1641% 16.6016 99.2089);
}
.bg-amber-500 {
    background-color: lab(72.7183% 31.8672 97.9407);
}
.bg-amber-500\/10 {
  background-color: color-mix(in oklab, lab(72.7183% 31.8672 97.9407) 10%, transparent);
}
.bg-amber-500\/20 {
  background-color: color-mix(in oklab, lab(72.7183% 31.8672 97.9407) 20%, transparent);
}
.border-amber-500\/20 {
  border-color: lab(72.7183% 31.8672 97.9407) !important;
}
.bg-emerald-400 {
    background-color: lab(78.503% -64.9265 39.7492);
}
.bg-emerald-500 {
    background-color: lab(66.9756% -58.27 19.5419);
}
.bg-rose-500 {
    background-color: lab(56.101% 79.4328 31.4532);
}
.bg-rose-500\/20 {
  background-color: color-mix(in oklab, lab(56.101% 79.4328 31.4532) 20%, transparent);
}
.nav-side {
  display: none !important;
}
.nav-side.show {
  display: flex !important;
  z-index: 302;
}
.nav-side-overlay {
  display: none;
}
.nav-side-overlay.show {
  display: block;
  z-index: 302;
}
.not-bar {
  display: none;
}
.not-bar.show {
  display: block;
  z-index: 300;
}
.acc-menu {
  display: none;
}
.acc-menu.show {
  display: block;
}
.deposit-cont {
  display: none;
}
.deposit-cont.show {
  display: block;
}
.deposit-method {
  display: none;
}
.deposit-method.show {
  display: block;
}
.pm {
  display: none;
}
.pm.show {
  display: block;
}
.mp {
  display: none;
}
.mp.show {
  display: block;
}
.dpm {
  display: none;
}
.dpm.show {
  display: block;
}
.cd {
  display: none;
}
.cd.show {
  display: block;
}
.bit {
  display: none;
}
.bit.show {
  display: block;
}
.fxg {
  display: none;
}
.fxg.show {
  display: block;
}
.market-list {
  display: none;
  max-height: 56vw !important;
}
.market-list.show {
  display: block;
}
.contract-list {
  display: none;
  max-height: 56vw !important;
}
.contract-list.show {
  display: block;
}
.chart-box {
  display: none;
  top: 5vw;
  height: 100%;
  max-height: 69.4vw;
  max-height: calc(100% - 5vw);
  max-width: 70vw;
  left: 6vw;
}
.chart-box.show {
  display: block;
}
.trade-box {
  display: none;
  bottom: 0;
  right: 0;
  top: 5vw;
  width: 24vw;
}
.trade-box.show {
  display: flex;
}
.pos-nav {
  left: 0;
  top: 4.8vw;
  height: calc(100% - 4.8vw);
  width: 6vw !important;
}
.pos-grid {
  height: calc( 100% - 5.3vw);
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.pos-grid button {
  flex-direction: column;
}
.tsm {
  display: none;
}
.tsm.show {
  display: flex;
}
.positions {
  display: none;
  position: relative;
  top: 8.8vw;
}
.positions.show {
  display: flex;
  max-height: 90.5dvh;
  height: 100%;
  z-index: 300;
  background: #05060c;
}
.accounts-badge {
      top: 3vw;
    right: 2vw;
}

.ai-s {
  display: none;
}
.ai-s.show {
  display: flex;
}
.cur .bdr {
  background-color: lab(75.0771% -60.7313 19.4147);
}
.op {
  color: lab(47.7841% -.393182 -10.0268);
}
.op.cur {
  color: lab(75.0771% -60.7313 19.4147);
}
.cl {
  color: lab(47.7841% -.393182 -10.0268);
}
.cl.cur {
  color: lab(75.0771% -60.7313 19.4147);
}
.tr {
  color: lab(47.7841% -.393182 -10.0268);
}
.tr.cur {
  color: lab(75.0771% -60.7313 19.4147);
}
.op-d {
  display: none;
}
.op-d.show {
  display: block;
  height: 100%;
  padding-bottom: 80vw;
}
.cl-d {
  display: none;
}
.cl-d.show {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  height: 100%;
  padding-bottom: 80vw;
}
.tr-d {
  display: none;
}
.tr-d.show {
  display: flex;
  gap: 2vw;
  flex-direction: column;
  height: 100%;
  padding-bottom: 80vw;
}
.twl {
  display: none;
}
.twl.show {
  display: block;
  z-index: 301;
}
.tst {
      width: 90vw !important;
    background: #ffffff !important;
    color: #222222 !important;
    font-size: 2.5vw !important;
}
.flc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
}
.fld {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
}
.ticks-container {
  width: 100%;
  padding: 1vw 2vw;
  display: none;
}

.ticks-container.show {
    display: block;
}

.ticks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vw;
}

.ticks-title {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9ca3af;
}

.ticks-count {
  font-size: 14px;
  font-weight: bold;
  color: #41de74;
  background: rgb(84 255 140 / 14%);
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 32px;
  text-align: center;
}

.ticks-dots {
  position: relative;
  padding: 8px 0;
}

.ticks-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
  border-radius: 1px;
}

.ticks-progress {
  height: 100%;
  background: linear-gradient(90deg, #41de74, #41de74);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.dots-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tick-dot {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgb(24, 24, 27);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0;
}

.tick-dot span {
  font-size: 0.5vw;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.tick-dot:hover {
  border-color: rgba(96, 165, 250, 0.5);
  transform: scale(1.1);
  background: rgba(59, 130, 246, 0.1);
}

.tick-dot:hover span {
  color: rgba(255, 255, 255, 0.7);
}

.tick-dot.active {
  border-color: #41de74;
  background: #41c460;
  box-shadow: 0 0 16px rgb(65 222 116 / 38%);
  transform: scale(1.15);
}

.tick-dot.active span {
  color: white;
  font-size: 11px;
}

/* Pulse animation for active dot */
.tick-dot.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #41de74;
  animation: tickPulse 2s infinite;
}

@keyframes tickPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.accounts {
  display: none;
  top: 5.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 5vw 0 0 6vw;
}
.accounts.show {
  display: block;
}
.markets {
  display: none;
  top: 5vw;
  max-height: 94.5dvh;
  height: calc( 100% - 5vw);
  overflow: auto;
  padding: 5vw 0 0 6vw;
}
.markets.show {
  display: block;
}
.profile {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 5vw 2vw 0 8vw;
}
.profile.show {
  display: block;
}
.profile-settings {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 13vw 4vw 0 4vw;
}
.profile-settings.show {
  display: block;
}
.verify-settings {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 13vw 4vw 0 4vw;
}
.verify-settings.show {
  display: block;
}
.tfa-settings {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 13vw 4vw 0 4vw;
}
.tfa-settings.show {
  display: block;
}
.password-settings {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 13vw 4vw 0 4vw;
}
.password-settings.show {
  display: block;
}
.withdraw {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 13vw 4vw 0 4vw;
}
.withdraw.show {
  display: block;
}
.withdrawal-type-btn {
  background: linear-gradient(180deg, #121826 0%, #0f1521 100%);
    border: 1px solid rgba(255, 255, 255, .05);
}
.withdrawal-type-btn.real.active {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.3) 0%, #0f1521 100%);
    border: 1px solid rgba(255, 255, 255, .05);
}
.withdrawal-type-btn.earnings.active {
  background: linear-gradient(180deg, rgb(168 85 247 / 0.2) 0%, rgb(168 85 247 / 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, .05);
}


.withdrawal-type-btn.real.active i {
  color: lab(78.503% -64.9265 39.7492);
}
.withdrawal-type-btn.earnings.active i {
  color: rgb(192 132 252 / 1);
}
.bldc {
    border: 1px solid rgb(192 132 252);
    background: linear-gradient(180deg, rgb(75 52 98 / 62%), rgb(168 85 247 / 0.1));
}
.bldc.real {
  border: 1px solid rgba(16, 185, 129, .35);
    background: linear-gradient(180deg, rgba(16, 185, 129, .14), rgba(16, 185, 129, .05));
}
.bldc .icw {
  background-color: 
rgb(168 85 247 / 0.2);
}
.bldc.real .icw {
  background-color: 
color-mix(in oklab, lab(66.9756% -58.27 19.5419) 10%, transparent);
}
.bldc .icn {
  color: rgb(192 132 252 / 1);
}
.bldc.real .icn {
  color: lab(78.503% -64.9265 39.7492);
}
.refer-modal {
    top: 4.8vw;
    max-height: 92.8dvh;
    height: 100%;
    width: 100%;
}
.slides-wrapper {
  
}
.slides-container {
    padding: 2vw;
}
.slide {
  display: none;
  height: 26vw;
}
.slide.active {
  display: block;
}
.slick-slide {
  height: 60vw;
  width: 100%;
  outline: none;
}
.settings-card{
            background:linear-gradient(180deg,#121826 0%,#0f1521 100%);
            border:1px solid rgba(255,255,255,.05);
            transition:.2s ease;
        }

        .settings-card:hover{
            background:#161d2d;
            border-color:rgba(255,255,255,.08);
        }

        .menu-icon{
            width:42px;
            height:42px;
            border-radius:12px;
            display:flex;
            align-items:center;
            justify-content:center;
            background:rgba(255,255,255,.04);
            border:1px solid rgba(255,255,255,.05);
        }

        .gold-dot{
            width:8px;
            height:8px;
            border-radius:999px;
            background:#f59e0b;
            box-shadow:0 0 12px #f59e0b;
        }

        .danger-btn{
            background:rgba(239,68,68,.08);
            border:1px solid rgba(239,68,68,.15);
        }

        .danger-btn:hover{
            background:rgba(239,68,68,.14);
        }
        .profile-card{
          background: linear-gradient(180deg,#1d1d1d,#111111);
          border:1px solid rgba(255,255,255,0.03);
          box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
        }

        .green-glow{
          box-shadow:
            0 0 0 1px #8bff1f,
            0 0 10px rgba(139,255,31,.45),
            0 0 18px rgba(139,255,31,.15);
        }

        .blue-dot{
          box-shadow:0 0 8px #3b82f6;
        }
.IGFhwo1M {
    box-sizing: border-box;
    height: 100%;
    padding: 0 1rem;
}
.D3V6AUcV {
    border: none;
    border-radius: 3vw;
    color: #fff;
    height: auto;
    min-height: 26vw;
    overflow: hidden;
    padding-right: 7.5rem;
    position: relative;
    text-align: start;
    width: 100%;
}
.TzJRg5SE {
    color: #0000;
    height: auto;
    max-height: 100%;
    max-width: 7.5rem;
    min-width: 7.5rem;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}
#slidesIndicators {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin-top: 4vw;
}
.slides-dot {
  background-color: #ffffff;
  border-radius: 50%;
  display: block;
  width: 2vw;
  height: 2vw;
  cursor: pointer;
  transition: all 0.3s;
}
.slides-dot.active {
  background-color: #22c55e;
}

.HU6cWL4e {
    background-color: rgb(242 242 242 / 8%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    overflow: hidden;
    position: relative;
    text-align: inherit;
    transition: background-color .3s ease-out;
    width: 100%;
}
.Po7Vey9N {
    min-height: 22vw;
}
.uvhObgnn {
    height: 20vw;
    max-width: -webkit-max-content;
    max-width: max-content;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
}
.GDCGDytT {
  display: flex;
  flex-direction: row;
  gap: 4vw;
  padding: 0 2vw;
  margin-top: 2vw;
  flex-wrap: wrap;
}
#purchasesRewardsSection {
  width: 100%;
}
.BBSp5Isy {
    display: block;
    margin-top: auto;
    padding: 1rem;
    width: 100%;
    z-index: 0;
}
.glass-card{
            background:linear-gradient(180deg,#121826 0%,#0f1521 100%);
            border:1px solid rgba(255,255,255,.05);
        }

        .tab-btn.active{
            color:#8ada36;
        }

        .tab-btn.active .tab-line{
            opacity:1;
        }

        .tab-line{
            opacity:0;
            transition:.2s;
        }

        .trade-card{
            background:#0f1521;
            border:1px solid rgba(255,255,255,.05);
        }
.blc {
  display: flex;
  justify-content: center;
  gap: 8vw;
}
.ct-c {
  width: 42vw;
}
        .account-card{
          width: 40vw !important;
        }
        .account-card.active-demo{
            border:1px solid rgba(245,158,11,.35);
            background:linear-gradient(180deg,rgba(245,158,11,.14),rgba(245,158,11,.05));
        }

        .account-card.active-real{
            border:1px solid rgba(16,185,129,.35);
            background:linear-gradient(180deg,rgba(16,185,129,.14),rgba(16,185,129,.05));
        }
    .chart-view {
        height: 100%;
        padding-bottom: 10vw;
    }
  .tph {
    height: 5vw !important;
  }
  .rfmd {
    max-width: 100% !important;
    margin: 0 2vw 0 8vw;
  }
  .rfmc {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }
#qr-code-container-ref {}
  .qr-code-container {
    text-align: center;
    
  }
/* Large phones / small tablets (481px - 600px) */
@media (max-width: 768px) {
  header {
    max-height: 10.18vw;
    z-index: 301;
  }
  header button {
    max-height: 7.12vw;
  }

button.acc {
  max-height: unset;
}
.tv-lightweight-charts {
    height: 100% !important;
    width: 100vw !important;
}
.trade-box {
  height: 80.4vw;
  width: 100%;
  bottom: 10.2vw;
  top: unset;
}
  .trade-box button {
    min-height: 16vw;
  }

button.tick-dot {
    min-height: 4vw;
}
  .tbi {
    min-height: 16vw;
  }
  .tbs {
    min-height: 11vw;
    height: 100%;
  }
.chart-view {
    height: 100%;
    padding-bottom: 10vw;
}

#tvChartContainer {
    height: 100%;
}
  #digitContainer {
    display: grid;
    gap: 4vw;
    bottom: 5vw;
    grid-auto-flow: row dense;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    left: 41%;
}
  .acc-bal {
    font-size: 3.2vw !important;
    line-height: 1.6;
  }
  .acc-toggle {
    width: 38vw;
    padding: 2vw !important;
  }
  .navbar-toggle {
    padding: 0vw !important;
  }
  .acc-symbol {
    height: 4.8vw !important;
  width: 4.8vw!important;
  }
  .deposit-b {
    display: flex;
    align-items: center;
    padding: 2vw !important;
    font-size: 3.2vw !important;
    line-height: 1.6;
  }
  .deposit-success {
    z-index: 304 !important;
    top: 12vw !important;
    left: 4vw !important;
  }
    .logo-img {
    width: 6vw;
    height: 6vw;
    object-fit: contain;
    border-radius: 2vw;
  }
  .chart-box {
  display: none;
  top: 9.4vw;
  height: 100%;
  max-height: 69.4vw;
  max-height: calc(100% - 99.4vw);
  max-width: unset;
  left: unset;
}
  .pos-nav {
  bottom: 0;
  height: 10vw;
  width: 100% !important;
  top: unset;
}
  .pos-grid {
  height: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.pos-grid button {
  flex-direction: row;
}
  .tph {
    height: 10.18vw !important;
  }
  .accounts {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 9vw 0 0 0;
}
  .markets {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 9vw 0 0 0;
}
    .digit-active::before {
    content: '';
    position: absolute;
    inset: -2vw;
    border-radius: 50%;
    border: 2px solid #00ab96;
    background: #00ab96;
    opacity: 0;
    animation: pulseRing 1.5s ease-out infinite;
  }
  .GDCGDytT {
  display: flex;
  flex-direction: column;
  gap: 4vw;
  padding: 0 4vw;
  margin-top: 4vw;
}
  .slides-container {
    padding: 4vw 6vw;
  
}
  .slide {
  display: none;
  height: 30vw;
}
  .profile {
  display: none;
  top: 9.4vw;
  max-height: 94.5dvh;
  height: 100%;
  overflow: auto;
  padding: 13vw 4vw 0 4vw;
}
          .account-card{
          width: 100% !important;
        }
  .blc {
  display: block;
}
  .ct-c {
    width: unset;
  }
  .uvhObgnn {
    height: 58vw;
    max-width: -webkit-max-content;
    max-width: max-content;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
}
  .Po7Vey9N {
    min-height: 60vw;
}
.refer-modal {
    top: 10vw;
    max-height: 89.5dvh;
    height: 100%;
    overflow: auto;
    width: 100%;
}
 .rfmd {
    margin: 0 3vw;
 }
   .rfmc {}
  #qr-code-container-ref {
    width: 40vw;
    height: 40vw;
  }
  .qr-code-container {
    text-align: center;
    width: max-content;
    padding: 2vw 12vw;
    margin: 0 12vw;
    border-width: 1px;
    border-radius: 0.5rem;
    background-color: rgb(255 255 255 / 0.02);
    border-color: rgb(255 255 255 / 0.04);
  }
  .withdraw-method {}
  .withdraw-method.method-active {
        background-color: 
color-mix(in oklab, lab(66.9756% -58.27 19.5419) 10%, transparent);
    border: unset;
  }
}