@keyframes mat-progress-spinner-linear-rotate {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}

.live-search {
	position: absolute;
	right: -15px;
	left: -55px;
	z-index: 1000;
	padding: 10px 0;
	margin-top: 6px;
	background-color:#fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-shadow: 0 5px 10px rgb(65, 65, 65, 0.05);
	display: none;
}
.live-search .loading {
	padding: 4px;
	text-align: center;
	font-size: 14px;
	line-height: 1.3;
	color: #2D2D2D;
	min-height: 0;
}
.live-search .loading__img {
	position: relative;
	width: 16px;
	height: 16px;
	margin: -4px 10px 0 0;
	transform: rotate(-90deg);
	transform-origin: center;
	animation: mat-progress-spinner-linear-rotate 2000ms linear infinite;
}
.live-search ul {
	display: block;
	width: 100%;
	list-style-type: none;
	margin:0;
	padding:0;
}
.live-search ul li {
	background-color:#fff;
	min-height:50px;
	user-select: none;
}
.live-search .product-wrap {
	display:flex;
	justify-content: space-between;
	text-decoration: none;
	gap: 10px;
	padding: 10px;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
	user-select: none;
}
.live-search .product-image {
	width: 55px;
}
.live-search .product-name {
	color: #2D2D2D;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 5px;
	font-family: "Rubik Regular", sans-serif;
}
.live-search .product-options {
	color: #99A2AA;
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 5px;
	font-family: "Rubik Regular", sans-serif;
}

.live-search .product-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	font-family: "Rubik Medium", sans-serif;
	font-size: 14px;
	line-height: 1;
	color: #2D2D2D;
}
.live-search .product-price .special{
	color: #99A2AA;
	font-family: "Rubik Regular", sans-serif;
	text-decoration: line-through;
}
.live-search .result-text{
	text-align: center;
	font-size: 14px;
	line-height: 1.4;
	color:#2D2D2D;
	padding-top: 10px;
}
.live-search .view-all-results {
	color: inherit;
	border-bottom: 1px solid transparent;
}
.live-search .view-all-results:hover {
	border-bottom: 1px solid currentColor;
}
.live-search .product-image {
	width: auto;
}
.live-search .product-image__default,
.live-search .product-image img {
	width: 55px;
	height: 55px;
	object-fit: contain;
	object-position: center;
}
.live-search .product-image__default {
	background: #e3e3e3;
}
.live-search .product-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: calc(100% - 75px);
}

@media (min-width: 768px) {
	.live-search {
		right: 0;
		left: 0;
	}
	.live-search .product-image__default,
	.live-search .product-image img {
		width: 120px;
		height: 120px;
	}
	.live-search .product-inner {
		width: calc(100% - 145px);
	}
	.live-search .product-wrap {
		padding: 15px;
		gap: 15px;
	}
	.live-search .product-price {
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	.live-search .product-wrap:hover {
		background: #FFFBF4;
	}
}