:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --border: #d7e0ea;
  --text: #10213a;
  --text-soft: #5e7088;
  --primary: #1746a2;
  --primary-deep: #0f2c69;
  --accent: #1ea672;
  --accent-soft: #e9f8f1;
  --warning: #d95f20;
  --warning-soft: #fff2eb;
  --shadow-lg: 0 30px 80px rgba(15, 44, 105, 0.14);
  --shadow-md: 0 16px 40px rgba(15, 44, 105, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

html {
  font-size: 16px;
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(23, 70, 162, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: var(--primary);
}

svg {
  fill: currentColor;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.92), 0 0 0 0.34rem rgba(23, 70, 162, 0.22);
}

.rtp-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.rtp-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.35;
}

.rtp-orb-left {
  top: -8rem;
  left: -6rem;
  background: rgba(23, 70, 162, 0.18);
}

.rtp-orb-right {
  right: -8rem;
  bottom: 12rem;
  background: rgba(30, 166, 114, 0.14);
}

.rtp-shell {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem 3rem;
}

.app-header,
.hero-panel,
.stepper-panel,
.content-surface,
.app-footer {
  backdrop-filter: blur(14px);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, var(--primary), #3263ca);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 20px 32px rgba(23, 70, 162, 0.24);
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: min(18rem, 48vw);
}

.eyebrow,
.mini-label,
.step-label,
.hero-side-note__label {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 70, 162, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-deep);
  box-shadow: var(--shadow-md);
}

.trust-chip strong,
.trust-chip span:last-child {
  display: block;
}

.trust-chip span:last-child {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-panel,
.stepper-panel,
.content-surface,
.app-footer {
  border: 1px solid rgba(215, 224, 234, 0.72);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero-panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
}

.hero-panel h1 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.hero-copy,
.section-copy,
.helper-text,
.instruction-item p,
.info-pill span,
.detail-item span,
.app-footer,
.field-validation,
.failure-item,
.validation-shell,
.subtle-link {
  color: var(--text-soft);
}

.hero-copy {
  max-width: 42rem;
  margin: 0;
  font-size: 1.05rem;
}

.hero-side-note {
  display: grid;
  gap: 0.9rem;
  min-width: min(100%, 18rem);
}

.hero-side-note__item {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(244, 247, 251, 0.8);
  border: 1px solid var(--border);
}

.hero-side-note__item strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.stepper-panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  opacity: 0.52;
}

.step-item strong {
  display: block;
  font-size: 1rem;
}

.step-item.is-active {
  opacity: 1;
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-soft);
  font-weight: 700;
}

.step-item.is-active .step-number {
  border-color: rgba(23, 70, 162, 0.24);
  background: rgba(23, 70, 162, 0.12);
  color: var(--primary);
}

.step-connector {
  height: 1px;
  flex: 0.28;
  background: linear-gradient(90deg, rgba(215, 224, 234, 0.8), rgba(215, 224, 234, 0.45));
}

.step-connector.is-complete {
  background: linear-gradient(90deg, rgba(30, 166, 114, 0.9), rgba(23, 70, 162, 0.75));
}

.page-content {
  display: grid;
  gap: 1.5rem;
}

.payment-grid,
.two-card-grid {
  display: grid;
  gap: 1.5rem;
}

.payment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}
.payment-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.payment-grid--single .form-card--wide {
  width: min(100%, 56rem);
  margin: 0 auto;
}

.payment-grid--landing {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}


.payment-grid--landing::before {
  content: none;
}


.payment-grid--landing.form-card--wide,
.payment-grid--landing .form-card--wide {
  width: 100%;
  max-width: 58rem;
}

.form-card--funding {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(215, 224, 234, 0.85);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(15, 44, 105, 0.08);
}


.form-card--funding::after {
  content: none;
}


.section-heading--index {
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(23, 70, 162, 0.08);
}

.section-heading--index h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
}

.form-card--funding form,
.form-card--funding .account-summary,
.form-card--funding #account-skeleton {
  position: relative;
  z-index: 1;
}

.form-card--funding .mb-4 {
  margin-bottom: 1.35rem !important;
}

.form-card--funding .helper-text {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  max-width: 34rem;
}

.form-card--funding .input-group {
  gap: 0.7rem;
  align-items: stretch;
}

.form-card--funding .input-group > .form-control,
.form-card--funding .input-group > .premium-input {
  border-radius: 1.15rem !important;
}

.form-card--funding .input-group > .action-button {
  min-width: 11rem;
  border-radius: 1.15rem !important;
  background: rgba(23, 70, 162, 0.06);
  color: var(--primary-deep);
  font-weight: 700;
}

.form-card--funding .input-group > .action-button:hover {
  background: rgba(23, 70, 162, 0.12);
  border-color: rgba(23, 70, 162, 0.24);
}

.form-card--funding .premium-input,
.form-card--funding .currency-field {
  border-color: rgba(215, 224, 234, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.form-card--funding .premium-input:focus,
.form-card--funding .currency-field:focus-within {
  border-color: rgba(23, 70, 162, 0.4);
  background: rgba(255, 255, 255, 0.99);
}

.form-card--funding .account-summary {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.form-card--funding .summary-item {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(15, 44, 105, 0.06);
}

.form-card--funding .primary-cta {
  margin-top: 0.4rem;
}

.two-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-surface {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
}

.feature-panel,
.form-card {
  min-width: 0;
}

.feature-panel h2,
.form-card h2,
.instructions-panel h2,
.status-surface h2,
.result-hero h2,
.receipt-surface h2,
.content-surface h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(23, 70, 162, 0.1);
}

.icon-badge svg {
  width: 1.15rem;
  height: 1.15rem;
}

.icon-badge-sm {
  width: 2rem;
  height: 2rem;
}

.icon-badge-xl {
  width: 4.6rem;
  height: 4.6rem;
  margin-bottom: 1.2rem;
}

.icon-badge-xl svg {
  width: 2rem;
  height: 2rem;
}

.info-stack {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.info-pill,
.detail-item,
.countdown-card,
.failure-box {
  border: 1px solid var(--border);
  background: var(--surface-solid);
}

.info-pill {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
}

.info-pill strong,
.instruction-item strong,
.detail-item strong,
.account-summary__header h3,
.section-heading h2 {
  display: block;
  color: var(--text);
}

.demo-account-panel {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(23, 70, 162, 0.08), rgba(30, 166, 114, 0.06));
  border: 1px dashed rgba(23, 70, 162, 0.18);
}

.demo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.demo-pill,
.status-badge,
.reference-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.demo-pill {
  border: 0;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 20px rgba(23, 70, 162, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 24px rgba(23, 70, 162, 0.14);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.status-badge,
.reference-badge {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 70, 162, 0.12);
  background: rgba(23, 70, 162, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
}

.status-badge--success {
  background: var(--accent-soft);
  border-color: rgba(30, 166, 114, 0.2);
  color: #107352;
}

.status-badge--warning {
  background: var(--warning-soft);
  border-color: rgba(217, 95, 32, 0.18);
  color: var(--warning);
}

.form-label-lg {
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--text);
}

.premium-input,
.premium-input-lg,
.currency-field,
.action-button,
.validation-shell {
  border-radius: 1.1rem;
}

.premium-input,
.currency-field .form-control {
  min-height: 3.65rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem 1.1rem;
}

.action-button {
  padding-inline: 1.1rem;
  border-color: rgba(23, 70, 162, 0.18);
}

.currency-field {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.3rem 0.45rem 0.3rem 1rem;
}

.currency-field:focus-within {
  border-color: rgba(23, 70, 162, 0.36);
}

.currency-field__prefix {
  font-weight: 700;
  color: var(--text-soft);
}

.currency-field .form-control {
  border: 0;
  box-shadow: none;
  min-height: 3.2rem;
  padding-left: 0.2rem;
}

.helper-text,
.field-validation {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.field-validation {
  color: #b63f2d;
}

.validation-shell {
  padding: 0.95rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(182, 63, 45, 0.14);
  background: rgba(255, 244, 242, 0.9);
}

.validation-summary-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.account-skeleton {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.account-skeleton span {
  display: block;
  min-height: 5.6rem;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #edf3f8 25%, #f9fbfd 50%, #edf3f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s linear infinite;
}

.account-summary {
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.88), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--border);
}

.account-summary__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.account-summary__grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.summary-item,
.detail-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
}

.summary-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 224, 234, 0.78);
}

.summary-item__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.95rem;
  background: rgba(23, 70, 162, 0.08);
  color: var(--primary);
}

.summary-item__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.summary-item span,
.detail-item span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-item--balance strong {
  color: var(--accent);
  font-size: 1.16rem;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.2rem 0 1.5rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(23, 70, 162, 0.06);
  border: 1px solid rgba(23, 70, 162, 0.1);
}

.secure-note--strong {
  margin-top: 1.25rem;
}

.primary-cta,
.secondary-cta {
  min-height: 3.7rem;
  border-radius: 1.1rem;
  font-weight: 700;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--primary), #2d61d3);
  box-shadow: 0 22px 34px rgba(23, 70, 162, 0.22);
}

.primary-cta:hover {
  background: linear-gradient(135deg, #123986, #2957bd);
}

.secondary-cta {
  color: var(--primary);
  border-color: rgba(23, 70, 162, 0.18);
}

.primary-cta.is-disabled {
  pointer-events: none;
  opacity: 0.72;
}

.tan-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 70, 162, 0.16);
  background: linear-gradient(135deg, rgba(23, 70, 162, 0.09), rgba(30, 166, 114, 0.06));
}

.tan-panel strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  letter-spacing: 0.18em;
}

.status-surface .section-copy {
  margin-bottom: 1.2rem;
}

.countdown-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.countdown-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1;
}

.progress-track {
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(23, 70, 162, 0.08);
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.polling-row {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.9);
  border: 1px solid var(--border);
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 rgba(30, 166, 114, 0.5);
  animation: pulse 1.8s infinite;
}

.instructions-panel .section-heading {
  margin-bottom: 1.5rem;
}

.instruction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.instruction-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
}

.instruction-step {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(23, 70, 162, 0.1);
  color: var(--primary);
  font-weight: 700;
}

.result-shell {
  display: grid;
  gap: 1.5rem;
}

.result-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.result-hero--success {
  background: linear-gradient(145deg, rgba(233, 248, 241, 0.96), rgba(255, 255, 255, 0.96));
}

.result-hero--failure {
  background: linear-gradient(145deg, rgba(255, 242, 235, 0.96), rgba(255, 255, 255, 0.96));
}

.result-hero__icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border-radius: 1.5rem;
  color: #fff;
}

.result-hero--success .result-hero__icon {
  background: linear-gradient(145deg, var(--accent), #0d8d60);
}

.result-hero--failure .result-hero__icon {
  background: linear-gradient(145deg, var(--warning), #c04414);
}

.result-hero__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.receipt-surface .detail-grid {
  margin-bottom: 1.5rem;
}

.receipt-party-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.receipt-party-card,
.receipt-transaction-card {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.88), rgba(255, 255, 255, 0.98));
}

.receipt-party-card .eyebrow,
.receipt-transaction-card .eyebrow {
  margin-bottom: 0.85rem;
}

.detail-grid--stacked {
  grid-template-columns: 1fr;
}

.receipt-transaction-card {
  margin-bottom: 1.5rem;
}

.section-heading--compact {
  margin-bottom: 1rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.failure-box {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.failure-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.failure-item__bullet {
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--warning);
}

.subtle-link,
.tertiary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}

.subtle-link:hover,
.tertiary-cta:hover {
  color: var(--primary-deep);
}

.app-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-lg);
  font-size: 0.92rem;
}

.is-navigation-loading {
  overflow: hidden;
}

.navigation-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(23, 70, 162, 0.16), transparent 36%),
    rgba(244, 247, 251, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.js.route-loading .navigation-loader {
  opacity: 1;
  visibility: visible;
}

.navigation-loader__card {
  width: min(100%, 29rem);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(215, 224, 234, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.navigation-loader__spinner {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border: 0.32rem solid rgba(23, 70, 162, 0.14);
  border-top-color: var(--primary);
  border-radius: 999px;
  animation: spin 0.85s linear infinite;
}

.navigation-loader__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.navigation-loader__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
}

.navigation-loader__description {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 166, 114, 0.45);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(30, 166, 114, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 166, 114, 0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .payment-grid--landing {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}


@media (max-width: 767.98px) {
  .payment-grid--landing {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}





