/* 
 * Leaflet Control Search v2.9.0 - 2018-05-16 
 * 
 * Copyright 2018 Stefano Cudini 
 * stefano.cudini@gmail.com 
 * http://labs.easyblog.it/ 
 * 
 * Licensed under the MIT license. 
 * 
 * Demo: 
 * http://labs.easyblog.it/maps/leaflet-search/ 
 * 
 * Source: 
 * git@github.com:stefanocudini/leaflet-search.git 
 * 
 */
 
.leaflet-container .leaflet-control-search {
	position:relative;
	float:left;
	background:#fff;
	background-clip: padding-box;
	z-index:1000;	
	margin-left: 10px;
	margin-top: 10px;
}
.leaflet-control-search.search-exp {/*expanded*/
	background: transparent;
	background-clip: padding-box;	
}
.leaflet-control-search .search-input {
	display:block;
	padding:10px;
	background: transparent;
	color:#fff;
	border:1px solid #fff;
	width:98.2%;
}
.leaflet-control-search .search-input:focus {
	background: rgba(255, 255, 255, 0.1);
	border:1px solid #fff;
}
.leaflet-control-search .search-input::placeholder {
	color:#fff;
}
.leaflet-control-search.search-load .search-input {
	background: rgba(255, 255, 255, 0.1);
}
.leaflet-control-search.search-load .search-cancel {
	visibility:hidden;
}
.leaflet-control-search .search-cancel {
	display:block;
	width:22px;
	height:22px;
	position:absolute;
	right:28px;
	margin:6px 0;
	text-decoration:none;
	filter: alpha(opacity=80);
	opacity: 0.8;		
}
.leaflet-control-search .search-cancel:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}
.leaflet-control-search .search-cancel span {
	display:none;/* comment for cancel button imageless */
	font-size:18px;
	line-height:20px;
	color:#ccc;
	font-weight:bold;
}
.leaflet-control-search .search-cancel:hover span {
	color:#aaa;
}
.leaflet-control-search .search-button {
	display:none;
	float:left;
	width:30px;
	height:30px;	
	border-radius:4px;
}
.leaflet-control-search .search-tooltip {
	position:absolute;
	top:100%;
	left:0;
	list-style: none;
	padding-left: 0;
	z-index:1010;
	overflow-y:auto;
	overflow-x:hidden;
	cursor: pointer;
	margin:0;
	width:100%;
}
.leaflet-control-search .search-tip {
	margin:0;
	padding:10px;
	display:block;
	color:#fff;
	text-decoration:none;	
	white-space:nowrap;
	vertical-align:center;
	border-bottom: solid 1px rgba(0, 136, 187, 0.9);
}
.leaflet-control-search .search-button:hover {
	background-color: #0088BB;
}
.leaflet-control-search .search-tip-select,
.leaflet-control-search .search-tip:hover {
	background-color: rgba(0, 136, 187, 0.9)
}
.leaflet-control-search .search-alert {
	cursor:pointer;
	clear:both;
	font-size:.75em;
	margin-bottom:5px;
	padding:0 .25em;
	color:#e00;
	font-weight:bold;
	border-radius:.25em;
}


