.site-search {
	display: initial;
}
.live-search {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	box-shadow: 0 0 1px 0px rgba(0,0,0,.5);
	border-radius: 0 0 3px 3px;
	background: white;
	z-index: 99999999;
}
.live-search.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
}
.live-search.is-active.is-absolute {
	position: absolute;
	width: 100%;
	top: 100%;
	max-height: 90vh;
	overflow-y: scroll;
	left: 0;
}
@media (min-width: 991px) {
	.live-search.is-active.is-absolute {
		left: auto;
		width: 400px;
		right: 0;
	}
}
.live-search .live-search-title {
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	padding: 0.5rem;
	margin: 0;
	font-size: .85rem;
	color: #000;
}
.live-search ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.live-search ul li {
	list-style: none;
	float:none !important;
	padding: 0 !important;
}
.live-search ul li a {
	padding: 0.25rem 1rem !important;
	display: flex;
	align-items: center;
	flex: 1;
	text-decoration: none;
	color: #333;
}
.live-search ul li:last-child a {
	border-bottom: none;
}
.live-search .live-search-product-image {
	display: flex;
	padding-right: .5rem;
	width: 50px;
	align-items: center;
	text-align: center;
	justify-content: center;
}
.live-search .live-search-page-name,
.live-search .live-search-product-name,
.live-search .live-search-category-name {
	flex: 1;
	font-weight: normal;
	text-decoration: none;
	padding-right: 1rem;
	text-align: left;
}
.live-search .live-search-product-price {
	text-align: right;
}
.live-search .live-search-more {
	text-align: center;
	padding: 0 !important;
}
.live-search .live-search-more a {
	color: #2980b9;
	text-align: center;
	justify-content: center;
	padding: 10px !important;
	display: block !important;
	font-weight: bold !important;
}
@media (max-width: 991px) {
	.site-search {
		left: 0;
	}
	body.search-is-active {
		overflow: hidden;
	}
	.live-search.is-active.is-absolute {
		top: 30px;
		height: 85vh;
    	max-height: 85vh;
	}
}
.live-search-results .flex {
	display: flex !important;
}
