.popup {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
/*	background-color: rgba(0, 0, 0, 0.8);
*/	background-color: rgba(255, 255, 255, 1);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s;
	transition: all .3s; 
}
.popup__content {
	position: absolute;
	top: 46%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 75%;
	background-color: #fff;
	-webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
	box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	display: table;
	overflow: hidden;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%) scale(0.25);
	transform: translate(-50%, -50%) scale(0.25);
	-webkit-transition: all .5s .2s;
	transition: all .5s .2s; 
}
.popup__left {
	width: 33.333333%;
	display: table-cell; 
}

.popup__right {
	width: 66.6666667%;
	display: table-cell;
	vertical-align: middle;
	padding: 3rem 3rem; 
	background-image: url("../img/bg/lgrey064.jpg");
	background-repeat: repeat;

}
.popup__img {
	display: block;
	width: 100%; 
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 

}
.popup__text {
	font-size: 1.4rem;
	margin-bottom: 4rem;
	-moz-column-count: 2;
	-moz-column-gap: 4rem;
	-moz-column-rule: 1px solid #eee;
	-webkit-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 4rem;
	column-gap: 4rem;
	-webkit-column-rule: 1px solid #eee;
	column-rule: 1px solid #eee;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto; 
}
.popup__LoiNgo {
	font-size: 1.4rem;
	margin-bottom: 1.6rem;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto; 
	text-shadow: 2px 2px 2px #FFFFFF;

}

.popup:target {
	opacity: 1;
	visibility: visible; 
}
.popup:target .popup__content {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1); 
}
.popup__close:link, .popup__close:visited {
	color: #777;
	position: absolute;
	top: 0.8rem;	/* Was 2.5 */
	right: 1.8rem;
	font-size: 3rem;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all .2s;
	transition: all .2s;
	line-height: 1; 
}
.popup__close:hover {
	color: #55c57a; 
}
