* {
	margin:		0;
	padding:	0;
}
/*MAPA*/
#mapa {
	height:	100vh;
	width:  100%;
}

.container{
	background-color: white;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
}

.menu{
	background-color: white;
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
	/*align-content: center;*/
	/*justify-content: space-between;*/

}
.separador{
	background-image: 	linear-gradient(90deg, #2d67d7, #7689ad);
	width: 100%;
	height: 5px;
}

#loading {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 20px;
	border-radius: 10px;
}
#loading img {
	display: block;
	margin: 0 auto 10px;
}

.tools {
	padding: 50px;
}

.btns {
	background-color: white;
	border: 1px  solid darkgrey; 
	border-radius: 5px;
}

/*
table, td, th {
	border: 1px solid black;
  }
*/
.tdsAlig {
	text-align: center;
	vertical-align: middle;
}

/* Esconde o input seletor de arquivo */
input[type='file'] {
	display: none;
  }

/* Aparência que terá o seletor de arquivo */

label {
	/*border: 1px  solid rgb(8, 8, 8);*/
	cursor: pointer;
  }