.smartsearch {
	position: absolute;
	width: 100%;
	top: 100%;
	background: #fff;
	border-top: none;
	display: none;
	overflow: hidden;
	box-shadow: 0 2px 8px 0 rgb(0 0 0 / 16%);
	margin-top: -1px;
	z-index: 1000;
}
.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%);
		top: 0;
		margin-left: 0px;
		margin-top: 0px;
		border-radius: 13px;
		z-index: 0;
	}
	.smartsearch ul.items {
		margin-top: 60px;
	}
}
.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: var(--jv-text-primary);
	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: var(--jv-text-primary);
	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: var(--jv-text-primary);
}
/* совпавшая характеристика («Цветовая температура, К: 4 000») */
.smartsearch li.item .item_block .title span.ss-attr {
    font-size: 12px;
    color: var(--jv-primary, #E94E1B);
    margin-top: 2px;
}
.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
}
/* #760: строка «Где купить в городе …» в подсказках шапки */
.smartsearch li.item--city .ss-city { display: flex; align-items: center; gap: 10px; padding: 12px 10px;
  color: var(--jv-text-primary, #000); text-decoration: none; background: var(--jv-bg-surface, #f7f7f7); }
.smartsearch li.item--city .ss-city svg { flex-shrink: 0; color: var(--jv-accent, #E94E1B); }
.smartsearch li.item--city .ss-city__txt { flex-grow: 1; line-height: 1.3; }
.smartsearch li.item--city .ss-city__count { flex-shrink: 0; white-space: nowrap; color: var(--jv-text-muted, #999); font-size: 13px; }
.smartsearch li.item--city .ss-city:hover .ss-city__txt { color: var(--jv-accent, #E94E1B); }
