@charset "utf-8";
/**
 * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter
 * @author <a href="mailto:dylan@dyve.net">Dylan Verheul</a>
 * @license MIT | GPL | Apache 2.0, see LICENSE.txt
 * @see https://github.com/dyve/jquery-autocomplete
 */
.acResults {
	padding: 0px;
	background-color: Window;
	overflow: hidden;
	z-index:100;
}

.acResults ul {
	margin: 0px;
	padding: 0px;
	list-style-position: outside;
	list-style: none;	
	background: #1999d9;
    /* background: #1276bc;*/
}

.acResults ul li {
	margin: 0px;
	cursor: pointer;
	display: block;
	overflow: hidden;
	font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 10px 5px;
    font-weight: 600;
    font-family: 'Poppins';
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease-in-out;
}
.acResults ul li:hover {background: #fff;color: #232319;}
.acLoading {
	background : url('indicator.gif') right center no-repeat;
}

.acSelect {
	background-color: Highlight;
	color: HighlightText;
}


