.stp-header-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 188px 54px;
	align-items: stretch;
	width: 100%;
	min-height: 44px;
	background: var(--stp-header-bg);
	border: 1px solid var(--stp-header-orange);
	border-radius: 22px;
	overflow: hidden;
}

.stp-header-search__input,
.stp-header-search__category,
.stp-header-search__button {
	min-width: 0;
	min-height: 44px;
	margin: 0;
	border: 0;
	box-shadow: none;
	outline: 0;
}

.stp-header-search__input {
	width: 100%;
	padding: 0 16px;
	color: var(--stp-header-text);
	background: #ffffff;
	font-size: 14px;
	line-height: 44px;
}

.stp-header-search__category {
	width: 100%;
	padding: 0 34px 0 12px;
	color: var(--stp-header-text);
	background: #ffffff;
	border-left: 1px solid var(--stp-header-border);
	font-size: 13px;
	cursor: pointer;
}

.stp-header-search__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	padding: 0;
	color: #ffffff;
	background: var(--stp-header-orange);
	cursor: pointer;
}

.stp-header-search__button:hover,
.stp-header-search__button:focus {
	background: var(--stp-header-orange-dark);
}

@media (max-width: 960px) {
	.stp-header-search {
		grid-template-columns: minmax(0, 1fr) 42px;
		min-height: 36px;
		border-radius: 18px;
	}

	.stp-header-search__category {
		display: none;
	}

	.stp-header-search__input,
	.stp-header-search__button {
		min-height: 36px;
		font-size: 12px;
		line-height: 36px;
	}

	.stp-header-search__button {
		width: 42px;
	}
}
