.rgb-overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.7);
	z-index: 1000;
	left: 0;
	top: 0;
}
.rgb-popup {
	z-index: 1001;
	background-color: white;
	position: fixed;
	max-width: 500px;
	left: 50vw;
	width: 100%;
	padding: 28px;
	top: 50vh;
	transform: translate(-50%, -50%);
	overflow: auto;
	max-height: 100vh;
}
.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: 8px;
	top: 8px;
}
