textarea:focus, input:focus{
    outline: none;
} 


.leaflet-container .leaflet-control-search {
	position:relative;
	float:left;
	background:#fff;
	color:#1978cf;
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 1);
	z-index:1000;	
	margin-left: 10px;
	margin-top: 10px;
}

.leaflet-control-search .search-input {
	display:block;
	float:left;
	background: #fff;
	border:none;
	border-radius:2px;
	height:22px;
	padding:0 20px 0 4px;
	margin:4px 0 4px 4px;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    letter-spacing: 0.25px;
    font-size: 14px;
    font-weight: 300;
    color: #00205c;
    min-width: 100px;

}

/*getting rid of the stupid load and cancel icons*/

.leaflet-control-search.search-load .search-input {
	display: none;
}
.leaflet-control-search.search-load .search-cancel {
	display: none;
}
.leaflet-control-search .search-cancel {
	display:none;
	width:0;
	height:22px;
	position:absolute;
	right:0;
	margin: 0;
	text-decoration:none;
}

.leaflet-control-search .search-cancel:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}
.leaflet-control-search .search-cancel span {
	display: none;
}

/*search button*/

.leaflet-control-search .search-button {
	display:block;
	float:left;
	width:30px;
	height:30px;	
	background: url('../images/search-icon.svg') no-repeat center center #fff;
    background-size: 14px;
	border-radius:4px;
}

.leaflet-control-search .search-button:hover {
	background-color: #f4f4f4;
}

/*search list container*/

.leaflet-control-search .search-tooltip {
	position:absolute;
	top:28px;
	left:-2px;
	float:left;
	list-style: none;
	padding: 0;
	min-width:162px;
    max-height: 490px;
    box-sizing: border-box;
	background-clip: padding-box;
    border: 2px solid rgba(0,0,0,0.2);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #ffffff;
	overflow-y:auto;
	overflow-x:hidden;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    letter-spacing: 0.25px;
    font-size: 14px;
    font-weight: 500;
    color: #00205c;
    -ms-overflow-style: none;  
    scrollbar-width: none; 
}

.leaflet-control-search .search-tooltip span {
    font-weight: 300;
    padding: 0 0 0 2px;
}

.leaflet-control-search .search-tooltip::-webkit-scrollbar {
 display: none;
}

/*search list*/

.leaflet-control-search .search-tip {
	margin:2px;
	padding:3px 6px;
	display:block;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-decoration:none;	
	white-space:nowrap;
	vertical-align:center;
    cursor: pointer;
}

.leaflet-control-search .search-tip-select,
.leaflet-control-search .search-tip:hover {
	background-color: #f4f4f4;
}

.leaflet-control-search .search-alert {
    display: none;
	cursor:pointer;
	clear:both;
	font-size:.75em;
	margin-bottom:0px;
	padding:0;
	color:#e00;
	font-weight:bold;
	border-radius:.25em;
}


