.rgb-overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: rgba(220,220,220,0.4);
	z-index: 1000;
	left: 0;
	top: 0;
	display: none;
}
.rgb-popup {
	z-index: 1001;
	background-color: #dcdcdc;
	position: fixed;
	max-width: 500px;
	left: 50vw;
	width: 100%;
	padding: 28px;
	top: 50vh;
	transform: translate(-50%, -50%);
	overflow: auto;
	max-height: 100vh;
	padding: 50px;
	border: solid 1px #838383;
	z-index: 1001;
}
.rgb-popup-image img {
	width: 100%;
	height: auto;
}
.rgb-popup-close {
	position: absolute;
	width: 16px;
	height: 16px;
	background-image: url(close.svg);
	background-size: contain;
	cursor: pointer;
	right: 20px;
	top: 20px;
}
.rgb-popup h2 {
	padding-left: 16%;
}