/*
 * search.scss
 * -----------------------------------------------
*/
.search-form {
	margin-bottom: 0;
	position: relative;
	.search-field {
		position: relative;
		background: #ffffff;
		display: block;
		font-size: 14px;
		width: 100%;
		height: 55px;
		font-weight: 400;
		border: 1px solid #eeeeee;
	}
	.search-submit {
		border: none;
		color: #fff;
		height: 100%;
		left: auto;
		padding: 8px 17px;
		position: absolute;
		right: 0;
		top: 0;
		border-radius: 0;
		@include transition(all .3s ease-in-out);
		&:hover {
			background: #111;
		}
	}

}