        .autocomplete {
          position: absolute;
          width: 100%;
        }
        .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: 42px;
    	  left: 0px;
          right: 0px;
          max-height: 500px;
          overflow: auto;
        }
        .profile-form .autocomplete-items {
          top: 100%;
        }
        .autocomplete-items div {
          padding: 2px 10px;
          cursor: pointer;
          background-color: #fff;
          border-bottom: 1px solid #d4d4d4;
          color: #000;
          font-size: 16px;
    color: #1e1e1e;
    font-size: 24px;
    line-height: 110%;
    text-transform: uppercase;
    font-family: "Bebas Neue", "Arial", sans-serif;
    font-weight: 700;
        }
        .autocomplete-items div:hover {
          /*when hovering an item:*/
          background-color: #e9e9e9;
        }
