html,
body {
  margin: 0;
  height: 100%;
}

button.hidden, div.hidden, iframe.hidden {
  display: none
}

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

button.choice {
  padding: 10px;
  margin: 5px;
}

div.all {
  width: 80%;
  height: 100%;
}

#debug {
  width: 20%;
  height: 100%;
}

div.welcome {
  width: 100%;
  height: 100%;
} 

iframe.flex {
  display: inherit;
}

div.panelchoice {
  background-color: white;
  border: 2px solid black;
  font: 12px arial;
  width: 250px;
  padding: 5px 5px 5px 5px;
}

#autokeyboard, #k7content {
  /* top:0; left:0; right:0; bottom:0; padding:1em; */
  border: none;
  width: 100%;
  height: 100%;
}

#keyboardpanel {
  content: align-center;
  background-color: white;
  border: 2px solid black;
  bottom: 2vh;
  /* right: 2vw; */
  left: 2vw;
  width: 45vw;
  height: 10vh;
  position: absolute;
  /* padding: 2px; */
  font: 12px arial;
}

#k7panel {
  content: align-center;
  background-color: white;
  border: 2px solid black;
  bottom: 2vh;
  right: 2vw;
  /* left: 2vw; */
  width: 45vw;
  height: 10vh;
  position: absolute;
  /* padding: 2px; */
  font: 12px arial;
}

#coordspanel {
  content: align-center;
  background-color: white;
  border: 2px solid black;
  top: 15vh;
  right: 2vw;
  /* left: 88vw; */
  /* width: 5vw;
  height: 7vh; */
  position: absolute;
  /* padding: 5px; */
  font: 12px arial;
}

#contactpanel {
  content: align-center;
  background-color: white;
  border: 2px solid black;
  top: 2vh;
  right: 2vw;
  /* left: 88vw; */
  /* width: 10vw; */
  /* height: 10vh; */
  position: absolute;
  padding: 5px;
  font: 12px arial;
}

#targetpanel {
  content: align-center;
  background-color: white;
  border: 2px solid black;
  top: 14vh;
  right: 2vw;
  /* left: 88vw; */
  /* width: 5vw;
  height: 7vh; */
  position: absolute;
  /* padding: 5px; */
  font: 6px arial;
}

#keyboardopenpanel {
  content: align-center;
  background-color: white;
  border: 2px solid black;
  top: 19vh;
  right: 2vw;
  /* left: 88vw; */
  /* width: 5vw;
  height: 7vh; */
  position: absolute;
  /* padding: 5px; */
  font: 6px arial;
}

#desas {
  font-size: 10px;
  font-family: 'Courier New';}

#paneldebug {
  background-color: white;
  border: 2px solid black;
  top: 15vh;
  /* left: 50vw;
  width: 40vw; */
  left: 15vw;
  width: 70vw;
  height: 70vh;
  position: absolute;
  margin: auto;
  font: 12px arial;
}

#tabledebug {
  font-size: 10px;
  font-family: 'Courier New';
  /* border: 1px solid black; */
}

#tablecpu {
  font-weight: bold;
  font-size: 12px;
  font-family: 'Courier New';
  border: 1px solid black;
}

td {
  /* border: 1px  solid black; */
}

div.welcome {
  display: flex;
  flex-direction: column;
  align-content: center;
}

#closewelcome {
  background-color: red;
  color: white;
  /* border: 2px solid black; */
  top: 17vh;
  left: 30vw;
  position: absolute;
  margin: auto;
  font: 30px arial bold;
}

#welcome {
  background-color: white;
  border: 2px solid black;
  top: 20vh;
  left: 30vw;
  width: 40vw;
  height: 60vh;
  position: absolute;
  margin: auto;
  font: 20px arial;
}

#panel {
  background-color: white;
  border: 2px solid black;
  top: 10vh;
  left: 10vw;
  width: 80vw;
  height: 80vh;
  position: absolute;
  margin: auto;
  font: 20px arial;
}


choice {
  display: flex;
  flex-direction:column;
}

#c {
  width: 100%;
  height: 100%;
  display: block;
}

#container {
  position: relative;
  /* makes this the origin of its children */
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#labels {
  position: absolute;
  /* let us position ourself inside the container */
  left: 0;
  /* make our position the top left of the container */
  top: 0;
  color: white;
}

li {
  color: black;
}

  #labels>div {
    color: black;
    position: absolute;
  /* let us position them inside the container */
  left: 0;
  /* make their default position the top left of the container */
  top: 0;
  cursor: pointer;
  /* change the cursor to a hand when over us */
  font-size: large;
  user-select: none;
  /* don't let the text get selected */
/*
  text-shadow:
    -1px -1px 0 #000,
    0 -1px 0 #000,
    1px -1px 0 #000,
    1px 0 0 #000,
    1px 1px 0 #000,
    0 1px 0 #000,
    -1px 1px 0 #000,
    -1px 0 0 #000;
*/
}
/* 
#labels>div:hover {
  color: red;
} */