
/* Modal überblendender Hintergrund */
.CountryPopupModal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	text-align:center;
}
#CountryPopupModalTrigger {
	display:none;
}
/* Modal Content */
.CountryPopupModalContent {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: auto;
	display: inline-block;
	z-index: 10000;
}
.CountryPopupModalImgWrapper{

	display: inline-block;
	width:auto;
	margin:auto;
}
/* Modal Schließen */
.CountryPopupClose {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.CountryPopupClose:hover, .CountryPopupClose:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
.CountryPopupCloseAndDontShowAgain {
	background-color: #EEE;
	height: 40px;
	width: 50%;
	margin: 25px auto 0;
	line-height: 40px;
	cursor:pointer;
}