.vcx-block-search-box {
	padding-top: var(--margin-top);
	padding-bottom: var(--margin-bottom);
	position: relative;
	font-size: 18px;
	z-index: 1;
}

.vcx-block-search-box.with-top-border {
	border-top: 1px solid var(--outline-color);
}

.vcx-block-search-box > .wx-layout {
	position: relative;
	max-width: min(1140px, 87vw);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	column-gap: 60px;
	row-gap: 30px;
	--link-color: var(--text-color);
}

.vcx-block-search-box .ux-search-box {
	width: 100%;
	font-size: 17px;
	position: relative;
	height: 36px;
	max-width: 840px;
	margin: 0 auto;
}

.vcx-block-search-box .ux-search-box > div {
	position: relative;
	border-radius: 4px;
	outline: 1px solid var(--outline-color);
	background-color: var(--bg-color);
}

.vcx-block-search-box .ux-search-box:has(ul.ux-auto-complete li) > div {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.vcx-block-search-box.ux-no-logo .ux-search-box > div {
	left: 12px;
}

.vcx-block-search-box .ux-search-box input[type=text] {
	border: none;
	height: 34px;
	line-height: 34px;
	width: 100%;
	background-color: transparent;
	font-size: 1em;
	font-family: inherit;
	margin-left: 10px;
}

.vcx-block-search-box .ux-search-box input[type=text]:focus {
	outline:none;
}

.vcx-block-search-box .ux-search-box button {
	padding: 0;
	border: 0;
	background-color: transparent;
	display: inline-block;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 5px;
	top: 7px;
	cursor: pointer;
}

.vcx-block-search-box .ux-search-box button svg {
	width: 24px;
	height: 24px;
	fill: var(--icon-color);
}

.vcx-block-search-box .ux-search-box ul {
	position: relative;
	padding: 0;
	outline: 1px solid var(--outline-color);
	margin: 0;
	background-color: var(--bg-color);
	z-index: -1;
	top: 0;
	display: none;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.vcx-block-search-box .ux-search-box ul:has(li) {
	display: block;
}

.vcx-block-search-box .ux-search-box ul > li {
	padding: 4px 12px;
	list-style: none;
}

.vcx-block-search-box .ux-search-box ul > li.ux-active {
	background-color: rgba(0,0,0,0.025);
}

.vcx-block-search-box .ux-search-box ul > li:hover {
	background-color: rgba(0,0,0,0.025);
}

[data-theme="dark"] .vcx-block-search-box .ux-search-box ul > li.ux-active {
	background-color: rgba(255,255,255,0.025);
}

[data-theme="dark"] .vcx-block-search-box .ux-search-box ul > li:hover {
	background-color: rgba(255,255,255,0.025);
}

.vcx-block-search-box .command-button.settings.for-component {
	top: -26px !important;
	right: -46px !important;
}

@media screen and (min-width: 821px) and (max-width: 1020px) {
	.vcx-block-search-box .col-d {
		display: none;
	}
}

@media screen and (max-width: 820px) {
	.vcx-block-search-box > .wx-layout {
		flex-wrap: wrap;
		max-width: min(480px, 87vw);
	}
}