@font-face {
  font-family: 'Calibri';
  src: url("./../assets/calibri.ttf"); }

* {
  box-sizing: border-box;
  user-select: none; }

html, body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  font-family: 'Calibri';
  background: black;
  color: white; }

.console {
  position: fixed;
  top: 22px;
  left: 0;
  height: calc(40vh - 22px);
  width: 100vw;
  font-size: 12px;
  background: black;
  border-bottom: 1px solid white;
  overflow-y: scroll;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: break-all;
  color: #666666; }
  .console.on {
    color: #ffffff; }

.console__clearbutton {
  position: fixed;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #444444; }

.console__togglebutton {
  position: fixed;
  left: 0;
  top: 0;
  width: 70px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #444444; }
  .console__togglebutton.on {
    background: #aa0000; }

.console__togglepointercapture {
  position: fixed;
  left: 75px;
  top: 0;
  width: 120px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #444444; }
  .console__togglepointercapture.on {
    background: #aa0000; }

.console__togglegestures {
  position: fixed;
  left: 200px;
  top: 0;
  width: 130px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #444444; }
  .console__togglegestures.on {
    background: #aa0000; }

.pointerarea {
  position: fixed;
  width: calc(50vw - 15px);
  height: calc(60vh - 20px);
  background: #222222;
  border: 1px solid #808080;
  padding: 5px;
  touch-action: none; }
  .pointerarea.hovered {
    background: #662222; }
  .pointerarea.pressed {
    background: #222266; }

.pointerarea1 {
  left: 10px;
  top: calc(40vh + 10px); }

.pointerarea2 {
  left: calc(50vw + 5px);
  top: calc(40vh + 10px); }

.pointerarea__child {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 20vw;
  height: 20vw;
  background: #444444;
  border: 1px solid #808080;
  padding: 5px; }

.pointer {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  opacity: 0.0;
  font-size: 16px;
  transform: translate3d(100px, 100px, 0px);
  pointer-events: none;
  background-color: #ffffff;
  color: #000000; }

/*
.pointer0 {
    background: red;
}

.pointer1 {
    background: green;
}

.pointer2 {
    background: blue;
}

.pointer3 {
    background: yellow;
}

.pointer4 {
    background: purple;
}
*/
.gesturepointer {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.0;
  transform: translate3d(100px, 100px, 0px);
  pointer-events: none;
  border: 2px solid #ff0000; }
  .gesturepointer:before {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    width: 100%;
    height: 2px;
    background: #ff0000; }
