/* header */


body {
  font-family: 'Roboto';font-size: 12px;
  color:#fff;
}

.center{
  align-items: center;
}

.h1{
  margin: 30px auto;
  font-size:12px;
  font-family: 'Roboto', sans-serif;
}

.h2{
  color:#c0c0c0;
  font-size:10px;
  font-family: 'Roboto', sans-serif;
}

.reloj{
  position: relative;
  width: 20px;
  height: 20px;
  align-items: left;
  font-family: 'Roboto';
  color:#fff;
  margin: 0;
  padding: 0;
}





/* menu */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #000080;
}

.active {
  background-color: #ff0000;
}

/* wrap*/

html{
  background: #000;
  color: #fff;
}

.wrap{
  width: 1200px;
  margin: 30px auto;
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 300px auto;
}

.form input{
  width: 100%x;
  border: none;
  padding: 10px;
  font-size: 1em;
  outline: none;
  margin-bottom: 5px;
  box-sizing: border-box;
  text-transform: capitalize;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.form input:focus{
  background: #aaa;
}

.form .form_btn{
  color:#fff;
  background: rgb(63, 192, 46);
}

/* map */

#map {
  height: 100vh;
  width: 100%;
  border-radius: 10px;
}

/* 2gpas */

*{
  padding: 0;
  margin: 0;
}

.result{
  padding: 30px;
  text-align: center;
}



/**/

.autocomplete-container {
  /*the container must be positioned relative:*/
  position: relative;
}

.autocomplete-container input {
  width: calc(100% - 43px);
  outline: none;
  
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
  padding-right: 31px;
  font-size: 16px;
}