*::-webkit-scrollbar-thumb {
    background-color: var(--theme-color5);
}

.main-header{
    /*height: 100px;*/
    /*padding: 5px;*/
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--theme-color2);
    border-radius: 10px;
    /*box-shadow: 0px 0px 5px 2px #72727226;*/
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    height: 150px;
    padding: 0px;
}

.embeded .main-header{
    position: unset !important;
    height: unset !important;
}

.main-header img{
    height: 80px;
    margin: 15px 15px 5px 15px;
}

.dataList .table-wrapper{
    overflow: auto;
    min-height: unset;
    height: auto;
    padding-bottom: 25px;
}

.cards.row{
    margin: 0px;
}

.dataList#dataList_applist .appIcon {
    background-color: var(--theme-color2) !important;
}

div.table-mari{
    overflow: auto;
    border-bottom: 2px solid var(--theme-color5);
}

div.table-mari table thead{
    position: sticky;
    top: 0px;
    z-index: 10;
}


header.navbar{
    width: calc(100% - 320px);
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    position: fixed !important;
    top: 110px !important;
}

@media (min-width: 1280px){
    body.sidebar-minimized header.navbar {
        width: calc(100% - 100px);
    }
}

@media (max-width: 1279px){
    body header.navbar {
        width: calc(100% - 20px);
    }
    body #sidebar {
        z-index: 201;
        top: 165px;
    }
}

#sidebar{
    border-radius: 10px;
    margin: 10px;
    box-shadow: none;
    /*box-shadow: 0px 0px 5px 5px #eeeeeed9;*/
    /*height: calc(100vh - 130px);*/
    height: calc(100vh - 115px);
    top: unset;
}

.mCustomScrollBox {
    height: calc(100% - 50px);
    padding-right: 5px;
}

body.sidebar-minimized #sidebar {
    width: 65px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background: var(--theme-color2);
}

body.sidebar-minimized #sidebar .nav {
    background: var(--theme-color2);
}

#sidebar .nav {
    list-style-type: none;
}

#content.page_content {
    background: var(--theme-color2);
    /*padding: 85px 15px 20px 20px;*/
    padding: 175px 15px 20px 20px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    min-height: unset;
    border-radius: 10px;
    overflow: auto;
    /*height: calc(100vh - 130px);*/
    height: calc(100vh - 20px);
}

body#login #content.page_content {
    background: #ececec;
}

body#login #page #content.page_content {
    height: 100vh;
    padding: 0;
}

body#login main {
    height: auto;
}


#page{
    border-radius: 10px;
    background-color: var(--theme-background);
    min-height: unset;
    padding-left: 300px;
}

@media (min-width: 1280px){
    body.sidebar-minimized #page {
        padding-left: 80px;
    }
}

body{
    margin: 10px !important;
    height: calc(100vh - 20px);
    background: var(--theme-background);
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
}

.dataList .rowaction_body a:not(.stretched-link), .dataList a.rowaction_body:not(.stretched-link) {
    z-index: 2;
    position: relative;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.dataList .column_body a {
    z-index: 2;
    position: relative;
    color: #fff;
    padding: 7px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.dataList .column_body a:hover {
    z-index: 2;
    position: relative;
    color: #fff;
    padding: 7px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.dataList .rowaction_body a:not(.btn-primary):not(.stretched-link)::before, .dataList a.rowaction_body:not(.btn-primary):not(.stretched-link)::before, .dataList .column_body a::before {
    content: "";
    border-radius: 5px;
    padding: 5px;
    background-color: var(--theme-button-bg, #0d6efd);
    position: absolute;
    z-index: -1;
    top: 0px;
    left: -1px;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --ripple-color: rgba(0, 0, 0, 0.1);
    --ripple-duration: 1s;
    --ripple-fuzz: 5px;
}

.dataList .rowaction_body a:not(.stretched-link):hover::before, .dataList a.rowaction_body:not(.stretched-link):hover::before, .dataList .column_body a:hover::before {
    background-image: radial-gradient(circle closest-side at center, var(--ripple-color) 0%, var(--ripple-color) calc(100% - var(--ripple-fuzz, 0px)), transparent 100%), -webkit-gradient(linear, left top, left bottom, color-stop(10%, var(--ripple-color)), color-stop(90%, transparent));
    background-image: radial-gradient(circle closest-side at center, var(--ripple-color) 0%, var(--ripple-color) calc(100% - var(--ripple-fuzz, 0px)), transparent 100%), linear-gradient(180deg, var(--ripple-color) 10%, transparent 90%);
    background-size: 0% 0%, 0% 0%;
    background-repeat: no-repeat;
    background-origin: border-box;
    -webkit-animation: button-ripple var(--ripple-duration) ease-in;
    animation: button-ripple var(--ripple-duration) ease-in;
}

#sidebar .nav > li > a {
    border-radius: 10px;
    margin: 5px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    font-weight: 550;
    background-color: var(--theme-color3);
}

#sidebar .nav > li > ul{
    background: transparent;
}

.sidebar_brand #header-link > span {
    color: var(--theme-sidebar-link, var(--theme-color2, #72777a));
}

.sidebar_brand {
    display: none;
}

#sidebar .nav > li.active > ul > li.active > a {
    background: rgba(0,0,0,.04)!important;
}

#sidebar .nav > li > ul > li > a {
    border-radius: 10px;
    margin: 5px;
}

#sidebar .active > a, #sidebar .nav > li > ul > li > a:hover {
    box-shadow: unset!important;
}

#sidebar .nav > li > a > span:not(.badge) {
    padding: 6px 5px 6px 50px;
}

#sidebar .nav > li > a > span > i:first-child {
    left: -4px;
    top: calc(50% - 17.5px);
    top: -webkit-calc(50% - 17.5px);
    top: -moz-calc(50% - 17.5px);
    top: -o-calc(50% - 17.5px);
}

#sidebar .nav > li > a.menu-link > span:not(.badge) {
    max-width: 200px !important;
    padding-right: 10px !important;
}

#sidebar .nav > li > ul > li > a > span:first-child {
    max-width: 150px !important;
    padding-right: 10px !important;
}

#sidebar .nav > li > a.menu-link > span.badge {
    margin-top: 0px !important;
}

#sidebar .badge {
    height: 15.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 7.5px);
    top: -webkit-calc(50% - 7.5px);
    top: -moz-calc(50% - 7.5px);
    top: -o-calc(50% - 7.5px);
    right: 10px;
    margin-top: 0px !important;
}

#navigation {
    border-top: none;
}

@media (max-width: 1279px){
    #navigation {
        padding-bottom: 200px;
        height: calc(100vh + 100px);
    }
}

body.sidebar-minimized #sidebar:hover .nav > li > a{
    background: var(--theme-color3);
    width: unset;
}

body.sidebar-minimized #sidebar .nav > li.active > ul > li > a {
    /*background: transparent!important;*/
}

body.sidebar-minimized #sidebar .nav > li > a{
    background: var(--theme-color3);
    box-shadow: none;
    width: 56px;
}

.dataList thead th {
    border-top: none;
}

.dataList thead th:first-child{
    border-top-left-radius: 10px;
}

.dataList thead th:last-child {
    border-top-right-radius: 10px;
}

.dataList tr.even {
     background-color: unset;
}

.dataList tr:hover {
    background-color: var(--theme-color3);
}

#content main {
    position: relative;
    height: 100%;
    /* overflow: auto  */;
}

.main_page {
    padding: 1vh 1vw 1vh 8vw;
}

#content .main-body-content {
    height: calc(100% - 30px);
    overflow: auto;
    border-radius: 7px;
}

#content .main-body-content.Form_Menu, #content .main-body-content.Run_Process_Menu, #content .main-body-content:has(.viewForm-body-content) {
    border: 1px solid rgba(0,0,0,.0625);
    padding: 20px;
}

/*#content .main-body-content div[class$="body-content"] {
    height: 100%;
    overflow: auto;
}*/

.boxy-wrapper {
    border-radius: 10px;
}

.boxy-modal-blackout{
    opacity: 1 !important;
    backdrop-filter: blur(5px);
    background: #e5e5e573;
}

.boxy-wrapper .title-bar {
    background-color: var(--theme-heading-bg, var(--theme-color5, #90a6b9)) !important;
}

.boxy-wrapper .title-bar .close {
    color: white;
}

iframe.boxy-content{
    height: 80vh !important;
    width: 80vw !important;
    position: unset!important;
}

.form-section-title, .subform-section-title{
    border-radius: 10px 10px 0 0;
}

.form-section, .subform-section, .mpf-container .subform-section {
    border-radius: 10px;
    /* border: 1px solid #05050526; */
}

.subform-section.analyzer-disabled{
    border: none;
}

.form-section.no_label, .subform-section.no_label {
    /*padding-top: unset;*/
}

.form-section + .form-section.no_label:not(#section-actions), .subform-section + .subform-section.no_label:not(#section-actions) {
    padding-top: 20px;
}

.dataList span.pagelinks strong {
    background-color: var(--theme-button-bg, #0d6efd);
    color: #fff;
}

ul.breadcrumb li{
    font-weight: bold;
}

ul.breadcrumb li a{
    color: var(--theme-link, var(--theme-color6, #007bff));
}

ul.breadcrumb li a:not([href]):not([class]){
    color: var(--theme-link, var(--theme-color4, #007bff));
}

ul.breadcrumb i.fa-angle-right {
    font-weight: bolder;
}


.systemAlert {
    background-image: linear-gradient(312deg, var(--theme-color5) 35%, var(--theme-color4) );
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    position: absolute;
    bottom: 20px;
    right: 15px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transition: all .2s ease;
}


.form-container {
    font-size: .75rem;
}

.form-cell, .subform-cell{
    color: #141414;
    font-size: 13px;
}

.customHtml.headings > .subform-cell-value > subform-section-title{
    border-radius: 10px
}

.customHtml.headings > .subform-cell-value > subform-section-title > h5{
    margin: .1rem;
}

.form-cell .richtexteditor{
    margin-left: 30%;
    top: -15px;
    position: relative;
}

.subform-section-title {
    background-color: #e6e7e8;
    color: var(--theme-color6);
}

.form-section.no_label > .form-column > .subform-cell > .subform-container.no-frame > .subform-section > .subform-section-title{
    background-color: var(--theme-color6);
    color: var(--theme-color2);
}

#section-actions {
    padding-top: 20px;
}

.dataList span.pagelinks a, .dataList span.pagelinks strong, .dataList span.pagelinks > span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    margin: 0 5px;
    border: 1px solid #dbdad;
}

.dataList .pagelinks > *:last-child, .dataList .pagelinks > *:nth-child(1) {
    border-radius: 50%;
}

.dataList .pagelinks .pc.first-disabled, .dataList .pagelinks .pc.prev-disabled, .dataList .pagelinks .pc.next-disabled, .dataList .pagelinks .pc.last-disabled {
    line-height: 30px;
}


input, select, textarea {
    outline-color: var(--theme-color4);
}

footer {
    display: none !important;
}

.grid .grid-action-add, .grid table tr:hover td.grid-action-cell a {
    color: var(--theme-color4) !important;
}

.multiPagedForm.wizard .page-nav-panel .nav_item.current::before {
    background: var(--theme-color4);
}

.multiPagedForm.wizard .page-nav-panel .nav_item.before::before {
    color: #dadada;
    background: #b0b0b0;
}


td.column_body p:contains("Closed"){
    color: red;
    background:#ffc3c3;
}

body.popupBody .form-section:first-of-type {
    /*padding-top: 20px;*/
}

.popupBody fieldset form .form-section .form-column{
    padding-top: 20px;
}

.btn-primary {
    color: #fff;
    background-color: var(--theme-color4);
    border-color: var(--theme-color4);
}

.btn-secondary {
    color: #fff;
    background-color: rgb(155, 155, 156)!important;
    border-color: rgb(155, 155, 156)!important;
}


.btn-light {
    color: #343a40;
    background-color: rgb(241, 241, 241);
    border-color:rgb(241, 241, 241);
}


.form-container .grid{
    overflow: auto;
}
/*------------------- WITH HEADER ---------------*/

/*--------------testing--------------*/


/*.dataList#dataList_applist .column_0 {
    border-radius: 10px !important;
    margin: unset !important;
    background-color: white !important;
    height: 160px !important;
    width: 160px !important;
    background-size: calc(100% - 40px)!important;
    background-position-x: 50% !important;
    background-position: 50% !important;
    padding: 20px !important;
}

.dataList#dataList_applist .column_1 {
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-line-clamp: 2 !important;
    kit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    line-height: 22px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--theme-color5)!important;

    margin: 5px 40px;
}

.card-icon{
    margin: 0 15px 20px 15px;
}*/
