/* ==========================================================================
   Zero Deposit Partner Onboarding  (/partner)
   All rules are scoped under .zdp so they cannot leak into the rest of the
   site, and so the site's Bootstrap defaults do not leak in here.
   ========================================================================== */

.zdp {
	--zdp-red: #e31e24;
	--zdp-red-dark: #b8171c;
	--zdp-ink: #16192b;
	--zdp-muted: #6b7280;
	--zdp-line: #e4e7f2;
	--zdp-bg: #f6f7fc;
	--zdp-ok: #0f9d58;
	--zdp-radius: 14px;
	--zdp-shadow: 0 10px 30px rgba(22, 25, 43, .08);

	background: var(--zdp-bg);
	color: var(--zdp-ink);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.zdp *,
.zdp *::before,
.zdp *::after { box-sizing: border-box; }

.zdp [hidden] { display: none !important; }

/* ----------------------------------------------------------- line icons --- */

.zdp-i {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	vertical-align: middle;
	overflow: visible;
}

.zdp-wrap {
	width: 100%;
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------------------------------------------------------------- hero --- */

.zdp-hero {
	position: relative;
	overflow: hidden;
	padding: 28px 0 54px;
	color: #fff;
	background: linear-gradient(135deg, #1d2340 0%, #2b1c3f 55%, #7a1520 100%);
}

.zdp-hero::after {
	content: "";
	position: absolute;
	right: -120px;
	top: -140px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(227, 30, 36, .45) 0%, rgba(227, 30, 36, 0) 70%);
}

.zdp-hero .zdp-wrap { position: relative; z-index: 1; }

.zdp-hero h1 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
}

.zdp-hero p {
	max-width: 700px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
}

.zdp-hero p strong { color: #fff; }

.zdp-usp {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.zdp-usp li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, .9);
}

.zdp-usp span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
}

.zdp-usp .zdp-i { width: 17px; height: 17px; }

/* --------------------------------------------------------------- steps --- */

.zdp-body { padding: 0 0 64px; }

.zdp-steps {
	/* The hero is position:relative, so it would paint over this bar where the
	   negative margin pulls it up. Lift it into its own stacking position. */
	position: relative;
	z-index: 3;
	display: flex;
	margin: -30px 0 26px;
	padding: 18px 10px;
	list-style: none;
	background: #fff;
	border-radius: var(--zdp-radius);
	box-shadow: var(--zdp-shadow);
	counter-reset: zdp;
	overflow-x: auto;
}

.zdp-steps li {
	position: relative;
	flex: 1 1 0;
	min-width: 92px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	padding: 0 6px;
	color: var(--zdp-muted);
	font-size: 12.5px;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
}

.zdp-steps li::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 0;
	width: calc(50% - 20px);
	height: 2px;
	background: var(--zdp-line);
}

.zdp-steps li::after {
	content: "";
	position: absolute;
	top: 15px;
	right: 0;
	width: calc(50% - 20px);
	height: 2px;
	background: var(--zdp-line);
}

.zdp-steps li:first-child::before,
.zdp-steps li:last-child::after { display: none; }

.zdp-steps li i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 2px solid var(--zdp-line);
	border-radius: 50%;
	background: #fff;
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
	transition: .25s;
}

.zdp-steps li.is-active { color: var(--zdp-ink); font-weight: 600; }

.zdp-steps li.is-active i {
	border-color: var(--zdp-red);
	background: var(--zdp-red);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(227, 30, 36, .14);
}

.zdp-steps li.is-done i {
	border-color: var(--zdp-ok);
	background: var(--zdp-ok);
	color: #fff;
	font-size: 0;
}

.zdp-steps li.is-done i::before { content: "\2713"; font-size: 15px; }

.zdp-steps li.is-done::after,
.zdp-steps li.is-done + li::before { background: var(--zdp-ok); }

/* ---------------------------------------------------------------- card --- */

.zdp-card {
	background: #fff;
	border-radius: var(--zdp-radius);
	box-shadow: var(--zdp-shadow);
	padding: 34px 34px 26px;
}

.zdp-panel { display: none; }
.zdp-panel.is-active { display: block; animation: zdpFade .28s ease; }

@keyframes zdpFade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

.zdp-panel-head {
	position: relative;
	margin-bottom: 24px;
	padding-left: 58px;
	min-height: 44px;
}

.zdp-head-ico {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(227, 30, 36, .09);
	color: var(--zdp-red);
}

.zdp-head-ico .zdp-i { width: 22px; height: 22px; }

.zdp-panel-head h2 {
	margin: 0 0 6px;
	color: var(--zdp-ink);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
}

.zdp-panel-head p {
	margin: 0;
	color: var(--zdp-muted);
	font-size: 14.5px;
}

/* ------------------------------------------------------ type selection --- */

.zdp-choice {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.zdp-opt {
	position: relative;
	display: block;
	padding: 26px 24px 22px;
	border: 2px solid var(--zdp-line);
	border-radius: var(--zdp-radius);
	background: #fff;
	cursor: pointer;
	transition: .22s;
}

.zdp-opt:hover {
	border-color: #c9cde0;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(22, 25, 43, .09);
}

.zdp-opt input { position: absolute; opacity: 0; pointer-events: none; }

.zdp-opt--featured {
	border-color: rgba(227, 30, 36, .35);
	background: linear-gradient(180deg, #fff7f7 0%, #fff 60%);
}

.zdp-opt-tag {
	position: absolute;
	top: -11px;
	left: 22px;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--zdp-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zdp-opt-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	border-radius: 13px;
	background: rgba(22, 25, 43, .05);
	color: var(--zdp-ink);
	transition: .22s;
}

.zdp-opt-ico .zdp-i { width: 24px; height: 24px; }

.zdp-opt input:checked ~ .zdp-opt-ico {
	background: rgba(227, 30, 36, .1);
	color: var(--zdp-red);
}

.zdp-opt-title {
	display: block;
	margin-bottom: 6px;
	font-size: 19px;
	font-weight: 700;
}

.zdp-opt-desc {
	display: block;
	color: var(--zdp-muted);
	font-size: 14px;
}

.zdp-opt-meta {
	display: block;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed var(--zdp-line);
	color: var(--zdp-muted);
	font-size: 12.5px;
	font-weight: 500;
}

.zdp-opt-check {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 2px solid var(--zdp-line);
	border-radius: 50%;
	color: transparent;
	transition: .2s;
}

.zdp-opt-check .zdp-i { width: 13px; height: 13px; stroke-width: 3; }

.zdp-opt input:checked ~ .zdp-opt-check {
	border-color: var(--zdp-red);
	background: var(--zdp-red);
	color: #fff;
}

.zdp-opt input:checked ~ .zdp-opt-title { color: var(--zdp-red); }

/* is-picked is set by the script; :has() is the progressive-enhancement twin. */
.zdp-opt.is-picked,
.zdp-opt:has(input:checked) {
	border-color: var(--zdp-red);
	box-shadow: 0 0 0 4px rgba(227, 30, 36, .1);
}

.zdp-opt input:focus-visible ~ .zdp-opt-check { box-shadow: 0 0 0 3px rgba(227, 30, 36, .28); }

/* -------------------------------------------------------------- fields --- */

.zdp-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 20px;
}

.zdp-col-2 { grid-column: 1 / -1; }

.zdp-field { min-width: 0; }

.zdp-field > label {
	display: block;
	margin-bottom: 7px;
	color: var(--zdp-ink);
	font-size: 13.5px;
	font-weight: 600;
}

.zdp-field > label em {
	color: var(--zdp-red);
	font-style: normal;
}

.zdp input[type="text"],
.zdp input[type="email"],
.zdp textarea,
.zdp select {
	width: 100%;
	height: 46px;
	padding: 10px 14px;
	border: 1.5px solid var(--zdp-line);
	border-radius: 10px;
	background: #fff;
	color: var(--zdp-ink);
	font-family: inherit;
	font-size: 14.5px;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color .18s, box-shadow .18s;
}

.zdp textarea {
	height: auto;
	min-height: 86px;
	resize: vertical;
}

.zdp input[type="text"]:focus,
.zdp input[type="email"]:focus,
.zdp textarea:focus,
.zdp select:focus {
	outline: none;
	border-color: var(--zdp-red);
	box-shadow: 0 0 0 3px rgba(227, 30, 36, .12);
}

.zdp input[disabled],
.zdp textarea[disabled] {
	background: #f4f5f9;
	color: var(--zdp-muted);
	cursor: not-allowed;
}

.zdp input.is-bad,
.zdp textarea.is-bad { border-color: var(--zdp-red); background: #fff8f8; }

/* Verified and frozen. Reads as "confirmed", not as "unavailable", so it must
   come after the [disabled] rule above. */
.zdp input.is-locked,
.zdp select.is-locked {
	background: rgba(15, 157, 88, .06);
	border-color: rgba(15, 157, 88, .38);
	color: var(--zdp-ink);
	font-weight: 500;
	cursor: default;
	opacity: 1;
	-webkit-text-fill-color: var(--zdp-ink);   /* Safari greys disabled text */
}

.zdp-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: stretch;
}

.zdp-inline > input { flex: 1 1 180px; }
.zdp-inline > .zdp-btn { flex: 0 0 auto; }

.zdp-code { flex: 0 0 132px; width: 132px; }

.zdp-hint {
	display: block;
	margin-top: 6px;
	color: var(--zdp-muted);
	font-size: 12.5px;
}

.zdp-err {
	margin: 8px 0 0;
	color: var(--zdp-red);
	font-size: 13px;
	font-weight: 500;
}

.zdp-err:empty { display: none; }

.zdp-err.is-ok { color: var(--zdp-ok); }

/* ------------------------------------------------------ reassurance note --- */

.zdp-privacy {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 14px;
	padding: 13px 15px;
	border: 1px solid rgba(15, 157, 88, .25);
	border-radius: 10px;
	background: rgba(15, 157, 88, .05);
	color: #37614c;
	font-size: 12.5px;
	line-height: 1.6;
}

.zdp-privacy .zdp-i {
	width: 17px;
	height: 17px;
	margin-top: 1px;
	color: var(--zdp-ok);
}

.zdp-privacy strong { color: #1f4a35; font-weight: 600; }

/* ----------------------------------------------------------------- otp --- */

.zdp-otp {
	margin-top: 14px;
	padding: 16px;
	border: 1px dashed var(--zdp-line);
	border-radius: 10px;
	background: var(--zdp-bg);
}

.zdp-otp > label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
}

.zdp-otp-input {
	max-width: 170px;
	flex: 0 0 170px !important;
	font-size: 20px !important;
	font-weight: 700;
	letter-spacing: .28em;
	text-align: center;
}

.zdp-link {
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--zdp-red);
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
}

.zdp-link[disabled] {
	color: var(--zdp-muted);
	text-decoration: none;
	cursor: default;
}

/* --------------------------------------------------------- badge/fetch --- */

.zdp-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
}

.zdp-badge--ok {
	background: rgba(15, 157, 88, .1);
	color: var(--zdp-ok);
}

.zdp-badge .zdp-i { width: 15px; height: 15px; }

.zdp-fetched {
	margin-top: 24px;
	padding: 22px;
	border: 1px solid rgba(15, 157, 88, .3);
	border-radius: var(--zdp-radius);
	background: linear-gradient(180deg, #f2fbf6 0%, #fff 70%);
}

.zdp-fetched-head h3 {
	margin: 8px 0 4px;
	font-size: 17px;
	font-weight: 700;
}

.zdp-fetched-head p {
	margin: 0 0 16px;
	color: var(--zdp-muted);
	font-size: 13.5px;
}

.zdp-fetched-head .zdp-badge { margin-top: 0; }

.zdp-dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	background: var(--zdp-line);
	border: 1px solid var(--zdp-line);
	border-radius: 10px;
	overflow: hidden;
}

.zdp-dl > div {
	padding: 12px 14px;
	background: #fff;
}

.zdp-dl dt {
	margin: 0 0 3px;
	color: var(--zdp-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.zdp-dl dd {
	margin: 0;
	color: var(--zdp-ink);
	font-size: 14px;
	font-weight: 500;
	word-break: break-word;
}

.zdp-dl .zdp-span-2 { grid-column: 1 / -1; }

.zdp-note {
	margin: 16px 0 0;
	padding: 12px 14px;
	border: 1px solid #ffd08a;
	border-radius: 10px;
	background: #fff8ec;
	color: #8a5300;
	font-size: 13px;
}

/* --------------------------------------------------------------- files --- */

.zdp-drop {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 42px 20px;
	border: 2px dashed #c9cde0;
	border-radius: var(--zdp-radius);
	background: var(--zdp-bg);
	text-align: center;
	cursor: pointer;
	transition: .2s;
}

.zdp-drop:hover,
.zdp-drop.is-over {
	border-color: var(--zdp-red);
	background: #fff7f7;
}

.zdp-drop-ico { display: block; color: var(--zdp-red); }
.zdp-drop-ico .zdp-i { width: 34px; height: 34px; stroke-width: 1.5; }
.zdp-drop strong { font-size: 15.5px; }
.zdp-drop > span { color: var(--zdp-muted); font-size: 13.5px; }

.zdp-files {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.zdp-files li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	padding: 13px 16px;
	border: 1px solid var(--zdp-line);
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
}

.zdp-files li .zdp-file-ico { display: flex; color: var(--zdp-muted); }
.zdp-files li .zdp-file-ico .zdp-i { width: 21px; height: 21px; }
.zdp-file-del .zdp-i { width: 14px; height: 14px; stroke-width: 2.25; }
.zdp-files li .zdp-file-name { flex: 1 1 auto; word-break: break-all; font-weight: 500; }
.zdp-files li .zdp-file-tag {
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--zdp-bg);
	color: var(--zdp-muted);
	font-size: 11.5px;
	font-weight: 600;
	white-space: nowrap;
}

.zdp-file-del {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background: rgba(227, 30, 36, .1);
	color: var(--zdp-red);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
}

.zdp-file-del:hover { background: var(--zdp-red); color: #fff; }

/* -------------------------------------------------------------- review --- */

.zdp-review-block { margin-bottom: 20px; }

.zdp-review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.zdp-review-head h3 {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--zdp-muted);
}

.zdp-review-head h3 .zdp-i { width: 18px; height: 18px; color: var(--zdp-red); }

.zdp-agree {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 22px 0 4px;
	padding: 16px;
	border: 1px solid var(--zdp-line);
	border-radius: 10px;
	background: var(--zdp-bg);
	font-size: 13.5px;
	line-height: 1.55;
	cursor: pointer;
}

.zdp-agree input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--zdp-red);
}

/* -------------------------------------------------------------- buttons -- */

.zdp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 26px;
	border: 1.5px solid var(--zdp-red);
	border-radius: 10px;
	background: var(--zdp-red);
	color: #fff;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: .18s;
}

.zdp-btn:hover {
	background: var(--zdp-red-dark);
	border-color: var(--zdp-red-dark);
	color: #fff;
	text-decoration: none;
}

.zdp-btn--ghost {
	background: #fff;
	color: var(--zdp-red);
}

.zdp-btn--ghost:hover {
	background: #fff2f2;
	border-color: var(--zdp-red);
	color: var(--zdp-red-dark);
}

.zdp-btn--lg { padding: 14px 38px; font-size: 15.5px; }

.zdp-btn[disabled] {
	border-color: #d7dae6;
	background: #d7dae6;
	color: #fff;
	cursor: not-allowed;
}

.zdp-btn--ghost[disabled] {
	background: #f4f5f9;
	border-color: var(--zdp-line);
	color: #a6abbd;
}

.zdp-btn.is-busy { position: relative; color: transparent !important; }

.zdp-btn.is-busy::after {
	content: "";
	position: absolute;
	width: 17px;
	height: 17px;
	border: 2px solid rgba(255, 255, 255, .45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: zdpSpin .7s linear infinite;
}

.zdp-btn--ghost.is-busy::after {
	border-color: rgba(227, 30, 36, .35);
	border-top-color: var(--zdp-red);
}

@keyframes zdpSpin { to { transform: rotate(360deg); } }

.zdp-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 30px;
	padding: 22px 0 0;
	/* style.css sets a site-wide footer{padding-top:55px;background:#212121};
	   this is a <footer>, so that black has to be cancelled explicitly. */
	background: none;
	border-top: 1px solid var(--zdp-line);
}

/* ---------------------------------------------------------------- done --- */

.zdp-done { text-align: center; padding: 22px 0 10px; }

.zdp-done-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: rgba(15, 157, 88, .12);
	color: var(--zdp-ok);
}

.zdp-done-ico .zdp-i { width: 34px; height: 34px; stroke-width: 1.6; }

.zdp-done h2 { margin: 0 0 8px; font-size: 26px; font-weight: 700; }
.zdp-done > p { max-width: 520px; margin: 0 auto 20px; color: var(--zdp-muted); }
.zdp-done .zdp-dl--done { max-width: 520px; margin: 0 auto 18px; text-align: left; }
.zdp-done .zdp-hint { max-width: 520px; margin: 0 auto 22px; }
.zdp-done .zdp-dl--done dd { font-size: 17px; font-weight: 700; letter-spacing: .04em; }

/* ----------------------------------------------------------- seo block --- */

.zdp-seo {
	margin-top: 26px;
	padding: 32px 34px 24px;
	background: #fff;
	border-radius: var(--zdp-radius);
	box-shadow: var(--zdp-shadow);
}

/* Clipped with max-height, never display:none -- the full text stays in the
   DOM so search engines can read all of it. */
.zdp-seo-body {
	position: relative;
	max-height: 240px;
	overflow: hidden;
	transition: max-height .45s ease;
}

.zdp-seo-body::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 110px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 85%);
	pointer-events: none;
	transition: opacity .3s;
}

.zdp-seo.is-open .zdp-seo-body::after { opacity: 0; }

.zdp-seo-body h2 {
	margin: 0 0 12px;
	color: var(--zdp-ink);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.zdp-seo-body h3 {
	margin: 26px 0 10px;
	color: var(--zdp-ink);
	font-size: 18px;
	font-weight: 700;
}

.zdp-seo-body h4 {
	margin: 20px 0 6px;
	color: var(--zdp-ink);
	font-size: 15px;
	font-weight: 600;
}

.zdp-seo-body p,
.zdp-seo-body li {
	color: var(--zdp-muted);
	font-size: 14.5px;
	line-height: 1.75;
}

.zdp-seo-body p { margin: 0 0 12px; }
.zdp-seo-body strong { color: var(--zdp-ink); font-weight: 600; }

.zdp-seo-body ul,
.zdp-seo-body ol {
	margin: 0 0 14px;
	padding-left: 20px;
}

.zdp-seo-body li { margin-bottom: 7px; }

.zdp-seo-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	padding: 9px 20px;
	border: 1.5px solid var(--zdp-line);
	border-radius: 999px;
	background: #fff;
	color: var(--zdp-red);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: .18s;
}

.zdp-seo-toggle:hover {
	border-color: var(--zdp-red);
	background: #fff4f4;
}

.zdp-seo-toggle .zdp-i {
	width: 17px;
	height: 17px;
	transition: transform .3s;
}

.zdp-seo.is-open .zdp-seo-toggle .zdp-i { transform: rotate(180deg); }

.zdp-foot {
	margin: 22px 0 0;
	color: var(--zdp-muted);
	font-size: 13.5px;
	text-align: center;
}

.zdp-foot a { color: var(--zdp-red); font-weight: 600; }

/* -------------------------------------------------------------- mobile --- */

@media (max-width: 860px) {
	.zdp-hero { padding: 40px 0 50px; }
	.zdp-hero h1 { font-size: 30px; }
	.zdp-card { padding: 26px 20px 20px; }
	.zdp-seo { padding: 24px 20px 20px; }
	.zdp-seo-body h2 { font-size: 20px; }
	.zdp-seo-body h3 { font-size: 16.5px; }
	.zdp-choice { grid-template-columns: 1fr; gap: 22px; }
	.zdp-grid { grid-template-columns: 1fr; }
	.zdp-dl { grid-template-columns: 1fr; }
	.zdp-panel-head h2 { font-size: 20px; }
}

@media (max-width: 620px) {
	.zdp-steps { padding: 14px 6px; }
	.zdp-steps li { min-width: 68px; font-size: 0; gap: 0; }
	.zdp-steps li.is-active { font-size: 11.5px; }
	.zdp-steps li span { display: none; }
	.zdp-steps li.is-active span { display: block; }
	.zdp-code { flex: 0 0 108px; width: 108px; }
	.zdp-inline > input { flex: 1 1 100%; }
	.zdp-inline > .zdp-btn { width: 100%; }
	.zdp-otp-input { flex: 1 1 100% !important; max-width: none; }
	.zdp-actions { flex-direction: column-reverse; }
	.zdp-actions .zdp-btn { width: 100%; }
}
