/**
 * @version     2.1.1
 * @package     Sellacious Finder Module
 *
 * @copyright   Copyright (C) 2012-2017 Bhartiy Web Technologies. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Izhar Aazmi <info@bhartiy.com> - http://www.bhartiy.com
 */


.sella-search.finder-dropdown {
	float: right;
	display: block;
	position: relative;
}
.sella-search.finder-dropdown .searchactionbtn {
	position: relative;
	line-height: 75px;
	-webkit-transition: 400ms;
	-o-transition: 400ms;
	transition: 400ms;
	height: 100%;
	width: 38px;
	z-index: 9999;
	padding-left: 4px;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
}
.sella-search.finder-dropdown .searchactionbtn .remove-search {
	display: none;
	font-size: 92%;
	margin: 0;
}
.sella-search.finder-dropdown .sella-searchwrapper {
	display: none;
	margin: 0;
	width: 365px;
	position: absolute;
	z-index: 99;
	top: 100%;
	right: -10px;
	-webkit-animation: fadeIn 400ms;
	animation: fadeIn 400ms;
}
.sella-search.finder-dropdown .sella-searchwrapper .sella-searchbar {
	background: #ffffff;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	-ms-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	-o-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	padding: 15px;
}
.sella-search.finder-dropdown .sella-searchbar .sellaformarea label {
	display: block;
	padding: 0 0 0 6px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: bold;
	color: #666;
}
.sella-search.finder-dropdown .sella-searchbar .sellaformarea .sellainputarea{
	position: relative;
}
.sella-search.finder-dropdown .sellaformarea input {
	border: 1px solid #ccc;
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	padding: 4px 14px;
	width: 100%;
	outline: 0 !important;
	margin-bottom: 0;
	height: 40px;

	transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-webkit-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
}
.sella-search.finder-dropdown .sellaformarea input:focus {
	box-shadow: none;
	outline:0;
	border-color: #d0d0d0;
	background: #f9f9f9;
}
.sella-search.finder-dropdown .sellaformarea button {
	border-radius: 0 100px 100px 0;
	-moz-border-radius: 0 100px 100px 0;
	-webkit-border-radius: 0 100px 100px 0;
	-ms-border-radius: 0 100px 100px 0;
	-o-border-radius: 0 100px 100px 0;
	position: absolute;
	top: 0;
	right: 0;
	height: 40px;
	line-height: 38px;
	padding: 0px 12px;
	font-size: 14px;
}
#sella_results {
	margin-top: 4px;
}
@media (max-width: 600px){
	.sella-search.finder-dropdown .sella-searchwrapper {
	    width: 320px;
	    right: -25px;
	}
}
@media (max-width: 420px){
	.sella-search.finder-dropdown .sella-searchwrapper {
	    width: 285px;
	    right: -40px;
	}
}