body{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.botao {
  background-color: white; /* color */
  border-radius: 30px;
  border: 2px solid black; /* Black Border */
  color: blue;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.botao-mini {
  padding: 5px 10px;
  text-align: center;
  font-size: 10px;
  margin: 4px 2px;
  cursor: pointer;

}



#name{
    background-color: white;
    font-weight: bold;
    width: 30%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 20px;
    color: blue;
}
#name:focus {
    border-color: white; /* on focus */
    outline: none; /* Remove default outline */
}

#height {
    background-color: white;
    font-weight: bold;
    width: 15%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 20px;
    color: blue;
}
#height:focus {
    border-color: white; /* focus */
    outline: none; /* Remove default outline */
}


#width {
    background-color: white;
    font-weight: bold;
    width: 15%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 20px;
    color: blue;
}
#width:focus {
    border-color: white; /* focus */
    outline: none; /* Remove default outline */
}


body{
    background-color: #191970;
}

canvas{
    background-color: white;
}

#botao-salvar {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: white; /* color */
  border-radius: 30px;
  border: 2px solid black; 
  color: blue;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

#container-btnn{
  position: fixed;
  top: 30px;
  width: 200px;
  height: 300px;
  display: flex;
  flex-wrap: wrap;
}

#container2-btnn{
  position: fixed;
  top: 350px;
  width: 200px;
  height: 130px;
  display: flex;
  flex-wrap: wrap;
}

.label{
  text-align: center;
  position: fixed;
  color: #191970;
  background-color: #fff;
  width: 200px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

#nivel{
  top: 320px
}

#terreno{
 top: 5px;
}
.btnn {
  width: 50px;
  height: 50px;
  top: 0px;
  left: 0px;
  z-index: 999;
  border: rgba(0,0,255) 3px solid;
  filter: grayscale(0.7);
  -webkit-filter: grayscale(0.7);
}

.btnn img{
  width: 100%;
  height: 100%;
}

/*Borda adicionada
Cursor:Pointer add*/
.btnn:hover {
  border: rgb(15, 15, 197) 3px solid;
  cursor: pointer;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.btnn.selecionado {
  border: 3px solid rgb(199, 255, 14);
  filter: grayscale(0);
}

#botao-exportar {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: white; /* color */
  border-radius: 30px;
  border: 2px solid black; 
  color: blue;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

#tipo{
    background-color: white;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 15%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 20px;
    color: blue;
    cursor: pointer;
}
#tipo:focus {
    border-color: white;
    outline: none;
}

#container-sair {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#botao-sair {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: red;
  border-radius: 30px;
  border: 2px solid black; 
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

#modal-alert{
  position: fixed;
  top: 200px;
  left: calc( 50% - 200px);
  width: 400px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 10px;
  border: solid 1px #aba8b7;
}

#modal-alert .titulo{
  color: #191970;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 10px;
}

#modal-alert #modal-texto{
  color: #28282c;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  height: 70px;
}

#botao-fechar-modal{
  margin-top: 10px;
  margin-left: calc( 50% - 20px);
}