.rcd330-psf {
	margin: 0 0 22px;
}

.rcd330-psf__field {
	position: relative;
	margin: 0 0 14px;
}

.rcd330-psf__field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #0f0f16;
}

.rcd330-psf__field select {
	box-sizing: border-box;
	width: 100%;
	min-height: 42px;
	border: 1px solid #d9d9d9;
	background-color: #fff;
	color: #64646d;
}

.rcd330-psf__help-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 19px;
	height: 19px;
	margin-left: 6px;
	padding: 0;
	border: 1px solid #22a2c4;
	border-radius: 50%;
	background: #fff;
	color: #22a2c4;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	vertical-align: middle;
	cursor: pointer;
}

.rcd330-psf__help-toggle:hover,
.rcd330-psf__help-toggle:focus-visible {
	background: #22a2c4;
	color: #fff;
}

.rcd330-psf__popover {
	position: absolute;
	z-index: 999;
	top: 28px;
	left: 0;
	display: block;
	box-sizing: border-box;
	width: min(calc(100vw - 30px), 560px);
	max-height: 82vh;
	overflow: auto;
	padding: 14px;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(15, 15, 22, 0.18);
}

.rcd330-psf__popover[hidden] {
	display: none !important;
}

.rcd330-psf__popover--camera {
	width: min(calc(100vw - 30px), 520px);
}

.rcd330-psf__images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 12px;
	padding-right: 24px;
}

.rcd330-psf__image-link {
	display: block;
	cursor: zoom-in;
}

.rcd330-psf__image-link img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 6px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: opacity 0.2s ease;
}

.rcd330-psf__image-link:hover img,
.rcd330-psf__image-link:focus img {
	opacity: 0.86;
}

.rcd330-psf__help-close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: rgba(0, 0, 0, 0.68);
	color: #fff;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
}

.rcd330-psf__title,
.rcd330-psf__heading,
.rcd330-psf__text {
	display: block;
	padding-right: 20px;
	color: #333;
	line-height: 1.5;
}

.rcd330-psf__title,
.rcd330-psf__heading {
	color: #222;
	font-weight: 700;
	line-height: 1.35;
}

.rcd330-psf__title {
	margin-bottom: 10px;
	font-size: 17px;
}

.rcd330-psf__heading {
	margin: 14px 0 8px;
	font-size: 15px;
}

.rcd330-psf__text {
	margin-bottom: 9px;
	font-size: 14px;
}

.rcd330-psf__text:last-child {
	margin-bottom: 0;
}

.rcd330-psf__text a {
	color: #22a2c4;
	font-weight: 700;
}

@media (max-width: 480px) {
	.rcd330-psf__popover {
		position: fixed;
		top: 50%;
		left: 50%;
		width: min(calc(100vw - 30px), 420px);
		transform: translate(-50%, -50%);
	}

	.rcd330-psf__images {
		grid-template-columns: 1fr;
		padding-right: 0;
	}

	.rcd330-psf__text {
		padding-right: 0;
	}
}

