* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 'Roboto', sans-serif;
    background-color: gainsboro;
    width: 100%;
    height: auto;
}


header {
    
    width: 100%;
    height: 50px;
    background-color: cornflowerblue;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
 
}

.contenedor  {
    
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
    
}

.ubar {
    
   font-family: 'Roboto', sans-serif; font-weight: 500;  
    position: fixed;
    color: white;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.6em;
    width: 100%;
    z-index: -1;
    
    
    
}



.hijo {
    
    position: absolute;
    background-color: dimgray;
    width: 100%;
    height: 60px;
    margin: auto;
    z-index: 100;
    top: 50px;
    border-top: 1px solid white;
    box-shadow: 0px 3px 5px 0px gray;
    
    
      
}


.hijo .foto {
    
    border-radius: 5px;
    margin-top: 5px;
    margin-left: 5px;
    cursor: pointer;
    width: 50px;
    border: 2px solid white;
    
}


.datos {
    
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.98em;
    left: 115px;
    top: 11px;
    color: white;
    
}


a {
    text-decoration: none;
}

.hijo .icon_next {
    
    float: left;
    cursor: pointer;
    
        
    
}


.hijo .icon_next:active {
    
    background-color: cornflowerblue;
    
    
}


#contenedor_mapa {
    width: 100%;
    height: auto;
    margin: auto;
}




.ventana1 {
    
    position: relative;
    float: left;
    top: 130px;
    width:80%;
    height: auto;
    margin-bottom: 10px;
    background-color: #ea8004;
    border-radius: 10px;
    left: 5px;
    box-shadow: 0px 3px 5px 0px gray;
    

}


.chat {
    
    font-family: 'Roboto', sans-serif; font-weight: 300;
    padding: 15px;
    color: white;
    font-size: 1em;
   
    
}

.ventana2 {
    
    position: relative;
    float: right;
    top: 130px;
    width:80%;
    height: auto;
    background-color: #6494ed;
    border-radius: 10px;
    right: 5px;
    margin-bottom: 10px;
    box-shadow: 0px 3px 5px 0px gray;
    

}



.hora {
    
    font-family: 'Roboto', sans-serif; font-weight: 300;
    color: white;
    padding-right: 5px;
    padding-bottom: 5px;
    float: right;
    clear: both;

    
    
}


#formulario {
    
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
      
        
}



fieldset {
    
    border:none;
    clear: both;
    

}

input {

  border-radius: 5px;
 -webkit-appearance: caret;
  width:100%;
  height:35px;
  font-family:sans-serif;
  font-size: 0.8em;
  color: gray;
  padding-left: 10px;
  margin: 10px;
   
}







  


