#rsgdxhn-popup {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
}

#rsgdxhn-popup.rsgdxhn-hidden {
	display: none;
}

.rsgdxhn-popup-inner {
	background: #fff;
	padding: 20px;
	max-width: 500px;
	width: 90%;
	position: relative;
	border-radius: 5px;
}

.rsgdxhn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

/*Themes*/
.rsgdxhn-theme-dark .rsgdxhn-popup-inner {
	background: #111111;
	color: #ffffff;
}
.rsgdxhn-theme-light {
	background: #fff;
	color: #111111;
}