#body {
    position: fixed;
    margin: 0;
    border-style: none;
    width: 100%;
    height: 100%;
    background-color: black;
}

#progressBarFrame {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 80%;
    background-color: #555;
    border: 1px solid #ddd;
}

#progressBar {
    width: 0%;
    height: 30px;
    background-color: #ddd;
}

#video1 {
    position: fixed;
    margin: 0;
    border-style: none;
    width: 100%;
    height: 100%;
}

#video2 {
    position: fixed;
    margin: 0;
    border-style: none;
    width: 100%;
    height: 100%;
}

#html1 {
    position: fixed;
    margin: 0;
    border-style: none;
    width: 100%;
    height: 100%;
}

#html2 {
    position: fixed;
    margin: 0;
    border-style: none;
    width: 100%;
    height: 100%;
}

#groupOverlay {
    position: fixed;
    margin: 0;
    border-style: none;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
}

#darkOverlay {
    position: fixed;
    margin: 0;
    border-style: none;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0);
    opacity: 0.0;
    display: none;
}

.container {
    height: 100%;
    position: relative;
    border: none;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.rotateNode {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.qrbackground {
    background-color: white;
}

.cameraVideo {
    object-fit: cover;
}

.cameraVideoBackground {
    z-index: 0;
    display: block;
}

.overlayMenuHidden {
    position: fixed;
    width: 0px;
    height: auto;
    z-index: 0;
    display: none;
}

.overlayMenuVisible {
    position: fixed;
    width: 80%;
    height: inherit;
    z-index: 100;
    background-color: transparent;
    display: grid;
    grid-template-rows: auto 1fr;
}

.cameraOverlay {
    position: absolute;
    width: 640px;
    height: 270px;
}

.console {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 0px;
    background-color: transparent;
    resize: none;
}

.highlighterText {
    background: rgba(0, 127, 0, 0.75);
    z-index: 200;
    position: absolute;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
}

.highlighter {
    background: rgba(0, 255, 0, 0.25);
    border: 1px dashed #fff;
    z-index: 200;
    position: absolute;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 0px;
    background-color: rgba(180,180,180,0.9);
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}
  
/* Change background color of buttons on hover */
.tab button:hover {
    background-color: rgba(240,240,240,0.9);
}
  
/* Create an active/current tablink class */
.tab button.active {
    background-color: rgba(210,210,210,0.9);
}
  
/* Style the tab content */
.tabcontent {
    height: 100%;
    background-color: rgba(210,210,210,0.9);
    padding: 10px;
}

.tabcontentHidden {
    height: 100%;
    background-color: rgba(210,210,210,0.9);
    padding: 10px;
    display: none;
}

.logfilter {
    height: 100%;
    width: auto;
    background-color: transparent;
}

.tabcontenthorizontal {
    height: 100%;
    background-color: transparent;
    display: grid;
    grid-template-columns: auto 1fr;
}

.filterContent {
    height: 100%;
    background-color: rgba(210,210,210,0.9);
    display: grid;
    grid-template-rows: fit-content;
}

.filterButton {
    height: 30px;
    font-size: 10;
    font-family: Arial, Helvetica, sans-serif;
}

.actionButton {
    height: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.consoleText {
    font-family: monospace;
    color: #000;
}

textarea[disabled] {
    color: #000;
}