.max-search-suggest-panel{
	position:absolute;
	z-index:1000000;
	box-sizing:border-box;
	max-height:320px;
	overflow:auto;
	padding:6px;
	border:1px solid #d8d8d8;
	border-radius:0 0 8px 8px;
	background:#fff;
	box-shadow:0 12px 30px rgba(0,0,0,.14);
}
.max-search-suggest-panel button{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	width:100%;
	min-height:40px;
	padding:8px 10px;
	border:0;
	border-radius:6px;
	background:transparent;
	color:#111;
	text-align:left;
	cursor:pointer;
	box-sizing:border-box;
}
.max-search-suggest-panel button:hover,
.max-search-suggest-panel button.active{
	background:#f5f5f5;
}
.max-search-suggest-panel .keyword{
	display:block;
	min-width:0;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	font-size:14px;
	font-weight:700;
	line-height:1.35;
}
.max-search-suggest-panel small{
	display:block;
	flex:0 1 auto;
	min-width:0;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	color:#777;
	font-size:12px;
	line-height:1.35;
}
@media (max-width: 768px){
	.max-search-suggest-panel{
		max-height:260px;
		border-radius:10px;
	}
	.max-search-suggest-panel button{
		min-height:44px;
	}
}
