.pg_popup_overflow {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(12, 12, 12, 0.24);
	z-index: 5;
}

.pg_popup_container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pg_popup_body {
	display: flex;
	flex-direction: column;
	max-width: 90%;
	width: 100%;
	background: #fff;
	z-index: 10;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

.pg_popup_content {
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.pg_popup_content input {
	font-size: 16px;
	line-height: 19px;
	position: relative;
	background-color: transparent;
	border: none !important;
	border-bottom: 1px solid rgba(51, 51, 51, .2) !important;
	border-radius: 0;
	text-align: left;
	padding-left: 0;
	padding-right: 15px;
	color: #333;
	margin-top: 30px;
	background-image: url(/wp-content/themes/pg19/templates/city-popup/search-icon.svg);
	background-repeat: no-repeat;
	background-position-x: 98%;
}

.pg_popup_content input:focus {
	outline: none;
}

.pg_popup_regionsList {
	display: flex;
	flex-direction: column;
	max-height: 29vh;
	overflow-y: scroll;
	margin-top: 30px;
}

.pg_popup_regionName {
	color: #c50178;
	font-size: 14px;
	margin-bottom: 10px;
}

.pg_popup_regionsList a {
	padding-left: 16px;
}

.pg_popup_regionsList a {
	margin-bottom: 10px;
}

.pg_popup_mainCity {
	font-size: 18px;
	padding-left: 0 !important;
}

.pg_popup_yaMap {
	width: 100%;
	height: 300px;
	order: -1;
}

.pg_popup_close {
	right: 15px;
	top: 15px;
	width: 20px;
	height: 20px;
	position: absolute;
	z-index: 50;
	cursor: pointer;
	padding: 10px;
}

.pg_popup_hidden {
	display: none !important;
}

.pg_popup_close::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	content: "";
	background-color: #c50178;
	transform: rotate(45deg);
}

.pg_popup_close::after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	content: "";
	background-color: #c50178;
	transform: rotate(-45deg);
}

.pg_popup_title {
	font-size: 20px;
	color: #00209a;
	font-family: Montserrat-SemiBold, sans-serif;
}

.pg_popup_oneReg {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.pg_popup_close {
		right: 40px;
		top: 40px;
	}
	.pg_popup_yaMap {
		width: 100%;
		height: 100%;
		order: 1;
	}

	.pg_popup_body {
		width: auto;
		display: grid;
		grid-template-columns: 1fr 2fr;
	}

	.pg_popup_regionsList {
		max-height: 70vh;
	}
}

@media (min-width: 1198px) {
	.pg_popup_body {
		display: grid;
		grid-template-columns: 1fr 3fr;
	}
}