:root {
  --wallet11-ink: #161617;
  --wallet11-muted: #6e6e73;
  --wallet11-line: rgba(22, 22, 23, 0.12);
  --wallet11-soft: #f5f5f7;
  --wallet11-paper: #ffffff;
  --wallet11-cyan: #25f4ee;
  --wallet11-red: #fe2c55;
}

.index-container .wallet11-original-actions,
.index-container .wallet11-original-vip,
.index-container .wallet11-original-footer {
  display: none !important;
}

.wallet11-action-section {
  width: 100%;
  padding: 12px 10px;
  background: var(--wallet11-soft);
  border-bottom: 1px solid var(--wallet11-line);
  box-sizing: border-box;
}

.wallet11-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.wallet11-action-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 58px;
  padding: 9px 12px;
  color: var(--wallet11-ink);
  text-decoration: none;
  background: var(--wallet11-paper);
  border: 1px solid var(--wallet11-line);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(22, 22, 23, 0.04);
  box-sizing: border-box;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.wallet11-action-link:hover {
  border-color: rgba(22, 22, 23, 0.24);
  box-shadow: 0 5px 16px rgba(22, 22, 23, 0.08);
  transform: translateY(-1px);
}

.wallet11-action-link:focus-visible,
.wallet11-partner-link:focus-visible,
.wallet11-footer-links a:focus-visible,
.wallet11-content-page a:focus-visible,
.wallet11-content-page button:focus-visible {
  outline: 2px solid var(--wallet11-cyan);
  outline-offset: 2px;
}

.wallet11-action-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  color: var(--wallet11-ink);
}

.wallet11-action-link:nth-child(1) .wallet11-action-icon,
.wallet11-action-link:nth-child(4) .wallet11-action-icon {
  color: #047a76;
}

.wallet11-action-link:nth-child(2) .wallet11-action-icon {
  color: #c91d42;
}

.wallet11-action-label {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.wallet11-partner-section {
  width: 100%;
  margin: 10px 0;
  padding: 10px 0 12px;
  overflow: hidden;
  background: var(--wallet11-paper);
  border-top: 1px solid var(--wallet11-line);
  border-bottom: 1px solid var(--wallet11-line);
  box-sizing: border-box;
}

.wallet11-section-heading {
  width: min(100% - 20px, 1180px);
  margin: 0 auto 8px;
  color: var(--wallet11-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.wallet11-partner-viewport {
  width: 100%;
  overflow: hidden;
}

.wallet11-partner-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: wallet11-partner-scroll 42s linear infinite;
}

.wallet11-partner-section:hover .wallet11-partner-track {
  animation-play-state: paused;
}

.wallet11-partner-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.wallet11-partner-link {
  display: block;
  flex: 0 0 112px;
  width: 112px;
  height: 64px;
  overflow: hidden;
  background: var(--wallet11-paper);
  border: 1px solid var(--wallet11-line);
  border-radius: 6px;
  box-sizing: border-box;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.wallet11-partner-link:hover {
  border-color: rgba(22, 22, 23, 0.28);
  box-shadow: 0 5px 14px rgba(22, 22, 23, 0.1);
  transform: translateY(-1px);
}

.wallet11-partner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--wallet11-paper);
}

@keyframes wallet11-partner-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.wallet11-site-footer {
  width: 100%;
  margin-top: 44px;
  padding: 18px 16px 92px;
  color: var(--wallet11-muted);
  background: var(--wallet11-soft);
  border-top: 1px solid var(--wallet11-line);
  box-sizing: border-box;
}

.wallet11-footer-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.wallet11-footer-copyright {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.wallet11-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 8px;
}

.wallet11-footer-links a,
.wallet11-content-footer-link {
  color: #424245;
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.wallet11-footer-links a:hover,
.wallet11-content-footer-link:hover {
  color: var(--wallet11-ink);
  text-decoration: underline;
}

.wallet11-content-page {
  min-height: 100vh;
  color: var(--wallet11-ink);
  background: var(--wallet11-paper);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.wallet11-content-header {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--wallet11-line);
  box-sizing: border-box;
}

.wallet11-content-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  padding: 0;
  color: var(--wallet11-ink);
  font-size: 21px;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.wallet11-content-back:hover {
  background: var(--wallet11-soft);
}

.wallet11-content-brand {
  display: inline-flex;
  align-items: center;
  color: var(--wallet11-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.wallet11-content-brand-mark {
  width: 10px;
  height: 18px;
  margin-right: 8px;
  background: var(--wallet11-ink);
  border-left: 3px solid var(--wallet11-cyan);
  border-right: 3px solid var(--wallet11-red);
  border-radius: 2px;
  box-sizing: border-box;
}

.wallet11-content-article {
  width: min(100% - 36px, 820px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.wallet11-content-eyebrow {
  margin: 0 0 10px;
  color: var(--wallet11-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.wallet11-content-article h1 {
  margin: 0 0 30px;
  color: var(--wallet11-ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
}

.wallet11-content-copy {
  color: #424245;
  font-size: 15px;
  line-height: 1.8;
}

.wallet11-content-copy p {
  margin: 0 0 18px;
  white-space: pre-wrap;
}

.wallet11-content-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 120px;
  color: var(--wallet11-muted);
  font-size: 14px;
}

.wallet11-content-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(22, 22, 23, 0.14);
  border-top-color: var(--wallet11-ink);
  border-radius: 50%;
  animation: wallet11-spin 800ms linear infinite;
}

@keyframes wallet11-spin {
  to {
    transform: rotate(360deg);
  }
}

.wallet11-content-error {
  padding: 18px 0;
  color: #a01430;
  font-size: 14px;
}

.wallet11-content-error p {
  margin: 0 0 14px;
}

.wallet11-content-retry {
  min-height: 36px;
  padding: 0 16px;
  color: var(--wallet11-paper);
  font-size: 13px;
  font-weight: 600;
  background: var(--wallet11-ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.wallet11-content-footer {
  padding: 18px 18px 28px;
  color: var(--wallet11-muted);
  background: var(--wallet11-soft);
  border-top: 1px solid var(--wallet11-line);
}

.wallet11-content-footer > p,
.wallet11-content-footer-links {
  width: min(100%, 820px);
  margin-right: auto;
  margin-left: auto;
}

.wallet11-content-footer > p {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.55;
}

.wallet11-content-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

@media screen and (max-width: 768px) {
  .wallet11-action-section {
    padding: 9px 8px;
  }

  .wallet11-action-grid {
    gap: 7px;
  }

  .wallet11-action-link {
    min-height: 52px;
    padding: 8px 10px;
  }

  .wallet11-action-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  .wallet11-action-label {
    font-size: 12px;
  }

  .wallet11-partner-link {
    flex-basis: 92px;
    width: 92px;
    height: 54px;
  }

  .wallet11-partner-set {
    gap: 8px;
    padding-right: 8px;
  }

  .wallet11-content-article {
    width: min(100% - 30px, 820px);
    padding: 38px 0 54px;
  }

  .wallet11-content-article h1 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .wallet11-site-footer {
    margin-top: 34px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wallet11-partner-viewport {
    overflow-x: auto;
  }

  .wallet11-partner-track {
    animation: none;
  }

  .wallet11-partner-set[aria-hidden="true"] {
    display: none;
  }

  .wallet11-action-link,
  .wallet11-partner-link {
    transition: none;
  }
}
