.country-picker-popup {
	position: fixed;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	text-align: center;
	z-index: 9999999;
}
.country-picker-popup.show {
	display: flex;
}
.country-picker-popup:before {
	position: fixed;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: -1;
}
.country-picker-popup .content-wrapper {
	max-width: 600px;
	max-height: 90%;
	padding: 40px;
	background-color: white;
	border-radius: 5px;
	overflow-y: auto;
}
.country-picker-popup p {
	font-size: 14px;
}
.country-picker-popup .countries {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}
.country-picker-popup .countries .country {
	display: flex;
	column-gap: 10px;
	padding: 12px 16px;
	box-shadow: 0 0 0 1px #e6e6e6;
	cursor: pointer;
}
.country-picker-popup .countries .country.current {
	order: 1;
}
.country-picker-popup .countries .country:hover {
	box-shadow: 0 0 0 1px black;
}
.country-picker-popup .countries .country img {
	width: 20px;
}
.country-picker-popup .countries .country span {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	line-height: initial;
}