.profile-catalog-search {
	--profile-search-highlight-duration: 160ms;
	--profile-search-cyan: #41cfff;
	position: relative;
	display: flex;
	flex: 1 1 300px;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: min(360px, 100%);
	max-width: 360px;
	height: 48px;
	min-height: 48px;
	margin: 0 0 0 auto;
	padding: 0 16px;
	border: 1px solid rgba(65, 207, 255, .22);
	border-radius: 0;
	color: #edf1ff;
	background: rgba(12, 16, 31, .2);
	box-shadow: 0 0 10px rgba(65, 207, 255, .07), inset 0 1px 0 rgba(255, 255, 255, .025);
	backdrop-filter: blur(24px) saturate(145%);
	-webkit-backdrop-filter: blur(24px) saturate(145%);
	transition:
		border-color var(--profile-search-highlight-duration) ease,
		background-color var(--profile-search-highlight-duration) ease,
		box-shadow var(--profile-search-highlight-duration) ease,
		filter var(--profile-search-highlight-duration) ease;
}

.profile-catalog-search::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 2px;
	background: var(--profile-search-cyan);
	box-shadow: 0 0 8px rgba(65, 207, 255, .58);
	content: "";
	pointer-events: none;
}

.profile-catalog-search__copy {
	display: grid;
	flex: 1;
	gap: 1px;
	min-width: 0;
}

.profile-catalog-search__copy small {
	color: rgba(174, 184, 207, .66);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1.15;
	text-transform: uppercase;
}

.profile-catalog-search input {
	width: 100%;
	height: auto;
	min-height: 0;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	appearance: none;
	color: #edf1ff;
	background: transparent;
	box-shadow: none;
	font: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
}

.profile-catalog-search input::placeholder {
	color: #7f8aa3;
	opacity: 1;
}

.profile-catalog-search input::-webkit-search-cancel-button {
	display: none;
}

.profile-catalog-search > svg {
	width: 17px;
	height: 17px;
	margin-right: 2px;
	margin-left: 12px;
	flex: 0 0 auto;
	fill: none;
	stroke: #8f9bb7;
	stroke-linecap: square;
	stroke-linejoin: miter;
	stroke-width: 1.6;
	transition:
		filter var(--profile-search-highlight-duration) ease,
		stroke var(--profile-search-highlight-duration) ease;
}

.profile-catalog-search:hover,
.profile-catalog-search:focus-within {
	border-color: rgba(65, 207, 255, .68);
	background: rgba(15, 19, 38, .27);
	box-shadow: 0 0 16px rgba(65, 207, 255, .16), inset 0 1px 0 rgba(255, 255, 255, .035);
	filter: brightness(1.06);
}

.profile-catalog-search:hover > svg,
.profile-catalog-search:focus-within > svg {
	stroke: #d9e0f4;
	filter: brightness(1.1);
}

@media (max-width: 860px) {
	.profile-catalog-search {
		flex-basis: 100%;
		max-width: none;
		margin-left: 0;
	}
}

@media (max-width: 430px) {
	.profile-catalog-search {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.profile-catalog-search,
	.profile-catalog-search * {
		transition-duration: .01ms !important;
	}
}
