/* Умный поиск: заголовки групп подсказок, футер «все результаты», история */
.search-result__group-title {
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
}
.search-result__group-title:not(:first-child) {
	margin-top: 6px;
	border-top: 1px solid rgba(0, 0, 0, .06);
}
.search-result__all-wrap {
	border-top: 1px solid rgba(0, 0, 0, .06);
	margin-top: 4px;
}
.search-result__all {
	font-weight: 500;
}
.search-result__all:hover {
	background: rgba(0, 0, 0, .03);
}

/* Выпадашка истории на пустом фокусе (позиция/размер задаются из JS) */
.iris-history-panel {
	z-index: 100;
	border-radius: 6px;
	box-shadow: 0 5px 30px 0 rgba(34, 34, 40, .08);
	overflow: hidden;
}
.iris-history-panel .search-result {
	margin: 0;
}

/* История/популярное на пустом фокусе */
.iris-search-history .search-result__group-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.iris-search-history__clear {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	cursor: pointer;
	opacity: .6;
}
.iris-search-history__clear:hover {
	opacity: 1;
}
.iris-search-history__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.iris-search-history__del {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	opacity: .4;
	cursor: pointer;
	font-size: 15px;
}
.iris-search-history__del:hover {
	opacity: 1;
	background: rgba(0, 0, 0, .06);
}
