/* ==========================================================================
   Digital Cards page styles
   Used by: digital_cards.aspx
   ========================================================================== */

/* ---- Theme variables ---- */
:root {
    --navy-1: #1c2340;
    --navy-2: #0f1428;
    --rage-1: #c4002f;
    --rage-2: #7e001d;
    --gold: #d4af37;
    --gold-2: #f3dd8f;
    --ink: #181a20;
    --muted: #6b6f7a;
    --line: #e8e6df;
    --bg: #f8f6f1;
    --paper: #ffffff;
    --soft: #f1eee3;
    --green: #1c7a4c;
    --red: #a3372f;
    --site: 680px;
    --radius-lg: 26px;
    --shadow-card: 0 24px 48px -12px rgba(15,20,40,.35);
    --shadow-soft: 0 10px 26px rgba(20,20,30,.06);
}

/* ---- Base ---- */
* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: radial-gradient(1100px 480px at 15% -10%, #efe9d8 0%, transparent 60%), radial-gradient(900px 420px at 100% 0%, #eef1f8 0%, transparent 55%), var(--bg);
    color: var(--ink);
    font-family: 'Inter',-apple-system,Segoe UI,Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .title, .select-icon {
    font-family: 'Sora',-apple-system,Segoe UI,Helvetica,Arial,sans-serif
}

button, input {
    font: inherit
}

button {
    cursor: pointer
}

h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -.5px
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0
}

h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 4px
}

.muted {
    color: var(--muted)
}

/* ---- Shell & topbar ---- */
.shell {
    min-height: 100vh
}

.topbar {
    width: 100%;
    position: sticky;
    top: 0;
    background: rgba(248,246,241,.86);
    backdrop-filter: blur(10px);
    z-index: 20;
    border-bottom: 1px solid var(--line)
}

.topbar-inner {
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px
}

.topbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px
}

.mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--navy-1),var(--navy-2));
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(15,20,40,.28)
}

    .mark svg {
        width: 18px;
        height: 18px
    }

.topbar .title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .2px
}

/* ---- Page layout & screen switching ---- */
.container {
    max-width: var(--site);
    margin: auto;
    padding: 56px 24px 90px
}

.crumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 6px
}

    .crumb b {
        color: var(--ink);
        font-weight: 600
    }

.screen {
    display: none
}

    .screen.active {
        display: block;
        animation: rise .45s ease both
    }

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ---- Buttons ---- */
.btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: .15s
}

    .btn.primary {
        background: var(--navy-1);
        color: #fff;
        box-shadow: 0 8px 18px rgba(28,35,64,.25)
    }

        .btn.primary:hover {
            background: var(--navy-2)
        }

    .btn.light {
        background: #fff;
        border: 1px solid #ddd;
        color: #111
    }

        .btn.light:hover {
            border-color: #bbb
        }

    .btn.text {
        background: transparent;
        padding: 0;
        color: var(--ink);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px
    }

        .btn.text:hover {
            color: var(--ink);
            text-decoration: none
        }

        /* Distinguishes an actionable text link (e.g. "Want to update your registered
           number?") from a plain navigation button (e.g. "Back to Digital Cards"),
           which both otherwise render identically via .btn.text above. */
        .btn.text.link-accent {
            color: var(--rage-1)
        }

            .btn.text.link-accent:hover {
                color: var(--rage-2);
                text-decoration: underline
            }

        .btn.text svg {
            width: 14px;
            height: 14px
        }

    .btn.full {
        width: 100%
    }

    .btn.small {
        padding: 9px 15px;
        font-size: 12.5px
    }

    .btn.rage {
        background: var(--rage-1);
        color: #fff;
        border-radius: 999px
    }

        .btn.rage:hover {
            background: var(--rage-2)
        }

    .btn.rage-outline {
        background: #fff;
        color: var(--rage-1);
        border: 1px solid var(--rage-1);
        border-radius: 999px
    }

        .btn.rage-outline:hover {
            background: #fff5f7
        }

/* ---- Home screen: Digital Cards portal ---- */
.rage-logo {
    display: block;
    height: 56px;
    width: auto;
    margin: 0 auto 12px
}

.portal-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center
}

    .portal-intro h1 {
        margin-bottom: 10px
    }

    .portal-intro p {
        max-width: 620px;
        margin: 0 auto;
        line-height: 1.6
    }

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto
}

.portal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden
}

    .portal-card:before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 6px;
        background: linear-gradient(90deg,var(--rage-1),#e51d48)
    }

    .portal-card .select-icon {
        background: linear-gradient(135deg,var(--rage-1),var(--rage-2));
        margin-bottom: 12px
    }

    .portal-card h2 {
        margin: 12px 0 8px
    }

    .portal-card p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.55;
        min-height: 66px
    }

.select-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft)
}

    .select-icon svg {
        width: 24px;
        height: 24px;
        stroke: #fff
    }

.portal-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px
}

/* ---- Card Login ---- */
.auth-page {
    min-height: calc(100vh - 74px);
    display: grid;
    place-items: center;
    padding: 44px 18px
}

.auth-box {
    width: 100%;
    max-width: 430px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px;
    box-shadow: var(--shadow-card)
}

    .auth-box .rage-logo {
        height: 52px
    }

    .auth-box h1 {
        text-align: center;
        font-size: 24px
    }

.login-context {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    margin: -4px 0 20px
}

/* The reCAPTCHA widget renders at a fixed ~304px, narrower than the auth-box's full-width
   fields above it (~366px), so left-aligned it sits off-center with dead space to the right -
   centering it keeps it visually aligned with the rest of the form. */
.g-recaptcha {
    display: flex;
    justify-content: center;
}

.login-error {
    color: var(--red);
    font-size: 13px;
    min-height: 0;
    margin: -8px 0 10px;
    display: none
}

    .login-error.show {
        display: block
    }

/* ---- Card Login: "send PIN" step (masked registered cellphone number) ---- */
.masked-mobile-box {
    text-align: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 14px;
    margin: 0 0 20px
}

.masked-mobile-label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px
}

.masked-mobile-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ink)
}

/* ---- Card Login: 4-digit PIN entry step ---- */
.pin-box-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 20px
}

.pin-box {
    width: 54px;
    height: 60px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    font: inherit
}

    .pin-box:focus {
        outline: none;
        border-color: var(--navy-1)
    }

.btn.text:disabled {
    color: var(--muted);
    cursor: default
}

/* ---- Card Login: "update registered number" sub-flow ---- */
.auth-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 20px 0
}

.update-number-steps {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    counter-reset: update-number-step
}

    .update-number-steps li {
        counter-increment: update-number-step;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        color: var(--muted);
        padding: 6px 0
    }

    .update-number-steps li::before {
        content: counter(update-number-step);
        flex: 0 0 auto;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--soft);
        color: var(--rage-1);
        font-weight: 700;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center
    }

.update-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e6f6ec;
    color: #1a9c4a;
    display: flex;
    align-items: center;
    justify-content: center
}

    .update-success-icon svg {
        width: 26px;
        height: 26px
    }

/* ---- Detail screen layout (card + info panel) ---- */
.detail-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center
}

    .detail-layout > div {
        width: 100%
    }

.panel {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft)
}

    .panel h1 {
        font-size: 26px
    }

/* ---- Loyalty card visual (matches the physical "Rage Rewards" card) ---- */
.royalty-frame {
    width: 100%;
    background: #fdfdfc;
    border-radius: 30px;
    padding: 11px;
    box-shadow: var(--shadow-card)
}

.royalty-card {
    aspect-ratio: 1.63/1;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    padding: 50px 30px 30px;
    color: #fff;
    background: #df263f;
    display: flex;
    flex-direction: column
}

    .royalty-card:after {
        content: "";
        position: absolute;
        inset: 13px;
        border: 2.5px solid #f1cecf;
        border-radius: 17px;
        pointer-events: none
    }

.royalty-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end
}

    .royalty-head img {
        width: 100%;
        max-width: 190px;
    }

.royalty-strip {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    height: 35%;
    width: 100%;
    margin-top: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center
}

.royalty-barcode {
    display: block;
    height: 100%;
    width: 100%
}

.royalty-number {
    display: flex;
    justify-content: space-evenly;
    font-family: 'Sora',sans-serif;
    font-size: 21px;
    margin-top: 10px
}

.royalty-card span {
    letter-spacing: 14px;
    font-weight: 500;
}

/* ---- Account card visual (matches the physical "My Rage" card exactly) ---- */
.myrage-frame {
    width: 100%;
    background: #fdfdfc;
    border-radius: 30px;
    padding: 11px;
    box-shadow: var(--shadow-card)
}

.myrage-card {
    aspect-ratio: 1.63/1;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    padding: 50px 30px 30px;
    color: #fff;
    background: #df263f;
    display: flex;
    flex-direction: column;
}

    .myrage-card:after {
        content: "";
        position: absolute;
        inset: 13px;
        border: 2.5px solid #f1cecf;
        border-radius: 17px;
        pointer-events: none
    }
    /* Real DOM text (not a CSS background-image SVG, which can't use the page's web
   fonts) tiled in a grid and rotated, so it reliably renders in Alex Brush. The
   grid + overflow:hidden on both this and the parent card keeps it fully clipped
   to the card's rounded corners. */
    .myrage-card:before {
        content: "Rage\ARage\ARage\ARage\ARage\ARage";
        position: absolute;
        left: 200px;
        top: -82px;
        z-index: 1;
        white-space: pre;
        font-family: 'Alex Brush', 'Rage Script', 'Brush Script MT', cursive;
        font-size: 231px;
        color: #ffffff14;
        transform: rotate(333deg);
        pointer-events: none;
        font-weight: 600;
        letter-spacing: 13px;
    }

.myrage-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

    .myrage-head img {
        width: 100%;
        max-width: 190px;
    }

.myrage-barcode-wrap {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 12px 22px;
    width: 100%;
    height: 35%;
    margin-top: auto
}

.myrage-barcode {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 2px
}

.myrage-number {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-evenly;
    font-family: 'Sora',sans-serif;
    font-size: 21px;
    margin-top: 10px
}

    .myrage-number span {
        letter-spacing: 14px;
        font-weight: 500
    }

.masked .private {
    filter: blur(6px);
    user-select: none
}

/* ---- Info rows & status pill ---- */
.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eee
}

    .info-row:last-child {
        border-bottom: 0
    }

    .info-row span {
        color: var(--muted);
        font-size: 14px
    }

    .info-row strong {
        font-weight: 600
    }

.status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #e9f7ef;
    color: var(--green);
    font-size: 12px;
    font-weight: 700
}

    .status:before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green)
    }

    .status.declined {
        background: #fbeceb;
        color: var(--red)
    }

        .status.declined:before {
            background: var(--red)
        }

/* ---- Privacy toggle switch ---- */
.visibility {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 18px;
    margin-bottom: 24px;
    background: var(--paper);
    width: 100%
}

    .visibility b {
        font-size: 14px
    }

.switch {
    display: flex;
    align-items: center;
    gap: 10px
}

    .switch input {
        display: none
    }

.slider {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: #ddd;
    position: relative;
    transition: .2s
}

    .slider:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        top: 3px;
        left: 3px;
        box-shadow: 0 1px 4px rgba(0,0,0,.25);
        transition: .2s
    }

.switch input:checked + .slider {
    background: var(--navy-1)
}

    .switch input:checked + .slider:before {
        transform: translateX(20px)
    }

/* ---- Vouchers ---- */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin: 38px 0 18px
}

    .section-head p {
        margin: 4px 0 0;
        font-size: 14px
    }

.voucher-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.voucher {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: .2s
}

    .voucher:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 26px rgba(20,20,30,.08)
    }

.voucher-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--soft);
    color: var(--rage-1);
    margin-bottom: 14px
}

    .voucher-icon svg {
        width: 18px;
        height: 18px
    }

.voucher p {
    margin: 4px 0;
    font-size: 13.5px;
    color: var(--muted)
}

.voucher-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 16px
}

.voucher-state {
    font-size: 12px;
    font-weight: 700;
    color: #8a4a00
}

.voucher.active .voucher-state {
    color: var(--green)
}

/* ---- Account statement table ---- */
.statement-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden
}

    .statement-table th {
        text-align: left;
        font-size: 11.5px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .4px;
        padding: 14px 18px;
        background: var(--soft);
        font-weight: 700
    }

    .statement-table td {
        padding: 14px 18px;
        border-top: 1px solid #f0efe9;
        font-size: 14px
    }

    .statement-table tr:hover td {
        background: #fbfaf6
    }

    .statement-table td.amt {
        text-align: right;
        font-weight: 700;
        font-family: 'Sora',sans-serif
    }

        .statement-table td.amt.neg {
            color: var(--ink)
        }

        .statement-table td.amt.pos {
            color: var(--green)
        }

.statement-panel {
    overflow-x: auto;
    border-radius: 16px
}

.statement-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

    .statement-actions .btn svg {
        width: 15px;
        height: 15px
    }

.empty-note {
    padding: 20px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 16px
}

/* ---- Register / Apply forms ---- */
.field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--ink)
}

.field-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14.5px;
    margin-bottom: 16px;
    background: #fff;
    font: inherit
}

    .field-input:focus {
        outline: none;
        border-color: var(--navy-1)
    }

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2px 0 18px
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer
}

    .radio-opt input {
        width: 16px;
        height: 16px;
        accent-color: var(--navy-1);
        cursor: pointer
    }

.field-error {
    font-size: 12px;
    color: var(--red);
    margin: 0 0 14px;
    display: none;
    text-align: left
}

    .field-error.show {
        display: block
    }

.form-shell {
    max-width: 700px;
    margin: 0 auto;
    background: #f5f5f3;
    border-radius: 12px;
    padding: 34px 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2dfda
}

    .form-shell .rage-logo {
        height: 50px
    }

.form-title {
    text-align: center;
    color: var(--rage-1);
    font-size: 23px;
    margin: 0 0 24px
}

.required-note {
    font-style: italic;
    font-size: 13px;
    margin-bottom: 22px
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-shell .field-input {
    border-radius: 2px;
    margin-bottom: 6px
}

.field-wrap {
    margin-bottom: 18px
}

.field-hint {
    font-size: 12px;
    font-style: italic;
    color: #555;
    margin-top: 4px
}

.consent-copy {
    color: var(--rage-1);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
    margin: 18px 0
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
    margin: 13px 0
}

    .form-check input {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        accent-color: var(--rage-1)
    }

    .form-check a {
        color: var(--navy-1);
        font-weight: 600;
        text-decoration: underline
    }

.marketing-consent {
    background: #fff;
    border: 1px solid #d8d5d0;
    padding: 14px 16px;
    margin: 18px 0
}

.marketing-copy {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin: 8px 0 14px
}

.account-note {
    font-size: 12.5px;
    color: var(--rage-1);
    font-weight: 700;
    line-height: 1.45;
    margin: 18px 0
}

/* ---- Responsive ---- */
@media(max-width:800px) {
    .portal-grid, .form-grid-2 {
        grid-template-columns: 1fr
    }

    .portal-card p {
        min-height: 0
    }

    .voucher-grid {
        gap: 10px
    }

    .section-head {
        display: block
    }

    .container {
        padding: 36px 16px 64px
    }

    .statement-table th:nth-child(2), .statement-table td:nth-child(2) {
        display: none
    }
}

/* ---- Print ---- */
@media print {
    .topbar, .crumb, .visibility, .statement-actions {
        display: none !important
    }
}

@media(max-width:700px) {
    .form-shell {
        padding: 26px 20px
    }

    .rage-logo {
        height: 46px
    }
}

@media(max-width:520px) {
    .topbar-inner {
        padding: 0 16px;
        height: 64px
    }

    .topbar .title {
        font-size: 16px
    }

    .portal-intro h1 {
        font-size: 28px
    }

    .portal-card {
        padding: 26px 20px
    }

    .royalty-frame {
        padding: 7px;
        border-radius: 24px
    }

    .royalty-card {
        padding: 16px 16px 14px;
        border-radius: 16px
    }

        .royalty-card:after {
            inset: 9px;
            border-radius: 9px
        }

    .royalty-number {
        font-size: 14px;
        letter-spacing: 1px;
        padding: 0 12px;
        margin-top: 9px
    }

    .royalty-strip {
        padding: 5px 12px
    }

    .myrage-frame {
        padding: 7px;
        border-radius: 24px
    }

    .myrage-card {
        padding: 16px 16px 14px;
        border-radius: 16px;
        gap: 16px
    }

        .myrage-card:after {
            inset: 9px;
            border-radius: 9px
        }

        .myrage-card:before {
            font-size: 34px
        }

    .myrage-barcode-wrap {
        padding: 12px 16px
    }

    .myrage-barcode {
        height: 50px
    }

    .myrage-number {
        font-size: 14px;
        padding: 0 12px;
        margin-top: 9px
    }

        .myrage-number span {
            letter-spacing: 1px
        }

    .panel {
        padding: 20px
    }

        .panel h1 {
            font-size: 21px
        }

    .info-row {
        padding: 12px 0
    }

        .info-row span, .info-row strong {
            font-size: 13.5px
        }

    .statement-actions {
        width: 100%
    }

        .statement-actions .btn {
            flex: 1
        }

    .statement-table th, .statement-table td {
        padding: 10px 10px;
        font-size: 12.5px
    }

    .voucher {
        padding: 12px 10px
    }

    .voucher-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        margin-bottom: 8px
    }

        .voucher-icon svg {
            width: 14px;
            height: 14px
        }

    .voucher h3 {
        font-size: 13px;
        line-height: 1.25;
        margin-bottom: 2px
    }

    .voucher p {
        font-size: 10.5px;
        margin: 2px 0;
        line-height: 1.3
    }

    .voucher-foot {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-top: 10px
    }

    .voucher-state {
        font-size: 10px;
        text-align: center
    }

    .voucher .btn.small {
        padding: 7px 8px;
        font-size: 11px;
        width: 100%
    }
}
