.sr-demo-bar {
	position: relative;
	z-index: 100000;
	color: #fff;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sr-demo-bar *,
.sr-demo-bar *::before,
.sr-demo-bar *::after {
	box-sizing: border-box;
}

.sr-demo-bar--invitation {
	background: #151515;
	border-top: 5px solid #f03a2c;
}

.sr-demo-bar--session {
	background: #f03a2c;
}

.sr-demo-bar__inner {
	width: min(1440px, calc(100% - 48px));
	min-height: 88px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 16px 0;
}

.sr-demo-bar__copy {
	display: grid;
	grid-template-columns: auto minmax(0, auto);
	align-items: baseline;
	column-gap: 14px;
	row-gap: 5px;
	min-width: 0;
}

.sr-demo-bar__copy strong {
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -.015em;
}

.sr-demo-bar__copy > span:last-child {
	grid-column: 2;
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
	line-height: 1.45;
}

.sr-demo-bar--session .sr-demo-bar__copy > span:last-child {
	color: rgba(255, 255, 255, .9);
}

.sr-demo-bar__eyebrow {
	grid-row: 1 / span 2;
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	padding-right: 14px;
	border-right: 1px solid rgba(255, 255, 255, .35);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: .17em;
	text-transform: uppercase;
	white-space: nowrap;
}

.sr-demo-bar form {
	margin: 0;
	flex: 0 0 auto;
}

.sr-demo-bar form input[type="hidden"] {
	display: none;
}

.sr-demo-bar button,
.sr-demo-bar__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 0;
	background: transparent;
	color: #fff;
	padding: 11px 16px;
	font: 800 12px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
	letter-spacing: .025em;
	text-decoration: none;
	text-transform: capitalize;
	cursor: pointer;
	transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.sr-demo-bar--invitation button {
	border-color: #f03a2c;
	background: #f03a2c;
}

.sr-demo-bar button:hover,
.sr-demo-bar button:focus-visible,
.sr-demo-bar__actions a:hover,
.sr-demo-bar__actions a:focus-visible {
	border-color: #fff;
	background: #fff;
	color: #151515;
	outline: none;
}

.sr-demo-bar__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.sr-demo-bar__actions a:first-child {
	background: #fff;
	color: #151515;
}

.sr-demo-bar__actions a:first-child:hover,
.sr-demo-bar__actions a:first-child:focus-visible {
	background: #151515;
	color: #fff;
}

.sr-demo-bar__message.is-blocked {
	font-weight: 800;
}

body.scene-relay-demo-session .lsc-workspace-shell {
	min-height: calc(100vh - 88px);
}

@media (max-width: 980px) {
	.sr-demo-bar__inner {
		width: min(100% - 32px, 760px);
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		padding: 17px 0;
	}

	.sr-demo-bar__actions {
		width: 100%;
		flex-wrap: wrap;
	}

	.sr-demo-bar__actions a {
		flex: 1 1 150px;
	}

	.sr-demo-bar form,
	.sr-demo-bar button {
		width: 100%;
	}
}

@media (max-width: 620px) {
	.sr-demo-bar__inner {
		width: calc(100% - 24px);
	}

	.sr-demo-bar__copy {
		grid-template-columns: 1fr;
	}

	.sr-demo-bar__eyebrow {
		grid-row: auto;
		align-self: auto;
		width: max-content;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .35);
		padding: 0 0 6px;
	}

	.sr-demo-bar__copy > span:last-child {
		grid-column: 1;
	}
}

@media print {
	.sr-demo-bar {
		display: none !important;
	}
}
