:root {
    --header-height: 56px;
    --button-height: 29px;
    --aside-background-color: #2e2f39;

    --mb-backdrop-zindex: 1050;
    --mb-backdrop-bg: #000;
    --mb-backdrop-opacity: 0.5;

    --mb-over-backdrop-zindex: 3060;

    --mb-font-size: 12px;

    --bs-primary: #f47c23;
    --bs-primary-rgb: 244, 124, 35;
}

/* XS */

@media only screen and (min-width: 0px) {
    :root {}
}

/* SM (landscape phones, 576px and up) */

@media (min-width: 576px) {
    :root {}
}

/* MD (tablets, 768px and up) */

@media (min-width: 768px) {
    :root {}
}

/* LG (desktops, 992px and up) */

@media (min-width: 992px) {
    :root {}
}

/* XL (large desktops, 1200px and up) */

@media (min-width: 1200px) {
    :root {}
}

/* XXL (large desktops, 1400px and up) */

@media (min-width: 1400px) {
    :root {}
}html, body {
    width: 100%;
    height: 100%;
    font-size: var(--mb-font-size);
}

body {
    overflow: hidden;
}

.modal {
    z-index: 2000;
}

.tpl-section-above {
    z-index: 40000;
}

.tpl-splash-background {
    background-image: url('/assets/App/Img/splash.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.tpl-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    z-index: var(--mb-over-backdrop-zindex);
    background-color: var(--bs-gray-400);
    transition: all 0.5s ease;
}

.tpl-header .navbar-brand {
    height: 44px;
}

.tpl-header .shortcutNav-item:hover {
    box-shadow: 0 0 0 .25rem rgba(255,255,255,.25);
}

.tpl-section {
    position: absolute;
    top: var(--header-height);
    width: 100%;
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

.tpl-section:after,
.tpl-modal:after {
    content: " ";
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--mb-backdrop-zindex);
    width: 100vw;
    height: 100dvh;
    background-color: var(--mb-backdrop-bg);
    opacity: var(--mb-backdrop-opacity);
}

body.backdrop .tpl-section:not(.d-none):after,
body.backdrop .tpl-modal.show:after {
    display: block;
}

.tpl-section.no-header {
    top: 0;
    height: 100dvh;
}

.tpl-section-main {
    overflow: auto;
    flex: 1 1 auto
}

.tpl-section-header {
    position: relative;
    z-index: 2;
}

.tpl-alert {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tpl-alert>.alert {
    width: 400px;
    max-width: 80%;
    background-color: var(--bs-white);
}

.tpl-sidebar {
    height: calc(100dvh);
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s;
}

.tpl-modal {
    position: absolute;
    width: 100%;
    height: calc(100dvh);
    transition: all 0.5s ease;
}

/* BLINK */

.blink {
    animation: blinker 1s step-start infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* PRODUCT */

.tpl-product-name {
    text-transform: uppercase;
    line-height: 1;
    font-weight: bolder;
}

.tpl-product-reference {
    line-height: 1;
    font-size: .875em;
    color: var(--bs-gray-600);
}

.tpl-product-image-thumb {
    width: 60px;
    max-width: 100%;
    height: auto;
}

.tpl-product-image-mini-thumb {
    width: 40px;
    max-width: 100%;
    height: auto;
}

/* SUB-HEADER NAVS */

.tpl-nav-pills {
    height: 100%;
}

.tpl-nav-pills .nav-link {
    border-radius: 0;
    width: 100%;
    color: #fff;
    height: 100%;
    padding: 1rem 0;
    font-size: .875rem;
    text-align: center;
    text-transform: uppercase;
}

.tpl-nav-pills .nav-link.active,
.tpl-nav-pills .show>.nav-link {
    background-color: var(--bs-primary);
    color: #fff;
}

.tpl-nav-pills .nav-link.disabled,
.tpl-nav-pills .nav-link:disabled {
    pointer-events: none;
    opacity: .65;
}

/* HEADING */

.tpl-heading {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: .5rem;
}

/* DROPDOWN */

.tpl-dropdown.no-caret:after {
    content: none;
}

/* TABLES */

.tpl-table {
    margin-bottom: 0;
}

.tpl-table thead {
    position: sticky;
    top: 0;
    background-color: var(--bs-white);
    z-index: 1;
}

.tpl-table thead th {
    border-bottom: 2px solid black;
}

.tpl-table> :not(:first-child) {
    border-top: 0 none;
}

.tpl-table>tbody>* {
    vertical-align: middle;
}

/* MODALS */

.tpl-modal-body {
    display: flex;
    flex-direction: column;
}

.tpl-modal-body>header {
    background-color: transparent;
}

.tpl-modal-body>main {
    overflow: hidden auto;
    flex: 1 1 auto;
}

.tpl-modal-body>footer {
    background-color: transparent;
}

/* TABS */

.tpl-tab-content {
    height: 100%;
}

.tpl-tab-content>.tab-pane {
    height: 100%;
}

.tpl-tab-content>.tab-pane>header {
    background-color: transparent;
}

.tpl-tab-content>.tab-pane>main {
    overflow: auto;
    flex: 1 1 auto;
}

.tpl-tab-content>.tab-pane>footer {
    background-color: transparent;
}

.tpl-tab-content>.active {
    display: flex;
    flex-direction: column;
}

/* CHECKBOX MENU */

.checkbox-menu {
    max-height: 60vh;
    overflow: scroll;
}

/* OVERLAY */

.tpl-overlay {
    position: fixed;
    z-index: 20000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
}

/* Cursors */

.cursor-pointer {
    cursor: pointer;
}

/* ===============================================================================
 * Link
 * =============================================================================*/
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ===============================================================================
 * Shadows
 * =============================================================================*/
a:focus,
button:focus,
input:focus,
textarea:focus,
.form-control:focus,
.custom-control-input:focus,
a:checked,
button:checked,
input:checked,
textarea:checked,
.form-control:checked,
.custom-control-input:checked,
a:after,
button:after,
input:after,
textarea:after,
.form-control:after,
.custom-control-input:after,
a:before,
button:before,
input:before,
textarea:before,
.form-control:before,
.custom-control-input:before,
.custom-control-input:focus~.custom-control-label::before,
.form-select,
.form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ===============================================================================
 * Title
 * =============================================================================*/
.title {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bs-primary);
    display: block;
}

/* ===============================================================================
 * Text Color
 * =============================================================================*/
.text-blue {
    color: #0d6efd !important;
}

/* XS */

@media only screen and (min-width: 0px) {}

/* SM (landscape phones, 576px and up) */

@media (min-width: 576px) {}

/* MD (tablets, 768px and up) */

@media (min-width: 768px) {}

/* LG (desktops, 992px and up) */

@media (min-width: 992px) {}

/* XL (large desktops, 1200px and up) */

@media (min-width: 1200px) {}

/* XXL (large desktops, 1400px and up) */

@media (min-width: 1400px) {}.theme-card {
    background-color: var(--bs-gray-100);
    border: none;
}

.theme-card .card-header {
    background-color: transparent;
    border: none;
    padding: 0.5rem;
}

.theme-card .card-body {
    padding: 0.5rem;
}.form-label {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	color: var(--bs-dark);
}

.form-check-input[type="checkbox"] {
	border-color: var(--bs-primary);
	border-width: 2px;
}

.form-check-input[type="checkbox"]:checked {
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.form-check-input[type="checkbox"]:focus {
	border-color: var(--bs-primary);
}
.checkbox-menu li label {
    display: block;
    padding: 3px 10px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    margin:0;
    transition: background-color .4s ease;
}
.checkbox-menu li input {
    margin: 0px 5px;
    top: 2px;
    position: relative;
}

.checkbox-menu li.active label {
    background-color: #cbcbff;
    font-weight:bold;
}

.checkbox-menu li label:hover,
.checkbox-menu li label:focus {
    background-color: #f5f5f5;
}

.checkbox-menu li.active label:hover,
.checkbox-menu li.active label:focus {
    background-color: #b8b8ff;
}#login {
    background-image: url('/assets/App/Img/splash.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

#login .card {
    border: none;
}

#login .card-header {
    padding: 1.25rem;
}

#login .login-description {
    text-align: center;
    display: block;
    line-height: 20px;
    font-size: 1rem;
    margin-top: 5px;
    padding-bottom: 10px;
}

#login .card-footer-item {
    padding: .75rem 0;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 80%;
}.fc-col-header {
    width: 100% !important;
}

.fc-daygrid-body.fc-daygrid-body-unbalanced {
    width: 100% !important;
    height: 100% !important;
}

.fc-scrollgrid-sync-table {
    width: 100% !important;
    height: 100% !important;
}/* CATALOG LIST ITEM */

.catalog-list-item {
    height: 100%;
    border: 1px solid var(--bs-gray-300);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.catalog-list-item > div {
    display: flex;
    flex-direction: column;    
}

.catalog-list-item > div:first-child {
    text-align: center;
    height: 70%;
    cursor: pointer;
    position: relative;
}

.catalog-list-item > div:first-child > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 90%;
}


.catalog-list-item > div + div {
    height: 30%;
}

.catalog-list-item .tpl-product-name {
    align-self: stretch;
    flex-grow: 1;
    padding-right: .5rem;
}

.catalog-list-item-price {
    display: block;
    font-weight: bolder;
    color: var(--bs-primary);
    line-height: 1;
}

/* CATALOG LIST ITEM: Stock */

.catalog-list-item-stock {
    display: block;
    line-height: 1;
    font-size: 0.9em;
    text-align: right;
}

.catalog-list-item-stock[data-status="in-stock"] {
    background-color: var(--bs-success);
}
.catalog-list-item-stock[data-status="out-of-stock"] {
    background-color: var(--bs-warning);
}
.catalog-list-item-stock[data-status="stock-break"] {
    background-color: var(--bs-danger);
}

.catalog-list-item .catalog-list-item-ecommerce-wrapper {
    background-color: #EFEEF1;
}

.catalog-list-item .catalog-list-item-ecommerce-wrapper .catalog-list-item-quantity-on-cart {
    text-align: center;
}

.catalog-list-item .catalog-list-item-ecommerce-wrapper .form-select {
    background-color: transparent;
    border: none;
    width: auto;
}/* Cart review: Formulary */

#cart>form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Cart review: Header */

#cart>form>header {
    padding: .5rem !important;
    border-bottom: 1px solid var(--bs-primary);
}

/* Cart review: Body */

#cart>form>main .cart-item-stock[data-status="in-stock"] {
    color: var(--bs-success);
}

#cart>form>main .cart-item-stock[data-status="out-of-stock"] {
    color: var(--bs-warning);
}

#cart>form>main .cart-item-stock[data-status="stock-break"] {
    color: var(--bs-danger);
}

/* Cart review: Footer */

#cart>form>footer {
    padding: .5rem !important;
    border-top: 1px solid var(--bs-primary);
}

#orderFooterTab .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#orderFooterTab .nav-link:disabled {
    opacity: 0.25;
}

#orderFooterTabContent textarea.form-control {
    min-height: calc(1.5em * 5 - 2px);
}
#orderFooterTabContent textarea.form-control:required {
    background-color: rgba(var(--bs-danger-rgb),0.25) !important;
    border-color: var(--bs-danger) !important;
}

/* Cart item list */
.cart-detail .cart-item-list .cart-item-image {
    width: 40px;
}

/* Cart totals */

[id^=cart-total] .average-profitability {
    position: absolute;
    right: 0;
    z-index: 1;
    height: 36px;
    width: 36px;
}

/* Cart summary */

[id^=cartSummary] .average-profitability {
    height: 36px;
}

/* Average profitability chart */

.average-profitability .ring {
    stroke: #EBEBEB;
}

.average-profitability .segment {
    transform-origin: center;
    animation: average-profitability 3s;
}

.average-profitability .segment-green {
    stroke: var(--bs-green);
}

.average-profitability .segment-yellow {
    stroke: var(--bs-yellow);
}

.average-profitability .segment-red {
    stroke: var(--bs-red);
}

@keyframes average-profitability {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.average-profitability .text {
    font-family: Arial, Helvetica, sans-serif;
}

.average-profitability .text-green {
    fill: var(--bs-green);
}

.average-profitability .text-yellow {
    fill: var(--bs-yellow);
}

.average-profitability .text-red {
    fill: var(--bs-red);
}

.average-profitability .label {
    font-size: 0.7em;
    font-weight: 700;
    line-height: 1;
    fill: #000;
    transform: translateY(0.25em);
}

.average-profitability .percentage {
    font-size: 0.9rem;
    line-height: 1;
    transform: translateY(0.5em);
    font-weight: bold;
}

.average-profitability .data {
    font-size: 0.5em;
    line-height: 1;
    transform: translateY(0.5em);
    text-align: center;
    text-anchor: middle;
    color: #666;
    fill: #666;
}/* Tab main */

#overview .card .table th {
    border-bottom: 1px solid var(--bs-dark);
}

#overview .card .table td {
    border-bottom: none;
}.donut-ring {
    stroke: #EBEBEB;
}

.donut-segment {
    transform-origin: center;
    animation: donut1 3s;
}

@keyframes donutfadelong {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.donut-text {
    font-family: Arial, Helvetica, sans-serif;
    fill: #FF6200;
}

.donut-label {
    font-size: 0.28em;
    font-weight: 700;
    line-height: 1;
    fill: #000;
    transform: translateY(0.25em);
}

.donut-percent {
    font-size: 0.35rem;
    line-height: 1;
    transform: translateY(0.5em);
    font-weight: bold;
}

.donut-data {
    font-size: 0.12em;
    line-height: 1;
    transform: translateY(0.5em);
    text-align: center;
    text-anchor: middle;
    color: #666;
    fill: #666;
}.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ellipsis */

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #333;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}/* Connection Status */



/* Connection Status: Status */

#connection-status *[data-status="ok"] {
    --bs-bg-opacity: 1;
    color: rgba(var(--bs-white-rgb),var(--bs-text-opacity)) !important;
    --bs-text-opacity: 1;
    background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity)) !important;
}
#connection-status *[data-status="failing"] {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity)) !important;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity)) !important;
}
#connection-status *[data-status="fail"] {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity)) !important;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb),var(--bs-text-opacity)) !important;
}

/* Connection Status: Status Label */

#connection-status *[data-status="ok"] span[data-tpl="ok"],
#connection-status *[data-status="failing"] span[data-tpl="failing"],
#connection-status *[data-status="fail"] span[data-tpl="fail"] {
    display: block;
}

#connection-status *[data-status="ok"] span[data-tpl="failing"],
#connection-status *[data-status="ok"] span[data-tpl="fail"],
#connection-status *[data-status="failing"] span[data-tpl="ok"],
#connection-status *[data-status="failing"] span[data-tpl="fail"],
#connection-status *[data-status="fail"] span[data-tpl="ok"],
#connection-status *[data-status="fail"] span[data-tpl="failing"] {
    display: none;
}

/* Connection Status: Overall feedback */

.bg-dark button[data-tpl="internet-connection-signal"] {
    color: #fff;
}
/* Document Lines */

#document-lines {
    height: calc(100vh - var(--header-height));
    top: var(--header-height);
}

/* Document Lines: Stock status */

#document-lines *[data-status="in-stock"] {
    color: var(--bs-success);
}
#document-lines *[data-status="out-of-stock"] {
    color: var(--bs-warning);
}
#document-lines *[data-status="stock-break"] {
    color: var(--bs-danger);
}/* Document PDF */

#document-pdf {
    height: calc(100vh - var(--header-height));
    top: var(--header-height);
}

#cartex-last-invoice {
    height: calc(100vh - var(--header-height));
    top: var(--header-height);
}/* Cart review: Body */

#product *[data-status="in-stock"] {
    color: var(--bs-success);
}
#product *[data-status="out-of-stock"] {
    color: var(--bs-warning);
}
#product *[data-status="stock-break"] {
    color: var(--bs-danger);
}/* CUSTOMER SELECT */

#customerSelect {
    position: fixed;
    top: var(--header-height);
    z-index: var(--mb-over-backdrop-zindex);
    right: 0;
    bottom: 0;
    left: auto;
    border-radius: 0;
    width: 360px;
    border: 0 none;
    padding: 0;
    margin: 0;
}

/* CUSTOMER SELECT: Search box */

#customer-select-search {
    padding: 12px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

/* CUSTOMER SELECT: Results list */

#customer-select-list,
#customer-select-list-empty {
    height: calc(100% - calc(var(--button-height) + 24px) * 2);
    overflow-x: scroll;
}

#customer-select-list-empty {
    display: none;
    justify-content: center;
    align-items: center;
}

/* CUSTOMER SELECT: Footer */

#customer-select-footer {
    display: flex;
    height: calc(var(--button-height) + 24px);
}

#customer-select-footer>button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
    padding: 12px;
    margin: 0;
    border: 0;
    border-radius: 0%;
    background-color: var(--bs-gray-400);
}

/* CUSTOMER SELECT: List of items */

#customerSelect .dropdown-item {
    height: 40px;
}

#customerSelect .dropdown-item.active,
#customerSelect .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--bs-primary);
}

/* CUSTOMER SELECT: Select customer */

#customerSelect div[data-cmd="select-customer"] {
    display: flex;
    width: calc(100% - 40px);
    height: 100%;
    cursor: pointer;
}

#customer-select-list .customer-name {
    width: calc(100% - 60px);
    display: flex;
    align-self: center;
    align-items: start;
    flex-direction: column;
    line-height: 1;
}
#customer-select-list .customer-name > div {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}

#customer-select-list .customer-name > div:last-child {
    color: var(--bs-gray);
    font-size: 0.9rem;
}

#customer-select-list .customer-id {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 10px;
    overflow: hidden;
}

/* CUSTOMER SELECT: Open customer */

#customerSelect div[data-cmd="screen-customer"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--bs-gray-300);
    width: 40px;
    height: 100%;
    padding-left: 1rem;
    cursor: pointer;
}
.dropdownSearch {
    position: relative;
    z-index: 10;
}

.dropdownSearchSelected {
    cursor: pointer;
}

.dropdownSearchPanel {
    width: 100%;
    position: absolute;
    background: white;
}

.dropdownSearchFilter {
    padding: 12px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    position: relative;
    z-index: 1;
}

.dropdownSearchList {
    height: 300px;
    overflow: scroll;
}/* SIDENAV: Hidden status */

#sideNav {
    width: 120px;
    transform: translate(120px, 0);
    background-color: var(--aside-background-color);
}

/* SIDENAV: Active status */

body.sideNav-active .tpl-header,
body.sideNav-active .tpl-section,
body.sideNav-active .tpl-modal {
    transform: translate(-120px, 0);
}

body.sideNav-active #sideNav {
    transform: translate(0, 0);
}

/* SIDENAV: Fixed status */

body.sideNav-fixed .tpl-header,
body.sideNav-fixed .tpl-section,
body.sideNav-fixed .tpl-modal {
    width: calc(100% - 120px);
}

body.sideNav-fixed #sideNav {
    transform: translate(0, 0);
}

body.sideNav-fixed .modal-fullscreen {
    width: 100%;
}

body.sideNav-fixed #customerSelect {
    right: 120px;
}

/* SIDENAV: Menu items */

#sideNav .sideNav-item {
    color: #82849f;
    text-align: center;
    display: block;
    width: 100%;
    border-radius: 0;
    font-size: 0.8rem;
    padding: 1rem 0;
}

#sideNav .sideNav-item > i {
    margin-bottom: .5rem;
}

#sideNav .sideNav-item .label {
    text-transform: uppercase;
    display: block;
}

/* SIDENAV: Menu item active/hover */

#sideNav .sideNav-item.active,
#sideNav .sideNav-item:hover {
    background-color: var(--bs-primary); /*#3b3d48*/
    color: #fff;
}
