.blue-bird-rewards-shell {
	--bbr-ink: #172033;
	--bbr-muted: #5f6b7a;
	--bbr-line: #d8e2ed;
	--bbr-surface: #ffffff;
	--bbr-accent: #0f8fb8;
	--bbr-accent-dark: #0b6f92;
	--bbr-success-bg: #eaf8ef;
	--bbr-success-text: #17633a;
	--bbr-error-bg: #fff0f0;
	--bbr-error-text: #9f2d2d;
	--bbr-app-bg: #f6fbfd;
	--bbr-input-bg: #ffffff;
	color: var(--bbr-ink);
	font-family: inherit;
	margin: 1.5rem auto;
	max-width: 680px;
	touch-action: manipulation;
	-webkit-text-size-adjust: 100%;
	width: 100%;
}

.blue-bird-rewards-shell.is-dark {
	--bbr-ink: #f5f8fb;
	--bbr-muted: #b8c5d1;
	--bbr-line: #2a3a49;
	--bbr-surface: #111b25;
	--bbr-accent: #38bdf8;
	--bbr-accent-dark: #7dd3fc;
	--bbr-success-bg: #103524;
	--bbr-success-text: #9ce8bc;
	--bbr-error-bg: #3a171b;
	--bbr-error-text: #ffb4bd;
	--bbr-app-bg: #071019;
	--bbr-input-bg: #0b1620;
}

.blue-bird-rewards-shell *,
.blue-bird-rewards-shell *::before,
.blue-bird-rewards-shell *::after {
	box-sizing: border-box;
}

.blue-bird-rewards-shell [hidden] {
	display: none !important;
}

body.blue-bird-rewards-fullscreen-open {
	overflow: hidden;
}

body.blue-bird-rewards-modal-open {
	overflow: hidden;
}

.blue-bird-rewards-glitter {
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	z-index: 1000001;
}

.blue-bird-rewards-glitter span {
	animation: blue-bird-rewards-glitter-pop 900ms cubic-bezier(0.12, 0.74, 0.24, 1) forwards;
	border-radius: 2px;
	box-shadow: 0 0 10px currentColor;
	display: block;
	opacity: 0;
	position: fixed;
	transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
}

@keyframes blue-bird-rewards-glitter-pop {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
	}

	14% {
		opacity: 1;
	}

	72% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(calc(-50% + var(--bbr-glitter-x)), calc(-50% + var(--bbr-glitter-y))) scale(0.95) rotate(520deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.blue-bird-rewards-glitter {
		display: none;
	}
}

.blue-bird-rewards-toolbar {
	display: flex;
	gap: 0.5rem;
	justify-content: flex-end;
	margin-bottom: 0.75rem;
}

.blue-bird-rewards-screen-toggle,
.blue-bird-rewards-theme-toggle {
	align-items: center;
	appearance: none;
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-accent-dark);
	cursor: pointer;
	display: inline-flex;
	gap: 0.45rem;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0.6rem;
	touch-action: manipulation;
}

.blue-bird-rewards-screen-toggle:hover,
.blue-bird-rewards-screen-toggle:focus,
.blue-bird-rewards-theme-toggle:hover,
.blue-bird-rewards-theme-toggle:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.14);
	outline: none;
}

.blue-bird-rewards-screen-label {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.blue-bird-rewards-screen-icon {
	display: inline-block;
	height: 1em;
	position: relative;
	width: 1em;
}

.blue-bird-rewards-screen-icon::before,
.blue-bird-rewards-screen-icon::after {
	border-color: currentColor;
	border-style: solid;
	content: "";
	height: 0.42em;
	position: absolute;
	width: 0.42em;
}

.blue-bird-rewards-screen-icon::before {
	border-width: 2px 0 0 2px;
	left: 0;
	top: 0;
}

.blue-bird-rewards-screen-icon::after {
	border-width: 0 2px 2px 0;
	bottom: 0;
	right: 0;
}

.blue-bird-rewards-screen-icon.is-exit::before {
	border-width: 0 2px 2px 0;
	left: 0.05em;
	top: 0.05em;
}

.blue-bird-rewards-screen-icon.is-exit::after {
	border-width: 2px 0 0 2px;
	bottom: 0.05em;
	right: 0.05em;
}

.blue-bird-rewards-theme-icon {
	background: currentColor;
	border-radius: 999px;
	display: inline-block;
	height: 1em;
	position: relative;
	width: 1em;
}

.blue-bird-rewards-theme-icon::after {
	background: var(--bbr-surface);
	border-radius: 999px;
	content: "";
	height: 0.78em;
	position: absolute;
	right: -0.18em;
	top: -0.12em;
	width: 0.78em;
}

.blue-bird-rewards-theme-icon.is-dark {
	background: transparent;
	border: 2px solid currentColor;
}

.blue-bird-rewards-theme-icon.is-dark::after {
	background: currentColor;
	box-shadow:
		0 -0.62em 0 -0.28em currentColor,
		0 0.62em 0 -0.28em currentColor,
		0.62em 0 0 -0.28em currentColor,
		-0.62em 0 0 -0.28em currentColor;
	height: 0.28em;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.28em;
}

.blue-bird-rewards-shell.is-fullscreen {
	background: var(--bbr-app-bg);
	inset: 0;
	margin: 0;
	max-width: none;
	overflow: hidden;
	padding: clamp(0.75rem, 2.5vh, 1.5rem);
	position: fixed;
	width: 100%;
	z-index: 999999;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-toolbar,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-panel,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-install,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-alert,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-form {
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-panel {
	margin-top: 0;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-toolbar {
	margin-bottom: 0.5rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-panel,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-form {
	padding: clamp(0.75rem, 2vh, 1rem);
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-panel {
	gap: 0.75rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-brand {
	flex-basis: 130px;
	height: 62px;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-brand-logo img {
	max-height: 44px;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-kicker {
	font-size: 0.7rem;
	margin-bottom: 0.2rem;
}

.blue-bird-rewards-shell.is-fullscreen h2 {
	font-size: clamp(1.2rem, 3.2vh, 1.7rem);
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-copy {
	font-size: 0.92rem;
	line-height: 1.35;
	margin-top: 0.35rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-alert,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-form {
	margin-top: 0.6rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-form,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-entry,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-phone {
	gap: 0.55rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-field {
	gap: 0.3rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-field input,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-method,
.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-button {
	min-height: 44px;
	padding-bottom: 0.6rem;
	padding-top: 0.6rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-dial-pad {
	gap: 0.4rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-email-keyboard {
	gap: 0.3rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-email-keyboard button {
	font-size: 0.82rem;
	min-height: clamp(32px, 5.2vh, 42px);
	padding: 0.22rem;
}

.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-dial-pad button {
	font-size: 1.05rem;
	min-height: clamp(38px, 6.1vh, 48px);
	padding: 0.3rem;
}

@media (max-height: 680px) {
	.blue-bird-rewards-shell.is-fullscreen {
		overflow: auto;
	}

	.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-copy {
		display: none;
	}
}

@media (max-height: 560px) {
	.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-panel {
		align-items: center;
	}

	.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-brand {
		flex-basis: 96px;
		height: 52px;
	}

	.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-brand-logo img {
		max-height: 34px;
	}

	.blue-bird-rewards-shell.is-fullscreen h2 {
		font-size: 1.1rem;
	}

	.blue-bird-rewards-shell.is-fullscreen .blue-bird-rewards-email-keyboard button {
		min-height: 30px;
	}
}

.blue-bird-rewards-panel {
	align-items: center;
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
}

.blue-bird-rewards-panel-compact {
	align-items: flex-start;
}

.blue-bird-rewards-brand {
	align-items: center;
	background: #f6fbfd;
	border: 1px solid #d8e2ed;
	border-radius: 8px;
	color: #172033;
	display: flex;
	flex: 0 0 150px;
	height: 78px;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	overflow: hidden;
	padding: 0.65rem;
	text-align: center;
}

.blue-bird-rewards-brand-logo img {
	display: block;
	height: auto;
	max-height: 56px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.blue-bird-rewards-brand-text {
	align-items: center;
	flex-direction: column;
	gap: 0.25rem;
	line-height: 1.1;
}

.blue-bird-rewards-brand-text strong {
	color: #172033;
	font-size: 0.95rem;
	font-weight: 800;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.blue-bird-rewards-brand-text span {
	color: #5f6b7a;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.blue-bird-rewards-content {
	min-width: 0;
}

.blue-bird-rewards-kicker {
	color: var(--bbr-accent-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.blue-bird-rewards-shell h2 {
	color: var(--bbr-ink);
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	line-height: 1.15;
	margin: 0;
}

.blue-bird-rewards-copy {
	color: var(--bbr-muted);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0.6rem 0 0;
}

.blue-bird-rewards-alert {
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.4;
	margin: 1rem 0;
	opacity: 0;
	padding: 0.9rem 1rem;
	transform: translateY(-8px);
}

.blue-bird-rewards-alert.is-visible {
	animation: blue-bird-rewards-alert-in 220ms ease-out forwards;
}

.blue-bird-rewards-alert.is-hiding {
	animation: blue-bird-rewards-alert-out 240ms ease-in forwards;
}

.blue-bird-rewards-alert-success {
	background: var(--bbr-success-bg);
	color: var(--bbr-success-text);
}

.blue-bird-rewards-alert-error {
	background: var(--bbr-error-bg);
	color: var(--bbr-error-text);
}

@keyframes blue-bird-rewards-alert-in {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes blue-bird-rewards-alert-out {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-6px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.blue-bird-rewards-alert.is-visible,
	.blue-bird-rewards-alert.is-hiding {
		animation-duration: 1ms;
	}
}

.blue-bird-rewards-install {
	align-items: center;
	appearance: none;
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-accent-dark);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-weight: 800;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1rem;
	max-width: 320px;
	min-height: 44px;
	padding: 0.7rem 1rem;
	text-align: center;
	touch-action: manipulation;
	width: min(100%, 320px);
}

.blue-bird-rewards-install:hover,
.blue-bird-rewards-install:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.14);
	outline: none;
}

.blue-bird-rewards-install:disabled {
	cursor: default;
	opacity: 0.72;
}

.blue-bird-rewards-install-modal {
	align-items: center;
	background: rgba(7, 16, 25, 0.62);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	position: fixed;
	z-index: 1000000;
}

.blue-bird-rewards-install-dialog {
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(7, 16, 25, 0.28);
	color: var(--bbr-ink);
	max-width: 430px;
	padding: 1.35rem;
	position: relative;
	width: min(100%, 430px);
}

.blue-bird-rewards-install-close {
	align-items: center;
	appearance: none;
	background: var(--bbr-app-bg);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-ink);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 1.4rem;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 0.75rem;
	touch-action: manipulation;
	top: 0.75rem;
	width: 38px;
}

.blue-bird-rewards-install-close:hover,
.blue-bird-rewards-install-close:focus,
.blue-bird-rewards-install-done:hover,
.blue-bird-rewards-install-done:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.14);
	outline: none;
}

.blue-bird-rewards-install-icon {
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(23, 32, 51, 0.16);
	display: block;
	height: 72px;
	margin-bottom: 1rem;
	width: 72px;
}

.blue-bird-rewards-install-dialog h3 {
	color: var(--bbr-ink);
	font-size: 1.35rem;
	line-height: 1.2;
	margin: 0 2.4rem 0.6rem 0;
}

.blue-bird-rewards-install-dialog p,
.blue-bird-rewards-install-dialog li {
	color: var(--bbr-muted);
	font-size: 0.98rem;
	line-height: 1.45;
}

.blue-bird-rewards-install-dialog p {
	margin: 0 0 0.85rem;
}

.blue-bird-rewards-install-dialog ol {
	display: grid;
	gap: 0.45rem;
	margin: 0 0 0.95rem;
	padding-left: 1.35rem;
}

.blue-bird-rewards-install-note {
	background: var(--bbr-app-bg);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	padding: 0.75rem 0.85rem;
}

.blue-bird-rewards-install-done {
	appearance: none;
	background: var(--bbr-accent);
	border: 1px solid var(--bbr-accent);
	border-radius: 8px;
	color: #ffffff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	min-height: 44px;
	padding: 0.7rem 1rem;
	touch-action: manipulation;
	width: 100%;
}

.blue-bird-rewards-form {
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
	padding: 1.25rem;
}

.blue-bird-rewards-methods {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blue-bird-rewards-method {
	appearance: none;
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-ink);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	min-height: 52px;
	padding: 0.85rem 1rem;
	touch-action: manipulation;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
	width: 100%;
}

.blue-bird-rewards-method:hover,
.blue-bird-rewards-method:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.14);
	outline: none;
}

.blue-bird-rewards-method.is-active {
	background: var(--bbr-accent);
	border-color: var(--bbr-accent);
	color: #ffffff;
}

.blue-bird-rewards-entry {
	display: grid;
	gap: 0.75rem;
}

.blue-bird-rewards-back {
	appearance: none;
	background: transparent;
	border: 0;
	color: var(--bbr-accent-dark);
	cursor: pointer;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	justify-self: start;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	touch-action: manipulation;
}

.blue-bird-rewards-back:hover,
.blue-bird-rewards-back:focus {
	color: var(--bbr-ink);
	outline: none;
}

.blue-bird-rewards-field {
	display: grid;
	gap: 0.45rem;
}

.blue-bird-rewards-field label,
.blue-bird-rewards-field-label {
	color: var(--bbr-ink);
	font-size: 0.95rem;
	font-weight: 800;
}

.blue-bird-rewards-field input,
.blue-bird-rewards-email-display,
.blue-bird-rewards-phone-display {
	appearance: none;
	background: var(--bbr-input-bg);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-ink);
	display: block;
	font: inherit;
	line-height: 1.3;
	min-height: 48px;
	overflow-wrap: anywhere;
	padding: 0.75rem 0.9rem;
	touch-action: manipulation;
	width: 100%;
}

.blue-bird-rewards-email-display,
.blue-bird-rewards-phone-display {
	align-items: center;
	color: var(--bbr-muted);
	display: flex;
}

.blue-bird-rewards-email-display.has-value,
.blue-bird-rewards-phone-display.has-value {
	color: var(--bbr-ink);
	font-weight: 800;
}

.blue-bird-rewards-field input:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.18);
	outline: none;
}

.blue-bird-rewards-phone {
	display: grid;
	gap: 0.75rem;
}

.blue-bird-rewards-phone-display {
	background: var(--bbr-app-bg);
	justify-content: center;
	letter-spacing: 0.04em;
	text-align: center;
}

.blue-bird-rewards-email-keyboard {
	display: grid;
	gap: 0.38rem;
	grid-template-columns: repeat(10, minmax(0, 1fr));
}

.blue-bird-rewards-email-keyboard button {
	appearance: none;
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-ink);
	cursor: pointer;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	min-height: 42px;
	padding: 0.42rem;
	touch-action: manipulation;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blue-bird-rewards-email-keyboard button:hover,
.blue-bird-rewards-email-keyboard button:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.14);
	outline: none;
	transform: translateY(-1px);
}

.blue-bird-rewards-email-keyboard button:nth-last-child(-n+5) {
	grid-column: span 2;
}

.blue-bird-rewards-dial-pad {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blue-bird-rewards-dial-pad button {
	appearance: none;
	background: var(--bbr-surface);
	border: 1px solid var(--bbr-line);
	border-radius: 8px;
	color: var(--bbr-ink);
	cursor: pointer;
	font: inherit;
	font-size: 1.2rem;
	font-weight: 800;
	min-height: 48px;
	padding: 0.5rem;
	touch-action: manipulation;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blue-bird-rewards-dial-pad button:hover,
.blue-bird-rewards-dial-pad button:focus {
	border-color: var(--bbr-accent);
	box-shadow: 0 0 0 3px rgba(15, 143, 184, 0.14);
	outline: none;
	transform: translateY(-1px);
}

.blue-bird-rewards-button {
	align-items: center;
	appearance: none;
	background: var(--bbr-accent);
	border: 0;
	border-radius: 8px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 800;
	gap: 0.55rem;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.15rem;
	text-decoration: none;
	touch-action: manipulation;
	transition: background-color 160ms ease, transform 160ms ease;
	width: fit-content;
}

.blue-bird-rewards-button:hover,
.blue-bird-rewards-button:focus {
	background: var(--bbr-accent-dark);
	color: #ffffff;
	transform: translateY(-1px);
}

.blue-bird-rewards-button:disabled,
.blue-bird-rewards-button.is-loading {
	cursor: progress;
	opacity: 0.72;
	transform: none;
}

.blue-bird-rewards-button.is-loading::before {
	animation: blue-bird-rewards-spin 700ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	border-top-color: #ffffff;
	content: "";
	height: 1em;
	width: 1em;
}

@keyframes blue-bird-rewards-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 560px) {
	.blue-bird-rewards-panel {
		align-items: flex-start;
		padding: 1rem;
	}

	.blue-bird-rewards-toolbar {
		margin-bottom: 0.5rem;
	}

	.blue-bird-rewards-screen-toggle {
		width: 100%;
	}

	.blue-bird-rewards-brand {
		flex-basis: 92px;
		height: 64px;
	}

	.blue-bird-rewards-brand-logo img {
		max-height: 44px;
		max-width: 82px;
	}

	.blue-bird-rewards-form {
		padding: 1rem;
	}

	.blue-bird-rewards-methods {
		grid-template-columns: 1fr;
	}

	.blue-bird-rewards-button {
		width: 100%;
	}

	.blue-bird-rewards-install {
		max-width: none;
		width: 100%;
	}
}
