/*************** Buscador genérico  ****************/
.buscador input {
	outline: none;
}
.buscador input[type=search] {
	position: relative;
	float: right;
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-size: 100%;
}

.buscador input::-webkit-search-decoration,
.buscador input::-webkit-search-cancel-button {
	display: none; 
}

.buscador input[type=search] {
	border: solid 1px #ccc;
	padding: 1px 32px 3px 10px;
	margin: 0px 0px 5px 0px;
	width: 130px;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.buscador input[type=search]:focus {
	width: 180px;
	background-color: #fff;
	/*border-color: #960;*/
	
	-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
	-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
	box-shadow: 0 0 5px rgba(109,207,246,.5);
}

.buscador input:-moz-placeholder {
	color: #999;
}
.buscador input::-webkit-input-placeholder {
	color: #999;
}

.buscador button {
	position:absolute;
	top:5px;
	right:20px;
	
	border:none;
	background: transparent;
	color:#555;
	font-size:1.1em;
}

/*************** Buscador solo lupa ****************/
.buscador .lupa input[type=search] {
	width: 5px;
	background: #ededed url(../img/search-icon.png) no-repeat 50% center;
	padding-left: 15px;
	padding-right: 15px;
	color: transparent;
	cursor: pointer;
}
.buscador .lupa input[type=search]:hover {
	background-color: #fff;
}
.buscador .lupa input[type=search]:focus {
	width: 130px;
	padding-right: 32px;
	color: #000;
	background-color: #fff;
	cursor: auto;
	background-position: 95% center;
}

.buscador .lupa input:-moz-placeholder {
	color: transparent;
}
.buscador .lupa input::-webkit-input-placeholder {
	color: transparent;
}

.buscador .lupa button {
	display: none;
}
