div.title-search-result {
	display: none;
	z-index: 1100;

	width: min(620px, calc(100vw - 24px)) !important;
	max-width: calc(100vw - 24px) !important;

	background: #fff;
	border: 1px solid #ddd;

	box-shadow: 0 6px 20px rgba(0, 0, 0, .12);

	overflow: hidden;
}


/* Общий блок */

.search-dropdown {
	width: 100%;
	max-height: 70vh;

	overflow-y: auto;
	overflow-x: hidden;

	background: #fff;
}


/* Одна позиция */

.search-dropdown__item {
	width: 100%;

	border-bottom: 1px solid #eee;
}

.search-dropdown__item:last-child {
	border-bottom: 0;
}


/* Ссылка */

.search-dropdown__link {
	display: flex;

	width: 100%;

	gap: 14px;

	padding: 12px 14px;

	color: #333;
	text-decoration: none;

	transition: background-color .15s ease;
}

.search-dropdown__link:hover {
	background: #f5f4f5;
}


/* Изображение */

.search-dropdown__image {
	flex: 0 0 75px;

	width: 75px;
	height: 75px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.search-dropdown__image img {
	display: block;

	max-width: 75px;
	max-height: 75px;

	width: auto;
	height: auto;

	object-fit: contain;
}


/* Текстовая часть */

.search-dropdown__content {
	flex: 1 1 auto;

	min-width: 0;
}


/* Название товара */

.search-dropdown__name {
	color: #5f4d58;

	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;

	white-space: normal;
	overflow: visible;
	text-overflow: unset;

	overflow-wrap: anywhere;
	word-break: normal;
}


/* Анонс */

.search-dropdown__preview {
	margin-top: 5px;

	color: #777;

	font-size: 13px;
	line-height: 1.35;

	white-space: normal;

	overflow-wrap: anywhere;
}


/* Цена */

.search-dropdown__price {
	margin-top: 7px;

	color: #dc3545;

	font-size: 17px;
	line-height: 1.2;
	font-weight: 700;

	white-space: normal;
}

.search-dropdown__price s {
	margin-right: 7px;

	color: #999;

	font-size: 14px;
	font-weight: 400;
}


/* Остальные пункты */

.search-dropdown__all,
.search-dropdown__more,
.search-dropdown__item--simple {
	padding: 10px 14px;

	background: #fff;

	border-bottom: 1px solid #eee;
}

.search-dropdown__all a,
.search-dropdown__more a,
.search-dropdown__item--simple a {
	display: block;

	color: #5f4d58;
	text-decoration: none;

	white-space: normal;

	overflow-wrap: anywhere;
}

.search-dropdown__all a:hover,
.search-dropdown__more a:hover,
.search-dropdown__item--simple a:hover {
	color: #dc3545;
}


/* Мобильная версия */

@media (max-width: 575.98px) {

	div.title-search-result {
		width: calc(100vw - 16px) !important;
		max-width: calc(100vw - 16px) !important;
	}

	.search-dropdown__link {
		gap: 10px;

		padding: 10px;
	}

	.search-dropdown__image {
		flex-basis: 58px;

		width: 58px;
		height: 58px;
	}

	.search-dropdown__image img {
		max-width: 58px;
		max-height: 58px;
	}

	.search-dropdown__name {
		font-size: 14px;
		line-height: 1.3;
	}

	.search-dropdown__preview {
		font-size: 12px;
	}

	.search-dropdown__price {
		font-size: 15px;
	}
}