/* CSS Document */
.search_content {
	display:flex;
	width:90px;
	border-left:1px solid #DBDBDB;
}

.search_content input{
	display: none;
	padding:6px 15px;
	font-size:14px;
	font-family:'Myriad Pro', sans-serif;
	border:1px solid #eeeeee;
	width:250px;
	border-radius:18px;
	height:44px;
	padding-right:40px;
}

.search_content a{
	flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
}

*:focus {
	outline: none;
}

.search_content.resp_open{
	width:calc(100% - 8px);
	max-width:100% !important;
}

#search_query{
	display: none;
	width:calc(100% - 85px) !important;
	position:absolute;
	line-height:93px;
	height:93px;
	font-size:30px;
	border:none;
	border-left:1px solid #DBDBDB;
	border-right:1px solid #DBDBDB;
	padding:0px 20px;
}

#search_query.resp_open{
	display:block;
}