div.screenlock {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    left: 0px;
    top: 0px;
    z-index: 990;
    backdrop-filter: blur(2px);
    /*background: rgba(200,200,200,0.25);*/
}

div.screencatch {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    left: 0px;
    top: 0px;
    z-index: 990;
}

div.screenmsg{
    display: flex;
    position:relative;
    background: #333;
    border: 1px solid #333;
    flex-direction:column;
    padding:15px;
    align-items: center;
    border-radius: 5px;
}

div.screenmsgtext {
    color: #fff;
    font-size:12pt;
    display: flex;
    position: relative;
    padding-bottom:15px;
}

.videowindow {
    position: relative;
    object-fit: cover;
    z-index: 950;
    overflow: hidden;
    width:100%;
    height:100%;
}


div.emboss {
    border: 1px solid rgba(200,200,200,0.3);
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.5);
}

div.window {
    display: flex;
    position: relative;
    background-color: #222;
    overflow: auto;
    flex-direction: column;  
    border-radius: 4px;
}

.windowFrame {
    display: flex;
    position: relative;
    background-color: #111;
    overflow: hidden;
    flex:0 0 500px;
    height:100%;
    padding:0;
    margin:0;
    border:0;
    justify-content: center;
    align-items: center; 
}

div.windowContent {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
    align-items: baseline;
    overflow:hidden;
    display:flex;
    flex:1;
    flex-direction:row;
    box-sizing: border-box;
}

div.windowInput {
    color:#fff;
    font-family: "Tahoma";
    line-height: 18px;
    font-size: 12pt;
    text-align: left;
    width:100%;
    height:24px;
    position:relative;
    display:flex;
    padding:2px 2px 2px 4px;
    vertical-align: middle;
    box-sizing:border-box;
    border:1px solid #555;
    border-radius: 4px;
    background:black;
}

div.windowPromptContent {
    color:#eee;
    width: 100%;
    display: flex;
    flex:1;
    flex-direction:column;
    position: relative;
    padding: 10px;
    /*outline: 1px solid #999;*/
    box-sizing: border-box;
    justify-content:center;
    align-items:baseline;
    text-align:center;
    overflow:hidden;
}

div.windowBottomMenu {
    display: flex;
    height: 30px;
    padding-right:10px;
    padding-left:10px;
    background:#333;
    flex-direction:row;
    position: relative;
    bottom:0px;
    width:100%;
    box-sizing:border-box;
}
div.windowLeftButtons {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 16px;
    box-sizing: border-box;
    flex:1;
    height: 26px;
}
div.windowRightButtons {
    position: relative;
    display: flex;
    justify-content:flex-end;
    align-items:center;
    box-sizing:border-box;
    flex:1;
    height:26px;
}



/* ---------"Open" menu ---------------*/

div.openMenu { 
    min-width: 200px;
    min-height: 90px;
    resize: both;
}

div.openMenuContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex:1;
    position: relative;
    /*padding: 10px;*/
    /*box-sizing: border-box;*/
}

div.listBox {
    flex: 1;
    height: 100%;
    border: 0px;
    text-decoration: none;
    position:relative;
    background: #222;
    outline: none;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding-right:5px;
    box-sizing: border-box;
}

div.listOption {
    padding-left: 5px;
    padding-top:2px;
    width: 100%;
    flex: 0 0 20px;
    align-items: center;
    display: table-cell;
    color: #ccc;
    font-family: "Tahoma";
    font-size: 14px;
    font-weight:bold;
    line-height: 20px;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor:pointer;
    border-radius: 3px;
}

div.listHighlight {
    background: #555 !important;
}

div.listHover {
    background: #333 !important;
}


/* --------------Voice Recorder menu--------- */

div.recorderMenu {
    width: 290px;
    height: 102px;
    resize: none;
}

div.audioTime{
    height:20px;
    background-color: #000;
    color: #eee;
    vertical-align: middle;
    line-height:16px;
    padding:3px 3px 2px 3px;
    box-sizing: border-box;
}



