.mfp-bg {
	/*background: #f0f2f4;*/
	background: #000;
}
.white-popup {
	position: relative;
	background: #FFF;
	padding: 40px 40px 30px 30px;
	width: auto;
	max-width: 600px;
	margin: 20px auto;
	/*border: 3px dotted #e8330f;*/
}
.white-popup h4 {
	width: 100%;
	padding: 8px;
	font-size: 1.2em;
	line-height: 25px;
	/*font-weight: normal;*/
	text-align: center;
	background: #e8330f;
	border-radius: 6px;
	color: #FFF;
	margin-bottom: 30px;
}

.white-popup ul li{
	list-style-type: square;
	margin: 15px 0 15px 20px;
	padding-bottom: 10px;
	/*border-bottom: 1px solid #ddd;*/
}
.white-popup ul li:after {
	content: '';
	display: block;
	width: 300px;
	margin: 20px auto 0;
	border-bottom: 1px dotted #ddd;
}
.white-popup ul li:after:last-child {
	border: none;
}

.white-popup ul hr{
	height: 1px;
	background: #DDDDDD;
}

@media screen and (max-width: 640px) {
	.mfp-wrap {
		z-index: 999999999;
	}
	.white-popup {
		padding: 40px 20px 10px 10px;
		margin: 0 auto;
	}
	.white-popup h4 {
		padding: 5px;
		font-size: 1em;
		line-height: 18px;
		margin-bottom: 15px;
	}
	.white-popup ul {
		padding: 0;
		margin: 0 atuo;
	}

	.white-popup ul li{
		margin: 10px 0 10px 20px;
		font-size: 10px;
		line-height: 12px;
	}
}


/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}