  :root {
    color-scheme: light;
    --bg0: #ffffff;
    --bg1: #f8fafc;
    --panel: #ffffff;
    --panel2: #f8fafc;
    --panel3: #ffffff;
    --line: #d7dee8;
    --line2: #aeb9c8;
    --text: #111827;
    --muted: #64748b;
    --soft: #475569;
    --blue: #1769e0;
    --cyan: #0891b2;
    --green: #059669;
    --red: #dc2626;
    --yellow: #b45309;
    --purple: #6d5dfc;
    --pink: #be185d;
    --orange: #c2410c;
    --shadow: 0 10px 28px rgba(15,23,42,.10);
    --shadow-soft: 0 6px 16px rgba(15,23,42,.07);
    --glow: none;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    background: #ffffff;
  }

  body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    font-size: 13px;
  }

  body::before,
  body::after {
    display: none;
  }

  button,
  input {
    font: inherit;
  }

  button {
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  }

  button:hover {
    transform: translateY(-1px);
  }

  button:active {
    transform: none;
  }

  .page {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 10px 12px 36px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: stretch;
    gap: 22px;
    min-height: auto;
    padding: 14px 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .hero > div:first-child {
    display: grid;
    align-content: center;
    min-height: 230px;
    padding: 24px 28px;
    border: 1px solid var(--line2);
    border-top: 4px solid var(--blue);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 12px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #1e293b;
    background: transparent;
    box-shadow: none;
    font-size: 28px;
    font-weight: 900;
  }

  .brand-logo {
    width: 118px;
    height: 118px;
    border-radius: 0;
    object-fit: contain;
    display: block;
    background: transparent;
    box-shadow: none;
  }

  h1 {
    max-width: 820px;
    margin: 0;
    color: #172033;
    font-size: clamp(2rem, 4.8vw, 4.5rem);
    line-height: .95;
    letter-spacing: 0;
    text-shadow: none;
    text-wrap: balance;
  }

  .hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 750;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line2);
    border-top: 4px solid var(--cyan);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .stat {
    position: relative;
    overflow: hidden;
    min-height: 64px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .stat::before {
    display: none;
  }

  .stat b {
    display: block;
    color: #111827;
    font-size: 26px;
    line-height: 1;
    font-weight: 950;
    text-shadow: none;
  }

  .stat span {
    display: block;
    margin-top: 6px;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
  }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero > div:first-child {
    min-height: auto;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero > div:first-child {
    padding: 18px;
  }

  h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

.market {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line2);
  border-top: 4px solid var(--blue);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.market::before {
  display: none;
}

.toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid #d7dee8;
  background: #ffffff;
}

.toolbar-left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.toolbar-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.toolbar-right {
  justify-content: flex-end;
}

@media(max-width:980px){

.toolbar-left{
    width:100%;
}

.swap-shortcuts{
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:5px;
}

.toolbar-filters{
    width:100%;
    flex-wrap:wrap;
}

.tabs{
    width:100%;
}

.tab{
    flex:1;
}

}

.tabs {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid #d7dee8;
  border-radius: 14px;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 #ffffff;
}

.tab {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #475569;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.tab.active {
  color: #ffffff;
  border-color: #1769e0;
  background: #1769e0;
  box-shadow: 0 8px 18px rgba(23, 105, 224, 0.18);
}

.pill,
.refresh-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid #b9c8dc;
  border-left: 3px solid #1769e0;
  border-radius: 12px;
  color: #1769e0;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
}

.refresh-btn:hover,
.pill:hover {
  color: #0f766e;
  border-color: #8fb4e8;
  border-left-color: #0f766e;
  background: #f8fafc;
}

.search {
  width: min(520px, 100%);
  min-height: 48px;
  border: 1px solid #b9c8dc;
  border-left: 4px solid #1769e0;
  border-radius: 14px;
  padding: 0 16px 0 44px;
  color: #111827;
  outline: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231769e0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 15px center / 18px 18px no-repeat,
    #ffffff;
  font-size: 14px;
  font-weight: 850;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 #ffffff;
}

.search::placeholder {
  color: #8a98aa;
  font-weight: 800;
}

.search:hover {
  border-color: #8fb4e8;
}

.search:focus {
  border-color: #1769e0;
  border-left-color: #0f766e;
  box-shadow:
    0 0 0 3px rgba(23, 105, 224, 0.12),
    0 10px 24px rgba(15, 23, 42, 0.1);
}

.quick-buy{
  min-height:50px;
  display:grid;
  grid-template-columns:1fr 72px 1fr;
  align-items:center;
  gap:14px;
  padding:0 16px;
  border:1px solid #d7e6dd;
  border-left:4px solid #16a34a;
  border-radius:14px;
  background:#fff;
  box-shadow:
      0 4px 12px rgba(0,0,0,.05),
      0 1px 2px rgba(0,0,0,.03);
  transition:.25s;
}

.quick-buy:hover{
  border-color:#16a34a;
  box-shadow:
      0 8px 24px rgba(22,163,74,.12),
      0 2px 6px rgba(0,0,0,.05);
}

/* Left & Right text */
.quick-buy span{
  display:flex;
  align-items:center;
  justify-content:center;
  align-self:center;
  height:100%;
  line-height:1;
  text-align:center;
}

.quick-buy span:first-child{
  font-size:12px;
  font-weight:700;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.quick-buy span:last-child{
  font-size:13px;
  font-weight:800;
  color:#2563eb;
  text-transform:uppercase;
  letter-spacing:.5px;
}

/* Center amount */
.quick-buy input{
  width:100%;
  height:36px;
  margin:0;
  padding:0;
  border:0;
  outline:0;
  background:transparent;
  color:#111827;
  font-size:22px;
  font-weight:900;
  text-align:center;
  line-height:36px;
  align-self:center;
  justify-self:center;
}

.quick-buy{
    align-items:center;
}

.quick-buy span{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    transform:translateY(2px);
}

.quick-buy input{
    display:block;
    align-self:center;
    margin:0;
    padding:0;
    transform:translateY(1px);
}

@media (max-width: 980px) {
  .toolbar {
    grid-template-columns: 1fr;
  }

  .toolbar-left,
  .toolbar-right,
  .tabs,
  .search,
  .quick-buy {
    width: 100%;
  }

  .toolbar-right {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .tab {
    flex: 1;
  }
}

  .status-row {
    position: relative;
    z-index: 1;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    color: #64748b;
    font-size: .8rem;
    font-weight: 800;
    background: #ffffff;
  }

  .table-wrap {
    position: relative;
    z-index: 1;
    overflow-x: auto;
  }

  .table-wrap::-webkit-scrollbar {
    height: 10px;
  }

  .table-wrap::-webkit-scrollbar-track {
    background: #f1f5f9;
  }

  .table-wrap::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }

  table {
    width: 100%;
    min-width: 1240px;
    border-collapse: collapse;
    background: #ffffff;
  }

  th,
  td {
    padding: 6px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    white-space: nowrap;
  }

  th {
    color: #1d4ed8;
    font-size: .74rem;
    font-weight: 900;
    background: #f8fafc;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
  }

  td {
    color: #111827;
    font-size: .86rem;
    font-weight: 800;
  }

  tbody tr {
    background: #ffffff;
  }

  tbody tr:nth-child(even) {
    background: #f8fafc;
  }

  tbody tr:hover {
    background: #f1f5f9;
  }

  .token-main {
    gap: 10px;
    min-width: 270px;
  }

  .token-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    color: #ffffff;
    font-weight: 900;
    border: 1px solid var(--line);
    background: #ffffff;
  }

  .token-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .token-name b {
    display: block;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #111827;
  }

  .token-name span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: .76rem;
    font-weight: 600;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .chain {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    color: #111827;
    border: 1px solid #b9c8dc;
    background: #ffffff;
  }

  .chain.bsc {
    color: #7c4a03;
    border-color: #e6bc44;
    border-left: 3px solid #f3ba2f;
  }

  .chain.solana {
    color: #ffffff;
    border-color: var(--blue);
    background: var(--blue);
  }

  .positive {
    color: var(--green);
    text-shadow: none;
  }

  .negative {
    color: var(--red);
    text-shadow: none;
  }

  .blue {
    color: var(--blue);
  }

  .yellow {
    color: var(--yellow);
  }

  .copy-wrap {
    gap: 8px;
    max-width: 240px;
  }

  .address {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #475569;
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: .76rem;
    font-weight: 800;
  }

  .copy-btn {
    width: 34px;
    min-width: 34px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--blue);
  }

  .copy-btn:hover {
    border-color: #8fb4e8;
    background: #f8fafc;
  }

  .copy-btn.copied {
    border-color: var(--green);
    background: #f7fffb;
    color: var(--green);
  }

.buy-btn {
  min-width: 118px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #047857;
  border-left: 3px solid #065f46;
  border-radius: 6px;
  color: #ffffff;
  background: #059669;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(5, 150, 105, 0.16);
}

.buy-btn:hover {
  background: #047857;
  border-color: #065f46;
  transform: translateY(-1px);
}

table td:last-child .buy-btn {
  width: 118px;
  min-width: 118px;
}

  .mobile-list {
    display: none;
    position: relative;
    z-index: 1;
    padding: 10px;
    gap: 10px;
  }

  .card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line2);
    border-top: 4px solid var(--blue);
    border-radius: 16px;
    background: #ffffff;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .card::before {
    display: none;
  }

  .card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0;
  }

  .metric {
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: 10px;
    background: #ffffff;
  }

  .metric span {
    display: block;
    color: #64748b;
    font-size: .72rem;
    font-weight: 800;
    margin-bottom: 5px;
  }

  .metric b {
    display: block;
    overflow: hidden;
    color: #111827;
    text-overflow: ellipsis;
    font-size: .88rem;
  }

  .empty {
    display: none;
    padding: 34px;
    color: #64748b;
    text-align: center;
    font-weight: 800;
  }

  @media (max-width: 760px) {
    .toolbar {
      gap: 8px;
      padding: 10px;
    }

    .toolbar-right {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      width: 100%;
    }

    .search {
      width: 100%;
      min-height: 42px;
      margin: 0;
    }

    .quick-buy {
      width: 100%;
      min-height: 42px;
      margin: 0;
      padding: 0 12px;
      display: grid;
      grid-template-columns: auto minmax(70px, 1fr) auto;
      align-items: center;
      gap: 10px;
      border-radius: 10px;
    }

    .quick-buy input {
      width: 100%;
      min-width: 0;
      text-align: center;
    }

    .quick-buy span:last-child {
      min-width: max-content;
    }

    .page {
      padding-inline: 8px;
      padding-bottom: 30px;
    }

    .hero {
      min-height: auto;
      padding-top: 14px;
    }

    h1 {
      font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .hero p {
      font-size: .95rem;
    }

    .stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .table-wrap {
      display: none;
    }

    .mobile-list {
      display: grid;
    }

    .copy-wrap {
      max-width: none;
    }

    .buy-btn {
      width: 100%;
      min-height: 42px;
    }

    .status-row {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 430px) {
    .stats,
    .metrics {
      grid-template-columns: 1fr;
    }

    .card-top {
      align-items: flex-start;
      flex-direction: column;
    }

    .tabs {
      overflow-x: auto;
    }

    .tab {
      min-width: 76px;
    }
  }

  @media (min-width: 761px) {
    table th:last-child,
    table td:last-child {
      position: sticky;
      right: 0;
      z-index: 5;
      background: #ffffff;
      box-shadow: -12px 0 18px rgba(15,23,42,.10);
    }

    table tbody tr:nth-child(even) td:last-child {
      background: #f8fafc;
    }

    table th:last-child {
      z-index: 6;
      background: #f8fafc;
    }

    table td:last-child {
      min-width: 140px;
      padding-right: 16px;
    }

    table td:last-child .buy-btn {
      width: 112px;
      min-width: 112px;
    }
  }

  .top-ticker {
    width: 100%;
    height: 52px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--line2);
    border-top: 3px solid var(--blue);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .top-ticker-track {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: marketTickerMove 165s linear infinite;
    will-change: transform;
    padding-left: 10px;
  }

  .ticker-coin,
  .ticker-loading {
    height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-radius: 999px;
    color: #111827;
    background: #ffffff;
    border: 1px solid #b9c8dc;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
  }

  .ticker-coin img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
  }

  .ticker-symbol {
    color: #1e293b;
  }

  .ticker-price {
    color: var(--blue);
  }

  .ticker-up {
    color: var(--green);
  }

  .ticker-down {
    color: var(--red);
  }

  @keyframes marketTickerMove {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 760px) {
    .top-ticker {
      height: 44px;
      margin-bottom: 12px;
    }

    .top-ticker-track {
      gap: 9px;
      padding-left: 8px;
    }

    .ticker-coin,
    .ticker-loading {
      height: 32px;
      padding: 0 11px;
      font-size: 12px;
      gap: 7px;
    }

    .ticker-coin img {
      width: 22px;
      height: 22px;
    }
  }

  .load-more-trigger {
    height: 120px;
    display: block;
  }


  .stat-networks {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .network-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .network-icons img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 3px;
  }

  .footer-warning-icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
  }

  tbody tr {
    height: 38px !important;
  }

  tbody td {
    height: 38px !important;
    padding: 2px 10px !important;
    vertical-align: middle !important;
    line-height: 1 !important;
  }

  .token-cell {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    height: 34px !important;
    max-height: 34px !important;
    overflow: hidden !important;
    vertical-align: middle !important;
  }

  .token-logo-mini {
    display: inline-grid !important;
    place-items: center !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    overflow: hidden !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .token-logo-mini img {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    object-fit: cover !important;
  }

  .token-text-mini {
    display: inline-grid !important;
    gap: 0 !important;
    min-width: 0 !important;
    line-height: 1 !important;
  }

  .token-text-mini b {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 13px !important;
  }

  .token-text-mini small {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #64748b !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 11px !important;
  }

  .copy-btn-clean {
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--blue) !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .copy-btn-clean:hover {
    color: #0f766e !important;
    background: transparent !important;
  }

  .copy-btn-clean.copied {
    color: var(--green) !important;
    background: transparent !important;
  }
  
.swap-shortcuts{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.swap-title{
    font-size:15px;
    font-weight:900;
    color:#1e3a8a;
    white-space:nowrap;
}

.swap-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    height:42px;
    padding:0 14px;
    border:1px solid #cdd8e8;
    border-radius:14px;
    background:#fff;
    text-decoration:none;
    color:#2563eb;
    transition:.25s;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.swap-btn:hover{
    transform:translateY(-2px);
    border-color:#2563eb;
    box-shadow:0 10px 24px rgba(37,99,235,.15);
}

.swap-btn img {
    width: 20px;       /* Fixed size for icons */
    height: 20px;
    object-fit: contain; /* Ensures image isn't stretched */
    display: inline-block;
    vertical-align: middle;
}

.swap-btn i{
    font-size:18px;
    color:#2563eb;
}

.swap-btn.route{
    padding:0 12px;
}

.swap-btn.route i{
    font-size:14px;
    color:#64748b;
}

@media (max-width:1100px) and (min-width:981px){

  .toolbar{
    align-items:start;
  }

  .toolbar-left,
  .toolbar-right{
    align-items:flex-start;
  }

  .toolbar-filters{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    width:100%;
    margin-top:2px; /* very small gap */
  }

  .tabs{
    width:100%;
    display:flex;
    margin-bottom:0;
  }

  .tab{
    flex:1;
  }

  .pill,
  .refresh-btn{
    margin-top:0;
  }

}

.qty-box{
    position:relative;
    width:72px;
    height:36px;
}

.qty-box input{
    width:100%;
    height:100%;
    padding-right:18px;
    border:0;
    background:transparent;
    text-align:center;
    font-size:22px;
    font-weight:900;
    outline:none;
}

.qty-arrows{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:16px;

    display:flex;
    flex-direction:column;
}

.qty-arrows button{
    flex:1;
    border:0;
    background:transparent;
    cursor:pointer;
    padding:0;
    color:#64748b;
    transition:.2s;
}

.qty-arrows button:hover{
    color:#2563eb;
    background:#f1f5f9;
}

.qty-arrows i{
    font-size:9px;
}

/* ===========================
   Apps Web Store Footer
=========================== */

