.live-search {
	width: 100%;
	position: absolute;
	z-index: 1000;
	padding: 5px 0 20px;
	margin-top: 10px;
	background-color: #FFF;
	border: 1px solid #DDD;
	border-radius:10px;

	box-shadow: 0 2px 2px #DDDDDD;
	left: 0;
	display: none;
}

.live-search .loading {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.live-search ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.live-search ul li {
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 10px;
	border-bottom: 1px solid #cdd7e1;
}

.live-search ul li:nth-child(even) {
	background-color: #FAFAFA;
}

.live-search ul li:hover {
	background-color: #F0F7FA;
}

.live-search ul li a {
	text-decoration: none;

}

.live-search ul li .product-content-cart a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.live-search .product-btn {
	background-color: #6495ed;
	padding: 10px;
	width: 20px;
	height: 20px;
}

.live-search ul li .product-add-cart a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.live-search ul li .product-add-cart img {
	min-width: 15px;
	min-height: 15px;
}

.live-search ul li .product-image {}

.live-search ul li .product-name p {}

.live-search ul li .product-name {
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 12px;
}

.live-search ul li .product-add-cart {}



.live-search ul li .product-price {
	font-size: 12px;
	font-weight: bold;
}

.live-search ul li .product-price .price {
	color: #333333;
	display: block;
}

.live-search ul li .product-price .special {
	color: #FF0000;
	text-decoration: line-through;
	display: block;
}

.live-search .product-price>.special {
	margin-top: -5px;
}

.live-search .result-text {
	text-align: center;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	background-color: #6495ed;
	position: absolute;
	bottom: 0;
	width: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.live-search .view-all-results:hover {
	color: #fff;
}

.live-search .view-all-results {
	color: #fff;
}

.live-search .product-image {
	width: auto;
}

.live-search .product-image img {
	width: auto;
}