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