/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Cart
 *
 * This block allows you to customize theme colors and styles for the entire Nexus Cart template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

.vona-auth-shell,
.register-wrapper,
.password-reset-wrapper,
.twofa-wrapper {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #6366f1 100%);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.auth-wrapper,
.password-reset-wrapper,
.twofa-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: min(42rem, calc(100vh - 11rem));
}

.auth-card,
.reset-card,
.twofa-card,
.register-card {
    margin: 0 auto;
    width: 100%;
}

.auth-card,
.reset-card,
.twofa-card {
    max-width: 28rem;
}

.register-card {
    max-width: 56rem;
}

.password-reset-wrapper .row,
.twofa-wrapper .row {
    justify-content: center;
    margin: 0;
    width: 100%;
}

.password-reset-wrapper .col-12,
.twofa-wrapper .col-12 {
    max-width: 28rem;
    padding: 0;
}

.topbar-link.active {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

.side-nav-link.active {
    background: rgba(var(--bs-primary-rgb), .08);
    color: var(--bs-primary);
}

.side-nav-link.active .menu-icon,
.side-nav-link.active .menu-text,
.side-nav-link.active .menu-arrow {
    color: var(--bs-primary);
}

body.client-layout-body .btn-primary {
    background-color: #2563eb !important;
    background-image: none !important;
    border-color: #2563eb !important;
    color: #fff !important;
}

body.client-layout-body .btn-primary:hover,
body.client-layout-body .btn-primary:focus,
body.client-layout-body .btn-primary:active,
body.client-layout-body .btn-primary.active,
body.client-layout-body .show > .btn-primary.dropdown-toggle {
    background-color: #1d4ed8 !important;
    background-image: none !important;
    border-color: #1d4ed8 !important;
    color: #fff !important;
}

body.client-layout-body .btn-primary:disabled,
body.client-layout-body .btn-primary.disabled {
    background-color: #2563eb !important;
    background-image: none !important;
    border-color: #2563eb !important;
    color: #fff !important;
}

body.client-layout-body .vona-page-shell {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

body.client-layout-body .client-page-title-box {
    gap: 1rem;
    margin-bottom: 1.25rem;
}

body.client-layout-body .client-toolbar-card,
body.client-layout-body .client-summary-card {
    border-radius: 1rem;
    overflow: hidden;
}

body.client-layout-body .client-toolbar-card .card-body {
    padding: 1rem 1.25rem;
}

body.client-layout-body .client-summary-card .card-body {
    padding: 1.125rem 1.25rem;
}

body.client-layout-body .client-products-card {
    border-radius: 1rem;
    overflow: hidden;
}

body.client-layout-body .client-data-card {
    border-radius: 1rem;
    overflow: hidden;
}

body.client-layout-body .client-products-card-header {
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1rem 1.25rem;
}

body.client-layout-body .client-data-card-header {
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1rem 1.25rem;
}

body.client-layout-body .client-products-status-filter {
    flex-wrap: wrap;
    row-gap: .5rem;
}

body.client-layout-body .client-products-card-body {
    padding-bottom: .75rem !important;
}

body.client-layout-body .client-data-card-body {
    padding-bottom: .75rem !important;
}

body.client-layout-body .client-empty-state {
    min-height: 15rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row {
    margin-left: 0;
    margin-right: 0;
}

body.client-layout-body .client-data-card .dt-container > .row {
    margin-left: 0;
    margin-right: 0;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

body.client-layout-body .client-data-card .dt-container > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child > [class*="col-"],
body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2) > [class*="col-"],
body.client-layout-body .client-data-card .dt-container > .row:first-child > [class*="col-"],
body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) > [class*="col-"] {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    max-width: none;
    width: auto;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child > [class*="col-"]:last-child,
body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2) > [class*="col-"]:last-child,
body.client-layout-body .client-data-card .dt-container > .row:first-child > [class*="col-"]:last-child,
body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) > [class*="col-"]:last-child {
    justify-content: flex-end;
    margin-left: auto;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child,
body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2) {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child {
    padding: .85rem 1.25rem .85rem;
}

body.client-layout-body .client-data-card .dt-container > .row:first-child,
body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

body.client-layout-body .client-data-card .dt-container > .row:first-child {
    padding: .85rem 1.25rem .85rem;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2) {
    align-items: center;
    padding: .85rem 1.25rem 0;
}

body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) {
    align-items: center;
    padding: .85rem 1.25rem 0;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-layout-row:first-child {
    align-items: center;
    gap: 1rem;
    padding: 0 1.25rem .85rem;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-layout-row:last-child {
    align-items: center;
    gap: 1rem;
    padding: .85rem 1.25rem 0;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-search {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-search input {
    min-width: 13rem;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-length label,
body.client-layout-body .client-data-card .dt-length label {
    align-items: center;
    display: inline-flex;
    gap: .5rem;
    margin: 0;
    white-space: nowrap;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-length select,
body.client-layout-body .client-data-card .dt-length select {
    min-width: 4.5rem;
}

body.client-layout-body .client-data-card .dt-search {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

body.client-layout-body .client-data-card .dt-search input {
    min-width: 13rem;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-info,
body.client-layout-body .client-data-card .dt-info {
    margin-bottom: 0;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-paging,
body.client-layout-body .client-data-card .dt-paging {
    margin-left: auto;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .pagination,
body.client-layout-body .client-data-card .pagination {
    justify-content: flex-end;
    margin-bottom: 0;
}

body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-search input,
body.client-layout-body .client-data-card .dt-search input {
    min-height: 2.375rem;
    width: 14rem;
}

body.client-layout-body .client-products-card .client-products-table thead th {
    background: #f8fafc;
    font-size: .875rem;
    padding: .95rem 1rem;
    white-space: nowrap;
}

body.client-layout-body .client-data-card .client-data-table thead th {
    background: #f8fafc;
    font-size: .875rem;
    padding: .95rem 1rem;
    white-space: nowrap;
}

body.client-layout-body .client-products-card .client-products-table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

body.client-layout-body .client-data-card .client-data-table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

body.client-layout-body .client-products-card .client-products-table tbody tr:last-child td,
body.client-layout-body .client-data-card .client-data-table tbody tr:last-child td {
    border-bottom: 0;
}

body.client-layout-body .client-products-card .client-products-table thead th:first-child,
body.client-layout-body .client-products-card .client-products-table tbody td:first-child {
    padding-left: 1.25rem;
}

body.client-layout-body .client-data-card .client-data-table thead th:first-child,
body.client-layout-body .client-data-card .client-data-table tbody td:first-child {
    padding-left: 1.25rem;
}

body.client-layout-body .client-products-card .client-products-table thead th:last-child,
body.client-layout-body .client-products-card .client-products-table tbody td:last-child {
    padding-right: 1.25rem;
}

body.client-layout-body .client-data-card .client-data-table thead th:last-child,
body.client-layout-body .client-data-card .client-data-table tbody td:last-child {
    padding-right: 1.25rem;
}

body.client-layout-body .client-compact-filter {
    row-gap: 1rem;
}

body.client-layout-body .client-filter-actions {
    align-items: center;
    justify-content: flex-end;
}

body.client-layout-body .client-status-select {
    min-width: 11rem;
}

body.client-layout-body .client-payment-methods .btn-outline-secondary {
    background: #fff !important;
    background-image: none !important;
    border-color: #dbe3ef !important;
    color: #0f172a !important;
}

body.client-layout-body .client-payment-methods .btn-outline-secondary:hover,
body.client-layout-body .client-payment-methods .btn-check:focus + .btn-outline-secondary {
    background: #eff6ff !important;
    background-image: none !important;
    border-color: #93c5fd !important;
    color: #1d4ed8 !important;
}

body.client-layout-body .client-payment-methods .btn-check:checked + .btn-outline-secondary,
body.client-layout-body .client-payment-methods .btn-check:active + .btn-outline-secondary {
    background: #2563eb !important;
    background-image: none !important;
    border-color: #2563eb !important;
    color: #fff !important;
}

body.client-layout-body .client-payment-methods .btn-check:checked + .btn-outline-secondary .avatar-md,
body.client-layout-body .client-payment-methods .btn-check:active + .btn-outline-secondary .avatar-md {
    background: rgba(255, 255, 255, .16) !important;
}

body.client-layout-body .client-payment-methods .btn-check:checked + .btn-outline-secondary .avatar-title i,
body.client-layout-body .client-payment-methods .btn-check:active + .btn-outline-secondary .avatar-title i {
    color: #fff !important;
}

body.client-layout-body .client-addfunds-card .card-body {
    padding-bottom: 1.5rem;
}

body.client-layout-body .client-addfunds-amount-group {
    align-items: stretch;
    border: 1px solid #dbe3ef;
    border-radius: .85rem;
    overflow: hidden;
}

body.client-layout-body .client-addfunds-amount-group .input-group-text {
    align-items: center;
    background: #f8fafc !important;
    border: 0;
    color: #64748b;
    font-weight: 600;
    min-width: 3.75rem;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

body.client-layout-body .client-addfunds-amount-group .form-control {
    border: 0;
    box-shadow: none;
    font-size: 1.5rem;
    font-weight: 600;
    min-height: 4.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

body.client-layout-body .client-addfunds-amount-group .form-control:focus {
    box-shadow: none;
}

body.client-layout-body .client-addfunds-amount-note {
    display: inline-block;
    margin-top: .75rem;
}

body.client-layout-body .client-addfunds-methods .col-md-6 {
    display: flex;
}

body.client-layout-body .client-addfunds-method-option {
    align-items: center;
    border-radius: .9rem;
    display: flex;
    min-height: 5rem;
}

body.client-layout-body .client-addfunds-submit {
    min-height: 3rem;
}

body.client-layout-body .client-addfunds-card-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0;
    padding: .9rem 1.25rem;
}

@media (max-width: 991.98px) {
    body.client-layout-body .client-page-title-box {
        align-items: flex-start !important;
        flex-direction: column;
    }

    body.client-layout-body .client-toolbar-card .card-body {
        padding: 1rem;
    }

    body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-layout-row:first-child,
    body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-layout-row:last-child,
    body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child,
    body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2),
    body.client-layout-body .client-data-card .dt-container > .row:first-child,
    body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) {
        align-items: stretch;
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child > [class*="col-"],
    body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2) > [class*="col-"],
    body.client-layout-body .client-data-card .dt-container > .row:first-child > [class*="col-"],
    body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) > [class*="col-"] {
        margin-left: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:first-child > [class*="col-"]:last-child,
    body.client-layout-body .client-products-card #tableServicesList_wrapper > .row:nth-last-child(2) > [class*="col-"]:last-child,
    body.client-layout-body .client-data-card .dt-container > .row:first-child > [class*="col-"]:last-child,
    body.client-layout-body .client-data-card .dt-container > .row:nth-last-child(2) > [class*="col-"]:last-child {
        justify-content: flex-start;
    }

    body.client-layout-body .client-products-card #tableServicesList_wrapper .dt-search input {
        min-width: 100%;
    }

    body.client-layout-body .client-data-card .dt-search input {
        min-width: 100%;
    }

    body.client-layout-body .client-filter-actions {
        justify-content: stretch;
    }

    body.client-layout-body .client-status-select {
        min-width: 100%;
        width: 100% !important;
    }
}
