@charset "UTF-8";

/* --- HOUDINI VARIABLES (Нужны для анимации углов) --- */
@property --angle-1 { syntax: "<angle>"; inherits: false; initial-value: -75deg; }
@property --angle-2 { syntax: "<angle>"; inherits: false; initial-value: -45deg; } /* Угол блика */

:root {
	--header-height: 74px;
	--anim--hover-time: 400ms;
    --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

#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: 190px;
	min-width: 190px;
	/* -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: #00123614; */
}

#app>.sidebar>.tc-wrapper {
	position: relative;
	height: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}

#app>.sidebar>.tc-wrapper>.inner {
	position: relative;
	height: 100%;
	flex: 1;
	padding: 8px 12px;
	margin-left: 12px;
}

#app>.sidebar>.tc-wrapper>.footer {
	width: 100%;
	flex: 0;
	padding: 0px 3px 0px 3px;
	font-size: inherit;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

}

#app>.sidebar>.tc-wrapper>.inner>.item {
	transition: .08s ease-in all !important;
}

#app>.sidebar>.tc-wrapper>.inner>.item {
	width: 158px;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 13px 12px;
	padding-left: 34px;
	/* gap: 8px; */
	margin: 7px 0;
	border-radius: 12px;
	/* color: #777984; */
	font-style: normal;
	font-weight: 700;
	cursor: pointer;
	min-height: 46px;
	/* border: 1px solid transparent; */
	/* background: linear-gradient(to right, #13192e, #13192d), linear-gradient(to right, #1c414c, #9bccdb); */
	/* background-clip: padding-box, border-box; */
	/* background-origin: padding-box, border-box; */
	/* overflow: hidden; */
	/* -webkit-backdrop-filter: blur(7px); */
	/* backdrop-filter: blur(7px); */
	/* background: #00091a80; */
	/* border: 1px solid #2e3750; */
}

#app>.sidebar>.tc-wrapper>.inner>.item.marked .icon {
	color: var(--color-btn-accent, #e04545);
}

#app>.sidebar>.tc-wrapper>.inner>.item .tooltip {
	display: none;
}

#app>.sidebar>.tc-wrapper>.inner>.item .title {
	margin-left: 8px;
	font-size: 16px;
}

#app>.sidebar>.tc-wrapper>.inner>.item.marked {
	--base-color: 195, 163, 87;
	/* 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: #272D40; */
	color: #fff;

}

.left--closed #app>.sidebar {
	min-width: 0;
	width: 70px;
}

.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: #272D40;
	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;
}

/* Mobile: auto-collapse sidebar to icons-only (A1 responsive fix) */
@media (max-width: 767px) {
	#app>.sidebar {
		min-width: 60px;
		width: 60px;
	}
	#app>.sidebar>.tc-wrapper>.inner>.item {
		width: 45px;
		justify-content: center;
	}
	#app>.sidebar>.tc-wrapper>.inner>.item .title,
	#app>.sidebar>.tc-wrapper>.inner>.item .go {
		display: none !important;
	}
}

#app>.sidebar>.tc-wrapper>.inner>.item .go {
	margin-left: auto;
	border-radius: 8px;
	width: 24px;
	height: 24px;
	background-color: #212739;
	display: flex;
	align-items: center;
	justify-content: center;
}

#app>.main {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

/* Target the outer ajax-content main by ID so nested page-level <main> elements
   (e.g. profile-v2's <main class="pv2-main">) don't inherit a phantom 100px margin. */
#app .main main#_ajax_content_ {
	position: relative;
	flex: 1 1 auto;
	padding-top: 75px;
	padding: 16px;
	margin-top: 100px;
}


/* Основной контейнер */

#app>.main .footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
	margin-top: 20px;
    box-sizing: border-box;
    padding: 0 16px;
}
#app>.main .footer__cta {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}
#app>.main .footer__cta .footer__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#app>.main .footer__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 121%;
    color: #fff;
    margin: 0; /* Сбрасываем дефолтные отступы браузера */

}

/* Бывший p */
#app>.main .footer__subtitle {
    font-weight: 300;
    font-size: 14px;
    line-height: 207%;
    color: #fff;
    margin: 0;
}

#app>.main .footer__btn {
    --base-color: 195, 163, 87;
    min-width: 308px;
    font-weight: 700;
    font-size: 18px;
    line-height: 89%;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px; /* Можно добавить padding, если высота будет скакать */
    /* No swipe/drag/zoom — only tap. The default for buttons lets iOS
       gesture-track inside the element which (combined with the scale
       transform on :active and conic-gradient transitions in
       components/card.css) made the button visually shift under the
       finger. */
    touch-action: manipulation;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
/* Mobile — kill ALL transform/transition on the contact-support button.
   No scale on :active, no transition on the conic-gradient angle. The
   button stays exactly where CSS placed it regardless of how the finger
   moves while touching it. */
@media (hover: none) and (pointer: coarse) {
    #app>.main .footer__btn,
    #app>.main .footer__btn:active,
    #app>.main .footer__btn:focus,
    #app>.main .footer__btn:hover {
        transform: none !important;
        transition: none !important;
    }
    #app>.main .footer__btn::before,
    #app>.main .footer__btn::after,
    #app>.main .footer__btn:active::after,
    #app>.main .footer__btn:hover::after,
    #app>.main .footer__btn:focus::after {
        transition: none !important;
    }
}

.footer__main {
    flex: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 42px 32px;
    border-radius: 30px;
    overflow: hidden;
}

.footer__branding {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(48, 48, 48, 0.5);
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}
.footer__links-group {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    max-width: 414px;
}
.footer__link {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    margin-right: 0px !important;
}
.footer__link:hover {
    color: var(--color-accent, #B83A3A);
}
.footer__links-col {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.footer__compliance {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.footer__age-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #551515;
    border-radius: 10px;
    background: var(--color-accent, #B83A3A);
    overflow: visible;
}
.footer__compliance-text {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-accent, #B83A3A);
}
.footer__copyright {
    font-weight: 400;
    font-size: 12px;
}

@media only screen and (max-width: 940px) {
    .footer__main, #app>.main .footer__cta {
        border-radius: 10px;
    }
    #app>.main .footer__title {
        font-size: 16px;
    }
    #app>.main .footer__subtitle {
        font-size: 12px;
    }
    #app>.main .footer__cta .footer__container {
        justify-content: center;
        text-align: center;
        gap: 8px;
        align-items: center;
    }
    #app>.main .footer__cta {
        padding: 12px 0px;
    }
    .footer__main {
        padding: 24px 32px;
    }
    #app>.main .footer__btn {
        min-width: 0px;
        width: fit-content;
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 8px;
    }
    .footer__btn svg {
        width: 24px;
        height: 24px;
    }
    #app>.main .footer {
        gap: 10px;
    }
    .footer__link {
        font-size: 12px;
    }

}

/* Планшеты и ниже (до 1125px) */
@media screen and (max-width: 1125px) {
    #app>.main .footer {
        flex-direction: column; /* Ставим блоки друг под друга */
    }

    .footer__cta, .footer__main {
        flex: none;
        width: 100%; /* Растягиваем на всю ширину */
    }

    .footer__nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer__links-group {
        max-width: 100%;
        justify-content: center;
    }

    .footer__links-col {
        justify-content: center;
    }
}

/* Мобильные устройства (до 600px) */
@media screen and (max-width: 600px) {
    .footer__branding {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    .footer__main {
        padding: 24px 16px; /* Меньше паддинги по бокам */
    }

    #app>.main .footer__cta {
        padding: 20px 16px;
    }

    .footer__links-col {
        flex-direction: column; /* Ссылки в столбик, если очень узко */
        align-items: center;
    }

    .footer__compliance {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    #app>.main .footer__btn {
        width: 100%; /* Кнопка на всю ширину для удобного нажатия пальцем */
        max-width: 320px;
    }
}

@media only screen and (max-width: 1125px) {
    .footer__nav {
        flex-wrap: wrap;
    }
    .footer__links-col {
        align-items: flex-start;
    }
    #app>.main .footer {
        padding-bottom: 80px !important;
    }
    #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: 640px) {
	.footer__nav {
		flex-direction: row;
	}
}

.koseleks {
	gap: 10px;
	display: flex;
}

.koseleks2 {
	gap: 10px;
	display: flex;
}

@media(max-width: 650px) {
	.koseleks {
		gap: 10px;
		display: flex;
		flex-direction: column;
	}
}



/*  
  @media(min-width: 0px)and (max-width:1125px) {
	#app > .main > .header {
		position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 12px 16px;
	border: 1px solid #2e3750;
	background: #00091aa6;
	border-radius: 0px 0px 28px 28px;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	margin: auto;
	z-index: 101;
	margin-left: 0px;
	  width: 100%;
	}
  } */



/* @media(min-width: 1125px)and (max-width:1355px) {
	#app > .main > .header {
		position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 12px 16px;
	border: 1px solid #2e3750;
	background: #00091aa6;
	border-radius: 0px 0px 28px 28px;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	margin: auto;
	z-index: 101;
	margin-left: 275px;
	  width: 74%;
	}
  } */

/* @media(min-width: 1355px)and (max-width:1650px) {
	#app > .main > .header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		padding: 12px 16px;
		border: 1px solid #2e3750;
		background: #00091aa6;
		border-radius: 0px 0px 28px 28px;
		backdrop-filter: blur(7px);
		-webkit-backdrop-filter: blur(7px);
		margin: auto;
		z-index: 101;
		width: 79%;
		margin-left: 281px;
	}
  } */

/* @media(min-width: 1650px)and (max-width:2200px) {
	#app>.main>.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		padding: 12px 16px;
		border: 1px solid #2e3750;
		background: #00091aa6;
		border-radius: 0px 0px 28px 28px;
		backdrop-filter: blur(7px);
		-webkit-backdrop-filter: blur(7px);
		margin: auto;
		z-index: 101;
		width: 82%;
		margin-left: 281px;
	}
} */

/* @media(min-width: 2200px) {
#app > .main > .header {
 
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 12px 16px;
	border: 1px solid #2e3750;
	background: #00091aa6;
	border-radius: 0px 0px 28px 28px;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	margin: auto;
	z-index: 101;
	margin-left: 441px;
	 width: 79%;
  }
  } */


#app > .main > .header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 0px 32px;
	height: 74px;
	z-index: 101;
	width: 100%;
	display: flex;
	align-items: center;
	background: rgba(16, 20, 28, 0.2);
}

#app > .main > .header::after {
	content: none !important;
}

.header__wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* .header .login-button family moved to /css/components/header.css (M4) */

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

}

#app>.sidebar .logo {
	min-height: var(--header-height);
	padding: 2px;
	-webkit-backdrop-filter: blur(px);
	backdrop-filter: blur(7px);
	background: #00091a80;
	border-radius: 0px 19px 19px 0px;
	margin-top: 25px;
	border: 1px solid #2e3750;
}

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

#app .logo>.logoim {
	transition: none;
	display: inline-block;
	position: absolute;
	width: 196px;
	height: 110px;
	background: url(../logotype-dark.svg) no-repeat center center/contain;
	top: -15px;
}

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

.sidebar__game {

	transition: transform 0.3s ease-in-out;
}


.icon {
	width: 22px;
	height: 22px;
	transition: transform 0.3s ease-in-out;
}

.icon:hover {
	transform: scale(1.2);
}

.sidebar__game .icon2 {
	position: absolute;
	width: 62px;
	right: 10px;
	height: 111px;
	fill: #9bccdb1a;
	transition: transform 0.3s ease-in-out;
	transform: scale(1);
	/* Устанавливаем стандартный масштаб */
}

.sidebar__game:hover .icon2 {
	transform: scale(1.2);
	/* Задаем масштабирование */
}



.gx-btn {
	border: 2px solid #272D40;
	border-radius: 12px;
	padding: 10px;
	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: var(--color-btn-accent, #e04545);
	color: #272D40;
}

.gx-btn.accent .icon {
	color: #272D40;
}

.gx-btn.accent:hover {
	background-color: var(--color-btn-accent, #e04545);
	color: #272D40;
}

.gx-btn:hover {
	background-color: #272D40;
}

.gx-btn.filled:hover {
	background-color: #272D40;
}

.gx-btn.filled {
	background-color: #272D40;
}

.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: 0;
	margin: auto;
}

.gx-s {
	position: relative;
	overflow: hidden;
	overflow-y: auto;
}

.gx-container {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.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 → /css/utilities/spacing.css (M9) */

/* .mt-1 → /css/utilities/spacing.css (M9) */

.gx-row {
	display: flex;
	flex-direction: row;
}

.gx-gap {
	gap: 8px;
}

.gx-gap-sm {
	gap: 4px;
}

.gx-gap-lg {
	gap: 16px;
}

/* .text-gray, .text-warn, .text-bold → /css/utilities/text.css (M9) */

.gx-mh-0 {
	min-height: 32px;
}

.gx-mh-1 {
	min-height: 48px;
}

.gx-mh-2 {
	min-height: 64px;
}

.gx-box.dark {
	background-color: #1C202F;
}

.gx-box {
	padding: 8px;
	border-radius: 8px;
	background-color: #272D40;
}

.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: #3B7BE6;
	padding: 8px;
	border-radius: 10px;
	background-color: #272D40;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gx-con>.title {
	color: #fff;
	font-weight: 600;
}

.gx-con.red>.icon {
	background: linear-gradient(225deg, rgba(231, 70, 64, 0.56) 0%, #D45F59 100%);
	color: #fff;
}

.gx-con.red>.title {
	text-transform: uppercase;
	color: #CB5753;
}

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

.gx-con.blue>.title {
	color: #fff;
}

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

.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: 240px;
	border-radius: 20px;
	min-width: 320px;
	width: 100%;
}

.gx-w-box h1 {
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
}

.gx-w-box p {
	margin-top: 8px;
	color: #7785B3;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.gx-w-box img {
	max-width: 100%;
}


.gx-w-box.dark p {
	color: #7785B3;
}

.gx-w-box.dark {
	background-color: #181B27;
}

.gx-w-box.blue p {
	color: #7785b3;
}

.gx-w-box.blue {
	background-image: url(/assets/images/banner_tg.png);
	background-size: cover;
	background-position: 0px;
}

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

/* .d-none → /css/utilities/spacing.css (M9) */

.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;
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background: #00091a80;
	border: 1px solid #2e3750;
}

.gx-remark {
	color: #d9d9d9;
	margin-top: auto;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	/* 160% */
	margin-bottom: 50px;
}

.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: 230px;
	background: radial-gradient(206.43% 154.77% at -7.97% -43.50%, #303C57 0%, rgba(24, 27, 39, 0.00) 100%);
	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: 160px;
	height: 160px;
	top: 0;
	bottom: 48px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 3;
}

.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-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: #7884b3;
}

.text-f18 span {
	font-size: 18px !important;
}









.mui-ajmgqr {
	margin-top: 12px;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 6.4px;
}

.mui-1cca6na.MuiListItem-root {
	overflow: hidden;
	cursor: pointer;
	height: 44px;
	width: 100%;
	background: linear-gradient(90deg, rgb(14 19 44) 0%, rgba(27, 21, 42, 0) 100%);
	border-radius: 12px;
	padding: 8px;
	place-content: center flex-start;
	align-items: center;
	display: flex;
	flex-flow: row;
}

.mui-1cca6na.MuiListItem-root:hover {
	background: #00091aa6;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}

.mui-1cca6na {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	text-decoration: none;
	width: 100%;
	box-sizing: border-box;
	text-align: left;
	padding: 8px 16px;
}

.mui-7a5yeu.MuiListItemIcon-root {
	min-width: unset;
	margin-right: 8px;
}

.mui-7a5yeu {
	min-width: 56px;
	color: rgba(0, 0, 0, 0.54);
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.mui-16mw6ra {
	height: 16px;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 4px;
	background: rgba(104, 242, 68, 0.06);
	place-content: center;
	align-items: center;
	display: flex;
	flex-flow: row;
}

.mui-4axdn9.MuiListItemText-root {
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-weight: 400;
	white-space: nowrap;
	animation: 3s linear 0s infinite normal none running animation-qmhxim;
	display: flex;
	align-items: center;
}

.mui-4axdn9 {
	flex: 1 1 auto;
	min-width: 0px;
	margin-top: 4px;
	margin-bottom: 4px;
}

.mui-1se57mh {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	font-family: 'Bai Jamjuree', sans-serif;
	display: block;
}

.mui-1xncoiv {
	margin-right: 2px;
	place-content: center;
	align-items: center;
	display: flex;
	flex-flow: row;
}

.mui-10rqzx4 {
	margin: 0px;
	font-weight: 700;
	font-family: Rubik, sans-serif;
	line-height: 1.43;
	color: #7cdaf7;
	font-size: 10px;
}

@keyframes slideDown {

	0%,
	100% {
		transform: translateY(-100%);
		opacity: 0;
	}

	5%,
	50% {
		transform: translateY(0);
		opacity: 1;
	}

	55%,
	95% {
		transform: translateY(100%);
		opacity: 0;
	}
}

.mui-4axdn9 {
	position: relative;
	height: 20px;
	overflow: hidden;
}

.mui-4axdn9 .MuiTypography-root {
	position: absolute;
	width: 100%;
	opacity: 0;
	animation: slideDown 6s ease-in-out infinite;
	cursor: pointer;
}

.mui-4axdn9 .MuiTypography-root:nth-child(1) {
	animation-delay: 0s;
}

.mui-4axdn9 .MuiTypography-root:nth-child(2) {
	animation-delay: 3s;
}




.sidebar-roulette {
	height: 54px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px 10px 75px;
	border-radius: 12px;
	background-color: #4b4fae;
	background: linear-gradient(318deg, #6f0584, #151e2f);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	will-change: transform;
	transition: transform .15s ease-out
}

@media(max-width: 576px) {
	.sidebar-roulette {
		padding: 8px 10px 8px 60px;
		border-radius: 10px;
		height: 48px
	}
}

.sidebar-roulette:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	background-image: url(../images/mini-roulette-bg.fd1fb26.png);
	background-size: cover;
	background-position: 100%;
	background-repeat: no-repeat;
	transition: background-color .15s ease-out
}

.sidebar-roulette-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	width: 80px;
	height: 80px;
	margin-top: -40px;
	margin-left: -25px;
	border-radius: 50%;
	box-shadow: 5px 0 30px 0 #6d70d9
}

@media(max-width: 576px) {
	.sidebar-roulette-spinner {
		width: 70px;
		height: 70px;
		margin-top: -35px
	}
}

.sidebar-roulette-spinner__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/mini-roulette.834b63c.png);
	background-size: 100%;
	background-position: 50%;
	background-repeat: no-repeat;
	-webkit-animation: rotate-mini-roulette 4s linear infinite;
	animation: rotate-mini-roulette 4s linear infinite
}

@-webkit-keyframes rotate-mini-roulette {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(1turn)
	}
}

@keyframes rotate-mini-roulette {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(1turn)
	}
}

.sidebar-roulette-spinner__line {
	position: absolute;
	top: 50%;
	left: 100%;
	width: 7px;
	height: 36px;
	margin-top: -18px;
	margin-left: -2px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAABUCAMAAAC1D+dTAAAAPFBMVEUAAAD////////////////////////////////////////////////////////////////////////////YSWgTAAAAE3RSTlMAQO/fvxAgsJBwYM+AMKCfT19QWA5ppAAAAQZJREFUOMvNldtywyAMRG3uxlDc8v//2k7ljGA4k+Qx+3jGrFbCsrc/+cOZfrawDQq2i8rATO8LtV213yz3Qe2GcYTGCzwV6Xk7wUbQCPzqcH6fYfqH3kzw1EyDvKZXZTm/mK7xrcC0mK6hrrdNo5ou7WeqFKjSNrd/UKVGM3UCD2r0543y90uFmewEM2UqdE9Jgy7pCw3voJYytkRwZzjp86B5Ej4jpCkVgomGHOk6HN3mSe8ibXKYYaXWPdywoZiOEkXajkLLeVHxCjMyVMdRnUSWF/TTK1hamlsky29ZF7K0YFn7pEaBLrL0r74fGggKhW0dnINfjzwoBg9q8qYKksDVB/gF8xBVBQStDPAAAAAASUVORK5CYII=);
	background-size: 100%;
	background-position: 50%;
	background-repeat: no-repeat;
	transform: translateX(0);
	transition: transform .15s ease-out
}

.sidebar-roulette__name {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	line-height: 13px
}

@media(max-width: 576px) {
	.sidebar-roulette__name {
		font-size: 11px;
		line-height: 11px
	}
}

.sidebar-roulette__name>span:first-child {
	color: #fff
}

.sidebar-roulette__name>span:last-child {
	margin-top: 5px;
	color: hsla(0, 0%, 100%, .6)
}

.sidebar-roulette__countdown,
.sidebar-roulette__remainder {
	position: absolute;
	top: 14px;
	right: 10px;
	font-size: 10px;
	line-height: 10px;
	font-weight: 600;
	color: hsla(0, 0%, 100%, .5)
}

@media(max-width: 576px) {

	.sidebar-roulette__countdown,
	.sidebar-roulette__remainder {
		top: 10px
	}
}

.sidebar-roulette__countdown {
	font-family: Roboto Mono, monospace
}

@media (hover: hover) and (pointer: fine) {
	.sidebar-roulette:hover .sidebar-roulette-spinner__image {
		-webkit-animation-play-state: paused;
		animation-play-state: paused
	}
}

.sidebar-roulette:active .sidebar-roulette-spinner__image {
	-webkit-animation-play-state: paused;
	animation-play-state: paused
}

@media (hover: hover) and (pointer: fine) {
	.sidebar-roulette:hover .sidebar-roulette-spinner__line {
		transform: translateX(3px)
	}
}

.sidebar-roulette:active .sidebar-roulette-spinner__line {
	transform: translateX(3px)
}

@media (hover: hover) and (pointer: fine) {
	.sidebar-roulette:hover:before {
		background-color: rgba(0, 0, 0, .15)
	}
}

.sidebar-roulette:active:before {
	background-color: rgba(0, 0, 0, .15)
}

.sidebar-roulette:active {
	transform: scale(.98)
}

@media(min-width: 769px)and (max-width:1200px) {
	.sidebar:not(.sidebar_opened) .sidebar-roulette {
		padding: 5px;
		height: 46px
	}

	.sidebar:not(.sidebar_opened) .sidebar-roulette-spinner {
		margin-left: -17px
	}

	.sidebar:not(.sidebar_opened) .sidebar-roulette__countdown,
	.sidebar:not(.sidebar_opened) .sidebar-roulette__name,
	.sidebar:not(.sidebar_opened) .sidebar-roulette__remainder {
		display: none
	}
}

.shoot__bet-item {


	border: 1px solid #2e3750;
}

.shoot__bet-item:hover {


	border: 1px solid #626e91;
}

.theme--dark .shoot__bet-item span {
	z-index: 1;
	font-size: 25px;
	color: #fff;
	position: relative;
}

.shoot__bet-item--1x:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/1x.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--2x:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/2x.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--5x:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/5x.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--10x:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/10x.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--cashhunt:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/cashhunt.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--pochinko:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/pachinko.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--coinflip:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/coinflip.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.shoot__bet-item--crazygame:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/games/shoot/crazytime.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

@media(max-width: 600px) {
	.mobelei3 {
		max-width: 160px;
	}
}



.text__content {
	color: white !important;
	font-weight: unset !important;
}

.text__content p,
b,
u,
strong,
blockquote {
	color: white !important;
}

.text__content p {
	font-weight: unset !important;
}

.text__content b,
strong,
a {
	font-weight: 700 !important;
}

.text__content u {
	text-decoration: underline;
}

.text__content blockquote {
	background: rgba(var(--color-accent-rgb, 184, 58, 58), 0.15);
	border-left: 3px solid var(--color-accent, #B83A3A);
	padding: 0.5em 10px;
	font-style: normal !important;
	font-size: 14px !important;
	font-weight: unset !important;
	margin-bottom: 1em;
}


/* Welcome Blade */
.welcomBlade__line {
	width: 100%;
	height: 1px;
	background: rgba(var(--color-accent-rgb, 204, 34, 51), 0.5);
	margin-top: 36px;
}
.banner__wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 36px;
}
.banner__wrapper .banner {
	flex: 1;
	height: 197px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	padding: 36px 90px 36px 36px;
	border-radius: 30px;
	border: 1px solid rgba(var(--color-accent-rgb, 204, 34, 51), 0.25);
}
.banner__wrapper .banner-deposit {
	background: url('../images/DepositBannerWelcomBlade.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.banner__wrapper .banner-jackpot {
	background: url('../images/JackpotBannerWelcomBlade.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.banner__wrapper .banner h2 {
	font-weight: 700;
	font-size: 32px;
	line-height: 141%;
	color: #fff;
	white-space: nowrap;
}
.banner__wrapper .banner a {
	width: fit-content;
	text-decoration: none;
	height: 56px;
	padding: 0px 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 18px;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
	border-radius: 8px;
}
@media screen and (max-width: 640px) {
	.banner__wrapper {
		gap: 16px;
		margin-top: 16px;
	}
	.banner__wrapper {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.banner__wrapper .banner {
		border-radius: 18px;
		padding: 21px;
		gap: 16px;
	}
	.banner__wrapper .banner h2 {
		font-size: 16px;
	}
	.banner__wrapper .banner a {
		font-size: 12px;
		border-radius: 5px;
		padding: 0px 18px;
		height: 34px;
	}
	.welcomBlade__line {
		display: none;
	}
}

.popular-slots__headline {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.popular-slots__headline h2 {
	font-weight: 700;
	font-size: 32px;
	color: #fff;
	text-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
}
.popular-slots__buttonLi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	padding: 0px 24px;
	height: 48px;
	font-weight: 700;
	font-size: 16px;
	line-height: 100%;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin-left: auto;
}
.popular-slots__button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	padding: 0px 12px;
	height: 35px;
	font-weight: 700;
	font-size: 12px;
	line-height: 133%;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
	display: none;
}
.widget-tabs {
	margin-top: 28px;
}
.item-title .inner {
	cursor: pointer;
}


@media screen and (max-width: 740px) {
	.popular-slots__headline a {
		display: none;
	}
	.popular-slots__headline h2 {
		font-size: 16px;
	}
	.widget-tabs {
		margin-top: 12px;
	}
	.popular-slots__button {
		display: flex;
	}
	.popular-slots__buttonLi {
		display: none !important; 
	}
}

/*  */





/* STATIC */

/* === M8: .liq-effect block (lines 2134-2361) MOVED to /css/components/card.css === */

/* .liq-effect::before / ::after → components/card.css (M8) */






/* BUTTON */

/* .liq-effect__button → components/card.css (M8) */

/* .liq-effect__button::before / ::after / :hover::before / :hover::after / :focus::after / :active / :active::after  → components/card.css (M8) */

