
#rgpopup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
#rgpopup-box {
	background: #fff;
	padding: 20px;
	max-width: 90%;
	max-height: 90%;
	box-shadow: 0 0 10px #000;
	position: relative;
	text-align: center;
}
#rgpopup-box img {
	max-width: 100%;
	height: auto;
}
#rgpopup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-weight: bold;
	font-size: 18px;
}
