.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px 1fr;
}

.sidebar {
  padding: 28px;
  background: rgba(2,6,23,.95);
  border-right: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar .logo {
  display: block;
  margin-bottom: 35px;
}

.sidebar a,
.sidebar button {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #cbd5e1;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
}

.sidebar a.active,
.sidebar a:hover,
.sidebar button:hover {
  background: rgba(34,197,94,.1);
  color: #86efac;
}

.main {
  padding: 35px;
}

.top-mobile {
  display: none;
}

.hamburger {
  background: rgba(34,197,94,.12);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.25);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 20px;
}

.main-header h1 {
  font-size: 36px;
}

.main-header p {
  color: #94a3b8;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.stat-card,
.panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 24px;
}

.stat-card small {
  color: #94a3b8;
}

.stat-card h2 {
  margin-top: 10px;
  font-size: 28px;
}

.panel {
  margin-bottom: 24px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

code {
  display: block;
  padding: 16px;
  border-radius: 14px;
  background: #020617;
  color: #bbf7d0;
  overflow: auto;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
  white-space: nowrap;
}

th {
  color: #94a3b8;
}

.overlay {
  display: none;
}

@media(max-width:900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .main {
    padding: 22px;
  }

  .top-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }

  .sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 270px;
    height: 100vh;
    z-index: 100;
    transition: .3s;
  }

  .sidebar.show {
    left: 0;
  }

  .overlay.show {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 90;
  }

  .main-header,
  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.qris-create-box {
  max-width: 720px;
}

.qris-form-page {
  margin-top: 20px;
}

.qris-form-page label {
  display: block;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 14px;
}

.nominal-input {
  display: flex;
  align-items: center;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.nominal-input span {
  padding: 0 18px;
  color: #86efac;
  font-weight: 900;
}

.nominal-input input {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 800;
}

.qris-result-page {
  margin-top: 24px;
}

.qris-layout {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 28px;
  align-items: center;
}

.qris-preview {
  text-align: center;
}

.qris-preview small {
  color: #94a3b8;
}

.qris-preview h2 {
  margin: 8px 0 22px;
}

.qris-box {
  width: 270px;
  height: 270px;
  margin: 0 auto 22px;
  padding: 14px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 25px 70px rgba(34,197,94,.18);
}

.qris-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qris-preview h1 {
  font-size: 40px;
  margin-bottom: 14px;
}

.qris-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.info-card small {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
}

.info-card b {
  word-break: break-all;
}

.qris-actions {
  grid-column: span 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media(max-width:900px) {
  .qris-layout,
  .qris-detail {
    grid-template-columns: 1fr;
  }

  .qris-actions {
    grid-column: span 1;
  }

  .qris-box {
    width: 220px;
    height: 220px;
  }
}

.pay-navbar {
  height: 78px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2,6,23,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.pay-page {
  min-height: calc(100vh - 78px);
  padding: 60px 8%;
  display: grid;
  place-items: center;
}

.pay-container {
  width: 100%;
  max-width: 1180px;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}

.pay-container::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 280px;
  height: 280px;
  background: #22c55e;
  filter: blur(120px);
  opacity: .18;
}

.pay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.pay-badge {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
  color: #86efac;
  font-size: 12px;
  margin-bottom: 14px;
}

.pay-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.pay-header p,
.pay-note {
  color: #94a3b8;
  line-height: 1.7;
}

.pay-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.pay-left {
  text-align: center;
  padding: 30px;
  border-radius: 30px;
  background: rgba(2,6,23,.6);
  border: 1px solid rgba(255,255,255,.08);
}

.qr-premium {
  width: 330px;
  height: 330px;
  margin: 0 auto 25px;
  padding: 18px;
  border-radius: 36px;
  background: white;
  position: relative;
  box-shadow: 0 30px 90px rgba(34,197,94,.22);
}

.qr-light {
  position: absolute;
  inset: 35px;
  background: #22c55e;
  filter: blur(80px);
  opacity: .25;
  z-index: -1;
}

.qr-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pay-left h2 {
  font-size: 44px;
  margin-bottom: 10px;
}

.countdown-box {
  margin: 24px auto 0;
  max-width: 280px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.18);
}

.countdown-box small {
  color: #94a3b8;
}

.countdown-box b {
  display: block;
  font-size: 30px;
  margin-top: 8px;
  color: #86efac;
}

.pay-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-card,
.guide-box {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.detail-card small {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
}

.detail-card b {
  word-break: break-all;
}

.wide {
  grid-column: span 2;
}

.guide-box h3 {
  margin-bottom: 12px;
}

.guide-box ol {
  color: #cbd5e1;
  padding-left: 20px;
  line-height: 1.9;
}

.pay-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media(max-width:900px) {
  .pay-navbar {
    padding: 0 6%;
  }

  .pay-page {
    padding: 35px 6%;
  }

  .pay-container {
    padding: 24px;
    border-radius: 28px;
  }

  .pay-header,
  .pay-grid {
    grid-template-columns: 1fr;
  }

  .pay-header {
    flex-direction: column;
  }

  .pay-right {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: span 1;
  }

  .qr-premium {
    width: 240px;
    height: 240px;
  }

  .pay-header h1 {
    font-size: 32px;
  }

  .pay-left h2 {
    font-size: 34px;
  }
}

.balance-panel {
  margin-bottom: 24px;
}

.balance-panel small {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
}

.balance-panel h2 {
  font-size: 34px;
  margin-bottom: 18px;
  color: #86efac;
}

.balance-panel h3 {
  text-transform: uppercase;
  color: white;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.wide-panel {
  grid-column: span 2;
}

.profile-form label {
  display: block;
  margin: 16px 0 10px;
  color: #cbd5e1;
  font-size: 14px;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  outline: none;
  resize: vertical;
}

.profile-form textarea {
  min-height: 135px;
  line-height: 1.6;
}

.api-key-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

@media(max-width:900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .wide-panel {
    grid-column: span 1;
  }

  .api-key-box {
    grid-template-columns: 1fr;
  }
}

.profile-form select {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  outline: none;
}

.info-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.info-card small {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
}

.info-card b {
  word-break: break-word;
}

/* =========================
   DOCS STYLE
========================= */

.docs-panel {
  margin-bottom: 22px;
}

.docs-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.docs-head h2 {
  font-size: 22px;
  font-weight: 700;
  word-break: break-word;
}

.method {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .4px;
}

.method.get {
  background: rgba(59,130,246,.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,.22);
}

.method.post {
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.22);
}

.docs-panel p {
  color: #94a3b8;
  margin-bottom: 14px;
  line-height: 1.6;
}

.docs-panel h3 {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: 700;
}

/* CODE BLOCK */

.docs-panel pre,
#baseUrl,
#apiKey {
  width: 100%;
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: #020617;
  color: #86efac;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.06);
  line-height: 1.7;
  font-size: 13px;
  font-family: monospace;
  white-space: pre;
  box-sizing: border-box;
}

.docs-panel pre::-webkit-scrollbar,
#baseUrl::-webkit-scrollbar,
#apiKey::-webkit-scrollbar {
  height: 6px;
}

.docs-panel pre::-webkit-scrollbar-thumb,
#baseUrl::-webkit-scrollbar-thumb,
#apiKey::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}

#baseUrl,
#apiKey {
  margin-top: 14px;
}

.panel-head {
  gap: 14px;
}

.btn-outline {
  padding: 11px 18px;
  border-radius: 16px;
}

/* =========================
   DESKTOP
========================= */

@media(min-width:769px) {

  .main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px;
  }

  .docs-panel {
    padding: 26px;
  }

  .docs-panel pre {
    max-height: 500px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

  .layout {
    grid-template-columns: 1fr;
  }

  .main {
    padding: 12px;
  }

  .top-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 240px;
    height: 100vh;
    z-index: 100;
    transition: .3s;
  }

  .sidebar.show {
    left: 0;
  }

  .overlay.show {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 90;
  }

  .panel {
    padding: 15px;
    border-radius: 18px;
  }

  .main-header {
    margin-bottom: 18px;
  }

  .main-header h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .main-header p {
    font-size: 13px;
    margin-top: 6px;
  }

  .docs-head {
    gap: 8px;
    margin-bottom: 12px;
  }

  .docs-head h2 {
    font-size: 15px;
  }

  .method {
    font-size: 10px;
    padding: 5px 10px;
  }

  .docs-panel h3 {
    font-size: 13px;
    margin: 18px 0 8px;
  }

  .docs-panel p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  /* PAS LAYAR HP */

  .docs-panel pre,
#baseUrl,
#apiKey {
  width: 96%;
  max-width: 96%;
  margin: 0 auto;
    display: block;
    font-size: 11px;
    padding: 12px;
    border-radius: 14px;
    line-height: 1.6;
    overflow-x: auto;
    box-sizing: border-box;
  }

  .btn-outline {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 14px;
  }

  .panel-head {
    gap: 10px;
  }

  .panel-head h2 {
    font-size: 16px;
  }

  .panel-head p {
    font-size: 12px;
  }

}

/* =========================
   PRICING FEE BADGE
========================= */

.fee-badge {
  margin: 16px 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.18);
  color: #f87171;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.fee-badge.pro {
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.18);
  color: #60a5fa;
}

.fee-badge.enterprise {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.18);
  color: #4ade80;
}

/* FIX MOBILE KEPOTONG */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

@media(max-width:768px) {
  .layout,
  .main,
  .panel,
  .docs-panel {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .main {
    padding: 12px;
  }

  .top-mobile {
    width: 100%;
    overflow: hidden;
  }

  .top-mobile .logo {
    font-size: 22px;
    max-width: 160px;
    overflow: hidden;
    white-space: nowrap;
  }

  .docs-panel pre,
  #baseUrl,
  #apiKey {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: pre;
  }

  .panel {
    margin-left: 0;
    margin-right: 0;
  }
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;

  padding: 14px 18px;

  border-radius: 14px;

  background: #020617;

  border: 1px solid rgba(255,255,255,.08);

  color: white;

  opacity: 0;

  transform: translateY(-10px);

  transition: .25s ease;

  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: rgba(34,197,94,.35);
  color: #86efac;
}

.toast.error {
  border-color: rgba(239,68,68,.35);
  color: #fca5a5;
}

/* =========================
   INPUT GROUP
========================= */
.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

/* ICON */
.input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);

  color: #94a3b8;
  font-size: 15px;

  z-index: 5;
  pointer-events: none;
}

/* INPUT */
.input-group input {
  width: 100%;
  height: 56px;

  padding: 0 16px 0 52px;

  border-radius: 14px;
  background: #0f172a;

  border: 1px solid rgba(255,255,255,.08);

  color: white;
  outline: none;

  font-size: 15px;
}

/* SELECT */
.select-group select {
  width: 100%;
  height: 56px;

  padding-left: 56px;
  padding-right: 45px;

  border-radius: 14px;
  background: #0f172a;

  border: 1px solid rgba(255,255,255,.08);

  color: white;
  outline: none;

  appearance: none;
  -webkit-appearance: none;

  font-size: 15px;

  /* FIX */
  line-height: 52px;

  padding-top: 0;
  padding-bottom: 0;
}

/* ARROW */
.select-group::after {
  content: "\f107";

  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  right: 18px;
  top: 50%;

  transform: translateY(-50%);

  color: #94a3b8;

  pointer-events: none;
}

/* OPTION */
.select-group select option {
  background: #0f172a;
  color: white;
}

/* FOCUS */
.input-group input:focus,
.select-group select:focus {
  border-color: rgba(74,222,128,.5);

  box-shadow:
    0 0 0 3px rgba(74,222,128,.08);
}

/* LABEL */
.profile-form label {
  display: block;
  margin-bottom: 8px;

  font-size: 14px;
  color: #e2e8f0;
}

.profile-form label i {
  margin-right: 6px;
  color: #86efac;
}

.locked-plan {
  opacity: .65;
  cursor: not-allowed !important;
  filter: grayscale(.4);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 18px;

  background: rgba(2,6,23,.78);
  backdrop-filter: blur(12px);
}

.modal-overlay.show {
  display: flex;
}

.confirm-modal {
  width: 100%;
  max-width: 420px;

  padding: 30px 24px;

  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(15,23,42,.98),
    rgba(2,6,23,.98)
  );

  border: 1px solid rgba(255,255,255,.1);

  box-shadow: 0 30px 100px rgba(0,0,0,.55);

  text-align: center;
}

.modal-icon {
  width: 68px;
  height: 68px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(74,222,128,.12);
  color: #86efac;

  font-size: 30px;
}

.confirm-modal h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.confirm-modal p {
  color: #94a3b8;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.modal-actions button {
  width: 100%;
}

@media(max-width: 480px) {
  .modal-actions {
    flex-direction: column;
  }
}

.locked-plan {
  opacity: .65;
  cursor: not-allowed !important;
  filter: grayscale(.4);
}

.toast {
  position: fixed;

  top: 24px;
  right: 24px;

  min-width: 260px;
  max-width: 380px;

  padding: 16px 18px;

  border-radius: 16px;

  background: #0f172a;
  color: white;

  font-size: 14px;
  font-weight: 500;

  z-index: 99999;

  opacity: 0;
  transform: translateY(-20px);

  transition: .25s ease;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,.35);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: rgba(74,222,128,.35);
  background: #052e16;
  color: #bbf7d0;
}

.toast.error {
  border-color: rgba(248,113,113,.35);
  background: #450a0a;
  color: #fecaca;
}

/* ===============================
   INFO POPUP (CENTER – NON FULLSCREEN)
=============================== */

#infoPopup {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
}

#infoPopup.hidden {
  display: none;
}

/* ===============================
   POPUP CARD
=============================== */

#infoPopup .popup-card {
  width: 100%;
  max-width: 380px;

  background: linear-gradient(
    145deg,
    rgba(15,23,42,.98),
    rgba(2,6,23,.98)
  );

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.05);

  overflow: hidden;

  animation: popupFadeScale .28s ease;
}

/* ===============================
   HEADER
=============================== */

#infoPopup .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 18px;

  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#infoPopup .popup-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
}

#infoPopup .popup-header button {
  background: transparent;
  border: none;
  cursor: pointer;

  font-size: 18px;
  color: #94a3b8;
}

#infoPopup .popup-header button:hover {
  color: #fca5a5;
}

/* ===============================
   BODY
=============================== */

#infoPopup .popup-body {
  padding: 18px;

  font-size: 14px;
  line-height: 1.65;
  color: #cbd5e1;
}

#infoPopup .popup-body b,
#infoPopup .popup-body strong {
  color: #ffffff;
  font-weight: 600;
}

#infoPopup .popup-body a {
  color: #86efac;
  font-weight: 500;
  text-decoration: none;
}

#infoPopup .popup-body a:hover {
  text-decoration: underline;
}

/* ===============================
   FOOTER
=============================== */

#infoPopup .popup-footer {
  padding: 14px 18px;

  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.08);

  display: flex;
  justify-content: flex-end;
}

#infoPopup .popup-footer .btn {
  padding: 9px 18px;
  border-radius: 14px;

  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.28);

  color: #86efac;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
}

#infoPopup .popup-footer .btn:hover {
  background: rgba(34,197,94,.28);
}

/* ===============================
   ANIMATION
=============================== */

@keyframes popupFadeScale {
  from {
    opacity: 0;
    transform: scale(.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 480px) {
  #infoPopup .popup-card {
    margin: 0 16px;
    max-width: 100%;
  }
}

/* ===============================
   TERMS NOTE (LOGIN)
=============================== */

.terms-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.6;
}

.terms-note a {
  color: #86efac;
  text-decoration: none;
  font-weight: 500;
}

.terms-note a:hover {
  text-decoration: underline;
}
