.live-search {
    width: 100%;
    position: absolute;
    z-index: 1000;
    top: 35px;
    background-color: #FFF;
    left: 0;
    display: none;
}
.live-search .loading{
	display:none;
    background-color: #FFF;
	margin-left:auto;
	margin-right:auto;
}
.live-search .loading img{
	display:none;
    width: 0;
    height: 0;
}
.live-search ul {
	list-style-type: none;
    margin: 0px;
    padding: 10px 0;
}
.live-search ul li {
	display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
	margin: 10px 0;
	min-height: 80px;
}

.live-search ul li:hover {
	background-color: #fbfbfb;
}
.live-search ul li a{
	text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.live-search ul li .product-image{
	max-height: 70px;
	max-width: 70px;
	margin-right:20px;
	color: var(--h-color);
}
.live-search ul li .product-name p{
	display: none;
    font-size: 12px;
    text-transform: lowercase;
    color: #000;
    line-height: 1.4;
    font-weight: 100;
    font-family: 'Open Sans', sans-serif;
}
.live-search ul li .product-name{
	display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    color: var(--h-color);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    width: 70%;
}
.live-search ul li .product-price {
	font-size: 15px;
    font-weight: bold;
}
.live-search ul li .product-price .price{
	color: #000;

}
.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{
	font-weight: bold;
    text-align: center;
    font-size: 13px;
    line-height: 30px;
    color: #ffffff;
    background-color: #00a4b9;
    position: absolute;
	bottom: -30px;
    width: 100%;
}
.live-search .result-text a{
    color: #ffffff;
}
.live-search .result-text a:hover{
    color: #ffffff;
}
@media (min-width:768px) {
	.live-search ul li .product-name p{
		display: block;

	}
}
