.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    z-index: 199;
    text-align: left;
    margin-top: 48px;
    font-family: 'SegoeUI', 'Segoe UI';
    color:rgb(0, 0, 0);
    min-width: 300px;
  }

  .autocomplete-item {
    background-color: #fff;
    padding: 8px;
    cursor: pointer;
  }

  .autocomplete-item:hover {
    background-color: #e9e9e9;
  }

  .autocomplete-search {
    background-color: #fff;
    padding: 8px;
    color: rgb(166, 166, 166)
  }

  .autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
    padding: 8px;
    cursor: pointer;
  }

  .list-footer-wrapper  {
    padding-top: 8px;
    display: flex;
    background-color: #F4F4F4;
  }
  
  .list-footer-right  {
    text-align:right;
    background-color: #F4F4F4;
    /*background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 25px;*/
    height: 30px;
    margin-right: 8px;
    width: 50%;
    font-style: italic;
    color: #A6A6A6;
  }
  
  .list-footer-left  {
    text-align:left;
    background-color: #F4F4F4;
    height: 30px;
    margin-left: 8px;
    width: 50%;
    color: #A6A6A6;
  }
  
  .list-footer img {
    width: 25px;
  }