/* Выпадающие подсказки автокомплита поиска (шапка + страница результатов).
 * Контейнер позиционируется внутри обёртки инпута (.lf-header__search-panel-field / .lf-search-form__input-wrap). */
.lf-search-suggest {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 60;
	margin-top: 6px;
	box-sizing: border-box;
	max-height: 360px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #4040421A;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.lf-search-suggest[hidden] {
	display: none;
}

.lf-search-suggest__item {
	display: block;
	padding: 11px 16px;
	font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.35;
	color: #404042;
	text-decoration: none;
	border-bottom: 1px solid #4040420D;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.lf-search-suggest__item:last-child {
	border-bottom: none;
}

.lf-search-suggest__item:hover,
.lf-search-suggest__item.is-active {
	background: #f3f4f6;
	color: #0a0a0a;
}

@media (max-width: 575px) {
	.lf-search-suggest__item {
		padding: 10px 14px;
		font-size: 14px;
	}
}
