.header-search.is-open {
	z-index: 100000;
}

.header-search .auto-complete-close {
	position: absolute;
	top: 0;
	left: 66px;
	z-index: 5;
	display: block;
	width: 42px;
	height: 42px;
	flex: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #777;
}

.header-search .auto-complete-close[hidden] {
	display: none;
}

.header-search .auto-complete-close::before,
.header-search .auto-complete-close::after {
	position: absolute;
	top: 20px;
	left: 13px;
	width: 16px;
	height: 1px;
	background: currentColor;
	content: '';
}

.header-search .auto-complete-close::before {
	transform: rotate(45deg);
}

.header-search .auto-complete-close::after {
	transform: rotate(-45deg);
}

.search-autocomplete-loader {
	position: absolute;
	top: 13px;
	left: 79px;
	z-index: 5;
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(100, 100, 100, .28);
	border-top-color: #f0c000;
	border-radius: 50%;
	animation: moweb-search-spin .7s linear infinite;
}

.header-search.is-loading .search-autocomplete-loader {
	display: block;
}

@keyframes moweb-search-spin {
	to { transform: rotate(360deg); }
}

#search-auto-complete.search-suggestions {
	position: absolute;
	top: 42px;
	right: 0;
	left: 0;
	z-index: 100000;
	display: none;
	max-height: 471px;
	overflow-y: auto;
	border: 0;
	background: #fff;
	box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .18);
}

#search-auto-complete.search-suggestions.is-open {
	display: block;
}

#search-auto-complete ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

#search-auto-complete .auto-complete-product {
	width: 100%;
	min-height: 47px;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #eee;
	background: #fff;
}

#search-auto-complete .auto-list-wrappr {
	display: flex;
	width: 100%;
	min-height: 47px;
	align-items: stretch;
}

#search-auto-complete .auto-complete-product a {
	display: block;
	min-width: 0;
	flex: 1 1 auto;
	padding: 10px 18px 10px 0;
	color: #333;
	text-decoration: none;
}

#search-auto-complete .search-auto-complete-text {
	overflow: hidden;
	font-size: 14px;
	font-weight: 600;
	line-height: 25px;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#search-auto-complete .search-auto-complete-text strong {
	font-weight: 400;
}

#search-auto-complete .search-auto-copyto-input {
	display: flex;
	width: 56px;
	min-width: 56px;
	height: 46px;
	flex: 0 0 56px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 12px 17px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #777;
}

#search-auto-complete .search-auto-copyto-input svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

#search-auto-complete .auto-complete-product:hover,
#search-auto-complete .auto-complete-product.selected {
	background: #f3f3f3;
}

#search-auto-complete .auto-complete-product:hover a,
#search-auto-complete .auto-complete-product.selected a {
	color: #000;
}

.autocomplete-overlay {
	position: fixed;
	inset: 0;
	z-index: 99990;
	display: none;
	background: rgba(0, 0, 0, .58);
}

.autocomplete-overlay.is-open {
	display: block;
}

body.dark-theme #search-auto-complete.search-suggestions,
body.dark-theme #search-auto-complete .auto-complete-product {
	background: #303030;
}

body.dark-theme #search-auto-complete .auto-complete-product {
	border-bottom-color: #444;
}

body.dark-theme #search-auto-complete .auto-complete-product a {
	color: #e1e1e1;
}

body.dark-theme #search-auto-complete .search-auto-copyto-input,
body.dark-theme .header-search .auto-complete-close {
	color: #fff;
}

body.dark-theme #search-auto-complete .auto-complete-product:hover,
body.dark-theme #search-auto-complete .auto-complete-product.selected {
	background: #424242;
}

body.dark-theme #search-auto-complete .auto-complete-product:hover a,
body.dark-theme #search-auto-complete .auto-complete-product.selected a {
	color: #fff;
}

@media (max-width: 767px) {
	.header-search .auto-complete-close {
		left: 65px;
	}

	#search-auto-complete.search-suggestions {
		max-height: min(471px, calc(100vh - 155px));
	}
}
