/* regions name */
.regions__chooser {
	display: flex;
	align-items: center;
}
.regions__name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 170px;
}

.popup_regions .items_block .item.more_cities {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	visibility: visible;
	opacity: 1;
	height: auto;
	min-height: 32px;
	padding: 6px 12px;
	margin: 4px 0 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.06);
	transition: background-color 0.15s ease;
	color: inherit;
	cursor: pointer;
	user-select: none;
}
.popup_regions .items_block .item.more_cities > span {
	display: inline-block;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.popup_regions .items_block .item.more_cities > span:empty::before {
	content: "...";
}
.popup_regions .items_block .item.more_cities:hover {
	background: rgba(0, 0, 0, 0.1);
}
