.up-location-picker {
	position: relative;
}

.up-location-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.up-location-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px 6px 12px;
	background: #eb00eb45;
	border: 1px solid #eb00eb75;
	border-radius: 999px;
	font-size: 14px;
}

.up-location-chip-text {
	white-space: nowrap;
}

.up-location-chip button {
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 0;
}

.up-location-chip-remove {
	background-color: #e7d5e7 !important;
	width: 22px;
	height: 22px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0 !important;

	border: none !important;
	border-radius: 50%;

	background: transparent;

	cursor: pointer;

	font-size: 18px;
	font-weight: 600;
	line-height: 1;

	color: #666;

	transition: background-color .15s ease,
				color .15s ease;
}

.up-location-chip-remove:hover {
	background: rgba(0,0,0,.08);
	color: #000;
}

.up-location-chip-remove:focus-visible {
	outline: 2px solid #eb00eb8a;
	outline-offset: 2px;
}

.up-location-results {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	max-height: 250px;
	overflow-y: auto;
	z-index: 100;
}

.up-location-item {
	padding: 10px 12px;
	cursor: pointer;
}

.up-location-item:hover {
	background: #f5f5f5;
}

.up-location-item small {
	color: #666;
	display: block;
	margin-top: 3px;
}