* { margin: 0; padding: 0; box-sizing: border-box; }



body {
    font-family: Nunito,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    /* color: #47404f; */
    background: var(--bg-primary);
    color: var(--text-secondary);
    /*max-height: 100vh;
    overflow: hidden;*/
}
textarea {
    resize: auto;
}
.dashboard p {
    font-size: 0.9em;
    color: var(--text-primary);                     
}
a {
    text-decoration: none;
}
table th {
    background: var(--bg-tertiary) !important;
    /* color: hsla(var(--hue), var(--lit), 50%) !important; */
    color: var(--clr-primary) !important;
    /* border-bottom: 2px solid var(--clr-secondary) !important; */
    border-bottom: 2px solid hsl(0deg 0% 50.2%) !important;
    font-size: 0.9em;
}
table i {
    cursor: pointer;
    vertical-align: middle;
    font-weight: bold;
}
.btn-list {
    display: flex;
    gap: 1em;
    justify-content: flex-end;
}
.dashboard .dropdown a {
    font-size: 0.8em;
    color: var(--text-primary);
    white-space: nowrap;
}
.dropdown-link {
    font-size: 0.95em;
    font-weight: bold;
    color: var(--text-primary);
    display: block;
    cursor: pointer;
}
.dropdown-link i {
    font-size: 1.2em;
    vertical-align: middle;
}
/* ----------------------------Header starts----------------------------------------------- */
header {
    font-size: 1rem;
    box-shadow: var(--bx-shadow-1);
    padding: 0 2vw;
    z-index: 111;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid #00000047;
}
header nav {
    padding: 0.5em 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.2em;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
#menu-toggler {
    line-height: 0;
    cursor: pointer;
}
#menu-toggler i {
    font-size: 2em !important;
}
.header-search {
    overflow: hidden;
    border: var(--border-1);
    border-radius: 50rem;
}
.header-search input {
    font-size: 0.8em;
    line-height: 0;
    background: var(--bg-secondary);
}
.header-search button {
    background: hsla(var(--hue), var(--sat), 65%);
}
.header-search button i {
    color: var(--bg-primary);
}
.header-search button:hover {
    background: var(--clr-primary);
    /* opacity: 0.5; */
}

.user-dropdown img {
    max-width: 3em;
    border-radius: 50%;
}
.h-pill {
    padding: 0.4em;
    background: var(--bg-tertiary);
    border-radius: 6px;
}
.header-nav i {
    font-size: 1.25em;
    vertical-align: text-top;
    color: hsla(var(--hue), var(--sat), 65%);
}
.brand-logo {
    height: 2.8em;
    padding: 0 1em;
}

/* ----------------------------Header ends----------------------------------------------- */

/* ----------------------------Sidebar starts----------------------------------------------- */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.15);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear;
    cursor: ew-resize;
}
.overlay.active {
    z-index: 6;
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    overflow: visible;
    overflow-y: clip;
    padding-top: var(--menu-top-offset);
    height: 100vh;
    display: flex;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 10;
}
.sidebar > ul {
    box-shadow: var(--bx-shadow-2);
}
.sidebar ul {
    list-style: none;
    padding-left: 0;
    overflow: auto;
    max-height: 100%;
    margin-bottom: 0;
    /* background: var(--bg-primary); */
    background: var(--bg-secondary);
    z-index: 2;
    transition: 0.3s;
    pointer-events: none;
}
.side-menu {
    transform: translateX(-105%);
}
.side-menu.active {
    transform: none;
    pointer-events: all;
}
.sidebar ul li {
    cursor: pointer;
    position: relative;
}
.side-menu li {
    padding: 1em 1.1em 0.8em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
    border-bottom: var(--border-1);
    color: var(--text-secondary);
}
.side-menu li:hover,
.nested-side-menu ul li:hover a {
    color: hsla(var(--hue), var(--sat), 60%);
}
.side-menu > li.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2em;
    width: 2em;
    background: hsla(var(--hue), var(--sat), 60%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.side-menu li i {
    font-size: 2em;
}
.side-menu > li > span {
    font-size: 0.9em;
    font-weight: 700;
    max-width: 5rem;
    text-align: center;
}
.nested-side-menu {
    padding: 0.6em 0;
    z-index: 1 !important;
    transform: translate(-180%);
    font-size: 1.3em;
}
.nested-side-menu.active {
    transform: none;
    pointer-events: all;
}
.nested-side-menu ul .menu-wrapper {
    overflow: hidden;
    max-height: 0;
    padding: 0;
    margin: 0;
    transition: all 0.6s ease-in-out;
    will-change: transform;
}
.nested-side-menu ul .menu-wrapper ul {
    padding: 0.2em 0.3em 0.2em 0.4em;
    background: hsla(var(--hue), var(--lit), 96%) !important;
}
.nested-side-menu ul .menu-wrapper .menu-wrapper ul {
    padding-right: 0 !important;
    background: hsla(var(--hue), var(--lit), 90%) !important;
}
.nested-side-menu ul .menu-wrapper .menu-wrapper li {
    background-color: #fff1f1 !important;
}
.nested-side-menu ul > li {
    padding: 1em 4em 1em 1.7em;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 0.4em;
    border-bottom: var(--border-1);
    color: var(--text-primary);
    pointer-events: all;
    background: var(--bg-primary);
}
.nested-side-menu ul li a {
    color: var(--text-primary);
}
.nested-side-menu ul li i {
    margin-right: 0.5em;
}
.nested-side-menu ul > li i {
    font-size: 1.2em;
}
.menu-toggler {
    position: absolute;
    right: 10%;
    margin-right: 0 !important;
}
.sidebar > ul::-webkit-scrollbar {
    width: 0;
}

/* -----------------------------------sidebar ends---------------------------- */
::-webkit-scrollbar {
width: 5px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}

#main-content-wrapper {
    padding-top: var(--menu-top-offset);
    padding-left: var(--menu-left-offset);
    transition: 0.3s;
}
section {
    padding: 1vw;
}
/* ------------------------------------home section starts-------------------------------- */
.home {
    font-size: 1rem;
    overflow: hidden;
}
.home .heading {
    border-bottom: var(--border-2);
    padding-bottom: 0.75em;
}
.home .heading h5 {
    display: inline;
}
.home .heading span {
    font-size: 0.75em;
    padding: 0 1em;
}
.heading span:last-child {
    border-left: var(--border-2);
}
.home .card {
    box-shadow: var(--bx-shadow-2);    
    border: none;
    background: var(--bg-secondary);
}
.summary .card p {
    color: var(--clr-primary);
}
.summary .card-body i {
    font-size: 3.4em;
    color: hsla(var(--hue), var(--sat), 80%)
}
.summary .card .content p:first-child {
    font-size: 0.8em;
    color: var(--text-primary);
}
.summary .card .content p:last-child {
    font-size: 1.3em;
}

.chart-row-1 .card {
    text-align: center;             /* temporaty use for centering the images */
}
.chart-row-1 .card-body > p {
    font-size: 0.9em;
    margin-bottom: 0;
    text-align: left;
    color: var(--text-primary);
}
.chart-row-1 svg {
    height: 260px;
    max-width: 100%;
}

/* ------------------------------------home section starts-------------------------------- */
.eChart {
    color: var(--clr-primary);
}
.eChart p:first-child {
    font-size: 0.72em;
    color: var(--text-primary);
}
.eChart p:last-child {
    font-size: 1.3em;
}
.chart-row-2 .eChart svg {
    width: 100%;
}

.products-chart ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    white-space: nowrap;
    padding: 0.4em 0;
}
.products-chart ul li:not(:last-child) {
    border-bottom: var(--border-1);
}
.controlled-btn {
    border: 2px solid hsla(var(--hue), var(--sat), 50%);
    background: hsla(var(--hue), var(--sat), 50%);
    outline: none;
    padding: 0.5em 1em !important;
    border-radius: 3px;
    font-size: 0.75em;
    color: var(--bg-primary);
    font-weight: 600;
}
.controlled-btn i {
    color: var(--bg-primary);
}
.controlled-btn:hover i {
    color: var(--clr-primary);
}
.controlled-btn:hover {
    background: var(--bg-primary);
    color: var(--clr-primary);
}
.controlled-outlined-btn,
.nav-tabs .controlled-btn.active {
    background: var(--bg-primary);
    border: 2px solid hsla(var(--hue), var(--sat), 50%);
    outline: none;
    padding: 0.5em 1em !important;
    border-radius: 3px;
    font-size: 0.75em;
    color: var(--clr-primary);
    font-weight: 700;
}
.controlled-outlined-btn:hover {
    color: var(--bg-primary);
    background: var(--clr-primary);
}
.products-chart ul li > div {
    display: flex;
    gap: 1em;
}
.products-chart li img {
    width: 4em;
    height: 4em;
}
.products-chart li h5 {
    font-size: 0.85em;
    color: var(--clr-primary);
    margin-bottom: 0.5em;
    margin-top: 0.2em;
}
.products-chart li h6 {
    font-size: 0.65em;
    color: var(--text-secondary);
    margin-bottom: 0.3em;
}
.products-chart li p {
    font-size: 0.6em;
    color: var(--clr-tertiary);
    margin-bottom: 0;
    font-weight: 600;
}
.products-chart li p span {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* .chart-row-3----------------------------------------------- */

.user_table td,
.user_table th,
.input_table td,
.input_table th {
    vertical-align: middle;
    border-bottom: var(--border-1);
    border-right: var(--border-1);
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    color: var(--text-primary);
    white-space: nowrap;
    background: var(--bg-primary);
    /* padding: 0.75em 0.95em 0.6em; */
    padding: 2px;
}
.input_table tr td:first-child,
.input_table tr th:first-child {
    /* border-left: var(--border-1); */
    border-left: none;
}
.user_table {
    font-size: 0.75em;
    text-align: center;
}
.chart-row-3 .card-header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: var(--border-1); 
    display: flex;
    justify-content: space-between;
}
.user_table img {
    font-size: 0.75em;
    max-height: 2.5rem;
}
.user-table-card i {
    font-size: 1.3em;
}

/* --------------User form starts-------------------------------------- */
.user-form {
    font-size: 1rem;
}
.card {
    box-shadow: var(--bx-shadow-2);    
    border: none;
    background: var(--bg-secondary);
}
.card-title {
    font-size: 1em;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}
.card-header {
    padding: 0.4em 1em 0.2em;
    margin-bottom: 0;
    background-color: var(--bg-tertiary) !important;
    border-bottom: 1px solid #2196F3;
}
.card-body {
    padding: 0em 1em;
}
.clsNewMode {
    color: #c19000;
    border-bottom: 3px solid #c19000;
}
.clsEditMode {
    color: #c19000;
    border-bottom: 3px solid #c19000;
}
/* .user-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
} */
.user-form .form-group {
    position: relative;
    margin-bottom: 0.2em;
    height: fit-content;
}
.user-form .form-group label {
    font-size: 0.75em;
    /* color: #70657b; */
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.user-form label.ul-form__label {
    font-size: 0.8em;
    font-weight: 700;
}
.user-form .focusable label.ul-form__label {
    position: absolute;
    top: 51%;
    left: 1.7em;
    transition: 0.15s ease-in-out;
    transform: translateY(-50%);
    z-index: 3;
    white-space: nowrap;
}
.focusable.focused label.ul-form__label {
    top: 0;
    background: white;
    padding: 0 0.5em;
}
.user-form .form-control {
    outline: initial !important;
    background: #f8f9fa;
    background: var(--bg-secondary);
    border: var(--border-2);
    color: var(--text-secondary);
    font-size: 0.8em;
    padding: 0.45em 0.3em 0.2em 0.7em;
    border-radius: 0.3em;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
select.form-control {
    cursor: pointer;
}
.form-control::placeholder {
    color: var(--text-secondary);
}
.user-form small.ul-form__text {
    /* margin-top: 10px; */
    color: var(--clr-primary);
    font-weight: 400;
    font-size: 0.75em;
}
.user-form .form-text {
    display: block;
    margin-top: .25em;
}
.custom-separator {
    border-bottom: 1px dashed var(--clr-primary);
    margin: 0.5em 0 0.3em;
    opacity: 1;
}
.input-group-append, .input-group-prepend {
    display: flex;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-prepend > div {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-right-icon {
    position: relative;
}
span.span-right-input-icon {
    position: absolute;
    transform: translateY(-50%);
    top: 58%;
    right: 10px;
}
.user-form .form-group i {
    color: var(--text-primary);
    font-size: 1em;
    font-weight: 600;
}
.ul-form__radio-inline {
    display: flex;
    padding: 0.5em 0em 0.32em;
    gap: 1em;
}
.form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: .75em;
}
.checkbox, .radio {
    display: block;
    position: relative;
    padding-left: 2.1em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox input, .radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
span.ul-form__radio-font {
    font-size: 1em;
    font-weight: 500;
}
.checkbox .checkmark, .radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5em;
    width: 1.5em;
    border-radius: 4px;
    background-color: #dee2e6;
}
.radio .checkmark {
    border-radius: 50%;
}
.checkbox input:checked~.checkmark:after, .radio input:checked~.checkmark:after {
    display: block;
}
.checkbox .checkmark:after, .radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    right: 0;
    width: 4px;
    bottom: 0;
    margin: auto;
    height: 0.5em;
    width: 0.5em;
    background: white;
    border-radius: 3px;
    border: solid #fff;
    /*border-width: 0 2px 2px 0;*/
    border-width: 0 0.2em 0.3em 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkbox .checkmark:after {
    top: -1px;
    height: 0.8em;
    width: 0.4em;
}
.checkbox input:checked~.checkmark, .radio input:checked~.checkmark {
    background-color: var(--clr-primary);
}
.card-footer {
    border-top: var(--border-1);
    /*padding: 0.7em 1.25em 0.7em;*/
    background-color: rgba(0,0,0,.03);
}
.card-footer button {
    font-size: 0.85em !important;
}
.input_table {
    font-size: 0.85em;
    vertical-align: middle;
    min-width: 50rem;
}
.checkbox-outline-primary input:checked~.checkmark {
    background-color: #fff!important;
}
.checkbox-outline-primary .checkmark {
    background: #fff;
    border: 1px solid #639;
}
.checkbox-outline-primary .checkmark:after {
    border-color: var(--clr-primary);
}
.input_table .checkbox {
    font-size: 0.85em;
}
.input_table button {
    font-size: 0.85em;
    background-color: var(--clr-primary);
}
.user-form .nav-link {
    border: none !important;
    border-radius: 7px !important;
    border: var(--border-2) !important;
    color: var(--bg-primary);
}
/* --------------User form ends-------------------------------------- */

/* --------------Color modal starts-------------------------------------- */
.color-modal,
.filter-modal {
    position: fixed;
    top: 13vh;
    right: 2vh;
    background: var(--bg-primary);
    z-index: 10000;
    padding: 0.8rem 1.1rem;
    max-width: 83vw;
    width: 20rem;
    border: var(--border-1);
    box-shadow: var(--bx-shadow-2);
    transform: translateX(105%);
    transition: transform 0.5s ease-in-out;
}
.color-modal > div {
    background: var(--bg-secondary);
    font-size: 0.85em;
    padding: 1em;
    box-shadow: var(--bx-shadow-2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.presets {
    margin-bottom: 0.8em;
    width: 100%;
}
.preset-colors {
    display: flex;
    gap: 0.8em;
    flex-wrap: wrap;
}
.presets span {
    height: 1.5em;
    width: 1.5em;
    display: block;
    border-radius: 50%;
}
.panel-toggler {
    position: absolute;
    top: 2rem;
    left: 0;
    transform: translateX(-104%);
    background: var(--clr-primary);
    padding: 0.5em 0.6em;
    color: white;
    cursor: pointer;
    border-radius: 1em 0px 0px 1em;
}
.panel-toggler i {
    font-size: 1.3em;
    vertical-align: middle;
}
.color-modal.active,
.filter-modal.active {
    transform: none;
}
/* --------------Color modal ends-------------------------------------- */

/* --------------Filter section starts-------------------------------------- */
/* .filter-list  {
    margin-top: 2em;
} */
/* .filter-list table {
    border: var(--border-1);
} */
.filter-list table td,
.filter-list table th {
    text-align: left;
    padding-left: 1.5em;
}
.filter-list table i {
    font-size: 1.5em;
}

.small-card-footer {
    font-size: 0.82em;
    padding-top: 1em;
    padding-left: 1em;
}
.filter-section .card-title i {
    color: var(--clr-primary);
    font-size: 1.2em;
    margin-left: 0.3em;
    cursor: pointer;
}
.pagination-row span,
.pagination-row a {
    font-size: 0.75em;
    color: var(--text-primary) !important;
    background: var(--bg-primary);
}
.page-item.active a {
    background: var(--clr-primary);
    color: var(--bg-primary) !important;
    border-color: var(--clr-primary) !important;
}
.disabled>.page-link, .page-link.disabled {
    background: var(--bg-secondary);
    opacity: 0.3;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: .375em .75em;
    margin-bottom: 0;
    font-size: .813em;
    font-weight: 400;
    line-height: 1.5;
    color: #665c70;
    text-align: center;
    white-space: nowrap;
    background-color: #eee;
    border: 1px solid #ced4da;
    border-radius: .25em;
}
/* --------------Filter section ends-------------------------------------- */


/* -------------- Styles to merge with EreckonErp -------------------------------------- */

.hidden-input {
    border: none !important;
    box-shadow: none !important;
}
.AutocomTabcss {
    border: none;
    border-collapse: collapse;
    width: 100%;
}
.ui-menu {
    font-size: 0.85rem !important;
    font-family: "Nunito" !important;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.ui-widget-header {
    background: #8040bf;
    color: #ffffff;
    font-weight: bold;
    z-index: 1000;
    min-width: 200px;
}
.ui-widget-content {
    border: none !important;
    background: var(--bg-tertiary);
    z-index: 1000001 !important;
}
.ui-autocomplete {
    border: none !important;
    background: var(--bg-tertiary);
    padding: 2.1em 0 0 0 !important;
    z-index: 4 !important;
    max-height: 16rem;
    min-width: 30rem;
    overflow: auto;
    white-space:nowrap;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: var(--border-2);
    background: #f4e9ff;
}
.ui-menu .ui-menu-item a {
    padding: 0.25em .4em;
}
.brand-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 1.3em;
}
.form-control:focus {
    box-shadow: 0px 0px 0px 2px rgb(163 255 218) !important;
}

.inline-form-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
}
.custom-card {
    border: 1px solid #808080d4;
    padding: 0.4em 0em 0.4em;
    border-radius: 7px;
}
.gx-4-5 {
    --bs-gutter-x: 1rem;
}
.display-none {
    display: none;
}
.label-list span {
    font-size: 0.85em;
    font-weight: 700;
}
.tab-wrapper {
    display: flex;
    justify-content: space-between;
}
.tab-container {
    width: 61%;
}
.tab-fixed {
    width: 37%;
    border-left: var(--border-1);
}
.tox.tox-tinymce {
    max-width: 300px !important;
    width: 100% !important;
}
.modal-content {
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.modal {
    background-color: #6b6565a1;
}
.custom-tab.nav-tabs .controlled-btn {
    background: #f5ebff;
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    color: black;
    padding: 0.5em 1.5em 0.4em !important;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    margin-right: -18px;
    border: none;
    width: 8.7rem;
    box-shadow: inset 5px 3px 20px 0px #d7afff;
}
.custom-tab.nav-tabs .controlled-btn.active {
    background: var(--clr-primary) !important;
    box-shadow: none;
    color: white;
    z-index: 4;
    position: relative;
}
table.input_table {
/*    border: 2px solid gray;
    margin-left: 4px;*/
    border-radius: 7px;
    margin-bottom: 0.5em;
}
#ContentPlaceHolder1_pnlPurchase .input_table tr td:nth-child(2), 
#ContentPlaceHolder1_pnlPurchase .input_table tr th:nth-child(2) {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: antiquewhite;
}
.custom-tab {
    border-bottom: 2px solid var(--clr-primary);
}
.custom-btn {
    font-size: 1em;
    border: 0;
    outline: none;
    padding-left: 0.9em;
    border-radius: 3px;
    display: flex;
    align-items: center;
    background: var(--clr-primary);
    color: white;
    gap: 0.75em;
    line-height: 2.2em;
    transition: 0.2s;
}
.custom-btn i {
    font-size: 1.5em;
    padding: 0.3em 0.39em;
    border-left: 1px solid #ffffff5e;
}
.custom-btn:hover {
    background: var(--bg-tertiary);
    color: var(
    --clr-primary);
    outline: 1px solid var(--clr-primary);
}
.custom-btn:hover i {
    border-left: 1px solid var(--clr-primary);
}
.addGridHeadLeft3 + .card-body {
    overflow: auto;
   height: 73vh;
}
.header-tool-box {
    display: flex;
    align-items: center;
}
.header-tool-box button,
.header-tool-box a {
    outline: none;
    border: none;
    font-size: 0.7em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
    background: transparent;
    padding: 0 0.9em;
}
.header-tool-box > *:not(:last-child) {
    border-right: 1px solid #808080cf;
}
.header-tool-box i {
    font-size: 1.6em;
    color: hsla(var(--hue), var(--sat), 58%);
}
.accordion .accordion-header button {
    padding: 0.6em 1em;
    font-size: 0.445em;
}
.accordion-item {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px, rgba(0, 0, 0, 0.06) 0px 1px 0px 0px
}
.accordion-collapse {
    font-size: 0.84em;
}
div[class$='-modal'].active .bg-overlay,
div[class*='-modal '].active .bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
}
.tableStyles {
    border-radius: 7px;
    border: 2px solid gray;
    border-top: 2px solid red;
    overflow: auto;
}
/*------------ Toolbar -------------------------------------------------------------------------------------------------------------------*/
.btn-list.list-inline {
  gap: 0;
}
.btn-list.list-inline a {
    padding: 0 18px;
    background: #d3d3d330;
    border-left: 1px solid #80808061;
}
.btn-list.list-inline li:last-child a {
    border-right: 1px solid #80808061;
}
table th, table td {
    padding: 0 4px !important;
    /*font-weight: 500;*/
    border: 1px solid #0000006e;
    /*font-family: 'Roboto',sans-serif;*/
}
.freeze-top, .freeze-top {
    position: sticky;
    top: 0px;
    background: white;
}
.freeze-bottom {
    position: sticky;
    bottom: 0px;
    background: white;
}