<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Taxicode Autocomplete API */

.tc-autocomplete-suggestions {
	position: absolute;
	z-index: 10;

	height: auto;
	min-width: 400px;

	margin: 0px;
	padding: 0px;

	max-height: 400px;
	overflow-y: auto;

	background: #FFF;
	color: #000;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	list-style: none;
}

.tc-autocomplete-suggestions li {
	border-top: 1px solid #CCC;
	padding: 5px 10px;
	line-height: 20px;
	cursor: pointer;
}

.tc-autocomplete-suggestions li.tc-autocomplete-title, .tc-autocomplete-suggestions:hover li.tc-autocomplete-title {
	padding: 3px 10px;
	background: #CCC;
	font-weight: bold;
	color: #000 !important;
	cursor: default;
}

.tc-autocomplete-suggestions li.tc-autocomplete-title .tc-google-logo {
	margin: 4px -8px 0px 0px;
	float: right;
	width: 104px;
	background-image: url('/imgs/common/powered-by-google-on-white.png');
	width: 104px;
	height: 16px;
}

.tc-autocomplete-suggestions li:nth-child(1) {
	border-top: none;
}

.tc-autocomplete-suggestions li:hover, .tc-autocomplete-suggestions li.selected {
	background: #F0F0F0;
	color: #C93636 !important;
}

.tc-autocomplete-suggestions li .comma1,
.tc-autocomplete-suggestions li .comma2 {
	font-size: 0px !important;
}

.tc-autocomplete-suggestions li .text-block1 {
	font-size: 13px;
	font-weight: bold;
	color: #000;
}

.tc-autocomplete-suggestions li .text-block2 {
	font-size: 13px;
	color: #000;
}

.tc-autocomplete-suggestions li span, .tc-autocomplete-suggestions li .comma {
	font-size: 11px;
	color: #999;
}

input.tc-autocomplete-searching[type=text] {
	background-image: url('/imgs/taxicode-main/circle-loader-padded.gif') !important;
	background-size: 21px 16px;
	background-position: right;
	background-repeat: no-repeat;
	padding-right: 25px;
}</pre></body></html>