﻿/* CUSTOM Address finder CSS */

ul.af_list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: solid 1px #999;
  background: #fff;
  font-size: 13px;
  z-index: 1001;
  color: #3e3e3e;
}

@media(max-width: 500px) {
  ul.af_list {
    width: 80%;
  }
}


  ul.af_list li.af_item {
    cursor: pointer;
    padding: 10px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px solid #DBDBDB;
  }

    ul.af_list li.af_item.af_hover {
      background-color: #1478D0;
      color: #FFFFFF;
    }

    ul.af_list li.af_item .af_hl {
      font-weight: bold;
    }

  ul.af_list li.af_empty {
    padding: 5px 5px;
    border-bottom: 1px solid #DBDBDB;
  }
