@charset "UTF-8";
/* CSS Document */

.PopUpWrapper {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(73, 83, 89, 0.88);
	z-index: 999999;
	top:0;
	right:0;
}


.PopUpWrapper .PopUpCenter {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1100px;
	height: 100%;
	padding: 60px 150px 60px 150px;
	box-sizing: border-box;
	text-align: center;
}

.PopUpWrapper .PopUpContent {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background: #FFF;
	overflow:auto;
	padding: 30px;
	box-sizing: border-box;
	font-size: 0.9em;
	text-align: left;
}


.PopUpWrapper h3 {
	color:#8bb431;
	font-size: 1.7em;
	font-weight: 400;
	margin-bottom: 20px;
}

.PopUpWrapper p {
	margin-bottom: 20px;
	color: #4a545a;
}

.PopUpWrapper li {
	list-style-position:outside;
	margin-left: 20px;
}

.PopUpWrapper a {
	color: #000;
	text-decoration: underline;
}

.PopUpWrapper a:hover {
	text-decoration: none;
}

.PopUpWrapper b {
	font-weight: 500;
}




.PopUpWrapper button {
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	background: #ffaa2a;
	color: #fff;
	border: 0 none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	font-size: 1.2em;
	font-weight: 600;
	transition: background-color ease-in-out 100ms;
	font-family: 'Signika', sans-serif;
	margin-top: 20px;
}

.PopUpWrapper button:hover  {
	background: rgba(255, 170, 41, 0.70);
	transition: background-color ease-in-out 200ms;
}

.PopUpWrapper .Closer {
	display: block;
	position: absolute;
	height: 30px;
	width: 30px;
	line-height: 30px;
	right:10px;
	top:10px;
	box-sizing: border-box;
	background: transparent;
	color: #8bb431;
	border: 0 none;
	font-size: 3.6em;
	font-weight: 300;
	transition: color ease-in-out 100ms;
	font-family: 'Signika', sans-serif;
	cursor: pointer;
	text-align: center;
}

.PopUpWrapper .Closer:hover  {
	color: rgba(139, 181, 49, 0.81);
	transition: color ease-in-out 200ms;
}




@media (max-width: 900px)
{
	.PopUpWrapper .PopUpCenter {
	padding: 10px 5px 10px 5px;
	
}

.PopUpWrapper .PopUpContent {
	height: 100%;
}

.PopUpWrapper .PopUpContent {
	padding: 15px;
}

}


@media (max-width: 768px)
{
}

