.agencia_autocomplete > input {
  height: 3rem;
  width: 280px;
  margin: 0;
  padding: 0 0.8rem 0 2.5rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 1rem;
  text-overflow: ellipsis;
  color: rgba(237,28,36, 0.3);
  outline: none;
  border-radius: 10rem;
  border: 0.05rem solid rgba(237,28,36, 0.5);
  background-image: url(../img/search.svg?nc=1);
  background-size: 1.4rem;
  background-position: left 1.05rem top 0.8rem;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all -webkit-transform 0.4s ease;
}

.agencia_autocomplete input::-webkit-input-placeholder {
	color: rgba(237,28,36, 0.5);
	transition: all 0.3s ease;
	-webkit-transition: all -webkit-transform 0.3s ease;
}
.agencia_autocomplete input:hover::-webkit-input-placeholder {
	color: rgba(237,28,36, 0.6);
	transition: all 0.3s ease;
	-webkit-transition: all -webkit-transform 0.3s ease;
}
.agencia_autocomplete input:focus::-webkit-input-placeholder {
	padding: 0.1rem 0.6rem;
	font-size: 0.95rem;
	color: rgba(237,28,36, 0.4);
}