<style>
  .input-holder {
    position: relative;
  }
  .city-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 260px;
    overflow-y: auto;
    z-index: 20;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
  .city-suggestions li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5; /* divider line between rows, like Chase */
  }
  .city-suggestions li:last-child {
    border-bottom: none;
  }
  .city-suggestions li:hover,
  .city-suggestions li.active {
    background: #eef3fa;
  }
  .city-suggestions li b {
    color: #0d5aa7;
  }
</style>
