/* Betbit hub layout + site sidebar.
   html.bb-lobby-hub = new tiles/header
   html.bb-sidebar-expanded | .bb-sidebar-collapsed | .bb-sidebar-off
*/

.bb-hub-sidebar,
.bb-hub-preview-bar,
.bb-hub-cats,
.bb-hub-menu-btn,
.bb-hub-classic-nudge,
.bb-layout-switch-float,
.bb-sidebar-reopen {
	display: none;
}

html:not(.bb-lobby-hub) .bb-layout-switch-float,
html.bb-lobby-hub.bb-sidebar-off .bb-layout-switch-float {
	display: inline-flex;
	position: fixed;
	right: 16px;
	bottom: 88px;
	z-index: 1040;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #111;
	border: 1px solid rgba(68, 255, 221, 0.35);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Page tabs only when the sidebar is fully hidden — centered, clear of the reopen control */
html.bb-lobby-hub.bb-sidebar-off .bb-hub-cats {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 12px 72px 10px;
}

html.bb-lobby-hub.bb-sidebar-off .bb-hub-menu-btn {
	display: none !important;
}

html.bb-lobby-hub.bb-sidebar-on .bb-sidebar-reopen {
	display: none !important;
}

html.bb-lobby-hub.bb-sidebar-off .bb-sidebar-reopen {
	display: inline-flex;
	top: 18px;
	left: 16px;
}

html.bb-lobby-hub {
	--bb-sidebar-expanded: 232px;
	--bb-sidebar-collapsed: 72px;
	--bb-sidebar-gutter: 16px;
}

/* Lobby skips some chrome CSS; keep the page dark even if style.css fails to load. */
html.bb-lobby-hub,
html.bb-lobby-hub body {
	background-color: #161515;
}

html.bb-lobby-hub .sb-chat-btn,
html.bb-lobby-hub .schat-launcher {
	visibility: visible !important;
	z-index: 1000001;
}

html.bb-lobby-hub.bb-sidebar-on,
html.bb-lobby-hub.bb-sidebar-on body {
	overflow-x: hidden;
	max-width: 100%;
}

@media (min-width: 1100px) {
	html.bb-lobby-hub.bb-sidebar-on .bb-hub-sidebar {
		display: flex;
	}

	/* Gutter so the first thumbnail column is not flush under the fixed rail. */
	html.bb-lobby-hub.bb-sidebar-expanded body {
		padding-left: calc(var(--bb-sidebar-expanded) + var(--bb-sidebar-gutter));
	}

	html.bb-lobby-hub.bb-sidebar-collapsed body {
		padding-left: calc(var(--bb-sidebar-collapsed) + var(--bb-sidebar-gutter));
	}

	html.bb-lobby-hub.bb-sidebar-on .container-fluid,
	html.bb-lobby-hub.bb-sidebar-on .container {
		padding-left: 12px;
		padding-right: 12px;
	}

	html.bb-lobby-hub.bb-sidebar-on .bb-category-lobby > .row {
		margin-left: 0;
		margin-right: 0;
	}
}

/* Compact layout toggle */
.bb-layout-switch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	user-select: none;
}

.bb-layout-switch input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bb-layout-switch__track {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	flex: 0 0 40px;
	border-radius: 999px;
	background: #2a2a2a;
	border: 1px solid #555;
	transition: background 0.18s ease, border-color 0.18s ease;
}

.bb-layout-switch__thumb {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	transition: transform 0.18s ease;
}

.bb-layout-switch input:checked + .bb-layout-switch__track {
	background: #44ffdd;
	border-color: #44ffdd;
}

.bb-layout-switch input:checked + .bb-layout-switch__track .bb-layout-switch__thumb {
	transform: translateX(18px);
	background: #161515;
}

.bb-layout-switch input:focus-visible + .bb-layout-switch__track {
	outline: 2px solid #44ffdd;
	outline-offset: 2px;
}

.bb-hub-sidebar__foot .bb-layout-switch {
	display: flex;
	margin-bottom: 10px;
}

html.bb-sidebar-collapsed .bb-hub-sidebar__foot {
	display: none;
}

.bb-hub-menu-btn {
	background: #1c1c1c;
	color: #44ffdd;
	border: 1px solid rgba(68, 255, 221, 0.4);
}

@media (max-width: 1099px) {
	html.bb-lobby-hub .bb-hub-menu-btn {
		display: inline-flex;
	}

	html.bb-lobby-hub.bb-sidebar-on .bb-sidebar-reopen,
	html.bb-lobby-hub.bb-sidebar-off .bb-sidebar-reopen,
	html.bb-lobby-hub .bb-sidebar-reopen {
		display: inline-flex !important;
		top: 12px;
		left: 10px;
		z-index: 1060;
	}

	html.bb-lobby-hub.bb-hub-nav-open .bb-sidebar-reopen {
		display: none !important;
	}

	html.bb-lobby-hub .new-header,
	html.bb-lobby-hub.bb-sidebar-on .new-header,
	html.bb-lobby-hub.bb-sidebar-off .hdForm,
	html.bb-lobby-hub.bb-sidebar-off .header-base {
		padding-left: 56px;
	}

	html.bb-lobby-hub .bb-hub-header-actions {
		display: flex !important;
		align-items: center;
		gap: 6px;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	html.bb-lobby-hub .bb-layout-switch__label {
		display: none;
	}

	html.bb-lobby-hub .bb-hub-header-btn {
		min-width: 0;
		height: 36px;
		padding: 0 10px;
		font-size: 12px;
	}

	html.bb-lobby-hub.bb-sidebar-on .new-header {
		min-height: 56px;
		padding: 8px 12px 8px 56px;
		gap: 8px;
	}

	html.bb-lobby-hub .bb-layout-switch-float {
		display: none !important;
	}

	html.bb-lobby-hub.bb-hub-nav-open .bb-hub-sidebar {
		display: flex;
	}
}

/* Sidebar */
.bb-hub-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 232px;
	z-index: 1045;
	flex-direction: column;
	background: #101010;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	padding: 10px 10px 18px;
	overflow-y: auto;
	transition: width 0.2s ease;
}

.bb-hub-sidebar__toolbar {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.bb-hub-sidebar__icon-btn {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 10px;
	background: #1c1c1c;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.bb-hub-sidebar__hamburger {
	display: block;
	width: 16px;
	height: 2px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
}

.bb-hub-sidebar__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 4px;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bb-hub-sidebar__brand img {
	height: 28px;
	width: auto;
}

.bb-hub-sidebar__group {
	margin: 8px 0 4px;
	padding: 10px 12px 4px;
	color: rgba(255, 255, 255, 0.38);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bb-hub-nav__link {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
	text-align: left;
	cursor: pointer;
}

.bb-hub-nav__link:hover,
.bb-hub-nav__link.is-active {
	background: rgba(68, 255, 221, 0.12);
	color: #44ffdd;
}

.bb-hub-nav__icon {
	width: 18px;
	text-align: center;
	opacity: 0.9;
}

.bb-hub-sidebar__foot {
	margin-top: auto;
	padding: 16px 12px 4px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
}

html.bb-sidebar-collapsed .bb-hub-sidebar {
	width: 72px;
	padding: 10px 8px 16px;
	align-items: center;
}

html.bb-sidebar-collapsed .bb-hub-sidebar__brand,
html.bb-sidebar-collapsed .bb-hub-sidebar__group,
html.bb-sidebar-collapsed .bb-hub-nav__text,
html.bb-sidebar-collapsed .bb-hub-sidebar__foot {
	display: none;
}

html.bb-sidebar-collapsed .bb-hub-sidebar__toolbar {
	flex-direction: column;
}

html.bb-sidebar-collapsed .bb-hub-nav__link {
	justify-content: center;
	padding: 10px 0;
	width: 48px;
}

.bb-sidebar-reopen {
	position: fixed;
	top: 16px;
	left: 12px;
	z-index: 1050;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: #44ffdd;
	color: #161515;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.bb-sidebar-reopen .bb-sidebar-reopen__icon {
	background: #161515;
	box-shadow: 0 -5px 0 #161515, 0 5px 0 #161515;
}

/* Keep the reopen control beside the logo, not over BETBIT */
html.bb-lobby-hub.bb-sidebar-off .header-base .logo,
html.bb-lobby-hub.bb-sidebar-off .hdForm .logo {
	padding-left: 56px;
	text-align: left;
}

html.bb-lobby-hub.bb-sidebar-off .header-base .logo img,
html.bb-lobby-hub.bb-sidebar-off .hdForm .logo img {
	margin-left: 0 !important;
	margin-right: auto;
}

html.bb-lobby-hub.bb-hub-nav-open .bb-hub-sidebar {
	display: flex;
}

html.bb-lobby-hub.bb-hub-nav-open::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1040;
}

@media (max-width: 1099px) {
	html.bb-lobby-hub.bb-sidebar-on .bb-hub-sidebar {
		transform: translateX(-110%);
		transition: transform 0.2s ease;
	}

	html.bb-lobby-hub.bb-hub-nav-open .bb-hub-sidebar {
		transform: none;
	}
}

/* Category chips */
.bb-hub-cats {
	align-items: center;
	justify-content: center;
	gap: 8px;
	overflow-x: auto;
	padding: 10px 14px 6px;
	scrollbar-width: thin;
}

.bb-hub-cats button {
	flex: 0 0 auto;
	border: 0;
	border-radius: 999px;
	padding: 8px 14px;
	background: #1c1c1c;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
}

.bb-hub-cats button.is-active,
.bb-hub-cats button:hover,
.bb-hub-cats__link:hover {
	background: #44ffdd;
	color: #161515;
}

.bb-hub-cats__link {
	flex: 0 0 auto;
	border-radius: 999px;
	padding: 8px 14px;
	background: #1c1c1c;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
}

/* Unified cards — 1:1 squares. Column count is set on the grid below. */
html.bb-lobby-hub #contenthere .casino-provider-browse__grid,
html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid {
	margin-left: 0;
	margin-right: 0;
}

html.bb-lobby-hub #contenthere .game-card,
html.bb-lobby-hub #provider-games-section .game-card {
	position: relative;
	background: #0c0c0c;
	border-radius: 10px;
}

html.bb-lobby-hub #contenthere .overlay-box,
html.bb-lobby-hub #provider-games-section .overlay-box {
	z-index: 4;
}

html.bb-lobby-hub #contenthere .game-img-wrap,
html.bb-lobby-hub #provider-games-section .game-img-wrap {
	aspect-ratio: 1 / 1;
	background: #0c0c0c;
	overflow: hidden;
	border-radius: 10px;
}

html.bb-lobby-hub #contenthere [data-tile-shape="portrait"] .game-img-wrap,
html.bb-lobby-hub #provider-games-section [data-tile-shape="portrait"] .game-img-wrap,
html.bb-lobby-hub #provider-games-section[data-tile-shape="portrait"] .game-img-wrap {
	aspect-ratio: 3 / 4;
}

html.bb-lobby-hub #contenthere [data-tile-shape="landscape"] .game-img-wrap,
html.bb-lobby-hub #provider-games-section [data-tile-shape="landscape"] .game-img-wrap,
html.bb-lobby-hub #provider-games-section[data-tile-shape="landscape"] .game-img-wrap {
	aspect-ratio: 1 / 1;
}

html.bb-lobby-hub #contenthere [data-tile-shape="square"] .game-img-wrap,
html.bb-lobby-hub #provider-games-section [data-tile-shape="square"] .game-img-wrap,
html.bb-lobby-hub #provider-games-section[data-tile-shape="square"] .game-img-wrap {
	aspect-ratio: 1 / 1;
}

html.bb-lobby-hub #contenthere .game-img-squre,
html.bb-lobby-hub #provider-games-section .game-img-squre {
	display: none;
}

html.bb-lobby-hub #contenthere .game-card img,
html.bb-lobby-hub #provider-games-section .game-card img,
html.bb-lobby-hub #contenthere .game-img-wrap .casino__img,
html.bb-lobby-hub #provider-games-section .game-img-wrap .casino__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	object-fit: cover;
	object-position: center center;
	background: #0c0c0c;
	outline: none;
	border: 0;
	box-shadow: none;
	transform: none;
	border-radius: 10px;
}

html.bb-lobby-hub #contenthere .lobbyImg img {
	position: static;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	object-position: center center;
	background: #0c0c0c;
	border-radius: 10px;
}

html.bb-lobby-hub #contenthere.bb-blog-page__list,
html.bb-lobby-hub .bb-blog-page #contenthere {
	display: block;
	float: none;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 0;
}

html.bb-lobby-hub #contenthere .game-card__meta,
html.bb-lobby-hub #provider-games-section .game-card__meta {
	position: static;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: auto;
	min-height: 58px;
	padding: 8px 6px 10px;
	overflow: visible;
	text-align: center;
	background: #0c0c0c;
	pointer-events: none;
}

html.bb-lobby-hub #contenthere .game-card__title,
html.bb-lobby-hub #provider-games-section .game-card__title {
	font-size: 12px;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
	-webkit-line-clamp: 2;
}

html.bb-lobby-hub #contenthere .game-card__provider,
html.bb-lobby-hub #provider-games-section .game-card__provider {
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
}

html.bb-lobby-hub {
	scroll-behavior: auto;
}

html.bb-lobby-hub #contenthere .bb-lobby-section-head,
html.bb-lobby-hub #provider-games-section .bb-lobby-section-head {
	display: block;
	width: 100%;
	margin: 28px 0 16px;
	padding: 0;
	text-align: center;
	border: 0;
	scroll-margin-top: 96px;
}

html.bb-lobby-hub #contenthere .lobbyh2,
html.bb-lobby-hub #provider-games-section .lobbyh2 {
	margin: 0;
	padding: 0 !important;
	font-size: 22px !important;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	border: 0;
}

html.bb-lobby-hub #contenthere .lobbyh2::after,
html.bb-lobby-hub #provider-games-section .lobbyh2::after {
	display: none !important;
	content: none !important;
}

html.bb-lobby-hub #contenthere .bb-lobby-section-sub,
html.bb-lobby-hub #provider-games-section .bb-lobby-section-sub {
	margin: 8px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	border: 0;
}

html.bb-lobby-hub #lobby-default-sections .bb-lobby-section-head--row {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

html.bb-lobby-hub #lobby-default-sections .bb-lobby-section-more {
	color: #44ffdd;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
}

html.bb-lobby-hub #lobby-default-sections .bb-lobby-section-more:hover {
	color: #fff;
}

html.bb-lobby-hub .scrollmenu-provider.game-provider-icons {
	display: block !important;
	height: 56px;
	max-height: 56px;
	overflow: hidden !important;
	white-space: nowrap;
}

html.bb-lobby-hub .bb-provider-marquee__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
	height: 56px;
}

html.bb-lobby-hub #contenthere .casino-provider-browse__grid,
html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid,
html.bb-lobby-hub #lobby-default-sections .casino-provider-browse__grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	flex-wrap: nowrap;
	gap: 10px;
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
}

@media (min-width: 576px) {
	html.bb-lobby-hub #contenthere .casino-provider-browse__grid,
	html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid,
	html.bb-lobby-hub #lobby-default-sections .casino-provider-browse__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	html.bb-lobby-hub #contenthere .casino-provider-browse__grid,
	html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid,
	html.bb-lobby-hub #lobby-default-sections .casino-provider-browse__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	html.bb-lobby-hub #contenthere .casino-provider-browse__grid,
	html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid,
	html.bb-lobby-hub #lobby-default-sections .casino-provider-browse__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	html.bb-lobby-hub #contenthere .casino-provider-browse__grid,
	html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid,
	html.bb-lobby-hub #lobby-default-sections .casino-provider-browse__grid {
		gap: 8px;
	}

	html.bb-lobby-hub #contenthere .game-card__title,
	html.bb-lobby-hub #provider-games-section .game-card__title {
		font-size: 11px;
		line-height: 1.35;
	}

	html.bb-lobby-hub #contenthere .lobbyh2,
	html.bb-lobby-hub #provider-games-section .lobbyh2 {
		font-size: 18px !important;
	}

	html.bb-lobby-hub #contenthere .bb-lobby-section-head,
	html.bb-lobby-hub #provider-games-section .bb-lobby-section-head {
		margin: 20px 0 12px;
	}

	html.bb-lobby-hub #contenthere .game-card__play,
	html.bb-lobby-hub #provider-games-section .game-card__play,
	html.bb-lobby-hub #contenthere .overlay-box .btn-secondary,
	html.bb-lobby-hub #provider-games-section .overlay-box .btn-secondary {
		height: 40px;
		min-width: 72px;
	}
}

html.bb-lobby-hub #contenthere .casino-provider-browse__grid > [class*="col-"],
html.bb-lobby-hub #provider-games-section .casino-provider-browse__grid > [class*="col-"],
html.bb-lobby-hub #lobby-default-sections .casino-provider-browse__grid > [class*="col-"] {
	flex: none !important;
	float: none !important;
	max-width: none !important;
	width: auto !important;
	padding: 0;
	margin: 0 !important;
}

html.bb-lobby-hub .lobby-provider-toolbar {
	background: transparent;
	border: 0;
	padding: 6px 14px 0;
}

/* Slim modern header — only while the sidebar is on the left */
.bb-hub-header-actions {
	display: none;
}

html.bb-lobby-hub.bb-sidebar-on .navbar-fixed-top {
	position: sticky !important;
	top: 0;
	left: auto !important;
	right: auto !important;
	width: 100% !important;
	z-index: 1030;
	background: #0d0d0d;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html.bb-lobby-hub.bb-sidebar-on .header-base {
	margin: 0;
	padding: 0;
	background: #0d0d0d;
}

html.bb-lobby-hub.bb-sidebar-on .new-header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-height: 64px;
	padding: 8px 20px;
	background: #0d0d0d;
}

html.bb-lobby-hub.bb-sidebar-on .new-header > .logo,
html.bb-lobby-hub.bb-sidebar-on .new-header > .clearfix,
html.bb-lobby-hub.bb-sidebar-on .new-header > hr,
html.bb-lobby-hub.bb-sidebar-on .hdFormLarge,
html.bb-lobby-hub.bb-sidebar-on .hdFormSmall {
	display: none !important;
}

html:not(.bb-lobby-hub) .bb-hub-header-actions {
	display: none !important;
}

html.bb-lobby-hub .bb-hub-header-actions,
html.bb-lobby-hub.bb-sidebar-on .bb-hub-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

html.bb-lobby-hub.bb-sidebar-on .new-header > .d-flex {
	display: none !important;
}

html.bb-lobby-hub .bb-header-language {
	display: inline-flex;
	align-items: center;
	position: relative;
	z-index: 1041;
}

html:not(.bb-lobby-hub) .bb-header-language {
	display: none;
}

.bb-header-language__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}

.bb-header-language__btn img {
	display: block;
	width: 20px;
	height: 13px;
	object-fit: cover;
}

.bb-header-language__list {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 1042;
	margin: 0;
	padding: 0;
	width: 260px;
	list-style: none;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	overflow: hidden;
	grid-template-columns: 1fr 1fr;
}

.bb-header-language__list:not([hidden]) {
	display: grid;
}

.bb-header-language__list li {
	margin: 0;
	padding: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #111;
}

.bb-header-language__list a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	color: #f4f4f4;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}

.bb-header-language__list .select_lang {
	color: #f4f4f4;
	font-size: 12px;
	font-weight: 700;
}

.bb-header-language__list a:hover,
.bb-header-language__list li.selected a {
	background: rgba(68, 255, 221, 0.18);
	color: #ffffff;
}

.bb-header-language__list a:hover .select_lang,
.bb-header-language__list li.selected a .select_lang {
	color: #ffffff;
}

.bb-hub-header-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
}

.bb-hub-header-btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	background: transparent;
}

.bb-hub-header-btn--mint {
	border: 0;
	background: #44ffdd;
	color: #161515;
}

html.bb-lobby-hub.bb-sidebar-on .new-header > .d-flex {
	padding: 0 !important;
	margin: 0;
}

html.bb-lobby-hub.bb-sidebar-on .language-select .dropdown-btn {
	width: 36px;
	height: 36px;
}

html.bb-lobby-hub.bb-sidebar-on .hdForm {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-height: 64px;
	padding: 8px 20px;
	margin: 0;
	background: #0d0d0d;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html.bb-lobby-hub.bb-sidebar-on .hdForm > div > .logo,
html.bb-lobby-hub.bb-sidebar-on .hdForm > div > .clearfix,
html.bb-lobby-hub.bb-sidebar-on .hdForm > div > hr,
html.bb-lobby-hub .navbar-first {
	display: none !important;
}

html.bb-lobby-hub.bb-sidebar-on .hdForm > div {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 12px;
}

html.bb-lobby-hub.bb-sidebar-on .loginCart,
html.bb-lobby-hub.bb-sidebar-on .userInfoBox {
	display: none !important;
}

html.bb-lobby-hub.bb-sidebar-on .loginBtn,
html.bb-lobby-hub .loginBtn {
	float: none;
	width: auto;
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

html.bb-lobby-hub.bb-sidebar-on .userInfoBox,
html.bb-lobby-hub.bb-sidebar-on .userInfoBox a {
	color: #fff;
	font-weight: 800;
}

html.bb-lobby-hub.bb-sidebar-on .loginCart .userInfoBox > a {
	display: none;
}

html.bb-lobby-hub.bb-sidebar-on .hdForm > div > .dropdown,
html.bb-lobby-hub.bb-sidebar-on .loginBtn > .logOutBtn {
	display: none !important;
}

.bb-hub-header-user {
	display: none;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

html.bb-lobby-hub.bb-sidebar-on .bb-hub-header-user {
	display: none;
}

.bb-hub-user-menu {
	display: none;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1043;
}

html.bb-lobby-hub .bb-hub-user-menu {
	display: inline-flex;
}

.bb-hub-balance {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 12px 0 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #1a1d24;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.bb-hub-balance:hover,
.bb-hub-balance:focus {
	color: #fff;
	text-decoration: none;
	border-color: rgba(68, 255, 221, 0.45);
}

.bb-hub-balance__chevron {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #c8c8c8;
}

.bb-hub-user-menu__wrap {
	position: relative;
}

.bb-hub-user-menu__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #d0d4dc;
	cursor: pointer;
}

.bb-hub-user-menu__btn:hover,
.bb-hub-user-menu__btn[aria-expanded="true"] {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.bb-hub-user-menu__panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 1044;
	min-width: 220px;
	padding: 8px 0;
	background: #2a303c;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.bb-hub-user-menu__panel:not([hidden]) {
	display: block;
}

.bb-hub-user-menu__panel::before {
	content: '';
	position: absolute;
	top: -6px;
	right: 14px;
	width: 12px;
	height: 12px;
	background: #2a303c;
	transform: rotate(45deg);
}

.bb-hub-user-menu__item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 10px 16px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
}

.bb-hub-user-menu__item:hover,
.bb-hub-user-menu__item:focus {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	text-decoration: none;
}

.bb-hub-user-menu__icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: #f2f4f8;
	flex: 0 0 18px;
}

.bb-hub-user-menu__sep {
	height: 1px;
	margin: 6px 12px;
	background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1099px) {
	html.bb-lobby-hub .bb-hub-balance {
		height: 36px;
		padding: 0 10px;
		font-size: 12px;
	}

	html.bb-lobby-hub .bb-hub-user-menu__btn {
		width: 36px;
		height: 36px;
	}
}

html.bb-lobby-hub.bb-sidebar-on .logOutBtn {
	margin-top: 0;
	width: auto;
	padding: 0 14px;
}

.bb-home-banners,
html.bb-lobby-hub .bb-home-banners {
	position: relative;
	display: block !important;
	visibility: visible !important;
	width: 100%;
	margin: 12px 0 16px;
	padding: 0 16px;
	box-sizing: border-box;
	background: transparent;
}

.bb-home-banners__stage {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #080808;
	border-radius: 10px;
	aspect-ratio: 1923 / 939;
}

.bb-home-banners__sizer {
	display: none;
}

.bb-home-banners__slide,
html.bb-lobby-hub .bb-home-banners__slide {
	position: absolute;
	inset: 0;
	display: flex !important;
	align-items: center;
	justify-content: center;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s ease;
}

.bb-home-banners__slide.is-active,
html.bb-lobby-hub .bb-home-banners__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.bb-home-banners__slide img,
html.bb-lobby-hub .bb-home-banners__slide img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center center;
}

html.bb-lobby-hub.bb-sidebar-on .bb-home-banners {
	margin-top: 12px;
	padding-top: 0;
}

.bb-category-lobby__empty {
	margin: 24px 0 64px;
	padding: 28px 20px;
	border: 1px dashed rgba(68, 255, 221, 0.28);
	border-radius: 12px;
	color: #9aa;
	font-size: 15px;
	text-align: center;
}

/* Welcome bonus board — offer cards, not game tiles */
html.bb-lobby-hub #live-betbit-offers.bb-bonus-board {
	width: 100%;
	max-width: none;
	margin: 28px 0 0;
	padding: 20px 16px 32px;
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-board__head {
	margin: 0 0 16px;
	text-align: center;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-board__title {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-board__sub {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
	margin: 0;
	float: none;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-grid::before,
html.bb-lobby-hub #live-betbit-offers .bb-bonus-grid::after {
	display: none !important;
	content: none !important;
}

@media (min-width: 768px) {
	html.bb-lobby-hub #live-betbit-offers .bb-bonus-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}
}

@media (min-width: 1100px) {
	html.bb-lobby-hub #live-betbit-offers .bb-bonus-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 12px;
	}
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-grid > [class*="col-"] {
	display: flex;
	position: relative;
	width: 100%;
	max-width: none;
	min-width: 0;
	flex: none;
	float: none;
	padding: 0;
	margin: 0;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 278px;
	margin: 0;
	padding: 14px 14px 12px;
	overflow: hidden;
	border: 1px solid rgba(68, 255, 221, 0.18);
	border-top: 1px solid rgba(68, 255, 221, 0.18);
	border-radius: 16px;
	background:
		radial-gradient(120% 80% at 50% -20%, rgba(68, 255, 221, 0.14), transparent 55%),
		#111;
	box-shadow: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item:hover {
	transform: translateY(-3px);
	border-color: rgba(68, 255, 221, 0.55);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item img {
	order: 1;
	display: block;
	width: 100% !important;
	max-width: 132px !important;
	height: 96px !important;
	margin: 0 auto 8px;
	padding: 0;
	object-fit: contain;
	object-position: center;
	background: transparent;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item h2 {
	order: 2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: auto !important;
	min-height: 40px;
	margin: 0 0 10px;
	padding: 0;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 20px;
	text-align: center !important;
	text-transform: uppercase;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item h3 {
	order: 3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: auto !important;
	min-height: 36px;
	margin: 0 0 12px;
	padding: 0;
	color: #44ffdd;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item .promop {
	display: none;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item .btn-primary-new {
	order: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	margin-top: auto;
	margin-bottom: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #44ffdd;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	overflow: hidden;
}

html.bb-lobby-hub #live-betbit-offers .lobby-bonus-item .btn-primary-new a {
	display: block;
	width: 100%;
	padding: 8px 10px;
	color: #161515;
	font-size: 12px !important;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-actions {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 8px 0 0;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-actions__all {
	color: #44ffdd;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

html.bb-lobby-hub #live-betbit-offers .bb-bonus-actions__all:hover {
	text-decoration: underline;
}

.bb-cashier-board {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

html.bb-lobby-hub .bb-cashier-board {
	max-width: none;
	margin: 28px 0 0;
	padding: 20px 16px 32px;
	border: 0;
	box-shadow: none;
}

html.bb-lobby-hub .bb-cashier-board__inner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	border: 0;
}

html.bb-lobby-hub .bb-cashier-board .lobbyh2 {
	margin: 0 0 12px;
	padding: 0 !important;
	font-size: 22px !important;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	border: 0;
}

html.bb-lobby-hub .bb-cashier-board .lobbyh2::after {
	display: none !important;
	content: none !important;
}

html.bb-lobby-hub .bb-cashier-board p {
	max-width: 820px;
	margin: 0 auto;
	padding: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.55;
	text-align: center;
	border: 0;
}

html.bb-lobby-hub .lobby-load-more-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
	padding: 20px 12px 28px;
	clear: both;
}

html.bb-lobby-hub a.lobby-load-more-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 220px;
	max-width: 420px;
	min-height: 52px;
	padding: 14px 20px;
	border: none;
	border-radius: 8px;
	background: #44ffdd;
	color: #161515;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
}

html.bb-lobby-hub a.lobby-load-more-btn:hover {
	filter: brightness(0.94);
	color: #161515;
}

html.bb-lobby-hub a.lobby-load-more-btn--secondary {
	background: transparent;
	color: #44ffdd;
	border: 1px solid #44ffdd;
}

html.bb-lobby-hub a.lobby-load-more-btn--secondary:hover {
	color: #44ffdd;
	background: rgba(68, 255, 221, 0.12);
}

html.bb-lobby-hub .bb-profile-head {
	max-width: 1080px;
	margin: 12px auto 0;
	padding: 8px 12px 0;
	text-align: center;
}

html.bb-lobby-hub .bb-profile-head h1 {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	letter-spacing: 0;
	text-transform: none;
	border: 0;
}

html.bb-lobby-hub .bb-profile-head p {
	max-width: 640px;
	margin: 8px auto 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

html.bb-lobby-hub .bb-profile-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 1080px;
	margin: 20px auto 40px;
	padding: 0 12px;
	box-sizing: border-box;
}

@media (min-width: 900px) {
	html.bb-lobby-hub .bb-profile-grid {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}

html.bb-lobby-hub .bb-profile-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: #16181f;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
}

html.bb-lobby-hub .bb-profile-card .formTitle {
	margin: 0;
	padding: 16px 20px;
	text-align: left;
	background: #1a1d24;
	border-bottom: 3px solid #44ffdd;
}

html.bb-lobby-hub .bb-profile-card .formTitle h1,
html.bb-lobby-hub .bb-profile-card .formTitle h2 {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

html.bb-lobby-hub .bb-profile-card .formGrey {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 22px 22px;
	background: #16181f;
}

html.bb-lobby-hub .bb-profile-card .settings-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

html.bb-lobby-hub .bb-profile-card .profileBtn {
	margin-top: auto;
	padding-top: 18px;
}

html.bb-lobby-hub .bb-profile-card .profileBtn .btn-primary-new {
	min-height: 42px;
	padding: 10px 22px;
	border: 0;
	border-radius: 12px;
	background: #44ffdd;
	color: #111;
	font-weight: 800;
}

html.bb-lobby-hub .profileTabLk > .container,
html.bb-lobby-hub .profileTab .container {
	width: 100%;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

html.bb-lobby-hub .bb-deposit-page {
	max-width: 1080px;
	margin: 0 auto 40px;
	padding: 0 12px;
	box-sizing: border-box;
}

html.bb-lobby-hub .bb-deposit-page .alert {
	margin: 16px 0 0;
	border: 0;
	border-radius: 12px;
}

html.bb-lobby-hub .bb-balance-card {
	float: none;
	width: 100%;
	max-width: none;
	margin: 20px 0 0;
	padding: 0;
	overflow: hidden;
	background: #16181f;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
}

html.bb-lobby-hub .bb-balance-card .formTitle {
	margin: 0;
	padding: 16px 20px;
	text-align: left;
	background: #1a1d24;
	border-bottom: 3px solid #44ffdd;
}

html.bb-lobby-hub .bb-balance-card .formTitle h1,
html.bb-lobby-hub .bb-balance-card .formTitle h2 {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

html.bb-lobby-hub .bb-balance-card .formGrey {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 18px 22px 20px;
	background: #16181f;
}

html.bb-lobby-hub .bb-balance-card .formGrey p {
	margin: 0;
}

html.bb-lobby-hub .bb-balance-card .balancep {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	font-weight: 600;
}

html.bb-lobby-hub .bb-balance-card__value,
html.bb-lobby-hub .bb-balance-card #total-balance {
	color: #44ffdd;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

html.bb-lobby-hub .bb-deposit-methods {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin: 20px 0 0;
	padding: 0;
}

@media (min-width: 900px) {
	html.bb-lobby-hub .bb-deposit-methods {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}

html.bb-lobby-hub .bb-deposit-method {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 20px;
	background: #16181f;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	box-sizing: border-box;
}

html.bb-lobby-hub .bb-deposit-method__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	margin: 0 0 16px;
	padding: 12px;
	background: #101218;
	border-radius: 12px;
}

html.bb-lobby-hub .bb-deposit-method__brand img,
html.bb-lobby-hub .bb-deposit-method__brand svg,
html.bb-lobby-hub #deposit-list .payadmit-logo {
	width: 100%;
	max-width: 220px;
	height: auto;
	margin: 0 auto;
	border-radius: 10px;
}

html.bb-lobby-hub .bb-deposit-method__copy {
	flex: 1;
}

html.bb-lobby-hub .bb-deposit-method__copy h2 {
	margin: 0 0 12px;
	padding: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	text-align: left;
	text-transform: none;
}

html.bb-lobby-hub .bb-deposit-method__limits {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

html.bb-lobby-hub .bb-deposit-method__limits li {
	margin: 0;
	padding: 6px 10px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 8px;
}

html.bb-lobby-hub .bb-deposit-method__limits span {
	display: inline-block;
	margin-right: 6px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

html.bb-lobby-hub .bb-deposit-method .btn-primary-new {
	align-self: flex-start;
	min-height: 42px;
	margin-top: auto;
	padding: 10px 22px;
	border: 0;
	border-radius: 12px;
	background: #44ffdd;
	color: #111;
	font-weight: 800;
}

html.bb-lobby-hub .bb-deposit-note {
	max-width: none;
	margin: 18px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
}

html.bb-lobby-hub .bb-deposit-disabled {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.7);
}

html.bb-lobby-hub .pending-deposits-block {
	margin: 16px 0 0;
}

html.bb-lobby-hub .bb-withdraw-page {
	max-width: 1080px;
	margin: 0 auto 40px;
	padding: 0 12px;
	box-sizing: border-box;
}

html.bb-lobby-hub .bb-withdraw-page .bb-profile-head {
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
}

html.bb-lobby-hub .bb-withdraw-card {
	margin: 20px 0 0;
}

html.bb-lobby-hub .bb-withdraw-available {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	font-weight: 600;
}

html.bb-lobby-hub .bb-withdraw-available .amount,
html.bb-lobby-hub .bb-withdraw-available #maximumWithdrawal {
	color: #44ffdd;
	font-weight: 800;
}

html.bb-lobby-hub .bb-withdraw-disabled,
html.bb-lobby-hub .bb-withdraw-card article p {
	color: rgba(255, 255, 255, 0.7);
}

html.bb-lobby-hub .bb-withdraw-card article a {
	color: #44ffdd;
}

html.bb-lobby-hub .bb-withdraw-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 18px;
}

html.bb-lobby-hub .bb-withdraw-field .label-holder label {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

html.bb-lobby-hub .bb-withdraw-field .field-holder {
	width: 100%;
}

html.bb-lobby-hub .bb-withdraw-form input[type="text"],
html.bb-lobby-hub .bb-withdraw-form input[type="number"],
html.bb-lobby-hub .bb-withdraw-form input[type="email"],
html.bb-lobby-hub .bb-withdraw-form select,
html.bb-lobby-hub .bb-withdraw-form textarea,
html.bb-lobby-hub .bb-withdraw-form .form-control {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	color: #fff;
	-webkit-text-fill-color: #fff;
	background: #101218;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: none;
	color-scheme: dark;
}

html.bb-lobby-hub .bb-withdraw-form textarea {
	min-height: 110px;
	resize: vertical;
}

html.bb-lobby-hub .bb-withdraw-form input:focus,
html.bb-lobby-hub .bb-withdraw-form select:focus,
html.bb-lobby-hub .bb-withdraw-form textarea:focus {
	outline: 0;
	border-color: #44ffdd;
}

html.bb-lobby-hub .bb-withdraw-form select {
	min-height: 46px;
	padding-right: 40px;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2344ffdd' d='M1.2.6L6 5.4 10.8.6 12 1.8 6 7.8 0 1.8z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-color: #101218;
}

html.bb-lobby-hub .bb-withdraw-form select option {
	color: #fff;
	background: #101218;
}

html.bb-lobby-hub .bb-withdraw-form .jcf-select {
	width: 100%;
	height: auto;
	background: #101218;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #fff;
}

html.bb-lobby-hub .bb-withdraw-form .jcf-select .jcf-select-text,
html.bb-lobby-hub .bb-withdraw-form .jcf-select .jcf-select-text span {
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	margin: 0;
	padding: 12px 40px 12px 14px;
}

html.bb-lobby-hub .bb-withdraw-form .jcf-select select {
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

html.bb-lobby-hub .bb-withdraw-form .jcf-select .jcf-select-opener {
	background: transparent;
}

html.bb-lobby-hub .jcf-list,
html.bb-lobby-hub .jcf-list-content {
	background: #101218;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.12);
}

html.bb-lobby-hub .jcf-option,
html.bb-lobby-hub .jcf-hover,
html.bb-lobby-hub .jcf-selected {
	color: #fff;
}

html.bb-lobby-hub .bb-withdraw-form .btn-primary-new,
html.bb-lobby-hub .bb-withdraw-form button[type="submit"],
html.bb-lobby-hub .bb-withdraw-form input[type="submit"] {
	min-height: 42px;
	padding: 10px 22px;
	border: 0;
	border-radius: 12px;
	background: #44ffdd;
	color: #111;
	font-weight: 800;
	text-shadow: none;
}

html.bb-lobby-hub .bb-withdraw-pending {
	margin: 20px 0 0;
}

html.bb-lobby-hub .bb-withdraw-requests {
	overflow: hidden;
	background: #16181f;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
}

html.bb-lobby-hub .bb-withdraw-requests table {
	margin: 0;
	color: #fff;
	background: transparent;
}

html.bb-lobby-hub .bb-withdraw-requests .table-striped > tbody > tr:nth-of-type(odd) {
	background: rgba(255, 255, 255, 0.03);
}

html.bb-lobby-hub .bb-withdraw-requests th,
html.bb-lobby-hub .bb-withdraw-requests td {
	border-color: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.82);
}

html.bb-lobby-hub .bb-withdraw-requests .btn {
	background: #44ffdd;
	border: 0;
	color: #111;
	font-weight: 800;
}

