/* Free Check — GSM form (400px) + theme background */
body.pc-page-shell-compact-tool:has(#retail-free-check-page) {
	--fpcc-page-bg: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 11%, #f4f6f8 89%);
	--fpcc-page-bg-gradient: linear-gradient(
		165deg,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 16%, #ffffff 84%) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 9%, #f8fafc 91%) 48%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 13%, #ffffff 87%) 100%
	);
}

html[data-pc-theme="dark"] body.pc-page-shell-compact-tool:has(#retail-free-check-page) {
	--fpcc-page-bg: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 18%, #0f172a 82%);
	--fpcc-page-bg-gradient: linear-gradient(
		165deg,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 24%, #0f172a 76%) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 14%, #070b12 86%) 100%
	);
}

html.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)),
html.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)) body.pc-page-shell-compact-tool {
	background: var(--fpcc-page-bg-gradient) !important;
	background-color: var(--fpcc-page-bg) !important;
}

body.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)) .pc-storefront-page-column,
body.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)) .pc-compact-tool-content-wrapper {
	background: var(--fpcc-page-bg-gradient) !important;
}

body.pc-page-shell-compact-tool:has(#retail-free-check-page):has(.pc-global-site-bg) .pc-storefront-page-column,
body.pc-page-shell-compact-tool:has(#retail-free-check-page):has(.pc-global-site-bg) .pc-compact-tool-content-wrapper {
	background: transparent !important;
}

#retail-free-check-page {
	--primary: var(--bs-primary, #09090b);
	--primary-hover: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 88%, black 12%);
	--primary-ring: rgba(var(--bs-primary-rgb), .14);
	--white: #ffffff;
	--bg: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 6%, #fafafa 94%);
	--text: #09090b;
	--muted: #71717a;
	--subtle: #a1a1aa;
	--placeholder: #a1a1aa;
	--border: #e4e4e7;
	--border-hover: #d4d4d8;
	--input-bg: #ffffff;
	--radius: 8px;
	--fpcc-ctrl-h: 40px;
	--fpcc-gap: 20px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	color: var(--text) !important;
	font-family: 'DM Sans', sans-serif;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
}

#retail-free-check-page #fpcc-app {
	width: 100%;
}

/* Card = admin .form-wrap */
#retail-free-check-page .fpcc-card.fpcc-form-wrap,
#retail-free-check-page .fpcc-form-wrap {
	width: 100%;
	max-width: 400px;
	animation: fpcc-rise .36s cubic-bezier(.22, 1, .36, 1) both;
	border: 1px solid var(--border);
	padding: 30px;
	border-radius: 10px;
	background: var(--white);
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	overflow: visible;
}

@keyframes fpcc-rise {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

#retail-free-check-page .fpcc-card-body {
	padding: 0;
}

/* Header — admin .f-head */
#retail-free-check-page .fpcc-f-head {
	margin-bottom: 24px;
	text-align: center;
}

#retail-free-check-page .fpcc-f-head__title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -.03em;
	margin: 0 0 8px;
	line-height: 1.25;
	background: linear-gradient(
		120deg,
		rgb(var(--bs-primary-rgb)) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 45%, #06b6d4 55%) 55%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 25%, #14b8a6 75%) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

#retail-free-check-page .fpcc-f-domain {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
	line-height: 1.5;
}

#retail-free-check-page .fpcc-f-desc {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.5;
	margin: 0;
	text-align: center;
}

#retail-free-check-page .fpcc-f-sep {
	margin-bottom: 40px;
}

#retail-free-check-page .fpcc-form-shell {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

#retail-free-check-page .fpcc-field,
#retail-free-check-page .fpcc-field-group {
	margin: 0 0 var(--fpcc-gap);
	text-align: left;
}

#retail-free-check-page .fpcc-field-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

#retail-free-check-page .fpcc-field-label,
#retail-free-check-page .f-label {
	display: block;
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.2;
}

#retail-free-check-page .fpcc-imei-block {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: var(--fpcc-gap);
}

#retail-free-check-page .fpcc-imei-hint {
	margin: 5px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted);
}

/* Select2 — admin .f-input style */
#retail-free-check-page .fpcc-select-wrapper .select2-container {
	width: 100% !important;
	display: block !important;
}

#retail-free-check-page .select2-container--default .select2-selection--single {
	border: 1px solid var(--border) !important;
	border-radius: var(--radius) !important;
	height: var(--fpcc-ctrl-h) !important;
	min-height: var(--fpcc-ctrl-h) !important;
	display: flex !important;
	align-items: center !important;
	background: var(--input-bg) !important;
	box-shadow: none !important;
	transition: border-color .15s, box-shadow .15s;
}

#retail-free-check-page .select2-container--default.select2-container--focus .select2-selection--single,
#retail-free-check-page .select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 3px var(--primary-ring) !important;
}

#retail-free-check-page .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--text) !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	padding: 0 2rem 0 12px !important;
	line-height: var(--fpcc-ctrl-h) !important;
	height: var(--fpcc-ctrl-h) !important;
}

#retail-free-check-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: var(--fpcc-ctrl-h) !important;
	top: 0 !important;
	right: 10px !important;
}

.fpcc-storefront-select2-dropdown.select2-dropdown {
	border: 1px solid var(--border) !important;
	border-radius: var(--radius) !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08) !important;
	font-family: 'DM Sans', sans-serif !important;
	z-index: 9999 !important;
}

.fpcc-svc-opt__name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* IMEI input — admin .f-wrap / .f-input */
#retail-free-check-page .fpcc-input-wrapper {
	position: relative;
}

#retail-free-check-page .sv-imei-input-group {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--input-bg);
	overflow: hidden;
	min-height: var(--fpcc-ctrl-h);
	transition: border-color .15s, box-shadow .15s;
}

#retail-free-check-page .sv-imei-input-group:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-ring);
}

#retail-free-check-page .fpcc-input-icon-left {
	flex: 0 0 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--placeholder);
	font-size: 14px;
	font-weight: 600;
	border-right: none;
	background: transparent;
	pointer-events: none;
}

#retail-free-check-page .fpcc-input-text {
	flex: 1 1 auto;
	min-width: 0;
	height: var(--fpcc-ctrl-h) !important;
	border: none !important;
	background: transparent !important;
	padding: 0 12px 0 0 !important;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: var(--text) !important;
	box-shadow: none !important;
}

#retail-free-check-page .fpcc-input-text::placeholder {
	color: var(--placeholder);
	font-size: 13.5px;
}

#retail-free-check-page .sv-imei-field-overlay {
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .92) !important;
}

/* Turnstile */
#retail-free-check-page .fpcc-turnstile-wrap {
	margin: 0 0 var(--fpcc-gap);
	display: flex;
	justify-content: center;
}

/* Actions — admin .btn-go */
#retail-free-check-page .fpcc-actions-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 10px;
}

#retail-free-check-page .fpcc-tools-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
}

#retail-free-check-page .fpcc-submit-custom.btn-go,
#retail-free-check-page .fpcc-submit-custom {
	width: 100%;
	height: var(--fpcc-ctrl-h);
	min-height: var(--fpcc-ctrl-h);
	border: none !important;
	border-radius: var(--radius);
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .01em;
	color: #fff !important;
	background: linear-gradient(
		135deg,
		rgb(var(--bs-primary-rgb)),
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 72%, white 28%)
	) !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.22) !important;
	transition: background .15s, transform .12s, box-shadow .15s;
}

#retail-free-check-page .fpcc-submit-custom .btn-arrow {
	width: 14px;
	height: 14px;
	stroke: rgba(255, 255, 255, .85);
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform .18s cubic-bezier(.22, 1, .36, 1);
}

#retail-free-check-page .fpcc-submit__idle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

#retail-free-check-page .fpcc-submit__busy {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#retail-free-check-page .fpcc-submit__spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: fpcc-spin .7s linear infinite;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-submit__busy-text {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

@keyframes fpcc-spin {
	to { transform: rotate(360deg); }
}

@keyframes fpcc-submit-pulse {
	0%, 100% {
		box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.22);
	}
	50% {
		box-shadow: 0 6px 22px rgba(var(--bs-primary-rgb), 0.45);
	}
}

#retail-free-check-page .fpcc-submit-custom:hover:not(:disabled) {
	background: linear-gradient(
		135deg,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 88%, black 12%),
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 78%, white 22%)
	) !important;
	box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), 0.28) !important;
	transform: translateY(-1px);
}

#retail-free-check-page .fpcc-submit-custom:hover:not(:disabled) .btn-arrow {
	transform: translateX(2px);
}

#retail-free-check-page .fpcc-submit-custom:active:not(:disabled) {
	transform: none;
}

#retail-free-check-page .fpcc-submit-custom:disabled:not(.is-loading) {
	opacity: .75;
	cursor: not-allowed;
	transform: none;
}

#retail-free-check-page .fpcc-submit-custom.is-loading .fpcc-submit__idle {
	display: none;
}

#retail-free-check-page .fpcc-submit-custom.is-loading .fpcc-submit__busy {
	display: inline-flex;
}

#retail-free-check-page .fpcc-submit-custom.is-loading,
#retail-free-check-page .fpcc-submit-custom.is-loading:disabled {
	opacity: 1 !important;
	cursor: wait !important;
	transform: none;
	animation: fpcc-submit-pulse 1.15s ease-in-out infinite;
}

#retail-free-check-page #freeCheckCard.is-checking {
	position: relative;
}

#retail-free-check-page #freeCheckCard.is-checking::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(255, 255, 255, 0.35);
	pointer-events: none;
	z-index: 1;
}

#retail-free-check-page #freeCheckCard.is-checking .fpcc-form-shell,
#retail-free-check-page #freeCheckCard.is-checking .fpcc-actions-row,
#retail-free-check-page #freeCheckCard.is-checking .fpcc-tools-row {
	position: relative;
	z-index: 2;
}

#retail-free-check-page .fpcc-scan-btn {
	width: 100%;
	height: var(--fpcc-ctrl-h);
	min-height: var(--fpcc-ctrl-h);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text);
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	transition: border-color .15s, background .15s;
	position: relative;
}

#retail-free-check-page .fpcc-scan-btn .sv-imei-scan-btn__icon {
	font-size: 14px;
	line-height: 1;
}

#retail-free-check-page .fpcc-scan-btn .sv-imei-scan-btn__spin {
	display: none;
	width: 14px;
	height: 14px;
	border-width: 2px;
}

#retail-free-check-page .fpcc-scan-btn.is-loading {
	opacity: .75;
	pointer-events: none;
}

#retail-free-check-page .fpcc-scan-btn.is-loading .fpcc-scan-btn__label,
#retail-free-check-page .fpcc-scan-btn.is-loading .sv-imei-scan-btn__icon {
	display: none;
}

#retail-free-check-page .fpcc-scan-btn.is-loading .sv-imei-scan-btn__spin {
	display: inline-block;
}

#retail-free-check-page .fpcc-scan-btn:hover {
	border-color: var(--border-hover);
	background: #f4f4f5;
}

#retail-free-check-page .fpcc-show-example {
	width: 100%;
	margin: 0;
	min-height: var(--fpcc-ctrl-h);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text);
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

#retail-free-check-page .fpcc-show-example:hover {
	border-color: var(--border-hover);
	background: #f4f4f5;
}

#retail-free-check-page .fpcc-show-example.is-open .fpcc-show-example__chev {
	transform: rotate(180deg);
}

#retail-free-check-page .fpcc-show-example__chev {
	transition: transform .2s;
}

#retail-free-check-page .fpcc-example-panel {
	margin: 0;
	padding: 12px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-size: 13px;
	max-height: 240px;
	overflow: auto;
}

#retail-free-check-page .fpcc-example-panel[hidden] {
	display: none !important;
}

/* Footnotes */
.fpcc-footnotes {
	margin: 16px 0 0;
	padding: 0;
	text-align: center;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
}

.fpcc-footnotes__lead {
	margin: 0 0 8px;
}

.fpcc-footnotes__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 12px;
}

.fpcc-footnotes__list li::marker {
	content: none;
}

.fpcc-footnotes__list li {
	position: relative;
	padding-left: 0;
}

.fpcc-footnotes__list li::before {
	content: none;
}

/* Alerts */
#retail-free-check-page .alert {
	margin-bottom: 16px !important;
	border-radius: var(--radius);
	font-size: 13px;
	padding: 10px 12px;
	line-height: 1.45;
}

#retail-free-check-page .alert-warning {
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #b45309;
}

#retail-free-check-page .alert-secondary {
	background: #f4f4f5;
	border: 1px solid var(--border);
	color: var(--muted);
}

#retail-free-check-page .fpcc-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

/* Result modal popup */
.fpcc-result-modal {
	position: fixed;
	inset: 0;
	z-index: 1055;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
}

.fpcc-result-modal[hidden] {
	display: none !important;
}

.fpcc-result-modal.is-open {
	animation: fpcc-modal-fade-in .22s ease both;
}

.fpcc-result-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 9, 11, .45);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.fpcc-result-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: min(480px, calc(100vw - 2rem));
	max-height: min(88vh, 640px);
	display: flex;
	flex-direction: column;
	animation: fpcc-modal-rise .28s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes fpcc-modal-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fpcc-modal-rise {
	from { opacity: 0; transform: translateY(12px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

body.fpcc-result-modal-open {
	overflow: hidden;
}

#retail-free-check-page #freeResultSection.fpcc-card,
#retail-free-check-page #freeResultSection.fpcc-result-modal__card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	padding: 0;
	max-width: 100%;
}

#retail-free-check-page .fpcc-card-header-custom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .65rem 1rem;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-brand {
	display: flex;
	align-items: center;
	gap: .45rem;
	min-width: 0;
}

#retail-free-check-page .fpcc-result-icon {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: .35rem;
	background: #22c55e;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-result-title {
	font-weight: 700;
	color: #15803d;
	font-size: 15px;
	line-height: 1.2;
}

#retail-free-check-page .fpcc-result-actions {
	display: flex;
	gap: .35rem;
	align-items: center;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-result-modal__body {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 0;
}

#retail-free-check-page .fpcc-result-copy,
#retail-free-check-page .fpcc-result-close {
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--muted);
	cursor: pointer;
	transition: border-color .15s, color .15s;
}

#retail-free-check-page .fpcc-result-copy:hover,
#retail-free-check-page .fpcc-result-close:hover {
	border-color: var(--border-hover);
	color: var(--text);
}

#retail-free-check-page .fpcc-result-copy.is-copied {
	color: #15803d;
	border-color: #86efac;
}

#retail-free-check-page .fpcc-result-close {
	color: #dc2626;
}

#retail-free-check-page #freeResultSection.fpcc-result-modal__card {
	display: flex;
	flex-direction: column;
	max-height: min(88vh, 640px);
	overflow: hidden;
}

#retail-free-check-page .fpcc-result-body {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin: .75rem 1rem 1rem;
	padding: .5rem .65rem;
	max-height: min(62vh, 480px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
	scrollbar-width: thin;
	scrollbar-color: #d4d4d8 #fafafa;
	font-size: 13px;
	line-height: 1.45;
}

#retail-free-check-page .fpcc-result-body::-webkit-scrollbar {
	width: 6px;
}

#retail-free-check-page .fpcc-result-body::-webkit-scrollbar-thumb {
	background: #d4d4d8;
	border-radius: 999px;
}

#retail-free-check-page .ifree-report {
	text-align: left;
}

#retail-free-check-page .ifree-line {
	margin: 0 0 .35rem;
	padding: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #3f3f46;
	word-break: break-word;
}

#retail-free-check-page .ifree-line:last-child {
	margin-bottom: 0;
}

#retail-free-check-page .ifree-line--error {
	color: #dc2626;
	font-weight: 600;
}

#retail-free-check-page .ifree-key {
	font-weight: 600;
	color: var(--text);
}

#retail-free-check-page .ifree-val {
	font-weight: 400;
	color: #3f3f46;
}

#retail-free-check-page .ifree-badge {
	display: inline-block;
	padding: .05em .4em;
	border-radius: .2rem;
	font-size: .92em;
	font-weight: 600;
	line-height: 1.3;
}

#retail-free-check-page .ifree-badge--green {
	background: #dcfce7;
	color: #166534;
}

#retail-free-check-page .ifree-badge--red {
	background: #fee2e2;
	color: #991b1b;
}

#retail-free-check-page .ifree-badge--blue {
	background: #dbeafe;
	color: #1e40af;
}

#retail-free-check-page .ifree-details-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
}

#retail-free-check-page .ifree-device-image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: .5rem 0 .75rem;
	min-height: 80px;
}

#retail-free-check-page .ifree-device-image {
	max-width: 140px;
	max-height: 140px;
	object-fit: contain;
}

@media (max-width: 991.98px) {
	#retail-free-check-page {
		max-width: min(400px, calc(100vw - 1.7rem));
	}
}

@media (max-width: 640px) {
	#retail-free-check-page {
		max-width: 100%;
	}

	#retail-free-check-page .fpcc-card.fpcc-form-wrap,
	#retail-free-check-page .fpcc-form-wrap {
		padding: 24px 20px;
	}

	.fpcc-footnotes__list {
		flex-direction: column;
		align-items: center;
		gap: 4px;
	}
}
