html{
	height: 100%;
}
body{
	height: 100%;
	padding: 0;
	margin: 0;
}
#map{
	position: fixed;
	width: 100%;
	height: 100%;
}

.contenido{
	position: absolute;
    /*z-index: 10000;*/
    width: 100%;
    height: 100%;
    /*background: #525252cf;
    padding: 15px;
    display: none;*/
}


.validateError{
	border-bottom: 1px solid #F44336;
	-webkit-box-shadow: 0 1px 0 0 #F44336;
    box-shadow: 0 1px 0 0 #F44336;
}

.validateOk{
	border-bottom: 1px solid #4CAF50;
    -webkit-box-shadow: 0 1px 0 0 #4CAF50;
    box-shadow: 0 1px 0 0 #4CAF50;
}









/*CHAT*/

.chat-field{
  background-color:#fff;
  display:inline-block;
  position: relative;
	padding: 5px;
	margin-left: 10px;
	margin-bottom: 11px;
	border: 2px solid #039be5;
	border-top-right-radius: 10px;
}

.chat-field2{
  background-color:#fff;
  display:inline-block;
  position:relative;
  padding:5px;
  margin-right:10px;
	margin-bottom: 11px;
  border:2px solid #039be5;
  border-top-left-radius: 10px;
}

.chat-message{
  margin:0;
}

.example{
  width:0;
  height:0;
  border-width: 10px 0px 10px 10px;
  border-style:solid;
  border-color:#039be5 transparent transparent transparent;
  position:absolute;
  top:-2px;
  left:0;
  transform:translate(-100%,0);
}

.example2{
  width:0;
  height:0;
  border-width: 10px 10px 10px 0px;
  border-style:solid;
  border-color:#039be5 transparent transparent transparent;
  position:absolute;
  top:-2px;
  right:-20px;
  transform:translate(-100%,0);
}