
html {
    touch-action: none;
}

body {
    padding: 10px;
    overflow: hidden; /* Hide scrollbars */
}

#EnvisionPage {
    position: fixed; /* position: absolute; 2023 03 11 Changed to fixed for auto scroll issue on input focus */
    border: 1px solid white;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    cursor: default;
    /*    margin-left: auto;
    margin-right: auto;
*/
    /*background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0"><rect x="0" y="0" width="100" height="100" style="fill:none;stroke:lightblue;stroke-width:1;opacity:0.1" /></svg>');
    background-size: 20px 20px;
    background-color: white;*/
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */

    transform-origin: 0% 0%; /* IMPORTANT FOR SCALING */
    /*    -webkit-transform-origin: 0 0;*/
}

#EnvisionPage:focus {
    outline: none;
}

#TheGrid {
    position: absolute;
    border: 0px solid white;
    top: 0px;
    left: 0px;
    /*    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0"><rect x="0" y="0" width="100" height="100" style="fill:none;stroke:lightblue;stroke-width:4;opacity:0.1"/></svg>');
    background-size: 20px 20px;*/
    background-color: transparent;
    z-index: 1;
    pointer-events: none;
    display: none;
    transform-origin: 0% 0%;
    object-fit: cover;
    /*background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.2) 0.1px, transparent 0.5px),*/ /* Vertical lines */
    /*linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0.1px, transparent 0.5px);*/ /* Horizontal lines */

    background-image: linear-gradient(to right, rgba(117,117,117, 0.1) 0.6px, transparent 0.1px), /* Vertical lines */
    linear-gradient(to bottom, rgba(117,117,117, 0.1) 0.6px, transparent 0.1px); /* Horizontal lines */

    background-position: top left; /* Position the grid at the top left */
}


#TheGridDetails {
    position: absolute;
    border: 0px solid black;
    bottom: 70px;
    right: 40px;
    background-color: transparent;
    z-index: 1;
    display: none;
}

#draggable-element1 {
    background-color: #666;
    color: white;
    padding: 10px 12px;
    width: 100px;
    height: 100px;
}

#draggable-element2 {
    background-color: #666;
    color: white;
    padding: 10px 12px;
    width: 100px;
    height: 100px;
}

.draggable {
    position: absolute; /* important (all position that's not `static`) */
}

.linebox {
    position: absolute; /* important (all position that's not `static`) */
    pointer-events: none;
}

.lineboxhelper {
    position: absolute; /* important (all position that's not `static`) */
    pointer-events: none;
}

/*.Group {
    position: absolute; 
}
*/

.contexticondivcontainer {
    width: 100%;
    margin-bottom: 0.3rem;
    border: 0px solid red;
    display: inline-block;
}

.contexticondiv {
    width: 22px;
    height: 22px;
    padding-top: 5px;
    cursor: pointer;
    border: 0px solid blue;
}

.contexticondiv:hover .contexticon {
    /*fill: black;*/
    fill: var(--ThemeFontColorHover);
}

.contexticon {
    fill: #2596be;
    /* fill: var(--ThemeFontColor);*/
}

.ContextHeader {
    float: left;
    font-size: 25px;
    font-weight: bold;
    border: 0px solid black;
}

.Decorator {
    position: absolute;
    border: 0px solid black;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
    display: none;
    z-index: 999;
    width: 420px;
    right: 0;
    top: 0;
    height: 100%;
    /*background-color: #ededed;*/
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor);
    overflow: scroll;
    overflow-x: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 29px 7px 0px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    user-drag: none;
    -webkit-user-drag: none;
}

.DecoratorDragLine {
    position: absolute;
    border: 0px solid black;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: none;
    z-index: 999;
    width: 5px;
    margin-right: 415px;
    right: 0;
    top: 0;
    height: 100%;
    /*background-color: #ededed;*/
    background-color: transparent;
    color: var(--ThemeFontColor);
    border: 0px solid red;
    cursor: col-resize;
}

.Decorator::-webkit-scrollbar {
    width: 6px; /* width of the entire scrollbar */
}

.Decorator::-webkit-scrollbar-track {
    background: #e8e8e8; /* color of the tracking area */
}

.Decorator::-webkit-scrollbar-thumb {
    background-color: deepskyblue; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 0px solid orange; /* creates padding around scroll thumb */
}

.replacerlabel {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#UploadSVG {

}

#LicenseModal {
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor);
}

#CenterCross {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 15px;
    height: 15px;
    z-index: 0;
    pointer-events: none;
}

#PolygonDotContextMenu {
    width: 225px;
    height: auto;
    border: 0px solid red;
    border-radius: 10px;
    position: absolute;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    color: #5c5c5c;
    fill: #5c5c5c;
    z-index: 999;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.PolygonDotContextMenuItem {
    border-bottom: 1px solid lightgrey;
    padding: 8px 14px;
    height: 40px;
}

.PolygonDotContextMenuText {
    float: left;
}
.PolygonDotContextMenuItemIcon {
    width: 20px;
    float: right;
    pointer-events:none;
    
}

.PolygonDotContextMenuItem:hover {
    color: lightgrey;
    fill: lightgrey;
    cursor: pointer;
}

.PolygonDotContextMenuItemLast {
    border-bottom: 0px solid lightgrey;
}

.PolygonDotContextMenuItemLast > .PolygonDotContextMenuText {
    width:100%;
    color:orange;
    text-align:center;
}

    .PolygonDotContextMenuItemLast > .PolygonDotContextMenuText:hover {
        color: lightgrey;
    }

#PolylineDotContextMenu {
    width: 225px;
    height: auto;
    border: 0px solid red;
    border-radius: 10px;
    position: absolute;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    color: #5c5c5c;
    fill: #5c5c5c;
    z-index: 999;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.PolylineDotContextMenuItem {
    border-bottom: 1px solid lightgrey;
    padding: 8px 14px;
    height: 40px;
}

.PolylineDotContextMenuText {
    float: left;
}

.PolylineDotContextMenuItemIcon {
    width: 20px;
    float: right;
    pointer-events: none;
}

.PolylineDotContextMenuItem:hover {
    color: lightgrey;
    fill: lightgrey;
    cursor: pointer;
}

.PolylineDotContextMenuItemLast {
    border-bottom: 0px solid lightgrey;
}

    .PolylineDotContextMenuItemLast > .PolylineDotContextMenuText {
        width: 100%;
        color: orange;
        text-align: center;
    }

        .PolylineDotContextMenuItemLast > .PolylineDotContextMenuText:hover {
            color: lightgrey;
        }

#ClientPerformance {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    color: black;
}

#PageInfo {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 10px;
    margin-right: 10px;
    /*    width: 100px;
    height: 100px;*/
    z-index: 0;
    color: black;
    z-index: 2;
}


.draggable.ActiveSelected .resizer-right {
    width: 5px;
    height: 100%;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: e-resize;
}

.draggable.ActiveSelected .resizer-bottom {
    width: 100%;
    height: 5px;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: n-resize;
}


.draggable.ActiveSelected .resizer-both {
    width: 5px;
    height: 5px;
    background-color: transparent;
    z-index: 999;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: se-resize;
}

.resizertext {
    z-index: 999;
    position: absolute;
    /*    right: 0;
    bottom: -25px;*/
    font-size: 0.8rem;
    /*background-color: rgba(255, 255, 255, 0.8);*/
    /*color: rgba(75, 75, 75, 0.8);*/
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
    border: 0px solid blue;
    pointer-events: none;
}

.resizertextgroup {
    z-index: 999;
    position: absolute;
    /*    right: -75px;
    bottom: 20px;*/
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    color: rgba(75, 75, 75, 0.8);
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
}

.positiontext {
    z-index: 999;
    position: absolute;
    font-size: 0.8rem;
    /*    background-color: rgba(255, 255, 255, 0.8);
    color: rgba(75, 75, 75, 0.8);*/
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    width: 120px;
    border: 0px solid blue;
    pointer-events: none;
    padding-right: 5px;

}

.screenpositiontext {
    z-index: 999;
    position: absolute;
    /*    left: 0;
    top: -45px;*/
    font-size: 0.8rem;
    /*    background-color: rgba(255, 255, 255, 0.8);
    color: rgba(75, 75, 75, 0.8);*/
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    width: 120px;
    border: 0px solid blue;
    pointer-events: none;
    padding-right: 5px;
}

elementidtext {
    z-index: 999;
    position: absolute;
    /*    right: 0px;
    bottom: -65px;*/
    font-size: 0.8rem;
    /*    background-color: rgba(255, 255, 255, 0.8);
    color: rgba(75, 75, 75, 0.8);*/
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    width: 130px;
    border: 0px solid blue;
    pointer-events: none;
    display: none;
}

.lockinfo {
    z-index: 999;
    position: absolute;
/*    right: -20px;
    bottom: -20.9px;*/
    border:0px solid blue;
    pointer-events:none;
}

/*.scaleinfo {
    z-index: 999;
    position: absolute;*/
    /*    right: -20px;
    bottom: -20.9px;*/
    /*border: 0px solid blue;
    pointer-events: none;
}*/

.scaleinfo {
    z-index: 999;
    position: absolute;
    /*    right: 0px;
    bottom: -45px;*/
    font-size: 0.8rem;
    /*background-color: rgba(255, 255, 255, 0.8);
    color: rgba(75, 75, 75, 0.8);*/
    background-color: rgba(0, 0, 0, 0.6);
    color: orange;
    font-weight: bold;
    text-align: left;
    width: 87px;
    border: 0px solid blue;
    pointer-events: none;
    padding-left: 5px;
    margin-top: 6px;
}

.statusicon {
    z-index: 999;
    position: absolute;
    /*    right: 2.5px;
    bottom: 2.5px;*/
    border: 0px solid blue;
    pointer-events: none;
}

.positiontextgroup {
    z-index: 999;
    position: absolute;
    /*    left: -80px;
    top: 0px;*/
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: right;
    color: rgba(75, 75, 75, 0.8);
    border: 0px solid blue;
    pointer-events: none;
}

.zindextext {
    z-index: 999;
    position: absolute;
    /*    right: 0px;
    bottom: -45px;*/
    font-size: 0.8rem;
    /*background-color: rgba(255, 255, 255, 0.8);
    color: rgba(75, 75, 75, 0.8);*/
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    width: 60px;
    border: 0px solid blue;
    pointer-events: none;
    padding-left: 5px;
}

.zindextextgroup {
    background: lightgrey;
    z-index: 999;
    position: absolute;
/*    right: -35px;
    bottom: 0px;*/
    font-size: 0.8rem;
    background-color: rgba(102, 102, 102, 0.3);
    color: white;
    border: 0px solid blue;
    pointer-events: none;
}

.draggable .groupline {
    z-index: 998;
    position: absolute;
    border-width: 0px;
    border-color: deepskyblue;
    border-style: dashed;
    margin-left: -2px;
    margin-top: -2px;
}

.btn {
    background-color: var(--ThemeButtonBackgroundColor);
    color: var(--ThemeButtonColor);
}

.btn:hover {
    color: var(--ThemeButtonColorHover);
}

.polygondot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    border: 2px solid deepskyblue;
}

    .polygondot:hover {
        background-color: transparent;
        border: 2px solid orange;
        cursor: move;
    }

.polylinedot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    border: 2px solid deepskyblue;
}

    .polylinedot:hover {
        background-color: transparent;
        border: 2px solid orange;
        cursor: move;
    }

.polylinedotstart {
    border: 2px solid #BF68FF;
}

    .polylinedotstart:hover {
        background-color: transparent;
    }

.buttonobject {
    width: 100%;
    height: 100%;
    font-weight: normal;
    text-align: center;
    position: absolute;
    bottom: 0px;
    /*cursor: default;*/
}

    .buttonobject:hover {
        cursor: unset;
    }

.inputobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
}

.checkboxobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
}

.donutobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
}

.DonutContextDataDynamic {
    border-top: 1px solid lightblue;
    padding-left: 30px;
    padding-top: 15px;
}

.radiobuttonobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
}

.sliderobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
}

.dropdownobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    outline: none;
}

.dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
}
    .dropdown-menu li a:hover {
/*        background-color: lightgrey !important;
        color: white !important;*/
        font-weight:bold;
        cursor:pointer;
    }

    .dropdownobject button {
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0px;
        
    }

.labelobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    resize: none;
    overflow: hidden;
}

.webframeobject {
    position: absolute;
    bottom: 0px;
    resize: none;
    overflow: hidden;
    margin: 0%;
    border-width: 1px;
    border-style: solid;
    border-color:black;
}

.widgetobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    resize: none;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: black;
}

/*
textarea:hover,
textarea:active,
textarea:focus
{
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}*/

#ExpressionEditor:focus {
    outline: none !important;
    box-shadow: 0 0 10px lightgrey;
    border-color: lightgrey;

}

#ExpressionEditor {
/*    border: none;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;*/
}


/* resize: none;  remove the resize handle on the bottom right*/
.form-control[readonly]:focus {
    box-shadow: none;
}

.draggable svg {
/*    width: 100%;
    height: 100%;*/
    position: absolute;
/*    top: 0px;
    left: 0px;*/
 
}

.linebox svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
}

.linebox svg line {
    pointer-events:auto;
}

.lineboxhelper svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    pointer-events: none;
}

.squareobject {
    width: 100%;
    height: 100%;
    background-color: white;
    position:absolute;
    bottom:0px;
    border-width:1px;
}

.circleobject {
    width: 100%;
    height: 100%;
    background-color: white;
    position: absolute;
    bottom: 0px;
    border-radius: 50%;
    border-width: 1px;
}

.trendobject {
    width: 100%;
    height: 100%;
/*    background-color: lightblue;*/
    position: absolute;
/*    bottom: 0px;*/
}


.datatableobject {
    width: 100%;
    height: 100%;
    /*    background-color: lightblue;*/
    position: absolute;
        bottom: 0px;
}

.bitmapobject {
    width: 100%;
    height: 100%;
    /*    background-color: lightblue;*/
    position: absolute;
    /*    bottom: 0px;*/
}


.picker {
    border-radius: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    /*border: thin solid #eee;*/
    /*box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;*/
    /*box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;*/
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    float: right;
    z-index: 1;
    position: relative;
}

.picker:hover {
    transform: scale(1.1);
    position: relative;
}

.textmiddle {
    height: 38px;
    padding-top: 4px;
    border: 0px solid black;
}

.rowcontext {
    margin-bottom:0.3rem;
}

.rowcontextfixed {
    width: 140px;
    border: 0px solid blue;
}

.rowcontextfixedbtn {
    width: 140px;
    border: 0px solid purple;
    padding-top:5px;
}

.rowcontextfixeddash {
    width: 5px;
    border: 0px solid yellow;
    padding-top: 5px;
}

.rowcontextfixedcolor {
    width: 60px;
    border: 0px solid green;
}

.rowcontextfixedarrows {
    width: 10px;
    border: 0px solid green;
    padding: 0px;
    margin-left: -10px;
}

.rowcontextfixedarrowup {
    width: 8px;
    height: 16px;
    margin-top: 4px;
    margin-left: 8px;
    fill: #c7c5c5;
    border: 0px solid red;
}

.rowcontextfixedarrowup > svg {
    margin-top: -15px;
}

.rowcontextfixedarrowup:hover {
    fill: var(--ThemeFontColor);
    cursor:pointer;
}

.rowcontextfixedarrowdown {
    height: 16px;
    width: 8px;
    margin-top: 1px;
    margin-left: 8px;
    fill: #c7c5c5;
    border: 0px solid red;
}

    .rowcontextfixedarrowdown > svg {
        margin-top: -15px;
    }

.rowcontextfixedarrowdown:hover {
    fill: var(--ThemeFontColor);
    cursor: pointer;
}



.rowcontextfixedsmallvarbox {
    width: 22px;
    border: 0px solid green;
    padding: 0px;
}

.rowcontextfixedsmallvarboxdel {
    width: 22px;
    border: 0px solid green;
    padding: 0px;
    margin-left: 10px;
}

.col {
    border: 0px solid pink;
    padding-right: 5px;
}
.smallvar {
}

.rowcontextfixedsmallvarbox > button {
    width: 22px;
    padding-left: 5px;
}

.rowcontextfixedsmallvarboxdel > button {
    width: 22px;
    padding-left:7px;
}

/*
.smallvarboxsymbol {
    float: left;
    margin-left: 4px;
}
*/



.testxx {
    margin-bottom: 2rem;
}


#EditPageReplacerDelete:hover {
    cursor: pointer;
}

.LeftMenuBox {
    position: fixed;
    overflow: hidden;
    top: 0px;
    width: 0px;
    height: 100%;
    border: 0px solid black;
    background-color: none;
    z-index: 999;
    left: 0px;
}

.LeftMenuBoxDragLine {
    position: fixed;
    overflow: hidden;
    top: 0px;
    width: 5px;
    height: 100%;
    border: 0px solid green;
    background-color: none;
    z-index: 999;
    left: 0px;
    cursor: col-resize;
    display:none;
}


#LeftMenu {
    position: fixed;
    left: -100%;
    /*    margin-top: 0.5%;*/
    /*height: 98%;*/
    height: 100%;
    top: 0%;
    /*background: var(--ThemeBackgroundFancy); #F0F1F3*/
    background: var(--ThemeBackground);
    /*   background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(0,141,154,0.89) 100%);*/
    /*background-color: #F0F1F3;*/
    /*    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;*/
    /*    margin-left: 15px;*/
    /*padding: 20px;*/
    /*border-right: 1px solid var(--ThemeBorderColor);*/
    /*border-right: 1px solid darkgrey;*/
    box-shadow: rgba(0, 0, 0, 0.2) 0px 29px 7px 0px;
    background-color: var(--ThemeBackgroundSideMenu);
    color: var(--ThemeFontColor);
    /*    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
}

.ProjectHeader, .ConfigurationHeader, .ServerHeader {
    position: relative;
    left: -10px;
    opacity: 0;
    -webkit-transition: all 0.02s ease;
    -moz-transition: all 0.02s ease;
    -ms-transition: all 0.02s ease;
    -o-transition: all 0.02s ease;
    transition: all 0.02s ease;
}

.ProjectHeader.active, .ConfigurationHeader.active, .ServerHeader.active {
    opacity: 1;
    left: 0;
}

.EnvisionLeftMenuIcons {
    width: 25px;
    height: 20px;
    float: right;
    margin-left: 10px;
    margin-top: 10px;
    border: 0px solid black;
    padding: 0px;
    border-radius: 3px;
    text-align: center;
}

.EnvisionLeftMenuIcons svg path {
    fill: var(--ThemeIconColor);
}

.EnvisionLeftMenuIcons:hover {
    cursor:pointer
}

    .EnvisionLeftMenuIcons:hover svg path {
        fill: var(--ThemeIconColorHover);
    }

.TheGridOpen {

}


.TheGridOpen svg path{
    fill: black;
}

.TheGridOpen:hover {
    cursor: pointer
}

.TheGridOpen:hover svg path {
    fill: lightgrey;
}

#TheGridSize {
    right: 5px;
    bottom: 75px;
    position: absolute;
    border: 0px solid black;
    display: none;
}

.menuicon {
    fill: var(--ThemeIconColor);
    
}

    .menuicon:hover {
        fill: var(--ThemeIconColorHover);
        cursor: pointer;
    }

.menuiconnoclick {
    fill: var(--ThemeIconColor);
}

.infoiconmenu svg{
    fill: var(--ThemeIconColor);
}

.infoiconmenu:hover svg {
    fill: var(--ThemeIconColorHover);
    cursor: pointer;
}



.EnvisionLeftMenuCenterBlock {
    width: 130px;
    height: 130px;
    border: 0px solid black;
    float: left;
    padding: 20px;
}


.EnvisionLeftMenuCenterHomeBlock {
    width: 120px;
    height: 100px;
    border: 1px solid var(--ThemeBorderColor);
    float: left;
    padding-top: 10px;
    text-align: center;
    margin-left: 10px;
    margin-top: 10px;
    padding-top: 35px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    background-color: var(--ThemeElements);
    color: var(--ThemeFontColor);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

    .EnvisionLeftMenuCenterHomeBlock:hover {
        color: var(--ThemeBorderColorHover);
        border: 1px solid var(--ThemeFontColorHover);
        cursor: pointer;
    }

.EnvisionLeftMenuCenterHomeBlockDirectory {
    width: 120px;
    height: 100px;
    border: 1px solid var(--ThemeBorderColor);
    float: left;
    padding-top: 10px;
    text-align: center;
    margin-left: 10px;
    margin-top: 10px;
    padding-top: 35px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    background-color: var(--ThemeElements);
    color: var(--ThemeIconColor);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    /*    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;*/
}

    .EnvisionLeftMenuCenterHomeBlockDirectory:hover {
        color: var(--ThemeElements);
        background-color: var(--ThemeElementsHover);
        border: 1px solid var(--ThemeBorderColorHover);
        cursor: pointer;
    }

.Logo {
    color: var(--ThemeFontColor);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.Logo:hover {
    color: var(--ThemeFontColor);
}

.EnvisionLeftMenuCenterHomeWide {
    /*width: 380px;*/
    width: 100%;
    height: 30px;
    border-bottom: 1px solid var(--ThemeBorderColor);
    /*float: left;*/
    padding-top: 10px;
    text-align: center;
    margin-left: 10px;
    margin-top: 5px;
    padding-top: 1px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    /*background-color: var(--ThemeElements);*/
    color: var(--ThemeFontColor);
}

    .EnvisionLeftMenuCenterHomeWide:hover {
        color: var(--ThemeFontColorHover);
        border-bottom: 1px solid var(--ThemeFontColorHover);
        cursor: pointer;
        fill: var(--ThemeFontColorHover);
    }

.EnvisionLeftMenuCenterHomeWideLeftText {
    float: left;
    margin-left:40px;
    /*font-weight:bold;*/
}

.EnvisionLeftMenuCenterHomeWideRightIcon {
    float: left;
    border: 0px solid red;
    width: 20px;
    height: 1px;
    margin-top: -2px;
}

.EnvisionLeftMenuCenterHomeBlockNameText {
    position: absolute;
    border: 0px solid black;
    text-align: center;
    /*padding-top: 70px;*/
    padding-top: 40px;
    padding-right: 0px;
    width: 120px;
    height: 100px;
    word-break: break-all;
}

.ReturnButton {
    border: 0px solid red;
    background-color: #7198C8;
    color: white;
}

    .ReturnButton:hover {
        border: 0px solid red;
        background-color: lightgrey;
        color: black;
    }

.EnvisionLeftMenuCenterHomeBlockGraphics {
    zoom: 0.1;
    -moz-transform: scale(0.1);
    position: absolute;
    z-index: -1;
}


.EnvisionLeftMenuBottomBlock {
    width: 100px;
    height: 50px;
    border: 1px solid black;
    float: left;
    border: 0px solid var(--ThemeFontColor);
    border-radius: 10px;
    margin-top: 0px;
    margin-left: 5px;
    text-align: center;
    padding-top: 12px;
    color: var(--ThemeFontColor);
    background-color: var(--ThemeElements);
    font-weight: bold;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
    .EnvisionLeftMenuBottomBlock:hover {
        color: var(--ThemeFontColorHover);
        border: 1px solid var(--ThemeFontColorHover);
        /*    background-color:darkgray;*/
        cursor: pointer;
    }

#Legend {
    font-size: 12px;
    display: none;
    width: 340px;
    height: 720px;
    left: -360px;
    position: absolute;
    bottom: 45px;
    border: 1px solid lightgrey;
    background-color: rgba(255,255,255,1);
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
}

#EnvisionLeftMenuHeader {
    z-index: 1;
    left: 0px;
    width: 100%;
    height: 60px;
    top: 0px;
    border: 0px solid red;
    padding-right: 20px;
    position: absolute;
    /*    
    padding:8px;*/
}

#EnvisionLeftMenuTop {
    z-index: 1;
    right: 5px;
    width: 400px;
    height: 40px;
    top: 15px;
    border: 0px solid red;
    position: absolute;
}

.EnvisionLeftMenuCenter {
    z-index: 1;
    width: 100%;
    height: calc(100% - 160px);
    border: 0px solid blue;
    top: 60px;
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.EnvisionLeftMenuCenter::-webkit-scrollbar {
    width: 6px; /* width of the entire scrollbar */
}

.EnvisionLeftMenuCenter::-webkit-scrollbar-track {
    background: var(--ThemeBackground);
}

.EnvisionLeftMenuCenter::-webkit-scrollbar-thumb {
    background-color: deepskyblue; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 0px solid orange; /* creates padding around scroll thumb */
}

#EnvisionLeftMenuBottom {
    z-index: 1;
    left: 0px;
    width: 100%;
    height: 60px;
    bottom: 0px;
    border: 0px solid red;
    position: absolute;
    margin-left:10px;
}

.LibraryStandardIcons {
    width: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
    margin-bottom: 10px;
    fill: var(--ThemeIconColor);
    stroke: var(--ThemeIconColor);
}

.LibraryStandardIconsAdvanced {
    width: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
    margin-bottom: 10px;
    fill: var(--ThemeIconColor);
    stroke: var(--ThemeIconColor);
 /*   filter: brightness(150%);*/
}

.HomeNav {
    text-decoration: none;
    color: black;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.dropdown {
    color:black;
    background-color:white;
    border-color:lightgrey;
    text-align:left;
}

.ActiveSelected {
    border-width: 2px;
    /*border-color: red;*/
    border-color: deepskyblue;
    border-style: dashed;
    margin-top: -2px;
    margin-left: -2px;
    box-sizing: content-box;
}

    .ActiveSelected[name="GroupObject"] {
        border-width: 2px;
        /*border-color: red;*/
        border-color: lightcoral;
        border-style: dashed;
        margin-top: -2px;
        margin-left: -2px;
        box-sizing: content-box;
    }
    .ActiveSelected iframe {
        pointer-events: none;
    }

    .ActiveSelected[name="WidgetObject"] div[name="Widget"] {
        pointer-events: none;
    }

    .ActiveSelected[name="PolylineObject"] {
        border-width: 2px;
        /*border-color: red;*/
        border-color: transparent;
        border-style: dashed;
        margin-top: -2px;
        margin-left: -2px;
        box-sizing: content-box;
    }

        .ActiveSelected[name="PolylineObject"] .poly-hit {
            stroke: rgba(0, 191, 255, 0.2);
        }

.MenuTexts {
    color: var(--ThemeFontColor);
}

.MenuTexts:focus {
    color: var(--ThemeFontColor);
}

.popup {
    border-width: 0px !important;
    border-color: darkgrey;
    border-style: solid;
    margin-top: 0px !important;
    margin-left: 0px !important;
}

.GroupLine {
    border-width: 2px;
    border-color: green;
    border-style: dashed;
    position: absolute;
    margin-top: -2px;
    margin-left: -2px;
    z-index: 999;
}

.popupGroupLine {
    border-width: 0px !important;
}


.blink1s {
    animation: blinker 2s linear infinite;
}

.blink1soffset {
    opacity: 0;
    animation: blinker 2s linear infinite;
    animation-delay: 1s;
}

.blink05s {
    animation: blinker 1s linear infinite;
}

.blink05soffset {
    opacity: 0;
    animation: blinker 1s linear infinite;
    animation-delay: 0.5s;
}

.blink2s {
    animation: blinker 4s linear infinite;
}

.blink2soffset {
    opacity: 0;
    animation: blinker 4s linear infinite;
    animation-delay: 2s;
}

.borderblink1s {
    animation: borderblinker 2s linear infinite;
}

.borderblink1soffset {
    animation: borderblinker 2s linear infinite;
    animation-delay: 1s;
}

.borderblink05s {
    animation: borderblinker 1s linear infinite;
}

.borderblink05soffset {
    animation: borderblinker 1s linear infinite;
    animation-delay: 0.5s;
}

.borderblink2s {
    animation: borderblinker 4s linear infinite;
}

.borderblink2soffset {
    animation: borderblinker 4s linear infinite;
    animation-delay: 2s;
}



.strokeblink1s {
    animation: strokeblinker 2s linear infinite;
}

.strokeblink1soffset {
    animation: strokeblinker 2s linear infinite;
    animation-delay: 1s;
}

.strokeblink05s {
    animation: strokeblinker 1s linear infinite;
}

.strokeblink05soffset {
    animation: strokeblinker 1s linear infinite;
    animation-delay: 0.5s;
}

.strokeblink2s {
    animation: strokeblinker 4s linear infinite;
}

.strokeblink2soffset {
    animation: strokeblinker 4s linear infinite;
    animation-delay: 2s;
}

@keyframes blinker {
/*    50% {
        opacity: 0;
    }*/

    0% {
        opacity: 1;
    }

    49% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes borderblinker {
    /*    50% {
        opacity: 0;
    }*/

    0% {
        border-style: solid;
    }

    49% {
        border-style: solid;
    }

    50% {
        border-style: none;
    }

    100% {
        border-style: none;
    }
}

@keyframes strokeblinker {
    /*    50% {
        opacity: 0;
    }*/

    0% {
        stroke-opacity:1;
    }

    49% {
        stroke-opacity:1;
    }

    50% {
        stroke-opacity: 0;
    }

    100% {
        stroke-opacity: 0;
    }
}

.BlinkAlarms1s {
    animation: blinkeralarms 2s linear infinite;
    /*color: lightcoral !important;*/
}

@keyframes blinkeralarms {
    50% {
        /*opacity: 0;*/
        color: lightgray;
        /*background-color: green;*/
    }
}

/*<div class="loader" > </div >*/
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

#PageLoaderContainer {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 999;
    border: 0px solid red;
    margin: 0px;
    left: 0px;
    top: 0px;
}

.pageloaderbackground {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color:white;
    opacity:0.4;
    filter: brightness(40%);
}

.pageloadertext {
    z-index: 2;
    font-size: 25px;
    position: absolute;
    transform: translateX(-45.2%);
    left: 45.2%;
    transform: translateY(-55%);
    top: 55%;
    
}

.pageloaderrefresh {
    z-index: 2;
    font-size: 12px;
    position: absolute;
    transform: translateX(-45.2%);
    left: 45.2%;
    transform: translateY(-95%);
    top: 95%;
    border-radius: 5px;
    background-color: lightgrey;
    text-align: center;
    padding-top: 15px;
    height: 50px;
    width: 150px;
    color: white;
    cursor: pointer;
    opacity: 0;
    animation: 10s ease 0s normal forwards 1 delaypageloaderrefresh;
}

@keyframes delaypageloaderrefresh {

    70% {
        opacity: 0;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.pageloader {
    z-index: 2;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #137A81; /* EnvisionColor */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    transform: translateX(-47%);
    left: 47%;
    transform: translateY(-45%);
    top: 45%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mousepos { 
    background: lightgrey;
    z-index: 999;
    position: absolute;
    font-size: 0.8rem;
    background-color: rgba(102, 102, 102, 0.3);
    color: white;
    width: 80px;
}

.draggable img {
    height: 100%;
    width: 100%;
    border: 0px solid red;
    pointer-events: none;
}

.contextbutton {
    width:120px;
    margin-top:-4px;
    margin-left:0px;
}

.EditInstanceSymbolReplacersNameBox {
    margin-bottom: 5px;
    float: left;

    width:300px;
}

.LegendTable td {
    font-size: 12px;
    width: 150px;
    text-align: left;
}

.modal-content {
    background-color: var(--ThemeBackground);
}

.modal-header {
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor);
    border-bottom: 1px solid lightgrey;
    text-align: center;
    width: 100%;
    padding-bottom:10px;
}


.modal-body {
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor);
    max-height: calc(100vh - 190px);
    overflow:scroll;
}

.modal-footer {
    border-top: 1px solid lightgrey;
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor);
}

/*.modal-body input[type="text"], h4 {
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor);
    
}*/

h4 {
    background-color: var(--ThemeBackground);
    color: var(--ThemeFontColor); 
}

.configinput {
    background-color: var(--ThemeConfigInputBackgroundColor);
    color: var(--ThemeConfigInputColor);
    margin-bottom: 5px;
}

.configlabel {
    background-color: transparent;
    color: var(--ThemeFontColor);
    height: 42.4px;
    border: 0px solid black;
    display: block;
    padding-right: 25px;
    padding-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.configreadonly {
    background-color: var(--ThemeConfigInputReadOnlyBackgroundColor) !important;
    color: var(--ThemeConfigInputReadOnlyColor) !important;
}

textarea.configinput:focus {
    background-color: var(--ThemeConfigInputBackgroundColor);
    color: var(--ThemeConfigInputColor);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
}

textarea:focus {
    outline: none;
}

#ServerConfirm {
    width: 50px;
    height: 50px;
    position: fixed;
    padding: 10px;
    top: 10px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 9999;
    display: none;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    animation: hideAnimation 1.2s ease-in;
    animation-fill-mode: forwards;
}

#SaveConfirm {
    width: 50px;
    height: 50px;
    position: fixed;
    padding: 10px;
    top: 10px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 9999;
    display: none;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    animation: hideAnimation 1.2s ease-in;
    animation-fill-mode: forwards;
}

#ResetViewerBtn {
    width: 50px;
    height: 45px;
    position: fixed;
    padding-left: 7.5px;
    padding-top: 5px;
    top: 10px;
    transform: translateX(-50%);
    left: 50%;
    top: 88%;
    z-index: 9999;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    fill: white;
    border-radius: 10px;
    text-align: center;
    animation: showAnimation 1.2s ease-in;
    animation-fill-mode: forwards;
}

#PageReplacedWarning {
    position: fixed;
    padding: 10px;
    padding-bottom: 0px;
    top: 10px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 9999;
    display: none;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    animation: hideAnimation 3.2s ease-in;
    animation-fill-mode: forwards;
    user-select: none;
}

@keyframes hideAnimation {
    to {
        opacity:0;
        display:none;
    }
}

@keyframes showAnimation {
    to {
        opacity: 1;
        display: block;
    }
}

#TrendPropertyWindow {
    width: 400px;
    height: 260px;
    border: 0px solid white;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 999;
    border-radius: 5px;
}

#TrendPropertyWindowTitle {
    text-align:center;
    width:100%;
    display:block;
    margin-top:20px;
}

.TrendPropertyWindowIcon {
    width: 15px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
 /*   margin-top: 10px;*/
}

.TrendPropertyWindowIconError {
    width: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    fill:darkorange;
    /*   margin-top: 10px;*/
}


.TrendPropertyWindowIconTitle {
    width: 35px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    /*   margin-top: 10px;*/
}

#TrendPropertyWindowCloseButton {
    width: 28.3%;
    height: 45px;
    display: block;
    float: left;
    margin-top: 10px;
    margin-left: 2.5%;
    margin-bottom: 10px;
}

#TrendPropertyWindowResetButton {
    width: 28.3%;
    height: 45px;
    display: block;
    float: left;
    margin-top: 10px;
    margin-left: 5%;
    margin-bottom: 10px;
}

#TrendPropertyWindowApplyButton {
    width: 28.3%;
    height: 45px;
    display: block;
    float: left;
    margin-top: 10px;
    margin-left: 2.5%;
    margin-bottom: 10px;
}

#TrendPropertyWindowDateTimeFromInput {
    width: 90%;
    height: 45px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 20px;
}

#TrendPropertyWindowDateTimeToInput {
    width: 90%;
    height: 45px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 10px;
}

.infoicon {
    width: 20px;
    float: right;
    margin-left: 5px;
    fill: blue;
}

.SubContextTitleContainer {
    height: 20px;
    margin-bottom:20px;
}

.SubContextTitleContainer:hover {
    color: var(--ThemeFontColorHover);
    fill: var(--ThemeFontColorHover);
    cursor:pointer;
}

.ContextExpandCollapseSymbol {
    width: 12px;
    float: right;
    fill: grey;
    border:0px solid red;
}


#ContextExpandCollapseSymbolContainer {
    border: 0px solid red;
    position:absolute;
    right:0px;
    margin-right:25px;
    margin-top:-55px;

}

.ContextExpandCollapseSymbol:hover {
    fill: var(--ThemeFontColorHover);
    cursor:pointer;
}


.SubContextTitle {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}


.resizer {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    user-select: none;
}

.draggable.ActiveSelected .resizer:hover,
.resizing {
    cursor: col-resize;
    border-right: 2px solid black;
}

/* ALARM BANNER */
.alarmbannerobject {
    fill: #C0C0C0;
    border-width: 1px;
    border-style: solid;
    border-color: #C0C0C0;
}

    .alarmbannerobject .ackicon {
        width: 25px;
        height: 25px;
        border: 0px solid blue;
        position: absolute;
        z-index: 0;
        margin-left: -1px;
        margin-top: -15px;
    }

        .alarmbannerobject .ackicon:hover {
            width: 25px;
            height: 25px;
            border: 0px solid blue;
            position: fixed;
        }

.alarmbannerobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .alarmbannerobject thead th {
        position: sticky; /* make the table heads sticky */
        top: 0px; /* table head will be placed from the top of the table and sticks to it */
        z-index: 2;
    }

    .alarmbannerobject::-webkit-scrollbar {
        width: 6px; /* width of the entire scrollbar */
    }

    .alarmbannerobject::-webkit-scrollbar-track {
        background: #e8e8e8; /* color of the tracking area */
    }

    .alarmbannerobject::-webkit-scrollbar-thumb {
        background-color: darkgrey; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 0px solid orange; /* creates padding around scroll thumb */
    }

.AlarmBannerAckHeaderColumn, .AlarmBannerRemoveHeaderColumn, .AlarmBannerAckColumn, .AlarmBannerRemoveColumn {
    border-right-width: 0px !important;
    border-left-width: 0px !important;
}

.resizer {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    user-select: none;
}

.draggable.ActiveSelected .resizer:hover,
.resizing {
    cursor: col-resize;
    border-right: 2px solid black;
}

.alarmbannerobject AlarmBannerTable {
    border-collapse: collapse;
    height: 100%;
}

    .alarmbannerobject AlarmBannerTable th, td {
        border-width: 1px;
        border-style: solid;
        font-size: 16px;
    }

.alarmbannerobject .AlarmBannerTable > thead > tr > th {
    padding: 4px 8px;
    border-width: 1px;
    border-style: solid;
    background-color: #eee;
    font-size: 16px;
}

.AlarmBannerTable {
    background-color: #dcdcdc;
}

    .AlarmBannerTable > tbody {
        border-color: #C0C0C0;
    }

    .AlarmBannerTable > thead {
        border-color: #C0C0C0;
    }
/* END ALARM BANNER */

/* DATA TABLE */
.datatableobject {
    fill: #C0C0C0;
    border-width: 1px;
    border-style: solid;
    border-color: #C0C0C0;
}

    .datatableobject svg:hover {
        fill: black;
        cursor: pointer;
    }

    .datatableobject .ackicon {
        border: 0px solid blue;
        position: absolute;
        z-index: 0;
        margin-left: -1px;
        margin-top: -15px;
    }

        .datatableobject .ackicon:hover {
            border: 0px solid blue;
            position: fixed;
        }

.AlarmBannerRemoveColumn:hover {
    width: 25px;
    height: 25px;
    fill: red;
}

.AlarmBannerAckColumn:hover {
    width: 25px;
    height: 25px;
    fill: green;
}

.AlarmBannerRemoveColumn .ackicon {
    width: 25px;
    height: 25px;
}

.AlarmBannerAckColumn .ackicon {
    width: 25px;
    height: 25px;
}

/**/
.AlarmBannerIconColumn {
    max-width: 30px;
}

/*.AlarmBannerIconHeaderColumn {
    width:30px;
}*/


.AlarmBannerAckColumn, .AlarmBannerAckHeaderColumn {
    /*min-width: 50px;*/
    max-width: 50px;
    padding-right: 30px;
    max-width: 60px;
}

.AlarmBannerRemoveColumn, .AlarmBannerRemoveHeaderColumn {
    /*min-width: 50px;*/
    max-width: 50px;
    table-layout: fixed;
    padding-right: 30px;
}

.AlarmBannerIconColumn .AlarmIcon svg {
    width: 18px;
    height: 18px;
    border: 0px solid red;
    table-layout: fixed;
}

.AlarmIcon {
    margin-top: -8px;
    margin-left: -8px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: deepskyblue;
}


.datatableobject {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .datatableobject thead th {
        position: sticky; /* make the table heads sticky */
        top: 0px; /* table head will be placed from the top of the table and sticks to it */
        z-index: 2;
    }

    .datatableobject::-webkit-scrollbar {
        width: 6px; /* width of the entire scrollbar */
    }

    .datatableobject::-webkit-scrollbar-track {
        background: #e8e8e8; /* color of the tracking area */
    }

    .datatableobject::-webkit-scrollbar-thumb {
        background-color: darkgrey; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 0px solid orange; /* creates padding around scroll thumb */
    }

    .datatableobject DataTableTable {
        border-collapse: collapse;
        height: 100%;
        
    }

    .datatableobject DataTableTable th, td {
        padding: 8px 16px;
        border-width: 1px;
        border-style: solid;
            
    }

    .datatableobject .DataTableTable > thead > tr > th { 
        padding: 4px 8px;
        border-width: 1px;
        border-style: solid;
        /*padding: 0px;*/
    }

.DataTableTable {
    background-color: #dcdcdc;
}

    .DataTableTable > tbody {
        border-color: #C0C0C0;
    }

    .DataTableTable > thead {
        border-color: #C0C0C0;
        background-color: #eee;
    }

/* END DATA TABLE */

.DevMenuIcon {
    height:26px;
    border:5px solid red;
}

#GenericEditorSingle {
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 2%;
    margin-right: 2%;
    padding:10px;
    width: 96%;
}

#GenericEditorSingle:focus, input:focus {
    outline: none;
}

#popupHint {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 420px;
    background-color: #3291a8;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    font-size: 16px;
    z-index: 9999;
    display:none;
    transition: opacity 0.5s ease-in-out;
    font-family:Helvetica, sans-serif;
}

    #popupHint.show {
        display: block;
    }

    #popupHint button {
        background: none;
        border: none;
        color: #ccc;
        font-size: 14px;
        cursor: pointer;
        margin-left: 10px;
    }

        #popupHint button:hover {
            color: white;
        }

    #popupHint .close {
        float: right;
        font-size: 16px;
        color: white;
        margin-left: 10px;
    }

    #popupHint .actions {
        margin-top: 10px;
        text-align: right;
    }

#undoRedoIndicator {
    position: absolute;
    top: 10px;
    /*left: 50%;*/
    right: 10px;
    /*transform: translateX(-50%);*/
    z-index: 9999;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 14px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    text-align: center;
}

#zoomWarning {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d4d;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    display: none; /* hidden by default */
    z-index: 99999;
}

#StyleFormatContextzIndexInfo {
    text-align: right; /* Aligns placeholder text */
    border: 0px solid red;
    width: auto;
    float: right;
    padding-right: 0px;
    margin-top: -36px;
    margin-right:30px;
    /*color: var(--ThemeFontColor);*/
}

#StyleFormatContextzIndexInfoColor {
    text-align: right; /* Aligns placeholder text */
    border: 1px solid lightgrey;
    width: 20px;
    height: 20px;
    border-radius:5px;
    float: right;
    margin-right:5px;
    margin-top: -33px;
}


/* SVG box itself is NOT clickable */
.polylineobject {
    pointer-events: none;
    stroke-linejoin: round;
}

    /* invisible hit stroke */
    .polylineobject .poly-hit {
        stroke: rgba(0, 191, 255, 0); /* nothing visible */
        /*stroke-width: 14px;*/ /* <-- now set dynamically */

        pointer-events: stroke; 
        cursor: pointer;
    }

    /* visible thin line */
    .polylineobject .poly-visible {
        stroke-linejoin: round;
        pointer-events: stroke;
        cursor: default;
    }

    .ActiveSelected .polylineobject .poly-visible {
        pointer-events: none;
        cursor: default;
    }

.PolylineBorder {
    position: absolute;
}

    .PolylineBorder svg {
        position: absolute;
        stroke-linejoin: round;
    }

    .PolylineBorder .poly-visible {
        /*cursor: pointer;*/
    }


.draggable[name="PolylineObject"] {
    pointer-events: none !important;
    cursor: none !important;
    /*    border:1px solid red;*/
}

/*.draggable[name="PolylineObject"] .polylinedot {
    pointer-events: auto !important;
    cursor: pointer !important;
}*/

/**/
/***** ***** ***** ***** *****/

/*input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: lightblue;
    cursor: pointer;
}

    input[type="range"]::-webkit-slider-runnable-track {
        background: #053a5f;
        height: 0.5rem;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;*/ /* Override default look */
        /*appearance: none;
        margin-top: -12px;*/ /* Centers thumb on the track */
        /*background-color: #5cd5eb;
        height: 2rem;
        width: 1rem;
    }

    input[type="range"]:focus {
        outline: none;
    }*/

        /***** Chrome, Safari, Opera, and Edge Chromium *****/
        /*input[type="range"]:focus::-webkit-slider-thumb {
            border: 1px solid #053a5f;
            outline: 3px solid #053a5f;
            outline-offset: 0.125rem;
        }*/



/*.draggable[name="PolygonObject"] {
    border-width: 0px;
    pointer-events: none !important;
    cursor: default !important;
    background-color: red;
}

.polygonobject polygon {
    pointer-events: auto !important;
    cursor: pointer !important;
    fill: green !important;
    border:4px solid blue;
}

.draggable[name="PolygonObject"] .polygondot {
    pointer-events: auto !important;
    cursor: pointer !important;
}
*/
/**/
/*.draggable[name="PolylineObject"] {
    border-width: 0px;
    pointer-events: none !important;
    cursor: default !important;
}

.polylineitself:hover {
    pointer-events: all;
    cursor: pointer;
    stroke: blue;
    background-color:black;
}

.draggable[name="PolylineObject"] .polylinedot {
    pointer-events: auto !important;
    cursor: pointer !important;
}*/

/*.draggable[name="PolylineObject"]:not(.ActiveSelected) {
    pointer-events: none !important;
    cursor: default !important;
}

    .draggable[name="PolylineObject"] .polylinedot {
        pointer-events: auto !important;
        cursor: pointer !important;
    }*/

/*.draggable[name="PolygonObject"]:not(.ActiveSelected) {
    pointer-events: none !important;
    cursor: default !important;
}

.draggable[name="PolygonObject"] .polygondot {
    pointer-events: auto !important;
    cursor: pointer !important;
}*/
