/* =======================================================================
 * AX Careers Search — clear (×) button visibility.
 * Forces the × interactive (overriding ax-collection's JS-managed state) and
 * reveals it only when the field has text (wrap gets .has-value from the JS).
 * ==================================================================== */

#top .ax-careers-search .ax-collection__search {
	position: relative;
}

#top .ax-careers-search .ax-collection__search-clear {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .15s ease;
}

#top .ax-careers-search.has-value .ax-collection__search-clear {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}
