.search-multilang.header-search-new {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	position: relative;
	min-width: 0;
	margin: 0 24px;
	z-index: 15;
  background-color: #F7F7F7;
}

.header-search-new,
.header-search-new * {
	box-sizing: border-box;
}

.header-search-new__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #e6edf8;
	border-radius: 50%;
	background: #fff;
	color: #2f66b6;
	cursor: pointer;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.header-search-new__toggle:hover,
.header-search-new__toggle:focus-visible {
	border-color: #689ae3;
	box-shadow: 0 8px 22px rgba(47, 102, 182, 0.12);
	color: #689ae3;
	outline: none;
}

.header-search-new__icon,
.header-search-new__field-icon {
	display: block;
	fill: currentColor;
	flex: 0 0 auto;
}

.header-search-new__form {
	display: block;
	width: 100%;
  background-color: #F7F7F7;
}

.header-search-new__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.header-search-new__field {
	display: flex;
	align-items: center;
	width: 100%;
	height: 44px;
	/* padding: 0 14px 0 16px; */
	border: 1px solid #f6f6f6;
	border-radius: 8px;
	background: #F7F7F7;
	color: #b5b5b5;
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.header-search-new__field:focus-within {
	border-color: #e6edf8;
	background: #F7F7F7;
	color: #8a8a8a;
}

.header-search-new__input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #5c5c5c;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	outline: none;
}

.header-search-new__input::placeholder {
	color: #8a8a8a;
	opacity: 1;
}

.header-search-new__input::-webkit-search-decoration,
.header-search-new__input::-webkit-search-cancel-button,
.header-search-new__input::-webkit-search-results-button,
.header-search-new__input::-webkit-search-results-decoration {
	display: none;
}

.header-search-new__clear {
	display: none;
	position: relative;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0.65;
	transition: opacity 0.25s ease;
}

.header-search-new__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	margin-left: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #c4c4c4;
	cursor: pointer;
	transition: color 0.25s ease;
}

.header-search-new__submit:hover,
.header-search-new__submit:focus-visible {
	color: #8a8a8a;
	outline: none;
}

.header-search-new__clear::before,
.header-search-new__clear::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 2px;
	width: 14px;
	height: 1.5px;
	border-radius: 8px;
	background: #8a8a8a;
}

.header-search-new__clear::before {
	transform: rotate(45deg);
}

.header-search-new__clear::after {
	transform: rotate(-45deg);
}

.header-search-new__clear:hover,
.header-search-new__clear:focus-visible {
	opacity: 1;
	outline: none;
}

.header-search-new.has-value .header-search-new__clear {
	display: none;
}

.header-search-new__results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	max-height: min(560px, calc(100vh - 140px));
	padding: 24px;
	overflow-y: auto;
	border: 1px solid #efefef;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2.5px rgba(0, 0, 0, 0.04), 0 1px 0.5px rgba(0, 0, 0, 0.07);
	color: #5c5c5c;
}

.header-search-new__results[hidden] {
	display: none;
}

.header-search-new__section {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.header-search-new__section-title {
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 12px;
	text-transform: uppercase;
	color: #5c5c5c;
}

.header-search-new__divider {
	width: 100%;
	height: 1px;
	background: #efefef;
}

.header-search-new__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.header-search-new__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: #eff5fd;
	color: #2f66b6;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 12px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.header-search-new__chip:hover,
.header-search-new__chip:focus-visible {
	background: #e0ecfb;
	outline: none;
}

.header-search-new__chip.is-active {
	background: #2f66b6;
	color: #fff;
}

.header-search-new__chip-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: rgba(47, 102, 182, 0.12);
	color: inherit;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.header-search-new__chip.is-active .header-search-new__chip-count {
	background: rgba(255, 255, 255, 0.25);
}

.header-search-new__chip-remove {
	display: none;
	position: relative;
	width: 12px;
	height: 12px;
	flex: 0 0 auto;
}

.header-search-new__chip.is-active .header-search-new__chip-remove {
	display: inline-block;
}

.header-search-new__chip-remove::before,
.header-search-new__chip-remove::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 1px;
	width: 10px;
	height: 1.4px;
	border-radius: 2px;
	background: currentColor;
}

.header-search-new__chip-remove::before {
	transform: rotate(45deg);
}

.header-search-new__chip-remove::after {
	transform: rotate(-45deg);
}

.header-search-new__facets {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.header-search-new__output {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.header-search-new__output[hidden] {
	display: none;
}

.header-search-new__default {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.header-search-new__default[hidden] {
	display: none;
}

.header-search-new__recent-wrap[hidden] {
	display: none;
}

.header-search-new__recent-wrap,
.header-search-new__popular-wrap {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.header-search-new__section-count {
	margin-left: 6px;
	color: #bebebe;
	font-weight: 700;
}

.header-search-new__empty,
.header-search-new__loading {
	padding: 8px 0;
	color: #8a8a8a;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.3;
}

.header-search-new__recent {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.header-search-new__recent-item {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #bebebe;
	text-align: left;
	cursor: pointer;
}

.header-search-new__recent-icon {
	flex: 0 0 auto;
	display: block;
}

.header-search-new__recent-text {
	flex: 1 1 auto;
	min-width: 0;
	color: #5c5c5c;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
}

.header-search-new__recent-arrow {
	flex: 0 0 auto;
	display: block;
	color: #bebebe;
	transition: transform 0.2s ease, color 0.2s ease;
}

.header-search-new__recent-item:hover .header-search-new__recent-text,
.header-search-new__recent-item:focus-visible .header-search-new__recent-text {
	color: #2f66b6;
}

.header-search-new__recent-item:hover .header-search-new__recent-arrow,
.header-search-new__recent-item:focus-visible .header-search-new__recent-arrow {
	color: #2f66b6;
	transform: translateX(2px);
}

.header-search-new__objects {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.header-search-new__object {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
	text-decoration: none;
}

.header-search-new__object-bullet {
	flex: 0 0 auto;
	width: 4px;
	height: 4px;
	margin-top: 5px;
	border-radius: 50%;
	background: #689ae3;
}

.header-search-new__object-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.header-search-new__object-title {
	color: #151515;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	transition: color 0.2s ease;
}

.header-search-new__object-sub {
	color: #5c5c5c;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 12px;
}

.header-search-new__object-snippet {
	color: #5c5c5c;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.header-search-new__mark {
	background: #ffe27a;
	color: inherit;
	padding: 0 1px;
	border-radius: 2px;
}

.header-search-new__object:hover .header-search-new__object-title,
.header-search-new__object:focus-visible .header-search-new__object-title {
	color: #2f66b6;
}

.header-search-new__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	padding: 0 20px;
	border: 0;
	border-radius: 4px;
	background: #689ae3;
	color: #fff;
	font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
  flex: none;
}

.header-search-new__cta:hover,
.header-search-new__cta:focus-visible {
	background: #2f66b6;
	outline: none;
}

@media screen and (max-width: 1200px) {
	.search-multilang.header-search-new {
		margin: 0 16px;
	}
}

@media screen and (max-width: 992px) {

  .search-multilang.header-search-new {
    display: none;
  }


	.search-multilang.header-search-new {
		margin: 0 0 0 auto;
	}

	.header-search-new__toggle {
		display: flex;
	}

	.header-search-new__form {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		display: none;
		width: min(300px, calc(100vw - 32px));
	}

	.header-search-new.is-open .header-search-new__form {
		display: block;
	}

	.header-search-new__results {
		top: calc(100% + 58px);
		right: 0;
		left: auto;
		width: min(300px, calc(100vw - 32px));
	}
}

@media screen and (max-width: 576px) {
	.search-multilang.header-search-new {
		margin-left: 12px;
	}

	.header-search-new__toggle {
		width: 36px;
		height: 36px;
	}
}
