@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);
	}
}

/* Карточки игр/слотов: серый плейсхолдер с логотипом до загрузки обложки */
:root {
	--kreo-card-placeholder-bg: #1c1f26;
}
.kreo-game-card.kreo-game-card--loading {
	background-image: none !important;
}
.kreo-game-card__placeholder {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--kreo-card-placeholder-bg);
	border-radius: inherit;
	transition: opacity 0.22s ease;
	pointer-events: none;
}
.kreo-game-card__logo {
	width: clamp(36px, 26%, 64px);
	height: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.42;
}
.kreo-game-card--loaded .kreo-game-card__placeholder,
.kreo-game-card--error .kreo-game-card__placeholder {
	opacity: 0;
}
.kreo-game-card--loaded {
	background-size: cover !important;
	background-position: center !important;
}

.games__item.games__item--slot {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* Нижний бар: бургер открывает основной сайдбар; всплывающий .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: 15px 0 0;
	min-width: 0;
}

/* Контент welcome и др. может сжиматься при раскрытом сайдбаре без горизонтального вылезания */
#app > .main main .wrapper,
#app > .main .wrapper {
	min-width: 0;
	max-width: min(100%, var(--site-content-max, 1500px));
	margin-left: auto;
	margin-right: auto;
	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 0;
	padding-bottom: 86px;
}

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

#app > .main > .header {
	position: relative;
	padding: 10px 0;
	/* 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(/img/icons/streek_logo.png) 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;
}

/* Prefer body.left--closed over .active (can desync on mobile close) */
body:not(.left--closed) .swapon.leftBtn .sw1 {
	display: none;
}
body:not(.left--closed) .swapon.leftBtn .sw2 {
	display: block;
}
body.left--closed .swapon.leftBtn .sw1 {
	display: block;
}
body.left--closed .swapon.leftBtn .sw2 {
	display: none;
}

.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(440px, calc(100vw - 32px)) !important;
	max-width: calc(100vw - 32px) !important;
	height: auto !important;
	max-height: min(92vh, 720px) !important;
	max-height: min(92dvh, 720px) !important;
	box-sizing: border-box;
	overflow: hidden !important;
	border-radius: 20px !important;
	background: #141414 !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.popup.popup--auth .auth__content,
.popup.popup--register .auth__content,
.popup.popup--auth .auth__content--compact,
.popup.popup--register .auth__content--compact {
	position: relative;
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch;
	grid-template-columns: none !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !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;
	background: #141414;
}

.popup.popup--auth .auth__image,
.popup.popup--register .auth__image {
	display: none !important;
}

.popup.popup--auth .auth__inner,
.popup.popup--register .auth__inner {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	min-height: 0;
	max-height: none;
	overflow: visible;
	padding: 22px 22px 18px;
	box-sizing: border-box;
}

.popup.popup--auth .auth__title,
.popup.popup--register .auth__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.popup.popup--auth .title-auth,
.popup.popup--register .title-auth {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.popup.popup--auth .auth__close,
.popup.popup--register .auth__close {
	position: static;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #c8cdd8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	cursor: pointer;
}

.popup.popup--auth .auth__close:hover,
.popup.popup--register .auth__close:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.popup.popup--auth .auth__socials--top,
.popup.popup--register .auth__socials--top {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 14px;
	padding: 0;
}

.popup.popup--auth .auth__social-btn,
.popup.popup--register .auth__social-btn {
	width: 52px;
	height: 52px;
	min-width: 52px;
	max-width: 52px;
	flex: 0 0 52px;
	padding: 0;
	border: none;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	transition: transform 0.15s ease, filter 0.15s ease;
}

.popup.popup--auth .auth__social-btn:hover,
.popup.popup--register .auth__social-btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.08);
}

.popup.popup--auth .auth__social-btn--vk,
.popup.popup--register .auth__social-btn--vk {
	background: linear-gradient(135deg, #0077ff 0%, #00a2ff 100%);
}

.popup.popup--auth .auth__social-btn--tg,
.popup.popup--register .auth__social-btn--tg {
	background: linear-gradient(135deg, #229ed9 0%, #2bc4ff 100%);
}

.popup.popup--auth .auth__social-btn--ya,
.popup.popup--register .auth__social-btn--ya {
	background: linear-gradient(135deg, #ff0030 0%, #b00012 100%);
}

.popup.popup--auth .auth__social-btn--google,
.popup.popup--register .auth__social-btn--google {
	background: #fff;
	color: #444;
}

.popup.popup--auth .auth__social-letter,
.popup.popup--register .auth__social-letter {
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.02em;
	line-height: 1;
}

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

.popup.popup--auth .auth__or,
.popup.popup--register .auth__or {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	text-transform: none;
	letter-spacing: 0.02em;
	white-space: normal;
	text-align: center;
	line-height: 1.3;
	color: #8b92a5;
	margin: 4px 0 14px;
}

.popup.popup--auth .auth__or::before,
.popup.popup--auth .auth__or::after,
.popup.popup--register .auth__or::before,
.popup.popup--register .auth__or::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.popup.popup--auth .auth__or span,
.popup.popup--register .auth__or span {
	flex-shrink: 0;
}

.popup.popup--auth .modal__input-pill__icon,
.popup.popup--register .modal__input-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	color: #8b92a5;
	font-size: 14px;
}

.popup.popup--auth .auth-password-toggle,
.popup.popup--register .auth-password-toggle {
	color: #8b92a5;
	font-size: 15px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0 4px;
}

.popup.popup--auth .auth-password-toggle:hover,
.popup.popup--register .auth-password-toggle:hover {
	color: #fff;
}

.popup.popup--auth .modal__form-btn button,
.popup.popup--register .modal__form-btn button {
	width: 100%;
	border: none;
	border-radius: 12px;
	background: #2a8046;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 16px;
	cursor: pointer;
}

.popup.popup--auth .modal__form-btn button:hover,
.popup.popup--register .modal__form-btn button:hover {
	filter: brightness(1.08);
}

.popup.popup--auth .auth__bottom,
.popup.popup--register .auth__bottom {
	margin-top: 16px;
	text-align: center;
}

.popup.popup--auth .auth__bottom ul,
.popup.popup--register .auth__bottom ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.popup.popup--auth .auth__bottom li,
.popup.popup--register .auth__bottom li {
	color: #8b92a5;
	font-size: 13px;
}

.popup.popup--auth .auth__bottom a,
.popup.popup--register .auth__bottom a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.popup.popup--auth .auth__bottom a:hover,
.popup.popup--register .auth__bottom a:hover {
	text-decoration: underline;
}

.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,
.auth-consent-visual__checkbox i {
	display: block;
	font-size: 12px;
	line-height: 1;
}

.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;
	}

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

	.popup.popup--auth .auth__image,
	.popup.popup--register .auth__image {
		display: none !important;
	}
}

/* ========== Home sidebar rail: турниры / live / акции ========== */
.home-rail {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
}

.home-rail__section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.home-rail__heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0 2px;
	font-size: 14px;
	font-weight: 700;
	color: #f2f4f8;
	letter-spacing: 0.01em;
}

.home-rail__heading i {
	color: #3dcf70;
	font-size: 13px;
}

.home-rail-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 14px;
	border-radius: 16px;
	background: #171717;
	border: 1px solid rgba(255, 255, 255, 0.07);
	overflow: hidden;
}

.home-rail-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.home-rail-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-rail-badge__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.home-rail-badge--live {
	color: #3dcf70;
	background: rgba(61, 207, 112, 0.12);
	border-color: rgba(61, 207, 112, 0.25);
}

.home-rail-badge--ok {
	color: #7dffb0;
	background: rgba(61, 207, 112, 0.12);
	border-color: rgba(61, 207, 112, 0.22);
}

.home-rail-card__ico {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 215, 0, 0.12);
	color: #ffd54a;
	font-size: 15px;
	flex-shrink: 0;
}

.home-rail-card__ico--mint {
	background: rgba(61, 207, 112, 0.14);
	color: #3dcf70;
}

.home-rail-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.home-rail-card__label {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.home-rail-card__title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.home-rail-card__prize {
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	margin-top: 4px;
}

.home-rail-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
}

.home-rail-card__meta i {
	font-size: 10px;
	color: #3dcf70;
}

.home-rail-card__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.5);
}

.home-rail-card__empty-ico {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 4px auto 0;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.55);
	font-size: 22px;
}

.home-rail-card--empty {
	align-items: center;
	text-align: center;
	gap: 10px;
}

.home-rail-leaders {
	list-style: none;
	margin: 0;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-rail-leaders__row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 12px;
}

.home-rail-leaders__row:last-child {
	border-bottom: none;
}

.home-rail-leaders__place {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.1);
	color: #bbb;
	flex-shrink: 0;
}

.home-rail-leaders__place--1 { background: #ffd54a; color: #111; }
.home-rail-leaders__place--2 { background: #c0c0c0; color: #111; }
.home-rail-leaders__place--3 { background: #cd7f32; color: #111; }

.home-rail-leaders__name {
	flex: 1;
	min-width: 0;
	color: rgba(255, 255, 255, 0.88);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-rail-leaders__prize {
	color: #fff;
	font-weight: 700;
	flex-shrink: 0;
}

.home-rail-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 20px;
	border: none;
	border-radius: 12px;
	background: #2a8046;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.home-rail-btn:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
	color: #fff !important;
}

.home-rail-btn i {
	font-size: 12px;
}

.home-rail-btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	border: none;
	box-shadow: none;
}

.home-rail-card--empty .home-rail-btn {
	margin-top: 8px;
}

.home-rail-card--cashback {
	background: linear-gradient(160deg, #1a2420 0%, #141414 55%);
	border-color: rgba(61, 207, 112, 0.18);
}

.home-rail-cashback {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.home-rail-cashback__value {
	display: flex;
	align-items: flex-start;
	line-height: 1;
	color: #3dcf70;
	font-weight: 900;
}

.home-rail-cashback__value span {
	font-size: 34px;
}

.home-rail-cashback__value small {
	font-size: 16px;
	margin-top: 4px;
	margin-left: 1px;
}

.home-rail-card--live {
	padding: 0;
	overflow: hidden;
}

.home-rail-card--live .home_live_wins--rail {
	margin: 0 !important;
}

.home-rail-card--live .home_live_wins--rail .title {
	display: none !important;
}

.home-rail-card--live .home_live_wins--rail .list_wrap {
	border-radius: 16px;
	min-height: 180px;
	max-height: 260px;
	background: transparent;
	border: none;
}

.home-rail-card--live .home_live_wins--rail .list {
	padding: 10px;
	gap: 6px;
}

.home-rail-card--live .home_live_wins--rail .item {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	border-radius: 0;
	padding: 6px 8px;
}

.home-rail-card--live .home_live_wins--rail .item:not(.filler) .sum {
	color: #3dcf70;
	font-weight: 700;
}

.home-rail-card--live .home_live_wins--rail .item.filler .sum,
.home-rail-card--live .home_live_wins--rail .item.filler .game_title,
.home-rail-card--live .home_live_wins--rail .item.filler .mail {
	color: transparent !important;
	min-height: 12px;
}

.home-rail-card--live .home_live_wins--rail .item.filler .sum {
	min-height: 14px;
	width: 72px;
	margin-bottom: 4px;
}

.home-rail-card--live .home_live_wins--rail .item.filler .game_title {
	width: 90px;
	margin-bottom: 4px;
}

.home-rail-card--live .home_live_wins--rail .item.filler .mail {
	width: 70px;
}
