/**
 * Inline header search with live ajax results.
 */

/* Disable legacy fullscreen search overlay */
.site-search#search {
	display: none !important;
}

.navbar-search,
.navbar-search:hover,
.navbar-search:focus {
	text-decoration: none !important;
	border: 0 !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.navbar-primary .navbar-col:last-child > div {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	width: 100%;
}

@media (min-width: 1120px) {
	.navbar-primary .navbar-col:last-child {
		display: flex;
		justify-content: flex-end;
	}
}

.au-header-search {
	position: relative;
	flex: 1 1 12rem;
	max-width: 15rem;
}

.au-header-search--mobile {
	display: none;
	flex: 1 1 auto;
	max-width: none;
	width: 100%;
	margin: 0 0 1.25rem;
}

.au-header-search__form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0;
}

.au-header-search__icon {
	position: absolute;
	top: 50%;
	left: 0.875rem;
	z-index: 1;
	display: inline-flex;
	color: var(--au-gray-600, #666);
	line-height: 1;
	pointer-events: none;
	transform: translateY(-50%);
}

.au-header-search__icon .cs-icon {
	font-size: 0.95rem;
}

.au-header-search__form input.au-header-search__input[type="search"] {
	width: 100%;
	min-height: 2.5rem;
	padding: 0.55rem 0.875rem 0.55rem 2.75rem;
	color: var(--au-gray-900, #111);
	font-size: 0.875rem;
	line-height: 1.4;
	background: #fff;
	border: 1px solid var(--au-color-border-subtle, #e0e0e0);
	border-radius: 0;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.au-header-search__form input.au-header-search__input[type="search"]::placeholder {
	color: var(--au-color-text-faint, #8c877f);
	opacity: 1;
}

.au-header-search__form input.au-header-search__input[type="search"]:focus {
	border-color: var(--au-gray-900, #111);
	outline: none;
	box-shadow: 0 0 0 1px var(--au-gray-900, #111);
}

/* Live search results */
.au-header-search .searchwp-live-search-results {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	left: 0;
	z-index: 10050;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--au-color-border-subtle, #e0e0e0);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.au-header-search .searchwp-live-search-results.searchwp-live-search-results-showing {
	min-height: 0;
	max-height: 24rem;
	margin-top: 0;
	overflow-y: auto;
}

.au-header-search .searchwp-live-search-result {
	border-top: 1px solid var(--au-color-border-faint, #eaeaea);
}

.au-header-search .searchwp-live-search-result:first-child {
	border-top: 0;
}

.au-header-search .searchwp-live-search-result--title a,
.au-header-search .searchwp-live-search-result a {
	display: block;
	padding: 0.875rem 1rem;
	color: var(--au-gray-900, #111);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none !important;
	border: 0 !important;
	border-bottom: none !important;
	transition: background-color 0.2s ease;
}

.au-header-search .searchwp-live-search-result--title a:hover,
.au-header-search .searchwp-live-search-result a:hover,
.au-header-search .searchwp-live-search-result--title a:focus,
.au-header-search .searchwp-live-search-result a:focus {
	color: var(--au-gray-900, #111);
	background: var(--au-bg-muted, #fafafa);
	opacity: 1;
}

.au-header-search .searchwp-live-search-result--desc {
	margin: 0;
	padding: 0 1rem 0.875rem;
	color: var(--au-gray-600, #666);
	font-size: 0.8125rem;
	line-height: 1.5;
}

.au-header-search .searchwp-live-search-no-results {
	margin: 0;
	padding: 1rem;
	color: var(--au-gray-600, #666);
	font-size: 0.875rem;
}

.au-header-search .searchwp-live-search-result--img {
	display: none;
}

@media (max-width: 1119px) {
	.au-header-search--header {
		display: none;
	}

	.au-header-search--mobile {
		display: block;
	}
}
