/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 31/07/2015, 09:25:27 AM
    Author     : User
*/
.ui-autocomplete {
    list-style: none;
    background: #FFF;
    padding:0px!important;
    margin:0px!important;
    max-width: 600px;
}
.autocomplete-choice{
    min-height: 36px;
    line-height:36px;
    cursor: pointer;
}
.autocomplete-choice a{
    display:block;
    padding-left: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}
.autocomplete-choice .icon{
    height: 16px;margin-right: 5px;
    vertical-align: middle;
    width: 16px;
}

.autocomplete-choice.localidad .icon {
    background-image: url('icons/marker.png');
    height: 16px;
    background-repeat: no-repeat;
}

html .ui-autocomplete {
    max-height: 300px;
    overflow-y: auto; 
}

.ui-autocomplete .ui-state-highlight{      
font-style: normal;
    background: #565656;
    color: #FFF;
    border: none;
}

.ui-autocomplete .ui-menu-item-alternate{      
    background: #F5F5F5;    
}

.ui-autocomplete li{
    min-height:40px;
    padding:5px;
    border-bottom: 1px solid #eee;
}
@media (max-width: 767px){
.ui-autocomplete {
    max-width: 80%!important;
}
}