/* =========================================================
       ACCOUNT INTERNAL UI
       blocco successivo, senza ridefinire :root
       ========================================================= */

    .account-internal-page,
    .account-page-shell {
        color: var(--color9);
    }

    .account-page-head {
        margin-bottom: 1.125rem;
    }

    .account-page-title,
    .deposit-page-title {
        margin: 0 0 .25rem;
        color: var(--color2);
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -.02em;
    }

    .account-page-subtitle,
    .deposit-page-subtitle {
        margin: 0;
        color: var(--color9);
        opacity: .74;
        font-size: .875rem;
        line-height: 1.5;
        font-weight: 500;
    }

    /* ===== shared cards ===== */

    .account-panel,
    .account-filter-card,
    .account-table-card,
    .account-balance-card,
    .account-nav-card,
    .account-content-card {
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 1.125rem;
        box-shadow:
                0 1.125rem 2.5rem rgba(0,0,0,.35),
                inset 0 .0625rem 0 rgba(255,255,255,.06);
    }

    .account-panel,
    .account-filter-card,
    .account-table-card,
    .account-content-card {
        background: linear-gradient(
                180deg,
                color-mix(in srgb, var(--color5) 78%, #ffffff 22%) 0%,
                color-mix(in srgb, var(--color5) 92%, #000000 8%) 100%
        );
    }

    .account-filter-card {
        padding: 0;
        margin: 0 0 1rem;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .account-table-card {
        padding: 0;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .account-content-card {
        padding: 1.5rem;
        min-height: 26.25rem;
    }

    .account-balance-card,
    .account-nav-card {
        padding: 1.125rem;
        margin-bottom: 1.125rem;
    }

    .account-balance-card {
        background: linear-gradient(
                180deg,
                color-mix(in srgb, var(--color3) 92%, #ffffff 8%) 0%,
                var(--color5) 100%
        );
        box-shadow: 0 .625rem 1.625rem rgba(0,0,0,.18);
    }

    .account-nav-card {
        background: linear-gradient(
                180deg,
                color-mix(in srgb, var(--color3) 92%, #ffffff 8%) 0%,
                color-mix(in srgb, var(--color3) 74%, var(--color5) 26%) 100%
        );
        box-shadow: 0 .625rem 1.625rem rgba(0,0,0,.18);
    }

    /* ===== filters ===== */

    .account-filter-grid {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(16.25rem, 1fr);
        gap: 1.125rem;
        align-items: end;
    }

    .account-filter-grid.account-filter-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-filter-grid.account-filter-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .account-filter-grid.account-filter-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .account-field {
        min-width: 0;
        position: relative;
    }

    .account-label {
        display: block;
        margin: 0 0 .625rem;
        color: var(--color1);
        font-size: .9375rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .account-sub-label {
        display: block;
        margin: 0 0 .375rem;
        color: var(--color9);
        opacity: .78;
        font-size: .75rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .account-date-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }

    .account-input,
    .account-select,
    .account-textarea {
        width: 100%;
        border-radius: .875rem;
        border: 1px solid rgba(255,255,255,.14);
        background: color-mix(in srgb, var(--color6) 72%, #ffffff 28%);
        color: var(--color2);
        outline: none;
        box-shadow: none;
        transition: .18s ease;
        font-family: var(--font-primary);
    }

    .account-input,
    .account-select {
        height: 3rem;
        padding: 0 1rem;
        font-size: .9375rem;
        font-weight: 600;
    }

    .account-textarea {
        min-height: 7.5rem;
        padding: .875rem 1rem;
        font-size: .875rem;
        font-weight: 500;
        resize: vertical;
    }

    .account-input::placeholder,
    .account-textarea::placeholder {
        color: rgba(255,255,255,.62);
    }

    .account-input:focus,
    .account-select:focus,
    .account-textarea:focus {
        background: color-mix(in srgb, var(--color6) 64%, #ffffff 36%);
        border-color: var(--color1);
        box-shadow:
                0 0 0 .125rem color-mix(in srgb, var(--color1) 40%, transparent 60%),
                0 .5rem 1.5rem rgba(0,0,0,.35);
        color: var(--color2);
    }

    .account-filter-actions,
    .account-filter-card .account-filter-actions,
    .account-internal-page .account-filter-actions {
        display: flex;
        flex-wrap: wrap;
        gap: .75rem;
        margin-top: 1rem !important;
        padding-top: 0 !important;
        border-top: 0 !important;
    }

    /* ===== buttons ===== */

    .account-btn,
    .deposit-method-btn,
    .withdraw-method-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .625rem;
        min-width: 9.375rem;
        height: 2.875rem;
        padding: 0 1.125rem;
        border-radius: .875rem;
        border: 1px solid transparent;
        font-size: .9375rem;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        transition: .18s ease;
        font-family: var(--font-primary);
    }

    .account-btn i,
    .deposit-method-btn i,
    .withdraw-method-btn i {
        margin-right: 0 !important;
    }

    .account-btn-primary,
    .deposit-method-btn,
    .withdraw-method-btn {
        background: var(--color1);
        border-color: var(--color1);
        color: #17212b !important;
    }

    .account-btn-primary:hover,
    .account-btn-primary:focus,
    .deposit-method-btn:hover,
    .deposit-method-btn:focus,
    .withdraw-method-btn:hover,
    .withdraw-method-btn:focus {
        background: color-mix(in srgb, var(--color1) 86%, #000000 14%);
        border-color: color-mix(in srgb, var(--color1) 86%, #000000 14%);
        color: #17212b !important;
        text-decoration: none;
    }

    .account-btn-primary i,
    .deposit-method-btn i,
    .withdraw-method-btn i {
        color: #17212b !important;
    }

    .account-btn-secondary {
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.14);
        color: var(--color2);
    }

    .account-btn-secondary:hover,
    .account-btn-secondary:focus {
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.24);
        color: var(--color2);
        text-decoration: none;
        box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.16);
    }

    .account-btn-sm {
        min-width: 7.5rem;
        height: 2.5rem;
        font-size: .875rem;
        border-radius: .75rem;
    }

    /* ===== layout ===== */

    .account-page-shell {
        padding-top: 2.25rem;
        padding-bottom: 3rem;
    }

    .account-layout {
        display: flex;
        flex-wrap: wrap;
        margin-left: -.875rem;
        margin-right: -.875rem;
    }

    .account-layout > .account-sidebar-col,
    .account-layout > .account-content-col {
        padding-left: .875rem;
        padding-right: .875rem;
    }

    .account-sidebar-col,
    .account-content-col {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .account-content-col {
        margin-top: 1.375rem;
    }

    @media (min-width: 992px) {
        .account-sidebar-col {
            width: 29%;
            max-width: 29%;
            flex: 0 0 29%;
        }

        .account-content-col {
            width: 71%;
            max-width: 71%;
            flex: 0 0 71%;
            margin-top: 0;
        }
    }

    /* ===== balance ===== */

    .account-balance-title,
    .account-section-title {
        color: var(--color2);
        font-size: 1.3125rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 .875rem;
    }

    .account-balance-title {
        padding-bottom: .625rem;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .account-balance-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: .875rem;
        padding: .5625rem 0;
        border-bottom: 1px dotted rgba(255,255,255,.18);
    }

    .account-balance-row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .account-balance-row span {
        color: var(--color9);
        font-size: .8125rem;
        opacity: .92;
    }

    .account-balance-row strong {
        color: var(--color2);
        font-size: .9375rem;
        font-weight: 700;
        text-align: right;
    }

    /* ===== sidebar ===== */

    .account-section-title + .account-links-wrap {
        margin-top: .375rem;
    }

    .account-links-wrap {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .account-nav-item {
        display: block;
        width: 100%;
        cursor: pointer;
        padding: .8125rem .875rem;
        border-radius: .75rem;
        background: color-mix(in srgb, var(--color5) 72%, var(--color3) 28%);
        border: 1px solid rgba(255,255,255,.10);
        color: var(--color9);
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.2;
        transition: .18s ease;
        text-decoration: none;
        box-shadow: inset 0 .0625rem 0 rgba(255,255,255,.03);
    }

    .account-nav-item:hover {
        background: color-mix(in srgb, var(--color5) 62%, var(--color3) 38%);
        border-color: rgba(255,255,255,.16);
        color: var(--color2);
        text-decoration: none;
        transform: translateY(-.0625rem);
    }

    .account-nav-item.current-p-tab,
    .account-nav-item.is-active {
        background: var(--color1);
        border-color: var(--color1);
        color: #17212b !important;
        box-shadow: 0 .5rem 1.125rem rgba(0,0,0,.14);
    }

    /* ===== deposit cards ===== */

    .deposit-methods-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.125rem;
    }

    .deposit-method-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        min-height: 9.625rem;
        padding: 1.125rem;
        border-radius: 1.125rem;
        background: color-mix(in srgb, var(--color6) 74%, var(--color5) 26%);
        border: 1px solid rgba(255,255,255,.10);
        transition: .18s ease;
    }

    .deposit-method-card:hover {
        transform: translateY(-.1875rem);
        border-color: rgba(255,255,255,.18);
        background: color-mix(in srgb, var(--color6) 60%, var(--color5) 40%);
    }

    .deposit-method-logo,
    .withdraw-method-logo {
        width: 5.75rem;
        height: 5.75rem;
        border-radius: 1rem;
        background: rgba(255,255,255,.06);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 5.75rem;
        overflow: hidden;
    }

    .deposit-method-logo img,
    .withdraw-method-logo img {
        max-width: 4.5rem;
        max-height: 4.5rem;
        width: auto;
        height: auto;
    }

    .deposit-method-body {
        flex: 1;
        min-width: 0;
    }

    .deposit-method-title {
        color: var(--color2);
        font-size: 1.4375rem;
        font-weight: 700;
        line-height: 1.15;
        margin: 0 0 .375rem;
    }

    .deposit-method-text {
        color: var(--color9);
        opacity: .78;
        font-size: .875rem;
        line-height: 1.45;
        margin: 0 0 .875rem;
    }

    /* ===== tables ===== */

    .account-table-wrap {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: .875rem;
        background: transparent !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,.22) transparent;
        padding-bottom: .25rem;
    }

    .account-table-wrap::-webkit-scrollbar {
        height: .375rem;
    }

    .account-table-wrap::-webkit-scrollbar-track {
        background: transparent;
    }

    .account-table-wrap::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.18);
        border-radius: 62.4375rem;
    }

    .account-table-wrap::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,.30);
    }

    .account-datatable {
        width: 100% !important;
        margin: 0 !important;
        border-collapse: separate !important;
        border-spacing: 0;
        color: var(--color9);
        background: transparent;
    }

    .account-datatable thead th {
        background: linear-gradient(
                180deg,
                color-mix(in srgb, var(--color6) 70%, #000000 30%) 0%,
                color-mix(in srgb, var(--color10) 72%, #000000 28%) 100%
        );
        color: var(--color1) !important;
        padding: .9375rem .875rem;
        font-size: .8125rem;
        font-weight: 700;
        white-space: nowrap;
        border: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.22) !important;
        box-shadow: inset 0 -.0625rem 0 rgba(255,255,255,.08);
        vertical-align: middle;
    }

    .account-datatable thead th:first-child {
        border-top-left-radius: .75rem;
    }

    .account-datatable thead th:last-child {
        border-top-right-radius: .75rem;
    }

    .account-datatable tbody td {
        padding: .875rem;
        font-size: .875rem;
        color: var(--color2);
        background: color-mix(in srgb, var(--color6) 82%, #ffffff 18%);
        border: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.06) !important;
        vertical-align: middle;
        background-clip: padding-box;
    }

    .account-datatable.table-striped tbody tr:nth-of-type(odd) td,
    .table-striped tbody tr.odd td {
        background: color-mix(in srgb, var(--color6) 76%, #ffffff 24%) !important;
    }

    .account-datatable.table-striped tbody tr:nth-of-type(even) td,
    .table-striped tbody tr.even td {
        background-color: transparent !important;
    }

    .account-datatable tbody tr:hover td {
        background: color-mix(in srgb, var(--color10) 42%, var(--color6) 58%);
    }

    .account-datatable tbody td,
    .account-datatable tbody td span,
    .account-datatable tbody td small,
    .account-datatable tbody td strong,
    .account-datatable tbody td p,
    .account-datatable tbody td li,
    .account-table-card .dataTables_wrapper table.dataTable tbody td,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > div,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > span,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > nobr,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > small,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > strong,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > p,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > font,
    .account-table-card .dataTables_wrapper table.dataTable tbody td > b {
        color: var(--color2);
        opacity: 1;
    }

    .account-datatable tbody td div:not([class*="status"]):not(.badge):not(.label),
    .account-table-card .dataTables_wrapper table.dataTable tbody td div:not(.account-status-badge):not(.badge):not(.label):not([class*="ticket-status"]):not([class*="ticket-circle-status"]),
    .account-table-card .dataTables_wrapper table.dataTable tbody td span:not(.account-status-badge):not(.badge):not(.label):not([class*="ticket-status"]):not([class*="ticket-circle-status"]) {
        color: var(--color2);
    }

    .account-datatable tbody td a,
    .account-datatable tbody td a:link,
    .account-datatable tbody td a:visited,
    .account-table-card .dataTables_wrapper table.dataTable tbody td a,
    .account-table-card .dataTables_wrapper table.dataTable tbody td a:link,
    .account-table-card .dataTables_wrapper table.dataTable tbody td a:visited {
        color: var(--color1);
        text-decoration: none;
        font-weight: 700;
    }

    .account-datatable tbody td a:hover,
    .account-datatable tbody td a:focus,
    .account-table-card .dataTables_wrapper table.dataTable tbody td a:hover,
    .account-table-card .dataTables_wrapper table.dataTable tbody tr:hover td a {
        color: var(--color2);
        text-decoration: underline;
    }

    .account-datatable tbody td .account-status-badge,
    .account-datatable tbody td .account-status-badge *,
    .account-datatable tbody td .ticket-status-N,
    .account-datatable tbody td .ticket-status-CANCEL,
    .account-datatable tbody td .ticket-status-V,
    .account-datatable tbody td .ticket-status-W,
    .account-datatable tbody td .ticket-status-L,
    .account-datatable tbody td .ticket-circle-status-N,
    .account-datatable tbody td .ticket-circle-status-CANCEL,
    .account-datatable tbody td .ticket-circle-status-V,
    .account-datatable tbody td .ticket-circle-status-W,
    .account-datatable tbody td .ticket-circle-status-L,
    .account-datatable tbody td .badge,
    .account-datatable tbody td .label,
    .account-table-card .dataTables_wrapper table.dataTable tbody td i,
    .account-table-card .dataTables_wrapper table.dataTable tbody td .fa,
    .account-table-card .dataTables_wrapper table.dataTable tbody td .badge,
    .account-table-card .dataTables_wrapper table.dataTable tbody td .label,
    .account-table-card .dataTables_wrapper table.dataTable tbody td .account-status-badge,
    .account-table-card .dataTables_wrapper table.dataTable tbody td [class*="ticket-status"],
    .account-table-card .dataTables_wrapper table.dataTable tbody td [class*="ticket-circle-status"] {
        color: inherit !important;
        opacity: 1;
    }

    .account-table-card .dataTables_wrapper table.dataTable tbody td .ticket-circle-status-N { color: #E08000 !important; }
    .account-table-card .dataTables_wrapper table.dataTable tbody td .ticket-circle-status-CANCEL { color: #E02700 !important; }
    .account-table-card .dataTables_wrapper table.dataTable tbody td .ticket-circle-status-V { color: #ffffff !important; }
    .account-table-card .dataTables_wrapper table.dataTable tbody td .ticket-circle-status-W { color: #0FAF00 !important; }
    .account-table-card .dataTables_wrapper table.dataTable tbody td .ticket-circle-status-L { color: #E02700 !important; }

    .account-datatable tbody tr:hover td a {
        color: var(--color2);
    }

    /* ===== alignment helpers ===== */

    .account-datatable th.account-align-left,
    .account-datatable td.account-align-left {
        text-align: left !important;
    }

    .account-datatable th.account-align-center,
    .account-datatable td.account-align-center {
        text-align: center !important;
    }

    .account-datatable th.account-align-right,
    .account-datatable td.account-align-right {
        text-align: right !important;
    }

    .account-datatable td.account-align-left > *,
    .account-datatable th.account-align-left > * {
        text-align: left !important;
    }

    .account-datatable td.account-align-center > *,
    .account-datatable th.account-align-center > * {
        text-align: center !important;
    }

    .account-datatable td.account-align-right > *,
    .account-datatable th.account-align-right > * {
        text-align: right !important;
    }

    .dataTables_wrapper .child .dtr-details > li.account-align-left .dtr-title,
    .dataTables_wrapper .child .dtr-details > li.account-align-left .dtr-data {
        text-align: left !important;
    }

    .dataTables_wrapper .child .dtr-details > li.account-align-center .dtr-title,
    .dataTables_wrapper .child .dtr-details > li.account-align-center .dtr-data {
        text-align: center !important;
    }

    .dataTables_wrapper .child .dtr-details > li.account-align-right .dtr-title,
    .dataTables_wrapper .child .dtr-details > li.account-align-right .dtr-data {
        text-align: right !important;
    }

    /* ===== status badges ===== */

    .account-status-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 5.5rem;
        padding: .4375rem .75rem;
        border-radius: 62.4375rem;
        font-size: .75rem;
        font-weight: 700;
        line-height: 1;
        border: 1px solid rgba(255,255,255,.08);
    }

    .account-status-running { background-color: #E08000; color: #fff; }
    .account-status-cancel { background-color: #E02700; color: #fff; }
    .account-status-void { background-color: #fff; color: #000; }
    .account-status-win { background-color: #0FAF00; color: #fff; }
    .account-status-loss { background-color: #E02700; color: #fff; }

    /* ===== datatables wrapper ===== */

    .account-table-card .dataTables_wrapper {
        color: var(--color9);
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .account-table-card .dataTables_wrapper > .row,
    .account-table-wrap .row {
        margin-left: 0;
        margin-right: 0;
    }

    .account-table-card .dataTables_wrapper > .row > div,
    .account-table-card .dataTables_wrapper [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .account-table-wrap .dataTables_scroll,
    .account-table-wrap .dataTables_scrollHead,
    .account-table-wrap .dataTables_scrollBody,
    .account-table-wrap .dataTables_scrollFoot {
        overflow: visible !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .account-table-wrap .dataTables_scrollBody {
        max-height: none !important;
        height: auto !important;
        border: 0 !important;
    }

    .account-table-card table.dataTable.no-footer {
        border-bottom: 0 !important;
    }

    .account-table-card .dataTables_processing {
        background: color-mix(in srgb, var(--color6) 90%, #000000 10%);
        color: var(--color2) !important;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: .75rem;
        padding: .75rem 1rem;
    }

    .account-table-card .dataTables_empty {
        text-align: center !important;
        color: var(--color9);
        opacity: .78;
        padding: 1.75rem .875rem !important;
        font-weight: 600;
    }

    .account-table-card .dataTables_length,
    .account-table-card .dataTables_filter,
    .account-table-card .dataTables_info,
    .account-table-card .dataTables_paginate {
        color: var(--color9) !important;
        font-size: .8125rem;
        margin-top: .75rem;
    }

    .account-table-card .dataTables_length label,
    .account-table-card .dataTables_filter label {
        color: var(--color9) !important;
        font-weight: 600;
    }

    .account-table-card .dataTables_info,
    .account-table-card .dataTables_info * {
        color: var(--color9) !important;
    }

    .account-table-card .dataTables_length select,
    .account-table-card .dataTables_filter input {
        height: 2.375rem;
        border-radius: .625rem;
        border: 1px solid rgba(255,255,255,.10);
        background: color-mix(in srgb, var(--color6) 88%, #000000 12%);
        color: var(--color2);
        padding: 0 .75rem;
        outline: none;
        box-shadow: none;
    }

    .account-table-card .dataTables_filter input {
        margin-left: .5rem;
    }

    .account-table-card .dataTables_length select:focus,
    .account-table-card .dataTables_filter input:focus {
        border-color: color-mix(in srgb, var(--color1) 60%, #ffffff 40%);
        box-shadow: 0 0 0 .1875rem color-mix(in srgb, var(--color1) 16%, transparent 84%);
    }

    /* ===== pagination ===== */

    .account-table-card .dataTables_wrapper > .row:last-child {
        align-items: center;
        margin-top: .875rem;
    }

    .account-table-card .dataTables_wrapper .dataTables_length,
    .account-table-card .dataTables_wrapper .dataTables_info,
    .account-table-card .dataTables_wrapper .dataTables_paginate {
        margin-top: 0;
    }

    .account-table-card .dataTables_wrapper .dataTables_length label,
    .account-table-card .dataTables_wrapper .dataTables_info,
    .account-table-card .dataTables_wrapper .dataTables_paginate {
        color: var(--color9);
        font-size: .8125rem;
        font-weight: 600;
    }

    .account-table-card .dataTables_wrapper .dataTables_length select {
        min-width: 3.625rem;
        height: 2.375rem;
        padding: 0 .625rem;
        border-radius: .625rem;
        border: 1px solid rgba(255,255,255,.14);
        background: color-mix(in srgb, var(--color6) 60%, #ffffff 40%);
        color: var(--color2);
        box-shadow: none;
        outline: none;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate {
        text-align: right;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: .5rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item {
        margin: 0;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-link {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 2.625rem;
        height: 2.625rem;
        padding: 0 .75rem;
        margin: 0;
        border-radius: .75rem;
        border: 1px solid rgba(255,255,255,.14);
        background: rgba(255,255,255,.08);
        color: var(--color2);
        line-height: 1;
        font-size: .9375rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: none;
        transition: .18s ease;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-link:hover,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-link:focus {
        background: rgba(255,255,255,.14);
        border-color: rgba(255,255,255,.22);
        color: var(--color2);
        text-decoration: none;
        box-shadow: none;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.active .page-link,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.active .page-link:hover {
        background: var(--color1);
        border-color: var(--color1);
        color: #17212b !important;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.disabled .page-link,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.disabled .page-link:hover {
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.08);
        color: rgba(255,255,255,.28);
        pointer-events: none;
        cursor: default;
        box-shadow: none !important;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.previous .page-link,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.next .page-link,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.previous:not(.disabled) .page-link,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.next:not(.disabled) .page-link {
        background: rgba(255,255,255,.08) !important;
        border: 1px solid rgba(255,255,255,.14) !important;
        color: var(--color2) !important;
    }

    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.previous:not(.disabled) .page-link:hover,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.next:not(.disabled) .page-link:hover,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.previous:not(.disabled) .page-link:focus,
    .account-table-card .dataTables_wrapper .dataTables_paginate .pagination .page-item.next:not(.disabled) .page-link:focus {
        background: rgba(255,255,255,.14) !important;
        border-color: rgba(255,255,255,.22) !important;
        color: var(--color2) !important;
    }

    /* ===== sort icons ===== */

    table.dataTable thead .sorting,
    table.dataTable thead .sorting_asc,
    table.dataTable thead .sorting_desc,
    table.dataTable thead .sorting_asc_disabled,
    table.dataTable thead .sorting_desc_disabled {
        color: var(--color1) !important;
        position: relative;
        padding-right: 1.375rem !important;
    }

    table.dataTable thead .sorting::before,
    table.dataTable thead .sorting_asc::before,
    table.dataTable thead .sorting_desc::before,
    table.dataTable thead .sorting_asc_disabled::before,
    table.dataTable thead .sorting_desc_disabled::before {
        content: none !important;
        display: none !important;
    }

    table.dataTable thead .sorting::after,
    table.dataTable thead .sorting_asc::after,
    table.dataTable thead .sorting_desc::after,
    table.dataTable thead .sorting_asc_disabled::after,
    table.dataTable thead .sorting_desc_disabled::after {
        position: absolute !important;
        right: .5rem !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: inline-block !important;
        color: var(--color1) !important;
        font-size: .75rem !important;
        line-height: 1 !important;
        opacity: 1 !important;
    }

    table.dataTable thead .sorting::after { content: "↕" !important; opacity: .55 !important; }
    table.dataTable thead .sorting_asc::after { content: "↑" !important; opacity: 1 !important; }
    table.dataTable thead .sorting_desc::after { content: "↓" !important; opacity: 1 !important; }
    table.dataTable thead .sorting_asc_disabled::after,
    table.dataTable thead .sorting_desc_disabled::after { opacity: .25 !important; }

    /* ===== responsive datatable child rows ===== */

    table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
    table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
        position: relative;
        padding-left: 2.25rem !important;
        cursor: pointer;
    }

    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child::before,
    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child::before {
        display: none !important;
        content: none !important;
    }

    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
        position: relative;
        padding-left: 2.25rem !important;
    }

    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child::after,
    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child::after {
        content: "\f067";
        font-family: "FontAwesome" !important;
        font-size: .6875rem;
        line-height: 1;
        color: var(--color1);
        position: absolute;
        left: .75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1.125rem;
        height: 1.125rem;
        border-radius: .375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        box-shadow: none;
    }

    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"].parent > td:first-child::after,
    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"].parent > th:first-child::after {
        content: "\f068";
        color: var(--color1);
    }

    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr.child > td:first-child::before,
    .dataTables_wrapper table.dataTable.dtr-inline.collapsed > tbody > tr.child > td:first-child::after {
        content: none !important;
        display: none !important;
    }

    table.dataTable > tbody > tr.child {
        background: rgba(255,255,255,.03) !important;
    }

    table.dataTable > tbody > tr.child td.child {
        margin: 0 !important;
        padding: .625rem .875rem !important;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,.06) !important;
        border-bottom: 1px solid rgba(255,255,255,.06) !important;
    }

    .account-table-card .dataTables_wrapper table.dataTable tbody tr.parent > td {
        border-bottom-color: transparent !important;
    }

    .dataTables_wrapper .child .dtr-details {
        display: table !important;
        width: 100% !important;
        border-collapse: collapse !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dataTables_wrapper .child .dtr-details > li {
        display: table-row !important;
        border: 0 !important;
        background: transparent !important;
    }

    .dataTables_wrapper .child .dtr-details > li .dtr-title {
        display: table-cell !important;
        vertical-align: top !important;
        width: 34%;
        min-width: 5.625rem;
        padding: .7rem 1rem .7rem 0 !important;
        border-bottom: 1px dashed rgba(255,255,255,.18) !important;
        color: rgba(255,255,255,.80) !important;
        font-weight: 700 !important;
        font-size: .75rem !important;
        line-height: 1.35 !important;
        white-space: nowrap;
    }

    .dataTables_wrapper .child .dtr-details > li .dtr-title:after {
        content: ":";
        margin-left: .125rem;
    }

    .dataTables_wrapper .child .dtr-details > li .dtr-data {
        display: table-cell !important;
        vertical-align: top !important;
        padding: .7rem 0 !important;
        border-bottom: 1px dashed rgba(255,255,255,.18) !important;
        color: var(--color2) !important;
        font-size: .875rem !important;
        font-weight: 600 !important;
        line-height: 1.45 !important;
        word-break: break-word;
    }

    .dataTables_wrapper .child .dtr-details > li:last-child .dtr-title,
    .dataTables_wrapper .child .dtr-details > li:last-child .dtr-data {
        border-bottom: 0 !important;
    }

    .dataTables_wrapper .child .dtr-details > li .dtr-data a,
    .dataTables_wrapper .child .dtr-details > li .dtr-data a:link,
    .dataTables_wrapper .child .dtr-details > li .dtr-data a:visited {
        color: var(--color1) !important;
        font-weight: 700 !important;
        text-decoration: none !important;
    }

    .dataTables_wrapper .child .dtr-details > li .dtr-data a:hover,
    .dataTables_wrapper .child .dtr-details > li .dtr-data a:active,
    .dataTables_wrapper .child .dtr-details > li .dtr-data a:focus {
        color: var(--color2) !important;
        text-decoration: none !important;
    }

    .dataTables_wrapper .child .dtr-details > li .dtr-data a i,
    .dataTables_wrapper .child .dtr-details > li .dtr-data a .fa {
        color: inherit !important;
        margin-left: .375rem;
    }

    /* ===== message modal ===== */

    #messageModal .modal-content {
        background: linear-gradient(
                180deg,
                color-mix(in srgb, var(--color5) 84%, #ffffff 16%) 0%,
                color-mix(in srgb, var(--color6) 92%, #000000 8%) 100%
        );
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 1.375rem;
        box-shadow: 0 1.5rem 5rem rgba(0,0,0,.42);
        overflow: hidden;
    }

    #messageModal .modal-header {
        padding: 1.125rem 1.375rem;
        border-bottom: 1px solid rgba(255,255,255,.08);
        background: transparent;
    }

    #messageModal .modal-title {
        color: var(--color2);
        font-size: 1.375rem;
        font-weight: 800;
        line-height: 1.15;
        margin: 0;
    }

    #messageModal .close,
    #messageModal button.close {
        color: var(--color2);
        opacity: .82;
        text-shadow: none;
    }

    #messageModal .modal-body {
        padding: 1.375rem;
        background: transparent;
    }

    #messageModal .modal-footer {
        padding: 1rem 1.375rem;
        border-top: 1px solid rgba(255,255,255,.08);
        background: transparent;
    }

    #messageModal .btn-secondary {
        min-width: 7rem;
        min-height: 2.625rem;
        border-radius: .75rem;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.14);
        color: var(--color2);
        font-weight: 700;
        box-shadow: none;
    }

    #messageModal .btn-secondary:hover,
    #messageModal .btn-secondary:focus {
        background: rgba(255,255,255,.16);
        border-color: rgba(255,255,255,.24);
        color: var(--color2);
        box-shadow: none;
    }

    .account-message-shell {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .account-message-hero {
        position: relative;
        overflow: hidden;
        border-radius: 1.125rem;
        padding: 1.75rem 1.625rem 1.375rem;
        background: linear-gradient(
                135deg,
                color-mix(in srgb, var(--color10) 76%, #000000 24%) 0%,
                color-mix(in srgb, var(--color6) 78%, #000000 22%) 48%,
                color-mix(in srgb, var(--color1) 18%, var(--color10) 82%) 100%
        );
        border: 1px solid rgba(255,255,255,.08);
        box-shadow:
                inset 0 .0625rem 0 rgba(255,255,255,.05),
                0 .75rem 1.875rem rgba(0,0,0,.20);
    }

    .account-message-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at top right, color-mix(in srgb, var(--color1) 22%, transparent 78%) 0%, transparent 36%),
                radial-gradient(circle at bottom left, rgba(255,255,255,.04) 0%, transparent 42%);
        pointer-events: none;
    }

    .account-message-subject {
        position: relative;
        margin: 0;
        color: var(--color2);
        font-size: 1.375rem;
        font-weight: 800;
        line-height: 1.18;
        text-align: center;
        word-break: break-word;
        text-wrap: balance;
    }

    .account-message-subject--compact {
        font-size: 1.75rem;
    }

    .account-message-subtitle {
        position: relative;
        margin-top: .625rem;
        color: rgba(255,255,255,.72);
        font-size: .875rem;
        line-height: 1.45;
        text-align: center;
    }

    .account-message-body-card {
        border-radius: 1.125rem;
        padding: 1.375rem;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: inset 0 .0625rem 0 rgba(255,255,255,.03);
    }

    .account-message-body-label {
        display: none;
    }

    .account-message-richtext {
        color: rgba(255,255,255,.94);
        font-size: 1rem;
        line-height: 1.72;
        text-align: left;
        word-break: break-word;
    }

    .account-message-richtext * {
        box-sizing: border-box;
        max-width: 100%;
    }

    .account-message-richtext p,
    .account-message-richtext div,
    .account-message-richtext span,
    .account-message-richtext li,
    .account-message-richtext td,
    .account-message-richtext th,
    .account-message-richtext strong,
    .account-message-richtext b,
    .account-message-richtext em,
    .account-message-richtext i,
    .account-message-richtext u,
    .account-message-richtext s {
        color: inherit;
    }

    .account-message-richtext p {
        margin: 0 0 1em;
    }

    .account-message-richtext p:last-child {
        margin-bottom: 0;
    }

    .account-message-richtext ul,
    .account-message-richtext ol {
        margin: 0 0 1em;
        padding-left: 1.45em;
    }

    .account-message-richtext li {
        margin-bottom: .35em;
    }

    .account-message-richtext h1,
    .account-message-richtext h2,
    .account-message-richtext h3,
    .account-message-richtext h4,
    .account-message-richtext h5,
    .account-message-richtext h6 {
        color: var(--color2);
        margin: 0 0 .7em;
        line-height: 1.25;
    }

    .account-message-richtext a,
    .account-message-richtext a:link,
    .account-message-richtext a:visited {
        color: var(--color1);
        font-weight: 700;
        text-decoration: none;
    }

    .account-message-richtext a:hover,
    .account-message-richtext a:focus {
        color: var(--color2);
        text-decoration: underline;
    }

    .account-message-richtext img {
        max-width: 100%;
        height: auto;
        border-radius: .875rem;
        display: inline-block;
    }

    .account-message-richtext table {
        width: 100%;
        border-collapse: collapse;
        margin: 0 0 1em;
    }

    .account-message-richtext table td,
    .account-message-richtext table th {
        padding: .5rem .625rem;
        border: 1px solid rgba(255,255,255,.12);
    }

    .account-message-richtext blockquote {
        margin: 0 0 1em;
        padding: .75rem .875rem;
        border-left: .1875rem solid var(--color1);
        background: rgba(255,255,255,.04);
        color: rgba(255,255,255,.84);
        border-radius: 0 .625rem .625rem 0;
    }

    .account-message-meta-footer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: .75rem;
        color: rgba(255,255,255,.52);
        font-size: .75rem;
        line-height: 1.4;
        padding-left: .125rem;
    }

    .account-message-meta-date {
        opacity: .92;
    }

    /* ===== coupon modal ===== */

    #modalCoupon {
        padding: 0 !important;
    }

    #modalCoupon .modal-dialog.modal-coupon-dialog {
        width: auto;
        max-width: 28.75rem;
        margin: 1.125rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #modalCoupon .modal-content.modal-coupon-content {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #modalCoupon .modal-header.modal-coupon-header {
        width: 100%;
        padding: 0 0 .625rem 0;
        background: transparent !important;
        border: 0 !important;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    #modalCoupon .modal-title.modal-coupon-title {
        display: none !important;
    }

    #modalCoupon .modal-coupon-close.close,
    #modalCoupon .modal-coupon-close {
        margin: 0;
        padding: 0;
        width: 2.75rem;
        height: 2.75rem;
        border: 0;
        border-radius: 62.4375rem;
        background: rgba(255,255,255,.10);
        color: #fff;
        opacity: 1;
        text-shadow: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: .18s ease;
        backdrop-filter: blur(.375rem);
        -webkit-backdrop-filter: blur(.375rem);
    }

    #modalCoupon .modal-coupon-close span {
        color: inherit;
        font-size: 1.75rem;
        line-height: 1;
        display: inline-block;
        margin-top: -.0625rem;
    }

    #modalCoupon .modal-coupon-close:hover,
    #modalCoupon .modal-coupon-close:focus {
        background: rgba(255,255,255,.18);
        color: #fff;
        opacity: 1;
        outline: none;
    }

    #modalCoupon .modal-body.modal-coupon-body {
        width: 100%;
        padding: 0;
        background: transparent !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #modalCoupon .coupon-paper-frame {
        width: 100%;
        height: 76vh;
        max-height: 51.25rem;
        min-height: 33.75rem;
        padding: 0;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #modalCoupon .coupon-paper-iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 1.125rem;
        background: #fff;
        box-shadow:
                0 2.5rem 7.5rem rgba(0,0,0,.55),
                0 .75rem 1.75rem rgba(0,0,0,.35);
    }

    #modalCoupon .modal-footer.modal-coupon-footer {
        width: 100%;
        padding: .875rem 0 0 0;
        background: transparent !important;
        border: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .875rem;
    }

    #modalCoupon .modal-coupon-btn {
        min-width: 8.125rem;
        height: 2.875rem;
        padding: 0 1.125rem;
        border-radius: .875rem;
        font-size: .9375rem;
        font-weight: 800;
        box-shadow: none;
        transition: .18s ease;
    }

    #modalCoupon .modal-coupon-btn-primary {
        background: var(--color1);
        border: 1px solid var(--color1);
        color: #17212b;
    }

    #modalCoupon .modal-coupon-btn-primary:hover,
    #modalCoupon .modal-coupon-btn-primary:focus {
        background: color-mix(in srgb, var(--color1) 86%, #000000 14%);
        border-color: color-mix(in srgb, var(--color1) 86%, #000000 14%);
        color: #11181f;
        box-shadow: none;
    }

    #modalCoupon .modal-coupon-btn-secondary {
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.16);
        color: #fff;
        backdrop-filter: blur(.375rem);
        -webkit-backdrop-filter: blur(.375rem);
    }

    #modalCoupon .modal-coupon-btn-secondary:hover,
    #modalCoupon .modal-coupon-btn-secondary:focus {
        background: rgba(255,255,255,.16);
        border-color: rgba(255,255,255,.24);
        color: #fff;
        box-shadow: none;
    }

    /* ===== datepicker ===== */

    .datepicker,
    .datepicker-dropdown {
        background: color-mix(in srgb, var(--color6) 72%, #ffffff 28%) !important;
        border: 1px solid rgba(255,255,255,.14) !important;
        border-radius: .875rem !important;
        box-shadow: 0 1.125rem 2.25rem rgba(0,0,0,.28) !important;
        padding: .625rem !important;
        z-index: 99999 !important;
    }

    .datepicker-dropdown:before,
    .datepicker-dropdown:after {
        display: none !important;
    }

    .datepicker {
        text-align: center !important;
    }

    .datepicker table {
        width: 100% !important;
        margin: 0 !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
    }

    .datepicker table tr th,
    .datepicker table tr td {
        text-align: center !important;
        vertical-align: middle !important;
        border: 0 !important;
        border-radius: .625rem !important;
        background: transparent !important;
        color: var(--color2) !important;
        font-size: .875rem !important;
        font-weight: 600 !important;
    }

    .datepicker-days table tr th,
    .datepicker-days table tr td {
        width: 2.375rem !important;
        height: 2.375rem !important;
        line-height: 2.375rem !important;
        padding: 0 !important;
    }

    .datepicker-days table tr th,
    .datepicker-days table tr th.dow {
        color: rgba(255,255,255,.56) !important;
        opacity: 1 !important;
        font-weight: 700 !important;
    }

    .datepicker-days table tr td.day:hover,
    .datepicker-days table tr td.focused {
        background: rgba(255,255,255,.10) !important;
        color: var(--color2) !important;
    }

    .datepicker-days table tr td.active,
    .datepicker-days table tr td.active:hover {
        background: rgba(255,255,255,.18) !important;
        color: var(--color2) !important;
        text-shadow: none !important;
    }

    .datepicker-days table tr td.today {
        background: rgba(255,255,255,.06) !important;
        color: var(--color2) !important;
    }

    .datepicker .datepicker-switch,
    .datepicker .prev,
    .datepicker .next {
        color: var(--color2) !important;
        font-weight: 700 !important;
        text-align: center !important;
        background: transparent !important;
    }

    .datepicker .prev:hover,
    .datepicker .next:hover,
    .datepicker .datepicker-switch:hover {
        background: rgba(255,255,255,.08) !important;
    }

    .datepicker .datepicker-months table,
    .datepicker .datepicker-years table,
    .datepicker .datepicker-decades table,
    .datepicker .datepicker-centuries table {
        width: 100% !important;
        table-layout: auto !important;
    }

    .datepicker .datepicker-months td,
    .datepicker .datepicker-years td,
    .datepicker .datepicker-decades td,
    .datepicker .datepicker-centuries td {
        width: auto !important;
        height: auto !important;
        padding: .375rem !important;
        text-align: center !important;
        vertical-align: middle !important;
    }

    .datepicker .datepicker-months span,
    .datepicker .datepicker-years span,
    .datepicker .datepicker-decades span,
    .datepicker .datepicker-centuries span {
        display: block !important;
        float: left !important;
        width: 31.3333% !important;
        height: 2.375rem !important;
        line-height: 2.375rem !important;
        margin: 1% !important;
        padding: 0 !important;
        border-radius: .625rem !important;
        text-align: center !important;
        font-size: .875rem !important;
        font-weight: 700 !important;
        color: var(--color2) !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .datepicker .datepicker-months span:hover,
    .datepicker .datepicker-years span:hover,
    .datepicker .datepicker-decades span:hover,
    .datepicker .datepicker-centuries span:hover,
    .datepicker .datepicker-months span.focused,
    .datepicker .datepicker-years span.focused,
    .datepicker .datepicker-decades span.focused,
    .datepicker .datepicker-centuries span.focused {
        background: rgba(255,255,255,.10) !important;
        color: var(--color2) !important;
    }

    .datepicker .datepicker-months span.active,
    .datepicker .datepicker-months span.active:hover,
    .datepicker .datepicker-years span.active,
    .datepicker .datepicker-years span.active:hover,
    .datepicker .datepicker-decades span.active,
    .datepicker .datepicker-decades span.active:hover,
    .datepicker .datepicker-centuries span.active,
    .datepicker .datepicker-centuries span.active:hover {
        background: rgba(255,255,255,.18) !important;
        color: var(--color2) !important;
        text-shadow: none !important;
    }

    .datepicker .datepicker-months span.disabled,
    .datepicker .datepicker-years span.disabled,
    .datepicker .datepicker-decades span.disabled,
    .datepicker .datepicker-centuries span.disabled {
        opacity: .35 !important;
        cursor: default !important;
        background: transparent !important;
    }

    /* ===== bonus wager modal bar ===== */

    #modal-iframe.has-bonus-wager-bar .iziModal-wrap {
        height: calc(100% - 2.1875rem) !important;
    }

    #modal-iframe .iziModal-content {
        display: flex;
        flex-direction: column;
        height: 100% !important;
        min-height: 0;
    }

    #bonusWagerModalBar {
        display: none;
        flex: 0 0 auto;
        margin: 0;
        padding: .5rem .625rem .5625rem;
        background: rgba(11,16,20,.96);
        border-bottom: 1px solid rgba(255,255,255,.10);
        box-shadow: inset 0 -.0625rem 0 rgba(255,255,255,.03);
    }

    #bonusWagerModalBar .bwm-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .625rem;
        margin-bottom: .375rem;
    }

    #bonusWagerModalBar .bwm-title {
        font-size: .6875rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 72%;
    }

    #bonusWagerModalBar .bwm-percent {
        font-size: .875rem;
        font-weight: 800;
        line-height: 1;
        color: var(--color1, #f3c400);
        flex: 0 0 auto;
    }

    #bonusWagerModalBar .bwm-progress {
        width: 100%;
        height: .375rem;
        border-radius: 62.4375rem;
        overflow: hidden;
        background: rgba(255,255,255,.10);
    }

    #bonusWagerModalBar .bwm-progress-fill {
        width: 0%;
        height: 100%;
        border-radius: 62.4375rem;
        background: linear-gradient(90deg, var(--color1, #f3c400), var(--color3, #146e51));
        transition: width .25s ease;
    }

    #bonusWagerModalBar .bwm-values {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
        margin-top: .375rem;
        font-size: .625rem;
        font-weight: 600;
        color: rgba(255,255,255,.78);
    }

    #bonusWagerModalBar .bwm-values-left {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #bonusWagerModalBar .bwm-values-right {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    #modal-iframe.has-bonus-wager-bar .iziModal-iframe {
        flex: 1 1 auto !important;
        height: auto !important;
        min-height: 0 !important;
    }

    #modal-iframe .iziModal-iframe {
        width: 100%;
        border: 0;
        display: block;
    }

    /* ===== veltrano override ===== */
