.divCodePostal div {
   background-color: black;
    color: white;
    font-family: "montserrat";
    margin-bottom: 5px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 500px;
}  

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
  width: 600px;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  margin: 0px;
}
.autocomplete-items div {  
  padding: 10px;
  cursor: pointer;
  background-color: black; 
  border-bottom: 1px solid #d4d4d4; 
  border: 1px solid #d4d4d4;
  margin: 0px;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #2f2f2f; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #fff; 
}