.popup-select-city {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: hidden;
	z-index: 100;
}

.popup-select-city__wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 805px;
	height: 520px;
	padding: 32px 40px;
	background-color: white;
	border-radius: 16px;
	overflow: auto;
}

.popup-select-city__wrapper-top {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 0 20px 0;
}



.popup-select-city__input-wrapper {
	position: relative;
	width: 100%;
}

.popup-select-city__input {
	width: 100%;
	min-height: 48px;
	padding: 4px 12px 4px 40px;
	font-size: 16px;
	background: #1018280D;
	border: none;
	color: #555;
	border-radius: 8px;
	outline: none;
}

.popup-select-city__search-img {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
}


.popup-select-city__label {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 16px;
	pointer-events: none;
	transition: all 0.2s ease;
	user-select: none;
}

/* Когда инпут в фокусе или заполнен — label поднимается и уменьшается */
.popup-select-city__input:focus + .popup-select-city__label,
.popup-select-city__input:not(:placeholder-shown) + .popup-select-city__label,
.popup-select-city__input.filled + .popup-select-city__label {
	top: 8px;
	font-size: 12px;
	color: #555;
	transform: none;
}

/* .popup-select-city__input:focus, */
.popup-select-city__input:not(:placeholder-shown) {
	padding-top: 20px;
}

.popup-select-city__title {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
}

.popup-select-city .region_title, 
.popup-select-city .region_item {
	padding: 0;
	font-size: 14px;
}

.popup-select-city .region_item {
	cursor: pointer;
}

.popup-select-city__wrapper::-webkit-scrollbar {
	width: 2px; 
}


.popup-select-city__wrapper::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 16px; 
}




@media screen and  (max-width: 576px) {
	.popup-select-city__wrapper {
		width: 95%;
		padding: 40px 12px 0 12px;
		height: 596px;
	}
}