.ac-shell {
    --ac-carbon: #0B0C0D;
    --ac-teal: #00C2A8;
    --ac-teal-hover: #00B098;
    --ac-teal-60: #66DACA;
    --ac-teal-20: #CCF3ED;
    --ac-paper: #F5F6F5;
    --ac-line: #E4E6E4;
    --ac-mist: #C9CCCA;
    --ac-ink-70: #70726F;
    --ac-grey-input: #ECEEEC;
    --ac-grey-chip: #F0F1F0;
    --ac-pos-chip: #007562;
    --ac-neg-text: #8C1D18;
    --ac-neg-bg: #F9E9E8;
    --ac-neg-line: #ECC9C6;
    --ac-r: 12px;
    --ac-r-sm: 10px;
    --ac-shadow: 0 1px 2px rgba(11, 12, 13, 0.05), 0 4px 16px rgba(11, 12, 13, 0.04);
    color-scheme: light;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--ac-paper);
    color: var(--ac-carbon);
    font-family: 'Inter Variable', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

.ac-shell *,
.ac-shell *::before,
.ac-shell *::after {
    box-sizing: border-box;
}

:where(.ac-shell) a {
    color: inherit;
    text-decoration: none;
}

:where(.ac-shell) button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

.ac-shell h1,
.ac-shell h2,
.ac-shell h3,
.ac-shell p {
    margin: 0;
}

.ac-num {
    font-variant-numeric: tabular-nums lining-nums;
}

.ac-micro {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ac-ink-70);
}

.ac-mono {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 11px;
    color: var(--ac-ink-70);
}

.ac-hd {
    background: #fff;
    border-bottom: 1px solid var(--ac-line);
}

.ac-hd-in {
    max-width: 980px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ac-brand {
    display: inline-flex;
    align-items: center;
}

.ac-brand .ac-brand__logo {
    height: 22px;
    width: auto;
}

.ac-hd-nav {
    margin-left: auto;
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
}

.ac-hd-nav a {
    color: var(--ac-ink-70);
}

.ac-hd-nav a:hover {
    color: var(--ac-carbon);
}

.ac-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ac-carbon);
    font-weight: 500;
}

.ac-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ac-teal-20);
    color: var(--ac-pos-chip);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 600;
}

.ac-main {
    flex: 0 0 auto;
}

.ac-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 26px 20px 70px;
}

.ac-page-h {
    margin-bottom: 18px;
}

.ac-page-h .ac-micro {
    display: block;
    color: var(--ac-teal);
    letter-spacing: 0.16em;
    margin-bottom: 4px;
}

.ac-page-h .ac-micro a {
    color: inherit;
}

.ac-page-h h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.ac-page-h .ac-sub {
    color: var(--ac-ink-70);
    font-size: 13px;
    margin-top: 3px;
}

.ac-tabs {
    display: flex;
    gap: 8px;
    margin: 16px 0 20px;
    flex-wrap: wrap;
}

.ac-tab {
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 15px;
    border-radius: 999px;
    border: 1px solid var(--ac-line);
    background: #fff;
    color: var(--ac-ink-70);
}

.ac-tab.on {
    background: var(--ac-carbon);
    border-color: var(--ac-carbon);
    color: #fff;
}

.ac-tab:hover:not(.on) {
    background: var(--ac-paper);
}

.ac-back {
    display: inline-block;
    font-size: 12.5px;
    color: var(--ac-ink-70);
    margin-bottom: 14px;
}

.ac-back:hover {
    color: var(--ac-carbon);
}

.ac-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-r);
    box-shadow: var(--ac-shadow);
}

.ac-card + .ac-card {
    margin-top: 14px;
}

.ac-panel {
    padding: 20px;
}

.ac-panel h3 {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ac-panel .ac-ps {
    font-size: 12px;
    color: var(--ac-ink-70);
    margin-bottom: 14px;
}

.ac-panel .ac-ps a,
.ac-note a,
.ac-fh a,
.ac-kv a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ac-cols > * {
    min-width: 0;
}

.ac-cols {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 14px;
    align-items: start;
}

.ac-overview-cols {
    grid-template-columns: 1.9fr 1fr;
}

.ac-cols > .ac-col {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.ac-cols .ac-card + .ac-card {
    margin-top: 0;
}

.ac-btn-primary {
    display: inline-block;
    background: var(--ac-teal);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 999px;
    white-space: nowrap;
    text-align: center;
}

.ac-btn-primary:hover {
    background: var(--ac-teal-hover);
    color: #fff;
}

.ac-btn-primary[disabled],
.ac-btn-primary[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
}

.ac-btn-ghost {
    display: inline-block;
    border: 1px solid var(--ac-line);
    background: #fff;
    color: var(--ac-carbon);
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    white-space: nowrap;
    text-align: center;
}

.ac-btn-ghost:hover {
    background: var(--ac-paper);
}

.ac-btn-quiet {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ac-ink-70);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.ac-btn-quiet:hover {
    background: var(--ac-grey-input);
    color: var(--ac-carbon);
}

.ac-btn-danger-quiet {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ac-neg-text);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.ac-btn-danger-quiet:hover {
    background: var(--ac-neg-bg);
}

.ac-btn-block {
    display: block;
    width: 100%;
}

.ac-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.ac-actions--end {
    justify-content: flex-end;
}

.ac-stack {
    display: grid;
    gap: 8px;
}

.ac-chip {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
    display: inline-block;
}

.ac-chip.ok {
    background: var(--ac-teal-20);
    color: var(--ac-pos-chip);
}

.ac-chip.pending {
    background: var(--ac-grey-chip);
    color: var(--ac-ink-70);
    border: 1px dashed var(--ac-mist);
}

.ac-chip.neutral {
    background: var(--ac-grey-chip);
    color: var(--ac-ink-70);
}

.ac-chip.bad {
    background: var(--ac-neg-bg);
    color: var(--ac-neg-text);
}

.ac-kv {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--ac-paper);
    font-size: 13px;
}

.ac-kv:last-child {
    border-bottom: 0;
}

.ac-kv .k {
    color: var(--ac-ink-70);
}

.ac-kv .v {
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 500;
    text-align: right;
}

.ac-kv .v .sub {
    display: block;
    font-weight: 400;
    font-size: 11.5px;
    color: var(--ac-ink-70);
}

.ac-big {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 4px 0 2px;
}

.ac-tbl-wrap {
    overflow-x: auto;
}

table.ac-tbl {
    width: 100%;
    border-collapse: collapse;
}

.ac-tbl th {
    text-align: left;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ac-ink-70);
    padding: 9px 10px;
    border-bottom: 1px solid var(--ac-line);
}

.ac-tbl th.r,
.ac-tbl td.r {
    text-align: right;
}

.ac-tbl td.r {
    white-space: nowrap;
}

.ac-tbl td {
    padding: 12px 10px;
    font-size: 13px;
    border-bottom: 1px solid var(--ac-paper);
    vertical-align: middle;
}

.ac-tbl tr:last-child td {
    border-bottom: 0;
}

.ac-tbl .sub {
    display: block;
    font-size: 11.5px;
    color: var(--ac-ink-70);
    margin-top: 1px;
}

.ac-cell-merch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-tbl td.acts {
    text-align: right;
    white-space: nowrap;
}

.ac-note {
    background: var(--ac-paper);
    border: 1px solid var(--ac-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    color: var(--ac-ink-70);
    line-height: 1.55;
}

.ac-note + .ac-note {
    margin-top: 10px;
}

.ac-note b {
    color: var(--ac-carbon);
    font-weight: 600;
}

.ac-banner-act,
.ac-banner-bad,
.ac-banner-ok {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 12.5px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ac-banner-act {
    background: var(--ac-teal-20);
    border: 1px solid var(--ac-teal-60);
    color: var(--ac-carbon);
}

.ac-banner-ok {
    background: var(--ac-teal-20);
    border: 1px solid var(--ac-teal-60);
    color: var(--ac-pos-chip);
}

.ac-banner-bad {
    background: var(--ac-neg-bg);
    border: 1px solid var(--ac-neg-line);
    color: var(--ac-neg-text);
}

.ac-banner-act .cta,
.ac-banner-bad .cta {
    margin-left: auto;
}

.ac-fld {
    margin-bottom: 14px;
}

.ac-fld label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.ac-fld input,
.ac-fld select,
.ac-fld textarea {
    width: 100%;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-r-sm);
    padding: 12px 13px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--ac-carbon);
    outline: none;
}

.ac-fld input:focus,
.ac-fld select:focus,
.ac-fld textarea:focus {
    border-color: var(--ac-teal);
    box-shadow: 0 0 0 3px var(--ac-teal-20);
}

.ac-fld .ac-fh,
.ac-fh {
    font-size: 11px;
    color: var(--ac-ink-70);
    margin-top: 4px;
    line-height: 1.5;
}

.ac-fld-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ac-merch {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--ac-teal-20);
    color: var(--ac-pos-chip);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex: 0 0 34px;
}

.ac-merch.alt {
    background: #EFE9F9;
    color: #5B3E96;
}

.ac-merch-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ac-merch-head h3 {
    margin: 0;
}

.ac-ft {
    border-top: 1px solid var(--ac-line);
    background: #fff;
}

.ac-ft-in {
    max-width: 980px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 11.5px;
    color: var(--ac-ink-70);
}

.ac-ft-in a:hover {
    color: var(--ac-carbon);
}

.ac-login-wrap {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.ac-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: 16px;
    box-shadow: var(--ac-shadow);
    padding: 30px 28px;
}

.ac-login-card h1 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 12px 0 4px;
}

.ac-login-card .ac-sub {
    color: var(--ac-ink-70);
    font-size: 13px;
    margin-bottom: 18px;
}

.ac-login-foot {
    margin-top: 22px;
    text-align: center;
    font-size: 11.5px;
    color: var(--ac-ink-70);
}

.ac-otp-row {
    display: flex;
    gap: 8px;
    margin: 6px 0 12px;
}

.ac-otp-row input {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    border: 1px solid var(--ac-line);
    border-radius: 10px;
    font-family: inherit;
    outline: none;
    background: #fff;
    color: var(--ac-carbon);
}

.ac-otp-row input:focus {
    border-color: var(--ac-teal);
    box-shadow: 0 0 0 3px var(--ac-teal-20);
}

.ac-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--ac-ink-70);
    margin-top: 10px;
    flex-wrap: wrap;
}

.ac-links a,
.ac-linklike {
    color: var(--ac-carbon);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 12px;
    padding: 0;
}

.ac-linklike[disabled] {
    text-decoration: none;
    color: var(--ac-ink-70);
    cursor: default;
}

.ac-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(11, 12, 13, 0.45);
    z-index: 80;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10vh 20px;
    overflow-y: auto;
}

.ac-modal {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(11, 12, 13, 0.22);
    width: 100%;
    max-width: 440px;
    padding: 22px 24px;
    color: var(--ac-carbon);
}

.ac-modal h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ac-modal .msub {
    font-size: 12px;
    color: var(--ac-ink-70);
    margin-bottom: 12px;
}

.ac-modal .macts {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
    flex-wrap: wrap;
}

.ac-notice {
    background: var(--ac-teal-20);
    border: 1px solid var(--ac-teal-60);
    color: var(--ac-carbon);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 12.5px;
    margin-bottom: 14px;
}

.ac-alert {
    background: var(--ac-neg-bg);
    border: 1px solid var(--ac-neg-line);
    color: var(--ac-neg-text);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 12.5px;
    margin-bottom: 14px;
}

.ac-timeline {
    display: grid;
    gap: 10px;
    font-size: 13px;
}

.ac-timeline > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
}

.ac-timeline .when {
    color: var(--ac-ink-70);
    white-space: nowrap;
}

.ac-faq {
    display: grid;
    gap: 10px;
}

.ac-faq div {
    font-size: 13px;
}

.ac-faq b {
    display: block;
    font-weight: 600;
    margin-bottom: 1px;
}

.ac-faq span {
    color: var(--ac-ink-70);
    font-size: 12.5px;
}

.ac-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-qty .ac-btn-ghost {
    padding: 3px 12px;
    min-width: 34px;
    text-decoration: none;
}

.ac-qty b {
    min-width: 24px;
    text-align: center;
    font-size: 15px;
}

.ac-empty {
    font-size: 13px;
    color: var(--ac-ink-70);
    padding: 12px 0;
}

.ac-cardform {
    margin-top: 8px;
}

.ac-cardform .co-card {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.ac-cardform .co-card__title {
    display: none;
}

.ac-cardform .co-field__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--ac-carbon);
}

.ac-cardform .co-field {
    margin-bottom: 14px;
}

.ac-cardform .co-field__input,
.ac-cardform .hosted-field {
    width: 100%;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-r-sm);
    padding: 12px 13px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--ac-carbon);
    min-height: 44px;
}

.ac-cardform .co-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ac-cardform .co-btn,
.ac-cardform button[type="submit"] {
    width: 100%;
    display: inline-block;
    background: var(--ac-teal);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 999px;
    border: 0;
}

.ac-cardform .co-notice {
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 12.5px;
    margin-bottom: 14px;
    background: var(--ac-neg-bg);
    color: var(--ac-neg-text);
    border: 1px solid var(--ac-neg-line);
}

.ac-cardform .co-payment-stage__back,
.ac-cardform .co-hosted-field-proxy {
    display: none;
}

.ac-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.ac-btn-busy {
    pointer-events: none;
    opacity: .75;
}

.ac-btn-busy::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 8px;
    vertical-align: -2px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: ac-spin .7s linear infinite;
}

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

@media (max-width: 800px) {
    .ac-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ac-wrap {
        padding: 18px 14px 60px;
    }

    .ac-hd-nav {
        gap: 10px;
    }

    .ac-hd-nav .ac-me span:not(.ac-avatar) {
        display: none;
    }

    .ac-tbl thead {
        display: none;
    }

    .ac-tbl tr {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--ac-paper);
    }

    .ac-tbl td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 4px 0;
        border: 0;
        text-align: left;
    }

    .ac-tbl td.r {
        text-align: right;
    }

    .ac-tbl td[data-label]::before {
        content: attr(data-label);
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--ac-ink-70);
        flex: 0 0 auto;
        padding-top: 3px;
    }

    .ac-tbl td.acts {
        justify-content: flex-end;
    }

    .ac-fld-row {
        grid-template-columns: 1fr;
    }
}

.ac-cardform [data-inline="true"] > a,
.ac-cardform .co-foot { display: none; }
.ac-cardform .co-field__input { width: 100%; color: var(--ac-carbon); }
.ac-cardform .co-field__input:focus { outline: 2px solid var(--ac-teal); outline-offset: 2px; }
.ac-cardform .co-notice[hidden] { display: none; }

.ac-banner-act > span:nth-child(2),
.ac-banner-bad > span:nth-child(2) { flex: 1; min-width: 180px; }
.ac-banner-act .cta,
.ac-banner-bad .cta { font-size: 12px; padding: 8px 16px; }
.ac-shell :where(h1, h2, h3, h4, p) { line-height: 1.45; }
.ac-login-card > .ac-brand__logo { height: 26px; width: auto; }

.ac-shell:has(.ac-login-wrap) > .ac-hd,
.ac-shell:has(.ac-login-wrap) > .ac-ft { display: none; }
.ac-login-wrap { min-height: 100vh; min-height: 100dvh; flex-direction: column; }
.ac-login-logo { height: 26px; width: auto; margin-bottom: 22px; }
.ac-login-card h1 { font-size: 19px; }

.ac-btn-danger { color: var(--ac-neg-text); }
.ac-btn-primary.ac-btn-danger { background: var(--ac-neg-text); color: #fff; }
.ac-btn-primary.ac-btn-danger:hover { background: #6f1613; }
.ac-modal .ac-alert { margin-bottom: 12px; }
.ac-modal .ac-fh button { background: none; border: 0; padding: 0; font: inherit; color: var(--ac-carbon); border-bottom: 1px solid var(--ac-mist); cursor: pointer; }
.ac-refund-amount { color: var(--ac-pos-chip); }
.ac-total { font-weight: 600; border-top: 1px solid var(--ac-line); margin-top: 4px; }
.ac-total .v { font-size: 15px; }
.ac-kv a.ac-btn-ghost { text-decoration: none; }
.ac-panel h3 > .ac-chip { margin-left: 6px; vertical-align: middle; }
.ac-notification-table { table-layout: fixed; }
.ac-notification-table th:first-child { width: 36%; }
.ac-notification-table td { overflow-wrap: anywhere; }
.ac-notification-table td { vertical-align: middle; }
.ac-notification-table td.r { white-space: nowrap; }
.ac-timing { appearance: none; -webkit-appearance: none; width: auto; min-width: 132px; max-width: 100%; border: 1px solid var(--ac-line); border-radius: 8px; background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23595f66' stroke-width='1.5' stroke-linecap='round'/></svg>") no-repeat right 11px center; padding: 6px 28px 6px 12px; font: inherit; font-size: 12.5px; font-weight: 500; color: var(--ac-carbon); cursor: pointer; }
.ac-timing:hover { background-color: var(--ac-grey-input); }
.ac-timing:focus-visible { outline: none; border-color: var(--ac-teal); box-shadow: 0 0 0 3px var(--ac-teal-20); }
.ac-toggle { position: relative; display: inline-flex; cursor: pointer; }
.ac-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.ac-toggle .on { display: none; }
.ac-toggle:has(input:checked) .on { display: inline; }
.ac-toggle:has(input:checked) .off { display: none; }
.ac-toggle:has(input:checked) .ac-chip { background: var(--ac-teal-20); color: var(--ac-pos-chip); }
.ac-toggle:has(input:focus-visible) { outline: 2px solid var(--ac-teal); outline-offset: 3px; border-radius: 999px; }
.ac-toggle:has(input:disabled) { opacity: .55; cursor: default; }
.ac-card-choice { display: flex; align-items: center; gap: 12px; border: 1px solid var(--ac-line); border-radius: 12px; padding: 14px 16px; cursor: pointer; }
.ac-card-choice:has(input:checked) { border-color: var(--ac-teal); box-shadow: 0 0 0 1px var(--ac-teal); }
.ac-card-choice input { accent-color: var(--ac-teal); width: 16px; height: 16px; flex: 0 0 16px; }
.ac-card-choice strong { font-size: 14px; font-weight: 600; }
.ac-card-choice .sub { display: block; font-size: 11.5px; color: var(--ac-ink-70); }
.ac-card-choice > .ac-chip { margin-left: auto; }
.ac-card-picker .ac-new-card-entry { display: none; }
.ac-card-picker:has(input[data-new-card]:checked) .ac-new-card-entry { display: block; }
.ac-card-picker:has(input[data-new-card]:checked) .ac-saved-card-submit { display: none; }
.ac-card-picker .ac-cardform { margin-top: 14px; }
.ac-cardform .hosted-field { padding: 0; height: 44px; overflow: hidden; }
.ac-cardform .hosted-field > div { height: 44px; }
.ac-cardform #div_card_number > div { width: calc(100% + 128px) !important; }
.ac-login-card h1 { margin-top: 0; }
.ac-login-logo { margin-bottom: 28px; }
@media (max-width: 640px) {
    .ac-notification-table td:first-child { display: block; }
    .ac-notification-table td:first-child::before { display: block; margin-bottom: 4px; }
    .ac-notification-table .sub { margin-top: 4px; }
    .ac-notification-table td.r { white-space: normal; }
    .ac-timing { width: 100%; }
}
