#eshop-search.eshop-search  {
  position: relative;
}
.eshop-search .eshop-input-prepend{
	display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 2px 3px 5px -5px rgb(0 0 0/9%),2px 4px 5px -5px rgb(0 0 0/17%),5px 3px 5px -5px rgb(0 0 0/9%);
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(202.5, 4.4%, 35.3%);
  padding: 0;
}
.eshop-search .eshop-input-prepend input[type="text"], .eshop-search .eshop-input-prepend input:focus {
	border: none;
    box-shadow: none;
	padding: 0 12px;
	background:#fff;
	outline: none;
}
.eshop-search .eshop-input-prepend .btn {
	background:#fff;
}
#product_search{
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    display: block;
    margin: 0;
    outline: 0 none !important;
    padding: 0.4em 0;
    width: 100%;
}
.ui-icon-searchfield:after {
    content: "";
    height: 18px;
    left: 7px;
    margin-top: -9px;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    width: 18px;
}
.ui-icon-searchfield:after{
    background-position: -612px 50%;
}
.ui-icon, .ui-icon-searchfield:after {
    background: url("../images/search-icon.png") no-repeat scroll 98% 50% #EFF8FA;
}
.ui-listview-filter .ui-input-search {
    display: block;
    margin: 5px;
    width: auto;
}
.ui-input-search {
    padding-left:30px;
    padding-right: 5px; 
}
.ui-input-search, div.ui-input-text {
    background-image: none;
    margin: 0.5em 0;
    position: relative;
}
.ui-shadow-inset {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.eshop-loadding{
	 background: url("../images/loader.gif") no-repeat scroll right 8px transparent !important;
}
#eshop_result{
	z-index: 9;
	position: absolute;
	top: 100%;
	list-style: none;
	margin: 0px;
	padding: 0;
	border-radius: 4px;
  max-height: 350px;
  overflow-y: auto;
  background-color: #fff;
  margin-inline-start: auto;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,400px),1fr));
  width: 100%;
  box-shadow: 1.1px 4.5px 3.6px rgba(0,0,0,.024),3px 12.5px 10px rgba(0,0,0,.035),7.2px 30.1px 24.1px rgba(0,0,0,.046),24px 100px 80px rgba(0,0,0,.07);
}
#eshop_result::before {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #ebebf0;
  pointer-events: none;
  left: 100%;
  transform: translateX(-150%);
  top: -20px;
  position: absolute;
}
#eshop_result li{
	line-height: 20px;
	cursor: pointer; 
	display: flex;
    align-items: center;
	gap:12px;
	border-top: 1px solid #ebebf0;
	border-right: 1px solid #ebebf0;
}
#eshop_result li:hover{
	background-color:#f7f7f7; 
}
#eshop_result img{
 	border: 1px solid #C5C5C5;
    padding: 3px;
	border-radius: 100%;
	
}
#eshop_result li a {
  padding: 12px;
  display: flex;
  border-width: 1px 0 0;
    border-top-width: 1px;
  border-style: none;
  font-size: 14px;
  height: 100%;
  text-decoration: none;
  width: 100%;
  position: relative;
  transition: all .075s ease-out;
}
#eshop_result li a::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="10" height="10" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>');
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translate3d(0,-50%,0);
  background: #fff;
  border: 1px solid #626668;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity:0;
}
#eshop_result li a:hover::after {
	opacity:0.7;
}
#eshop_result li a .eshop-product-box {
  flex: 1;
  padding: 0 5px 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:6px 16px;
}
#eshop_result li a .eshop-product-box .eshop-product-name {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 8px;
	color: hsl(197.1, 3.8%, 35.9%);
}
#eshop_result li a .eshop-product-box .eshop-product-price .price {
	font-weight: 600;
	font-size: 14px;
	color: hsl(192, 9.4%, 10.4%);
}
#eshop_result li a .eshop-product-box .eshop-product-price .product-price , #eshop_result li a .eshop-product-box .eshop-product-price small {
	color: hsl(192, 9.4%, 10.4%);
}
#eshop_result .eshop-no-poducts {
	padding:12px;
	background:#fff;
	width: 100%;
}