.live-search {
	position: absolute;
	z-index: 1000;
	border-radius: 0 0 16px 16px;
	width: 555px;
	min-height: 113px;
	height: 100vh;
	max-height: 380px;
	left: 0;
	top: calc(100% + 13px);
	display: none;
	background-color: #fff;
	overflow: hidden;
}
.live-search.empty_list{
	height: 170px;
}
.live-searchwrapper{
	height: 100%;
	max-height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: column;
}
.live-search.empty_list ul:not(.search_products){
	display: none;
}
/* description */
.live-search ul li .product-name{
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: #2B2B2B;
}
.live-search .loading{
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.live-search ul {
	list-style-type: none;
	margin:0px;
	padding:16px;
	border-bottom: 1px solid #D1D1D1;
}
.live-search.empty_list ul{
	border: none;
}
.live-search ul li {
	cursor:pointer;
	padding:0;
	margin:0;
	background-color:#FFF;
	margin-bottom: 16px;
}
.live-search ul li:last-child{
	margin-bottom: 0;
}
.live-search ul li.searchtitle{
	font-size: 14px;
	line-height: 140%;
	color: #999999;
	margin-bottom: 8px;
}
.live-search ul li:not(.searchtitle):hover {
	background-color:transparent;
	color: #99CD06;
}
.live-search ul li:not(.searchtitle):hover .product-name{
	color: #99CD06;
}
.live-search ul li a{
	text-decoration: none;
	display:flex;
	align-items: center;
}
.live-search ul li .product-image{
	margin-right:8px;
}
.live-search ul li .product-add-cart{
	float: right;
	padding: 7px;
}

.live-search ul li .product-price {
	text-align: right;
	font-size: 12px;
	font-weight: bold;
	float:right;
	margin-top:10px;
	width:25%;
}
.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;
}
.result-text{margin-top: auto;}
.live-search .result-text a{
	text-align: center;
	font-size: 16px;
	line-height: 1;
	color:#000;
	padding: 10px;
	width: 100%;
	background-color: #99CD06;
	display: flex;
	justify-content: center;
}
.live-search .result-text .btn{
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
@media (max-width: 1024px) {
	.live-search{
		width: 100%;
	}
}
@media (max-width: 680px) {
	.live-search{
		width: calc(100vw - 30px);
		left: unset;
		right: 0;
	}
}