.popup {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s;
	transition: all .3s; 
}
.popup__content {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 75%;
    height: 85%;
	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; 
	background-image: url("../img/bg/lgrey064.jpg");
	background-repeat: repeat;
  position: relative;

}
.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: #fff;
	position: absolute;
	top: 75rem;	/* Was 2.5 */
	right: 3rem;
	font-size: 4rem;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all .2s;
	transition: all .2s;
	line-height: 1; 
  background-color: orangered;
  text-align: center;
  padding: 0.6rem;
  line-height: 70%;
  z-index: 100;
}

/*.popup__close:link::before {
  content: "Close";
  font-size: 3rem;
}
*/
.popup__close:hover {
	color: #55c57a; 
}
.Van__iFrame {
  position: absolute;
  top: 3rem;
  right: 4rem;
  width: 90vw;
  height: 100vh;	/* was 720 */
  margin: 0 auto;
  border: none;
}
