/* (A) AUTOCOMPLETE WRAPPER */
.acWrap {
  display: inline-block; /* Or block if you like */
  position: relative;
  width:100%;
  margin-bottom: 10px;
}

/* (B) SUGGESTIONS */
.acWrap .acSuggest {
  position: absolute;
  top: 100%; left: 0;
  z-index: 9;
  width: 100%;
  background: #ffffff;
  border: 1px solid #eee;
  display: none;
  border-radius: 5px;
}

@keyframes slideInDown2 {
    from {
        transform: translateY(-5%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.acWrap .acSuggest ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height:400px;
  overflow-y:auto;
  animation: slideInDown2 0.6s ease;
}


.acWrap .acSuggest ul li {
  padding: 12px 20px 12px 25px !important;
  font-family:'Urbanist';
  font-weight:400;
  font-size:17px;
  background-image:url("../img/icon-location.png");
  background-repeat:no-repeat;
  background-size:20px 20px;
  background-position: 3px center;
  
    
}
.acWrap .acSuggest ul li:hover {
  background-color: #ea0029;
  color:#ffffff;
  cursor: pointer;
  background-image:url("../img/icon-location-blanco.png");
  background-repeat:no-repeat;
  background-size:20px 20px;
  background-position: 3px center;
}
