html{
    margin:0;
    padding:0;
    touch-action: manipulation;
  }
  
  body {
    margin: 0;
    padding: 0;
    
    width: 100%;
    
    overflow:hidden;
    display:flex;
    flex-direction: column;
    touch-action: manipulation;
  }
  body > * {
    flex-shrink: 0;
  }
  
  canvas {
    display: block;
    width:100%;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    
    width: 100%;
   
    flex-grow:1;
    overflow: hidden;
  }
  
 /* 
 .box {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    flex-shrink: 1;
    min-height: min-content;
  }
  */
  
  #meuCanvas {
    
    overflow:scroll;
    
    border: 2px solid;
    height:98vh;
    /*height:90vh;*/
  }
  
  .disable-dbl-tap-zoom {
    touch-action: manipulation;
  }
  
  #movavel {
    height: 100vh;
    width: 5px;
    background: rgb(0, 50, 111);
    cursor: col-resize;
  }
  
  #meuCanvas2 {
    
    overflow: hidden;
    border: 2px solid;
   flex-grow:1;
   
    
  }
  
  iframe {
    width: 100%;
   height:100%;
    
    overflow: hidden;
  }
  
  #position {
    background-color: #333;
    color: #fff;
    margin: 0 auto;
    padding: 0;
    width:100%;
    font-family: Arial, Helvetica, sans-serif;
  }
  #position h1 {
    font-size: 28px;
    padding: 10px;
    padding-bottom: 0px;
    margin: 0 auto;
  }
  
  #position h2 {
    font-size: 15px;
    margin-left: 10px;
  }
  
  /* parte copiada do menu */
  
  #menu {
    background: #00455c;
    color: #fff;
    height: 25px;
    padding-left: 18px;
    border-radius: 0px;
  }
  
  #menu .cinza {
    background-color: rgb(83, 83, 83);
  }
  
  #menu .cinza:hover {
    background-color: rgb(34, 34, 34);
    color: white;
  }
  
  #menu .vermelho {
    background-color: red;
    font-weight: bold;
  }
  
  #menu .vermelho:hover {
    background-color: rgb(156, 0, 0);
    color: white;
  }
  
  #menu .verde {
    background: green;
    font-weight: bold;
  }
  
  #menu .verde:hover {
    background: rgb(0, 79, 0);
    color: white;
  }
  
  #menu ul,
  #menu li {
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  #menu ul {
    width: 100%;
  }
  #menu li {
    float: left;
    display: inline;
    position: relative;
  }
  #menu a {
    display: block;
    line-height: 25px;
    padding: 0 14px;
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
  }
  #menu a.dropdown-arrow:after {
    content: "\25BE";
    margin-left: 5px;
  }
  #menu li a:hover {
    color: #0099cc;
    background: #f2f2f2c6;
  }
  #menu input {
    display: none;
    margin: 0;
    padding: 0;
    height: 25px;
    width: 100%;
    opacity: 0;
    cursor: pointer;
  }
  #menu label {
    display: none;
    line-height: 25px;
    text-align: center;
    position: absolute;
    left: 35px;
  }
  #menu label:before {
    font-size: 1.6em;
    content: "\2261";
    margin-left: 20px;
  }
  #menu ul.sub-menus {
    height: auto;
    overflow: hidden;
    width: 170px;
    background: #444444;
    position: absolute;
    z-index: 99;
    display: none;
  }
  #menu ul.sub-menus li {
    display: block;
    width: 100%;
  }
  #menu ul.sub-menus a {
    color: #f2f2f2c6;
    font-size: 16px;
  }
  #menu li:hover ul.sub-menus {
    display: block;
  }
  #menu ul.sub-menus a:hover {
    background: #f2f2f2c6;
    color: #444444;
  }
  @media screen and (max-width: 800px) {
    #menu {
      position: relative;
    }
    #menu ul {
      background: #111;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      z-index: 3;
      height: auto;
      display: none;
    }
    #menu ul.sub-menus {
      width: 100%;
      position: static;
    }
    #menu ul.sub-menus a {
      padding-left: 30px;
    }
    #menu li {
      display: block;
      float: none;
      width: auto;
    }
    #menu input,
    #menu label {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
    }
    #menu input {
      z-index: 4;
    }
    #menu input:checked + label {
      color: white;
    }
    #menu input:checked + label:before {
      content: "\00d7";
    }
    #menu input:checked ~ ul {
      display: block;
    }
  }
  
  .pointer {
    cursor: pointer;
  }
  
  a:hover {
    cursor: pointer;
  }
  