.tp-search {
	position: relative;
	z-index: 120;
}

.tp-mainbar,
.tp-mainbar-in {
	overflow: visible;
}

.tecto-live-search[hidden] {
	display: none;
}

.tecto-live-search {
	position: absolute;
	z-index: 9999;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	max-height: min(560px, 72vh);
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #fff;
	border: 1px solid #d9dde3;
	border-radius: 10px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
	color: #1f2937;
}

.tecto-live-search__status {
	padding: 22px 20px;
	font-size: 14px;
	text-align: center;
	color: #5f6875;
}

.tecto-live-search__status.is-loading::before {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 9px;
	vertical-align: -2px;
	content: '';
	border: 2px solid #d8dde4;
	border-top-color: #f5a800;
	border-radius: 50%;
	animation: tecto-search-spin 0.7s linear infinite;
}

.tecto-live-search__list {
	display: grid;
}

.tecto-live-search__item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 82px;
	padding: 9px 16px;
	color: #20242a;
	text-decoration: none;
	border-bottom: 1px solid #edf0f3;
	transition: background-color 120ms ease;
}

.tecto-live-search__item:hover,
.tecto-live-search__item:focus,
.tecto-live-search__item.is-active {
	background: #fff8e5;
	color: #111827;
	outline: none;
}

.tecto-live-search__image {
	width: 64px;
	height: 64px;
	object-fit: contain;
	background: #f5f6f7;
	border-radius: 6px;
}

.tecto-live-search__copy {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.tecto-live-search__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tecto-live-search__meta {
	overflow: hidden;
	font-size: 12px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #697382;
}

.tecto-live-search mark {
	padding: 0;
	background: transparent;
	color: inherit;
	font-weight: 800;
}

.tecto-live-search__all {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 700;
	color: #1f2937;
	text-decoration: none;
	background: #fbb523;
}

.tecto-live-search__all:hover,
.tecto-live-search__all:focus {
	color: #111827;
	background: #f5a800;
	outline: 2px solid #111827;
	outline-offset: -3px;
}

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

@media (max-width: 767px) {
	.tecto-live-search {
		left: 0;
		right: 0;
		max-height: min(500px, 64vh);
	}

	.tecto-live-search__item {
		grid-template-columns: 52px minmax(0, 1fr);
		min-height: 70px;
		padding: 8px 12px;
	}

	.tecto-live-search__image {
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tecto-live-search__status.is-loading::before {
		animation-duration: 1.4s;
	}
}
