﻿
#menu_mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9999;
}

.fullscreen_mask {
    display: none;
    background: black;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.fullscreen_mask_clear {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.popup_menu
{
    position: absolute; 
    flex-direction: column;

    display: none;
    background-color: white;
    color: black;
    font: 14px Arial;
    z-index: 10000;

    background-color: whitesmoke;
    border: none;
    box-shadow: 2px 2px 5px black;
    white-space: nowrap;

}

.popup_menu div {
    padding: 7px 15px;
    cursor: pointer;
}

.popup_menu div:hover {
    background-color: lightgray;
}

 .popup_menu .menu_separator
 {
    margin: 5px 1px;
    padding: 0px 0px;
    border-bottom: 1px solid lightgrey;
}

 /* to be removed */
 .menu_icon {
    cursor: pointer;
    padding: 2px;
    display: inline-block;
    vertical-align: middle;
    align-self: center;
}

 /* to be removed */
.menu_icon div {
    width: 20px;
    height: 2px;
/*    background-color: darkgrey;*/
    background-color: slategrey;
    margin: 3px 0;
}

/* status bar */

.status_bar {
    width: 100%; 
    height: 30px; 
    background-color: #353B40; 
    display: flex;
    font: 12px Arial;
    color: whitesmoke;
    z-index: 150;
    flex-grow: 0;
    flex-shrink: 0;
}

.status_bar span {
    line-height: 30px;
    margin-left: 20px;
    margin-right: 30px;
    white-space:nowrap;
}

.status_bar.mobile {
    justify-content: space-around;
}

.status_bar.mobile span {
    line-height: 30px;
    margin-left: 0px;
    margin-right: 0px;
}

.online_circle {
    border-radius: 50%;
    border: 6px solid crimson;
    box-sizing: border-box;
    margin-top: 9px;
    margin-bottom: 9px;
}

.online {
    border-color: greenyellow;
}

/* common */
 .noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

     .new_layout .row{
        display: flex;
        flex-direction: row;
    }

    .new_layout .column {
        display: flex;
        flex-direction: column;
    }

        .new_layout label {
        height: 25px;
        margin-bottom: 8px;
        line-height: 25px;
        vertical-align: middle;
    }

        .new_layout span {
        height: 25px;
        margin-bottom: 8px;
    }

                .new_layout select {
        height: 25px;
        margin-bottom: 8px;
    }

        .new_layout input {
        height: 25px;
        margin-bottom: 8px;
    }

