﻿
body {
    font-family: var(--theme-default-font-family);
    background-color: var(--theme-bg-color);
    cursor: default;
}

.body-main {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--theme-scrollbar);
}

::-webkit-scrollbar-thumb {
    background: var(--theme-scrollbar-thumb);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--theme-scrollbar-hover);
    }

.header {
    height: 40px;
    width: 100%;
    background-color: var(--theme-header-color);
    color: var(--theme-logo-color);
    border: 0.25px var(--theme-border-color) solid;
    display: flex;
    align-items: center;
}

    .header .left {
        width: 50%;
        min-width: 400px;
    }

        .header .left .app-menu {
            float: left;
            height: 100%;
            border: none;
            margin: 1px;
            background-color: transparent;
        }

    .header .right {
        width: 50%;
    }

    .header .logo {
        height: 100%;
        width: fit-content;
        color: var(--theme-logo-color);
        padding-top: 5px;
        text-align: center;
        float: left;
        font-size: 19px;
    }

    .header input[type=text] {
        height: 28px;
        width: 170px;
    }

.search {
    height: 28px;
    width: 200px;
    margin-top: 4px;
    display: flex;
}

    .search input[type=text] {
        font-size: 14.4px;
        border-radius: 2px;
        border: none;
    }

    .search button {
        float: right;
        padding: 6px 10px;
        margin-left: -3px;
        background: #ddd;
        font-size: 17px;
        border: none;
        cursor: pointer;
        border-radius: 2px;
    }

.leftMenu {
    height: calc(100% - 63px);
    width: 40px;
    float: left;
    background-color: var(--theme-left-menu-color);
    border: 0.25px var(--theme-border-color) solid;
}

/*    .leftMenu .first {
        margin-top: 10px;
        height: 25px;
        width: 100%;
    }*/

    .leftMenu div {
        /*        margin-top: 5px;
        height: 73px;*/
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 0;
    }

        .leftMenu div:hover, .active {
            background-color: var(--theme-left-menu-active);
            cursor: pointer;
        }


    .leftMenu img {
        width: 25px;
    }


.sidebar-portfolio-menu {
    background: var(--theme-portfolio-menu) no-repeat;
}

.sidebar-file-menu {
    background: var(--theme-file-menu) no-repeat;
}

.sidebar-home-menu {
    background: var(--theme-home-menu) no-repeat;
}

.sidebar-building-menu {
    background: var(--theme-building-menu) no-repeat;
}

.sidebar-assets-menu {
    background: var(--theme-aseets-menu) no-repeat;
}

.sidebar-spaces-menu {
    background: var(--theme-spaces-menu) no-repeat;
}

.sidebar-trending-menu {
    background: var(--theme-trending-menu) no-repeat;
}

.sidebar-energy-menu {
    background: var(--theme-energy-menu) no-repeat;
}

.sidebar-alarming-menu {
    background: var(--theme-alarming-menu) no-repeat;
}

.sidebar-scheduling-menu {
    background: var(--theme-scheduling-menu) no-repeat;
}

.sidebar-reports-menu {
    background: var(--theme-reports-menu) no-repeat;
}

.sidebar-customreports-menu {
    background: var(--theme-customreports-menu) no-repeat;
}

.sidebar-reportrepository-menu {
    background: var(--theme-reportrepository-menu) no-repeat;
}

.menuBar {
    height: 40px;
    width: 100%;
    border: 0.25px var(--theme-border-color) solid;
    border-bottom: none;
    border-top: none;
    align-items: center;
}

    .menuBar ul {
        height: 100%;
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .menuBar li {
        float: left;
        width: 100%;
    }

        .menuBar li a {
            display: block;
            color: var(--theme-text-color);
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-weight: 100;
            font-size: 14.4px;
            background-color: var(--theme-left-menu-color);
        }

            .menuBar li a.active {
                background-color: var(--theme-left-menu-active);
            }

            .menuBar li a:hover {
                background-color: var(--theme-left-menu-active);
            }

    .menuBar .page-heading {
        height: 100%;
        color: var(--theme-text-color);
        padding-left: 25px;
        display: flex;
        align-items: center;
        background-color: var(--theme-left-menu-color);
    }

        .menuBar .page-heading img {
            height: 25px;
            width: 25px;
        }

        .menuBar .page-heading span {
            width: 400px;
            padding-left: 10px;
        }


.rightPanel {
    height: calc(100% - 41px);
    width: 30px;
    float: right;
    background-color: var(--theme-right-panel-color);
    border: 0.25px var(--theme-border-color) solid;
}

.content {
    height: calc(100% - 103px);
    width: 100%;
    border: 0.25px var(--theme-border-color) solid;
    background-color: var(--theme-bg-color);
}

.footer {
    display: flex;
    align-items: center;
    border-right: none;
    border-left: none;
    border: 1px solid var(--theme-border-color);
    background-color: var(--theme-footer-bg-color);
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

    .footer div:first-child {
        margin-left: 5px;
    }

    .footer div {
        width: 25%;
        margin-right: 5px;
        border: 1px var(--theme-border-color) solid;
        background-color: var(--theme-bg-color);
        display: flex;
        color: var(--theme-text-color);
        align-items: center;
        text-align: center;
        padding: 10px 0;
    }

        .footer div img {
            margin-left: 10px;
            height: 20px;
        }

.footer-info {
    font-size: 14px;
    margin: 0;
    margin-left: 7px;
}

    .footer-info.critical {
        color: red;
    }

.footer-info-value {
    margin: auto;
    font-weight: bold;
    font-size: 14px;
}

    .footer-info-value.occupied {
        color: green;
    }

    .footer-info-value.critical {
        color: red;
    }

.footer-critical {
    height: 20px;
    width: 20px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin-left: 15px;
}

.show-1024 {
    display: none;
}

.main-content {
    width: calc(100% - 109px);
    height: 100%;
    position: relative;
    float: left;
    transition: 0.1s ease-in-out;
    background-color: var(--theme-left-menu-color);
}

.main-content-menu {
    height: 100%;
    width: 150px;
    float: left;
    overflow: auto;
}

    .main-content-menu ul {
        width: 100%;
        padding: 0px;
        list-style-type: none;
        text-align: center;
        background-color: var(--theme-table-bg-color);
    }


    .main-content-menu li a {
        height: 30px;
        padding-top: 3px;
        display: block;
        color: var(--theme-text-color);
        text-decoration: none;
        border: 0.25px var(--theme-table-border-color) solid;
        font-size: small;
    }

    .main-content-menu li:hover, .item-active {
        background-color: var(--theme-elevator-grid-active-column);
    }



.main-content-menu-large {
    height: 100%;
    width: 125px;
    float: left;
    background-color: var(--theme-table-bg-color);
    border: 0.25px var(--theme-table-border-color) solid;
    overflow: auto;
}

    .main-content-menu-large ul {
        width: 100%;
        padding: 0px;
        list-style-type: none;
        text-align: center;
    }

    .main-content-menu-large li a {
        height: 120px;
        display: block;
        color: white;
        text-decoration: none;
        border: 0.25px var(--theme-table-border-color) solid;
        border-left: none;
        border-right: none;
    }

    .main-content-menu-large li:hover a, .active {
        background-color: var(--theme-elevator-grid-active-column);
    }

    .main-content-menu-large .button-menu {
        height: 100%;
        width: 100%;
        position: relative;
    }

        .main-content-menu-large .button-menu span {
            margin-top: 5px;
            width: 100%;
            top: 0px;
            left: 0px;
            color: var(--theme-text-color);
            position: absolute;
        }

        .main-content-menu-large .button-menu img {
            object-fit: contain;
            width: 120px;
            height: 60px;
            bottom: 20px;
            left: 0px;
            position: absolute;
        }


.main-content-title {
    height: 40px;
    width: calc(100% - 150px);
    left: 150px;
    padding-left: 10px;
    position: absolute;
    float: right;
    z-index: 1;
    color: white;
    background-color: var(--theme-left-menu-color);
    border-bottom: 1px white solid;
}

.main-content-title-assets {
    height: 40px;
    width: calc(100% - 165px);
    left: 145px;
    padding-left: 10px;
    position: absolute;
    float: right;
    z-index: 1;
    color: white;
    background-color: var(--theme-left-menu-color);
    border-bottom: 1px white solid;
}


.title-heading {
    height: 100%;
    padding-left: 10px;
    display: flex;
    background-color: var(--theme-left-menu-color);
    align-items: center;
}

    .title-heading img {
        height: 25px;
        width: 25px;
        margin-right: 10px;
    }

    .title-heading span {
        width: 250px;
        color: var(--theme-text-color);
    }

.main-content-area {
    height: calc(100% - 40px);
    width: calc(100% - 150px);
    left: 150px;
    top: 40px;
    position: relative;
}

.main-content-area-pds {
    height: calc(100vh - 143px);
    width: calc(100vw - 72px);
    left: 41px;
    top: 81px;
    position: absolute;
    background-color: var(--theme-bg-color);
}


.right-sidebar {
    height: 100%;
    width: 20px;
    display: flex;
    float: right;
    border-left: 1px var(--theme-border-color) solid;
    align-items: center;
    background-color: var(--theme-sidebar-color);
    transition: 0.1s ease-in-out;
}

    .right-sidebar button {
        height: 20px;
        width: 20px;
        border: none;
        background-color: transparent;
    }

.right-sidebar-content {
    width: 100%;
    height: 100%;
    float: right;
    margin-left: 3px;
    background-color: #1b1b1b;
    border-left: 1px var(--theme-border-color) solid;
}

.left-sidebar {
    height: 100%;
    width: 20px;
    display: flex;
    float: left;
    align-items: center;
    background-color: var(--theme-sidebar-color);
    transition: 0.1s ease-in-out;
    border-right: 0.5px var(--theme-border-color) solid;
    border-left: 0.5px var(--theme-border-color) solid;
}

    .left-sidebar button {
        height: 20px;
        width: 20px;
        border: none;
        background-color: transparent;
    }

.left-sidebar-content {
    /*width: 100%;*/
    height: 100%;
    float: left;
    border-right: 1px var(--theme-border-color) solid;
}

.switch {
    float: right;
    position: relative;
    width: 60px;
    height: 30px;
    background-color: transparent;
    margin-right: 30px;
    margin-top: 8px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: #2b2f39;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #000000;
}

input:focus + .slider {
    box-shadow: 0 0 1px yellow;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.loader {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

    .loader img {
        height: 150px;
        width: 150px;
    }

input[id="app-menu-toggle"],
input[id="burger-menu-toggle"] {
    display: none;
}

    input[id="app-menu-toggle"]:checked ~ #app-menu {
        transform: translateX(0);
        display: block;
    }

    input[id="burger-menu-toggle"]:checked ~ #burger-menu {
        transform: translateX(0);
        display: block;
    }

#app-menu {
    position: fixed;
    left: 0;
    width: 250px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    border: 0.25px var(--theme-border-color) solid;
    display: none;
}

#burger-menu {
    position: fixed;
    left: calc(100vw - 250px);
    width: 250px;
    transform: translateX(calc(100vw - 250px));
    transition: transform 250ms ease-in-out;
    border: 0.25px var(--theme-border-color) solid;
    margin-top: 16px;
    display: none;
}

.app-menu-toggle {
    cursor: pointer;
    margin: 3px;
}

#left-caret-icon, #right-caret-icon {
    color: var(--theme-icon-bg-color);
    cursor: pointer;
}

.content-dashboard {
    height: calc(100vh - 140px);
    width: calc(100vw - 31px);
    border-top: 0.5px var(--theme-border-color) solid;
}

.left-sidebar-dashboard {
    width: 400px;
    height: calc(100vh - 140px);
    display: table-cell;
    transition: 0.1s ease-in-out;
}

    .left-sidebar-dashboard .sidebar-container {
        height: 33.33%;
        width: 100%;
        border: 0.25px var(--theme-border-color) solid;
        border-left: none;
        border-right: none;
        border-top: none;
        justify-content: space-evenly;
        position: relative;
    }

.content-divider {
    width: 20px;
    height: calc(100vh - 140px);
    vertical-align: middle;
    background-color: var(--theme-table-column-header);
    border: 0.25px var(--theme-border-color) solid;
    border-top: none;
    border-bottom: none;
    display: table-cell;
}

.main-content-dashboard {
    width: calc(100vw - 400px);
    height: calc(100vh - 142px);
    display: table-cell;
    transition: 0s;
    border: none;
}

    .main-content-dashboard .kpi-container {
        height: 25%;
        width: 100%;
        border-bottom: 0.5px var(--theme-border-color) solid;
        justify-content: space-evenly;
    }

.kpi-consumption, .kpi-demand {
    width: 33.33%;
    height: 100%;
    border-left: 0.5px var(--theme-border-color) solid;
    float: left;
    position: relative;
}

.kpi-usage {
    width: 25%;
    height: 100%;
    border-left: 0.5px var(--theme-border-color) solid;
    float: left;
    position: relative;
}

.kpi-graph-1 {
    width: 25%;
    height: 100%;
    border-left: 0.5px var(--theme-border-color) solid;
    float: left;
    position: relative;
}

.kpi-graph-2 {
    width: 75%;
    height: 100%;
    border-left: 0.5px var(--theme-border-color) solid;
    float: left;
    position: relative;
}

.ban-logo-img {
    width: 100%;
    height: calc(100% - 75px);
    object-fit: cover;
    float: left;
    border-bottom: 1px #9b9b9b solid;
}

.tile-title {
    height: 25px;
    width: 100%;
    float: left;
    display: inline-flex;
    padding-left: 15px;
    padding-top: 2px;
    font-size: small;
    color: var(--theme-chart-header-menu-text-color);
    background-color: var(--theme-sidebar-color);
}

    .tile-title img {
        height: 20px;
        width: 20px;
        margin-right: 10px;
    }

.tile-alarms {
    height: 50px;
    width: 100%;
    float: left;
    display: flex;
}

    .tile-alarms div:first-child {
        border-left: none;
    }

    .tile-alarms div {
        height: 35px;
        width: 25%;
        text-align: center;
        font-weight: bold;
        margin-top: 5px;
        border-left: 1px #9b9b9b solid;
        color: white;
    }

    .tile-alarms a {
        text-decoration: none;
    }

#alarm-count-critical {
    color: red;
}

#alarm-count-high {
    color: orange;
}


#alarm-count-medium {
    color: yellow;
}

#alarm-count-low {
    color: green;
}


.building-info {
    height: 100%;
    width: 100%;
    display: table;
    float: left;
    color: var(--theme-text-color);
    background-color: var(--theme-bg-color);
    padding-left: 15px;
    overflow: auto;
}

    .building-info p {
        margin: 0px;
        font-size: small;
    }

    .building-info .title {
        font-size: inherit;
        font-weight: bold;
        margin-top: 10px;
    }

.menu-header {
    color: var(--theme-text-color);
    white-space: nowrap;
    font-weight: bold;
    background-color: var(--theme-left-menu-color);
    height: 100%;
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 7px;
}

.pds-info {
    height: calc(100vh - 160px);
    width: 402px;
    left: 50px;
    top: 90px;
    position: fixed;
    background-color: var(--theme-table-row-header);
    z-index: 1;
    display: inline-block;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-460px);
    transition: 0.5s ease-in-out;
    border: 0.5px var(--theme-table-border-color) solid;
}

.pds-info-close {
    float: right;
    height: 10px;
    width: 20px;
    margin-top: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.pds-table {
    float: left;
}

    .pds-table object {
        width: 400px;
        height: 400px;
        border: 0.25px var(--theme-table-border-color) solid;
    }

.pds-info-close input {
    display: none;
}

.pds-info-close label {
    margin-top: 10px;
}

table.pds-table-info {
    width: 100%;
    color: var(--theme-text-color);
    font-size: 0.70rem;
    table-layout: fixed;
}

    table.pds-table-info td, th {
        border: 0.25px var(--theme-table-border-color) solid;
        padding: 0.3rem;
        background-color: var(--theme-table-row-header);
    }

    table.pds-table-info tr th {
        background-color: var(--theme-table-row-header);
    }

    table.pds-table-info .pds-table-header {
        text-align: center;
    }


    table.pds-table-info tr img {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }


    table.pds-table-info .pds-table-data {
        color: var(--theme-pds-table-info-text);
        text-align: center;
        margin-bottom: 10px;
    }

#close-info-btn {
    color: var(--theme-text-color);
    cursor: pointer;
}

table.camera-table-info {
    width: 100%;
    font-size: medium;
    color: var(--theme-text-color);
    background-color: var(--theme-left-menu-color);
    table-layout: fixed;
    white-space: nowrap;
    overflow: auto;
}

    table.camera-table-info tr td {
        border: 0.5px var(--theme-table-border-color) solid;
        border-right: none;
        border-top: none;
        height: 12px;
        padding: 7px;
    }

        table.camera-table-info tr td:first-child {
            width: 100px;
        }

    table.camera-table-info tr:nth-child(even) {
        background-color: var(--theme-alternate-row-color);
    }

    table.camera-table-info tr:hover {
        cursor: pointer;
        background-color: var(--theme-left-menu-active);
        color: white;
        z-index: 2;
    }

    table.camera-table-info thead th {
        background-color: var(--theme-sidebar-color);
    }

.camera-grid {
    height: 100%;
    width: calc(100% - 68px);
    display: inline-block;
}

    .camera-grid div {
        height: 50%;
        width: 50%;
        margin: 0px;
        position: relative;
        float: left;
        border: 1px var(--theme-border-color) solid;
    }


.main-content-area-nms {
    min-height: 250px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nms-switch {
    min-height: 100px;
    max-width: 215px;
    width: 25%;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0.25px var(--theme-border-color) solid;
}

    .nms-switch:hover {
        background-color: var(--theme-left-menu-active);
        cursor: pointer;
    }

    .nms-switch p {
        width: 100%;
        height: 40px;
        margin: 0 auto;
        padding-top: 5px;
        background-color: var(--theme-left-menu-color);
        color: var(--theme-text-color);
        text-align: center;
    }

    .nms-switch .nms-switch-img {
        height: 160px;
        width: 100%;
        display: flex;
        justify-content: center;
        border-top: 0.25px var(--theme-border-color) solid;
        border-bottom: 0.25px var(--theme-border-color) solid;
    }

.nms-switch-icon {
    background: var(--theme-nms-switch);
    background-size: cover;
    width: 120px;
    height: 120px;
    margin: auto;
}


.main-content-reports {
    width: calc(100% - 69px);
    height: 100%;
    display: flex;
    float: left;
    background-color: var(--theme-left-menu-color);
}

.main-content-area-reports {
    height: calc(100% - 40px);
    width: 100%;
    float: left;
}

.reports-consumption {
    height: 40%;
    width: 100%;
    display: flex;
    padding: 10px 10px 5px 10px;
}

.reports-consumption-container {
    height: 100%;
    width: 33.33%;
    position: relative;
    border: 0.5px var(--theme-border-color) solid;
    margin: 2px;
}

.reports-demand {
    height: 60%;
    width: 100%;
    display: flex;
    padding: 5px 10px 10px 10px;
}

.reports-demand-container {
    height: 100%;
    width: 100%;
    position: relative;
    border: 0.5px var(--theme-border-color) solid;
}

.reports-rows-three {
    height: 33.33%;
    width: 100%;
    display: flex;
    padding: 5px 10px 5px 10px;
}

.reports-rows-two {
    height: 50%;
    width: 100%;
    display: flex;
    padding: 5px 10px 5px 10px;
}

.reports-cols-three {
    height: 100%;
    width: 33.33%;
    position: relative;
    border: 0.5px var(--theme-border-color) solid;
    margin: 2px;
}

.reports-cols-two {
    height: 100%;
    width: 50%;
    position: relative;
    border: 0.5px var(--theme-border-color) solid;
    margin: 2px;
}

.reports-cols-one {
    height: 100%;
    width: 100%;
    position: relative;
    border: 0.5px var(--theme-border-color) solid;
    margin: 2px;
}

.left-content-area-tenants {
    height: calc(100% - 144px);
    width: 0px;
    display: none;
    top: 83px;
    position: absolute;
    background-color: var(--theme-bg-color);
    overflow-y: auto;
    overflow-x: hidden;
}


.trending-report {
    height: 100%;
    width: 100%;
    display: inline-flex;
}

.left-menu-content {
    height: 100%;
    width: 100%;
    float: left;
    display: none;
}


.left-menu-bar {
    height: 100%;
    width: 20px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-sidebar-color);
    border-left: 0.5px var(--theme-border-color) solid;
    border-right: 0.5px var(--theme-border-color) solid;
}

    .left-menu-bar button {
        background-color: var(--theme-sidebar-color);
        border: none;
        width: 99%
    }


.right-menu-content {
    height: 100%;
    width: 100%;
    float: left;
    display: none;
}

.right-menu-bar {
    height: 100%;
    width: 20px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-sidebar-color);
    border-left: 0.5px var(--theme-border-color) solid;
    border-right: 0.5px var(--theme-border-color) solid;
}

    .right-menu-bar button {
        background-color: var(--theme-sidebar-color);
        border: none;
        width: 99%;
    }

.trending-report-left-menu {
    height: 100%;
    width: 20px;
    display: inline-flex;
    float: left;
}

.trending-report-content {
    height: 100%;
    width: calc(100% - 40px);
    float: left;
}

.trending-report-right-menu {
    height: 100%;
    width: 20px;
    float: left;
}

.trending-options {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.trending-datapoints {
    height: 100%;
    width: 100%;
    display: inline-block;
    background-color: var(--theme-bg-color);
}

.trending-datapoints-title {
    height: 35px;
    width: 100%;
    border-bottom: 0.5px var(--theme-border-color) solid;
}

.trending-datapoints-selection {
    min-height: 80%;
    width: 100%;
    padding: 10px;
}

.trending-datapoints-search {
    width: 100%;
    display: inline-block;
    margin: auto;
}

.trending-datapoints-list {
    width: 100%;
    margin-top: 10px;
    color: var(--theme-text-color);
}

table.trending-datapoints-table {
    width: 100%;
    color: var(--theme-text-color);
    table-layout: fixed;
    word-wrap: anywhere;
}

    table.trending-datapoints-table td, th {
        padding: 5px;
        border: 0.25px var(--theme-table-border-color) solid;
        background-color: var(--theme-table-row-header);
    }



.main-content-assets {
    width: calc(100% - 70px);
    height: calc(100% - 40px);
    float: left;
    display: flex;
    /*transition: 0.1s ease-in-out;*/
    background-color: var(--theme-left-menu-color);
}

.menu-asset-category {
    height: 100%;
    width: 125px;
    float: left;
    background-color: var(--theme-table-bg-color);
    border: 0.25px var(--theme-table-border-color) solid;
}

    .menu-asset-category ul {
        width: 100%;
        padding: 0px;
        list-style-type: none;
        text-align: center;
    }

    .menu-asset-category li a {
        height: 120px;
        display: block;
        color: white;
        text-decoration: none;
        border: 0.25px var(--theme-table-border-color) solid;
        border-left: none;
        border-right: none;
    }

    .menu-asset-category li:hover a, .active {
        background-color: var(--theme-elevator-grid-active-column);
    }

    .menu-asset-category .button-menu {
        height: 100%;
        width: 100%;
        position: relative;
    }

        .menu-asset-category .button-menu span {
            margin-top: 5px;
            width: 100%;
            top: 0px;
            left: 0px;
            color: var(--theme-text-color);
            position: absolute;
        }

        .menu-asset-category .button-menu img {
            object-fit: contain;
            width: 120px;
            height: 60px;
            bottom: 20px;
            left: 0px;
            position: absolute;
        }

.assets-left-sidebar {
    height: 100%;
    max-width: 350px;
    display: flex;
    float: left;
    align-items: center;
    background-color: var(--theme-sidebar-color);
    /*transition: 0.1s ease-in-out;*/
    border-right: 0.5px var(--theme-border-color) solid;
}

    .assets-left-sidebar button {
        height: 20px;
        width: 20px;
        border: none;
        background-color: transparent;
    }

.assets-left-sidebar-content {
    height: 100%;
    width: 330px;
    display: inline-block;
    border-right: 1px var(--theme-border-color) solid;
}

.assets-content-area {
    height: 100%;
    width: 100%;
    float: left;
    background-color: var(--theme-bg-color);
    /*transition: 0.1s ease-in-out;*/
}


.assets-hmi-title {
    height: 40px;
    width: 100%;
    padding-left: 10px;
    padding-top: 5px;
    color: white;
    float: left;
    background-color: var(--theme-left-menu-color);
    border-bottom: 0.5px var(--theme-border-color) solid;
}

    .assets-hmi-title img {
        height: 25px;
        width: 25px;
        margin-right: 10px;
    }

    .assets-hmi-title span {
        width: 250px;
        color: var(--theme-text-color);
    }

.assets-canvas {
   /* height: calc(100% - 65px);
    width: 100%;*/
    float: left;
}

/*.assets-loader {
    height: calc(100% - 40px);
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .assets-loader img {
        height: 150px;
        width: 150px;
    }*/
.assets-loader {
    /*  height: calc(100% - 141px);
    width: calc(100% - 185px);
    position: absolute;
    margin: 0 auto;
    background-color: white;
    z-index: 1;*/
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /*text-align: center;*/
    background: url('/images/E-Magic-Loading Logo.gif') 50% 50% no-repeat rgba(0,0,0,0.8);
    vertical-align: middle;
    color: #fff;
    background-size: 150px 150px;
    background-position: center;
}
    /*.assets-loader img {
        height: 150px;
        width: 150px;
        position: absolute;
        top: 39%;
        left: 43%;
    }*/
.left-content-title-assets {
    height: 40px;
    width: 100%;
    background-color: #2b2f39;
    border-bottom: 0.5px var(--theme-border-color) solid;
    /*transition: 0.1s ease-in-out;*/
}

.left-content-area-assets {
    height: calc(100% - 40px);
    width: 100%;
    background-color: var(--theme-bg-color);
    overflow-y: auto;
    overflow-x: hidden;
}

.assets-right-sidebar {
    height: 100%;
    width: 20px;
    display: flex;
    float: right;
    border-left: 1px var(--theme-border-color) solid;
    align-items: center;
    background-color: var(--theme-sidebar-color);
    /*transition: 0.1s ease-in-out;*/
}

    .assets-right-sidebar button {
        height: 20px;
        width: 20px;
        border: none;
        background-color: transparent;
    }


.assets-container {
    height: 100%;
    width: 100%;
    display: inline-flex;
}


.assets-right-sidebar-content {
    height: 100%;
    width: 100%;
    float: left;
    display: none;
    background-color: var(--theme-bg-color);
}

.main-content-title-security {
    height: 40px;
    width: calc(100% - 105px);
    left: 145px;
    padding-left: 10px;
    position: absolute;
    float: right;
    z-index: 1;
    color: white;
    background-color: var(--theme-left-menu-color);
    border-bottom: 1px white solid;
    transition: 0.1s ease-in-out;
}

.left-content-title-security {
    height: 40px;
    width: 377px;
    display: none;
    background-color: #2b2f39;
    border-bottom: 1px white solid;
    transition: 0.1s ease-in-out;
}

.left-content-area-security {
    height: calc(100% - 45px);
    width: 0px;
    display: none;
    top: 40px;
    position: absolute;
    background-color: var(--theme-bg-color);
    overflow-y: auto;
    overflow-x: hidden;
}

.main-content-area-security {
    height: calc(100% - 40px);
    width: calc(100% - 105px);
    left: 145px;
    top: 40px;
    position: absolute;
    background-color: var(--theme-bg-color);
    transition: 0.1s ease-in-out;
}

.asset-grid {
    cursor: pointer;
}



@media (max-width: 1024px) {
    .show-1024 {
        display: block;
        float: right;
    }

    .hide-1024 {
        display: none;
    }

    .header .logo {
        display: flex;
        text-align: center;
        margin-left: 4px;
        margin-top: 1px;
    }

    .app-menu {
        float: left;
        justify-content: left;
        margin-right: 1px;
        background-color: var(--theme-logo-color);
    }

        .app-menu button {
            height: 100%;
            border: none;
            cursor: pointer;
        }

    .burger-menu {
        float: right;
        justify-content: right;
        margin-right: 1px;
    }

    .card-body {
        background-color: var(--theme-table-bg-color);
        max-height: 800px;
    }

        .card-body .search {
            margin-bottom: 10px;
            width: 200px;
            margin-left: 0px;
        }

    .content {
        height: calc(100% - 40px);
        width: 100%;
        border: 0.25px var(--theme-border-color) solid;
        display: flex;
        background-color: var(--theme-bg-color);
    }

    .list-group {
        overflow: auto;
    }

        .list-group a {
            color: white;
            background-color: var(--theme-table-column-header);
        }

            .list-group a:hover {
                background-color: var(--theme-elevator-grid-active-column);
                color: var(--theme-text-color);
            }

    .page-heading {
        padding-left: 20px;
    }

    #app-menu {
        z-index: 1;
    }

    #burger-menu {
        z-index: 1;
    }

    .main-content {
        width: 100%;
    }

    .content {
        width: 100%;
        height: 100%;
    }

    .main-content-area {
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
    }

    .content-dashboard {
        height: calc(100vh - 42px);
        width: 100%;
    }

    .content-divider {
        width: 20px;
        height: calc(100vh - 42px);
    }

    .main-content-area-pds {
        height: 100%;
        width: 100%;
        top: 42px;
        left: 0px;
        transition: 0.1s ease-in-out;
    }

    .pds-info {
        height: calc(100vh - 65px);
        width: 400px;
        left: 10px;
        top: 52px;
    }

    .main-content-area-nms {
        width: 100%;
        height: 100%;
    }
}

.page-container {
    width: 100%;
    height: 100%;
    display: table;
}

.page-header {
    width: 100%;
    height: 40px;
    background-color: var(--theme-header-color);
    border-bottom: 0.5px var(--theme-border-color) solid;
}

.logo {
    padding-left: 50px;
    padding-top: 6px;
    width: 400px;
    color: var(--theme-text-color);
}

.page-content {
    width: 100%;
    height: 100%;
    display: table-row;
}

.page-footer {
    width: 100%;
    height: 60px;
    background-color: var(--theme-footer-bg-color);
    border-top: 0.5px var(--theme-border-color) solid;
}

.page-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: var(--theme-bg-color);
}

.page-left-section {
    width: 40px;
    height: 100%;
    display: table-column;
    background-color: var(--theme-left-menu-color);
    border-right: 0.5px var(--theme-border-color) solid;
}

.page-right-section {
    width: 40px;
    height: 100%;
    display: table-column;
    background-color: var(--theme-right-panel-color);
    border-left: 0.5px var(--theme-border-color) solid;
}

.page-main-content {
    width: 100%;
    height: 100%;
    display: table-column;
    background-color: var(--theme-bg-color);
}

.main-content-container {
    width: 100%;
    height: 100%;
    display: table;
}

.main-content-titlebar {
    width: 100%;
    height: 25px;
    display: inline-flex;
    color: var(--theme-text-color);
    background-color: var(--theme-title-bg-color);
    border-bottom: 0.5px var(--theme-border-color) solid;
}

.main-content-map {
    width: 100%;
    height: calc(100% - 25px);
}

.portfolio {
    min-height: 300px;
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

.portfolio-content {
    min-height: 100px;
    max-width: 245px;
    width: 25%;
    margin: 20px 0px 20px 0px;
    border: 0.25px var(--theme-border-color) solid;
}

.portfolio-popup {
    width: 100%;
    display: inline-grid;
    border: 0.25px var(--theme-border-color) solid;
}


.portfolio-thumbnail {
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    margin: 0;
}

.portfolio-loader {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content-container .popup-close {
    color: var(--theme-chart-header-menu-text-color);
}

    .popup-content-container .popup-close:hover {
        color: var(--theme-header-color);
    }

.element-border {
    border: 1px solid
}