.acf-input:has(.acf-select-typeahead) {
	position: relative;
}
.acf-input:has(.acf-select-typeahead) select {
	display: none;
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-matches {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	background: white;
	width: 100%;
	color: #333;
	z-index: 10;
	display: none;
}
.acf-input:has(.acf-select-typeahead).focused .acf-select-typeahead-matches {
	display: block;
}
.acf-input:has(.acf-select-typeahead).match-selected .acf-select-typeahead,
.acf-input:has(.acf-select-typeahead).match-selected .acf-select-typeahead-matches {
	display: none;
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-matches .acf-select-typeahead-match {
	padding: 8px 12px;
	cursor: pointer;
	position: relative;
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-matches .acf-select-typeahead-match:not(.error):hover {
	background: rgba(130,3,97,.1);
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-matches .acf-select-typeahead-match + .acf-select-typeahead-match:before {
	border-top: 1px dashed rgba(0,0,0,.2);
	content: '';
	position: absolute;
	top: 0;
	left: 12px;
	width: calc(100% - 12px - 12px);
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-results {
	display: none;
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-selected-result {
	border: 1px solid;
	padding: 6px 12px;
	background: #630349;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: white;
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-selected-result .delete-result {
	--size: 20px;
	height: var(--size);
	width: var(--size);
	background-size: contain;
	color: white;
	cursor: pointer;
}
.acf-input:has(.acf-select-typeahead) .acf-select-typeahead-selected-result .delete-result svg {
	--size: 20px;
	height: var(--size);
	width: var(--size);
}

