/* =====================================================================
   LeadsNimble Add-Ons Menu — the price list behind the Plan Builder's
   configurator, for the detailed /pricing/ page.

   Two halves, deliberately styled as two different things because they ARE
   two different things:

     · FLAT ADD-ONS — a card bed. One rate, one line, scannable in any order.
     · GRADUATED METERS — a small ladder table each. The whole point is that
       the rate CHANGES as the volume grows, and a band-by-band table is the
       only shape that shows a rate changing. Rendering these as more cards
       would flatten the one fact they exist to communicate.

   Built from the design system's own vocabulary: the aurora-nightfall tokens
   resolved to literals and re-scoped under --lnad-*, LIGHT the default mode,
   [data-mode="dark"] flipping the palette, and the dark palette control
   section emitted at [data-mode="dark"] {{WRAPPER}} .lnew-addons so it
   outranks the light controls on specificity, not source order.

   CONTROLS WRITE TOKENS; MEDIA QUERIES WRITE PROPERTIES — an Elementor
   `default` emits an unconditional (0,2,0) desktop rule that outranks the
   (0,1,0) @media rules here at every width. See
   [[elementor-control-css-beats-media-queries]].
   ===================================================================== */

/* Local reset, :where()-wrapped so it carries ZERO specificity. */
.lnew-addons, .lnew-addons *, .lnew-addons *::before, .lnew-addons *::after { box-sizing: border-box; }

/* THE `hidden` GUARD. A UA's `[hidden] { display: none }` carries ZERO
   specificity, so any `display: flex` / `inline-flex` / `grid` in this file
   out-ranks it and an element hidden by attribute stays visible. `!important`
   is deliberate: `hidden` is not a style preference, it is a statement that
   the element is not part of the page. */
.lnew-addons [hidden] { display: none !important; }

:where(.lnew-addons) :where(a) { color: inherit; text-decoration: none; }
:where(.lnew-addons) :where(p) { margin: 0; }
:where(.lnew-addons) :where(ul, ol) { margin: 0; padding: 0; list-style: none; }
:where(.lnew-addons) :where(li) { margin: 0; }
:where(.lnew-addons) :where(svg) { display: block; }
:where(.lnew-addons) :where(h1, h2, h3, h4, h5) { margin: 0; }
:where(.lnew-addons) :where(b, strong) { font-weight: 700; }
:where(.lnew-addons) :where(i, em) { font-style: normal; }

.lnew-addons {
  /* ---- motion ---- */
  --lnad-ease: cubic-bezier(.22,1,.36,1);
  --lnad-rv-dist: 70px;
  --lnad-rv-dur: 1.2s;
  --lnad-rv-step: 70ms;

  /* ---- geometry ---- */
  --lnad-maxw: 1360px;
  --lnad-gutter: 28px;
  --lnad-head-align: center;
  --lnad-title-size: clamp(31px, 3.6vw, 47px);
  --lnad-lead-size: 18px;

  --lnad-toggles-mb: 34px;
  --lnad-toggle-pad: 4px;
  --lnad-toggle-btn-pad-y: 9px;
  --lnad-toggle-btn-pad-x: 18px;
  --lnad-toggle-size: 14px;

  --lnad-cols: 3;
  --lnad-gap: 18px;
  --lnad-card-radius: 20px;
  --lnad-card-pad: 24px;

  --lnad-ic: 40px;
  --lnad-ic-radius: 13px;
  --lnad-name-size: 16.5px;
  --lnad-unit-size: 13px;
  --lnad-desc-size: 13.5px;
  --lnad-amt-size: 27px;
  --lnad-cur-size: 16px;
  --lnad-suffix-size: 12.5px;

  --lnad-band-pad-y: 13px;

  --lnad-note-top: 30px;

  /* ---- type ---- */
  --lnad-font-sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --lnad-font-head: 'Parkinsans', 'DM Sans', sans-serif;

  /* ---- palette · LIGHT ---- */
  --lnad-bg: #f0f4fb;
  --lnad-ink: #12122a;
  --lnad-body: #454a63;
  --lnad-muted: #6b7089;
  --lnad-muted-2: #9498b0;
  --lnad-line: #e7e9f4;
  --lnad-line-2: #f0f1f8;
  --lnad-surface: #ffffff;
  --lnad-well: #f7f8fd;

  --lnad-eyebrow-bg: #eef0ff;
  --lnad-eyebrow-ink: #5b46e0;
  --lnad-eyebrow-border: #e0e3ff;

  --lnad-grad-1: #6366f1;
  --lnad-grad-2: #a855f7;
  --lnad-grad-3: #22d3ee;
  --lnad-accent-grad: linear-gradient(100deg, var(--lnad-grad-1) 0%, var(--lnad-grad-2) 52%, var(--lnad-grad-3) 100%);
  --lnad-accent: #6d5cf5;
  --lnad-accent-ink: #ffffff;
  --lnad-accent-halo: rgba(139,124,255,.28);
  --lnad-accent-soft-bg: #eef0ff;
  --lnad-accent-soft-border: #e0e3ff;

  --lnad-toggle-bg: #cfd7ee;
  --lnad-toggle-active-bg: #ffffff;
  --lnad-toggle-active-ink: #12122a;

  --lnad-glass-blur: none;
  --lnad-glass-hi: transparent;

  /* the four card hues, cycling every four — the same curated indigo / teal
     / rose / amber the homepage trust pills carry, so the two beds read as
     one family. Literals in that widget too, hence mode-INDEPENDENT here. */
  --lnad-hue-1-bg: #e7e4fb; --lnad-hue-1-ink: #6a4ff0;
  --lnad-hue-2-bg: #d8f0f3; --lnad-hue-2-ink: #0e97a8;
  --lnad-hue-3-bg: #fde2e7; --lnad-hue-3-ink: #e5486d;
  --lnad-hue-4-bg: #fceed4; --lnad-hue-4-ink: #cf7d13;

  --lnad-sh-sm-1: rgba(30,30,80,.05);
  --lnad-sh-sm-2: rgba(30,30,80,.05);
  --lnad-sh-md: rgba(30,30,80,.10);
  --lnad-shadow-sm: 0 1px 2px var(--lnad-sh-sm-1), 0 2px 6px var(--lnad-sh-sm-2);
  --lnad-shadow-md: 0 12px 34px var(--lnad-sh-md);
  --lnad-card-shadow: var(--lnad-shadow-sm);

  position: relative;
  overflow-x: clip;
  padding-top: 112px;
  padding-bottom: 112px;
  background: var(--lnad-bg);
  font-family: var(--lnad-font-sans);
  color: var(--lnad-body);
  font-size: 17px;
  /* stated, not inherited — see [[wp-theme-inherited-type-leak]] */
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
}

[data-mode="dark"] .lnew-addons {
  --lnad-bg: #0a0a12;
  --lnad-ink: #f5f6ff;
  --lnad-body: #b8bed6;
  --lnad-muted: #949bbb;
  --lnad-muted-2: #6d7398;
  --lnad-line: rgba(255,255,255,.10);
  --lnad-line-2: rgba(255,255,255,.06);
  --lnad-surface: rgba(255,255,255,.045);
  --lnad-well: rgba(255,255,255,.03);

  --lnad-eyebrow-bg: rgba(255,255,255,.05);
  --lnad-eyebrow-ink: #cdc6ff;
  --lnad-eyebrow-border: rgba(255,255,255,.12);

  --lnad-accent: #8b7cff;
  --lnad-accent-soft-bg: rgba(139,124,255,.12);
  --lnad-accent-soft-border: rgba(139,124,255,.24);

  --lnad-toggle-bg: #10101d;
  --lnad-toggle-active-bg: rgba(255,255,255,.12);
  --lnad-toggle-active-ink: #ffffff;

  --lnad-glass-blur: blur(14px) saturate(150%);
  --lnad-glass-hi: rgba(255,255,255,.10);

  --lnad-sh-sm-1: rgba(0,0,0,.4);
  --lnad-sh-sm-2: transparent;
  --lnad-sh-md: rgba(0,0,0,.5);
  --lnad-shadow-sm: 0 1px 2px var(--lnad-sh-sm-1);
  --lnad-card-shadow: inset 0 1px 0 var(--lnad-glass-hi), var(--lnad-shadow-sm);
}

/* =====================================================================
   Layout shell + head
   ===================================================================== */
.lnew-addons__wrap {
  width: 100%;
  max-width: var(--lnad-maxw);
  margin-inline: auto;
  padding-inline: var(--lnad-gutter);
}

.lnew-addons__head {
  margin-inline: auto;
  margin-bottom: 34px;
  text-align: var(--lnad-head-align);
}

.lnew-addons__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--lnad-font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--lnad-eyebrow-ink);
  background: var(--lnad-eyebrow-bg);
  border: 1px solid var(--lnad-eyebrow-border);
  padding: 7px 14px; border-radius: 100px;
}
.lnew-addons__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lnad-accent);
  box-shadow: 0 0 0 4px var(--lnad-accent-halo);
  opacity: .45;
  animation: lnad-dot-lamp 5.2s ease-in-out infinite;
}
@keyframes lnad-dot-lamp {
  0%        { opacity: .35; box-shadow: 0 0 0 4px var(--lnad-accent-halo), 0 0 0 0 transparent; }
  8%        { opacity: 1;   box-shadow: 0 0 0 4px var(--lnad-accent-halo), 0 0 7px 1px var(--lnad-accent); }
  22%       { opacity: 1;   box-shadow: 0 0 0 4px var(--lnad-accent-halo), 0 0 7px 1px var(--lnad-accent); }
  40%, 100% { opacity: .35; box-shadow: 0 0 0 4px var(--lnad-accent-halo), 0 0 0 0 transparent; }
}

.lnew-addons__title {
  font-family: var(--lnad-font-head);
  font-weight: 500;
  font-size: var(--lnad-title-size);
  margin-top: 18px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--lnad-ink);
  text-wrap: balance;
}
.lnew-addons__lead {
  margin-top: 18px;
  font-size: var(--lnad-lead-size);
  color: var(--lnad-muted);
  line-height: 1.65;
  text-wrap: balance;
}
.lnew-addons__accent {
  background: var(--lnad-accent-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* the "not on Free" rule, stated once as its own chip rather than buried in
   the lead — it is the single most important thing about this menu */
.lnew-addons__rule {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px;
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--lnad-accent-soft-bg);
  border: 1px solid var(--lnad-accent-soft-border);
  color: var(--lnad-accent);
  font-size: 13.5px; font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.lnew-addons__rule svg { flex: none; width: 15px; height: 15px; }

/* =====================================================================
   Currency toggle — the same segmented pill the rest of the page uses
   ===================================================================== */
.lnew-addons__toggles {
  display: flex; flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--lnad-toggles-mb);
}
.lnew-addons__toggles[hidden] { display: none; }
.lnew-addons__toggle {
  display: inline-flex;
  background: var(--lnad-toggle-bg);
  border: 1px solid var(--lnad-line);
  border-radius: 100px;
  padding: var(--lnad-toggle-pad);
}
/* (0,2,0) on purpose — a theme's own `button` styling must not reach in */
.lnew-addons__toggle .lnew-addons__toggle-btn {
  font-family: inherit;
  padding: var(--lnad-toggle-btn-pad-y) var(--lnad-toggle-btn-pad-x);
  border: none; border-radius: 100px;
  background: none;
  font-size: var(--lnad-toggle-size); font-weight: 600;
  /* `normal`, NOT 1.6 — a <button>'s UA `font` shorthand resets line-height */
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
  color: var(--lnad-muted);
  cursor: pointer;
  box-shadow: none;
  transition: color .18s, background .18s, box-shadow .18s;
}
.lnew-addons__toggle .lnew-addons__toggle-btn.is-active {
  background: var(--lnad-toggle-active-bg);
  color: var(--lnad-toggle-active-ink);
  box-shadow: var(--lnad-shadow-sm);
}
.lnew-addons__toggle .lnew-addons__toggle-btn:focus-visible {
  outline: 2px solid var(--lnad-accent);
  outline-offset: 2px;
}

/* =====================================================================
   Flat add-on cards
   ===================================================================== */
.lnew-addons__grid {
  display: grid;
  grid-template-columns: repeat(var(--lnad-cols), minmax(0, 1fr));
  gap: var(--lnad-gap);
  align-items: stretch;
}

/* The card carries the homepage's full treatment, not a plain outline:
   a masked gradient ring that lights on hover, a blurred accent halo bleeding
   from the top-right corner (.lnew-features__glow), and an icon chip that
   tilts. A flat white rectangle with a hairline was the "very basic" the
   brief called out — every one of these devices already exists on the home
   page, they were simply never applied here. */
.lnew-addons__card {
  position: relative;
  display: flex; flex-direction: column;
  min-width: 0;
  background: var(--lnad-surface);
  -webkit-backdrop-filter: var(--lnad-glass-blur);
  backdrop-filter: var(--lnad-glass-blur);
  border: 1px solid var(--lnad-line);
  border-radius: var(--lnad-card-radius);
  padding: var(--lnad-card-pad);
  box-shadow: var(--lnad-card-shadow);
  /* contains the corner halo; the ring is drawn inside the padding box so it
     is unaffected */
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--lnad-ease), box-shadow .3s var(--lnad-ease), border-color .3s ease;
}
/* the halo. Sits at z-index 0 under the content (which is lifted to 1), grows
   and brightens on hover — the card's own light source. */
.lnew-addons__card::after {
  content: ""; position: absolute; z-index: 0;
  /* Big, soft and mostly transparent at rest. The first cut sat at .5 with a
     10px blur, which made the gradient's own falloff read as a hard diagonal
     edge across the corner — a bigger box and a heavier blur push that
     boundary outside the card, leaving only the tint. */
  top: -46%; right: -30%; width: 96%; height: 92%;
  background: radial-gradient(circle, var(--lnad-accent-halo), transparent 70%);
  filter: blur(26px);
  opacity: .28;
  pointer-events: none;
  transition: opacity .45s var(--lnad-ease), transform .55s var(--lnad-ease);
}
.lnew-addons__card > * { position: relative; z-index: 1; }
/* the gradient ring. `xor` (WebKit) and `exclude` (standard) are NOT aliases —
   both lines are required. */
.lnew-addons__card::before {
  content: ""; position: absolute; z-index: 2; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--lnad-accent-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s var(--lnad-ease);
}
.lnew-addons__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lnad-shadow-md);
  border-color: transparent;
}
.lnew-addons__card:hover::before { opacity: .9; }
.lnew-addons__card:hover::after { opacity: .8; transform: translate3d(-6%, 6%, 0) scale(1.12); }

.lnew-addons__ic {
  flex: none;
  width: var(--lnad-ic); height: var(--lnad-ic);
  border-radius: var(--lnad-ic-radius);
  display: grid; place-items: center;
  /* the fourth hue is the fallback, so a fifth card inherits it rather than
     falling back to an untinted chip — same rule as the homepage pills */
  background: var(--lnad-hue-4-bg); color: var(--lnad-hue-4-ink);
}
.lnew-addons__ic svg { width: 19px; height: 19px; }
.lnew-addons__ic { transition: transform .35s var(--lnad-ease); }
.lnew-addons__card:hover .lnew-addons__ic { transform: translateY(-3px) rotate(-5deg); }
.lnew-addons__card:nth-child(4n+1) .lnew-addons__ic { background: var(--lnad-hue-1-bg); color: var(--lnad-hue-1-ink); }
.lnew-addons__card:nth-child(4n+2) .lnew-addons__ic { background: var(--lnad-hue-2-bg); color: var(--lnad-hue-2-ink); }
.lnew-addons__card:nth-child(4n+3) .lnew-addons__ic { background: var(--lnad-hue-3-bg); color: var(--lnad-hue-3-ink); }

.lnew-addons__name {
  margin-top: 16px;
  font-family: var(--lnad-font-head);
  font-size: var(--lnad-name-size); font-weight: 700;
  line-height: 1.35;
  color: var(--lnad-ink);
  overflow-wrap: break-word;
}
.lnew-addons__unit {
  margin-top: 4px;
  font-size: var(--lnad-unit-size);
  color: var(--lnad-muted-2);
  line-height: 1.5;
  overflow-wrap: break-word;
}
.lnew-addons__desc {
  margin-top: 12px;
  font-size: var(--lnad-desc-size);
  color: var(--lnad-body);
  line-height: 1.6;
  overflow-wrap: break-word;
}

/* The card's footer. It carries the `margin-top: auto` — not the price row —
   and it puts an optional flag ABOVE the price rather than below it. Both
   details exist so the price lands on the SAME baseline in every card of a
   row: with the flag under the price, a "One-time" card's figure sat a chip's
   height higher than its flagless neighbours' and the row read as ragged. */
.lnew-addons__foot {
  margin-top: auto;
  padding-top: 18px;
}
.lnew-addons__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 3px;
}
.lnew-addons__price.is-sym-after .lnew-addons__cur { order: 1; }
.lnew-addons__cur {
  font-family: var(--lnad-font-head);
  font-size: var(--lnad-cur-size); font-weight: 700;
  color: var(--lnad-ink);
}
.lnew-addons__amt {
  font-family: var(--lnad-font-head);
  font-size: var(--lnad-amt-size); font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lnad-ink);
}
/* a hairline above the price, so the figure reads as the card's conclusion
   rather than another paragraph */
.lnew-addons__foot { border-top: 1px solid var(--lnad-line-2); }
.lnew-addons__suffix {
  width: 100%;
  margin-top: 5px;
  font-size: var(--lnad-suffix-size);
  color: var(--lnad-muted);
  line-height: 1.5;
}
/* one-time items get a quiet flag so nobody reads $199 as a monthly line */
.lnew-addons__flag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--lnad-well);
  border: 1px solid var(--lnad-line);
  color: var(--lnad-muted);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
  line-height: 1.5;
  align-self: flex-start;
}

/* =====================================================================
   Graduated ladders
   ===================================================================== */
/* A ladder carries the `lnew-addons__card` class too, so it inherits the card's
   surface, border, radius, padding, shadow, gradient ring, corner halo and
   hover EXACTLY — nothing about the box is restated here, because a second
   copy is how the two drifted apart in the first place (the ladder used to
   have a permanent .4 ring, no halo and no hover lift). Its icon uses the
   card's own __ic class as well, so it picks up the four-hue cycle in sequence
   with the cards ahead of it. Only what is genuinely different lives below:
   the header row, and the band table. */
.lnew-addons__ladder-h {
  display: flex; align-items: center; gap: 12px;
}
.lnew-addons__ladder-t {
  font-family: var(--lnad-font-head);
  font-size: var(--lnad-name-size); font-weight: 700;
  line-height: 1.35;
  color: var(--lnad-ink);
}
.lnew-addons__ladder-s {
  margin-top: 10px;
  font-size: var(--lnad-desc-size);
  color: var(--lnad-body);
  line-height: 1.6;
}

.lnew-addons__bands {
  margin-top: 18px;
  border-top: 1px solid var(--lnad-line-2);
}
.lnew-addons__band {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: var(--lnad-band-pad-y) 0;
  border-bottom: 1px solid var(--lnad-line-2);
}
.lnew-addons__band:last-child { border-bottom: none; padding-bottom: 0; }
.lnew-addons__band-l {
  display: flex; align-items: baseline; gap: 10px;
  min-width: 0;
  font-size: 14px;
  color: var(--lnad-body);
  overflow-wrap: break-word;
}
.lnew-addons__band-k {
  flex: none;
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--lnad-well);
  border: 1px solid var(--lnad-line);
  color: var(--lnad-muted-2);
  font-family: var(--lnad-font-head);
  font-size: 11px; font-weight: 700;
  line-height: 1;
  align-self: center;
}
.lnew-addons__band-v {
  flex: none;
  font-family: var(--lnad-font-head);
  font-size: 15.5px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lnad-ink);
  white-space: nowrap;
}
.lnew-addons__band-v small {
  font-family: var(--lnad-font-sans);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: normal;
  color: var(--lnad-muted-2);
}
/* each rung a step warmer than the last, so the ladder reads as a ladder
   even before the figures are read */
.lnew-addons__band:nth-child(1) .lnew-addons__band-k { background: var(--lnad-hue-2-bg); border-color: transparent; color: var(--lnad-hue-2-ink); }
.lnew-addons__band:nth-child(2) .lnew-addons__band-k { background: var(--lnad-hue-1-bg); border-color: transparent; color: var(--lnad-hue-1-ink); }
.lnew-addons__band:nth-child(3) .lnew-addons__band-k { background: var(--lnad-hue-3-bg); border-color: transparent; color: var(--lnad-hue-3-ink); }

.lnew-addons__note {
  margin-top: var(--lnad-note-top);
  text-align: center;
  font-size: 14px;
  color: var(--lnad-muted);
  line-height: 1.6;
}
.lnew-addons__note b { color: var(--lnad-ink); font-weight: 600; }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.lnew-addons .lnew-reveal {
  opacity: 0;
  transform: translate3d(0, var(--lnad-rv-dist), 0);
  transition: opacity var(--lnad-rv-dur) var(--lnad-ease),
              transform var(--lnad-rv-dur) var(--lnad-ease);
  transition-delay: calc(var(--i, 0) * var(--lnad-rv-step));
}
.lnew-addons .lnew-reveal.is-in { opacity: 1; transform: none; }
.elementor-editor-active .lnew-addons .lnew-reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .lnew-addons .lnew-reveal { opacity: 1; transform: none; transition: none; }
  .lnew-addons__eyebrow-dot { animation: none !important; opacity: 1; }
  .lnew-addons__card, .lnew-addons__card::before, .lnew-addons__card::after,
  .lnew-addons__ic { transition: none; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
  .lnew-addons { --lnad-cols: 2; }
}

@media (max-width: 1040px) {
  .lnew-addons {
    --lnad-gutter: 24px;
    --lnad-card-pad: 20px;
    padding-top: 84px; padding-bottom: 84px;
  }
  .lnew-addons__head { margin-bottom: 28px; }
}

@media (max-width: 760px) {
  .lnew-addons {
    --lnad-gutter: 20px;
    --lnad-lead-size: 16.5px;
    padding-top: 64px; padding-bottom: 64px;
  }
  .lnew-addons__head { margin-bottom: 24px; }
}

@media (max-width: 560px) {
  .lnew-addons { --lnad-cols: 1; }
}

@media (max-width: 460px) {
  .lnew-addons {
    --lnad-gutter: 16px;
    --lnad-card-radius: 16px;
    --lnad-amt-size: 25px;
    padding-top: 54px; padding-bottom: 54px;
  }
}
