/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

 .easy-autocomplete-container {
	left: 0;
	position: absolute;
	width: 100%;
	max-height: calc(100vh - 115px);
	overflow: auto;
	z-index: 999999;
	margin-top: 4px;
	background: #ffffff;
	box-sizing: border-box;
	border-radius: 4px;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.23);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.23);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.23);
}
.topSearchSuggestion ~ a {
	margin: 0;
	display: block;
	color: #222222;
	font-weight: normal;
	font-size: 14px;
	line-height: 150%;
	padding: 6px 16px;
}
.topSearchSuggestion ~ a:hover {
	background-color: #ECF3F3;
}
.topSearchSuggestion {
	margin-bottom: 4px;
}
.productSearchSuggestion {
	margin-top: 10px;
}
.topsearches {
	padding: 0px 10px !important;
	background-color: #eee;
	font-weight: 600;
	font-size: 16px;
	border: none !important;
}
.topmatches {
	padding: 9px 16px;
	background-color: #f1eff1;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.5;
	color: #909090;
}
.viewallmatches {
	padding: 5px 10px;
	background-color: #eee;
	font-weight: 600;
	font-size: 16px;
	margin-top: -1px!important;
}
a.grncrt {
	background: #005944;
	border-radius: 4px;
	font-weight: bold;
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	color: #ffffff;
	padding: 5px 10px;
	text-decoration: none;
	min-width: 114px;
	transition: 0.3s background;
}
a.grncrt:hover {
	background: #007056;
}
.easy-autocomplete-container ul li:hover {
	background: none repeat scroll 0 0 #0059441a;
	cursor: default;
}
.easy-autocomplete-container ul li.selected {
	background-color: transparent;
	cursor: default;
}
.easy-autocomplete-container ul li.selected:hover {
	background: none repeat scroll 0 0 #0059441a;
	cursor: default;
}
.drop-item-cont {
	display: flex !important;
	justify-content: space-between;
	border-bottom: 1px solid #dedede;
	padding: 10px 15px;
	align-items: center;
	transition: .3s background;
}
.drop-item-cont:hover{
	background: #E5EEED;
	}
.drop-item-1 {
	display: flex !important;
	justify-content: flex-start;
	flex-grow: 1;
	align-items: flex-start;
	width: calc(100% - 114px);
}
.drop-item-1:hover .drop-item-111 {
	text-decoration: underline;
}
.drop-item-11 {
	padding: 0 12px;
	flex-grow: 1;
	max-width: calc(100% - 50px);
}
.drop-item-1 > img {
	border-radius: 4px;
	width: 50px;
	height: 50px;
	object-fit: cover;
}
.drop-item-111 {
	font-size: 14px;
	line-height: 19px;
	color: #222222 !important;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
	width: 100%;
	max-width: 100%;
}
.drop-item-112 {
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	color: #222222;
}
.easy-autocomplete-container ul {
	border-top: none;
	margin-bottom: 0;
	border: 1px solid #f1eff1;
	box-sizing: border-box;
	border-radius: 4px;
}
li.topsearches:last-child .drop-item-cont {
	border-bottom: none;
}
.search-container-autoCmplt {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0;
}
.shroes_input {
	width: 100%;
	display: block;
}
.easy-autocomplete {
	width: 100% !important;
}
.easy-autocomplete input:focus {
	outline-color: #909090;
}
.highlight {
	font-weight: bold;
}
.site-hdr-new .search-list-top .search_iconz {
	border-radius: 0 5px 5px 0;
	right: 1px;
	top: 1px;
	height: 38px;
	border: 0;
	background: transparent;
}
button.grncrt:disabled {
	background: #DEDEDE!important;
	color: #909090;
}
@media (max-width: 840px) {
	.search-container-autoCmplt{
		max-width: 100%;
	}
}
@media (max-width: 470px) {
.drop-item-cont {
	justify-content: flex-end;
	flex-wrap: wrap;
}
}
