@charset "UTF-8";

:root {
	--header-height: 80px;
	--sidebar-width-expanded: 276px;
	--sidebar-width-collapsed: 60px;
	--bg-classic: #0b0d0c;
}

/* Прелоудер: фон + мини-логотип с вращением (перекрывает старые стили main.css) */
.preloader.preloader--brand {
	background-color: var(--bg-classic) !important;
}
.theme--dark .preloader.preloader--brand {
	background-color: var(--bg-classic) !important;
}
.preloader.preloader--brand .preloader__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.preloader.preloader--brand .preloader__logo {
	width: min(96px, 24vw);
	height: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.4;
	animation: kreo-preloader-spin 1.05s linear infinite;
	will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
	.preloader.preloader--brand .preloader__logo {
		animation: none;
	}
}
@keyframes kreo-preloader-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Нижний бар: бургер открывает основной сайдбар; всплывающий .mobile-navbar отключён */
.mobile-navbar {
	display: none !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

/* Мобильный dock: иконка + подпись; активный таб — var(--global-brand), без «круглой» кнопки из main.css */
.mobile-menu.mobile-menu--dock {
	height: auto;
	min-height: 58px;
	padding: 10px 8px calc(12px + env(safe-area-inset-bottom, 0px)) 8px;
	box-sizing: border-box;
}

.theme--dark .mobile-menu.mobile-menu--dock {
	background: #0c0e12;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

body:not(.theme--dark) .mobile-menu.mobile-menu--dock {
	background: #e4e6f2;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu.mobile-menu--dock .mobile-menu__links {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu.mobile-menu--dock .mobile-menu__item {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu.mobile-menu--dock .mobile-menu__item > a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	min-height: 26px;
	padding: 0;
	margin: 0;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	transition: color 0.15s ease;
}

.theme--dark .mobile-menu.mobile-menu--dock .mobile-menu__item > a {
	color: rgba(255, 255, 255, 0.42);
}

body:not(.theme--dark) .mobile-menu.mobile-menu--dock .mobile-menu__item > a {
	color: rgba(0, 0, 0, 0.42);
}

.mobile-menu.mobile-menu--dock .mobile-menu__icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	display: block;
}

.mobile-menu.mobile-menu--dock svg.icon_mobiles {
	fill: currentColor;
}

.mobile-menu.mobile-menu--dock .mobile-menu__label,
.mobile-menu.mobile-menu--dock .mobile_p {
	display: block;
	font-size: 10px;
	line-height: 1.15;
	font-weight: 500;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.15s ease;
}

.theme--dark .mobile-menu.mobile-menu--dock .mobile-menu__label,
.theme--dark .mobile-menu.mobile-menu--dock .mobile_p {
	color: rgba(255, 255, 255, 0.42);
}

body:not(.theme--dark) .mobile-menu.mobile-menu--dock .mobile-menu__label,
body:not(.theme--dark) .mobile-menu.mobile-menu--dock .mobile_p {
	color: rgba(0, 0, 0, 0.45);
}

/* Только маршрутные пункты (.btn_active); #moreBtn.active при открытом сайдбаре не красим в бренд */
.mobile-menu.mobile-menu--dock .mobile-menu__item:has(> a.btn_active.active) > a {
	color: var(--global-brand);
}

.mobile-menu.mobile-menu--dock .mobile-menu__item:has(> a.btn_active.active) > .mobile-menu__label,
.mobile-menu.mobile-menu--dock .mobile-menu__item:has(> a.btn_active.active) > .mobile_p {
	color: var(--global-brand);
}

.mobile-menu.mobile-menu--dock a.btn_active.active svg,
.mobile-menu.mobile-menu--dock a.btn_active.active .icon_mobiles {
	padding: 0 !important;
	margin: 0 !important;
	width: 22px !important;
	height: 22px !important;
	max-width: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	fill: currentColor !important;
}

#app {
  display: flex;
  flex-direction: row;
	flex-wrap: nowrap;
  position: relative;
  height: 100%;
}

#app > .sidebar {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	height: 100%;
	z-index: 2;
	width: var(--sidebar-width-expanded);
	min-width: var(--sidebar-width-expanded);
	box-sizing: border-box;
	transition:
		width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
		min-width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

#app > .sidebar-mobile-backdrop {
	display: none;
}

/*
 * main.css @1125px: .sidebar { display: none !important } — ломает бургер (#moreBtn → .leftBtn).
 * Здесь: та же точка останова, панель fixed + translate; открыто = body без .left--closed.
 */
@media only screen and (max-width: 1125px) {
	#app > .sidebar {
		display: flex !important;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		height: 100vh;
		height: 100dvh;
		max-height: 100dvh;
		z-index: 30;
		flex-direction: column;
		flex-wrap: nowrap;
		box-shadow: 10px 0 40px rgba(0, 0, 0, 0.38);
		transform: translate3d(-105%, 0, 0);
		transition:
			transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
			width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
			min-width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	body:not(.left--closed) #app > .sidebar {
		transform: translate3d(0, 0, 0);
		pointer-events: auto;
		width: min(var(--sidebar-width-expanded), 88vw) !important;
		min-width: min(var(--sidebar-width-expanded), 88vw) !important;
	}

	/* Затемнение за выездной панелью; нижний бар выше оверлея, чтобы оставался кликабельным */
	#app > .sidebar-mobile-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 25;
		background: rgba(0, 0, 0, 0.52);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 0.28s ease,
			visibility 0.28s ease;
		-webkit-tap-highlight-color: transparent;
	}

	body:not(.left--closed) #app > .sidebar-mobile-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	body:not(.left--closed) .mobile-menu {
		z-index: 35 !important;
	}
}

#app > .sidebar > .tc-wrapper {
	position: relative;
	height: 100%;
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	margin-top: 15px;
}
#app > .sidebar > .tc-wrapper > .inner.sidebar-scroll {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 10px;
}

/* Тонкие разделители между блоками меню (игры → промо → инфо) */
#app > .sidebar .sidebar-nav-divider {
	display: block;
	border: none;
	height: 1px;
	margin: 15px 0px 15px 0px;
	padding: 0;
	flex-shrink: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.07) 15%,
		rgba(255, 255, 255, 0.14) 50%,
		rgba(255, 255, 255, 0.07) 85%,
		transparent 100%
	);
}

.left--closed #app > .sidebar .sidebar-nav-divider {
	margin-left: 4px;
	margin-right: 4px;
	margin-top: 14px;
	margin-bottom: 14px;
}

#app > .sidebar > .tc-wrapper > .footer {
	width: 100%;
	flex: 0;
	padding: 5px;
	font-size: inherit;
	display: flex;
	align-items: center;
    justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	border-block-start: 1px solid var(--base-alfa-neutral);

}

#app > .sidebar > .tc-wrapper > .inner > .item  {
	transition: .08s ease-in all !important;
}
#app > .sidebar > .tc-wrapper > .inner > .item {
	position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
	margin: 7px 0;
	border-radius: 12px;
	color: #9aa1b1;
	font-style: normal;
	font-weight: 700;
	cursor: pointer;
	min-height: 44px;
}
#app > .sidebar > .tc-wrapper > .inner > .item.marked .icon {
	color: #f2ad44;
}
#app > .sidebar > .tc-wrapper > .inner > .item .tooltip {
	display: none;
}
#app > .sidebar > .tc-wrapper > .inner > .item .title {
	margin-left: 8px;
}
#app > .sidebar > .tc-wrapper > .inner > .item.marked {
background-color: #181B27;
color: #fff;
}
#app > .sidebar > .tc-wrapper > .inner > .item.marked:hover {
	color: #fff !important;
	background-color: #181B27 !important;
	border-radius: 12px !important;
}
#app > .sidebar > .tc-wrapper > .inner > .item:hover .icon {
	/* color: #3577F2; */
}
#app > .sidebar > .tc-wrapper > .inner > .item:hover {
background-color: #2a2a2a;
color: #fff;

}

.left--closed #app > .sidebar {
	width: var(--sidebar-width-collapsed);
	min-width: var(--sidebar-width-collapsed);
}

#app > .sidebar > .tc-wrapper > .top-footer,
#app > .sidebar > .tc-wrapper > .footer {
	flex-shrink: 0;
}
.left--closed #app > .sidebar > .tc-wrapper > .inner > .item:hover .tooltip {
	visibility: visible;
	opacity: 1;
}
.left--closed #app > .sidebar > .tc-wrapper > .inner > .item .tooltip {
	display: flex;
	align-items: center;
	justify-content: left;
	transition: .08s ease-in all !important;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 45px;
	top: 0;
	bottom: 0;
	min-width: 48px;
	height: 100%;
	padding: 8px 16px;
	padding-left: 0;
	background-color: #2a2a2a;
	border-radius: 0 12px 12px 0;
}
.left--closed #app > .sidebar > .tc-wrapper > .inner > .item:hover {
	border-radius: 12px 0 0 12px;
}
.left--closed #app > .sidebar > .tc-wrapper > .inner > .item {
	justify-content: center;
	/* width: 45px; */
}
.left--closed #app > .sidebar > .tc-wrapper > .inner > .item .go {
	display: none !important;
}
.left--closed #app > .sidebar > .tc-wrapper > .inner > .item .title {
	/* display: none !important; */
	max-width: 0;
	opacity: 0;
	margin-left: 0;
}
.left--closed #app > .sidebar .footer .gx-btn div {
	display: none !important;
}

/* Свёрнутый сайдбар: иконки меню по центру полосы */
.left--closed #app > .sidebar > .logo > .top-site-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.left--closed #app > .sidebar > .logo > .top-site-bar > .fdsdsfgda {
	justify-content: center;
	width: 100%;
}

.left--closed #app > .sidebar > .logo > .top-site-bar > .sidebar-profile-popover-wrap {
	justify-content: center;
	width: 100%;
}

.left--closed #app > .sidebar > .logo > .top-site-bar > .sidebar-profile-popover-wrap .fdsdsfgda {
	justify-content: center;
	width: 100%;
}

/* Свёрнутый сайдбар: скрыть ник/ID у авторизованного (блок теперь внутри .sidebar-profile-popover-wrap) */
.left--closed #app > .sidebar > .logo > .top-site-bar > .sidebar-profile-popover-wrap .fdsdsfgda span {
	display: none !important;
}

.left--closed #app > .sidebar > .logo > .top-site-bar > .sidebar-profile-popover-wrap .fdsdsfgda > .infononguest {
	display: none !important;
}

.left--closed #app > .sidebar > .tc-wrapper > .inner.sidebar-scroll {
	padding-left: 4px;
	padding-right: 4px;
}

.left--closed #app > .sidebar .game-entettis > a {
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.left--closed #app > .sidebar .game-entettis .allgames-sitebar {
	justify-content: center;
	padding: 8px 4px;
	gap: 0;
}

.left--closed #app > .sidebar .game-entettis .fiv-3 {
	position: relative;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 100%;
	box-sizing: border-box;
}

/* Текст скрыт, но бейджи остаются — убираем titlenav из flex, чтобы иконка центрировалась */
.left--closed #app > .sidebar .game-entettis .fiv-3 > .titlenav {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	overflow: visible;
	margin: 0;
	padding: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.left--closed #app > .sidebar .game-entettis .fiv-3 > .icon,
.left--closed #app > .sidebar .game-entettis .fiv-3 > svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

#app > .sidebar > .tc-wrapper > .inner > .item .go {
	margin-left: auto;
	border-radius: 8px;
	width: 43px;
	height: 24px;
	background: linear-gradient(109.64deg, #e6ca39 5.39%, #ff8d00 63.15%);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* flex: 1 1 0% + min-width: 0 — колонка контента сжимается при раскрытом сайдбаре,
   без «выталкивания» вправо и горизонтального переполнения ценой полосы прокрутки */
#app > .main {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	flex: 1 1 0%;
	width: auto;
	min-width: 0;
	max-width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 1;
}
#app > .main main {
	position: relative;
	flex: 1 1 auto;
	padding-top: 15px;
	padding: 0px 50px;
	min-width: 0;
}

/* Контент welcome и др. может сжиматься при раскрытом сайдбаре без горизонтального вылезания */
#app > .main main .wrapper,
#app > .main .wrapper {
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

#app > .main .games-strip-section,
#app > .main .wrapper.popular,
#app > .main .wrapper.item-back-main {
	min-width: 0;
	max-width: 100%;
}
#app > .main footer {
	position: relative;
	flex: 1 0 auto;
	padding: 16px;
	padding-bottom: 86px;
}

@media (max-width: 768px) {
	#app > .main main {
		padding: 15px 15px 0;
	}
	#app > .main footer {
		padding: 16px 15px 86px;
	}
}

#app > .main > .header {
	position: relative;
	padding: 10px 50px;
	/* border-bottom: 1px solid #212739; */
	min-height: 65;
	z-index: 10;

}


#app .logo {
  position: relative;
  padding: 0 0px;
  height: auto;
	display: flex;
  align-items: center;

}
#app > .sidebar .logo {
	/* border-bottom: 1px solid #212739; */
	min-height: var(--header-height);
	padding: 8px;
	/* background: #161a2c; */
	border-block-end: 1px solid var(--base-alfa-neutral);
}

#app .logo:before {
  -webkit-filter: blur(0.8rem);
  filter: blur(0.8rem);
}

#app .logo > .logoim {
	transition: none;
	display: inline-block;
  position: relative;
  width: 120px;
  height: 45px;
  background: url(/img/icons/streek_logo.png) no-repeat center center/contain
}
.left--closed #app > .sidebar .logo > .logoim {

  width: 100%;
  height: 45px;
  background: url(../images/logotype-dark-small.svg) no-repeat center center/contain;
}

.left--closed #app > .sidebar .logo .leftBtn .icon {
	width: 16px;
  height: 16px;
	background: url(../images/symbols.svg?v=31#arrow_left) no-repeat center center/contain;
}


.swapon .sw1 {
	display: block;
}
.swapon .sw2 {
	display: none;
}
.swapon.active .sw1 {
	display: none;
}
.swapon.active .sw2 {
	display: block;
}

.icon {
	width: 20px;
	height: 20px;
}

.gx-btn {
	border: 2px solid #2a2a2a;
	border-radius: 12px;
	padding: 6px;
	min-height: 24px;
	min-width: 24px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	color: #fff;
	transition: .1s ease;
	font-size: 12px;
}
.gx-btn.accent {
	background-color: #ff005a;
	color: #2a2a2a;
}
.gx-btn.accent .icon {
	color: #2a2a2a;
}
.gx-btn.accent:hover {
	background-color: #f2ad44;
	color: #2a2a2a;
}
.gx-btn:hover {
	background-color: #2a2a2a;
}
.gx-btn.filled:hover {
	background-color: #2a2a2a;
}
.gx-btn.filled {
	background-color: #353537;
}
.gx-btn .icon {
	color: #3B7BE6;
}
.gx-btn div {
	font-weight: 700;
}

.gx-btn.round {
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 12px;
	padding: 0;
}


:root {
	--chat-width: 340px;
}

#app > .right {
	position: sticky;
	top: 4.5rem;
	min-width: var(--chat-width);
	max-width: var(--chat-width);
	overflow: hidden;
	height: 100%;
	transition: .75s min-width, .75s width;
	border-left: 1px solid var(--border-color-1);
}

#app > .right {
	min-width: 0;
  width: 0;
}
.chat--opened #app > .right {
	min-width: var(--chat-width);
	width: var(--chat-width);
}

@media only screen and (max-width: 1125px) {
	#app > .right {
		display: none;
		max-width: unset;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100% !important;
		height: 100%;
		z-index: 1001;
		transition: .4s ease;
		border: none;
	}
	.chat--opened #app > .right {
		display: block !important;
	}
	.chat-aside {
		display: none !important;
	}
	.user-split > span {
		display: none;
	}
}


@media only screen and (max-width: 1250px) {
  :root {
    --chat-width: 320px;
  }
}

.chat {
	width: var(--chat-width);
}

.aside {
	position: absolute;
	z-index: 99;
}
.aside.right {
	right: -14px;
}
.aside.left {
	left: -14px;
}
.aside.top {
	top: -14px;
}
.aside.bottom {
	bottom: -14px;
}
.aside.vert-center {
	top: 0;
	bottom: -78px;
	margin: auto;
}

.gx-s {
	position: relative;
	overflow: visible;
}

.gx-container {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 8px 12px;
	border-radius: 12px;
	/* background-color: #161a2c; */
}
.gx-wrap {
	padding: 20px 25px;
}

hr {
	border: none;
	outline: none;
	background-color: #1C202F;
	height: 1px;
	margin: 15px 0;
}

.gx-col {
	display: flex;
	flex-direction: column;
	line-height: normal;
}
.gx-col-x {
	flex: 1;
}
.mt {
	margin-top: 8px;
}
.mt-1 {
	margin-top: 16px;
}

.gx-gap {
	gap: 8px;
}
.gx-gap-sm {
	gap: 4px;
}
.gx-gap-lg {
	gap: 16px;
}

.text-gray {
	color: #7785B3 !important;
}
.text-warn {
	color: #ff1976 !important;
}
.text-bold {
	font-weight: 700;
}

.gx-mh-0 {
	min-height: 32px;
}
.gx-mh-1 {
	min-height: 48px;
}
.gx-mh-2 {
	min-height: 64px;
}

.gx-box.dark {
}
.gx-box {
	/* padding: 8px;
	border-radius: 8px; */
}

.gx-con {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
}
.gx-con > .icon.lg {
	width: 42px;
	height: 42px;
}
.gx-con > .icon {
	width: 32px;
	height: 32px;
	color: #ffffff;
	padding: 8px;
	border-radius: 10px;
	/* background-color: #2a2a2a; */
	display: flex;
	align-items: center;
	justify-content: center;
}
.gx-con > .title {
	color: #fff;
	font-weight: 600;
	font-size: 15px;
}
.gx-con.blue1 > .icon {
	background: #3B7BE6;
	color: #fff;
}
.gx-con.blue1 > .title {
	color: #fff;
}

.gx-con.blue2 > .icon {
	background: #3B7BE6;
	color: #fff;
}
.gx-con.blue2 > .title {
	color: #fff;
}

.gx-con.blue3 > .icon {
	background: #3B7BE6;
	color: #fff;
}
.gx-con.blue3 > .title {
	color: #fff;
}

.gx-con.blue4 > .icon {
	background: #3B7BE6;
	color: #fff;
}
.gx-con.blue4 > .title {
	color: #fff;
}

.mw-6 {
	max-width: 100%;
}

/* .gx-w-box {
	position: relative;
	border-radius: 12px;
	padding: 35px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background-color: #181B27;
	min-height: 100%;
	border-radius: 20px;

	width: 100%;
} */



.gx-w-box.dark p {
	color: #e1e2e5;
}
.gx-w-box.dark {
	background-color: #181B27;
}
.gx-w-box.blue p {
	color: #e9ecf6;
}
/* .gx-w-box.blue1 {
  background-image: url(/banner_1v1.png);
  background-size: cover;
  background-position: 0px;
}

.gx-w-box.blue2 {
  background-image: url(/banner_2v1.png);
  background-size: cover;
  background-position: 0px;
}

.gx-w-box.blue3 {
  background-image: url(/banner_3v1.png);
  background-size: cover;
  background-position: 0px;
}

.gx-w-box.blue4 {
  background-image: url(/banner_4v1.png);
  background-size: cover;
  background-position: 0px;
} */

.wrapper.mb {
	margin-bottom: 16px;
}

.d-none {
	display: none;
}

.gx-split {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
	flex-wrap: nowrap;
}
.gx-split > * {
	flex-grow: 1;
}
.gx-split > .gx-left {
	position: relative;
	background-color: #181c28;
	z-index: 1;
}
.gx-split > .gx-right {
	position: relative;
	background-color: #1c202e;
	flex: 0 1 55%;
	z-index: 2;
}

.gx-floating {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}
.gx-wh-1 {
	width: 100%;
	height: 100%;
}
.gx-floating-remark {
	border-radius: 8px;
	background: rgba(28, 32, 47, 0.65);
	backdrop-filter: blur(12.5px);
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	margin: auto;
	width: fit-content;
	padding: 10px;
	color: #F1AC44;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 17px; /* 160% */
	z-index: 6;
}
.gx-remark {
	color: #48506B;
	margin-top: auto;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 160% */
}

.gx-comp-el-0 {
  position: absolute;
  bottom: -42px;
  left: -42px;
  right: 0;
  width: 100%;
  height: 90%;
  margin: auto;
  background: url(../assets/images/login_g.png) no-repeat center center/cover;
  z-index: 2;
  background-size: contain;
}
.gx-comp-el-1 {
  position: absolute;
  bottom: 32px;
  left: 0;

  margin: auto;
z-index: 1;
}
.gx-comp-el-2 {
  position: absolute;
  bottom: 0;

  right: 0;
  margin: auto;
z-index: 1;
}
.gx-comp-1 {
	height: 360px;
	background: radial-gradient(57.70% 57.70% at 50% 50.00%, #3B7BE6 0%, #1F58B7 100%);
}
.gx-floating-logo {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
  width: 160px;
  height: 24px;
  background: url(..//img/lotoype-dark.svg) no-repeat center center/contain;
	z-index: 1;
}


.user-split {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.user-split > span {
	font-weight: 600;
	max-width: 100px;
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	color: #fff;
	text-wrap: nowrap;
	white-space: nowrap;
}
.user-avatar {
	border-radius: 14px;
	width: 48px;
	height: 48px;
}

/* .gx-game-item {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 180px;
	min-height: 200px;
	background: #191c26;
	border-radius: 12px;
	padding: 16px;
	padding-bottom: 0;
	align-items: end;
	justify-content: space-between;
} */

.gx-game-item-bk img {
	max-width: 100%;
}
.gx-game-item-bk {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
/* .gx-game-item-bk .center {
	position: absolute;
	width: 210px;
	height: 145px; 
	top: 0;
	bottom: 43px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 3;
	 border-radius: 20px; 
	background: #191c26;
} */
.gx-game-item-bk .left {
	position: absolute;
	width: 72px;
	height: 72px;
	top: -72px;
	bottom: 48px;
	left: -180px;
	right: 0;
	margin: auto;
	z-index: 2;
}
.gx-game-item-bk .right {
	position: absolute;
	width: 72px;
	height: 72px;
	transform: rotate(15deg);
	top: 100px;
	bottom: 48px;
	left: 0;
	right: -180px;
	margin: auto;
	z-index: 1;
}

.gx-game-item-pl {

}
.gx-game-item-tl {
	margin-top: auto;
	position: relative;
	height: 48px;
	width: 100%;
}
/* .gx-game-item-tl > span {
	text-transform: uppercase;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	z-index: 3;
} */
.gx-clip {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
.gx-clip.clip-a {
	bottom: 0;
	z-index: 1;
}
.gx-clip.clip-b {
	top: 0;
	z-index: 2;
}
svg.ic_login_warn {
    float: left;
    margin-right: 5px;
}
a.btn.d-flex.align-center span svg {
    float: right;
    margin-left: 10px;
}
svg.ft-soc {
    width: 24px;
    height: 24px;
}

a.gx-btn.soc {
    border: 0px;
    padding: 0px;
}

svg.icon_mobiles {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}
.text-f18 span {
    font-size: 18px !important;
}

.title2{
	background: #053415;
    color: #00ff44;
    border-radius: 10px;
    padding: 10px;
    font-weight: 100;
}


span.boldet {
    font-weight: 600;
}

.Cura{
	color: #657199;
}

/*
 * Раньше скрывали .logo в сайдбаре на телефоне — вместе с кнопкой .leftBtn (закрытие панели).
 * Показываем шапку, когда выездное меню открыто (body без .left--closed).
 */
@media only screen and (max-width: 625px) {
	body.left--closed #app > .sidebar .logo {
		display: none;
	}

	body:not(.left--closed) #app > .sidebar .logo {
		display: flex !important;
	}
}

/* ========== Модалки .popup--auth / .popup--register (единый вид на всех разрешениях) ========== */

.popup.popup--auth.vm--modal,
.popup.popup--register.vm--modal {
	width: min(750px, calc(100vw - 32px)) !important;
	max-width: calc(100vw - 32px) !important;
	height: min(600px, calc(100vh - 36px)) !important;
	height: min(600px, calc(100dvh - 36px)) !important;
	max-height: calc(100vh - 36px) !important;
	max-height: calc(100dvh - 36px) !important;
	box-sizing: border-box;
	overflow: hidden !important;
}

.popup.popup--auth .auth__content,
.popup.popup--register .auth__content {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	max-height: 100% !important;
	overflow: hidden !important;
}

.popup.popup--auth .auth__image,
.popup.popup--register .auth__image {
    width: 375px;
	min-height: 0;
	align-self: stretch;
	background-size: cover;
	background-position: center;
}

.popup.popup--auth .auth__inner,
.popup.popup--register .auth__inner {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.popup.popup--register .modal__input {
	margin-bottom: 8px;
}

.popup.popup--auth .auth__or,
.popup.popup--register .auth__or {
	font-size: 11px;
	text-transform: none;
	letter-spacing: 0.02em;
	white-space: normal;
	text-align: center;
	line-height: 1.3;
	padding-inline: 8px;
}

.auth-recover-wrap {
	text-align: right;
	margin: -6px 0 10px;
}

.auth-recover-link {
	font-size: 13px;
	font-weight: 500;
	color: rgb(151, 137, 195);
	text-decoration: underline;
	cursor: pointer;
}

.auth-recover-link:hover {
	color: #c4b8e8;
}

/* Согласие при регистрации */
.auth-consent-visual {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 6px 0 10px;
	text-align: left;
	user-select: none;
	pointer-events: none;
}

.auth-consent-visual__checkbox {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 5px;
	background: #2a8046;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0e0e0e;
	box-sizing: border-box;
	margin-top: 1px;
}

.auth-consent-visual__checkbox svg {
	display: block;
}

.auth-consent-visual__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 13px;
	line-height: 1.38;
	pointer-events: auto;
}

.auth-consent-visual__line1 {
	color: #9aa1b1;
	font-weight: 400;
}

.auth-consent-visual__line2 {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	align-self: flex-start;
}

.auth-consent-visual__line2:hover {
	text-decoration: underline;
}

/* Поля pill + автозаполнение */
.popup.popup--auth .modal__input--pill,
.popup.popup--register .modal__input--pill {
	background: rgb(40 40 40);
}

.popup.popup--register .modal__input--pill.modal__input--promo {
	background: rgba(30, 30, 30, 0.4) !important;
	border: 1px dashed rgba(255, 255, 255, 0.35);
	border-radius: 14px;
}

.popup.popup--auth .modal__input-pill__sep,
.popup.popup--register .modal__input-pill__sep {
	background: rgba(255, 255, 255, 0.14);
}

.popup.popup--auth .modal__input--pill .modal__input-pill__field,
.popup.popup--register .modal__input--pill .modal__input-pill__field {
	color: #e8eaef !important;
	caret-color: #fff;
	background-color: transparent !important;
}

.popup.popup--auth .modal__input--pill .modal__input-pill__field::placeholder,
.popup.popup--register .modal__input--pill .modal__input-pill__field::placeholder {
	color: #8b92a5 !important;
	opacity: 1;
}

.popup.popup--auth .modal__input--pill .modal__input-pill__field:-webkit-autofill,
.popup.popup--register .modal__input--pill .modal__input-pill__field:-webkit-autofill,
.popup.popup--auth .modal__input--pill .modal__input-pill__field:-webkit-autofill:hover,
.popup.popup--register .modal__input--pill .modal__input-pill__field:-webkit-autofill:hover,
.popup.popup--auth .modal__input--pill .modal__input-pill__field:-webkit-autofill:focus,
.popup.popup--register .modal__input--pill .modal__input-pill__field:-webkit-autofill:focus,
.popup.popup--auth .modal__input--pill .modal__input-pill__field:-webkit-autofill:active,
.popup.popup--register .modal__input--pill .modal__input-pill__field:-webkit-autofill:active {
	-webkit-text-fill-color: #e8eaef !important;
	box-shadow: 0 0 0 1000px #282828 inset !important;
}

.popup.popup--register .modal__input--pill.modal__input--promo .modal__input-pill__field:-webkit-autofill,
.popup.popup--register .modal__input--pill.modal__input--promo .modal__input-pill__field:-webkit-autofill:hover,
.popup.popup--register .modal__input--pill.modal__input--promo .modal__input-pill__field:-webkit-autofill:focus,
.popup.popup--register .modal__input--pill.modal__input--promo .modal__input-pill__field:-webkit-autofill:active {
	box-shadow: 0 0 0 1000px #1e1e1e inset !important;
}

.popup.popup--auth .modal__input--pill .modal__input-pill__field:autofill,
.popup.popup--register .modal__input--pill .modal__input-pill__field:autofill {
	box-shadow: 0 0 0 1000px #282828 inset;
	color: #e8eaef !important;
}

/* Компакт: колонка + та же типографика/кнопки, что на десктопе */
@media (max-width: 800px){
	.popup.popup--auth.vm--modal,
	.popup.popup--register.vm--modal {
		width: min(100%, calc(100vw - clamp(16px, 5vw, 28px))) !important;
		max-width: 420px !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: min(92vh, 720px) !important;
		max-height: min(92dvh, 720px) !important;
		overflow: visible !important;
		border-radius: 20px !important;
	}

	.popup.popup--auth .auth__content,
	.popup.popup--register .auth__content {
		flex-direction: column !important;
		align-items: stretch !important;
		height: auto !important;
		max-height: min(92vh, 720px) !important;
		max-height: min(92dvh, 720px) !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch;
		border-radius: 20px !important;
	}

	.popup.popup--auth .auth__image,
	.popup.popup--register .auth__image {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		height: clamp(120px, 28vw, 200px) !important;
		min-height: 120px !important;
		max-height: 220px !important;
		border-radius: 20px 20px 0 0 !important;
		border-bottom-left-radius: 0 !important;
	}

	.popup.popup--register .auth__close {
		top: 10px;
		right: 10px;
		z-index: 3;
	}

	.popup.popup--auth .auth__inner,
	.popup.popup--register .auth__inner {
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
		padding: clamp(14px, 4vw, 20px);
		border-radius: 0 0 20px 20px;
		border-top: none;
	}
}
