.rgb-overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	left: 0;
	top: 0;
}
.rgb-popup {
	z-index: 1001;
	background-color: rgb(238,236,212);
	position: fixed;
	max-width: 500px;
	left: 50vw;
	width: 100%;
	padding: 28px;
	top: 50vh;
	transform: translate(-50%, -50%);
	overflow: auto;
	max-height: 100vh;
}
.rgb-popup p {
	font-size: 20px;
	line-height: 23px;
	text-align: center;
}
.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;
}
