/* Break Check deposits: front end
   Scoped to #bc-dep so Elementor and theme styles stay out of the way. */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Archivo+Black&display=swap');

:root {
	--bcd-navy: #0E2647;
	--bcd-navy-deep: #071A31;
	--bcd-navy-soft: #16345C;
	--bcd-yellow: #FFC72C;
	--bcd-blue: #2E7BFF;
	--bcd-paper: #FFFFFF;
	--bcd-mist: #F5F8FC;
	--bcd-line: #E1E9F4;
	--bcd-slate: #5A7194;
	--bcd-light: #C3D3E8;
	--bcd-green: #17845A;
	--bcd-red: #C0392B;
}

/* ---------- standalone chrome ---------- */

body.bc-dep-standalone {
	margin: 0;
	background: var(--bcd-navy);
	font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
}

.bc-dep-topbar {
	background: var(--bcd-navy-deep);
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.bc-dep-topbar__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bc-dep-topbar__brand {
	display: flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
}

.bc-dep-topbar__brand img {
	display: block;
	height: 40px;
	width: auto;
}

.bc-dep-topbar__word {
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	color: #fff;
	font-size: 15px;
	line-height: .96;
	letter-spacing: -.01em;
}

.bc-dep-topbar__right {
	display: flex;
	align-items: center;
	gap: 18px;
}

.bc-dep-topbar__hours {
	color: #8FA5C4;
	font-size: 13px;
}

.bc-dep-topbar__call {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bcd-yellow);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: 1.5px solid rgba(255, 199, 44, .35);
	border-radius: 999px;
	padding: 8px 16px;
	transition: background .18s ease, border-color .18s ease;
}

.bc-dep-topbar__call svg { width: 17px; height: 17px; }
.bc-dep-topbar__call:hover { background: rgba(255, 199, 44, .12); border-color: var(--bcd-yellow); }

.bc-dep-main { display: block; }

.bc-dep-footer {
	background: var(--bcd-navy-deep);
	border-top: 1px solid rgba(255, 255, 255, .09);
	padding: 40px 22px;
}

.bc-dep-footer__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	justify-content: space-between;
	color: #A9BDD8;
	font-size: 13.5px;
	line-height: 1.7;
}

.bc-dep-footer__logo { display: block; height: auto; margin-bottom: 14px; }
.bc-dep-footer p { margin: 0 0 8px; }
.bc-dep-footer a { color: #DCE7F5; text-decoration: none; }
.bc-dep-footer a:hover { color: var(--bcd-yellow); }
.bc-dep-footer__col--legal { max-width: 420px; text-align: right; }
.bc-dep-footer__licence { color: #7E96B8; }
.bc-dep-footer__copy { color: #6B83A5; margin-top: 14px; }

@media (max-width: 720px) {
	.bc-dep-topbar__hours { display: none; }
	.bc-dep-footer__col--legal { text-align: left; }
}

/* ---------- page ---------- */

#bc-dep {
	position: relative;
	overflow: hidden;
	background: radial-gradient(120% 90% at 78% -10%, #1B3E6C 0%, var(--bcd-navy) 46%, var(--bcd-navy-deep) 100%);
	font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	padding: 0 22px 76px;
}

#bc-dep *, #bc-dep *::before, #bc-dep *::after { box-sizing: border-box; }

#bc-dep [hidden] { display: none !important; }

#bc-dep::before {
	content: '';
	position: absolute;
	top: -180px;
	left: -170px;
	width: 620px;
	height: 620px;
	background: url('../img/rotor.svg') no-repeat center / contain;
	opacity: .16;
	pointer-events: none;
	animation: bcd-spin 120s linear infinite;
}

@keyframes bcd-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
	#bc-dep::before { animation: none; }
}

.bc-dep__mode-flag {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	background: var(--bcd-yellow);
	color: var(--bcd-navy);
	font-size: 13px;
	font-weight: 700;
	padding: 10px 16px;
	border-radius: 0 0 10px 10px;
}

.bc-dep__grid {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding-top: 64px;
	display: grid;
	gap: 42px 56px;
	grid-template-columns: minmax(0, 1fr) 452px;
	grid-template-areas:
		'intro panel'
		'support panel';
	align-items: start;
}

.bc-dep__intro { grid-area: intro; }
.bc-dep__support { grid-area: support; }
.bc-dep__panel-wrap { grid-area: panel; position: sticky; top: 26px; }

@media (max-width: 1000px) {
	.bc-dep__grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas: 'intro' 'panel' 'support';
		gap: 34px;
		padding-top: 40px;
	}
	.bc-dep__panel-wrap { position: static; }
}

/* ---------- pitch ---------- */

.bc-dep__eyebrow {
	display: inline-block;
	color: var(--bcd-yellow);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .17em;
	text-transform: uppercase;
	padding-bottom: 12px;
}

.bc-dep__headline {
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	font-size: clamp(2rem, 4.4vw, 3.15rem);
	line-height: 1.03;
	letter-spacing: -.022em;
	margin: 0 0 18px;
}

.bc-dep__subline {
	color: var(--bcd-light);
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	max-width: 32em;
	margin: 0;
}

.bc-dep__points {
	list-style: none;
	margin: 0 0 38px;
	padding: 0;
	display: grid;
	gap: 4px;
}

.bc-dep__points li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.bc-dep__points li:last-child { border-bottom: 0; }

.bc-dep__point-icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(46, 123, 255, .16);
	border: 1px solid rgba(46, 123, 255, .34);
	color: var(--bcd-yellow);
}

.bc-dep__point-icon svg { width: 21px; height: 21px; }

.bc-dep__points h3 {
	margin: 2px 0 4px;
	font-size: 16.5px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -.005em;
}

.bc-dep__points p {
	margin: 0;
	color: #A9BDD8;
	font-size: 14.5px;
	line-height: 1.62;
	max-width: 44em;
}

.bc-dep__why {
	background: rgba(255, 255, 255, .045);
	border: 1px solid rgba(255, 255, 255, .1);
	border-left: 3px solid var(--bcd-yellow);
	border-radius: 4px 14px 14px 4px;
	padding: 24px 26px;
}

.bc-dep__why h2 {
	margin: 0 0 12px;
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 19px;
	color: #fff;
	letter-spacing: -.01em;
}

.bc-dep__why p {
	margin: 0 0 12px;
	color: #B7C8DE;
	font-size: 14.5px;
	line-height: 1.68;
}

.bc-dep__why p:last-child { margin-bottom: 0; }

.bc-dep__terms {
	margin-top: 18px;
	padding: 0 2px;
}

.bc-dep__terms h3 {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -.005em;
}

.bc-dep__terms p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.65;
	color: #94AAC8;
	max-width: 46em;
}

.bc-dep__legal {
	margin-top: 12px !important;
	font-size: 12.5px !important;
	color: #7188A8 !important;
}

/* ---------- panel ---------- */

.bc-dep__panel {
	background: var(--bcd-paper);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 32px 64px -24px rgba(2, 10, 24, .7), 0 2px 0 rgba(255, 255, 255, .1);
	color: var(--bcd-navy);
}

.bc-dep__panel-head {
	background: var(--bcd-mist);
	border-bottom: 1px solid var(--bcd-line);
	padding: 22px 26px 18px;
}

.bc-dep__amount {
	display: flex;
	align-items: baseline;
	gap: 13px;
	margin-bottom: 16px;
}

.bc-dep__amount-value {
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	font-size: 46px;
	line-height: 1;
	letter-spacing: -.03em;
	color: var(--bcd-navy);
	padding: 0 1px 2px;
	background: linear-gradient(to top, rgba(255, 199, 44, .55) 9px, transparent 9px);
}

.bc-dep__amount-value.is-awaiting {
	color: #97AAC6;
	background: none;
}

.bc-dep__amount-label {
	font-size: 13px;
	line-height: 1.35;
	color: var(--bcd-slate);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.bc-dep__amount-label strong {
	color: var(--bcd-navy);
	font-weight: 700;
	letter-spacing: .02em;
}

.bc-dep__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--bcd-slate);
}

.bc-dep__steps li {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	padding: 8px 12px;
	border-radius: 9px;
	background: rgba(14, 38, 71, .05);
	transition: background .2s ease, color .2s ease;
}

.bc-dep__steps li span {
	width: 21px;
	height: 21px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	border: 1.5px solid var(--bcd-line);
	font-size: 11.5px;
	font-weight: 700;
}

.bc-dep__steps li.is-current {
	background: var(--bcd-navy);
	color: #fff;
}

.bc-dep__steps li.is-current span {
	background: var(--bcd-yellow);
	border-color: var(--bcd-yellow);
	color: var(--bcd-navy);
}

.bc-dep__steps li.is-done span {
	background: var(--bcd-green);
	border-color: var(--bcd-green);
	color: #fff;
}

.bc-dep__panel-body { padding: 24px 26px 26px; }

.bc-dep__custom {
	border-top: 1px solid var(--bcd-line);
	margin: 0 0 16px;
	padding-top: 14px;
}

.bc-dep__switch {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
	user-select: none;
}

.bc-dep__switch input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bc-dep__switch-track {
	flex: 0 0 auto;
	width: 44px;
	height: 25px;
	border-radius: 999px;
	background: #C8D5E6;
	position: relative;
	transition: background .18s ease;
}

.bc-dep__switch-knob {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(8, 20, 40, .35);
	transition: transform .18s ease;
}

.bc-dep__switch input:checked + .bc-dep__switch-track { background: var(--bcd-blue); }
.bc-dep__switch input:checked + .bc-dep__switch-track .bc-dep__switch-knob { transform: translateX(19px); }
.bc-dep__switch input:focus-visible + .bc-dep__switch-track { box-shadow: 0 0 0 3.5px rgba(46, 123, 255, .3); }

.bc-dep__switch-text {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--bcd-navy);
	line-height: 1.35;
}

.bc-dep__custom-entry { padding-top: 15px; }
.bc-dep__custom-entry[hidden] { display: none; }
.bc-dep__custom-entry .bc-dep__field { margin-bottom: 6px; }

.bc-dep__prefixed { display: flex; align-items: stretch; }

.bc-dep__prefixed > span {
	display: grid;
	place-items: center;
	background: #fff;
	border: 1.5px solid #DCE5F1;
	border-right: 0;
	border-radius: 10px 0 0 10px;
	padding: 0 14px;
	font-size: 16px;
	font-weight: 700;
	color: var(--bcd-slate);
}

#bc-dep .bc-dep__prefixed input {
	border-radius: 0 10px 10px 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.bc-dep__custom-help {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--bcd-slate);
}

.bc-dep__totals {
	background: var(--bcd-mist);
	border: 1px solid var(--bcd-line);
	border-radius: 12px;
	padding: 13px 16px 14px;
	margin: 4px 0 4px;
}

.bc-dep__totals-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	font-size: 13.5px;
	color: var(--bcd-slate);
	padding: 4px 0;
}

.bc-dep__totals-row strong {
	color: var(--bcd-navy);
	font-weight: 700;
	white-space: nowrap;
}

.bc-dep__totals-row--grand {
	margin-top: 6px;
	padding-top: 11px;
	border-top: 1px solid var(--bcd-line);
	font-size: 15px;
	color: var(--bcd-navy);
	font-weight: 700;
}

.bc-dep__totals-row--grand strong {
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: -.02em;
}

/* ---------- form ---------- */

.bc-dep__field { margin-bottom: 15px; }

.bc-dep__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 480px) {
	.bc-dep__row { grid-template-columns: 1fr; gap: 0; }
}

.bc-dep__field label,
.bc-dep__label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--bcd-navy);
	margin-bottom: 6px;
	letter-spacing: -.002em;
}

.bc-dep__optional {
	font-weight: 500;
	color: var(--bcd-slate);
	font-size: 12px;
}

#bc-dep input[type='text'],
#bc-dep input[type='email'],
#bc-dep input[type='tel'],
#bc-dep input[type='date'],
#bc-dep select,
#bc-dep textarea {
	width: 100%;
	font-family: inherit;
	font-size: 15.5px;
	color: var(--bcd-navy);
	background: #fff;
	border: 1.5px solid #DCE5F1;
	border-radius: 10px;
	padding: 11px 13px;
	line-height: 1.4;
	transition: border-color .16s ease, box-shadow .16s ease;
	-webkit-appearance: none;
	appearance: none;
}

#bc-dep textarea { resize: vertical; min-height: 74px; }

#bc-dep input:focus,
#bc-dep select:focus,
#bc-dep textarea:focus {
	outline: none;
	border-color: var(--bcd-blue);
	box-shadow: 0 0 0 3.5px rgba(46, 123, 255, .17);
}

#bc-dep input::placeholder,
#bc-dep textarea::placeholder { color: #9BAECA; }

.bc-dep__field--rego input {
	text-transform: uppercase;
	letter-spacing: .09em;
	font-weight: 700;
}

.bc-dep__select { position: relative; }

.bc-dep__select svg {
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	color: var(--bcd-slate);
	pointer-events: none;
}

.bc-dep__select select { padding-right: 38px; }

.bc-dep__segmented {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.bc-dep__segmented label { margin: 0; cursor: pointer; }

.bc-dep__segmented input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bc-dep__segmented span {
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--bcd-slate);
	border: 1.5px solid #DCE5F1;
	border-radius: 10px;
	padding: 11px 6px;
	transition: all .16s ease;
}

.bc-dep__segmented input:checked + span {
	background: var(--bcd-navy);
	border-color: var(--bcd-navy);
	color: #fff;
}

.bc-dep__segmented input:focus-visible + span {
	box-shadow: 0 0 0 3.5px rgba(46, 123, 255, .3);
}

.bc-dep__hint {
	margin: -6px 0 15px;
	font-size: 12.5px;
	color: var(--bcd-slate);
	line-height: 1.5;
}

.bc-dep__error--block {
	margin-top: -10px;
	margin-bottom: 14px;
}

.bc-dep__error {
	display: none;
	color: var(--bcd-red);
	font-size: 12.5px;
	font-weight: 600;
	margin-top: 5px;
}

.bc-dep__field.has-error input,
.bc-dep__field.has-error select { border-color: var(--bcd-red); }
.bc-dep__field.has-error .bc-dep__hint {
	margin: -6px 0 15px;
	font-size: 12.5px;
	color: var(--bcd-slate);
	line-height: 1.5;
}

.bc-dep__error--block {
	margin-top: -10px;
	margin-bottom: 14px;
}

.bc-dep__error { display: block; }

.bc-dep__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

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

.bc-dep__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.005em;
	color: var(--bcd-navy);
	background: var(--bcd-yellow);
	border: 0;
	border-radius: 12px;
	padding: 15px 18px;
	margin-top: 8px;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 6px 0 #D9A413;
	transition: transform .12s ease, box-shadow .12s ease, background .16s ease;
}

.bc-dep__btn svg { width: 19px; height: 19px; }
.bc-dep__btn:hover { background: #FFD25A; }
.bc-dep__btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #D9A413; }
.bc-dep__btn:focus-visible { outline: 3px solid var(--bcd-blue); outline-offset: 3px; }

.bc-dep__btn[disabled] {
	opacity: .62;
	cursor: not-allowed;
	box-shadow: 0 6px 0 #D9A413;
	transform: none;
}

.bc-dep__btn--ghost {
	background: transparent;
	color: var(--bcd-navy);
	border: 1.5px solid var(--bcd-line);
	box-shadow: none;
	font-size: 15px;
}

.bc-dep__btn--ghost:hover { background: var(--bcd-mist); }
.bc-dep__btn--ghost:active { transform: none; box-shadow: none; }

.bc-dep__btn.is-busy .bc-dep__btn-label { opacity: .75; }

.bc-dep__spinner {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	border: 2.4px solid rgba(14, 38, 71, .28);
	border-top-color: var(--bcd-navy);
	animation: bcd-spin .7s linear infinite;
}

.bc-dep__back {
	display: block;
	width: 100%;
	background: none;
	border: 0;
	color: var(--bcd-slate);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 0 2px;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bc-dep__back:hover { color: var(--bcd-navy); }

.bc-dep__fineprint {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--bcd-slate);
	text-align: center;
	line-height: 1.5;
}

.bc-dep__lock {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--bcd-mist);
	border-top: 1px solid var(--bcd-line);
	padding: 13px 18px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bcd-slate);
	margin: 24px -26px -26px;
}

.bc-dep__lock svg { width: 15px; height: 15px; }

/* ---------- notices, summary, success ---------- */

.bc-dep__notice {
	border-radius: 10px;
	padding: 13px 15px;
	font-size: 14px;
	line-height: 1.55;
	margin-bottom: 14px;
}

.bc-dep__notice--warn {
	background: #FFF6DF;
	border: 1px solid #F3D68A;
	color: #6B5200;
}

.bc-dep__notice--error {
	background: #FDEEEC;
	border: 1px solid #F0BDB6;
	color: #93281B;
	font-weight: 600;
}

.bc-dep__notice a { color: inherit; font-weight: 700; }
.bc-dep__panel-body > .bc-dep__notice:last-child { margin-bottom: 0; }

.bc-dep__summary {
	background: var(--bcd-mist);
	border: 1px solid var(--bcd-line);
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 18px;
	font-size: 14px;
}

.bc-dep__summary dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 7px 16px;
}

.bc-dep__summary dt { color: var(--bcd-slate); font-size: 13px; }
.bc-dep__summary dd { margin: 0; font-weight: 700; text-align: right; color: var(--bcd-navy); }

.bc-dep__done { text-align: center; }

.bc-dep__tick {
	width: 62px;
	height: 62px;
	margin: 6px auto 18px;
	border-radius: 50%;
	background: rgba(23, 132, 90, .12);
	color: var(--bcd-green);
	display: grid;
	place-items: center;
}

.bc-dep__tick svg { width: 30px; height: 30px; }

.bc-dep__done h2 {
	margin: 0 0 10px;
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 23px;
	letter-spacing: -.015em;
	color: var(--bcd-navy);
}

.bc-dep__done p {
	margin: 0 0 20px;
	color: var(--bcd-slate);
	font-size: 14.5px;
	line-height: 1.6;
}

.bc-dep__ref {
	background: var(--bcd-navy);
	color: #fff;
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 18px;
}

.bc-dep__ref span {
	display: block;
	font-size: 11.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #9DB4D2;
	margin-bottom: 5px;
}

.bc-dep__ref strong {
	font-family: 'Archivo Black', 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 26px;
	letter-spacing: .02em;
	color: var(--bcd-yellow);
}

.bc-dep__done .bc-dep__summary dd { text-align: right; }

.bc-dep__panel-note {
	margin: 16px 0 0;
	text-align: center;
	font-size: 13.5px;
	color: #A9BDD8;
}

.bc-dep__panel-note a { color: var(--bcd-yellow); font-weight: 700; text-decoration: none; }
.bc-dep__panel-note a:hover { text-decoration: underline; }
