.social-hub,
.social-hub *,
.social-hub-primary-launcher,
.social-hub-primary-launcher * {
	box-sizing: border-box;
}

.social-hub-primary-launcher {
	--social-hub-channel-color: #5865f2;
	position: fixed;
	z-index: 2147481999;
	right: 24px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	padding: 7px;
	border: 1px solid rgba(255,255,255,.34);
	border-radius: 50%;
	background: color-mix(in srgb, var(--social-hub-channel-color) 84%, #11141c);
	box-shadow: 0 16px 44px rgba(0,0,0,.48), 0 0 34px color-mix(in srgb, var(--social-hub-channel-color) 42%, transparent), inset 0 1px 0 rgba(255,255,255,.18);
	color: #fff;
	font: inherit;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.social-hub-primary-launcher:hover,
.social-hub-primary-launcher:focus-visible {
	transform: translateY(-3px) scale(1.04);
	border-color: rgba(255,255,255,.72);
	box-shadow: 0 20px 52px rgba(0,0,0,.55), 0 0 42px color-mix(in srgb, var(--social-hub-channel-color) 56%, transparent), inset 0 1px 0 rgba(255,255,255,.24);
	color: #fff;
	text-decoration: none;
}

.social-hub-primary-launcher:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.social-hub-primary-launcher .social-hub__channel-icon,
.social-hub-primary-launcher .social-hub__channel-image {
	display: block;
	width: 54px;
	height: 54px;
}

.social-hub-primary-launcher .social-hub__channel-icon circle {
	fill: var(--social-hub-channel-color);
}

.social-hub-primary-launcher .social-hub__channel-image {
	border-radius: 50%;
	object-fit: cover;
}

.social-hub-primary-launcher__label {
	position: absolute;
	right: calc(100% + 12px);
	min-width: max-content;
	max-width: 220px;
	padding: 7px 10px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 8px;
	background: #111319;
	box-shadow: 0 8px 24px rgba(0,0,0,.3);
	color: #fff;
	font: 700 13px/1.2 Arial, Helvetica, sans-serif;
	opacity: 0;
	pointer-events: none;
	transform: translateX(4px);
	transition: opacity 140ms ease, transform 140ms ease;
}

.social-hub-primary-launcher:hover .social-hub-primary-launcher__label,
.social-hub-primary-launcher:focus-visible .social-hub-primary-launcher__label {
	opacity: 1;
	transform: translateX(0);
}

.social-hub {
	--social-hub-panel-width: 420px;
	--social-hub-panel-height: 560px;
	--social-hub-surface: #17191f;
	--social-hub-surface-raised: #22252d;
	--social-hub-border: rgba(255, 255, 255, 0.14);
	--social-hub-text: #f7f7fa;
	--social-hub-muted: #b8bbc6;
	position: fixed;
	z-index: 2147482000;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: var(--social-hub-text);
	pointer-events: none;
}

.social-hub--left-center {
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.social-hub--right-center {
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.social-hub--left-bottom {
	left: 18px;
	bottom: 22px;
}

.social-hub--right-bottom {
	right: 18px;
	bottom: 22px;
}

.social-hub--left-center,
.social-hub--left-bottom {
	flex-direction: row;
}

.social-hub--right-center,
.social-hub--right-bottom {
	flex-direction: row-reverse;
}

.social-hub--gadget.social-hub--left-center,
.social-hub--gadget.social-hub--left-bottom {
	left: 0;
}

.social-hub--gadget.social-hub--right-center,
.social-hub--gadget.social-hub--right-bottom {
	right: 0;
}

.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-bottom {
	bottom: 106px;
}

.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center {
	transform: none;
}

.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center .social-hub__dock,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center .social-hub__dock {
	transform: translateY(-50%);
}

.social-hub__gadget-toggle {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	width: 30px;
	height: 58px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--social-hub-border);
	background: linear-gradient(180deg, rgba(34,37,45,.98), rgba(20,22,28,.98));
	box-shadow: 0 12px 34px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
	color: #d8dbe5;
	cursor: pointer;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;
}

.social-hub--left-center .social-hub__gadget-toggle,
.social-hub--left-bottom .social-hub__gadget-toggle {
	border-left: 0;
	border-radius: 0 12px 12px 0;
}

.social-hub--right-center .social-hub__gadget-toggle,
.social-hub--right-bottom .social-hub__gadget-toggle {
	border-right: 0;
	border-radius: 12px 0 0 12px;
}

.social-hub__gadget-toggle:hover,
.social-hub__gadget-toggle:focus-visible {
	background: linear-gradient(180deg, #30343f, #22252d);
	color: #fff;
}

.social-hub__gadget-toggle:focus-visible {
	outline: 3px solid rgba(255,255,255,.92);
	outline-offset: 2px;
}

.social-hub__gadget-toggle svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition: transform 220ms ease;
}

.social-hub--right-center .social-hub__gadget-toggle svg,
.social-hub--right-bottom .social-hub__gadget-toggle svg,
.social-hub--left-center.social-hub--dock-expanded .social-hub__gadget-toggle svg,
.social-hub--left-bottom.social-hub--dock-expanded .social-hub__gadget-toggle svg {
	transform: rotate(180deg);
}

.social-hub--right-center.social-hub--dock-expanded .social-hub__gadget-toggle svg,
.social-hub--right-bottom.social-hub--dock-expanded .social-hub__gadget-toggle svg {
	transform: rotate(0deg);
}

.social-hub__dock {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 9px;
	border: 1px solid var(--social-hub-border);
	border-radius: 18px;
	background: rgba(20, 22, 28, 0.94);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(10px);
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear;
}

.social-hub--gadget.social-hub--dock-collapsed .social-hub__dock {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.social-hub--gadget.social-hub--left-center.social-hub--dock-collapsed .social-hub__dock,
.social-hub--gadget.social-hub--left-bottom.social-hub--dock-collapsed .social-hub__dock {
	transform: translateX(calc(-100% - 12px));
}

.social-hub--gadget.social-hub--right-center.social-hub--dock-collapsed .social-hub__dock,
.social-hub--gadget.social-hub--right-bottom.social-hub--dock-collapsed .social-hub__dock {
	transform: translateX(calc(100% + 12px));
}

.social-hub__channel {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: color-mix(in srgb, var(--social-hub-channel-color) 22%, #17191f);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
	-webkit-tap-highlight-color: transparent;
}

@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
	.social-hub__channel {
		background: var(--social-hub-channel-color);
	}
}

.social-hub__channel:hover,
.social-hub__channel:focus-visible,
.social-hub__channel[aria-expanded="true"] {
	transform: translateY(-2px) scale(1.04);
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: 0 9px 24px color-mix(in srgb, var(--social-hub-channel-color) 42%, transparent);
	color: #fff;
	text-decoration: none;
}

.social-hub__channel:focus {
	outline: 3px solid rgba(255, 255, 255, 0.92);
	outline-offset: 3px;
}

.social-hub__channel-icon,
.social-hub__channel-image {
	display: block;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
}

.social-hub__channel-icon circle {
	fill: var(--social-hub-channel-color);
}

.social-hub__channel-icon text {
	fill: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.4px;
}

.social-hub__channel-image {
	border-radius: 10px;
	object-fit: cover;
}

.social-hub__channel-label {
	position: absolute;
	top: 50%;
	min-width: max-content;
	max-width: 220px;
	padding: 7px 10px;
	border: 1px solid var(--social-hub-border);
	border-radius: 8px;
	background: #111319;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	transition: opacity 140ms ease, transform 140ms ease;
}

.social-hub--left-center .social-hub__channel-label,
.social-hub--left-bottom .social-hub__channel-label {
	left: calc(100% + 12px);
	transform: translate(-4px, -50%);
}

.social-hub--right-center .social-hub__channel-label,
.social-hub--right-bottom .social-hub__channel-label {
	right: calc(100% + 12px);
	transform: translate(4px, -50%);
}

.social-hub__channel:hover .social-hub__channel-label,
.social-hub__channel:focus-visible .social-hub__channel-label {
	opacity: 1;
}

.social-hub--left-center .social-hub__channel:hover .social-hub__channel-label,
.social-hub--left-center .social-hub__channel:focus-visible .social-hub__channel-label,
.social-hub--left-bottom .social-hub__channel:hover .social-hub__channel-label,
.social-hub--left-bottom .social-hub__channel:focus-visible .social-hub__channel-label,
.social-hub--right-center .social-hub__channel:hover .social-hub__channel-label,
.social-hub--right-center .social-hub__channel:focus-visible .social-hub__channel-label,
.social-hub--right-bottom .social-hub__channel:hover .social-hub__channel-label,
.social-hub--right-bottom .social-hub__channel:focus-visible .social-hub__channel-label {
	transform: translate(0, -50%);
}

.social-hub__panel {
	position: absolute;
	display: flex;
	flex-direction: column;
	width: min(var(--social-hub-panel-width), calc(100vw - 104px));
	height: min(var(--social-hub-panel-height), calc(100vh - 32px));
	min-width: 300px;
	min-height: 320px;
	overflow: hidden;
	border: 1px solid var(--social-hub-border);
	border-radius: 18px;
	background: var(--social-hub-surface);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
	pointer-events: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.social-hub__panel[hidden] {
	display: none;
}

.social-hub--left-center .social-hub__panel {
	left: calc(100% + 10px);
	top: 50%;
	transform: translate(-10px, -50%);
}

.social-hub--right-center .social-hub__panel {
	right: calc(100% + 10px);
	top: 50%;
	transform: translate(10px, -50%);
}

.social-hub--left-bottom .social-hub__panel {
	left: calc(100% + 10px);
	bottom: 0;
	transform: translateX(-10px);
}

.social-hub--right-bottom .social-hub__panel {
	right: calc(100% + 10px);
	bottom: 0;
	transform: translateX(10px);
}

.social-hub--open .social-hub__panel {
	opacity: 1;
	visibility: visible;
}

.social-hub--left-center.social-hub--open .social-hub__panel,
.social-hub--right-center.social-hub--open .social-hub__panel {
	transform: translate(0, -50%);
}

.social-hub--left-bottom.social-hub--open .social-hub__panel,
.social-hub--right-bottom.social-hub--open .social-hub__panel {
	transform: translateX(0);
}

.social-hub--inauguration.social-hub--has-primary-chat .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-bottom .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-bottom .social-hub__panel {
	position: fixed;
	left: auto;
	right: 24px;
	top: auto;
	bottom: 104px;
	height: min(var(--social-hub-panel-height), calc(100vh - 136px));
	transform: translateY(10px);
}

.social-hub--inauguration.social-hub--has-primary-chat.social-hub--open .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center.social-hub--open .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center.social-hub--open .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-bottom.social-hub--open .social-hub__panel,
.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-bottom.social-hub--open .social-hub__panel {
	transform: translateY(0);
}

.social-hub__panel-header {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: 10px 10px 10px 16px;
	border-bottom: 1px solid var(--social-hub-border);
	background: var(--social-hub-surface-raised);
}

.social-hub__panel-header h2 {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	color: var(--social-hub-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.social-hub__panel-external {
	flex: 0 0 auto;
	padding: 7px 9px;
	border: 1px solid var(--social-hub-border);
	border-radius: 8px;
	color: var(--social-hub-text);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.social-hub__panel-external:hover,
.social-hub__panel-external:focus {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	text-decoration: none;
}

.social-hub__panel-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--social-hub-muted);
	cursor: pointer;
}

.social-hub__panel-close:hover,
.social-hub__panel-close:focus {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	outline: 2px solid rgba(255, 255, 255, 0.82);
	outline-offset: 1px;
}

.social-hub__panel-close svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.social-hub__panel-body {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	background: #101217;
}

.social-hub__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #101217;
}

.social-hub__sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 640px) {
	.social-hub-primary-launcher {
		right: 12px;
		bottom: 82px;
		width: 58px;
		height: 58px;
		padding: 5px;
	}

	.social-hub-primary-launcher .social-hub__channel-icon,
	.social-hub-primary-launcher .social-hub__channel-image {
		width: 48px;
		height: 48px;
	}

	.social-hub-primary-launcher__label {
		display: none;
	}

	.social-hub--inauguration,
	.social-hub--inauguration.social-hub--left-center,
	.social-hub--inauguration.social-hub--right-center,
	.social-hub--inauguration.social-hub--left-bottom,
	.social-hub--inauguration.social-hub--right-bottom {
		left: 10px;
		right: 10px;
		top: auto;
		bottom: 10px;
		transform: none;
	}

	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-bottom {
		bottom: 10px;
	}

	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center .social-hub__dock,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center .social-hub__dock {
		transform: none;
	}

	.social-hub--gadget.social-hub--left-center,
	.social-hub--gadget.social-hub--left-bottom {
		left: 0;
		right: auto;
		top: auto;
		bottom: 12px;
		transform: none;
	}

	.social-hub--gadget.social-hub--right-center,
	.social-hub--gadget.social-hub--right-bottom {
		left: auto;
		right: 0;
		top: auto;
		bottom: 12px;
		transform: none;
	}

	.social-hub__gadget-toggle {
		flex-basis: 32px;
		width: 32px;
		height: 52px;
	}

	.social-hub__dock {
		max-width: calc(100vw - 20px);
		flex-direction: row;
		overflow-x: auto;
	}

	.social-hub--gadget .social-hub__dock {
		max-width: calc(100vw - 50px);
		gap: 6px;
		padding: 6px;
		border-radius: 15px;
	}

	.social-hub__channel {
		flex: 0 0 46px;
		width: 46px;
		height: 46px;
	}

	.social-hub__channel-label {
		display: none;
	}

	.social-hub__panel,
	.social-hub--left-center .social-hub__panel,
	.social-hub--right-center .social-hub__panel,
	.social-hub--left-bottom .social-hub__panel,
	.social-hub--right-bottom .social-hub__panel {
		position: fixed;
		left: 10px;
		right: 10px;
		top: 10px;
		bottom: 76px;
		width: auto;
		height: auto;
		min-width: 0;
		min-height: 0;
		transform: translateY(12px);
	}

	.social-hub--inauguration.social-hub--has-primary-chat .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-bottom .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-bottom .social-hub__panel {
		position: fixed;
		left: 10px;
		right: 10px;
		top: 10px;
		bottom: 76px;
		width: auto;
		height: auto;
		min-width: 0;
		min-height: 0;
		transform: translateY(12px);
	}

	.social-hub--open .social-hub__panel,
	.social-hub--left-center.social-hub--open .social-hub__panel,
	.social-hub--right-center.social-hub--open .social-hub__panel,
	.social-hub--left-bottom.social-hub--open .social-hub__panel,
	.social-hub--right-bottom.social-hub--open .social-hub__panel {
		transform: translateY(0);
	}

	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--open .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-center.social-hub--open .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-center.social-hub--open .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--left-bottom.social-hub--open .social-hub__panel,
	.social-hub--inauguration.social-hub--has-primary-chat.social-hub--right-bottom.social-hub--open .social-hub__panel {
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.social-hub__gadget-toggle svg,
	.social-hub__dock,
	.social-hub__channel,
	.social-hub__channel-label,
	.social-hub__panel {
		transition: none;
	}
}
