.live-search {
	width: 100%;
	position: absolute;
	z-index: 1000;
	margin-top: 3rem;
	padding: .625rem;
	background-color: #FFF;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	left: 0;
	display: none;
	mix-blend-mode: normal;
	box-shadow: 0 10px 30px rgba(0, 16, 61, 0.3);
	border: 0;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	min-height: 100px;
}

.live-search .result-sku {
	display: block;
	font-size: 12px;
	color: #555;
}

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

.live-search img {
	max-width: 60px;
}

.live-search .result-price .special {
	color: #dc3b4b;
	font-weight: bold;
	font-size: 16px;
	padding-right: 5px;
}

.live-search .result-price .price {
	color: #888888;
	text-decoration: line-through;
}

.live-search .result-name {
	min-height: 21px;
	max-height: 21px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.live-search .category-group {
	max-height: 450px;
	overflow-y: overlay;
}

.live-search.active {
	opacity: 1;
	transform: translateY(0);
}

.live-search .loading {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	z-index: 101;
}

.live-search .spinner {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: -0.125em;
	border: currentColor solid 0.25em;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spinner-border 0.75s linear infinite;
	z-index: 100;
}