#smartsearch {
	position: absolute;
	width: 100%;
	top: 100%;
	z-index: 3;
	background: #fff;
	border-top: none;
	display: none;
	overflow: hidden;
	box-shadow: 0 2px 8px 0 rgb(0 0 0 / 16%);
	margin-top: -1px;
}
#smartsearch ul.items {
	margin: 0px;
    padding: 0px;
    background: #fff;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    pointer-events: all;
}
@media only screen and (min-width: 992px) {
	#smartsearch {
		width: calc(100% + 20px);
		top: 0;
		margin-left: -10px;
		margin-top: -10px;
		border-radius: 13px;
	}
	#smartsearch ul.items {
		margin-top: 68px;
	}
}
#smartsearch li.item {
	list-style-type: none;
	border-top: 1px solid #f0f0f0;
}
#smartsearch li.item.current {
    background: #fcfeab;
}
#smartsearch li.item .item_block {
	display: flex;
	align-items: center;
	padding: 10px;
}
#smartsearch li.item .item_block .image {
	flex-shrink: 0;
	text-align: center;
	padding-right: 10px;
}
#smartsearch li.item .item_block .title {
    flex-grow: 1;
    padding-right: 10px;
    line-height: normal;
}
#smartsearch li.item .item_block .price {
	display: flex;
	white-space: nowrap;
	color: #000;
	font-weight: 500;
	flex-shrink: 0;
	flex-direction: column;
}
#smartsearch li.item .item_block .oldprice {
	margin-right: 5px;
    text-decoration: line-through;
    font-size: 11px;
	color: #cd0000;
}
#smartsearch li.item .item_block a {
	width: 100%;
}
#smartsearch li.item .item_block .title a {
	color: #000;
	font-weight: 500;
    line-height: 19px;
}
#smartsearch li.item .item_block .title a:hover {
    color: #003fbe;
}
#smartsearch li.item .item_block .title span {
    font-size: 13px;
    color: #999;
    margin-top: 3px;
    display: block;
}
#smartsearch li.item .item_block a b {
    color: #000;
}
#smartsearch .button {
    text-align: center;
    background: #f6f6f6;
}

#smartsearch .button a {
    color: inherit;
    display: block;
    padding: 10px;
	font-weight: 600;
}

#smartsearch .button a:hover {
    color: #003fbe
}