.autocomplete {
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 999;
  width:40%;
  /*top: 100%;
  left: 0;
  right: 0;*/
}

@media all and (max-width: 1200px) {
	.autocomplete-items {
		width: 60%;	
	}
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  text-align: left;
  background-color: #fff;
  color:#000;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  background-color: #f8f8f8;
}