div.dropdownSearchable {
    display: inline-block;
    position: relative;
    display: block;
    width: 100%;
  }
  div.dropdownSearchable button {
    padding: 1em 2.5em 1em 2em;
    background-color: #fff !important;
    border: 0px;
    border-radius: 2px;
    border: 1px solid #ededed !important;
    color: #222 !important;
    text-align: right;
    height: auto;
  }
  div.dropdownSearchable button:before, div.dropdownSearchable button:after {
    display: block;
    content: "";
    width: 1px;
    height: 8px;
    background: #59a59a;
    position: absolute;
    top: 45%;
  }
  div.dropdownSearchable button:before {
    right: 21px;
    transform: rotate(-45deg);
  }
  div.dropdownSearchable button:after {
    right: 16px;
    transform: rotate(45deg);
  }
  div.dropdownSearchable ul {
    display: none;
    position: relative;
    background: #fff;
    list-style: none;
    border: 1px solid #f0f0f0;
    line-height: 1em;
    top: 0px;
    left: 0px;
    box-shadow: 0px 0px 3px 1px #ccc;
    padding: 0;
    width: 99%;
    margin: 0;
    z-index: 1;
    max-height: 250px;
    height: auto;
    overflow-y: scroll;
  }
  div.dropdownSearchable ul li {
    padding: 0.8em;
    cursor: pointer;
    transition: background 250ms;
    font-size:14px;
    position:relative;
  }

  div.dropdownSearchable ul li span
  {
      height: 25px;
  }

  div.dropdownSearchable ul li .local-iata {
    font-size:9px;
    color:var(--gray);
    position:absolute;
    top:27px;
    right: 21px;
  }



  div.dropdownSearchable ul li i {
      color:var(--primary);
      font-size:9px;
  }


  div.dropdownSearchable ul li:hover {
    background: #f0f0f0;
  }
  div.dropdownSearchable ul li.searchInput {
    padding: 0.5em;
  }
  div.dropdownSearchable ul li.searchInput input {
    width: 100%;
    border: 0px;
    border: 1px solid #ccc;
    padding: 1em;
  }
  
  .searchContainer .savedSearches {
    margin: 0.8em 0;
  }


  /*
 *  STYLE 3
 */

.scrollbar-result-route::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 3px #59a59a03;
	background-color: #F5F5F5;
}

.scrollbar-result-route::-webkit-scrollbar
{
	width: 3px;
	background-color: #F5F5F5;
}

.scrollbar-result-route::-webkit-scrollbar-thumb
{
	background-color: var(--primary);
}