.cut-city-autocomplete-container {
	position: relative;
}

.cut-city-autocomplete-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 1000;
	margin-top: 2px;
	max-height: 220px;
	overflow-y: auto;
	background: #ffffff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	font-size: 13px;
}

.cut-city-autocomplete-item {
	display: block;
	padding: 6px 10px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #111 !important;
	background-color: #ffffff;
	line-height: 1.4;
}

.cut-city-autocomplete-item:hover {
	background-color: #f3f3f3;
}

