@font-face {
	font-family: "Hanken Grotesk";
	src: url("../../app/assets/fonts/HankenGrotesk-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Hanken Grotesk";
	src: url("../../app/assets/fonts/HankenGrotesk-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Hanken Grotesk";
	src: url("../../app/assets/fonts/HankenGrotesk-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

body.gateport-webinar-public {
	margin: 0;
	font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #101828;
	background: #f3f6fa;
}

.gateport-webinar-public-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 28px;
	background: #ffffff;
	border-bottom: 1px solid #d8dee8;
}

.gateport-webinar-public main,
.gateport-webinar-card {
	max-width: 1180px;
	margin: 32px auto;
	padding: 0 20px;
}

.gateport-webinar-card,
.gateport-webinar-room,
.gateport-webinar-panel,
.gateport-webinar-form {
	background: #ffffff;
	border: 1px solid #d1d9e6;
	border-radius: 8px;
}

.gateport-webinar-card,
.gateport-webinar-form {
	padding: 32px;
}

.gateport-webinar-layout {
	display: grid;
	grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.7fr) minmax(240px, 0.8fr);
	gap: 20px;
}

.gateport-webinar-room {
	padding: 20px;
}

.gateport-webinar-video,
.gateport-webinar-video-wrap {
	position: relative;
	background: #071b33;
	aspect-ratio: 16 / 9;
	display: grid;
	place-items: center;
	overflow: hidden;
	border-radius: 6px;
}

.gateport-webinar-video video,
.gateport-webinar-video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gateport-webinar-start,
.gateport-webinar-start-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(7, 27, 51, 0.78);
	color: #ffffff;
	font-weight: 700;
	z-index: 2;
}

.gateport-webinar-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	width: 100%;
	color: #ffffff;
}

.gateport-webinar-btn,
.gateport-webinar-form button,
.gateport-webinar-message button {
	border: 1px solid #09213d;
	background: #09213d;
	color: #ffffff;
	padding: 12px 16px;
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.gateport-webinar-btn.secondary {
	background: #ffffff;
	color: #09213d;
}

.gateport-webinar-panel {
	padding: 18px;
}

.gateport-webinar-panel h2,
.gateport-webinar-panel h3,
.gateport-webinar-card h1,
.gateport-webinar-form h2 {
	margin-top: 0;
}

.gateport-webinar-meta {
	display: grid;
	gap: 10px;
	margin: 18px 0;
}

.gateport-webinar-meta div,
.gateport-webinar-download {
	padding: 12px;
	background: #f3f6fa;
	border: 1px solid #dce3ee;
	border-radius: 6px;
}

.gateport-webinar-download.is-locked {
	opacity: 0.62;
}

.gateport-webinar-message textarea,
.gateport-webinar-form input,
.gateport-webinar-form select {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #c8d2df;
	border-radius: 6px;
	padding: 12px;
	font: inherit;
}

.gateport-webinar-form {
	display: grid;
	gap: 20px;
}

.gateport-webinar-form h3 {
	margin: 0;
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1.15;
}

.gateport-webinar-description {
	display: grid;
	gap: 8px;
	max-width: 860px;
	line-height: 1.6;
}

.gateport-webinar-description p {
	margin: 0;
}

.gateport-webinar-readmore {
	justify-self: start;
	border: 0;
	background: transparent;
	color: #09213d;
	padding: 0;
	font-weight: 800;
	cursor: pointer;
	text-decoration: underline;
}

.gateport-webinar-fields {
	display: grid;
	gap: 16px;
	max-width: 640px;
}

.gateport-webinar-form label {
	display: grid;
	gap: 7px;
	font-weight: 800;
	color: #101828;
}

.gateport-webinar-form .gateport-webinar-check {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	padding: 12px 14px;
	border: 1px solid #dce3ee;
	background: #f8fafc;
	border-radius: 6px;
	font-weight: 600;
	line-height: 1.45;
}

.gateport-webinar-form .gateport-webinar-check input {
	width: auto;
	margin: 3px 0 0;
}

.gateport-webinar-form > button[type="submit"] {
	justify-self: start;
	min-width: 180px;
	margin-top: 4px;
}

.gateport-webinar-message textarea {
	min-height: 110px;
	resize: vertical;
}

.gateport-webinar-note {
	color: #5b6678;
	font-size: 14px;
}

@media (max-width: 900px) {
	.gateport-webinar-public-header {
		padding: 14px 16px;
	}

	.gateport-webinar-room {
		margin: 16px;
		padding: 14px;
	}

	.gateport-webinar-layout {
		display: block;
	}

	.gateport-webinar-panel,
	.gateport-webinar-video-area {
		margin-bottom: 16px;
	}

	.gateport-webinar-card,
	.gateport-webinar-form {
		padding: 22px;
	}

	.gateport-webinar-fields {
		max-width: none;
	}

	.gateport-webinar-form > button[type="submit"] {
		width: 100%;
	}
}

/* Webinar room v2 */
.gateport-webinar-public-header {
	min-height: 64px;
}

.gateport-webinar-public-header img {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 50px;
	object-fit: contain;
}

.gateport-webinar-public main.gateport-webinar-room {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 28px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.gateport-webinar-room .gateport-webinar-hero,
.gateport-webinar-room .gateport-webinar-status-line,
.gateport-webinar-room .gateport-webinar-download-panel,
.gateport-webinar-room .gateport-webinar-status-card {
	max-width: none;
	margin-inline: 0;
	background: #fff;
	border: 1px solid #d1d9e6;
	border-radius: 8px;
}

.gateport-webinar-room .gateport-webinar-hero {
	padding: 22px 28px;
	margin-bottom: 18px;
}

.gateport-webinar-room .gateport-webinar-hero p {
	margin: 0 0 8px;
	color: #ff6a00;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gateport-webinar-room .gateport-webinar-hero h1 {
	margin: 0 0 8px;
	font-size: clamp(28px, 3.2vw, 46px);
	line-height: 1.05;
}

.gateport-webinar-status-line {
	padding: 12px 18px;
	margin-bottom: 18px;
}

.gateport-webinar-state {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 14px;
}

.gateport-webinar-status-card {
	padding: 34px;
	max-width: 760px;
	margin: 42px auto;
}

.gateport-webinar-room.is-waiting .gateport-webinar-status-card,
.gateport-webinar-late-card {
	position: relative;
	overflow: hidden;
	text-align: center;
	border: 1px solid #cbd6e5;
	background:
		radial-gradient(circle at 18% 18%, rgba(245, 180, 0, .22), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
	box-shadow: 0 22px 70px rgba(8, 33, 63, .12);
}

.gateport-webinar-room.is-waiting .gateport-webinar-status-card::before {
	content: "";
	display: block;
	width: 68px;
	height: 68px;
	margin: 0 auto 22px;
	border: 6px solid rgba(8, 33, 63, .12);
	border-top-color: #f5b400;
	border-radius: 50%;
	animation: gateport-webinar-spin 1s linear infinite;
}

.gateport-webinar-room.is-waiting .gateport-webinar-status-card::after {
	content: "";
	position: absolute;
	inset: auto -80px -90px auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(245, 180, 0, .16);
}

.gateport-webinar-status-card .gateport-webinar-state {
	display: block;
}

.gateport-webinar-room .gateport-webinar-layout {
	display: grid;
	grid-template-columns: minmax(240px, 300px) minmax(420px, 1fr) minmax(280px, 360px);
	align-items: start;
	gap: 22px;
}

.gateport-webinar-info,
.gateport-webinar-side > section,
.gateport-webinar-download-panel {
	background: #fff;
	border: 1px solid #d1d9e6;
	border-radius: 8px;
	padding: 22px;
}

.gateport-webinar-side {
	display: grid;
	gap: 18px;
}

.gateport-webinar-info h2,
.gateport-webinar-side h2,
.gateport-webinar-download-panel h2 {
	margin: 0 0 16px;
}

.gateport-webinar-teaser,
.gateport-webinar-description {
	margin: 0 0 16px;
}

.gateport-webinar-linkbutton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background: #fff;
	color: #08213f;
	font-weight: 800;
	cursor: pointer;
}

.gateport-webinar-info dl {
	display: grid;
	gap: 10px;
	margin: 20px 0 0;
}

.gateport-webinar-info dl div {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 12px;
	padding-top: 10px;
	border-top: 1px solid #e4eaf2;
}

.gateport-webinar-info dt {
	color: #5c6b7e;
	font-weight: 700;
}

.gateport-webinar-info dd {
	margin: 0;
	font-weight: 800;
}

.gateport-webinar-stream {
	position: relative;
	display: grid;
	min-height: 420px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	background: #061d39;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.gateport-webinar-stream video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #061d39;
}

.gateport-webinar-start {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: grid;
	place-items: center;
	background: rgba(6,29,57,.82);
	color: #fff;
	font-size: 22px;
	font-weight: 800;
}

.gateport-webinar-start[hidden] {
	display: none;
}

.gateport-webinar-start-button {
	position: absolute;
	z-index: 4;
	place-self: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 0;
	border-radius: 6px;
	background: #fff;
	color: #061d39;
	font-weight: 900;
	cursor: pointer;
}

.gateport-webinar-late-notice {
	position: absolute;
	left: 50%;
	top: 18px;
	z-index: 6;
	width: min(520px, calc(100% - 32px));
	transform: translateX(-50%);
	padding: 14px 18px;
	border: 1px solid rgba(245, 180, 0, .55);
	border-radius: 7px;
	background: rgba(255, 249, 231, .96);
	color: #08213f;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 14px 34px rgba(6, 29, 57, .2);
}

.gateport-webinar-late-notice[hidden] {
	display: none;
}

.gateport-webinar-controls {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	color: #fff;
}

.gateport-webinar-controls button {
	background: rgba(255,255,255,.95);
	color: #061d39;
	border: 0;
	border-radius: 5px;
	padding: 8px 12px;
	font-weight: 800;
	cursor: pointer;
}

.gateport-webinar-chatlog {
	display: grid;
	gap: 10px;
	max-height: 280px;
	overflow: auto;
	padding: 12px;
	background: #f5f8fc;
	border: 1px solid #dce4ef;
	border-radius: 6px;
}

.gateport-webinar-chatlog p {
	margin: 0;
}

.gateport-webinar-chatlog time {
	color: #66758a;
	font-weight: 700;
}

.gateport-webinar-chatlog .is-support {
	color: #0b4f33;
}

.gateport-webinar-message {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.gateport-webinar-message textarea {
	width: 100%;
	min-height: 92px;
	resize: vertical;
}

.gateport-webinar-message button {
	min-height: 42px;
}

.gateport-webinar-download-panel {
	margin-top: 22px;
}

.gateport-webinar-downloads {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 18px;
}

.gateport-webinar-downloads article {
	display: grid;
	gap: 14px;
	align-content: space-between;
	min-height: 138px;
	padding: 20px;
	border: 1px solid #d1d9e6;
	border-radius: 6px;
	background: #f9fbfe;
}

.gateport-webinar-downloads article strong {
	display: block;
	margin-bottom: 8px;
	font-size: 17px;
}

.gateport-webinar-downloads article p {
	margin: 0;
	color: #48566b;
	line-height: 1.45;
}

.gateport-webinar-downloads article.is-locked {
	opacity: .62;
}

.gateport-webinar-download-state,
.gateport-webinar-download-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 40px;
	padding: 10px 14px;
	border-radius: 6px;
	font-weight: 800;
	text-decoration: none;
}

.gateport-webinar-download-state {
	border: 1px solid #d1d9e6;
	color: #5d6b82;
	background: #eef2f7;
}

.gateport-webinar-download-action {
	border: 1px solid #09213d;
	color: #ffffff;
	background: #09213d;
}

@media (max-width: 1100px) {
	.gateport-webinar-room .gateport-webinar-layout {
		grid-template-columns: 1fr;
	}

	.gateport-webinar-stream {
		order: -1;
		min-height: 260px;
	}
}

@media (max-width: 700px) {
	.gateport-webinar-public main.gateport-webinar-room {
		padding: 14px;
	}

	.gateport-webinar-public-header {
		padding: 12px 14px;
	}

	.gateport-webinar-public-header img {
		max-width: 170px;
		max-height: 42px;
	}

	.gateport-webinar-room .gateport-webinar-hero,
	.gateport-webinar-info,
	.gateport-webinar-side > section,
	.gateport-webinar-download-panel,
	.gateport-webinar-status-card {
		padding: 18px;
	}

	.gateport-webinar-stream {
		min-height: 210px;
	}
}

/* Webinar room compact runtime */
.gateport-webinar-public,
.gateport-webinar-public * {
	box-sizing: border-box;
}

.gateport-webinar-public {
	overflow-x: hidden;
	max-width: 100vw;
}

.gateport-webinar-public-header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	padding: 18px 28px;
}

.gateport-webinar-header-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 0;
}

.gateport-webinar-header-meta h1 {
	margin: 0 0 4px;
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.05;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gateport-webinar-header-meta span {
	display: block;
	color: #516176;
	font-weight: 700;
}

.gateport-webinar-header-meta button,
.gateport-webinar-modal-close {
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background: #fff;
	color: #08213f;
	font-weight: 800;
	cursor: pointer;
}

.gateport-webinar-header-meta button {
	min-height: 42px;
	padding: 9px 14px;
	white-space: nowrap;
}

.gateport-webinar-room .gateport-webinar-layout {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 20px;
	width: 100%;
	min-width: 0;
}

.gateport-webinar-stream,
.gateport-webinar-side {
	min-width: 0;
}

.gateport-webinar-side > section,
.gateport-webinar-download-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.gateport-webinar-side {
	align-content: start;
}

.gateport-webinar-side > section {
	padding-bottom: 20px;
	border-bottom: 1px solid #d7dfeb;
}

.gateport-webinar-side > section:last-child {
	border-bottom: 0;
}

.gateport-webinar-download-panel {
	margin-top: 22px;
}

.gateport-webinar-stream {
	min-height: min(68vh, 720px);
	border-radius: 6px;
}

.gateport-webinar-prestart {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 14px;
	padding: 28px;
	text-align: center;
	background: rgba(6,29,57,.88);
	color: #fff;
}

.gateport-webinar-prestart[hidden] {
	display: none;
}

.gateport-webinar-prestart strong {
	font-size: clamp(22px, 3vw, 40px);
}

.gateport-webinar-prestart span[data-webinar-countdown] {
	font-size: 18px;
	font-weight: 800;
	color: #f5b400;
}

.gateport-webinar-prestart em {
	max-width: 560px;
	color: rgba(255,255,255,.82);
	font-style: normal;
	font-weight: 700;
}

.gateport-webinar-spinner {
	width: 54px;
	height: 54px;
	border: 5px solid rgba(255,255,255,.24);
	border-top-color: #f5b400;
	border-radius: 50%;
	animation: gateport-webinar-spin 1s linear infinite;
}

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

.gateport-webinar-modal[hidden] {
	display: none;
}

.gateport-webinar-modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: grid;
	place-items: center;
	padding: 24px;
}

.gateport-webinar-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 19, 38, .58);
}

.gateport-webinar-modal-panel {
	position: relative;
	z-index: 1;
	width: min(840px, 100%);
	max-height: min(780px, calc(100vh - 48px));
	overflow: auto;
	padding: 28px;
	background: #fff;
	border: 1px solid #d1d9e6;
	border-radius: 8px;
	box-shadow: 0 22px 70px rgba(6, 29, 57, .24);
}

.gateport-webinar-modal-panel h2 {
	margin: 0 0 18px;
}

.gateport-webinar-modal-panel table {
	width: 100%;
	margin: 0 0 22px;
	border-collapse: collapse;
}

.gateport-webinar-modal-panel th,
.gateport-webinar-modal-panel td {
	padding: 10px 12px;
	border-bottom: 1px solid #e4eaf2;
	text-align: left;
	vertical-align: top;
}

.gateport-webinar-modal-panel th {
	width: 150px;
	color: #526176;
}

.gateport-webinar-modal-panel details {
	margin-top: 18px;
}

.gateport-webinar-modal-panel summary {
	font-weight: 900;
	cursor: pointer;
}

.gateport-webinar-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 38px;
	height: 38px;
	font-size: 24px;
	line-height: 1;
}

@media (max-width: 1100px) {
	.gateport-webinar-room .gateport-webinar-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.gateport-webinar-side {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.gateport-webinar-public-header {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.gateport-webinar-header-meta {
		align-items: flex-start;
	}

	.gateport-webinar-header-meta h1 {
		white-space: normal;
	}

	.gateport-webinar-stream {
		min-height: 280px;
	}
}

.gateport-webinar-public,
.gateport-webinar-public * {
	box-sizing: border-box;
}

.gateport-webinar-public {
	overflow-x: hidden;
}

.gateport-webinar-stream:fullscreen,
.gateport-webinar-stream:-webkit-full-screen,
.gateport-webinar-stream.is-pseudo-fullscreen {
	width: 100vw;
	height: 100vh;
	max-width: none;
	max-height: none;
	border-radius: 0;
	background: #061d39;
}

.gateport-webinar-stream:fullscreen video,
.gateport-webinar-stream:-webkit-full-screen video,
.gateport-webinar-stream.is-pseudo-fullscreen video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gateport-webinar-download-panel {
	margin: 28px 0 0;
	padding: 24px;
	background: #fff;
	border: 1px solid #d1d9e6;
	border-radius: 8px;
}

.gateport-webinar-download-panel h2 {
	margin: 0 0 16px;
}

.gateport-webinar-downloads {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 18px;
}

.gateport-webinar-downloads article {
	display: grid;
	gap: 16px;
	align-content: start;
	min-height: 150px;
	padding: 22px;
	background: #f8fafc;
	border: 1px solid #d3dce8;
	border-radius: 8px;
}

.gateport-webinar-downloads article strong {
	font-size: 18px;
	line-height: 1.25;
}

.gateport-webinar-downloads article p {
	margin: 0;
	color: #4a5a70;
	line-height: 1.45;
}

.gateport-webinar-download-action {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	background: #08213f;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 800;
}

.gateport-webinar-download-state {
	justify-self: start;
	padding: 8px 12px;
	background: #eef2f7;
	color: #526176;
	border: 1px solid #d3dce8;
	border-radius: 6px;
	font-weight: 800;
}

.gateport-webinar-legal {
	padding: 20px 32px;
	border-top: 1px solid #d7dfeb;
	background: #fff;
}

.gateport-webinar-legal nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.gateport-webinar-legal button {
	border: 0;
	background: transparent;
	color: #08213f;
	text-decoration: underline;
	font-weight: 800;
	cursor: pointer;
}

.gateport-webinar-legal-content {
	color: #14233a;
	line-height: 1.55;
}

.gateport-webinar-form {
	max-width: 760px;
	padding: 28px;
}

.gateport-webinar-fields {
	display: grid;
	gap: 16px;
}

.gateport-webinar-form input,
.gateport-webinar-form select {
	width: 100%;
	min-height: 48px;
}

.gateport-webinar-check {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
	padding: 14px;
	background: #f8fafc;
	border: 1px solid #d1d9e6;
	border-radius: 6px;
}

.gateport-webinar-check input {
	width: auto;
	min-height: auto;
	margin-top: 2px;
}

@media (max-width: 700px) {
	.gateport-webinar-download-panel {
		padding: 18px;
	}

	.gateport-webinar-downloads article {
		padding: 18px;
	}

	.gateport-webinar-legal {
		padding: 18px;
	}
}

html,
body.gateport-webinar-public {
	min-height: 100%;
}

body.gateport-webinar-public {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}

body.gateport-webinar-public main {
	flex: 1 0 auto;
}

.gateport-webinar-access-page,
.gateport-webinar-room.is-waiting,
.gateport-webinar-room.is-ended,
.gateport-webinar-replay-unavailable {
	display: grid;
	place-items: center;
	align-content: center;
	min-height: calc(100vh - 190px);
	padding: 36px 24px;
}

.gateport-webinar-public-header {
	flex-shrink: 0;
}

.gateport-webinar-public-header img {
	max-width: min(210px, 34vw);
	height: auto;
	object-fit: contain;
}

.gateport-webinar-status-card,
.gateport-webinar-late-card {
	width: min(760px, calc(100vw - 48px));
	max-width: 760px;
	margin: 0 auto;
	padding: 46px 32px;
	text-align: center;
}

.gateport-webinar-replay {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 32px;
	border: 0;
	background: transparent;
}

.gateport-webinar-replay-stage {
	width: min(1160px, 100%);
	margin: 0 auto;
}

.gateport-webinar-stream.is-replay {
	background: #071b33;
	border-radius: 8px;
	overflow: hidden;
}

.gateport-webinar-stream.is-replay video {
	display: block;
	width: 100%;
	max-height: min(72vh, 760px);
	aspect-ratio: 16 / 9;
	object-fit: contain;
}

.gateport-webinar-replay .gateport-webinar-download-panel {
	width: min(1160px, 100%);
	margin: 24px auto 0;
}

.gateport-webinar-legal {
	margin-top: auto;
	flex-shrink: 0;
	font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gateport-webinar-form {
	font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 760px) {
	.gateport-webinar-public-header {
		padding: 14px 16px;
		gap: 14px;
	}

	.gateport-webinar-header-meta {
		gap: 12px;
	}

	.gateport-webinar-status-card,
	.gateport-webinar-late-card {
		width: min(680px, calc(100vw - 28px));
		padding: 32px 18px;
	}

	.gateport-webinar-replay {
		padding: 16px;
	}
}

.gateport-webinar-trigger-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.gateport-webinar-trigger {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid #08213f;
	border-radius: 6px;
	background: #08213f;
	color: #fff;
	font: inherit;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.gateport-webinar-trigger:hover,
.gateport-webinar-trigger:focus-visible {
	background: #12345b;
	border-color: #12345b;
	box-shadow: 0 10px 24px rgba(8, 33, 63, .18);
	transform: translateY(-1px);
}

.gateport-webinar-trigger__main,
.gateport-webinar-trigger__subline {
	display: block;
}

.gateport-webinar-trigger__subline {
	font-size: .86em;
	font-weight: 600;
	opacity: .86;
}

.gateport-webinar-modal {
	display: none;
	position: fixed;
	z-index: 999999;
	inset: 0;
	padding: 24px;
}

.gateport-webinar-modal--open {
	display: block;
}

.gateport-webinar-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 20, 38, .68);
}

.gateport-webinar-modal__content {
	position: relative;
	width: min(720px, calc(100vw - 32px));
	max-height: calc(100vh - 48px);
	margin: 0 auto;
	padding: 32px;
	overflow: auto;
	border: 1px solid #d3dbe8;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(8, 20, 38, .28);
	outline: none;
}

.gateport-webinar-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid #d3dbe8;
	border-radius: 6px;
	background: #f5f7fb;
	color: #08213f;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.gateport-webinar-modal__title {
	margin: 0 44px 8px 0;
	font-size: clamp(26px, 4vw, 36px);
	line-height: 1.1;
}

.gateport-webinar-modal__subtitle,
.gateport-webinar-modal__intro {
	margin: 0 0 18px;
	color: #4f5f73;
}

body.gateport-webinar-modal-lock {
	overflow: hidden;
}

.gateport-webinar-form-message {
	margin: 14px 0;
	padding: 12px 14px;
	border: 1px solid #d3dbe8;
	border-radius: 6px;
	background: #f5f7fb;
	color: #08213f;
	font-weight: 700;
}

.gateport-webinar-form-message[hidden] {
	display: none;
}

.gateport-webinar-form-message.is-success {
	border-color: #8bd6a6;
	background: #ecfbf1;
	color: #12632a;
}

.gateport-webinar-form-message.is-error {
	border-color: #f2a5a5;
	background: #fff1f1;
	color: #b42318;
}

.gateport-webinar-form-message.is-info {
	border-color: #b8c8e0;
	background: #eef4fb;
}

@media (max-width: 760px) {
	.gateport-webinar-modal {
		padding: 12px;
	}

	.gateport-webinar-modal__content {
		width: calc(100vw - 24px);
		max-height: calc(100vh - 24px);
		padding: 24px 18px;
	}

	.gateport-webinar-trigger {
		width: 100%;
	}
}
