
html {
    overflow-y: hidden !important;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    font-family: 'Roboto', sans-serif !important;
    font-family: 'Roboto Slab', serif;
}

.break-before {
    page-break-before: always;
}

.break-after {
    page-break-after: always;
}

.break-avoid {
    page-break-inside: avoid;
}

.fullpage {
    height: 792pt;
}



 /* login page styles */

    div#loginPage {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    div#background-image {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
    }

    div#background-overlay-gradient {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #500f1ab5;
    }

    div#background-overlay-pattern {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 100 100'%3E%3Crect x='0' y='0' width='10' height='10' opacity='0.2' fill='%23ffffff'/%3E%3C/svg%3E");
    }

    .material-icons{
        line-height: unset !important;
    }

    div#auth-screen-body {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    div#login-company-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    div#login-company-logo img {
        max-height: 256px;
        max-width: 256px;
    }

    div#app-version-login {
        position: fixed;
        z-index: 9999;
        color: #fff;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
    }
















.material-icons{
    line-height: unset !important;
}

.flex-expand {
    flex-grow: 1;
}

div#dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

div#dashboard-header {
    min-height: 56px;
    box-shadow: 0px 1px 4px 1px #0000001f;
    align-items: center;
    display: flex;
    padding: 0 1rem;
    z-index: 90;
}

div#sidebar-toggle {
    cursor: pointer;
    font-size: 1.5rem;
}

i.sidebar-toggle-button {
    padding: 0.5rem;
    font-size: 24px;
    line-height: 24px !important;
    border-radius: 30px;
    display: block;
}

div#dashboard-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

#header-user-avatar-dropdown{
    margin-right: 0.5rem;
}

div#header-user-avatar-image {
    width: 40px;
    height: 40px;
    border-radius: 34px;
    background-color: #84b0ce;
    cursor: pointer;
}

.userAvatarDropDown.button {
    border-radius: 50px;
    border: none;
    color: #fff;
    background-color: var(--theme-primary);
    width: 36px;
    height: 36px;
}

#userAvatarDropDown .dropdown-menu{
    min-width: 10rem;
}

div#dashboard-content {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    background-color: var(--body-bg-color);
}


div.dashboard-body {
    flex-grow: 1;
    margin: 0.75rem 0 0 0.75rem;
    background-color: #fff;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


div#dashboard-body-left {
    background-color: #fff;
    border-right: 1px solid #efefef;
    display: flex;
    flex-direction: column;
}








div#dashboard-sidebar {
    width: 276px;
    /*256*/
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0.75rem 0;
    color: #565656;
    height: calc(100vh - 56px);
    overflow-y: auto;
}



div#dashboard-sidebar::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    background-color: #F5F5F5;
}

div#dashboard-sidebar::-webkit-scrollbar{
    width: 5px;
    background-color: #F5F5F5;
}

div#dashboard-sidebar::-webkit-scrollbar-thumb{
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

div#dashboard-sidebar::-webkit-scrollbar-thumb:hover{
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
}



div#dashboard-sidebar-menu {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.sidebar-menu-item {
    display: flex;
    flex-direction: column;
    border-left: 4px solid transparent;
    cursor: pointer;
}

.sidebar-menu-item:hover {
    border-left: 4px solid #d1d1d1;
}


.sidebar-menu-item-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
    height: 48px;
    line-height: 1;
}

.sidebar-menu-item .sidebar-menu-item-title:hover, .sidebar-menu-item.subItemIsActive .sidebar-menu-item-title:hover,  .sidebar-submenu-item:hover {
    background-color: #f6f6f6;
}


.sidebar-menu-item-title .title-icon {
    margin-right: 12px;
}

.sidebar-menu-item-title .title-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}








.sidebar-submenu {
    display: flex;
    flex-direction: column;
    height: 0px;
    overflow: hidden;
    justify-content: flex-end;
    transition: 0.3s ease-out all;
}

.sidebar-submenu-item {
    display: flex;
    flex-direction: row;
    padding-left: 32px;
    align-items: center;
    height: 40px;
    line-height: 1;
}




.sidebar-menu-item-title .expand-icon{
    transition: 0.3s ease-out all;
    line-height: 1;
}

.sidebar-menu-item.expanded .sidebar-menu-item-title .expand-icon{
    transform: rotateZ(180deg);
}


.sidebar-menu-item.active .sidebar-menu-item-title, .sidebar-submenu-item.active {
    background-color: var(--theme-primary-light);
    color: var(--theme-primary);
}

.sidebar-menu-item.subItemIsActive .sidebar-menu-item-title {
    background-color: transparent;
}

.sidebar-menu-item.active {
    border-left: 4px solid var(--theme-primary);
}


div#dashboard-sidebar-bottom {
    display: flex;
    flex-direction: column;
}

.sidebar-bottom-text {
    font-size: 12px;
    text-align: center;
}









div#dashboard-view-container {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    overflow-x: scroll;
}



.dashboard-body-title-bar {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
}

.dashboard-body-title-bar-left {
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    padding: 0.5rem 1rem;
    align-items: center;
    border-bottom: 1px solid #dbdbdb;
}

.dashboard-body-title-bar-right {
    display: flex;
    align-items: flex-end;
}

#dashboard-title-wrapper{
    height: 56px;
    display: flex;
    align-items: center;
    width: 256px;
    color: var(--theme-primary);
}

.dashboard-body-title-bar-title {
    font-size: 1.5rem;
    padding-left: 0.5rem;
}

.dashboard-body-title-bar-expand {
    flex-grow: 1;
}

.dashboard-body-title-bar-buttons {
    margin-right: 2rem;
}

.dashboard-body-content-area {
    flex-grow: 1;
    overflow-y: scroll;
    padding: 1.5rem;
    flex-basis: 0;
}











  /* Tooltip text */
  .sidebar-menu-item .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--theme-text-primary);;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    left: 3.25rem;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    opacity: 0;
    transition: 0.5s ease-out opacity;
  }

  .sidebar-menu-item .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent var(--theme-text-primary) transparent transparent;
  }

  /* Show the tooltip text when you mouse over the tooltip container */
  #dashboard-sidebar.icons-only .sidebar-menu-item:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }



div.custom-tile {
    padding: 1.5rem 1rem;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    background-color: #fcfcfc;
}

div.custom-tile-narrow {
    padding: 1rem;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    background-color: #fcfcfc;
}





.permissions-container {
    display: block;
}

.permission-group-wrapper {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 2rem;
    vertical-align: top;
}

.permission-group-title {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.permission-group-permission-list {
    padding-left: 0.1rem;
}


.field-label .label {
    min-width: 225px;
}

.denomination-row-count{
    max-width: 85px !important;
}

.denomination-row-label {
    width: 80px;
}

.denomination-row-total {
    text-align: right;
    flex-grow: 1;
    line-height: 1.5rem;
    padding: 0.75rem 0 0.1rem;
    border-bottom: 1px solid #cecece;
    font-size: 1.25rem;
}

.denomination-total-total {
    text-align: right;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.25;
    border-top: 1px solid #aaa;
    border-bottom: 4px double #aaa;
    padding-top: 0.5rem;
}

.is-flex-grow-0 {
    flex-grow: 0 !important;
}






.empty-indicator {
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    font-size: 1.1rem;
}




.dual-auth-model-row-label {
    text-align: right;
    font-weight: bold;
}


.dual-auth-model-old-value {
    text-decoration: line-through;
    font-size: 0.85rem;
    opacity: 0.75;
}

.input.permission-level-input {
    max-width: 45px;
}


.dashboard-body-title-bar-search {
    padding: 0 1rem;
}




.scrollable-table .table-wrapper {
    overflow-x: auto;
}

.scrollable-table .table-wrapper  table.table{
    width: max-content;
    min-width: 100%;
}


.message-header.not-expanded {
    border-radius: 5px;
}

.pending-list-container {
    border: 1px solid #dbdbdb;
    border-top: none;
    border-radius: 0 0 5px 5px;
}





/* Log Table Styles */

.log-icon-debug{color: #a2a2a2;}

.log-icon-info{color: #1facff;}

.log-icon-notice{color: #f7c200;}

.log-icon-warning{color: #f7c200;}
.log-description-warning{background-color: #fff795;color: #000;}

.log-icon-error{color: #ff0000;}
.log-description-error{color: #ff0000;}

.log-icon-critical{color: #ff0000;}
.log-description-critical{background-color: #f11d1d;color: #FFF;}

.log-icon-alert{color: #ff0000;}
.log-description-alert{background-color: #f11d1d;color: #FFF;}

.log-icon-emergency{color: #ff0000;}
.log-description-emergency{background-color: #f11d1d;color: #FFF;}

