body.nc-theme-next {
    --nc-next-bg-top: #fdfdfd;
    --nc-next-bg-bottom: #c6e5ff;
    --nc-next-bg-accent-a: rgba(161, 196, 253, 0.34);
    --nc-next-bg-accent-b: rgba(194, 233, 251, 0.46);
    --nc-next-nav-start: #7de2fc;
    --nc-next-nav-end: #b9b6e5;
    --nc-next-shell-start: rgba(255, 255, 255, 0.9);
    --nc-next-shell-mid: rgba(238, 246, 255, 0.92);
    --nc-next-shell-end: rgba(230, 239, 255, 0.95);
    --nc-next-surface: rgba(255, 255, 255, 0.94);
    --nc-next-surface-strong: #ffffff;
    --nc-next-text: #162033;
    --nc-next-muted: #5b677d;
    --nc-next-border: rgba(22, 32, 51, 0.08);
    --nc-next-border-strong: rgba(22, 32, 51, 0.14);
    --nc-next-accent: #0f766e;
    --nc-next-accent-soft: rgba(15, 118, 110, 0.12);
    --nc-next-warning-soft: rgba(217, 119, 6, 0.12);
    --nc-next-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    color: var(--nc-next-text);
}

@keyframes ncNextAmbientShift {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 50%;
    }

    50% {
        background-position: 100% 20%, 0% 100%, 50% 50%;
    }

    100% {
        background-position: 0% 0%, 100% 0%, 50% 50%;
    }
}

@keyframes ncNextFloatLayer {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }

    50% {
        transform: translate3d(2%, 2%, 0) scale(1.06);
    }

    100% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
}

@keyframes ncNextNavShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body.nc-theme-next,
body.nc-theme-next .wrapper,
body.nc-theme-next .content-wrapper {
    background-image:
        radial-gradient(circle at 0% 10%, var(--nc-next-bg-accent-a) 0%, transparent 34%),
        radial-gradient(circle at 100% 18%, var(--nc-next-bg-accent-b) 0%, transparent 30%),
        linear-gradient(120deg, var(--nc-next-bg-top) 0%, var(--nc-next-bg-bottom) 100%);
    background-size: 180% 180%, 180% 180%, 100% 100%;
    animation: ncNextAmbientShift 18s ease-in-out infinite;
}

body.nc-theme-next {
    position: relative;
}

body.nc-theme-next::before {
    content: '';
    position: fixed;
    inset: -12%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
    background:
        radial-gradient(circle at 14% 18%, rgba(125, 226, 252, 0.22) 0%, transparent 26%),
        radial-gradient(circle at 84% 20%, rgba(185, 182, 229, 0.24) 0%, transparent 28%),
        radial-gradient(circle at 50% 88%, rgba(161, 196, 253, 0.2) 0%, transparent 30%);
    animation: ncNextFloatLayer 20s ease-in-out infinite;
}

body.nc-theme-next .wrapper,
body.nc-theme-next .content-wrapper,
body.nc-theme-next .main-header,
body.nc-theme-next .main-sidebar {
    position: relative;
    z-index: 1;
}

body.nc-theme-next .box,
body.nc-theme-next .small-box,
body.nc-theme-next .public-shell-card,
body.nc-theme-next .modal-content {
    background: var(--nc-next-surface);
    border: 1px solid var(--nc-next-border);
    box-shadow: var(--nc-next-shadow);
}

body.nc-theme-next .box-header,
body.nc-theme-next .small-box > .inner,
body.nc-theme-next .modal-header,
body.nc-theme-next .modal-footer {
    border-color: var(--nc-next-border);
}

body.nc-theme-next .btn-primary,
body.nc-theme-next .btn-success {
    border-color: transparent;
    box-shadow: none;
}

body.nc-theme-next .btn-primary {
    border-radius: 20px;
}

body.nc-theme-next .btn-success {
    background: #0b8f67;
}

body.nc-theme-next .btn-outline-secondary {
    background: var(--nc-next-surface-strong);
}

body.nc-theme-next .main-header .logo,
body.nc-theme-next .main-header .navbar,
body.nc-theme-next .main-header {
    background: linear-gradient(180deg, var(--nc-next-shell-start) 0%, var(--nc-next-shell-mid) 55%, var(--nc-next-shell-end) 100%);
    animation: ncNextNavShift 24s ease-in-out infinite;
    color: #17324d;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    border-bottom-color: rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(18px);
}

body.nc-theme-next .main-header .logo,
body.nc-theme-next .main-header .navbar .nav > li > a,
body.nc-theme-next .main-header .sidebar-toggle,
body.nc-theme-next .main-header .navbar-brand {
    color: #17324d !important;
}

body.nc-theme-next .main-header .logo {
    border-right: 1px solid rgba(125, 145, 191, 0.14);
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
}

body.nc-theme-next .main-header .logo .logo-lg,
body.nc-theme-next .main-header .logo .logo-mini,
body.nc-theme-next .main-header .logo span,
body.nc-theme-next .main-header .logo b {
    color: #23425f !important;
    opacity: 1 !important;
}

body.nc-theme-next .main-header .navbar .nav > li > a:hover,
body.nc-theme-next .main-header .sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.16) !important;
}

body.nc-theme-next .main-sidebar,
body.nc-theme-next .left-side {
    background: linear-gradient(180deg, var(--nc-next-shell-start) 0%, var(--nc-next-shell-mid) 55%, var(--nc-next-shell-end) 100%) !important;
    border-right: 1px solid rgba(125, 145, 191, 0.14);
    box-shadow: 16px 0 36px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

body.nc-theme-next .main-footer {
    position: relative;
    z-index: 1;
    color: #4b627c;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(238, 246, 255, 0.72) 52%, rgba(222, 235, 255, 0.82) 100%),
        linear-gradient(120deg, var(--nc-next-bg-top) 0%, var(--nc-next-bg-bottom) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(18px) saturate(1.08);
}

body.nc-theme-next .main-footer a,
body.nc-theme-next .main-footer strong,
body.nc-theme-next .main-footer b {
    color: #244764;
}

body.nc-theme-next .sidebar-menu {
    padding: 14px 12px 26px;
}

body.nc-theme-next .sidebar-menu > li {
    margin-bottom: 6px;
}

body.nc-theme-next .sidebar-menu > li > a {
    border-radius: 16px;
    color: #36506d !important;
    font-weight: 600;
    padding: 12px 14px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

body.nc-theme-next .sidebar-menu > li > a > .fa,
body.nc-theme-next .sidebar-menu > li > a > .fas,
body.nc-theme-next .sidebar-menu > li > a > .far,
body.nc-theme-next .sidebar-menu > li > a > .glyphicon,
body.nc-theme-next .sidebar-menu > li > a > .ion {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 12px;
    color: #4f6fd8;
    background: linear-gradient(135deg, rgba(125, 226, 252, 0.2) 0%, rgba(185, 182, 229, 0.28) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.nc-theme-next .sidebar-menu > li:hover > a,
body.nc-theme-next .sidebar-menu > li.active > a,
body.nc-theme-next .sidebar-menu > li.menu-open > a {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(93, 129, 242, 0.96) 0%, rgba(116, 201, 255, 0.9) 100%) !important;
    box-shadow: 0 16px 28px rgba(78, 113, 220, 0.2);
    transform: translateX(2px);
}

body.nc-theme-next .sidebar-menu > li:hover > a > .fa,
body.nc-theme-next .sidebar-menu > li:hover > a > .fas,
body.nc-theme-next .sidebar-menu > li:hover > a > .far,
body.nc-theme-next .sidebar-menu > li:hover > a > .glyphicon,
body.nc-theme-next .sidebar-menu > li:hover > a > .ion,
body.nc-theme-next .sidebar-menu > li.active > a > .fa,
body.nc-theme-next .sidebar-menu > li.active > a > .fas,
body.nc-theme-next .sidebar-menu > li.active > a > .far,
body.nc-theme-next .sidebar-menu > li.active > a > .glyphicon,
body.nc-theme-next .sidebar-menu > li.active > a > .ion,
body.nc-theme-next .sidebar-menu > li.menu-open > a > .fa,
body.nc-theme-next .sidebar-menu > li.menu-open > a > .fas,
body.nc-theme-next .sidebar-menu > li.menu-open > a > .far,
body.nc-theme-next .sidebar-menu > li.menu-open > a > .glyphicon,
body.nc-theme-next .sidebar-menu > li.menu-open > a > .ion {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

body.nc-theme-next .sidebar-menu .treeview-menu {
    margin: 6px 0 12px;
    padding: 8px 0 2px 18px;
    background: transparent;
}

body.nc-theme-next .sidebar-menu .treeview-menu > li > a {
    border-radius: 12px;
    color: #60748e !important;
    padding: 9px 12px;
}

body.nc-theme-next .sidebar-menu .treeview-menu > li.active > a,
body.nc-theme-next .sidebar-menu .treeview-menu > li > a:hover {
    color: #31518b !important;
    background: rgba(125, 226, 252, 0.16) !important;
}

body.nc-theme-next.nc-theme-slice-login {
    background:
        radial-gradient(circle at top right, rgba(14, 116, 144, 0.18), transparent 22%),
        linear-gradient(135deg, #0f172a 0%, #111827 45%, #1f2937 100%);
}

body.nc-theme-next.nc-theme-slice-login .form-control::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

body.nc-theme-next.nc-theme-slice-login .access-button {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%) !important;
    border: 0 !important;
}

body.nc-theme-next.nc-home-public {
    color: #ffffff;
    background:
        linear-gradient(rgba(7, 10, 18, 0.42), rgba(7, 10, 18, 0.42)),
        var(--nc-home-public-bg, url('/uploads/cms/loginfond.jpg')) center/cover no-repeat fixed;
}

body.nc-theme-next.nc-home-public .navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

body.nc-theme-next.nc-home-public .navbar-default {
    background-image: linear-gradient(-225deg, rgba(125, 226, 252, 0.92) 0%, rgba(185, 182, 229, 0.92) 100%);
    background-size: 200% 200%;
    animation: ncNextNavShift 24s ease-in-out infinite;
    border: none;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

body.nc-theme-next.nc-home-public .navbar-default .navbar-nav > li > a,
body.nc-theme-next.nc-home-public .navbar-default .navbar-brand {
    color: #17324d;
    font-size: 16px;
    font-weight: 700;
}

body.nc-theme-next.nc-home-public .navbar-default .navbar-nav > li > a:hover,
body.nc-theme-next.nc-home-public .navbar-default .navbar-brand:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.14);
}

body.nc-theme-next.nc-home-public #card img.center {
    margin-bottom: 20px;
    max-width: 250px;
    width: 100%;
}

body.nc-theme-next.nc-theme-slice-settings .content-header,
body.nc-theme-next.nc-theme-slice-pos .content-header {
    padding-top: 22px;
}

body.nc-theme-next.nc-theme-slice-dashboard .content-header,
body.nc-theme-next.nc-theme-slice-settings .content-header {
    position: relative;
}

body.nc-theme-next.nc-theme-slice-dashboard .content-header > h1,
body.nc-theme-next.nc-theme-slice-settings .content-header > h1 {
    letter-spacing: -0.02em;
    font-weight: 700;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 26px 22px;
    border-radius: 26px;
    color: #14324b;
    background: linear-gradient(120deg, rgba(161, 196, 253, 0.9) 0%, rgba(194, 233, 251, 0.98) 54%, rgba(212, 234, 255, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow: 0 18px 30px rgba(77, 120, 185, 0.12);
    overflow: hidden;
    min-height: 208px;
    transition: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.1) 38%, transparent 62%);
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero::after {
    content: '';
    position: absolute;
    inset: auto -40px -56px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(125, 226, 252, 0.34) 0%, rgba(185, 182, 229, 0.12) 48%, transparent 72%);
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__eyebrow,
body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero h1,
body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__message,
body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__content,
body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__widget {
    position: relative;
    z-index: 1;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__content {
    flex: 1 1 540px;
    min-width: 0;
    min-height: 144px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__widget {
    flex: 0 0 356px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__widget-shell {
    width: 100%;
    max-width: 356px;
    min-height: 176px;
    padding: 12px 10px 8px;
    display: grid;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 14px 24px rgba(77, 120, 185, 0.1);
    transition: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant {
    min-height: 176px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    color: #18385c;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__header,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__input-wrap,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__results {
    position: relative;
    z-index: 1;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__header,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__input-wrap,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__label,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-header strong,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-header span,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result-main strong,
body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result-main span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__label {
    color: rgba(24, 56, 92, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #1f6fb2;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__prompt {
    margin: 0;
    color: #14324b;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__input-wrap {
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(36, 78, 118, 0.14);
    color: rgba(20, 50, 75, 0.58);
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__input {
    min-width: 0;
    flex: 1;
    height: 34px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #14324b;
    font-size: 13px;
    font-weight: 600;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__input::placeholder {
    color: rgba(20, 50, 75, 0.46);
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__results {
    display: grid;
    gap: 6px;
    max-height: 172px;
    overflow: auto;
    color: rgba(24, 56, 92, 0.68);
    font-size: 12px;
    font-weight: 600;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group {
    display: grid;
    gap: 5px;
    padding: 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-header {
    align-items: flex-start;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-header strong {
    color: #14324b;
    font-size: 12px;
    line-height: 1.15;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-header span {
    color: rgba(20, 50, 75, 0.58);
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
    text-align: right;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__group-items {
    display: grid;
    gap: 5px;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__empty {
    padding: 8px 2px 0;
    color: rgba(24, 56, 92, 0.62);
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result {
    min-height: 38px;
    padding: 6px 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.54);
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result-main {
    min-width: 0;
    display: grid;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result-main strong {
    color: #14324b;
    font-size: 12px;
    line-height: 1.2;
}

body.nc-theme-next.nc-theme-slice-dashboard .menu-search-assistant__result-main span {
    color: rgba(20, 50, 75, 0.58);
    font-size: 11px;
    line-height: 1.2;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    color: #245070;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    color: #18385c;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__message {
    margin: 10px 0 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(24, 56, 92, 0.82);
    transition: none;
}

@media (max-width: 991px) {
    body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero {
        flex-direction: column;
    }

    body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__widget {
        flex-basis: auto;
        justify-content: flex-start;
    }

    body.nc-theme-next.nc-theme-slice-dashboard .home-welcome-hero__widget-shell {
        max-width: 356px;
    }
}

body.nc-theme-next.nc-theme-slice-dashboard .content-header > h1,
body.nc-theme-next.nc-theme-slice-settings .content-header > h1 {
    letter-spacing: -0.02em;
    font-weight: 700;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(18px) saturate(1.15);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 28%, transparent 62%), radial-gradient(circle at top right, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.08) 36%, transparent 66%);
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box::after {
    content: '';
    position: absolute;
    inset: auto -30px -70px auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.03) 58%, transparent 76%);
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-white {
    border-color: rgba(226, 232, 240, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box > .inner {
    position: relative;
    z-index: 1;
    padding: 18px 20px;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box .icon {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 24px;
    opacity: 1;
    z-index: 2;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box .icon i {
    font-size: 24px;
    line-height: 1;
}

body.nc-theme-next.nc-theme-slice-dashboard i[class*='fa-'],
body.nc-theme-next.nc-theme-slice-dashboard i[class^='fa'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25em;
    min-width: 1.25em;
    line-height: 1;
}

body.nc-theme-next.nc-theme-slice-dashboard .kpi-delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_sales_delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_cogs_delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_gross_delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_margin_delta {
    display: inline-block;
    font-size: 12px;
    margin-top: 4px;
}

body.nc-theme-next.nc-theme-slice-dashboard .equal-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

body.nc-theme-next.nc-theme-slice-dashboard .equal-row > [class*='col-'] {
    display: flex;
    padding-left: 7.5px;
    padding-right: 7.5px;
}

body.nc-theme-next.nc-theme-slice-dashboard .equal-row .box,
body.nc-theme-next.nc-theme-slice-dashboard .equal-row .card,
body.nc-theme-next.nc-theme-slice-dashboard .equal-row .widget {
    display: flex;
    flex-direction: column;
    width: 100%;
}

body.nc-theme-next.nc-theme-slice-dashboard .equal-row .box .box-body,
body.nc-theme-next.nc-theme-slice-dashboard .equal-row .card .card-body {
    flex: 1 1 auto;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-aqua,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-green,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-yellow,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-red,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-primary {
    border-color: transparent;
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-aqua,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-primary {
    color: #eff6ff !important;
    background: linear-gradient(135deg, rgba(14, 60, 118, 0.9) 0%, rgba(18, 96, 166, 0.82) 55%, rgba(47, 132, 217, 0.7) 100%) !important;
    border-color: rgba(37, 99, 235, 0.2);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-green {
    color: #f3fbf8 !important;
    background: linear-gradient(135deg, rgba(13, 86, 74, 0.9) 0%, rgba(18, 127, 110, 0.82) 58%, rgba(48, 176, 145, 0.7) 100%) !important;
    border-color: rgba(13, 148, 136, 0.2);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-yellow {
    color: #fff7ed !important;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.9) 0%, rgba(180, 83, 9, 0.82) 55%, rgba(234, 120, 45, 0.72) 100%) !important;
    border-color: rgba(180, 83, 9, 0.22);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-red {
    color: #fff4f5 !important;
    background: linear-gradient(135deg, rgba(122, 28, 45, 0.9) 0%, rgba(172, 38, 65, 0.82) 52%, rgba(225, 91, 122, 0.72) 100%) !important;
    border-color: rgba(190, 24, 93, 0.18);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-aqua .icon,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-green .icon,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-red .icon,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-primary .icon,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-yellow .icon {
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-aqua h3,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-aqua p,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-green h3,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-green p,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-red h3,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-red p,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-primary h3,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-primary p,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-yellow h3,
body.nc-theme-next.nc-theme-slice-dashboard .small-box.bg-yellow p {
    color: inherit;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card {
    min-height: 152px;
    isolation: isolate;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card > .inner {
    padding: 20px 90px 18px 18px;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card::after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: -36px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 60%, transparent 72%);
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card__icon {
    top: 18px;
    right: 18px;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card__icon i {
    transform: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card .text-muted,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card .kpi-delta {
    color: inherit !important;
    opacity: 0.8;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card .text-muted,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card .kpi-delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_sales_delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_cogs_delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_gross_delta,
body.nc-theme-next.nc-theme-slice-dashboard .profit_margin_delta {
    display: block;
    min-height: 16px;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card .text-muted {
    min-height: 18px;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card h3,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card h4,
body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-amount,
body.nc-theme-next.nc-theme-slice-dashboard .debt-summary-mini-chart h3,
body.nc-theme-next.nc-theme-slice-dashboard .js-debt-overdue-share,
body.nc-theme-next.nc-theme-slice-dashboard .avg_ticket,
body.nc-theme-next.nc-theme-slice-dashboard .total_transactions_count {
    font-variant-numeric: tabular-nums;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card h3,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card h4 {
    min-height: 1.35em;
    white-space: nowrap;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--sales {
    color: #f4fffd;
    background: linear-gradient(135deg, rgba(10, 78, 69, 0.98) 0%, rgba(14, 122, 108, 0.95) 60%, rgba(43, 194, 170, 0.86) 100%) !important;
    border-color: rgba(15, 118, 110, 0.22);
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--cogs {
    color: #fff8f0;
    background: linear-gradient(135deg, rgba(124, 45, 18, 0.98) 0%, rgba(191, 84, 19, 0.95) 58%, rgba(249, 163, 88, 0.88) 100%) !important;
    border-color: rgba(194, 65, 12, 0.2);
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--gross {
    color: #eff7ff;
    background: linear-gradient(135deg, rgba(29, 78, 157, 0.98) 0%, rgba(31, 106, 197, 0.95) 55%, rgba(96, 165, 250, 0.86) 100%) !important;
    border-color: rgba(37, 99, 235, 0.2);
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--margin {
    color: #f7fbff;
    background: linear-gradient(135deg, rgba(15, 67, 88, 0.98) 0%, rgba(19, 104, 125, 0.95) 56%, rgba(69, 183, 201, 0.86) 100%) !important;
    border-color: rgba(8, 145, 178, 0.2);
}

body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--sales .home-kpi-card__icon,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--cogs .home-kpi-card__icon,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--gross .home-kpi-card__icon,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card--margin .home-kpi-card__icon {
    color: rgba(255, 255, 255, 0.96);
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    min-height: 168px;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row {
    align-items: stretch;
    min-height: 168px;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card::after,
body.nc-theme-next.nc-theme-slice-dashboard .box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 24%, transparent 56%);
    pointer-events: none;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .card-body,
body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-container,
body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-content,
body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card a {
    position: relative;
    z-index: 1;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-content {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .card-body {
    padding: 1.25rem 1.35rem;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-container {
    display: flex;
    align-items: center;
    min-height: 118px;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-title {
    color: #64748b;
    letter-spacing: 0.08em;
    display: block;
    min-height: 40px;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-amount {
    color: #0f172a;
    letter-spacing: 0.02em;
    display: block;
    min-height: 1.5em;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .kpi-delta,
body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-info {
    display: block;
    min-height: 16px;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-icon {
    width: 64px;
    height: 64px;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 20px rgba(15, 23, 42, 0.08);
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card .widget-stats-icon i {
    line-height: 1;
    font-size: 26px;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n + 1)::before {
    background: linear-gradient(135deg, rgba(236, 246, 255, 0.96) 0%, rgba(225, 239, 255, 0.9) 52%, rgba(207, 229, 255, 0.76) 100%);
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n + 2)::before {
    background: linear-gradient(135deg, rgba(239, 252, 248, 0.96) 0%, rgba(226, 248, 241, 0.9) 50%, rgba(204, 239, 229, 0.78) 100%);
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n + 3)::before {
    background: linear-gradient(135deg, rgba(255, 247, 238, 0.96) 0%, rgba(253, 237, 213, 0.92) 55%, rgba(251, 214, 170, 0.78) 100%);
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n)::before {
    background: linear-gradient(135deg, rgba(245, 247, 255, 0.96) 0%, rgba(230, 238, 250, 0.92) 50%, rgba(203, 220, 241, 0.78) 100%);
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n + 1) .widget-stats-icon {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.98) 0%, rgba(191, 219, 254, 0.94) 100%);
    color: #1d4ed8;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n + 2) .widget-stats-icon {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.98) 0%, rgba(167, 243, 208, 0.94) 100%);
    color: #0f766e;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n + 3) .widget-stats-icon {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.98) 0%, rgba(253, 186, 116, 0.94) 100%);
    color: #c2410c;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-row .home-stat-card:nth-child(4n) .widget-stats-icon {
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.98) 0%, rgba(186, 230, 253, 0.94) 100%);
    color: #0f4c81;
}

body.nc-theme-next.nc-theme-slice-dashboard .box,
body.nc-theme-next.nc-theme-slice-dashboard .nav-tabs-custom,
body.nc-theme-next.nc-theme-slice-dashboard .table-responsive,
body.nc-theme-next.crm-shell .info-box,
body.nc-theme-next.crm-shell .info-box-new-style {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 249, 255, 0.78) 100%);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px) saturate(1.12);
}

body.nc-theme-next.nc-theme-slice-dashboard .home-chart-shell,
body.nc-theme-next.nc-theme-slice-dashboard .home-table-shell,
body.nc-theme-next.nc-theme-slice-dashboard .debt-summary-mini-chart,
body.nc-theme-next.nc-theme-slice-dashboard #chart-profit-spark,
body.nc-theme-next.nc-theme-slice-dashboard #chart-debt-summary-mini,
body.nc-theme-next.nc-theme-slice-dashboard #chart-top-products,
body.nc-theme-next.nc-theme-slice-dashboard #chart-top-customers,
body.nc-theme-next.nc-theme-slice-dashboard #chart-top-sellers {
    position: relative;
    overflow: hidden;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-chart-shell,
body.nc-theme-next.nc-theme-slice-dashboard #chart-profit-spark {
    min-height: 180px;
}

body.nc-theme-next.nc-theme-slice-dashboard .debt-summary-mini-chart,
body.nc-theme-next.nc-theme-slice-dashboard #chart-debt-summary-mini {
    min-height: 188px;
}

body.nc-theme-next.nc-theme-slice-dashboard #chart-top-products,
body.nc-theme-next.nc-theme-slice-dashboard #chart-top-customers,
body.nc-theme-next.nc-theme-slice-dashboard #chart-top-sellers {
    min-height: 340px;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-table-shell {
    min-height: 226px;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-stats-group.is-loading,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-top-debtors-group.is-loading {
    opacity: 0.999;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading .home-kpi-card h3,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading .home-kpi-card h4,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading .home-kpi-card .kpi-delta,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-stats-group.is-loading .widget-stats-amount,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-stats-group.is-loading .kpi-delta,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_sales,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_cogs,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_gross,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_margin,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_sales_delta,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_cogs_delta,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_gross_delta,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_margin_delta,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .debt_cumulative,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .debt_overdue,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .js-debt-overdue-share {
    position: relative;
    color: transparent !important;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading .home-kpi-card h3::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading .home-kpi-card h4::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-kpi-group.is-loading .home-kpi-card .kpi-delta::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-stats-group.is-loading .widget-stats-amount::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-stats-group.is-loading .kpi-delta::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_sales::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_cogs::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_gross::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_margin::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_sales_delta::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_cogs_delta::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_gross_delta::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .profit_margin_delta::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .debt_cumulative::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .debt_overdue::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .js-debt-overdue-share::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0.9em;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.92) 0%, rgba(241, 245, 249, 0.98) 50%, rgba(226, 232, 240, 0.92) 100%);
    background-size: 220% 100%;
    animation: home-dashboard-skeleton 1.2s ease-in-out infinite;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading .home-chart-shell::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .home-chart-shell::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading .debt-summary-mini-chart::after,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-top-debtors-group.is-loading .home-table-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.88) 0%, rgba(241, 245, 249, 0.98) 48%, rgba(226, 232, 240, 0.88) 100%);
    background-size: 220% 100%;
    animation: home-dashboard-skeleton 1.2s ease-in-out infinite;
}

body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-top-debtors-group.is-loading #top_debtors_table,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-profit-group.is-loading #chart-profit-spark > *,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading #chart-debt-summary-mini > *,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading #chart-top-products > *,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading #chart-top-customers > *,
body.nc-theme-next.nc-theme-slice-dashboard .home-dashboard-shell .js-home-analytics-group.is-loading #chart-top-sellers > * {
    opacity: 0;
}

body.nc-theme-next.nc-theme-slice-dashboard .widget-stats-icon i::before,
body.nc-theme-next.nc-theme-slice-dashboard .home-kpi-card__icon i::before {
    display: block;
    width: 1.25em;
    text-align: center;
}

@keyframes home-dashboard-skeleton {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}
}

body.nc-theme-next.accounting-shell .backoffice-module-nav .nav > li.active > a,
body.nc-theme-next.accounting-shell .backoffice-module-nav .nav > li.active > a:hover,
body.nc-theme-next.accounting-shell .backoffice-module-nav .nav > li.active > a:focus {
    background: var(--nc-next-accent-soft) !important;
    color: var(--nc-next-accent) !important;
}

body.nc-theme-next.accounting-shell .backoffice-module-nav .navbar-toggle {
    border-color: var(--nc-next-border-strong);
}

body.nc-theme-next.accounting-shell .backoffice-module-nav .navbar-toggle .icon-bar {
    background-color: var(--nc-next-text);
}

body.nc-theme-next.accounting-shell .accounting-settings-reinstall {
    margin-top: -30px;
}

body.nc-theme-next.accounting-shell .accounting-section-title {
    padding: 0 24px;
}

body.nc-theme-next.accounting-shell .accounting-stack-gap {
    margin: 10px 0 15px;
}

body.nc-theme-next.accounting-shell .accounting-col-mapping {
    width: 220px;
}

body.nc-theme-next.accounting-shell .accounting-full-width-select {
    width: 100%;
}

body.nc-theme-next.accounting-shell .accounting-report-item {
    margin-bottom: 10px;
}

body.nc-theme-next.accounting-shell .accounting-report-title {
    border: hidden;
    text-align: center;
}

body.nc-theme-next.accounting-shell .accounting-report-title--plain {
    border: 0;
}

body.nc-theme-next.accounting-shell .accounting-text-right {
    text-align: right;
}

body.nc-theme-next.accounting-shell .accounting-min-w-200 {
    min-width: 200px;
}

body.nc-theme-next.accounting-shell .accounting-row-plain-bold {
    border: hidden;
    font-weight: bold;
}

body.nc-theme-next.accounting-shell .accounting-cell-center-plain {
    border: hidden;
    text-align: center;
}

body.nc-theme-next.accounting-shell .accounting-row-strong {
    font-weight: 700;
}

body.nc-theme-next.accounting-shell .accounting-box-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

body.nc-theme-next.accounting-shell .accounting-filter-toggle {
    cursor: pointer;
}

body.nc-theme-next.accounting-shell .accounting-map-modal-header {
    background: var(--nc-next-accent) !important;
    color: #ffffff;
}

body.nc-theme-next.accounting-shell .accounting-map-modal-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom {
    background: var(--nc-next-surface);
    border: 1px solid var(--nc-next-border);
    border-radius: 16px;
    box-shadow: var(--nc-next-shadow);
    overflow: hidden;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs {
    align-items: center;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(240, 244, 248, 0.94) 100%);
    border: 0;
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    min-height: 76px;
    padding: 12px 14px;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs.nav-justified > li,
body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li {
    display: block !important;
    float: none !important;
    margin: 0 !important;
    width: auto !important;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li > a {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    color: var(--nc-next-muted) !important;
    display: inline-flex !important;
    gap: 8px;
    justify-content: center;
    line-height: 1.25;
    margin: 0 !important;
    min-height: 38px;
    min-width: 118px;
    padding: 9px 14px !important;
    text-align: center;
    white-space: nowrap;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li > a > i {
    flex: 0 0 auto;
    font-size: 14px;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li.active > a,
body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li.active > a:hover,
body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li.active > a:focus {
    background: var(--nc-next-accent-soft) !important;
    border-color: rgba(15, 118, 110, 0.16) !important;
    color: var(--nc-next-accent) !important;
}

body.nc-theme-next.accounting-shell .nav-tabs-custom > .tab-content {
    background: transparent;
    border: 0;
    padding: 16px;
}

body.nc-theme-next.crm-shell .backoffice-module-nav,
body.nc-theme-next.spreadsheet-shell .backoffice-module-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid var(--nc-next-border);
    border-radius: 18px;
    box-shadow: var(--nc-next-shadow);
    margin-bottom: 18px;
}

body.nc-theme-next.crm-shell .backoffice-module-nav .navbar-brand,
body.nc-theme-next.crm-shell .backoffice-module-nav .nav > li > a,
body.nc-theme-next.spreadsheet-shell .backoffice-module-nav .navbar-brand,
body.nc-theme-next.spreadsheet-shell .backoffice-module-nav .nav > li > a {
    color: var(--nc-next-text) !important;
}

body.nc-theme-next.crm-shell .backoffice-module-nav .nav > li.active > a,
body.nc-theme-next.crm-shell .backoffice-module-nav .nav > li.active > a:hover,
body.nc-theme-next.crm-shell .backoffice-module-nav .nav > li.active > a:focus,
body.nc-theme-next.spreadsheet-shell .backoffice-module-nav .nav > li.active > a,
body.nc-theme-next.spreadsheet-shell .backoffice-module-nav .nav > li.active > a:hover,
body.nc-theme-next.spreadsheet-shell .backoffice-module-nav .nav > li.active > a:focus {
    background: var(--nc-next-accent-soft) !important;
    color: var(--nc-next-accent) !important;
}

body.nc-theme-next.crm-shell .nav-tabs-custom {
    background: var(--nc-next-surface);
    border: 1px solid var(--nc-next-border);
    border-radius: 16px;
    box-shadow: var(--nc-next-shadow);
    overflow: hidden;
}

body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs {
    align-items: center;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(240, 244, 248, 0.94) 100%);
    border: 0;
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    min-height: 64px;
    padding: 12px 14px;
}

body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs.nav-justified > li,
body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs > li {
    display: block !important;
    float: none !important;
    margin: 0 !important;
    width: auto !important;
}

body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs > li > a {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    color: var(--nc-next-muted) !important;
    display: inline-flex !important;
    gap: 8px;
    line-height: 1.25;
    margin: 0 !important;
    min-height: 38px;
    padding: 9px 14px !important;
    white-space: nowrap;
}

body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs > li.active > a,
body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs > li.active > a:hover,
body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs > li.active > a:focus {
    background: var(--nc-next-accent-soft) !important;
    border-color: rgba(15, 118, 110, 0.16) !important;
    color: var(--nc-next-accent) !important;
}

body.nc-theme-next.crm-shell .nav-tabs-custom > .tab-content {
    background: transparent;
    border: 0;
    padding: 16px;
}

body.nc-theme-next.crm-shell .info-box,
body.nc-theme-next.crm-shell .info-box-new-style {
    border: 1px solid var(--nc-next-border);
    border-radius: 16px;
    box-shadow: var(--nc-next-shadow) !important;
    overflow: hidden;
}

body.nc-theme-next.crm-shell .info-box-icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

body.nc-theme-next.spreadsheet-shell .luckysheet-share-logo,
body.nc-theme-next.spreadsheet-shell .luckysheet_info_detail_back,
body.nc-theme-next.spreadsheet-shell .luckysheet_info_detail_update,
body.nc-theme-next.spreadsheet-shell .luckysheet_info_detail_save {
    display: none !important;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet {
    height: 85vh;
    position: relative;
    width: 100%;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-editor-header-row {
    align-items: center;
    margin: 0;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-editor-header-start {
    padding-left: 0;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-editor-header-end {
    padding-right: 0;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-template-bar,
body.nc-theme-next.spreadsheet-shell .spreadsheet-file-picker,
body.nc-theme-next.spreadsheet-shell .spreadsheet-toolbar {
    align-items: center;
    display: flex;
    gap: 8px;
    min-width: 0;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-template-bar {
    flex-wrap: nowrap;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-toolbar {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-template-select {
    flex: 1 1 auto;
    min-width: 0;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-search-group {
    max-width: 100%;
    width: 380px;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-action-form {
    display: inline-block;
    margin: 0;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-file-button {
    margin: 0;
    white-space: nowrap;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-hidden-file-input {
    display: none;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-file-name {
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.nc-theme-next.spreadsheet-shell .spreadsheet-nowrap {
    white-space: nowrap;
}

@media (max-width: 767px) {
    body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs,
    body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs,
    body.nc-theme-next.spreadsheet-shell .spreadsheet-template-bar {
        align-items: stretch;
        flex-direction: column;
    }

    body.nc-theme-next.accounting-shell .nav-tabs-custom > .nav.nav-tabs > li > a,
    body.nc-theme-next.crm-shell .nav-tabs-custom > .nav.nav-tabs > li > a {
        width: 100%;
    }

    body.nc-theme-next.spreadsheet-shell .spreadsheet-editor-header-start,
    body.nc-theme-next.spreadsheet-shell .spreadsheet-editor-header-end {
        padding-left: 0;
        padding-right: 0;
    }
}

body.nc-theme-next.nc-theme-slice-pos .main-header,
body.nc-theme-next.nc-theme-slice-pos .main-header .logo,
body.nc-theme-next.nc-theme-slice-pos .main-header .navbar {
    background: rgba(255, 255, 255, 0.9);
    color: var(--nc-next-text);
}

body.nc-theme-next.nc-theme-slice-pos .content-wrapper {
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.06), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

body.nc-theme-next.nc-theme-slice-pos .box,
body.nc-theme-next.nc-theme-slice-pos .modal-content,
body.nc-theme-next.nc-theme-slice-pos .table-responsive {
    border-radius: 16px;
}

body.nc-theme-next.nc-theme-slice-pos .backoffice-pos-offline-suggest {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--nc-next-border-strong);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

body.nc-theme-next.nc-theme-slice-pos .backoffice-pos-offline-suggest-item:hover {
    background: rgba(15, 118, 110, 0.08);
}

body.nc-theme-next.nc-theme-slice-reports .box,
body.nc-theme-next.nc-theme-slice-reports .nav-tabs-custom,
body.nc-theme-next.nc-theme-slice-reports .table-responsive {
    background: var(--nc-next-surface);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card {
    position: relative;
    min-height: 132px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card .inner {
    position: relative;
    z-index: 1;
    padding: 18px 20px 20px;
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card h3 {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card p {
    margin: 0;
    max-width: 72%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card .icon {
    top: 14px;
    right: 16px;
    font-size: 64px;
    opacity: 1;
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card .icon i {
    color: rgba(255, 255, 255, 0.24);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-aqua {
    color: #f0f9ff !important;
    background: linear-gradient(135deg, #0f5fd7 0%, #13b8d7 100%) !important;
    border-color: rgba(14, 116, 144, 0.26);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-green {
    color: #ecfdf5 !important;
    background: linear-gradient(135deg, #0c8f4c 0%, #18c37e 100%) !important;
    border-color: rgba(5, 150, 105, 0.24);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-yellow {
    color: #fff7ed !important;
    background: linear-gradient(135deg, #f08a00 0%, #ffbc42 100%) !important;
    border-color: rgba(217, 119, 6, 0.26);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-red {
    color: #fff1f2 !important;
    background: linear-gradient(135deg, #d53333 0%, #f15b6c 100%) !important;
    border-color: rgba(225, 29, 72, 0.24);
}

body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-aqua h3,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-aqua p,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-green h3,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-green p,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-yellow h3,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-yellow p,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-red h3,
body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card.bg-red p {
    color: inherit;
}

@media (max-width: 576px) {
    body.nc-theme-next.nc-theme-slice-dashboard .small-box .icon {
        display: none;
    }

    body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card p {
        max-width: 100%;
    }

    body.nc-theme-next.nc-theme-slice-reports .backfill-summary-card .icon {
        display: none;
    }
}
