.vrf-form {
	max-width: 640px;
	margin: 0 auto 1.5em;
	accent-color: #FA3D3A;
}
.vrf-field,
.vrf-group {
	margin: 0 0 1.1em;
}
.vrf-group {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 0.8em 1em 0.4em;
}
.vrf-group-legend {
	font-weight: 600;
	padding: 0 0.4em;
	color: #1d2327;
}
.vrf-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.3em;
}
.vrf-req {
	color: #FA3D3A;
}
.vrf-help {
	display: block;
	margin-top: 0.35em;
	font-size: 0.82em;
	color: #777;
	line-height: 1.35;
}
.vrf-help--group {
	margin: 0 0 0.7em;
}
ul.vrf-help-list {
	margin: 0.3em 0 0;
	padding-left: 1.15em;
	list-style: disc;
}
ul.vrf-help-list.vrf-help--group {
	margin: 0 0 0.7em;
}
ul.vrf-help-list li {
	margin: 0.08em 0;
}
.vrf-field input[type="text"],
.vrf-field input[type="email"],
.vrf-field input[type="tel"],
.vrf-field input[type="date"],
.vrf-field input[type="number"],
.vrf-field select,
.vrf-field textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.5em 0.6em;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	font: inherit;
	transition: border-color .32s ease, box-shadow .32s ease;
}
.vrf-field input:focus,
.vrf-field select:focus,
.vrf-field textarea:focus {
	outline: none;
	border-color: #FA3D3A;
	box-shadow: 0 0 0 2px rgba(250, 61, 58, .15);
}
.vrf-options {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
}
.vrf-option {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.vrf-counter {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid #ccc;
	border-radius: 6px;
	overflow: hidden;
}
.vrf-counter-minus,
.vrf-counter-plus {
	border: 0;
	background: #f3f3f3;
	width: 2.4em;
	font-size: 1.1em;
	cursor: pointer;
	line-height: 1;
}
.vrf-counter-minus:hover,
.vrf-counter-plus:hover {
	background: #fff1f1;
	color: #FA3D3A;
}
.vrf-counter-input {
	width: 4.5em !important;
	text-align: center;
	border: 0 !important;
	border-radius: 0 !important;
	-moz-appearance: textfield;
}
.vrf-recap {
	margin-top: 0.8em;
}
.vrf-recap:empty {
	display: none;
}
.vrf-recap-line,
.vrf-recap-sub {
	display: flex;
	justify-content: space-between;
	gap: 1em;
}
.vrf-recap-line {
	padding: 4px 0;
	font-size: 0.95em;
}
.vrf-recap-sub {
	padding: 1px 0 1px 1.4em;
	font-size: 0.85em;
	color: #888;
}
.vrf-recap-line > span:last-child,
.vrf-recap-sub > span:last-child {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.vrf-summary {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1.15em;
	font-weight: 700;
	padding: 0.6em 0;
	border-top: 2px solid #eee;
	margin-top: 0.4em;
}
.vrf-total {
	font-variant-numeric: tabular-nums;
	color: #FA3D3A;
}
.vrf-submit {
	margin-top: 0.6em;
	padding: 0.7em 1.4em;
	border: 0;
	border-radius: 6px;
	background: #FA3D3A;
	color: #fff;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: background .32s ease;
}
.vrf-submit:hover {
	background: #e12e2b;
}
.vrf-notice {
	padding: 0.8em 1em;
	border-radius: 6px;
	margin-bottom: 1em;
}
.vrf-notice--ok {
	background: #edf7f2;
	border: 1px solid #4CAF8B;
	color: #2f6b53;
}
.vrf-notice--error {
	background: #fdecec;
	border: 1px solid #FA3D3A;
	color: #b32522;
}

.vrf-confirm {
	display: flex;
	align-items: center;
	gap: 0.9em;
	max-width: 640px;
	margin: 1.5em auto;
	padding: 1.4em 1.6em;
	background: #edf7f2;
	border: 1px solid #4CAF8B;
	border-radius: 10px;
	color: #2f6b53;
}
.vrf-confirm-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #4CAF8B;
	color: #fff;
	font-size: 1.3em;
	font-weight: 700;
}
.vrf-confirm-msg {
	font-size: 1.05em;
}
.vrf-confirm-msg p:first-child {
	margin-top: 0;
}
.vrf-confirm-msg p:last-child {
	margin-bottom: 0;
}

.vrf-field--has-error input,
.vrf-field--has-error select,
.vrf-field--has-error textarea,
.vrf-field--has-error .vrf-dropzone,
.vrf-field--has-error .vrf-counter {
	border-color: #FA3D3A !important;
}
.vrf-field-error {
	display: block;
	margin-top: 0.3em;
	font-size: 0.82em;
	color: #FA3D3A;
	font-weight: 600;
}

.vrf-dropzone {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	padding: 1.1em 1em;
	border: 2px dashed #d8d8d8;
	border-radius: 8px;
	background: #fbfbfb;
	text-align: center;
	cursor: pointer;
	transition: border-color .4s ease, background .4s ease;
}
.vrf-dropzone:hover {
	border-color: #FA3D3A;
	background: #fff6f6;
}
.vrf-dropzone.is-dragover {
	border-color: #FA3D3A;
	background: #fff1f1;
}
.vrf-dropzone .vrf-file {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	opacity: 0;
	cursor: pointer;
}
.vrf-dropzone-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4em;
	color: #666;
	pointer-events: none;
}
.vrf-dropzone-icon {
	width: 34px;
	height: 34px;
	color: #9aa0a6;
}
.vrf-dropzone-text {
	font-size: 0.95em;
}
.vrf-dropzone-text strong {
	color: #444;
	text-decoration: underline;
	transition: color .4s ease;
}
.vrf-dropzone:hover .vrf-dropzone-text strong {
	color: #FA3D3A;
}
.vrf-dropzone-hint {
	font-size: 0.78em;
	color: #9aa0a6;
}
.vrf-dropzone.has-file .vrf-dropzone-inner {
	display: none;
}
.vrf-dropzone-preview {
	pointer-events: none;
	width: 100%;
}
.vrf-dropzone-files {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6em;
	justify-content: center;
}
.vrf-file-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25em;
	max-width: 90px;
}
.vrf-file-item img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}
.vrf-file-name {
	font-size: 0.72em;
	color: #555;
	text-align: center;
	max-width: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: #FA3D3A;
	border-color: #FA3D3A;
}
.flatpickr-day.today {
	border-color: #FA3D3A;
}
.flatpickr-day.today:hover {
	background: #FA3D3A;
	border-color: #FA3D3A;
	color: #fff;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
	background: #fff1f1;
	border-color: #fff1f1;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
	fill: #FA3D3A;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
	font-weight: 600;
}
