/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.country-popup-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
}
.country-popup-overlay > .country-popup-content {
	overflow: auto;
	margin: auto 10px;
	max-width: 800px;
	padding: 0 10px;
}
.country-popup-content {
	background: var(--background);
	display: flex;
	flex-direction: column;
	align-items: center;
	max-height: 90%;
	width: 100%;
	margin: 30px 0;
}
#country-popup-overlay .country-popup-content-inner {
	padding: 10px;
	color: var(--color);
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 700px;
	height: 100%;
	justify-content: space-between;
	text-align: center;
	align-items: center;
}
#country-popup-overlay .country-popup-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--color);
	margin-bottom: 20px;
}
#country-popup-overlay .country-popup-blurb {
	font-size: 22px;
	font-weight: 400;
	color: var(--color);
	width: 100%;
	margin-bottom: 20px;
}
#country-popup-overlay .country-popup-link {
	font-size: 22px;
	font-weight: 300;
	color: var(--n-btn-text-color);
	background: var(--n-btn-color);
	display: block;
	text-decoration: none;
	text-align: center;
	width: 100%;
	padding: 10px 10px;
	transition: color .3s ease-in-out, background .2s ease-in-out;
}
#country-popup-overlay .country-popup-link:hover {
	background: var(--n-btn-text-color);
	color: var(--n-btn-color);

}
#country-popup-overlay .country-popup-close span {
	color: #808080;
	font-size: 16px;
	text-decoration: underline;
	cursor: pointer;
}

@media screen and (min-width: 768px){
	#country-popup-overlay .country-popup-content .country-popup-content {
		margin: 50px auto;
	}
	#country-popup-overlay .country-popup-content-inner {
		padding: 50px;
	}
	.country-popup-overlay > .country-popup-content {
		margin: auto;
	}
	#country-popup-overlay .country-popup-title {
		font-size: 44px;
	}
	#country-popup-overlay .country-popup-blurb {
		font-size: 26px;
	}
	#country-popup-overlay .country-popup-link {
		font-size: 26px;
	}
}