/* fLUMEN windows style context menu*/

.contextMenu_empty_importSymbol_array {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3 x 1 fraction */
}

#contextMenu {
    display: none;
    position: absolute;
    z-index: 2;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background: var(--background-color);
    opacity: 0;
    color: var(--text-color-sidePanel);
    font-weight: bold;
    border: groove;
}

#contextMenu div {
       text-align: left;
       padding: 7px 5px;
       white-space: nowrap;
       cursor: pointer;
}

#reportTable{
    margin-left: -9px;
    padding: 0px;
    margin-bottom: -4px;
    cursor: pointer;
}
.ReportsEntrys{
    height: 3px;
    cursor: pointer;
}

.ReportsEntrys td{
    height: 0px;
    padding: 0px;
}
#contextMenu div span{
       font-size: 21px;
       margin-right: 5px;
       float: left;
} 

#contextMenu div:hover {
    background-color: var(--second-color);
    cursor: pointer;
    color: var(--text-color-sidePanel);
}

#contextMenu div div:hover {
    background-color: #ffffffa8;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.781);
}

#contextMenu_Export_screenshot {
    display: none;
    transition: 0.3s;
    position: relative;
}

#contextMenu_Export_report {
    display: none;
    transition: 0.3s;
    position: relative;
}

#contextMenu_Export_screenshot_pdf {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
}

#contextMenu_Export_screenshot_png {
    display: none;
    position: absolute;
}

contextMenu_Export_report_pdf {
    display: none;
    position: absolute;
}

contextMenu_Export_report_csv {
    display: none;
    position: absolute;
}

.arrow {
    font-size: 11px;
    line-height: 0%;
    text-align: right;
}

.mainMenu_contextMenu_stylelabel {
    font-size: 12px;
    color: black;
    font-weight: normal
}


/* --- hover menus for side panel --- */
.normalHoverMenuItem{
    cursor: pointer;
    padding: auto;
}
.hoverMenuItem {
    cursor: pointer;
    padding-left: 6px;
    padding: auto;
    padding: auto;
    height: 100%;
    position: relative;
    display: block;
    width: max-content;
}

.hoverMenuItem_label{
    cursor: pointer;
    /* font-weight: bold; */
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 3vmin;
    margin-top: 1.5vmin;
    font-size: inherit;
}

.hoverMenuItem:before {
      font-size: 2vmin;
      margin-top: -1vmin;
      float: left;
}
.hoverMenuItemHolder{
    background-color: var(--second-color-lightest);
    cursor: pointer;
    border-style: groove;
    padding-bottom: 1px;
    z-index: 2;
}

.hoverMenuItemHolderActive {
    color: var(--color-active) !important;
}

.hoverMenudropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.hoverMenudropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    color: var(--header-textColor);
    overflow-x: visible;
    overflow-y: visible;
    margin-top: 1.7vmin;
    margin-left: -3vmin;
    z-index: 4;
    max-height: 80vh;
    overflow-y: scroll;
}

.hoverMenudropdown-content::-webkit-scrollbar {
    width: 0px;
}

.hoverMenudropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    position: fixed;
}

.hoverMenudropdown-content a:hover {
    background-color: #f1f1f1
}

.hoverMenudropdown:hover .hoverMenudropdown-content {
    display: block;
}

.hoverMenudropdown:hover .hoverMenudropbtn {
    background-color: #3e8e41;
}


/* --- end hover menus for side panel --- */
.locationLabelOverview 
.hoverMenuNavLastViewItem {
    color: var(--header-textColor);
    text-align: left;
    overflow: visible;
    z-index: 3;
    margin-left: 18px;
    padding-bottom: 4px;
    padding-right: 10px;
    width: auto;
}

.hoverMenuNavLastViewItem {
    color: var(--text-color-sidePanel);
    text-align: left;
    overflow: visible;
    z-index: 3;
    border: 1px solid;
    border-color: var(--second-color-light);
    width: -webkit-fill-available;
    height: 3.3vmin;
    padding-right:1vmin;
}

.hoverMenuNavLastViewItem:hover {
    background-color: var(--color-configurable);
    color: var(--main-color);
    font-weight: bold;
}

#fileinput {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    float: none;
    z-index: -1;
    display: none;
}

#backgroundImport {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.disabledContextEntry{
    pointer-events: none;
    color: lightgray;
    text-decoration: line-through;
}