/**
 * Binance Gift Card — checkout panel
 * Colors come from the palette setting, injected inline.
 */

.binance-gc {
	--bgc-bg: #0a0118;
	--bgc-bg-rgb: 10, 1, 24;
	--bgc-surface: #0e0025;
	--bgc-surface-rgb: 14, 0, 37;
	--bgc-surface-2: #16003a;
	--bgc-surface-2-rgb: 22, 0, 58;
	--bgc-line: rgba(255, 255, 255, 0.17);
	--bgc-line-soft: rgba(255, 255, 255, 0.1);
	--bgc-accent: #ff0ab6;
	--bgc-accent-rgb: 255, 10, 182;
	--bgc-accent-2: #ffaa83;
	--bgc-on-accent: #ffffff;
	--bgc-text: #fbfbfb;
	--bgc-muted: rgba(251, 251, 251, 0.62);
	--bgc-ok: #34d399;
	--bgc-ok-rgb: 52, 211, 153;
	--bgc-ok-text: #6ee7b7;
	--bgc-err: #ff5d6c;
	--bgc-err-rgb: 255, 93, 108;
	--bgc-err-text: #ffa5ad;
	--bgc-notice-rgb: 255, 170, 131;
	--bgc-notice-line: #ffaa83;
	--bgc-notice-text: #ffd9c6;
	--bgc-shadow: rgba(0, 0, 0, 0.35);

	font-size: 14px;
	line-height: 1.6;
	color: var(--bgc-text);
}

.binance-gc * {
	box-sizing: border-box;
}

/* The checkout is somebody else's stylesheet — neutralise what leaks in. */
.binance-gc ol,
.binance-gc ul {
	margin: 0;
	padding: 0;
	padding-inline-start: 0;
	list-style: none;
}

.binance-gc li {
	margin: 0;
	list-style: none;
	background: none;
}

.binance-gc li::marker,
.binance-gc li::before {
	content: none;
}

.binance-gc__steps li:not(:last-child)::before,
.binance-gc__flow-item + .binance-gc__flow-item::before {
	content: "";
}

.binance-gc p {
	margin: 0 0 10px;
	color: inherit;
}

.binance-gc h4 {
	margin: 0;
	padding: 0;
	text-transform: none;
	color: var(--bgc-text);
}

.binance-gc img {
	max-width: 100%;
	height: auto;
}

.binance-gc label {
	display: block;
	float: none;
	width: auto;
	color: var(--bgc-muted);
}

.binance-gc__lead {
	margin: 0 0 12px;
	color: var(--bgc-muted);
}

/* ---------- Panel shell ---------- */

.binance-gc__panel {
	position: relative;
	padding: 28px;
	border: 1px solid var(--bgc-line);
	border-radius: 16px;
	background:
		radial-gradient(120% 90% at 0% 0%, rgba(var(--bgc-accent-rgb), 0.15) 0%, rgba(var(--bgc-accent-rgb), 0) 55%),
		linear-gradient(180deg, var(--bgc-surface) 0%, var(--bgc-bg) 100%);
	box-shadow: 0 10px 30px var(--bgc-shadow);
	overflow: hidden;
}

.binance-gc__panel::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--bgc-accent), var(--bgc-accent-2), transparent);
}

/* ---------- Flow strip (3 condensed steps) ---------- */

.binance-gc__flow {
	display: grid;
	/* auto-fit reacts to the payment box, not the viewport, so the strip
	   drops to fewer columns inside a narrow checkout instead of wrapping
	   every line into a stack of words. */
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	gap: 16px;
	margin: 0 0 24px;
	padding: 20px 18px;
	list-style: none;
	border: 1px solid var(--bgc-line-soft);
	border-radius: 12px;
	background: rgba(var(--bgc-bg-rgb), 0.55);
}

.binance-gc__flow-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 2px 14px 2px 0;
	position: relative;
	min-width: 0;
}

.binance-gc__flow-item + .binance-gc__flow-item::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 8%;
	bottom: 8%;
	width: 1px;
	background: var(--bgc-line-soft);
}

.binance-gc__flow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid var(--bgc-line);
	background: var(--bgc-surface-2);
	color: var(--bgc-accent-2);
}

.binance-gc__flow-icon svg {
	width: 19px;
	height: 19px;
}

.binance-gc__flow-text {
	font-size: 13px;
	line-height: 1.5;
	min-width: 0;
	font-weight: 600;
	color: var(--bgc-text);
}

.binance-gc__flow-num {
	color: var(--bgc-accent-2);
	font-weight: 800;
	margin-right: 2px;
}

/* ---------- Two-column grid ---------- */

.binance-gc__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 22px;
	align-items: start;
}

.binance-gc__col {
	padding: 24px;
	border: 1px solid var(--bgc-line-soft);
	border-radius: 12px;
	background: rgba(var(--bgc-surface-rgb), 0.6);
}

.binance-gc__col--code {
	background: linear-gradient(180deg, rgba(var(--bgc-surface-2-rgb), 0.85) 0%, rgba(var(--bgc-bg-rgb), 0.85) 100%);
	border-color: var(--bgc-line);
}

.binance-gc__col-title {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--bgc-text);
}

.binance-gc__intro {
	margin: 0 0 14px;
	font-size: 13px;
	color: var(--bgc-muted);
}

/* ---------- Stores ---------- */

.binance-gc__stores {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 12px;
	margin-bottom: 22px;
}

.binance-gc__store,
.binance-gc a.binance-gc__store {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 12px 14px;
	border: 1px solid var(--bgc-line-soft);
	border-radius: 10px;
	background: rgba(var(--bgc-bg-rgb), 0.7);
	color: var(--bgc-text) !important;
	text-decoration: none !important;
	transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.binance-gc__store:hover {
	border-color: var(--bgc-accent);
	background: rgba(var(--bgc-accent-rgb), 0.12);
	transform: translateY(-1px);
}

.binance-gc__store:focus-visible {
	outline: 2px solid var(--bgc-accent-2);
	outline-offset: 2px;
}

.binance-gc__store img {
	max-height: 26px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
}

.binance-gc__store-name {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.01em;
}

/* ---------- Payment methods ---------- */

.binance-gc__payments {
	padding: 20px 16px;
	border: 1px dashed var(--bgc-line-soft);
	border-radius: 12px;
	margin-bottom: 22px;
}

.binance-gc__payments-title {
	margin: 0 0 12px;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--bgc-muted);
}

.binance-gc__paylist {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.binance-gc__pay {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 66px;
	margin: 0;
	padding: 10px 10px 9px;
	border: 1px solid var(--bgc-line-soft);
	border-radius: 10px;
	background: rgba(var(--bgc-accent-rgb), 0.06);
	transition: border-color 0.15s ease, background 0.15s ease;
}

.binance-gc__pay:hover {
	border-color: var(--bgc-accent);
	background: rgba(var(--bgc-accent-rgb), 0.12);
}

.binance-gc__pay-icon {
	display: inline-flex;
	color: var(--bgc-accent-2);
}

.binance-gc__pay-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.binance-gc__pay-label {
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: var(--bgc-text);
	text-align: center;
	white-space: nowrap;
}

/* merchant supplied logo: the image is the whole tile */
.binance-gc__pay--logo {
	padding: 9px 14px;
	min-width: 0;
}

.binance-gc__pay--logo img {
	display: block;
	height: 24px;
	width: auto;
	max-width: 86px;
	object-fit: contain;
}

/* ---------- How it works (collapsible) ---------- */

.binance-gc__howto {
	margin-bottom: 12px;
	border: 1px solid var(--bgc-line-soft);
	border-radius: 10px;
	background: rgba(var(--bgc-bg-rgb), 0.5);
}

.binance-gc__howto > summary {
	cursor: pointer;
	list-style: none;
	padding: 10px 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bgc-accent-2);
}

.binance-gc__howto > summary::-webkit-details-marker {
	display: none;
}

.binance-gc__howto > summary::after {
	content: "+";
	float: right;
	font-size: 15px;
	line-height: 1;
	color: var(--bgc-muted);
}

.binance-gc__howto[open] > summary::after {
	content: "\2212";
}

.binance-gc__steps {
	margin: 0;
	padding: 0 12px 14px;
	list-style: none;
}

.binance-gc__steps li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-bottom: 14px;
	position: relative;
	font-size: 13px;
	line-height: 1.6;
}

.binance-gc__steps li:last-child {
	padding-bottom: 0;
}

.binance-gc__steps li:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 11px;
	top: 23px;
	bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, var(--bgc-line), rgba(var(--bgc-accent-rgb), 0.05));
}

.binance-gc__step-num {
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--bgc-line);
	background: var(--bgc-surface-2);
	color: var(--bgc-accent-2);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	z-index: 1;
}

.binance-gc__step-text {
	padding-top: 2px;
}

.binance-gc__footnote {
	margin: 0;
	text-align: center;
	font-size: 12px;
	line-height: 1.5;
	color: var(--bgc-muted);
}

/* ---------- Amount ---------- */

.binance-gc__amount {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	margin-bottom: 20px;
	border: 1px solid var(--bgc-line);
	border-radius: 10px;
	background: rgba(var(--bgc-accent-rgb), 0.1);
}

.binance-gc__amount-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--bgc-muted);
}

.binance-gc__amount-value,
.binance-gc__amount-value .woocommerce-Price-amount,
.binance-gc__amount-value bdi {
	font-size: 18px;
	font-weight: 800;
	color: var(--bgc-ok);
	white-space: nowrap;
}

/* ---------- Code field ---------- */

.binance-gc__field {
	margin-bottom: 20px;
}

.binance-gc__field label {
	display: block;
	margin-bottom: 9px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bgc-muted);
}

.binance-gc__field label .required {
	color: var(--bgc-accent-2);
	border: 0;
}

.binance-gc__input,
.binance-gc input.binance-gc__input {
	display: block;
	width: 100%;
	margin: 0;
	padding: 16px 14px;
	border: 1px solid var(--bgc-line);
	border-radius: 10px;
	background: rgba(var(--bgc-bg-rgb), 0.8);
	color: var(--bgc-text);
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
	font-size: 16px;
	letter-spacing: 0.16em;
	text-align: center;
	text-transform: uppercase;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.binance-gc__input::placeholder {
	color: rgba(164, 152, 201, 0.5);
	letter-spacing: 0.16em;
}

.binance-gc__input:focus {
	outline: none;
	border-color: var(--bgc-accent);
	box-shadow: 0 0 0 3px rgba(var(--bgc-accent-rgb), 0.25);
}

.binance-gc__input.is-complete {
	border-color: var(--bgc-ok);
	box-shadow: 0 0 0 3px rgba(var(--bgc-ok-rgb), 0.18);
}

.binance-gc__input.is-invalid {
	border-color: var(--bgc-err);
	box-shadow: 0 0 0 3px rgba(var(--bgc-err-rgb), 0.18);
}

.binance-gc__hint {
	display: block;
	margin-top: 9px;
	font-size: 12px;
	color: var(--bgc-muted);
}

.binance-gc__hint.is-error {
	color: var(--bgc-err-text);
}

.binance-gc__hint.is-ok {
	color: var(--bgc-ok-text);
}

/* ---------- Buy button ---------- */

.binance-gc__buy,
.binance-gc a.binance-gc__buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 18px;
	margin-bottom: 14px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--bgc-accent) 0%, var(--bgc-accent-2) 100%);
	color: var(--bgc-on-accent) !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none !important;
	box-shadow: 0 6px 18px rgba(var(--bgc-accent-rgb), 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.binance-gc__buy:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(var(--bgc-accent-rgb), 0.45);
}

.binance-gc__buy:focus-visible {
	outline: 2px solid var(--bgc-accent-2);
	outline-offset: 2px;
}

.binance-gc__buy-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

/* ---------- Notice ---------- */

.binance-gc__notice {
	padding: 15px 16px;
	border-radius: 10px;
	border: 1px solid rgba(var(--bgc-notice-rgb), 0.35);
	background: rgba(var(--bgc-notice-rgb), 0.09);
	color: var(--bgc-notice-text);
	font-size: 12.5px;
	line-height: 1.5;
}

.binance-gc__notice strong {
	color: var(--bgc-notice-line);
}

/* ---------- Thank you page ---------- */

.binance-gc--thankyou {
	margin: 20px 0 30px;
}

.binance-gc__code-line {
	margin: 0;
	color: var(--bgc-muted);
}

.binance-gc__code-line code {
	background: rgba(var(--bgc-accent-rgb), 0.12);
	border: 1px solid var(--bgc-line);
	border-radius: 6px;
	padding: 2px 8px;
	color: var(--bgc-text);
	letter-spacing: 0.12em;
}

/* ---------- Blocks checkout ---------- */

.wc-block-components-radio-control-accordion-content .binance-gc {
	padding: 4px 0 2px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.binance-gc__grid {
		grid-template-columns: 1fr;
	}

	.binance-gc__flow {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.binance-gc__flow-item + .binance-gc__flow-item::before {
		display: none;
	}
}

@media (max-width: 480px) {
	.binance-gc__panel {
		padding: 14px;
	}

	.binance-gc__col {
		padding: 14px;
	}

	.binance-gc__stores {
		grid-template-columns: 1fr 1fr;
	}

	.binance-gc__input {
		font-size: 15px;
		letter-spacing: 0.12em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.binance-gc__buy,
	.binance-gc__store {
		transition: none;
	}

	.binance-gc__buy:hover,
	.binance-gc__store:hover {
		transform: none;
	}
}

/* ---------- Inline at checkout: no frame inside the payment box ---------- */

.binance-gc--inline .binance-gc__panel {
	padding: 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(180deg, var(--bgc-surface) 0%, var(--bgc-bg) 100%);
	box-shadow: none;
	overflow: hidden;
}

.binance-gc--inline .binance-gc__panel::before {
	display: none;
}

.binance-gc--inline .binance-gc__flow {
	background: none;
	border: 0;
	padding: 0 0 12px;
	border-bottom: 1px solid var(--bgc-line-soft);
	border-radius: 0;
	margin-bottom: 14px;
}

.binance-gc--inline .binance-gc__col {
	border: 0;
	background: none;
	padding: 0;
}

.binance-gc--inline .binance-gc__grid {
	gap: 22px;
}

.binance-gc--inline .binance-gc__col--code {
	padding-left: 22px;
	border-left: 1px solid var(--bgc-line-soft);
}

@media (max-width: 900px) {
	.binance-gc--inline .binance-gc__col--code {
		padding-left: 0;
		padding-top: 20px;
		border-left: 0;
		border-top: 1px solid var(--bgc-line-soft);
	}
}

/* ---------- Checkout teaser (thankyou mode) ---------- */

/* Self-contained: the panel never relies on the theme's background, so a dark
   palette on a light store (or the reverse) still reads correctly. */
.binance-gc--teaser {
	display: block;
	padding: 22px;
	border: 1px solid var(--bgc-line-soft);
	border-radius: 14px;
	background: linear-gradient(180deg, var(--bgc-surface) 0%, var(--bgc-bg) 100%);
	color: var(--bgc-text);
}

.binance-gc--teaser .binance-gc__lead {
	margin: 0 0 14px;
	color: var(--bgc-muted);
}

.binance-gc--teaser .binance-gc__flow--bare {
	border: 0;
	background: none;
	padding: 0;
	border-radius: 0;
	gap: 16px 18px;
	margin-bottom: 18px;
}

.binance-gc--teaser .binance-gc__flow-item {
	padding: 0 12px 0 0;
	align-items: flex-start;
}

.binance-gc--teaser .binance-gc__flow-text {
	color: var(--bgc-text);
}

.binance-gc__teaser-note {
	margin: 18px 0 0;
	padding: 11px 13px;
	border-radius: 10px;
	border: 1px solid var(--bgc-line-soft);
	background: rgba(var(--bgc-accent-rgb), 0.08);
	font-size: 13px;
	line-height: 1.55;
	color: var(--bgc-text);
}

/* ---------- Standalone payment page ---------- */

.binance-gc--standalone,
.binance-gc--receipt {
	margin: 0 0 30px;
}

.binance-gc--standalone .binance-gc__panel {
	padding: 22px;
}

.binance-gc--receipt .binance-gc__panel {
	padding: 20px;
}

.binance-gc__submit,
.binance-gc button.binance-gc__submit {
	display: block;
	width: 100%;
	padding: 15px 18px;
	margin-bottom: 16px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--bgc-accent) 0%, var(--bgc-accent-2) 100%);
	color: var(--bgc-on-accent);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(var(--bgc-accent-rgb), 0.3);
	transition: filter 0.15s ease, transform 0.15s ease;
}

.binance-gc__submit:hover:not(:disabled) {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.binance-gc__submit:disabled {
	opacity: 0.65;
	cursor: default;
}

/* the buy link becomes secondary once the submit button is the main action */
.binance-gc__buy--ghost,
.binance-gc a.binance-gc__buy--ghost {
	background: none;
	border: 1px solid var(--bgc-line);
	color: var(--bgc-text) !important;
	box-shadow: none;
}

.binance-gc__buy--ghost:hover {
	border-color: var(--bgc-accent);
	background: rgba(var(--bgc-accent-rgb), 0.1);
	filter: none;
	box-shadow: none;
}

.binance-gc__result {
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.5;
}

.binance-gc__result.is-ok {
	border: 1px solid rgba(var(--bgc-ok-rgb), 0.35);
	background: rgba(var(--bgc-ok-rgb), 0.1);
	color: var(--bgc-ok-text);
}

.binance-gc__result.is-error {
	border: 1px solid rgba(var(--bgc-err-rgb), 0.35);
	background: rgba(var(--bgc-err-rgb), 0.1);
	color: var(--bgc-err-text);
}

/* ---------- Payment icons inside the compact teaser ---------- */

.binance-gc--teaser .binance-gc__payments {
	margin: 14px 0 0;
	padding: 12px 0 0;
	border: 0;
	border-top: 1px solid var(--bgc-line-soft);
	border-radius: 0;
}

.binance-gc--teaser .binance-gc__paylist {
	justify-content: flex-start;
}

@media (max-width: 480px) {
	.binance-gc__pay {
		min-width: 56px;
		padding: 7px 6px 6px;
	}

	.binance-gc__pay-label {
		font-size: 10px;
	}
}

/* stores inside the compact teaser */
.binance-gc__stores--teaser {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.binance-gc__stores--teaser .binance-gc__store {
	min-height: 38px;
	padding: 8px 14px;
	flex: 0 1 auto;
}

.binance-gc__stores--teaser .binance-gc__store-name {
	font-size: 13px;
}

/* ---------- Light palettes: soften the inner surfaces ---------- */

.binance-gc__col--stores {
	background: rgba(var(--bgc-surface-rgb), 0.6);
}

.binance-gc__store,
.binance-gc a.binance-gc__store,
.binance-gc__input,
.binance-gc input.binance-gc__input {
	background: var(--bgc-bg);
}

.binance-gc__flow {
	background: rgba(var(--bgc-bg-rgb), 0.55);
}

.binance-gc__howto {
	background: rgba(var(--bgc-bg-rgb), 0.5);
}

/* ---------- Binance specifics ---------- */

.binance-gc__steps--open {
	padding: 0;
}

.binance-gc__steps--open li {
	padding-bottom: 16px;
}

/* compact token row, next to the amount */
.binance-gc__tokens {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.binance-gc__tokens-label {
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bgc-muted);
}

.binance-gc__tokenlist {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.binance-gc__tokenlist li {
	padding: 3px 9px;
	border-radius: 999px;
	border: 1px solid var(--bgc-line-soft);
	background: rgba(var(--bgc-accent-rgb), 0.1);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--bgc-accent);
}

.binance-gc__amount-value {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.25;
}

.binance-gc__quote {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--bgc-muted);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.binance-gc__instant {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 12px;
	font-size: 12px;
	color: var(--bgc-ok-text);
}

.binance-gc__instant::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bgc-ok);
	flex: 0 0 7px;
}

/* payment icons inside the teaser sit flush with the rest of the block */
.binance-gc--teaser .binance-gc__payments {
	margin: 18px 0 0;
	padding: 16px 0 0;
	border: 0;
	border-top: 1px solid var(--bgc-line-soft);
	border-radius: 0;
}

.binance-gc--teaser .binance-gc__paylist {
	justify-content: flex-start;
}
