@charset "UTF-8";

/* SEARCH */

#search input {
	height: 60px;
	padding: 20px 60px 20px 15px;
	line-height: 24px;
	border-radius: 0;
	outline: 0;
	-webkit-appearance: none;
	box-sizing: border-box;
	font-size: 15px;
	color: #7b7b7b;
	background-color: #fff;
	border: 1px solid #e1e1e1;
	transition: border-color .2s ease-out;
	box-shadow: none;
}

#search input:focus {
    color: #7b7b7b;
    background-color: #f6f6f6;
    border-color: transparent;
}

#search button {
    position: absolute;
	top: 50%;
	right: 0;
	width: 50px;
	font-size: 21px;
	text-align: center;
	color: #000;
	background-color: transparent;
	border: 0;
	transition: color .2s ease-out;
	transform: translateY(-50%);
	box-shadow: none;
}