﻿* {
    padding: 0;
    margin: 0;
    font-family: 'Quicksand','Segoe UI', sans-serif;
    transition-property: width, position, left, right, top, bottom;
    transition-duration: 100ms;
    border-collapse: collapse;
}

:root {
    --main-color: #2732A7;
    --warning-color: #d64242;
}

body {
    background-color: var(--main-color);
}

.preLoad {
    background-color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 100000;
}

::placeholder {
    color: rgba(255,255,255,0.5);
}

.splashScreen {
    background: var(--main-color);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 96px;
}

.splashLogo {
    position: static;
    left: 50%;
    top: 33%;
    max-height: 90%;
    width: 460px;
    max-width: calc(100vw - 32px);
}

.logoSubText {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    max-width: 90%;
    color: white;
    font-size: 30px;
}

.logoSubText2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    width: fit-content;
    align-items: center;
    max-height: 90%;
    max-width: 90%;
    color: white;
    font-size: 30px;
}

.confirmation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 500px;
    max-width: 95%;
    height: 150px;
    box-shadow: 0px 0px 75px 50px rgba(0,0,0,0.4);
    text-align:center;
    border-radius: 5px;
}

.confirmationHeader {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.confimrationMessage {
    padding-top: 20px;
    font-size: 17px;
}

.splashLoader {
    animation: splashSpinner 1.5s alternate infinite ease-in-out;
    animation-delay: -1.2s;
    position: fixed;
    left: 50vw;
    bottom: 50vh;
    transform: translate(-50%, -50%) rotate(0deg);
    height: 128px;
    width: 128px;
    opacity: 100%;
    filter: blur(0px) invert();
    z-index: 200;
}

@-webkit-keyframes splashSpinner {
    50% {
        opacity: 80%;
        filter: blur(1px) invert();
    }

    100% {
        transform: translate(-50%, -50%) rotate(1280deg);
    }
}





@-webkit-keyframes bigSpinner {
    100% {
        transform: rotate(360deg);
    }
}

.bigSpinner {
    animation: bigSpinner .75s forwards infinite linear;
    position: absolute;
    left: calc(50% - 64px);
    top: calc(50% - 64px);
    transform: rotate(0deg);
    filter: invert();
    z-index: 13;
}

.loadingContainer {
    box-sizing: border-box;
    padding-top: 20px;
    padding-left: 20px;
    border-collapse: collapse;
    z-index: 200;
}



.loadingWindow {
    animation: openWindow .15s ease-out forwards;
    width: 160px;
    height: 160px;
    background-color: var(--main-color);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.9);
    z-index: 11;
    text-align: left;
    padding-bottom: 10px;
    border-radius: 16px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
}





    .loadingHeader {
        color: var(--main-color);
        font-size: 20px;
        height: fit-content;
        width: calc(100% + 2px);
        line-height: 25px;
        box-sizing: border-box;
        margin-left: -1px;
        text-align: center;
    }

    .csvLoadingWindow {
        display: inline-block;
        width: 350px;
        height: 180px;
        border: 3px solid var(--main-color);
        border-radius: 2px;
        box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
        background-color: var(--main-color);
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        text-align: center;
    }

    .csvLoadingWindow img {
        margin-top: 7px;
        height: 43%;
    }

.csvLoadingHeader {
    color: var(--main-color);
    font-size: 20px;
    height: 30px;
    width: calc(100% + 2px);
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    margin-left: -1px;
    text-align: center;
    margin-bottom: 30px;
}






#topbarPageInfobar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    height: 48px;
    width: calc(100% - 32px);
    margin-left: 32px;
}

#titleNavigation {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    flex-shrink: 1;
    min-width: 0px;
    overflow: hidden;
}

/*#topbarPageTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    height: 100%;
    max-height: 48px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    margin-top: -4px;
}*/

#titleEquipmentUptime {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-wrap: nowrap;
    flex-shrink: 1;
    color: white;
}





.unitPageTitle {
    font-size: 36px;
    color: var(--main-color);
    margin-left: 16px;
    margin-top: 16px;
}

#raeInfo {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
}

.raeInfoSection {
    display: flex;
    flex-direction: column;
    padding: 16px;
    justify-content: center;
}

#serverUnitInfo {
    background-color: white;
}

#serverInfo {
    background-color: lightgoldenrodyellow;
}





.topbar {
    position: fixed;
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 60px max-content 1fr 48px 48px 48px max-content 48px;
    grid-template-rows: 56px;
    top: 0px;
    left: 0px;
    width: 100%;
    max-width: 100%;
    height: 56px;
    overflow: hidden;
    z-index: 9;
}

    .topbarShadow {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 60px;
        margin: 0px;
        box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.37);
        z-index: 8;
    }

    .topbarButton {
        width: 32px;
        cursor: pointer;
        user-select: none;
    }

    .topbarButtonSmall {
        width: 24px;
        z-index: 1;
        cursor: pointer;
        user-select: none;
    }

    .mainLogo {
        height: 32px;
        cursor: pointer;
        user-select: none;
    }

    .mainLogoMobile {
        display: none;
        height: 32px;
        cursor: pointer;
        user-select: none;
    }

    .menuEmail {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        height: 100%;
        max-height: 48px;
    }

.topbarBackground {
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    position: fixed;
    display: grid;
    background: transparent;
    border-radius: 8px;
    margin: 4px;
    top: 0px;
    left: 0px;
    width: calc(100% - 10px);
    height: 48px;
    z-index: 11;
}

.topbarBackgroundCollapse {
    left: 212px;
    width: calc(100% - 222px);
}


    #lined
    {
        -webkit-transform: translateX(0px) scale(1);
        margin-top: 12px;
        margin-left: 12px;
    }

    @-webkit-keyframes linedMenuButtonClickRight {
        0% {
        -webkit-transform: translateX(0px) scale(.95);
        }

        10% {
            -webkit-transform: translateX(3px) scale(.95);
        }

        30% {
            -webkit-transform: translateX(3px) scale(1);
        }

        40% {
            -webkit-transform: translateX(-1px) scale(1);
        }

        60% {
            -webkit-transform: translateX(-1px) scale(1);
        }

        70% {
            -webkit-transform: translateX(0px) scale(1);
        }
    }

@-webkit-keyframes linedMenuButtonClickLeft {
    0% {
        -webkit-transform: translateX(0px) scale(.95);
    }

    10% {
        -webkit-transform: translateX(-3px) scale(.95);
    }

    30% {
        -webkit-transform: translateX(-3px) scale(1);
    }

    40% {
        -webkit-transform: translateX(1px) scale(1);
    }

    60% {
        -webkit-transform: translateX(1px) scale(1);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1);
    }
}

.linedMenuButtonLeft {
    -webkit-animation: unset;
    -webkit-animation: linedMenuButtonClickRight .5s ease-in-out forwards;
}

.linedMenuButtonRight {
    -webkit-animation: unset;
    -webkit-animation: linedMenuButtonClickLeft .5s ease-in-out forwards;
}


.sidebar {
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    position: fixed;
    top: 56px;
    left: 0px;
    height: calc(100% - 56px);
    z-index: 10;
    box-sizing: border-box;
    width: 212px;
}

.sidebarCollapsed {
    left: -230px;
}




.expanded {
    width: 230px;
}

.collapsed {
    width: 4px;
    overflow: hidden;
}

.hideText {
    font-size: 0px;
    user-select: none;
}










@-webkit-keyframes sidebarHover {
    0% {
        border-left: 1px solid rgba(255, 255, 255, .45);
        border-top: 1px solid rgba(255, 255, 255, .35);
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .075);
    }

    25% {
        border-left: 1px solid rgba(255, 255, 255, .075);
        border-top: 1px solid rgba(255, 255, 255, .45);
        border-right: 1px solid rgba(255, 255, 255, .35);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    50% {
        border-top: 1px solid rgba(255, 255, 255, .35);
        border-left: 1px solid rgba(255, 255, 255, .075);
        border-right: 1px solid rgba(255, 255, 255, .45);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    75% {
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-left: 1px solid rgba(255, 255, 255, .35);
        border-right: 1px solid rgba(255, 255, 255, .075);
        border-bottom: 1px solid rgba(255, 255, 255, .45);
    }

    100% {
        border-left: 1px solid rgba(255, 255, 255, .45);
        border-top: 1px solid rgba(255, 255, 255, .35);
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .075);
    }
}

.sidebarItem {
    transition: all .05s ease-in;
    line-height: 60px;
    height: 56px;
    width: calc(100% - 17px);
    text-align: left;
    padding-left: 7px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    user-select: none;
    margin: 4px;
    border-radius: 8px;
    border: 1px solid transparent;
}

    .sidebarItem:hover {
        animation: sidebarHover 5s forwards infinite linear;
        background: linear-gradient(45deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .125), rgba(255, 255, 255, .05));
        border-top: 1px solid rgba(255, 255, 255, .3);
        border-left: 1px solid rgba(255, 255, 255, .4);
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .075);
        box-shadow: rgba(0,0,0,.2) 0px 0px 4px;
    }

.sidebarText {
    display: inline-block;
}

    .sidebarItem img {
        max-height: 32px;
        margin-right: 6px;
        margin-left: 6px;
        position: relative;
        top: 40%;
        transform: translate(0, -50%);
    }

.sideDataText {
    position: fixed;
    bottom: 8px;
    left: 6px;
    color: white;
    border: 3px dashed rgba(255,255,255,.25);
    width: calc(212px - 36px);
    padding: 8px;
    border-radius: 8px;
}

.active {
    background: linear-gradient(45deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .075), rgba(255, 255, 255, .05));
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-left: 1px solid rgba(255, 255, 255, .4);
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .075);
    box-shadow: rgba(0,0,0,.2) 0px 0px 4px;
}

.inactive {
    opacity: .4;
}

.expandArrow {
    position: fixed;
    bottom: 0;
    left: 0;
    padding-right: 17px;
    box-sizing: border-box;
    color: white;
    z-index: 10;
    font-size: 40px;
    cursor: pointer;
    text-align: right;
}

.contentContainer {
    transition: all .1s ease-in-out;
    background: url("Images/gridBGTest.png") 0 0 repeat;
    background-color: transparent;
    height: calc(100% - 88px);
    position: absolute;
    top: 56px;
    padding: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    border-top-left-radius: 8px;
    z-index: 10;
}

.ccExpanded {
    width: calc(100% - 244px);
    left: 212px;
}

.ccCollapsed {
    width: calc(100% - 32px);
    left: 0px;
    border-top-left-radius: 0px;
}

.logonFlex {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logonContainer {
    position: fixed;
    top: 45%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, 0%);
    text-align: center;
    padding-top: 30px;
    box-sizing: border-box;
    color: white;
    font-size: 20px;
    z-index: 101;
}

    .logonContainer a {
        font-size: 16px;
    }

    .logonContainer input[type=text], .logonContainer input[type=password] {
        margin-bottom: 10px;
        width: calc(100% - 10px);
    }

.createAccountContainer {
    position: fixed;
    top: 64px !important;
    width: 500px;
}

.loginMessage {
    color: var(--warning-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.createAccountMessage {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.loginButton {
    position: relative;
    top: 50px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 20px;
    border: white;
    border-radius: 20px;
    outline: none;
    background-color: white;
    /*color: 1px solid rgba(255,255,255,0.7);*/
    cursor: pointer;
}

.createAccountButton {
    position: relative;
    top: 20px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 20px;
    border: white;
    border-radius: 20px;
    outline: none;
    background-color: white;
    /*color: 1px solid rgba(255,255,255,0.7);*/
    cursor: pointer;
}

.forgotPasswordButton {
    position: relative;
    top: 60px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    outline: none;
    background-color: rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
}

.logonRememberMe {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-left: 5px;
    font-size: 15px;
}

    .logonRememberMe label {
        float: right;
        margin-right: 10px;
    }

.logonForgotContainer {
    position: fixed;
    top: 45%;
    left: 50%;
    width: 300px;
    max-width: 95%;
    transform: translate(-50%, 0%);
    text-align: center;
    padding-top: 30px;
    box-sizing: border-box;
    color: white;
    font-size: 20px;
    z-index: 101;
}

.logonForgotContainer input[type=text], .logonContainer input[type=password] {
    margin-bottom: 10px;
    width: calc(100% - 10px);
}

.logonForgotMessage {
    margin-bottom: 10px;
}

.loginForgotButton {
    position: relative;
    top: 3vh;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 20px;
    border: white;
    border-radius: 20px;
    outline: none;
    background-color: white;
    /*color: 1px solid rgba(255,255,255,0.7);*/
    cursor: pointer;
}

.forgotCancelButton {
    position: relative;
    top: calc(3vh + 10px);
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    outline: none;
    background-color: rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
}


.dashboardIFrame {
    box-sizing: border-box;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
}


.dashboardContainer {
    box-sizing: border-box;
    border-collapse: collapse;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.classicDashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
        "alerts disconnected"
        "all all"
        "all all";
    grid-gap: 16px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
}

.classicDashboardWithAI {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "alerts alerts disconnected disconnected ai"
        "all all all all all"
        "all all all all all";
}

.dashboardItem {
    min-width: 250px;
    min-height: 150px;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    background-color: var(--main-color);
    vertical-align: top;
    overflow: hidden;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
}

.dashboardItemFull {
    min-width: 250px;
    min-height: 150px;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    background-color: var(--main-color);
    vertical-align: top;
    overflow: hidden;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
}

.dashboardItemMobile {
    grid-column-start: 1;
    grid-column-end: span 5;
    grid-row-start: 1;
    grid-row-end: span 3;
    grid-area: all;
    display: none;
    min-width: 250px;
    min-height: 150px;
    border: 4px solid var(--main-color);
    border-radius: 8px;
    background-color: var(--main-color);
    vertical-align: top;
    overflow: hidden;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
}


.dashboardHeader {
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 6px;
    padding-top: 2px;
    user-select: none;
}

.AiOverviewContainer {
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    height: calc(100% - 42px);
    overflow: auto;
    background-color: var(--main-color);
    color: white;
    word-wrap: break-word;
}

.AiOverviewWarning {
    height: 12px;
    width: 100%;
    background-color: var(--main-color);
    color: white;
    font-size: 10px;
    text-align: center;
    font-style: italic;
}

.regionContainer {
    box-sizing: border-box;
    border-collapse: collapse;
}



.dashboardTable {
    border-radius: 3px;
}


.gridItem {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    min-width: 250px;
    width: 31%;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    background-color: white;
    cursor: pointer;
    vertical-align: top;
    overflow: hidden;
}


.gridItemHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 6px;
    padding-top: 2px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

    .gridItemHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }


.gridItemStatus {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 16px);
    margin: 8px;
    font-size: 20px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
}

.gridItemStats {
    font-size: 17px;
    margin: 8px;
}

    .gridItemStats table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
        border-radius: 8px;
    }

        .gridItemStats table td {
            width: 33%;
            background-color: rgb(245, 245, 245);
            border-right: 1px solid rgb(224, 224, 224);
        }


.userItemStats {
    font-size: 17px;
    margin: 8px;
}

    .userItemStats table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
        border-radius: 8px;
    }

        .userItemStats table td {
            width: 25%;
            background-color: rgb(245, 245, 245);
            border-right: 1px solid rgb(224, 224, 224);
        }


.plusButton {
    transition: all .05s ease-in;
    color: white;
    background-color: var(--main-color);
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 54px;
    width: 56px;
    height: 56px;
    max-height: 56px;
    border-radius: 64px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    user-select: none;
    cursor: pointer;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    border-top: 1px white solid;
    border-left: 1px white solid;
}

    .plusButton:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1);
    }




.regionPlusSymbol {
    width: 100%;
    text-align: center;
    font-size: 50px;
    height: 92px;
    line-height: 80px;
}

.addRegionContainer {
    box-sizing: border-box;
    padding-top: 20px;
    padding-left: 20px;
    border-collapse: collapse;
    z-index: 11;
}

.addRegionWindow {
    display: inline-block;
    min-width: 500px;
    width: calc(20% - 25px);
    min-height: 200px;
    height: 20%;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    text-align: center;
}

.addRegionHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    width: calc(100% + 2px);
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    margin-left: -1px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: -1px;
}

.addText {
    background-color: rgba(0,0,0,0);
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    text-align: left;
    font-size: 20px;
    padding: 5px;
    transition-property: border-bottom, margin, box-shadow;
    transition-duration: 200ms;
    width: 300px;
    text-align: center;
    margin-top: 15px;
}

    .addText:focus {
        border-bottom: 1px solid rgba(0,0,0,0.8);
        outline: none;
        box-shadow: 0px 0px 10px -10px rgba(255,255,255,1) inset;
    }

    .addText::placeholder {
        color: rgba(0,0,0,0.5);
    }

.addButton {
    margin-top: 35px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 20px;
    border: white;
    border-radius: 20px;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
}

.healthBar {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    background-color: rgb(242, 242, 242);
    border: 2px solid rgb(242, 242, 242);
    height: 18px;
    line-height: 18px;
    width: 96%;
    border-radius: 5px;
    font-size: 15px;
    margin-top: 3px;
}

    .healthBar div {
        height: 100%;
        border-radius: 3px;
        text-align: center;
        float: left;
    }

.healthy {
    background: linear-gradient(315deg, #4ce067, #70d883);
    color: #123d1a;
    text-shadow: .5px .5px 1px rgba(0,0,0,.5);
}

.unhealthy {
    background: linear-gradient(315deg, #E5A759, #edb97b);
    color: black;
    text-shadow: .5px .5px 1px rgba(0,0,0,.5);
}

.warning {
    background: linear-gradient(315deg, var(--warning-color), #db7878);
    color: #491313;
    text-shadow: .5px .5px 1px rgba(0,0,0,.5);
}

.progressBarContainer {
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: rgb(210, 210, 210);
    border: 2px solid rgb(242, 242, 242);
    height: 18px;
    line-height: 18px;
    width: 50%;
    border-radius: 5px;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
}

.progressBar {
    height: 100%;
    border-radius: 3px;
    text-align: center;
    float: left;
    background: linear-gradient(315deg, var(--main-color), #2A87BD);
    color: white;
}

.csvProgressBarContainer {
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: rgb(210, 210, 210);
    border: 2px solid rgb(242, 242, 242);
    height: 18px;
    line-height: 18px;
    width: 95%;
    border-radius: 5px;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7px;
}


.siteContainer {
    box-sizing: border-box;
    border-collapse: collapse;
}

.site {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 250px;
    width: 31%;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    cursor: pointer;
    vertical-align: top;
}

.siteHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

    .siteHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }

.siteStatus {
    display: inline-block;
    width: calc(100% - 10px);
    font-size: 20px;
    line-height: 15px;
    margin-top: 10px;
    margin-left: 10px;
}

    .siteStatus table {
        width: 100%;
    }

    .siteStatus td:nth-child(2) {
        width: 100%;
        vertical-align: central;
    }


.siteStats {
    font-size: 17px;
    margin-top: 10px;
}

    .siteStats table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
    }

        .siteStats table td {
            width: 33%;
            background-color: rgb(245, 245, 245);
            border-right: 1px solid rgb(224, 224, 224);
            border-bottom: 1px solid rgb(224, 224, 224);
        }

.roomContainer {
    box-sizing: border-box;
    border-collapse: collapse;
}

.room {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 250px;
    width: 31%;
    /*width: 98%;*/
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    cursor: pointer;
    vertical-align: top;
}

.roomHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

    .roomHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }

.roomStatus {
    display: inline-block;
    width: calc(100% - 10px);
    font-size: 20px;
    line-height: 15px;
    margin-top: 10px;
    margin-left: 10px;
}

    .roomStatus table {
        width: 100%;
    }

    .roomStatus td:nth-child(2) {
        width: 100%;
        vertical-align: central;
    }


.roomStats {
    font-size: 17px;
    margin-top: 10px;
}

    .roomStats table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
    }

        .roomStats table td {
            width: 33%;
            background-color: rgb(245, 245, 245);
            border-right: 1px solid rgb(224, 224, 224);
            border-bottom: 1px solid rgb(224, 224, 224);
        }



.unitContainer {
    box-sizing: border-box;
    border-collapse: collapse;
}

.unit {
    margin-bottom: 8px;
    min-width: 295px;
    width: 100%;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    background-color: white;
    vertical-align: top;
    cursor: pointer;
    overflow: hidden;
}

.unitHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 6px;
    padding-top: 2px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .unitHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }

.unitStatus {
    display: inline-block;
    min-width: 130px;
    width: 8.5%;
    text-align: center;
    font-size: 15px;
    margin: 5px;
    margin-top: 12px;
    vertical-align: top;
}

.unitOnOff {
    display: inline-block;
    height: 100px;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    margin-left: 15px;
    vertical-align: top;
}

    .unitOnOff img {
        height: 100px;
        width: 100px;
    }

    .unitOnOff table {
        margin-top: -2px;
        text-align: center;
    }

.unitOn {
    color: #23d827;
    padding-bottom: 30px;
    box-sizing: border-box;
    font-size: 40px;
    font-weight: 600;
}

.unitOff {
    color: #ff4444;
    padding-bottom: 30px;
    box-sizing: border-box;
    font-size: 40px;
    font-weight: 600;
}

.unitStat {
    font-size: 25px;
    height: 60px;
    line-height: 60px;
}

.unitShowDetail {
    background-color: rgb(242, 242, 242);
    text-align: center;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
}

.unitHideDetail {
    display: none;
    background-color: rgb(242, 242, 242);
    text-align: center;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
}

.unitDetailContainer {
    display: none;
}

.equipmentContainer {
    box-sizing: border-box;
    border-collapse: collapse;
    height: fit-content;
    background-color: white;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    border: 2px solid var(--main-color);
    border-radius: 8px;
}

.equipment {
    min-width: 295px;
    width: 100%;
    min-height: calc(100% - 20px);
    border-radius: 8px;
    background-color: transparent;
    vertical-align: top;
    overflow: hidden;
}

.equipmentHeader {
    background-color: transparent;
    color: var(--main-color);
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    padding-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .equipmentHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }

.equipmentTopDetails {
    padding: 10px;
    width: 100%;
}

.equipmentTopHierarchy {
    display: none;
    font-size: 16px;
    color: var(--main-color);
    margin-left: 16px;
    margin-right: 16px;
}

.equipmentStatus {
    display: inline-block;
    min-width: 165px;
    width: 15%;
    height: 100px;
    text-align: center;
    font-size: 20px;
    margin: 5px;
    vertical-align: top;
}

.equipmentStat {
    font-size: 20px;
    height: 75px;
    box-sizing: border-box;
    padding-top: 15px;
}

.equipmentOnOff {
    display: inline-block;
    height: 100px;
    text-align: center;
    font-size: 20px;
    margin-left: 5px;
    vertical-align: top;
}

    .equipmentOnOff img {
        height: 100px;
        width: 100px;
    }

    .equipmentOnOff table {
        margin-top: -2px;
        text-align: center;
    }

.equipmentOn {
    color: #23d827;
    padding-bottom: 30px;
    box-sizing: border-box;
    font-size: 40px;
    font-weight: 600;
}

.equipmentOff {
    color: #ff4444;
    padding-bottom: 30px;
    box-sizing: border-box;
    font-size: 40px;
    font-weight: 600;
}

.equipmentGraph {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 0px;
    width: calc(100% - 20px);
    text-align: center;
}

    .equipmentGraph img {
        width: 100%;
        position: relative;
        left: 50%;
        transform: translate(-50%);
    }


.graphsArea {
    background: transparent;
    width: calc(100% - 16px);
    margin: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    padding-bottom: 16px;
}


#equipmentDataContainer {
    width: calc(100% - 16px);
    margin: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-radius: 8px;
    background-color: transparent;
}

.equipmentDataContainer {
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.equipmentData {
    display: inline-block;
    margin: 20px;
    font-size: 20px;
    vertical-align: top;
}

    .equipmentData table {
        border-collapse: collapse;
        text-align: left;
    }
    
    .equipmentData table tr td:nth-child(1) {
        font-weight: 500;
        width: 320px;
    }
    
    .equipmentData table tr td:nth-child(2) {
        font-weight: 500;
        width: 110px;
    }
    
    .equipmentData table tr td {
        border: 1px solid #efefef;
    }

.equipmentDataType {
    margin-bottom: 75px;
}

.equipmentDataTypeHeader {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
}

    .equipmentDataTypeHeader img {
        float: right;
        height: 25px;
        margin-top: 5px;
        transform: rotate(180deg);
    }

.equipmentDataTypeCollapsed {
    transform: rotate(0deg) !important;
}

.equipmentDataTypeContainer {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.equipmentVideo {
    margin-bottom: 50px;
    max-width: 100%;
    overflow: hidden;
}
    
    .equipmentVideo iframe {
        position: relative;
        left: 50%;
        top:0%;
        transform: translate(-50%,0%);
    }


.equipmentAiSummaryContainer {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    min-width: 128px;
    max-width: calc(100% - 40px);
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
    background: linear-gradient(315deg, var(--main-color), #2A87BD);
    color: white;
    border-radius: 8px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    user-select: none;
    margin-bottom: 16px;
    margin-top: 16px;
}

.equipmentAiSummary {
    padding: 10px;
    font-weight: normal;
    font-size: 16px;
    user-select: text;
}

.AiSummaryWarning {
    height: 14px;
    width: 100%;
    font-size: 12px;
    text-align: center;
    font-style: italic;
}



.flexToolbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    row-gap: 4px;
    column-gap: 32px;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin: 16px;
    height: fit-content;
}

.flexToolboxSection {
    display: flex;
    height: 48px;
    gap: 6px;
    max-width: calc(100% - 16px);
}

.toolbarButton {
    transition: all .05s ease-in;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transform: translate(-4px, -4px);
    text-align: center;
    margin-top: 4px;
    padding-left: 8px;
    padding-right: 8px;
    width: max-content;
    min-width: 32px;
    flex-shrink: 1;
}

    .toolbarButton:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(100, 100, 100, 1);
    }

    .toolbarButton:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }

.toolbarButton2 {
    display: flex;
    justify-content: center;
    transition: all .05s ease-in;
    color: white;
    background-color: var(--main-color);
    text-align: center;
    font-size: 20px;
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transform: translate(-4px, -4px);
    text-align: center;
    margin-top: 4px;
    padding: 10px;
    width: max-content;
    min-width: 16px;
    flex-shrink: 1;
}

    .toolbarButton2:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(100, 100, 100, 1);
    }

    .toolbarButton2:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }

    .toolbarButton2 > img {
        width: 24px;
        height: 24px;
    }

.toolbarInput {
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1) inset;
    transition: all .05s;
    appearance: none;
    width: calc(100% - 12px);
    border: 2px solid rgb(0,0,0,.05);
    border-radius: 4px;
    color: rgb(25, 25, 25);
    font-weight: 500;
    background-color: white;
    font-size: 18px;
    padding: 8px;
    width: max-content;
    min-width: 32px;
    flex-shrink: 1;
}

    .toolbarInput:hover {
        color: rgb(0, 0, 0);
    }

    .toolbarInput:focus-visible {
        outline: 0px;
        color: rgb(0, 0, 0);
        border-color: var(--main-color);
    }

    .toolbarInput::placeholder {
        color: rgb(180, 180, 180);
    }

.questionBubble {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--main-color);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    margin-top: 12px;
    flex-shrink: 0;
}







#equipmentDataContainerCompact {
    margin: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    align-items: stretch;
}

.liveDataGroup {
    display: grid;
    flex-grow: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 40px 1fr;
    border: 2px solid black;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    grid-column: auto auto;
    grid-row: auto auto;
    max-width: min(420px, calc(100% - 32px));
    overflow-x: hidden;
}

.liveDataGroupHeader {
    font-weight: bold;
    font-size: 22px;
    max-width: 100%;
}

.liveDataGroupPoints {
    color: black;
    display: grid;
    grid-template-columns: minmax(0px, 1fr) min-content;
    grid-template-rows: auto;
    height: fit-content;
    row-gap: 4px;
    max-width: 100%;
    overflow-x: hidden;
}

.liveDataSpacer {
    margin-left: 4px;
    margin-right: 4px;
    height: 1px;
    width: 100%;
    min-width: 0px;
    flex-shrink: 100;
    background-color: rgb(200, 200, 200);
}



.liveDataPoint {
    display: flex;
    padding: 2px;
    padding-left: 4px;
    padding-right: 4px;
    align-items: center;
}

.liveDataPointName {
    text-wrap: nowrap;
    overflow-x: hidden;
    padding-right: 16px;
}

.liveDataPointValue {
    height: min-content;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 96px;
    text-align: left;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 16px;
}

.liveDataAlarmActive {
    background-color: var(--warning-color);
    color: white;
}

.liveDataJsonDefault {
    background-color: rgba(0,0,0,.05);
}



#liveDataViewToggle {
    margin-left: 16px;
    font-size: 22px;
    white-space: nowrap;
    display: flex;
    gap: 4px;
    align-items: center;
    opacity: .7;
    user-select: none;
    cursor: pointer;
    width: fit-content;
    padding: 8px;
    margin-top: 32px;
}

#liveDataViewToggle:hover {
    opacity: 1;
}

#liveDataViewToggle img {
    width: 36px;
}




.genericButton {
    transition: all .05s ease-in;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transform: translate(-4px, -4px);
    text-align: center;
    margin-top: 4px;
    padding-left: 8px;
    padding-right: 8px;
    width: max-content;
    min-width: 32px;
    flex-shrink: 1;
    height: 36px;
}

    .genericButton:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(100, 100, 100, 1);
    }

    .genericButton:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }




.chartHeightGrabber {
    justify-content: center;
    align-items: center;
    margin-left: 48px;
    margin-right: 48px;
    margin-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 32px;
    display: flex;
    width: calc(100% - 128px);
    height: 16px;
    cursor: ns-resize;
    user-select: none;
    opacity: .35;
}

    .chartHeightGrabber:hover {
        opacity: 1;
    }

.chartHeightGrabberHandle {
    width: 16px;
    margin-left: 8px;
    margin-right: 8px;
}

.chartHeightGrabberSpacer {
    flex-grow: 5;
    background-color: black;
    height: 1px;
}







.ddlDataSetting {
    width: 150px;
    text-align: center;
    text-align-last: center;
    border-radius: 3px;
}

    .ddlDataSetting option {
        text-align: center;
    }

.equipmentDate {
    width: 190px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}

    .equipmentDate:active {
        outline: none;
        border: 1px solid rgba(0,0,0,0.3);
        box-shadow: none;
    }

    .equipmentDate:focus {
        outline: none;
        border: 1px solid rgba(0,0,0,0.3);
        box-shadow: none;
    }

.advancedCsvDate {
    height: 30px;
    width: 128px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid black;
    margin-bottom: 25px;
    margin-top: 7px;
}

    .advancedCsvDate:active {
        outline: none;
        border: 1px solid rgba(0,0,0,0.3);
        box-shadow: none;
    }

    .advancedCsvDate:focus {
        outline: none;
        border: 1px solid rgba(0,0,0,0.3);
        box-shadow: none;
    }

.equipmentPointButton {
    width: 150px;
    height: 100%;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 3px;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    position: relative;
    right: 0px;
    top: 2.5px;
}

.equipmentSmallButtonHolder {
    display:inline-flex;
}

.equipmentAddGraphButton {
    display: inline-block;
    width: 40px;
    height: 100%;
    font-size: 20px;
    border-radius: 3px;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    position: relative;
    right: 0px;
    top: 2.5px;
}

    .equipmentAddGraphButton img {
        position: relative;
        top: 50%;
        left: 0%;
        transform: translate(0%, -50%);
        max-height: 30px;
        max-width: 90%;
    }

.equipmentAdditionalPointButton {
    width: 10%;
    min-width: 125px;
    height: 35.5px;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 3px;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    margin-left: 17px;
    position: relative;
    right: 0px;
    top: 0px;
    display: inline-block;
}

.equipmentRemoveGraphButton {
    width: 10%;
    min-width: 100px;
    height: 35.5px;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 3px;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    margin-left: 17px;
    position: relative;
    right: 0px;
    top: 0px;
    display: inline-block;
}

.equipmentLegend {
    padding: 24px;
    padding-bottom: 4px;
    min-height: 16px;
    font-weight: bold !important;
    text-align: center;
}

.equipmentAdditionalLegend {
    min-height: 16px;
    width: 70%;
    text-align: center;
    display: inline-block;
    padding: 0 25px 0 25px;
    font-weight: bold !important;
}

.equipmentChart {
    margin-top: 4px;
    width: calc(100% - 52px);
    height: 250px;
    margin-bottom: 20px;
    margin-right: auto;
}

.equipmentAdditionalGraphs {
    width: 100%;
    text-align: center;
}

.dygraph-legend {
    transform: translate(0, -100%);
    z-index: 10000000;
}

.equipmentVideoContainer {
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
    margin-left: 00px;
    height: 440px;
    text-align: center;
}

    .equipmentVideoContainer img {
        height: 100%;
        /*width: 746px;*/
        border: 2px solid var(--main-color);
        border-radius: 2px;
        box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    }

.equipmentConnectionPercent {
    display: inline;
    float: right;
    margin-right: 6px;
}

.equipmentHealthBar {
    display: inline-block;
    align-content: center;
    justify-content: flex-start;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    height: 18px;
    line-height: 18px;
    width: 100px;
    border-radius: 5px;
    font-size: 15px;
}

    .equipmentHealthBar div {
        height: 100%;
        border-radius: 3px;
        text-align: center;
    }

.equipmentSerial {
    margin-left: 15px;
}

.topContainer {
    position: relative;
    z-index: 11;
}

.selectorContainer {
    box-sizing: border-box;
    padding-top: 20px;
    padding-left: 20px;
    border-collapse: collapse;
    z-index: 11;
}

.selector {
    display: inline-block;
    width: 700px;
    max-width: 98%;
    height: 90%;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}

    .selector table {
        width: 90%;
        margin: 5px auto;
    }

    .selector table td {
        height: 40px;
    }

    .selector table td:nth-child(2) {
        width: 100px;
        text-align: right;
    }


.pointSelectorDataType {
    margin-bottom: 16px;
    width: 100%;
}

.pointSelectorDataTypeHeader {
    max-width: 100%;
    font-size: 28px;
    cursor: pointer;
    border-radius: 4px;
}

    .pointSelectorDataTypeHeader:hover {
        background: rgba(0,0,0,.025);
    }

    .pointSelectorDataTypeHeader img {
        float: right;
        height: 25px;
        margin-top: 5px;
        transform: rotate(180deg);
    }

.pointSelectorDataTypeContainer {
    width: 100%;
}

    .pointSelectorDataTypeContainer > table, td {
        width: 100%;
    }

    .pointSelectorDataTypeContainer tr {
        height: 32px;
    }

.pointSelectorDataTypeCollapsed {
    transform: rotate(0deg) !important;
}

.selectorHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    width: calc(100% + 2px);
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    margin-left: -1px;
}

.selectorHeader img {
    float: right;
    margin-right: 6px;
    margin-top: 4px;
    height: 20px;
    cursor: pointer;
}

.selectorModal {
    background: url("Images/linedBGTest3.png") 0 0 repeat;
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 10;
    backdrop-filter: contrast(35%) brightness(75%);
    -webkit-backdrop-filter: contrast(35%) brightness(75%); /* for older iOS versions */
    filter: opacity(1);
    transform: rotate(-30deg) scale(1.5);
}

.selectorSaveButton {
    display: inline-block;
    width: 100%;
    height: 35px;
    line-height: 30px;
    text-align: center;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    position: relative;
    left: 50%;
    bottom: -4.2%;
    transform: translate(-50%, -100%);
    z-index: 11;
    cursor: pointer;
}

.selectorLogButton {
    display: inline-block;
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    position: relative;
    left: 50%;
    bottom: -75px;
    transform: translate(-50%, -100%);
    z-index: 11;
    cursor: pointer;
}

.selectorMoveItem {
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    font-size: 20px;
    padding: 4px;
    min-width: 300px;
}

.changer {
    display: inline-block;
    max-width: 90%;
    width: 450px;
    padding-bottom: 25px;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    text-align: center;
}

    .changer [type=button] {
        width: 150px;
        height: 35.5px;
        font-size: 20px;
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 3px;
        outline: none;
        background-color: var(--main-color);
        color: white;
        cursor: pointer;
        position: relative;
        top: 10px;
    }

    .changer [type=number]{
        text-align: center;
        height: 30px;
        width: 150px;
        font-size: 20px;
        margin: 10px;
    }

.changerHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    width: calc(100% + 2px);
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    margin-left: -1px;
    margin-top: -1px;
    margin-bottom: 10px;
    text-align: left;
}

    .changerHeader img {
        float: right;
        margin-right: 6px;
        margin-top: 4px;
        height: 20px;
        cursor: pointer;
    }

.changerModal {
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10
}

.alertChanger {
    display: inline-block;
    max-width: 90%;
    width: 450px;
    height: 240px;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    text-align: center;
}

    .alertChanger [type=button] {
        width: 150px;
        height: 35.5px;
        font-size: 20px;
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 3px;
        outline: none;
        background-color: var(--main-color);
        color: white;
        cursor: pointer;
        position: relative;
        top: 10px;
    }

    .alertChanger [type=number] {
        text-align: left;
        font-size: 20px;
    }

    .alertChanger select {
        height: 30px;
        font-size: 15px;
        text-align: center;
    }

.alertEditorContent {
    display: grid;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
    grid-template-rows: 30px 30px 30px;
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 15px;
    grid-column-gap: 10px;
}

    .alertEditorContent input[type=button] {
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .alertEditorContent input[type=nubmer] {
        text-align: center !important;
        height: 15px !important;
        width: 99% !important;
        font-size: 20px !important;
        margin: 0 !important;
    }

.alertDeleteMessage {
    margin: 50px 0 50px 0;
    font-size: 20px;
}

.legendEntry {
    display: inline-block;
    margin: 10px;
    line-height: 50px;
    text-align: center;
}

.legendColor {
    margin-left: auto;
    margin-right: auto;
    width: 75px;
    height: 5px;
}

.mobileGraph {
    display: none;
}

.companyModal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 110;
    /*background-color: rgba(0,0,0,0.2);*/
}








.companySelectorContainer {
    height: 100%;
    max-height: inherit;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    grid-auto-rows: min-content;
}


.companySelectorWindow {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 196px 360px;
    height: min(720px, 100%);
    max-height: calc(100% - 128px);
    overflow: hidden;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    z-index: 11;
    border: 4px solid white;
    border-radius: 8px;
    background-color: white;
    padding: 16px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, .5);
}


.companyGroupListHolder {
    display: grid;
    grid-template-rows: 1fr 48px;
    grid-gap: 8px;
    height: 100%;
    overflow: hidden;
    padding: 4px;
}

.companyGroupList {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 4px;
    padding-right: 4px;
}

.companyGroupListItem {
    transition: all .05s ease-in;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 8px;
    height: 32px;
    min-height: 32px;
    width: calc(100% - 8px);
    user-select: none;
    cursor: pointer;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 20px;
    border: 2px solid;
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(220, 220, 220, 1);
    transform: translate(-4px, -4px);
}

    .companyGroupListItem:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(150, 150, 150, 1);
    }

    .companyGroupListItem[data-selected="true"] {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(150, 150, 150, 1);
        border-left: 8px solid;
        width: calc(100% - 14px);
    }

.companyGroupLabel {
    flex-grow: 4;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.companyGroupDelete {
    flex-shrink: 4;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-left: 8px;
    padding-right: 8px;
}

    .companyGroupDelete:hover {
        background-color: rgba(0, 0, 0, .1);
    }



.deleted {
    opacity: .4;
}


.companyGroupListAdd {
    transition: all .05s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8px;
    height: 48px;
    width: calc(100% - 8px);
    user-select: none;
    cursor: pointer;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(220, 220, 220, 1);
    transform: translate(-4px, -4px);
}

    .companyGroupListAdd:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(150, 150, 150, 1);
    }

    .companyGroupListAdd:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(150, 150, 150, 1);
    }


.companySelector {
    display: grid;
    grid-template-rows: 36px calc(100% - 44px);
    grid-gap: 8px;
    max-width: 480px;
    width: 360px;
    overflow-y: auto;
}

.companySelectorHeader {
    background-color: var(--main-color);
    color: white;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
}


.companySelectorSearchInput {
    margin: 8px;
    width: calc(100% - 26px);
    height: calc(100% - 20px);
    font-size: 20px;
    padding-left: 6px;
}


.companySelectorCompany {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all .05s;
    max-height: 256px;
    width: calc(100% - 22px);
    border-bottom: 2px solid rgba(0,0,0,.1);
    user-select: none;
    cursor: pointer;
    padding: 8px;
}

    .companySelectorCompany:hover {
        background: rgba(0,0,0,.025);
    }

    .companySelectorCompany[data-selected="true"] .companyLabel {
        text-decoration-line: underline;
        text-decoration-thickness: 1px;
    }

.companyLabel {
    overflow: hidden;
    font-size: 20px;
}

.addToGroupButton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 24px;
}

    .addToGroupButton:hover {
        background-color: rgba(0, 0, 0, .1);
    }

.removeFromGroupButton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 24px;
    font-size: 24px;
}

    .removeFromGroupButton:hover {
        background-color: rgba(0, 0, 0, .1);
    }











.userContainer {
    box-sizing: border-box;
    border-collapse: collapse;
}

.user {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 335px;
    width: 31%;
    height: 122px;
    /*width: 98%;*/
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    cursor: pointer;
    vertical-align: top;
    text-align: center;
    padding: 0;
}

    .userTable {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
        height: 40px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }

        .userTable td {
            background-color: rgb(245, 245, 245);
            width: 33.3333%;
            border-bottom: 1px solid rgb(224,224,224);
            border-right: 1px solid rgb(224,224,224);
        }

.userHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    text-align: left;
    margin-bottom: 15px;
}

    .userHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }

.graphSelectorWindow {
    display: inline-block;
    min-width: 500px;
    width: calc(30% - 25px);
    min-height: 300px;
    height: auto;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    text-align: center;
    padding-bottom: 10px;
}

.graphSelectorGraphContainer {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(150px, 1fr) );
}

.graphSelectorGraph {
    text-align: center;
    border: 1px solid rgba(138, 138, 138, 0.70);
    border-radius: 3px;
    width: 125px;
    min-height: 150px;
    display: inline-block;
    cursor: pointer;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.2);
}

    .graphSelectorGraph img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        margin-top: 30px;
    }

.htmlWindow {
    animation: openWindow .15s ease-out forwards;
    transform: translate(-50%, -50%);
    min-width: 300px;
    width: calc(100% - 128px);
    max-width: 500px;
    min-height: 300px;
    height: calc(100% - 256px);
    max-height: 576px;
    border: 4px solid var(--main-color);
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px rgba(100, 100, 100, 1);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 11;
    padding-bottom: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 16px;
}

    .htmlWindow > ul {
        padding: 16px;
        padding-left: 32px;
    }

    .htmlWindow > h1 {
        font-weight: bolder;
        color: var(--main-color);
    }

    .htmlWindow > h2 {
        padding-top: 8px;
    }

    .htmlWindow > p {
        padding-top: 8px;
    }


.htmlContent {
    padding-bottom: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 16px;
}

    .htmlContent > ul {
        padding: 16px;
        padding-left: 32px;
    }

    .htmlContent > h1 {
        font-weight: bolder;
        color: var(--main-color);
    }

    .htmlContent > h2 {
        padding-top: 8px;
    }

    .htmlContent > p {
        padding-top: 8px;
    }

    .htmlContent ul ul {
        padding-left: 24px;
    }

    .htmlContent img {
        max-width: 100%;
    }

    .htmlContent li {
        margin-bottom: 8px;
    }




@keyframes openWindow {
    0% {
        transform: translate(calc(-50% + 6px), calc(-50% + 6px));
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }

    100% {
        transform: translate(-50%, -50%);
        box-shadow: 6px 6px 0px 0px rgba(100, 100, 100, 1);
    }
}



@keyframes openWindowSlideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 10vh);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0px);
    }
}

.bottomWindow {
    transform-origin: center bottom;
    transform: translate(-50%, 0px);
    top: auto !important;
    bottom: 64px;
    box-shadow: 6px 6px 0px 0px rgba(100, 100, 100, 1);
    animation: openWindowSlideUp .1s ease-out forwards !important;
}




.popupFormContainer {
    z-index: 11;
}

.popupFormWindow {
    display: grid;
    grid-template-rows: max-content 1fr max-content;
    animation: openWindow .15s ease-out forwards;
    transform: translate(-50%, -50%);
    min-width: 128px;
    width: max-content;
    max-width: min(512px, calc(100% - 64px));
    min-height: 128px;
    max-height: 75%;
    border: 3px solid var(--main-color);
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px rgba(100, 100, 100, 1);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 11;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 16px;
}

.popupFormHeader {
    color: var(--main-color);
    font-size: 36px;
    font-weight: 900;
    height: max-content;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.popupFormContent {
    display: flex;
    gap: 4px;
    flex-direction: column;
/*    height: fit-content;*/
    max-height: calc(100% - 16px);
    margin-bottom: 16px;
    overflow-y: auto;
}

.popupFormButtonHolder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 8px;
    height: max-content;
    width: 100%;
}

.popupFormButton {
    display: flex;
    justify-content: center;
    flex-shrink: 5;
    align-items: center;
    line-height: 20px;
    transition: all .05s ease-in;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    flex-grow: 2;
    font-weight: 500;
    cursor: pointer;
    height: 48px;
    user-select: none;
    transform: translate(-4px, -4px);
    padding-left: 16px;
    padding-right: 16px;
}

    .popupFormButton:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(100, 100, 100, 1);
    }

    .popupFormButton:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }

    .popupFormButton:disabled {
        opacity: .5;
    }

    .buttonWarning {
        border: 2px solid black;
        color: black;
        background-color: var(--warning-color);
    }

.popupFormInput {
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1) inset;
    transition: all .05s;
    appearance: none;
    height: 28px;
    border: 2px solid rgb(0,0,0,.05);
    border-radius: 4px;
    color: rgb(25, 25, 25);
    font-weight: 500;
    background-color: white;
    font-size: 18px;
    padding-left: 8px;
}

    .popupFormInput:hover {
        color: rgb(0, 0, 0);
    }

    .popupFormInput:focus-visible {
        outline: 0px;
        color: rgb(0, 0, 0);
        border-color: var(--main-color);
    }

    .popupFormInput::placeholder {
        color: rgb(180, 180, 180);
    }


.popupFormInputTextarea {
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1) inset;
    transition: all .05s;
    appearance: none;
    height: 28px;
    border: 2px solid rgb(0,0,0,.05);
    border-radius: 4px;
    color: rgb(25, 25, 25);
    font-weight: 500;
    background-color: white;
    font-size: 18px;
    padding: 8px;
}

    .popupFormInputTextarea:hover {
        color: rgb(0, 0, 0);
    }

    .popupFormInputTextarea:focus-visible {
        outline: 0px;
        color: rgb(0, 0, 0);
        border-color: var(--main-color);
    }

    .popupFormInputTextarea::placeholder {
        color: rgb(180, 180, 180);
    }


.popupFormToggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 28px;
}

.popupFormSubheader {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: max-content;
    margin-top: 8px;
    user-select: none;
}

.subheaderSpacer {
    margin-left: 4px;
    margin-right: 4px;
    height: 1px;
    width: 100%;
    background-color: rgb(200, 200, 200);
}

.subheaderText {
    color: rgb(100, 100, 100);
    font-size: 20px;
    text-wrap: nowrap;
}



.popupFormItem {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 20px;
    transition: all .05s ease-in;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(200, 200, 200, 1);
    flex-grow: 2;
    font-weight: 500;
    cursor: pointer;
    height: 100%;
    user-select: none;
    transform: translate(-4px, -4px);
    padding: 8px;
    margin-left: 4px;
    margin-top: 4px;
}

    .popupFormItem img {
        width: 32px;
        height: 32px;
    }

    .popupFormItem:hover {
        transform: translate(-2px, -2px);
        box-shadow: 2px 2px 0px 0px rgba(100, 100, 100, 1);
    }

    .popupFormItem:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }





.pointsSelectorPoint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 36px);
    height: 32px;
    margin-left: 24px;
    margin-right: 8px;
}

    .pointsSelectorPoint img {
        cursor: pointer;
        max-width: 20px;
        margin-left: 8px;
    }

.pointsSelectorPointLabel {
    text-wrap: nowrap;
    white-space: nowrap; /* for older iOS versions */
}




.addUserWindow {
    display: inline-block;
    min-width: 500px;
    width: calc(20% - 25px);
    min-height: 200px;
    height: auto;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    text-align: center;
    padding-bottom: 10px;
}

.addUserPermissions {
    font-size: 20px;
    width: 50%;
    margin: 25px auto 0px auto;
    /*margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 0px;*/
}

    .addUserPermissions div {
        font-size: 16px;
        text-align: left;
        width: 100%;
        
        border: 1px solid white;
    }

        .addUserPermissions div label {
            float: right;
        }

.newUnitContainer {
    box-sizing: border-box;
    padding-top: 20px;
    padding-left: 20px;
    border-collapse: collapse;
}

.newUnit {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 122px;
    min-width: 250px;
    width: 31%;
    /*width: 98%;*/
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    cursor: pointer;
    vertical-align: top;
    text-align: center;
}

.newUnitHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
}

.newUnitTable {
    width: 100%;
}

.downloadsContainer {
    box-sizing: border-box;
    padding-top: 20px;
    padding-left: 20px;
    border-collapse: collapse;
}

.download {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 335px;
    width: 31%;
    height: auto;
    border: 3px solid var(--main-color);
    border-radius: 2px;
    box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
    cursor: pointer;
    vertical-align: top;
    text-align: center;
    padding-bottom: 10px;
}

    .download img {
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

.downloadHeader {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    box-sizing: border-box;
    padding-left: 4px;
    text-align: left;
    margin-bottom: 30px;
}

    .downloadHeader img {
        float: right;
        height: 20px;
        margin-top: 3px;
        margin-right: 5px;
        cursor: pointer;
    }

b {
    font-weight: 900;
}

.setPointRow {
    border-bottom: 1px solid #d1d1d1;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
}

    .setPointRow img {
        float: right;
        margin-right: 10px;
        margin-top: 12px;
        height: 16px;
        width: 16px;
        width: 16px;
        padding-left: 8px;
        cursor: pointer;
    }

    .setPointRow center {
        margin-left: auto;
        margin-right: auto;
    }

.alertRow {
    border-bottom: 1px solid #d1d1d1;
    height: 54px;
    line-height: 50px;
    font-size: 20px;
    user-select: none;
    cursor: pointer;
}

    .alertRow img {
        float: right;
        margin-left: 8px;
        margin-top: 15px;
        cursor: pointer;
        max-width: 20px;
    }

.buttonHolder {
    display: grid;
    grid-auto-flow: column;
    width:90%;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
}

.userSettingsButton {
    margin-top: 35px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    font-size: 20px;
    border: white;
    border-radius: 20px;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

.inactiveText {
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    font-size: 12px;
    background-color: var(--warning-color);
    color: white;
    border-radius: 5px;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 8px;
}

.hideWhenStartupCompleted {

}

.textHolder {
    display: block;
    width: 90%;
    margin: auto;
    height: auto;
    text-align: center;
}

.addNote {
    text-align: left;
    font-size: 14px;
    padding: 8px;
    margin-top: 5px;
    resize: none;
    border: solid 1px gray;
    border-radius: 2px;
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1) inset;
    transition: all .05s;
    appearance: none;
    border: 2px solid rgb(0,0,0,.05);
    border-radius: 4px;
    color: rgb(25, 25, 25);
    background-color: white;
}

    .addNote:hover {
        color: rgb(0, 0, 0);
    }

    .addNote:focus-visible {
        outline: 0px;
        color: rgb(0, 0, 0);
        border-color: var(--main-color);
    }

    .addNote::placeholder {
        color: rgb(180, 180, 180);
    }

.discussionArea {
    height: 100%;
    max-height: 454px;
    width: 100%;
    overflow: auto !important;
    padding-top: 8px;
}

.messageIdentifier {
    font-size: 14px;
    font-weight: 500;
    color: black;
    text-align: left;
    width: fit-content;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 4px;
    float: left;
    clear: left;
}

.myMessageIdentifier {
    float: right;
    clear: right;
}

.messageFooter {
    font-size: 10px;
    font-weight: 100;
    color: darkgray;
    text-align: left;
    width: fit-content;
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 8px;
    margin-top: 4px;
    float: left;
    clear: left;
    width: calc(100% - 64px);
    text-align: left;
}

.myMessageFooter {
    float: right;
    clear: right;
    width: calc(100% - 64px);
    text-align: right;
}

.message {
    font-size: 18px;
    color: black;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
    background-color: rgba(235, 235, 235, 1);
    margin-left: 16px;
    margin-right: 16px;
    min-width: 8px;
    width: fit-content;
    max-width: calc(100% - 128px);
    min-height: 16px;
    height: fit-content;
    float: left;
    clear: left;
}

.myMessage {
    background: linear-gradient(315deg, var(--main-color), #2A87BD);
    color: white;
    float: right;
    clear: right;
}

.messageDashboard {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 48px;
    height: 50px;
}

.messageTextArea {
    flex-grow: 5;
    resize: none;
    box-sizing: border-box;
    font-size: 18px;
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
}

.sendMessageButton {
    transition: all .1s;
    appearance: none;
    border-color: transparent;
    background-color: white;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    height: calc(64px - 16px);
    cursor: pointer;
}

    .sendMessageButton:hover {
        background-color: rgba(205, 205, 205, 1);
    }

    .sendMessageButton:active {
        transition: all .01s;
        background-color: rgba(255, 255, 255, 1);
    }

.sendMessageButtonImage {
    height: calc(100% - 12px);
    margin: 6px;
    margin-left: 2px;
    opacity: 70%;
}

.splashLogo2 {
    display: block;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    align-items: center;
    max-height: 90%;
    max-width: 90%;
}


@media (max-width: 1025px) {
    .mainLogo {
        display: none;
    }

    .mainLogoMobile {
        display: initial;
    }

    .logonContainer {
        top: 40%;
    }

    .menuEmail {
        display: none;
    }

    .createAccountContainer {
        position: fixed;
        top: 20% !important;
        max-width: 90%;
    }

    .createAccountMessage {
        font-size: 15px;
    }

    .createAccountButton {
        top: 10px;
    }


    .topbar {
        grid-template-columns: 60px max-content 1fr 48px 48px 48px 48px;
    }

    .dashboardItem {
        display: none;

    }

    .dashboardItemFull {
        display: none;

    }

    .dashboardItemMobile {
        display: inline-block;
        min-width: initial;
    }

    .region {
        margin-left: -10px;
        min-width: initial;
        width: calc(100% - 10px);
    }

    .site {
        margin-left: -10px;
        min-width: initial;
        width: calc(100% - 10px);
    }

    .room {
        margin-left: -10px;
        min-width: initial;
        width: calc(100% - 10px);
    }



    .unit {
        width: calc(100% - 8px);
        min-height: 100px;
    }




    .unitStat {
        font-size: 22px;
        height: 50px;
        line-height: 50px;
    }

    .unitStatus {
        height: 70px;
        width: calc(50% - 10px);
    }

    .unitOnOff {
        height: 50px;
        font-size: 15px;
        margin-top: 7px;
        margin-left: 5px;
        margin-right: 5px;
        width: calc(50% - 10px);
    }

        .unitOnOff table {
            width: 100%;
        }

        .unitOnOff table td:nth-child(2) {
            font-weight: 900;
        }

    .unitOn {
        padding-top: 6px;
        font-size: 25px;
    }

    .unitOff {
        padding-top: 6px;
        font-size: 25px;
    }

    .unitStatHeader {
        font-size: 15px;
        font-weight: 900;
    }

    .selector {
        width: 90%;
        height: 95%;
    }

    #equipmentDataContainer {
        max-width: 512px;
        margin-left: auto;
        margin-right: auto;
    }

    .equipment {
        min-width: initial;
        width: 100%;
        height: initial;
    }

    .equipmentDataType {
        margin-bottom: 32px;
    }

    .equipmentOnOff {
        width: 100%;
        margin-bottom: 20px;
    }

        .equipmentOnOff table td:nth-child(2) {
            font-weight: 900;
            padding-top: 5px;
        }

    .equipmentOn {
        width: 100%;
        padding-top: 8px;
    }

    .equipmentStatus {
        width: calc(100% - 5px);
    }

    .equipmentGraph {
        width: 100%;
    }

    .equipmentGraph img {
        width: 100%;
        height: 150px;
    }

    .equipmentChart {
        width: 100%;
    }

    .chartHeightGrabber {
        display: none;
    }

    .equipmentData {
        margin-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        width: 100%;
    }
        
        .equipmentData table {
            width: 100%;
        }

        .equipmentData table tr td:nth-child(2n - 1) {
            width: 180px;
            font-size: 16px;
        }

            .equipmentData table tr td:nth-child(2n) {
                text-align: right;
            }

    .equipmentStatus {
        height: 70px;
    }

    .equipmentStat {
        padding: 0px;
    }

    .equipmentStatHeader {
        font-weight: 900;
    }

    .equipmentAdditionalPointButton {
        width: 10%;
        min-width: 125px;
        height: 35.5px;
        font-size: 20px;
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 3px;
        outline: none;
        background-color: var(--main-color);
        color: white;
        cursor: pointer;
        margin-left: 0px;
        position: relative;
        right: 0px;
        top: 0px;
        display: inline-block;
    }

    .equipmentRemoveGraphButton {
        margin-left: 0px;
    }

    .equipmentSerial {
        margin-top: -5px;
        margin-bottom: 10px;
        margin-left: 0px;
        width: 100%;
        text-align: center;
    }

    .equipmentLegend div {
        width: auto !important;
        margin-bottom: 0 !important;
    }

    .equipmentLegend span{
        display: block;
    }

    .equipmentAdditionalLegend span {
        display: block;
    }

    #mobileEquipmentUptime {
        display: inline-flex !important;
        justify-content: left;
        padding-left: 16px;
        float: none !important;
        width: 100%;
    }


    .gridItem {
        width: calc(100% - 8px);
    }




    .desktopGraph {
        display: none;
    }

    .mobileGraph {
        display: inline-block;
    }

    .expanded {
        width: 100%;
    }

    .ccExpanded {
        opacity: 0;
        display: none;
    }

    .companySelectorWindow {
        top: 6px;
        left: 50%;
        transform: translate(-50%, 0);
        transform-origin: 50% 50%;
        width: max-content;
        max-width: calc(100vw - 32px);
        height: calc(100% - 56px);
        max-height: calc(100% - 52px);
        grid-template-columns: 1fr;
    }

    .companySelector {
        max-width: calc(100vw - 64px);
        height: 100%;
    }

    .companyGroupListHolder {
        display: none;
    }

    .legendEntry {
        width: 100%;
        line-height: 25px;
        margin: 0;
        margin-bottom: 10px;
    }

    .addRegionWindow {
        min-width: 0px;
        width: 90%;
        min-height: 300px;
        height: 20%;
        border: 3px solid var(--main-color);
        border-radius: 2px;
        box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
        background-color: white;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        text-align: center;
    }

    .graphSelectorWindow {
        min-width: 0px;
        width: 90%;
        min-height: 300px;
        max-height: 90%;
        overflow: scroll;
        overflow-x: hidden;
        border: 3px solid var(--main-color);
        border-radius: 2px;
        box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
        background-color: white;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        text-align: center;
    }

    .graphSelectorGraphContainer {
        
        max-height: 90%;
    }

    .addUserWindow {
        min-width: 0px;
        width: 90%;
        min-height: 300px;
        border: 3px solid var(--main-color);
        border-radius: 2px;
        box-shadow: 3px 4px 3px 1px rgba(0, 0, 0, 0.2);
        background-color: white;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        text-align: center;
    }

    .addUserPermissions {
        margin-bottom: 20px;
    }

    .addText {
        width: 90%;
        margin-bottom: 25px;
    }

    .addButton {
        margin-top: 10px;
        width: 180px;
        height: 40px;
        line-height: 30px;
        font-size: 20px;
        border: white;
        border-radius: 20px;
        outline: none;
        background-color: var(--main-color);
        color: white;
        cursor: pointer;
    }

    .user {
        margin-left: -10px;
        min-width: initial;
        width: calc(100% - 10px);
    }

    .download {
        margin-left: -10px;
        min-width: initial;
        width: calc(100% - 10px);
    }

    .equipmentSmallButtonHolder div {
        margin-left: 15px;
        margin-right: 15px;
        width: 40px;
    }

    .granularityInfoWindow {
        max-width: 90%;
    }

    .equipmentTopHierarchy {
        display: inline-block;
    }

    .equipmentConnectionPercent {
        display: none;
    }

    .buttonHolder {
        height: 60px;
        margin-top: 30px;
        grid-gap: 15px;
    }

    .userSettingsButton {
        margin-top: 0px;
        width: 100%;
    }

    .popupFormHeader {
        font-size: 28px;
    }

    #kioskDashboardTab {
        display: none;
    }

    .bottomTabRow {
        display: none;
    }

    .sideDataText {
        width: calc(100% - 34px);
        padding: 8px;
        border-radius: 8px;
        text-align: center;
    }


    .contentContainer {
        padding: 4px;
        height: calc(100% - 64px);
    }

    .ccCollapsed {
        width: calc(100% - 8px);
    }


    .AiSummaryWarning {
        font-size: 10px;
    }

    .classicDashboard {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-template-areas:
            "all";
    }

    .classicDashboardWithAI {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas:
            "all"
            "all"
            "ai";
        grid-gap: 8px;
    }

    #aiDashboardItem {
        display: inline-block;
    }

    #titleNavigation {
        display: none;
    }

    #titleEquipmentUptime {
        display: none;
    }


    .sidebar {
        width: 100%;
    }

    .sidebarCollapsed {
        left: -100%;
    }



    .equipmentHealthBar {
        background-color: rgb(225, 225, 225);
        border: 2px solid rgb(225, 225, 225);
    }

}



#aiDashboardItem {
    background: linear-gradient(315deg, var(--main-color), #2A87BD);
    border: none;
    padding: 4px;
}




.tab {
    transition: .2s;
    position: absolute;
    height: 10px;
    background-color: var(--main-color);
    color: white;
    padding: 4px;
    font-size: 14px;
    font-weight: 500;
    border: 1px white solid;
    border-bottom: 0px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    line-height: 10px;
}






.bottomTabRow {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 10px;
    z-index: 11;
}

.bottomTab {
    transition: .1s;
    width: 128px;
    background-color: var(--main-color);
    color: white;
    padding: 4px;
    font-size: 14px;
    font-weight: 600;
    border: 1px white solid;
    border-bottom: 0px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    line-height: 10px;
    height: 10px;
}

.bottomTab:hover {
    height: 18px;
}

#mobileEquipmentUptime {
    display: none;
    margin-right: 16px;
    margin-bottom: 8px;
    margin-top: 8px;
}








#kioskDashboardTab {
    transition: 0ms;
    position: absolute;
    bottom: 72px;
    left: -46px;
    height: 10px;
    width: 100px;
    color: white;
    padding: 4px;
    font-size: 14px;
    font-weight: 600;
    border: 2px white solid;
    border-bottom: 0px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    transform: rotate(90deg);
    line-height: 10px;
}

.tabActivated {
    left: 172px !important;
}




/* || Scrollbar */
::-webkit-scrollbar {
    scroll-behavior: smooth;
    border-radius: 8px;
    width: 8px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

::-webkit-scrollbar-corner {
    background: transparent;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: rgb(225,225,225);
    border-radius: 8px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgb(200,200,200);
    }

/* Scrollbar - end */






#tacHTML > h2 {
    padding-top: 32px;
}

#tacHTML > ul {
    padding-left: 32px;
}

#staticTAC_HTML > h2 {
    padding-top: 32px;
}

#staticTAC_HTML > ul {
    padding-left: 32px;
}








.contextMenuContainer {
    z-index: 120;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contextMenu {
    animation: grow .1s ease-out forwards;
    transform-origin: top left;
    display: flex;
    flex-direction: column;
    height: min-content;
    min-width: 64px;
    width: min-content;
    background-color: white;
    box-shadow: 4px 4px 0px rgba(0,0,0,.4);
    border-radius: 12px;
    border-top-left-radius: 0px;
    position: fixed;
    overflow: hidden;
    border: 2px solid var(--main-color);
}

.contextMenuItem {
    transition: .05s;
    display: flex;
    align-items: center;
    height: 24px;
    padding-left: 4px;
    padding-right: 4px;
    z-index: 121;
    user-select: none;
    cursor: pointer;
    color: black;
    text-wrap: nowrap;
}

    .contextMenuItem:hover {
        background-color: rgba(0, 0, 0, .2);
    }

.contextMenuModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes grow {
    0% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}








.divider {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: max-content;
}

.dividerLine {
    margin-left: 4px;
    margin-right: 4px;
    height: 1px;
    width: 100%;
    background-color: rgb(200, 200, 200);
}

.dividerText {
    color: rgb(100, 100, 100);
    font-size: 20px;
    text-wrap: nowrap;
    user-select: none;
    cursor: default;
}





@keyframes companyGroupLoaderBox {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.companyGroupListLoaderBox {
    animation: companyGroupLoaderBox 1s ease-in-out infinite;
    padding-left: 8px;
    height: 32px;
    min-height: 32px;
    width: calc(100% - 8px);
    border-radius: 4px;
    background-color: rgba(0,0,0,.1);
    opacity: 0;
}




.companyGroupListItemPlaceholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 100%;
    height: 32px;
    border: 2px dashed lightgray;
    border-radius: 4px;
    color: lightgray;
    font-weight: 500;
    user-select: none;
}





.starRater {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 4px;
    width: 100%;
    height: 34px;
}

    .starRater img {
        transition: .05s;
        width: 32px;
    }

    .starRater img:hover {
        transform: scale(1.1);
    }






@-webkit-keyframes notificationLanding {
    0% {
        background: rgba(252,247,151,.8);
        transform: scale(1.05);
        box-shadow: 2px 2px 3px 2px rgba(0,0,0,.075);
        backdrop-filter: blur(3px);
    }

    100% {
        background: rgba(255,255,255,.8);
        transform: scale(1);
        box-shadow: 2px 2px 2px 0px rgba(0,0,0,.1);
        backdrop-filter: blur(2px);
    }
}


.notification {
    animation: notificationLanding 1s ease none;
    transition: 1s;
    position: fixed;
    bottom: 8px;
    right: 8px;
    width: fit-content;
    max-width: 256px;
    height: fit-content;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(0,0,0,.2);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    padding: 8px;
    user-select: none;
    cursor: pointer;
    box-shadow: 2px 2px 2px 0px rgba(0,0,0,.1);
    color: rgb(30,30,30);
}

    .notification:hover {
        transform: scale(1.05);
        box-shadow: 2px 2px 3px 2px rgba(0,0,0,.075);
        backdrop-filter: blur(3px);
    }

.closeNotification {
    float: right;
    width: 12px;
    filter: invert();
    opacity: .7;
}





.monitorCheckmark {
    width: 12px;
    transform: translateY(-6px);
}







.tableButton {
    display: flex;
    justify-content: center;
    flex-shrink: 5;
    align-items: center;
    transition: all .05s ease-in;
    color: var(--main-color);
    background-color: white;
    text-align: center;
    font-size: 14px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1);
    flex-grow: 2;
    font-weight: 500;
    cursor: pointer;
    height: 22px;
    user-select: none;
    transform: translate(-2px, -2px);
    padding-left: 4px;
    padding-right: 4px;
}

    .tableButton:hover {
        transform: translate(-1px, -1px);
        box-shadow: 1px 1px 0px 0px rgba(100, 100, 100, 1);
    }

    .tableButton:active {
        transform: translate(0px, 0px);
        box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 1);
    }





@-webkit-keyframes screenExplosion {
    0% {
        top: 50vh;
        left: 50vw;
        width: 0vw;
        height: 0vh;
        border: 0px solid white;
    }

    75% {
        top: 12.5vh;
        left: 12.5vw;
        width: 75vw;
        height: 75vh;
        border: 32px solid white;
    }

    100% {
        top: 0vh;
        left: 0vw;
        width: 100vw;
        height: 100vh;
        border: 0px solid white;
    }
}

.screenExplosion {
    animation: screenExplosion .5s ease-out none;
    position: fixed;
    filter: blur(64px);
    border-radius: 128px;
}



@-webkit-keyframes saveViewImplosion {
    100% {
        top: 100vh;
        left: 50vw;
        width: 0vw;
        height: 0vh;
        border: 0px solid red;
        width: calc(100vw - 0px);
        height: calc(100vh - 0px);
    }

    75% {
        top: 75vh;
        left: 37.5vw;
        width: 25vw;
        height: 25vh;
        border: 16px solid orange;
        filter: blur(64px);
        border-radius: 128px;
        width: calc(100vw - 32px);
        height: calc(100vh - 32px);
    }

    40% {
        top: 0vh;
        left: 0vw;
        width: 100vw;
        height: 100vh;
        border: 32px solid yellow;
        filter: blur(0px);
        border-radius: 0px;
        width: calc(100vw - 64px);
        height: calc(100vh - 64px);
    }

    0% {
        top: 0vh;
        left: 0vw;
        width: 100vw;
        height: 100vh;
        border: 0px solid white;
        filter: blur(0px);
        border-radius: 0px;
        width: calc(100vw - 0px);
        height: calc(100vh - 0px);
    }
}

#saveViewImplosion {
    animation: saveViewImplosion .7s ease none;
    position: fixed;
    filter: blur(64px);
    border-radius: 128px;
    width: calc(100vw - 0px);
    height: calc(100vh - 0px);
}



.viewListUnitHeader {
    width: 100%;
    color: darkgray;
}

.viewListItem {
    background: transparent;
    width: calc(100% - 8px);
    padding-left: 8px;
    cursor: pointer;
}

.viewListItem:hover {
    background: rgba(0,0,0,.075);
}




#btnRefresh img {
    transform: scale(-1, 1);
}

#noDataSelectedMsg {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-style: italic;
}


#dashboardDisconnectTable {
    width: 100%;
    height: 100%;
    background-color: white;
}

#dashboardAlertTable {
    width: 100%;
    height: 100%;
    background-color: white;
}

.noUnitsHome {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: rgb(100, 100, 100);
    background: rgb(240, 240, 240);
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 6px;
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, .75);
    user-select: none;
}

.noAlertsHome {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(315deg, #4ce067, #70d883);
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 6px;
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, .75);
    user-select: none;
}

.noAlertsHomeContainer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 2px;
}




.homeWindowInAlert {
    border-color: var(--warning-color);
    background-color: var(--warning-color);
}

.homeWindowNotice {
    border-color: #E5A759;
    background-color: #E5A759;
}


#troubleshootingErrorLogs {
    text-wrap: wrap;
    font-size: 12px;
    text-align: left;
    padding: 8px;
    box-shadow: 2px 2px 0px 0px rgba(200, 200, 200, 1) inset;
    border: 2px solid rgb(0,0,0,.05);
    border-radius: 4px;
    color: rgb(25, 25, 25);
    background-color: white;
    min-height: fit-content;
    max-height: 256px;
    overflow-y: auto;
}


#sendRestartCommandKitOfflineNotice {
    font-size: 12px;
    color: var(--warning-color);
    font-style: italic;
}


#troubleshootingStepsButton {
    background: #E9D66B;
    color: black;
    border-color: black;
}