div.block-search
{
	float: right;
}

	input.search-field
	{
		border: 1px solid #eee;
		border-right: none;
		border-radius: 5px 0px 0px 5px;
		background: #fff;
		height: 46px;
		width: 855px;
		float: left;
		padding: 0px 15px;
		font-size: 14px;
	}
	
	button.search-button
	{
		background: #fff;
		color: var(--color-main);
		position: relative;
		float: left;
		border: 1px solid #eee;
		border-left: none;
		border-radius: 0px 5px 5px 0px;
		text-align: center;
		font-size: 26px;
		padding: 9px;
		cursor: pointer;
		transition: 0.2s;
		-o-transition: 0.2s;
		-webkit-transition: 0.2s;
}
	
		a.search_link
		{
			float: left;
			width: 100%;
			box-sizing: border-box;
		}
	
			div.autocomplete_label
			{
				float: left;
				width: 100%;
			}
	
				span.autocomplete_img
				{
					margin-right: 5px;
					width: 30px;
					height: 30px;
					float: left;
					border-radius: 30px;
					background-size: cover;
					background-position: center;
					background-repeat: no-repeat;
				}
				
				span.autocomplete_name
				{
					line-height: 30px;
					display: block;
					float: left;
					width: 75%;
					white-space: nowrap;
					overflow: hidden;
					text-overflow: ellipsis;
				}
				
				span.autocomplete_price
				{
					line-height: 30px;
					display: block;
					float: right;
				}
				
				a.search_link.ui-state-focus
				{
					background: #f5f5f5;
					color: #68a9d0;
				}
