:root {
	--color-orange: #E98F08;
	--color-white: #ffffff;
	--color-red: #EC2A59;
	--color-pink: #F045FE;
	--color-blue6: #060F30;
	--color-blue5: #0A1940;
	--color-blue4: #112046;
	--color-blue3: #182852;
	--color-blue2: #273865;
	--color-blue: #566FAE;
	--color-green: #51DC8B;
}

html {
	min-height: 100%;
	height: 100%;
	max-width: 100vw;
	overflow-x: hidden;
}

body {
	background-image: url('/assets/images/main-bg-01.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: var(--color-blue6);
	color: var(--color-white);
	line-height: 100%;
	min-height: 100vh;
	font-size: 15px;
	font-family: 'Gotham Pro', Verdana, Tahoma, Arial;
	font-weight: 400;
	height: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	padding-top: 60px;
}

/* loader */
#loader,
#action-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(26, 15, 48, 0.8); /* полупрозрачный белый фон */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	display: none; /* по умолчанию скрыт */
}

#loader img,
#action-loader img {
	width: 100px;
	height: 100px;
	animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
	0% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.15); opacity: 0.7; }
	100% { transform: scale(1); opacity: 1; }
}


/* buttons */
.button {
	font-weight: 700;
	border-radius: 10px;
	font-size: 14px;
	line-height: 14px;
	padding: 12px 24px;
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	height: 42px;
}

.button-ico {
	padding: 10px;
}

.button-normal { 
	background-color: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
}

.button-danger {
	background-image: linear-gradient(to left, #B20AEE, #D300D8);
	border: 3px solid #FB42FF;
	box-shadow: 0 4px 0 1px #7d0f83;
}

.button-small {
	font-size: 10px;
	line-height: 10px;
	padding: 8px 16px;
	height: 32px;
	border-width: 2px;
}

/* pulls */
.pull-left {
	float: left;
}

.pull-right {
	float: right;
}



/* Меню слева */
.side-menu {
	position: fixed;
	inset: 0 auto 0 0;
	width: 280px;
	color: #fff;
	z-index: 1100;
	transform: translateX(-100%);
	transition: transform 220ms ease;
	will-change: transform;	
}

.side-menu a {
	text-decoration: none;
}
  
.side-menu__inner {
	height: auto;
	overflow: auto;
	padding: 0px 12px 12px 12px;
	border-radius: 12px;
    border: 3px solid var(--color-blue4);
    box-shadow: 0 4px 0 1px var(--color-blue6);
	margin: 10px 0px 0px 12px;
	background: var(--color-blue6);
}

.side-menu button {
	font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    padding: 6px 8px;
    height: 26px;
    margin: 0;
    border: 2px solid var(--color-pink);
    box-shadow: 0 2px 0 1px #7d0f83;
    border-radius: 7px;
}

.side-menu .buttons {
	margin-top:12px;
}

.side-menu a.button {
	font-size: 11px;
	line-height: 11px;
    font-weight: 500;
    padding: 6px 8px;
    height: 26px;
    margin: 0;
	border-radius: 7px;
}

.side-menu .user {
	margin-top: 18px;
}

.side-menu .user .avatar {
	border: 2px solid var(--color-pink);
    float: left;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 12px;
}

.side-menu .user .avatar.vip,
.side-menu .user .avatar.balance {
	border: 0px solid transparent;
}

.side-menu .user .avatar img {
	width: 32px;
	height: 32px;
	border-radius: 6px;
}

.side-menu .user .info {
	font-size: 13px;
	line-height: 15px;
}


/* RIGHT column: stats */
.side-menu .current-info {
	flex: 1 1 auto;
	min-width: 0;
}

/* stats rows: label left, value right */
.side-menu .current-info .stat-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	padding: 0 0;
	font-size: 11px;
	font-weight: 500;
	color: var(--color-white);

}

.side-menu .current-info .stat-name {
	flex: 1 1 auto;
	min-width: 0;
	opacity: 0.7;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.side-menu .current-info .stat-val {
	flex: 0 0 auto;
	text-align: right;
	font-weight: 700;
	white-space: nowrap;
}


.side-menu .user .info .nickname {
	font-weight: 500;
	margin-top: 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.side-menu .user .info .email {
	opacity: 0.5;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.side-menu .user .info .progress-bar {
	height: 4px;
    border-radius: 2px;
    background: var(--color-blue2);
    margin: 4px 0 4px 0;
}

.side-menu .user .info .progress-bar .complete {
	height: 4px;
	background-image: url(/assets/images/progress-bar-bg.png);
    background-color: var(--color-pink);
    background-size: cover;
    border-radius: 2px;
}
.side-menu .user .info .current-name,
.side-menu .user .info .current-points-balance {
	font-size: 11px;
	text-align: left;
	line-height: 11px;
	font-weight: 500;
}

.side-menu .user .info .current-points-balance {
	text-align: right;
}


.side-menu .user .info .percent {
	text-align: center;
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
}

.side-menu .games-categories {
	display: flex;
	flex-direction: column;
	gap: 6px;
  }
  
/* заголовок */
.side-menu .games-categories .header {
	font-weight: 700;
	margin-bottom: 6px;
	white-space: nowrap;
	color: var(--color-blue);
	margin-top: 12px;
	font-size: 15px;
	line-height: 15px;
	text-transform: uppercase;
}

.side-menu .games-categories .item {
	display: flex;
	align-items: center;
	gap: 10px;
  	height: 30px;

	padding: 0;
  	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	color: var(--color-blue);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	border-top: 1px solid var(--color-blue3);
}

.side-menu .games-categories .ico-container {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.side-menu a {
	text-decoration: inherit;
	color: inherit;
}

.side-menu .games-categories .ico-container img {
	display: block;        /* убирает baseline-gap */
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.side-menu .games-categories .category-name {
	flex: 1 1 auto;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 30px;
}

.side-menu .games-categories .item:hover {
	color: var(--color-pink);
}

  
#layout {
	transition: margin-left 220ms ease;
	will-change: margin-left;
}

body.menu-open .side-menu {
	transform: translateX(0);
}
  
body.menu-open #layout {
	margin-left: 280px;
}
  
/* На мобилке обычно лучше оверлей, а не сужение (чтобы не осталось 20px контента) */
@media (max-width: 1599.98px) {
	body.menu-open #layout {
	  margin-left: 0;
	}

	body.menu-open .side-menu {
		background: var(--color-blue4);
		padding-right: 12px;
		box-shadow: 4px 0px 0px 0px var(--color-blue6);
	
	}
}








/* =========================== MOBILE NAVBAR ====================================*/
#mobile-navbar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1090;
	width: 100%;
	height: 65px; 
	background-color: var(--color-blue5);
	border-bottom: 5px solid var(--color-blue4)
}

#mobile-navbar .logo {
	height: 55px;
	width: auto;
	margin: 5px 0 0 5px;
}

#mobile-navbar .button {
	margin-top: 10px; 
	margin-right: 10px;
}

#mobile-navbar .balance {
	box-shadow: none;
	margin-left: 10px;
	margin-right: 0;
}

#mobile-navbar .balance img {
	margin-right: 10px;
}

#mobile-navbar .have-bonuses img {
	width: 24px;
	height: 24px;
	animation: rotate-scale-shake 0.5s ease-in-out;
}

#mobile-navbar .flag-container {
	width: 18px;
	overflow: hidden;
	border-radius: 4px;	
	display: inline-block;
	vertical-align: middle;
}

#mobile-navbar .flag-container img {
	width: 100%;
	height: auto;
	display: block;
}


#desktop-navbar {
	display: none;
}

@media (min-width: 768px) {
	#mobile-navbar {
		display: none;
	}

	#desktop-navbar {
		display: block;
	}

	body {
		padding-top: 0;
	}
}

/* =========================== DESKTOP NAVBAR ====================================*/
#desktop-navbar {
	position: relative;
	width: 100%;
	height: 62px; 
}

#desktop-navbar .logo {
	display: block;
	width: 180px;
	float: left;
	margin-top: 5px;
	margin-left: -10px;
}

#desktop-navbar .logo img {
	width: 100%;
	height: auto;
}

#desktop-navbar .button {
	margin-top: 10px; 
	margin-left: 12px;
}

#desktop-navbar a.menu {
	margin-left: 0px;
}

#desktop-navbar a.menu img {
	transform: scaleX(-1);
}

#desktop-navbar a.search img {
	margin-top: 3px;
}

#desktop-navbar a.search img,
#desktop-navbar a.menu img {
	width: 20px;
	height: auto;
}

#desktop-navbar .balance {
	margin-left: 10px;
}

#desktop-navbar .balance img {
	margin-right: 10px;
}

#desktop-navbar .balance button {
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
	padding: 6px 8px;
	height: 26px;
	margin: -3px -6px 0 24px;
	border: 2px solid var(--color-pink);
	box-shadow: 0 2px 0 1px #7d0f83;
	border-radius: 7px;
}

#desktop-navbar .have-bonuses img {
	width: 24px;
	height: 24px;
	animation: rotate-scale-shake 0.5s ease-in-out;
}

#desktop-navbar .flag-container {
	width: 18px;
	overflow: hidden;
	border-radius: 4px;	
	display: inline-block;
	vertical-align: middle;
}

#desktop-navbar .flag-container img {
	width: 100%;
	height: auto;
	display: block;
}


@media (min-width: 992px) {
	#desktop-navbar .logo {
		float: none;
		width: 180px;
		margin: 5px auto 0;
	}
}





/* =========================== ANIMATIONS ========================================*/
@keyframes rotate-scale-shake {
	0% { transform: scale(1) rotate(0deg); }
	25%	{ transform: scale(1.1) rotate(5deg); }
	50% { transform: scale(1.1) rotate(-5deg); }
	75%	{ transform: scale(1.05) rotate(3deg); }
	100% { transform: scale(1) rotate(0deg); }
}
/* =========================== BOTTOM MENU ====================================*/
#bottom-menu {
	margin-top: 13px;
}

#bottom-menu .bottom-menu {
	font-size: 15px;
	line-height: 22px;
	color: var(--color-blue);
	border-top: 1px solid var(--color-blue2);
}

#bottom-menu .bottom-menu .col-12 {
	padding-top: 13px;
}

#bottom-menu .bottom-menu a {
	color: var(--color-blue);
	text-decoration: none;
}

#bottom-menu .bottom-menu a:hover, 
#bottom-menu .bottom-menu a:active {
	color: var(--color-pink);
}

/* =========================== COPYRIGHTS ====================================*/
#copyrights {
	margin-top: 13px;
	margin-bottom: 13px;
}

#copyrights .copyrights {
	font-size: 11px;
	line-height: 13px;
	color: var(--color-blue);
	text-align: justify;
	border-top: 1px solid var(--color-blue2);
	padding-bottom: 70px;
}

#copyrights .copyrights .license-logo {
	width: 100px;
	min-width: 100px;
	height: auto;
	padding: 2px 12px 0 0;
}

#copyrights .copyrights .license-logo img {
	width: 100%; 
	height: auto;
	background: transparent;
}

#copyrights .copyrights .col-12 {
	padding-top: 13px;
}

/* =========================== BOTTOM MOBILE MENU ==================================== */
#bottom-mobile-menu {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	height: 70px;
	width: 100%;
	position: fixed;
	bottom: 0;
	background-color: #0a1940;
	border-top: 3px solid #112046;
	z-index: 10;
}

.bottom-mobile-menu {
	font-size: 9px;
	text-transform: uppercase;
	text-align: center;
}

.bottom-mobile-menu img {
	width: 25px;
	height: 25px;
	margin: 15px 0 5px 0;
}

.bottom-mobile-menu img.center {
	width: 37px;
	height: 37px;
	margin: 0 0 0 0;
}

.bottom-mobile-menu a {
	color: var(--color-white);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	width: 20%;
	height: 47px;
	align-items: center;
	justify-content: center;
}

.bottom-mobile-menu a.center {
	position: absolute;
	top: -15px;
	width: 67px;
	height: 67px !important;
}

.bottom-mobile-menu-center {
	position: absolute;
	top: -10px;
	width: 67px;
	height: 67px !important;
}

@media (min-width: 992px) {
	#bottom-mobile-menu {
		display: none;
	}
	
}

/* pop-ups */
.pop-up-overlay { 
	position: fixed;
	inset: 0;
	display: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1099;
	transition: opacity .5s ease, visibility 0s linear .5s; 
	justify-content: center;
	align-items: center; 
}

.pop-up-overlay.fade-in {
	display: flex;
	justify-content: center;
	align-items: center; 
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity .5s ease, visibility 0s;
}

.pop-up-overlay.fade-out {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.pop-up-overlay.fade-in.fade-out {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.pop-up-window {
	width: 100vw;
	height: 100vh;
	background-color: var(--color-blue6);
}

.pop-up-logo img {
	text-align: center;
	margin: 12px auto;
}
.pop-up-logo img {
	display: inline-block;
	width: 170px;
	height: auto;
	margin-right: 10px;
}

.pop-up-window .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 8px;
	z-index: 4;
	outline: none;
}

.pop-up-content .header {
	font-size: 30px;
	line-height: 30px;
	color: var(--color-white);
	padding-left: 0px;
	margin-bottom: 20px;
}

/* language selection */
#popupLanguage .header {
	color: var(--color-white);
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	margin-bottom: 10px;
	margin-top: 36px;
}

#popupLanguage .description {
	color: var(--color-blue);
	font-size: 13px;
	line-height: 16px;
	margin-bottom: 10px;
}

#popupLanguage .list {
	padding: 0px 6px;
}

#popupLanguage a.language {
	display: block;
	float: left;
	text-align: left;
	font-weight: 700;
	border-radius: 10px;
	font-size: 0px;
	line-height: 24px;
	padding: 12px;
	color: var(--color-blue);
	background-color: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	cursor: pointer;
	text-decoration: none;
	margin: 6px;
	width: calc(100% - 12px);
}

#popupLanguage .flag-container {
	width: 24px;
	margin-right: 6px;
	overflow: hidden;
	border-radius: 4px;	
	display: inline-block;
	vertical-align: middle;
}

#popupLanguage .flag-container img {
	width: 100%;
	height: auto;
	display: block;
}

#popupLanguage .flag-code {
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	width: 32px;
	text-align: center;
	border-right: 1px solid var(--color-blue2);
}

#popupLanguage .lang-name {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	padding: 0 0 0 6px;
}

#popupLanguage a.language:hover {
	border-color: var(--color-pink);
	color: var(--color-white);
}

#popupLanguage a.language:active {
	background-image: linear-gradient(to left, #B20AEE, #D300D8);
	border-color: var(--color-pink);
	color: var(--color-white);
}

@media (min-width: 576px) {
	#popupLanguage a.language {
		width: calc(50% - 12px);
	}
}

@media (min-width: 768px) {
	#popupLanguage .pop-up-window {
		max-width: 640px;
		height: auto;
		position: relative;
		border: 3px solid var(--color-blue4);
		border-radius: 15px; 
		padding-bottom: 6px;
	}

	#popupLanguage a.language {
		width: calc(33.3333% - 12px);
	}

	#popupLanguage .header {
		margin-bottom: 10px;
		margin-top: 12px;
	}
}

#popupLogin .pop-up-window,
#popupReminder .pop-up-window,
#popupRegister .pop-up-window {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#popupLogin .container,
#popupReminder .container,
#popupRegister .container {
	width: 100%;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

#popupLogin .header,
#popupReminder .header,
#popupRegister .header {
	text-align: center;
	margin-top: 20px;
	font-weight: 500;
}

#popupReminder .instructions {
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 10px;
	text-align: center;
}

#popupReminder .instructions.step-one {
	display: block;
}

#popupReminder .instructions.step-two {
	display: none;
}

#popupLogin .recaptcha-info,
#popupReminder .recaptcha-info,
#popupRegister .recaptcha-info {
	font-size: 9px;
	font-weight: 500;
	line-height: 13px;
	color: var(--color-blue);
	text-align: left;
	margin: 30px 0px;
	text-align: center;
}

#popupLogin .dont-have-account,
#popupReminder .did-you-remember,
#popupRegister .already-have-account {
	font-size: 15px;
	line-height: 18px;
	font-weight: 500;
	color: var(--color-blue);
	text-align: center;
}

#popupLogin .dont-have-account a,
#popupReminder .did-you-remember a,
#popupRegister .already-have-account a {
	text-transform: capitalize;
}

#popupLogin a,
#popupReminder a,
#popupRegister a {
	text-decoration: none;
	background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#reminder-form button {
	margin-top: 26px;
}


@media (min-width: 768px) and (min-height: 700px) {
	#popupLogin .pop-up-logo img,
	#popupReminder .pop-up-logo img,
	#popupRegister .pop-up-logo img {
		display: block;
		position: absolute;
		top: 10px;
		left: 10px;
		margin: 0;
	}

	#popupLogin .pop-up-window, 
	#popupReminder .pop-up-window,
	#popupRegister .pop-up-window,
	#popupProviders .pop-up-window,
	#popupSearch .pop-up-window {
		max-width: 700px;
		max-height: 650px;
		border-radius: 20px;
		border: 3px solid var(--color-blue4);
		position: relative;
	}

	#popupRegister .pop-up-window {
		max-height: 700px;

	}

	#popupProviders .pop-up-window {
		max-width: 80vw;
		max-height: 80vh;
	}

	#popupSearch .pop-up-window {
		height: auto;
		max-height: none;
	}
	
	#popupLogin .pop-up-window .pop-up-content,
	#popupReminder .pop-up-window .pop-up-content,
	#popupRegister .pop-up-window .pop-up-content {
		width: 100%;
		height: 100%;
		position: relative;
		top: 0;
		left: 0;
	}

	#popupLogin .pop-up-window .container, 
	#popupReminder .pop-up-window .container,
	#popupRegister .pop-up-window .container {
		max-width: 100%;
		height: 100%;
	}

	#popupLogin .pop-up-window .container .full-height,
	#popupReminder .pop-up-window .container .full-height,
	#popupRegister .pop-up-window .container .full-height {
		height: 100%;
	}

	#popupLogin .header,
	#popupReminder .header,
	#popupRegister .header {
		text-align: left;
		margin-top: 100px;
		margin-left: 5px;
		font-size: 25px;
		line-height: 25px;
	}

	#popupReminder .instructions {
		text-align: left;
		margin-left: 5px;
	}


	#popupLogin .sprut-default-form .app-handler,
	#popupReminder .sprut-default-form .app-handler, 
	#popupRegister .sprut-default-form .app-handler {
		margin-bottom: 0;
	}

	#popupLogin .recaptcha-info,
	#popupReminder .recaptcha-info,
	#popupRegister .recaptcha-info {
		text-align: left;
		margin-left: 5px;
		height: 85px;
	}

	#popupLogin .dont-have-account,
	#popupReminder .did-you-remember,
	#popupRegister .already-have-account {
		text-align: left;
		font-size: 13px;
		line-height: 15px;
		margin-left: 5px;
		white-space: nowrap;
		overflow: hidden;
		position: absolute;
		bottom: 15px;
		left: 10px;
	}

	#login-promo,
	#reminder-promo, 
	#register-promo {
		position: relative;
		padding: 12px;
	}

 
	#login-promo .backgound-container,
	#reminder-promo .backgound-container,
	#register-promo .backgound-container {
		width: calc(100% - 24px);
		height: calc(100% - 24px);
		position: absolute;
		top: 12px;
		left: 12px;
		z-index: 0;
		background-position: center center;
		background-size: cover;
		border-radius: 20px;
		overflow: hidden;
		border: 3px solid var(--color-blue4);
	}

	#login-promo .bg-blur,
	#reminder-promo .bg-blur,
	#register-promo .bg-blur {
		width: calc(100% - 24px);
		height: calc(100% - 24px);
		position: absolute;
		top: 12px;
		left: 12px;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(2px);
		z-index: 1;
		border-radius: 20px;
		border: 3px solid var(--color-blue4);
	}
	
	#login-promo .image-text,
	#reminder-promo .image-text,
	#register-promo .image-text {
		width: 340px;
		position: absolute;
		top: 26px;
		right: 28px;
		z-index: 5;
		font-size: 28px;
		line-height: 28px;
		font-weight: 500;
		color: var(--color-white);
		text-transform: uppercase;
		text-align: right;
	}

	#login-promo .image-text small, 
	#reminder-promo .image-text small,
	#register-promo .image-text small {
		font-size: 20px;
	}

	#login-promo .image-text span, 
	#reminder-promo .image-text span, 
	#register-promo .image-text span {
		color: var(--color-pink);
	}
	
	#login-promo .creature,
	#reminder-promo .creature {
		position: absolute;
		width: 110%;
		bottom: 15px;
		right: -6%;
		z-index: 2;
	}

	#register-promo .creature {
		position: absolute;
		width: calc(100% - 24px);
		bottom: 15px;
		right: 12px;
		z-index: 2;
	}

	#login-promo .creature img, 
	#reminder-promo .creature img,
	#register-promo .creature img {
		width: 100%;
		height: auto;
	}

	#register-promo .chips {
		position: absolute;
		width: 120%;
		top: -5%;
		right: -10%;
		z-index: 3;
	}

	#register-promo .chips img {
		width: 100%;
		height: auto;
	}
} 

#popupProviders .pop-up-content, 
#popupSearch .pop-up-content {
	padding: 12px 0px;
	height: 100%;
}

#popupProviders .subheader, 
#popupSearch .subheader {
	display: block;
	text-align: left;
	color: var(--color-white);
	font-weight: 500;
	font-size: 15px;
	line-height: 15px;
	margin: 0;
	padding: 0 0 20px 20px;
	width: 100%;
}

#popupProviders .list {
	padding: 0 6px;
	display: flow-root;
	margin-bottom: 20px; 
}

#popupProviders a.provider {
	display: block;
	float: left;
	text-align: left;
	font-weight: 700;
	border-radius: 10px;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	padding: 5px;
	color: var(--color-blue);
	background-color: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	cursor: pointer;
	text-decoration: none;
	margin: 6px;
	width: calc(50% - 12px);
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

#popupProviders a.provider::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
	background: linear-gradient(to right, transparent, var(--color-blue5));
}


/* иконка провайдера */
#popupProviders a.provider img {
	display: inline-block;
	margin-right: 3px;
	height: 20px;
	width: 20px;
}

/* hover */
#popupProviders a.provider:hover {
	border-color: var(--color-pink);
	color: var(--color-white);
}


/* десктопные размеры */
@media (min-width: 768px) and (min-height: 700px) {
	/* общие рамки/позиционирование для окна провайдеров */
	#popupProviders .pop-up-window {
		max-width: 80vw;
		max-height: 80vh;
		border-radius: 20px;
		border: 3px solid var(--color-blue4);
		position: relative;
	}

	#popupProviders a.provider {
		width: calc(33.3333% - 12px);
	}
}

@media (min-width: 1200px) {
	#popupProviders .pop-up-window {
		max-width: 1100px;
		max-height: 80vh;
	}

	#popupProviders a.provider {
		width: calc(25% - 12px);
	}
}

/* Прокручиваемая область для списков внутри вашего попапа */
#popupProviders .providers-scroll {
	position: relative;
	overflow: auto;
	max-height: 100%;
	padding: 0 0px 0px 0px;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	margin-right: 12px;

	--sb-size: 6px;
	--sb-radius: 10px;
	--sb-track: color-mix(in srgb, var(--color-blue5) 70%, transparent);
	--sb-thumb: var(--color-pink);
	--sb-thumb-hover: var(--color-pink);
	--shadow-size: 16px;
	--shadow-color: rgba(0,0,0,.10);
	--header-bg: color-mix(in srgb, var(--color-blue6) 92%, transparent);
	--header-blur: 6px;
}

/* Липкие подзаголовки разделов */
#popupProviders .providers-scroll .subheader {
	position: sticky;
	top: 0;
	z-index: 2;
	backdrop-filter: blur(var(--header-blur));
	background: linear-gradient(to bottom, var(--header-bg), transparent 100%);
	border-bottom: 1px solid rgba(0,0,0,.06);
	padding: 0 0 20px 20px;
}

/* Мягкие тени сверху/снизу — видны только когда можно скроллить */
#popupProviders .providers-scroll::before,
#popupProviders .providers-scroll::after {
	content: "";
	position: sticky;
	display: block;
	left: 0; right: 0;
	height: var(--shadow-size);
	z-index: 3;
	pointer-events: none;
}

#popupProviders .providers-scroll::before {
	top: 0;
	margin-top: -1px;
	background: linear-gradient(to bottom, var(--shadow-color), transparent);
	opacity: 0; transition: opacity .2s ease;
}

#popupProviders .providers-scroll::after {
	bottom: 0;
	background: linear-gradient(to top, var(--shadow-color), transparent);
	opacity: 0; transition: opacity .2s ease;
}

#popupProviders .providers-scroll.not-at-top::before { 
	opacity: 1; 
}

#popupProviders .providers-scroll.not-at-bottom::after {
	opacity: 1;
}

/* Кастомный скроллбар — Chromium/WebKit */
#popupProviders .providers-scroll::-webkit-scrollbar { width: var(--sb-size); height: var(--sb-size); }
#popupProviders .providers-scroll::-webkit-scrollbar-track { background: var(--sb-track); border-radius: var(--sb-radius); }
#popupProviders .providers-scroll::-webkit-scrollbar-thumb { background: var(--sb-thumb); border-radius: var(--sb-radius); }
#popupProviders .providers-scroll::-webkit-scrollbar-thumb:hover { background: var(--sb-thumb-hover); }

/* Firefox */
#popupProviders .providers-scroll { scrollbar-width: thin; scrollbar-color: var(--sb-thumb) var(--sb-track); }

@media (min-width: 768px) and (min-height: 700px) {
	#popupProviders .pop-up-window {
		display: flex; flex-direction: column;
	}
	
	#popupProviders .providers-scroll {
		max-height: 100%;
	}
}






/* form styles */
/* reset */
input,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="checkbox"],
input[type="radio"],
input[type="range"],
input[type="file"],
textarea,
select,
button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	box-sizing: border-box;
	outline: none;
}
/* Обёртка */
.input-wrapper {
	position: relative;
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	background: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	color: var(--color-pink);
	border-radius: 15px;
	padding: 5px;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.3s;
}

/* Обёртка при фокусе */
.input-wrapper:focus-within {
	border-color: var(--color-pink);
}

/* Иконка */
.input-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	pointer-events: none;
}

.icon-password {
	background-image: url('/assets/images/ico-password.svg'); 
}

.icon-email {
	background-image: url('/assets/images/ico-email.svg');
}

.icon-nickname {
	background-image: url('/assets/images/ico-nickname.svg'); 
}

.icon-promocode {
	background-image: url('/assets/images/ico-promocode.svg'); 
}

.icon-search {
	background-image: url('/assets/images/ico-search.svg');
}

.icon-city {
	background-image: url('/assets/images/ico-city.svg');
}

.icon-currency {
	background-image: url('/assets/images/ico-currency.svg');
}

.icon-address {
	background-image: url('/assets/images/ico-address.svg');
}

.icon-calendar {
	background-image: url('/assets/images/ico-calendar.svg');
}

.icon-wallet {
	background-image: url('/assets/images/ico-wallet.svg');
}


/* Инпут */
.input-wrapper input {
	all: unset;
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	color: inherit;
	background-color: transparent;
	box-sizing: border-box;
	padding: 10px 10px 10px 45px;
	border-radius: 15px; /* Повторяем скругление */
}

/* Плейсхолдеры (кроссбраузерно) */
.input-wrapper input::placeholder,
.input-wrapper input::-moz-placeholder,
.input-wrapper input:-ms-input-placeholder,
.input-wrapper input::-ms-input-placeholder {
	color: var(--color-blue);
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	opacity: 1;
}

.input-wrapper input::-webkit-input-placeholder {
	color: var(--color-blue);
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	opacity: 1;
}

/* Автозаполнение Chrome/Safari */
.input-wrapper input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px var(--color-blue5) inset !important;
	-webkit-text-fill-color: var(--color-pink) !important;
	transition: background-color 5000s ease-in-out 0s;
}

.input-checkbox {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	margin-top: 15px;
	margin-left: 18px;
}

/* Скрываем стандартный checkbox */
.input-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* Кастомная иконка */
.input-checkbox .checkbox-icon {
	width: 16px;
	height: 16px;
	background-image: url('/assets/images/ico-check-unchecked.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	transition: background-image 0.2s ease;
}

/* Состояние: checked */
.input-checkbox input[type="checkbox"]:checked + .checkbox-icon {
	background-image: url('/assets/images/ico-check-checked.svg');
}

/* Текстовая подпись */
.input-checkbox .checkbox-label {
	font-size: 11px;
	line-height: 16px;
	font-weight: 500;
	color: var(--color-blue);
	margin-left: 8px;
}

.period-radio-group {
	--bs-gutter-x: 12px;
	--bs-gutter-y: 12px;
	font-size: 13px;
	font-weight: 500;
}

.period-radio-group input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.period-radio-group label {
	padding: 15px 5px;
	border-radius: 15px;
	border: 3px solid var(--color-blue4);
	background: var(--color-blue5);
	color: var(--color-blue);
	cursor: pointer;
	user-select: none;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	white-space: nowrap;
	flex-grow: 0;
	flex-shrink: 0;
}

.period-radio-group input[type="radio"]:checked + label {
	border-color: var(--color-pink);
}

@supports (-moz-appearance:none) {
	.input-wrapper input:-moz-autofill {
		box-shadow: 0 0 0px 1000px var(--color-blue5) inset !important;
		-moz-text-fill-color: var(--color-pink) !important;
	}
}

.sprut-default-form .form-col {
	padding: 0 12px;
	position: relative;
}

.sprut-default-form a.eye {
	position: absolute;
	display: block;
	padding: 6px;
	top: 28px;
	right: 17px;
	z-index: 1;
}


.sprut-default-form button {
	display: block;
	color: var(--color-white);
	background: linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%), #0A1940;
	box-shadow: 0 4px 0 1px #7d0f83;
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	border: 3px solid var(--color-pink);
	border-radius: 15px;
	padding: 15px;
	width: 100%;
	text-transform: capitalize;
	margin-top: 10px;
}

.sprut-default-form .field-error {
	display: block;
	text-align: right;
	font-size: 10px;
	font-weight: 500;
	line-height: 10px;
	height: 10px;
	color: var(--color-red);
	margin: 7px 0 3px 0;
	padding: 0 10px 0 0;
}


.sprut-default-form .app-handler {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	line-height: 13px;
	margin: 10px 0;
	padding: 0;
	height: 13px;
}

.sprut-default-form .app-handler.error {
	color: var(--color-red);
}

.sprut-default-form .forgotten-password {
	text-align: right;
	padding: 0 12px;
	margin: 10px 0 22px;
}

.sprut-default-form .forgotten-password a {
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
	margin-right: 15px;
}

.grecaptcha-badge {
	opacity: 0;
	pointer-events: none;
}

#gamesCategoriesMenu {
	--btnW: 30px;
	--btnGap: 0px;
	--side-gap: calc(var(--btnW) + var(--btnGap));
	position: relative;
	width: 100%;
	height: 75px;
	overflow: hidden;
	isolation: isolate;
}

#gamesCategoriesMenuPrevBtn,
#gamesCategoriesMenuNextBtn {
	position: absolute;
	top: 0;
	width: var(--btnW);
	height: 70px;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 10;
	background-color: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
	border-radius: 10px;
}

#gamesCategoriesMenuPrevBtn{
	left: var(--btnGap);
}

#gamesCategoriesMenuNextBtn{
	right: var(--btnGap);
}

#gamesCategoriesMenu .slider-viewport {
	position: relative;
	height: 100%;
	margin: 0 var(--side-gap);
	overflow: hidden;
	z-index: 0;
}

#gamesCategoriesMenu .slider-inner {
	position: relative;
	display: flex;
	height: 100%;
	transition: transform 0.3s ease;
	z-index: 0;
}

#gamesCategoriesMenu a.games-categories-item,
#gamesCategoriesMenu a.clone {
	flex: 0 0 calc(100% / 3 - 6px);
	margin-left: 3px;
	margin-right: 3px;
	min-width: 0;
	height: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--color-blue);
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 0;
	background-color: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
	border-radius: 10px;
	box-sizing: border-box;
}

#gamesCategoriesMenu a.games-categories-item.active,
#gamesCategoriesMenu a.clone.active {
	color: var(--color-pink);
	border: 3px solid var(--color-pink);
	box-shadow: 0 4px 0 1px #7d0f83;
}

#gamesCategoriesMenu a.games-categories-item:hover,
#gamesCategoriesMenu a.clone:hover {
	color: var(--color-pink);
}

#gamesCategoriesMenu .ico-container img {
	width:30px; 
	height:30px; 
	display:block; 
}

#gamesCategoriesMenu .category-name{ 
	font-size: 11px;
	line-height: 11px; 
	margin-top:4px; 
	white-space:nowrap; 
	font-weight: 500;
}

#gamesCategoriesMenu .active .category-name {
	color: var(--color-white);
} 

@media (min-width: 576px) {
	#gamesCategoriesMenu a.games-categories-item,
	#gamesCategoriesMenu a.clone{
		flex: 0 0 calc(100% / 4 - 6px);
	}
}

@media (min-width: 768px) {
	#gamesCategoriesMenu a.games-categories-item,
	#gamesCategoriesMenu a.clone{
		flex: 0 0 calc(100% / 6 - 6px);
	}
}

@media (min-width: 992px) {

	#gamesCategoriesMenu {
		--btnW: 50px;
		height: 55px;
	}

	#gamesCategoriesMenuPrevBtn,
	#gamesCategoriesMenuNextBtn {
		height: 50px;
	}

	#gamesCategoriesMenu .slider-viewport {
		margin: 0 var(--side-gap);
	}

	#gamesCategoriesMenu a.games-categories-item,
	#gamesCategoriesMenu a.clone {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		flex: 0 0 calc(100% / 3 - 6px);
		height: 50px;
		background-color: transparent;
		border: 3px solid transparent;
		box-shadow: none;
	}

	#gamesCategoriesMenu .ico-container {
		margin-right: 12px;
		margin-top: 0;
	}

	#gamesCategoriesMenu .category-name {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	#gamesCategoriesMenu a.games-categories-item,
	#gamesCategoriesMenu a.clone {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		flex: 0 0 calc(100% / 4 - 6px);
	}
}

@media (min-width: 1200px) {
	#gamesCategoriesMenu a.games-categories-item,
	#gamesCategoriesMenu a.clone {
		flex: 0 0 calc(100% / 4 - 6px);
	}
}

@media (min-width: 1200px) {
	#gamesCategoriesMenu a.games-categories-item,
	#gamesCategoriesMenu a.clone {
	flex: 0 0 calc(100% / 5 - 6px);
	}
}

.developers-select, 
.search-game {
	color: var(--color-blue);
	padding-left: 12px;
	padding-right: 12px;
	height: 50px;
	white-space: nowrap;
	overflow: hidden;
}

.search-game .ico-search {
	width: 22px;
	height: 22px;
}

.developers-select .ico-filter {
	margin-right: 0px;
	width: 20px; 
	height: auto;
}

@media (min-width: 1200px) {
	.search-game {
		justify-content: left;
		position: relative;
	}

	.developers-select {
		justify-content: left;
		position: relative;
	}

	.developers-select .ico-filter {
		margin-right: 6px;
	}

	.search-game .ico-search {
		margin-top: 3px;
		margin-right: 7px;
	}
}

.games-list .row,
.games-list-cat .row {
	margin-top: 25px;
	margin-bottom: 25px;
}

.games-list-search .row {
	margin-top: 12px;
	margin-bottom: 0;
}

.games-list .row .col-12,
.games-list-cat .row .col-12,
.games-list-search .row .col-12 {
	padding-left: 9px;
	padding-right: 9px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}

.games-list .item,
.games-list a.show-all,
.games-list-cat .item,
.games-list-search .item {
	aspect-ratio: 3 / 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 6px 12px;
	text-align: center;
	text-decoration: none;
	z-index: 2;
}

.games-list .item .ico-container {
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

.games-list .item .ico-container svg.svg-inlined,
.games-list .item .ico-container svg.svg-inline,
.games-list .item .ico-container img.svg-inline {
	width: 100% !important;
	height: auto !important;
}

.games-list .category--grid {
	display: none;
}

.games-list .category {
	border-radius: 20px;
	background-color: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	box-shadow: 0 5px 0 1px var(--color-blue6);
	color: var(--color-pink);
	text-decoration: none;
}

.games-list .category .category-name {
	color: var(--color-white);
	font-size: 18px;
	line-height: 18px;
	font-weight: 500;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
}

.games-list .category .show-more {
	color: var(--color-blue);
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	margin-top: 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.games-list .category:hover {
	border: 3px solid var(--color-pink);
	box-shadow: 0 4px 0 1px #7d0f83;
}

.games-list a.category:hover .show-more {
	color: var(--color-pink);
}

.games-list .game,
.games-list-cat .game, 
.games-list-search .game { 
	border-radius: 20px; 
	position: relative; 
}

.games-list .game .thumb-img,
.games-list-search .game .thumb-img, 
.games-list-cat .game .thumb-img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 2;
}

.games-list .game .overlay,
.games-list-search .game .overlay, 
.games-list-cat .game .overlay {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 4;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	display: none;
}

/* blocked games */
.games-list .game .block-overlay,
.games-list-search .game .block-overlay, 
.games-list-cat .game .block-overlay {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 4;
	background-color: rgba(0, 0, 0);
	position: absolute;
	opacity: 0.8;
}

.games-list .game .block-overlay .bonus-block,
.games-list .game .block-overlay .geo-block, 
.games-list-search .game .block-overlay .bonus-block,
.games-list-search .game .block-overlay .geo-block,
.games-list-cat .game .block-overlay .bonus-block,
.games-list-cat .game .block-overlay .geo-block {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 6px 6px 18px 6px;
	font-size: 11px;
	line-height: 14px;
}

.games-list .game:hover .overlay,
.games-list-cat .game:hover .overlay, 
.games-list-search .game:hover .overlay {
	display: block;
}

.games-list .game .overlay .fav,
.games-list-cat .game .overlay .fav,
.games-list-search .game .overlay .fav {
	display: block;
}

.games-list .game .overlay a.add2fav,
.games-list-cat .game .overlay a.add2fav, 
.games-list-search .game .overlay a.add2fav {
	display: block;
	float: right;
	padding: 8px;
}

.games-list .game .overlay a.add2fav img,
.games-list-cat .game .overlay a.add2fav img,
.games-list-cat .search .overlay a.add2fav img {
	width: 15px;
	height: 15px;
}

.games-list .game .overlay a.play,
.games-list-cat .game .overlay a.play,
.games-list-search .game .overlay a.play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: calc(100% - 80px);
	text-decoration: none;
	color: var(--color-white);
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	cursor: pointer;
}

.games-list .game .overlay a.play .play-container,
.games-list-cat .game .overlay a.play .play-container 
.games-list-search .game .overlay a.play .play-container {
	display: inline-block;
	width: 32px;
	height: 32px;
}

.games-list .game .overlay a.play .play-container img,
.games-list-cat .game .overlay a.play .play-container img,
.games-list-search .game .overlay a.play .play-container img {
	width: 100%;
	height: auto;
}

.games-list .game .overlay a.demo,
.games-list-cat .game .overlay a.demo,
.games-list-search .game .overlay a.demo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: 12px;
	line-height: 25px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-pink)
}

.games-list .game .overlay a.demo:hover,
.games-list .game .overlay a.demo:active,
.games-list-cat .game .overlay a.demo:hover,
.games-list-cat .game .overlay a.demo:active,
.games-list-search .game .overlay a.demo:hover,
.games-list-search .game .overlay a.demo:active {
	color: var(--color-pink)
}

.games-list .game .thumb-border,
.games-list-cat .game .thumb-border,
.games-list-search .game .thumb-border {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	border: 3px solid rgba(219, 204, 219, 0.20);
	box-sizing: border-box;
	pointer-events: none;
	z-index: 3;
}


.games-list .game .shadow,
.games-list-cat .game .shadow, 
.games-list-search .game .shadow {
	position: absolute;
	top: 5px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.6;
	z-index: 1;
}

.games-list .category-row { display: block; width: 100%; }
.games-list .category-row-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 12px 0;
}

.games-list .category-row a.category-mobile {
	flex: 1 1 auto;
	margin: 0;
	text-decoration: none;
	color: var(--color-white);
}

.games-list .category-row .category-mobile .ico-container {
	float: left;
	width: 32px;
	height: 32px;
	margin: 0;
	color: var(--color-pink);
}

.games-list .category-row .category-mobile .ico-container img {
	width: 30px; height: 30px;
}

.games-list .category-row .category-mobile .category-name {
	float: left;
	color: var(--color-white);
	line-height: 30px;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
}

.games-list .category-row .category-mobile .arrow {
	float: left;
	display: block;
	width: auto;
	height: 12px;
	margin: 9px 0 0 0;
}

.games-list .category-controls {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: 12px;
}

.games-list .slider-btn {
	display: grid; place-items: center;
	width: 32px; height: 32px;
	padding: 8px; line-height: 1;
	cursor: pointer;
	border: 2px solid var(--color-blue3);
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.25);
	background: transparent;
}

.games-list .slider-btn:hover,
.games-list .slider-btn:active {
	border: 2px solid var(--color-pink);
	box-shadow: 0 2px 0 1px #7d0f83;
}

.games-list .slider-btn:disabled {
	opacity: .4;
	cursor: default;
}

.games-list .col-12 > .cards {
	width: 100%; 
	display: flex; 
	flex-wrap: nowrap; 
	overflow: hidden; 
}

.games-list-cat .col-12 > .cards {
	width: 100%; 
	display: flex;
	flex-wrap: wrap; 
	overflow: visible; 
}

.games-list-search .col-12 > .cards {
	width: 100%; 
	display: flex;
	flex-wrap: wrap; 
	overflow: visible; 
}

.games-list .cards .item,
.games-list .cards .show-all,
.games-list-cat .cards .item, 
.games-list-search .cards .item { 
	flex: 0 0 calc(100% / 3 - 12px); 
}

.games-list .cards .show-all {
	text-decoration: none;
	color: var(--color-pink);
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0px;
	padding: 10px 12px;
	text-align: center;
}

.games-list .item.game.show-all .caption {
	flex: 1 1 50%;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
	font-size: 12px;
	line-height: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.games-list .item.game.show-all .arrow {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	margin-left: 0px;
	margin-right: -7px;
}

@media (min-width: 576px) {
	.games-list .cards .item,
	.games-list .cards .show-all,
	.games-list-cat .cards .item, 
	.games-list-search .cards .item {
		flex: 0 0 calc(100% / 4 - 12px); 
	}

	.games-list .game .overlay a.add2fav,
	.games-list-cat .game .overlay a.add2fav, 
	.games-list-search .game .overlay a.add2fav {
		padding: 10px;
	}

	.games-list .game .overlay a.add2fav img,
	.games-list-cat .game .overlay a.add2fav img, 
	.games-list-search .game .overlay a.add2fav img {
		width: 20px;
		height: 20px;
	}

	.games-list .game .overlay a.play,
	.games-list-cat .game .overlay a.play, 
	.games-list-search .game .overlay a.play {
		font-size: 16px;
		font-weight: 500;
	}

	.games-list .game .overlay a.play .play-container,
	.games-list-cat .game .overlay a.play .play-container, 
	.games-list-search .game .overlay a.play .play-container {
		width: 45px;
		height: auto;
	}
}


@media (min-width: 768px) {
	.games-list .category--grid {
		display: flex; 
	}

	.games-list .category-row {
		display: none;
	}

	.games-list .col-12 > .cards { 
		flex-wrap: wrap; overflow: visible; 
	}

	.games-list .cards .item,
	.games-list-cat .cards .item {
		flex: 0 0 calc(100% / 5 - 12px);
	}

	.games-list .item.game.show-all {
		display: none;
	}

	.games-list .game .overlay a.play,
	.games-list-cat .game .overlay a.play {
		font-size: 18px;
		font-weight: 500;
	}

	.games-list .game .overlay a.play .play-container,
	.games-list-cat .game .overlay a.play .play-container {
		width: 55px;
		height: auto;
	}
}


@media (min-width: 992px) {
	.games-list .cards .item, 
	.games-list-cat .cards .item { 
		flex: 0 0 calc(100% / 7 - 12px); 
	}

	.games-list .game .overlay a.play, 
	.games-list-cat .game .overlay a.play {
		font-size: 16px;
		font-weight: 500;
	}

	.games-list .game .overlay a.play .play-container,
	.games-list-cat .game .overlay a.play .play-container {
		width: 45px;
		height: auto;
	}
}

@media (min-width: 1200px) { 
	.games-list .cards .item,
	.games-list-cat .cards .item { 
		flex: 0 0 calc(100% / 8 - 12px); 
	}

	.games-list .game .overlay a.play,
	.games-list-cat .game .overlay a.play {
		font-size: 18px;
		font-weight: 500;
	}

	.games-list .game .overlay a.play .play-container, 
	.games-list-cat .game .overlay a.play .play-container {
		width: 55px;
		height: auto;
	}
}


@media (min-width: 768px) and (max-width: 991.98px) {
	.games-list .col-12 .cards .item:nth-child(n+16) {
		display: none;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.games-list .col-12 .cards .item:nth-child(n+15) {
		display: none;
	}
}

.games-list .item,
.games-list-cat .item,
.games-list-search .item,
.games-list .item *,
.games-list-cat .item *, 
.games-list-search .item * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.games-list .item img,
.games-list .item .thumb-img,
.games-list .item .shadow,
.games-list-cat .item img,
.games-list-cat .item .thumb-img,
.games-list-cat .item .shadow,
.games-list-search .item img,
.games-list-search .item .thumb-img,
.games-list-search .item .shadow {
	-webkit-user-drag: none; 
	user-drag: none;
	-webkit-touch-callout: none;
	pointer-events: none;
}


/* Game Play Page */
#game-play {
	margin-bottom: 12px;
	margin-top: 12px;
}

#game-play .game-wrapper {
	background: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	padding: 12px;
	border-radius: 20px;
	width: 100%;
	box-shadow: 0 4px 0 1px var(--color-blue6);
}

#game-play .cats-wrapper {
	background: var(--color-blue5);
	border: 3px solid var(--color-blue4);
	padding: 0 12px;
	border-radius: 20px;
	width: 100%;
	height: 100%;
	box-shadow: 0 4px 0 1px var(--color-blue6);
	overflow: hidden;

}

#game-play .game-content {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

@media (max-width: 992px) {

	#game-play {
		margin: 0;
		height: calc(100vh - 130px);
		height: calc(var(--vh, 1vh) * 100 - 130px);
		height: calc(100dvh - 130px);
		padding: 0;
	}

	#game-play .game-content {
		border-radius: 0;
		aspect-ratio: auto;
		height: 100%;
	}

	.mob-height-100 {
		height: 100%;
		padding: 0 !important;
		margin: 0 !important;
		border: 0 !important;
		box-shadow: none !important;
	}

}


#game-play .game-wrapper .game-top {
	margin-bottom: 12px;	
}


#game-play .game-wrapper .game-top .img-thumb {
	display: block;
	float: left; 
	margin-right: 12px;
	height: 36px;
	width: auto;
	border-radius: 5px;
	overflow: hidden;
}

#game-play .game-wrapper .game-top .game-name {
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	color: var(--color-white);
	margin: 2px 0 0 0;
}

#game-play .game-wrapper .game-top .game-developer {
	font-size: 13px;
	font-weight: 500;
	line-height: 13px;
	color: var(--color-blue);
	margin: 1px 0 0 0;
}

#game-play .game-wrapper .game-top .logo {
	height: 36px; 
	width: auto;
}

#game-play .game-wrapper .game-top a.fullscreen,
#game-play .game-wrapper .game-top a.add2fav,
#game-play .game-wrapper .game-top a.close {
	color: var(--color-blue);
	text-decoration: none;
	opacity: 0.3;
	line-height: 30px;
	padding: 3px 0 3px 3px;
	margin-left: 3px;
}

#game-play .game-wrapper .game-top a img, 
#game-play .game-wrapper .game-top a svg {
	width: 24px;
	height: 24px;
}

#game-play .cats-wrapper .category {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-white);
	padding: 16px 0;
	cursor: pointer;
}

#game-play .cats-wrapper .category .ico-container {
	display: block;
	float: left;
	color: var(--color-pink);
	width: 36px;
	height: 36px;
	margin-right: 12px;
}

#game-play .cats-wrapper .category .ico-container svg {
	width: 36px;
	height: auto;
}

#game-play .cats-wrapper .category .category-name {
	float: left;
	font-size: 15px;
	line-height: 36px;
	font-weight: 500;
	color: var(--color-white);
}

#game-play .cats-wrapper .category .arrow-container {
	display: block;
	line-height: 36px;
	float: right;
	transition: transform 0.3s ease;

}

#game-play .cats-wrapper .category.active .arrow-container {
	transform: rotate(90deg);
}

#game-play .cats-wrapper .cat-border {
	background-color: var(--color-blue4);
	border-radius: 2px;
	width: 100%;
	height: 3px;
}

#game-play .cats-wrapper .games-grid {
	display: none;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(6, 1fr);
	transition: max-height 0.4s ease, opacity 0.3s ease;
}

#game-play .cats-wrapper .games-grid.active {
	max-height: 2000px;
	opacity: 1;
}

#game-play .cats-wrapper .games-grid > .game:nth-child(5n+1),
#game-play .cats-wrapper .games-grid > .game:nth-child(5n+2),
#game-play .cats-wrapper .games-grid > .game:nth-child(5n+3) {
	grid-column: span 2;
}

#game-play .cats-wrapper .games-grid > .game:nth-child(5n+4),
#game-play .cats-wrapper .games-grid > .game:nth-child(5n+5) {
	grid-column: span 3;
}

/* стили карточки */
#game-play .cats-wrapper .games-grid > .game {
	border-radius: 10px;
	position: relative; 

}

#game-play .cats-wrapper .games-grid > .game .thumb-img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	z-index: 2;
	position: relative;
}



#game-play .cats-wrapper .games-grid > .game .thumb-border {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: 3px solid rgba(219, 204, 219, 0.20);
	box-sizing: border-box;
	pointer-events: none;
	z-index: 3;
}


#game-play .cats-wrapper .games-grid > .game .shadow {
	position: absolute;
	top: 5px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.6;
	z-index: 1;
}

/* text content block */
.content-block {
	background: var(--color-blue6);
	border-radius: 20px;
	padding: 12px 0px 12px 12px;
	border: 3px solid var(--color-blue4);
	margin-top: 20px;
	margin-bottom: 30px;
}

.content-block .custom-scroll {
	max-height: 300px;
	padding-right: 12px;
}

/* text content typo */
.text-page-content {
	font-family: "Gotham Pro";
	font-weight: 400px;
	font-size: 11px;
	line-height: 14px;
	text-align: left;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.text-page-content h1 {
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	margin: 0 0 10px 0;
	background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-page-content h2 {
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	margin: 10px 0;
	background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-page-content h3 {
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	margin: 10px 0;
	background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-page-content h4 {
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	margin: 10px 0;
	background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-page-content h5 {
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
	margin: 10px 0;
	background: var(--Main, linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-page-content p {
	margin-bottom: 10px;
}

.text-page-content p:last-child {
	margin-bottom: 0;
}

.text-page-content ul {
	list-style: none;
	margin: 0 0 10px 0;
	padding: 0;
}

.text-page-content ul li {
	--gap-left: 6px;
	--gap-right: 6px;
	--dot: 4px;
	position: relative;
	padding-inline-start: calc(var(--gap-left) + var(--dot) + var(--gap-right));
	margin-bottom: 6px;
}

.text-page-content p,
.text-page-content li { 
	text-wrap: pretty; 
}

.text-page-content ul li::before {
	content: "";
	position: absolute;
	inset-inline-start: var(--gap-left);
	top: 0.55em;
	width: var(--dot);
	height: var(--dot);
	border-radius: 50%;
	background: currentColor;
}

.text-page-content a {
	color: var(--color-blue, #7fb1ff);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1.5px;
}

.text-page-content a:hover { 
	color: var(--color-pink);
	text-decoration-thickness: 2px; 
}

.text-page-content ::selection {
	background: var(--color-blue4);
	color: #fff;
}

.text-page-content blockquote {
	margin: 10px 0;
	padding: 8px 12px;
	border-inline-start: 3px solid var(--color-blue4);
	background: rgba(255,255,255,.03);
	border-radius: 10px;
}

.text-page-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: .95em;
}

.text-page-content th,
.text-page-content td {
	padding: 6px 10px;
	border-bottom: 1px solid var(--color-blue4);
	text-align: left;
}

.text-page-content thead th {
	font-weight: 600;
	position: sticky; top: 0;
	background: var(--color-blue6);
}

.text-page-content code,
.text-page-content kbd {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
	font-size: .9em;
	background: rgba(255,255,255,.05);
	padding: .1em .4em;
	border-radius: 4px;
}

.text-page-content hr {
	height: 1px; border: 0;
	background: linear-gradient(90deg, transparent, var(--color-blue4), transparent);
	margin: 12px 0;
}

.text-page-content ul ul li {
	--gap-left: 18px; 
}


@media (min-width: 992px) {
	.content-block {
		padding: 24px 0px 24px 24px;
	}

	.content-block .custom-scroll {
		padding-right: 24px;
	}

	.text-page-content {
		font-size: 15px;
		line-height: 18px;
	}

	.text-page-content h1 {
		font-size: 24px;
		line-height: 24px;
		margin: 0 0 20px 0;
	}
	
	.text-page-content h2 {
		font-size: 20px;
		line-height: 20px;
		margin: 20px 0;
	}

	.text-page-content h3 {
		font-size: 18px;
		line-height: 18px;
		margin: 20px 0;
	}

	.text-page-content h4 {
		font-size: 16px;
		line-height: 16px;
		margin: 20px 0;
	}

	.text-page-content h5 {
		font-size: 15px;
		line-height: 15px;
		margin: 20px 0;
	}

	.text-page-content p {
		margin-bottom: 16px;
	}

	.text-page-content ul li {
		--gap-left: 12px;
		--gap-right: 12px;
		--dot: 6px;
		margin-bottom: 6px;
	}

	.text-page-content ul li::before {
		top: 6px;
		width: var(--dot);
		height: var(--dot);
	}
}

#account-page .heading {
	padding: 0; 
	margin: 16px 0 0 0;
}

#account-page .heading h1 {
	display: none;
}

#account-page .nav.nav-tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	border-bottom: none;
	--bs-nav-tabs-border-width: 0;
}

#account-page.cashdesk .nav.nav-tabs {
	grid-template-columns: repeat(3, 1fr);
}

#account-page .nav.nav-tabs > li > .nav-link {
	text-align: center;
	font-size: 9px;
	line-height: 11px;
	font-weight: 700;
	border-radius: 10px;
	display: block;
	width: 100%;
	color: var(--color-white);
	text-decoration: none;
	background-color: var(--color-blue5);
	border: 2px solid var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
	padding: 12px 6px 6px 6px;
}

#account-page .nav.nav-tabs .nav-link:hover,
#account-page .nav.nav-tabs .nav-link:focus {
	color: var(--color-white);
	background-color: var(--color-blue5);
	border-color: var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
}

#account-page .nav.nav-tabs .nav-link.active {
	background-image: linear-gradient(to left, #B20AEE, #D300D8);
	border: 2px solid #FB42FF;
	box-shadow: 0 4px 0 1px #7d0f83;
	color: #fff;
}
	
#account-page .nav.nav-tabs .nav-link .ico-container {
	margin-bottom: 6px;
}

#account-page .nav.nav-tabs .nav-link .ico-container svg,
#account-page .nav.nav-tabs .nav-link .ico-container img {
	height: 24px;
	width: 24px;
	color: var(--color-pink);
}

#account-page .nav.nav-tabs .nav-link.active .ico-container svg,
#account-page .nav.nav-tabs .nav-link.active .ico-container img {
	color: #fff;
}

#account-page .box {
	background-color: var(--color-blue5);
	border: 2px solid var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
	border-radius: 10px;
	color: var(--color-pink);
	padding: 12px;
	margin-top: 12px;
	height: calc(100% - 12px);
}

#account-page .box .box-header h2 {
	color: var(--color-white);
	font-size: 13px;
	font-weight: 500;
	line-height: 22px;
}

#account-page .box .box-header button {
	float: right;
	font-size: 13px;
	line-height: 22px;
	color: var(--color-pink);
	font-weight: 700;
}

#account-page .box .box-header button .ico-container {
	float: right;
	margin-left: 6px;
}

#account-page .box .devider {
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background-color: var(--color-blue4);
}


#account-page .box .user {
	margin-top: 12px;
}

#account-page .box .avatar {
	background: url('/assets/images/avatar-border.png') center center / cover no-repeat;
	float: left;
	width: 74px;
	height: 74px;
	padding: 2px;
	border-radius: 20px;
	overflow: hidden;
	margin-right: 12px;
}

#account-page .box .avatar img {
	width: 68x;
	height: 68px;
	border-radius: 20px;
}

#account-page .box .nickname {
	color: var(--color-white);
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
}

#account-page .box .email {
	color: var(--color-blue);
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
}

#account-page .box .vip {
	margin-top: 9px;
}
#account-page .box .vip .chip {
	float: left;
	width: 25px;
	height: 25px;
	margin-right: 12px;
}

#account-page .box .vip .vip-info {
	float: left;
	width: 140px;
}

#account-page .box .vip .vip-info .vip-group {
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	color: var(--color-white);
	margin: 0 0 6px 0;
	float: left;
}
	
#account-page .box .vip .vip-info .progress {
	height: 4px;
	border-radius: 2px;
	background: var(--color-blue2);
	max-width: 140px;
	margin: 0 0 6px 0;
}

#account-page .box .vip .vip-info .progress .progress-complete {
	background-image: url('/assets/images/progress-bar-bg.png');
	background-color: var(--color-pink);
	background-size: cover;
	border-radius: 2px;
}

#account-page .box .vip .vip-info .percent {
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
	color: var(--color-white);
	text-align: right;
	float: right;
}

#account-page .box .user .name, 
#account-page .box .user .birth {
	font-size: 13px;
	line-height: 40px;
	color: var(--color-white);
	font-weight: 500;
	margin-top: 12px;
}

#account-page .box .user .birth {
	font-size: 13px;
	margin-top: 0;
}

#account-page .box .user .name .ico-profile,
#account-page .box .user .birth .ico-calendar {
	width: 22px;
	height: 36px;
	line-height: 36px;
	display: block;
	float: left;
	margin: 0 6px 4px 0;
}

#account-page .box .user .birth .ico-calendar {
	float: left;
	margin: 0 6px 4px 0;
}

#account-page .box .mobile-confirm-info,
#account-page .box .restrictions-info,
#account-page .box .verification-info {
	color: var(--color-blue);
	font-size: 11px;
	line-height: 13px;
	margin-top: 12px;
}
#account-page .box .restrictions-info {
	text-align: justify;
}

#account-page .box .restrictions-info ul {
	margin-top: 6px;
}

#account-page .box .mobile-confirm-info a, 
#account-page .box .verification-info a {
	color: var(--color-pink);
	text-decoration: underline;
}

#account-page .box .verification-info {
	text-align: justify;
	font-weight: 500;
	height: auto;
	text-align: center;
	min-height: 39px;

}

#account-page .box .verification-ok-info {
	color: #3FD77C;
	font-size: 11px;
	line-height: 13px;
	margin-top: 12px;
	text-align: center;
	font-weight: 500;
}

#account-page .box .verification-error-info {
	color: var(--color-red);
	font-size: 11px;
	line-height: 13px;
	margin-top: 12px;
	text-align: center;
	font-weight: 500;
}

#account-page .box .verification-img {
	height: 200px;
	width: auto;
}

#submitKycaid button,
#sumsub-websdk-container button,
#account-page .box .sms-send .button,
#sendemail {
	width: 100%;
	margin: 12px 0;
	text-align: center;
}

#emailError,
#emailSent {
	display: none;
}

#account-page .box button.sms-ok {
	margin: 0 !important;
	position: absolute;
	top: -3px;
	right: -3px;
	width: 80px !important;
	height: 53px;
	box-shadow: none !important;
	box-sizing: border-box;
}

#account-page .iti {
	display: flex;
	align-items: center;
}
#account-page .iti__country-container {
	left: 0px;
	right: auto !important;
}
#account-page .iti__flag-container {
	position: static !important;
	margin-right: 8px;
}

#account-page .iti input {
	flex: 1;
	padding-left: 45px !important;
}

/* VIP */
#account-page .vip-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	width: 100%;
	margin: 12px 0;

	/* horizontal overflow */
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;

	/* hide scrollbar */
	scrollbar-width: none;      /* Firefox */
	-ms-overflow-style: none;   /* IE/Edge legacy */

	/* block selection / drag */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	-webkit-user-drag: none;
	user-drag: none;

	-webkit-touch-callout: none;

	/* IMPORTANT: allow horizontal swipe on the row */
	touch-action: pan-x;

	/* fade size */
	--vip-fade: 22px;
}

/* Chrome / Safari scrollbar */
#account-page .vip-row::-webkit-scrollbar {
	display: none;
}

/* draggable cursor */
#account-page .vip-row.is-draggable {
	cursor: grab;
}
#account-page .vip-row.is-dragging {
	cursor: grabbing;
}

/* fade both sides (default) */
#account-page .vip-row {
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--vip-fade),
		#000 calc(100% - var(--vip-fade)),
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--vip-fade),
		#000 calc(100% - var(--vip-fade)),
		transparent 100%
	);
}

/* at start → fade right only */
#account-page .vip-row.at-start {
	-webkit-mask-image: linear-gradient(
		to right,
		#000 0,
		#000 calc(100% - var(--vip-fade)),
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		#000 0,
		#000 calc(100% - var(--vip-fade)),
		transparent 100%
	);
}

/* at end → fade left only */
#account-page .vip-row.at-end {
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--vip-fade),
		#000 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--vip-fade),
		#000 100%
	);
}

/* no overflow → no fade */
#account-page .vip-row.no-fade {
	-webkit-mask-image: none;
	mask-image: none;
}

/* VIP item
   Default (mobile/narrow): fixed width to force overflow + swipe
*/
#account-page .vip-item {
	flex: 0 0 160px;
	min-width: 160px;

	border-radius: 12px;
	border: 2px solid transparent;
	padding: 12px 8px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	overflow: visible;
}

/* Wide screens: show 7 in a row when space allows, keep 160px minimum */
@media (min-width: 992px) {
	#account-page .vip-item {
		flex: 0 0 calc((100% - 12px*6)/7);
		min-width: 160px;
	}
}

/* active */
#account-page .vip-item.active {
	border: 2px solid #5BB8FF;
	border-radius: 12px;
	box-shadow:
		inset 0 0 0 1px rgba(91,184,255,0.9),
		inset 0 0 9px rgba(91,184,255,0.6),
		inset 0 0 18px rgba(91,184,255,0.35);
}

/* not achieved */
#account-page .vip-item.not-achieved {
	opacity: 0.3;
}

/* media */
#account-page .vip-media {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#account-page .vip-media img {
	width: min(90%, 200px);
	height: auto;
	display: block;

	-webkit-user-drag: none;
	user-drag: none;
	pointer-events: none;
}

/* text */
#account-page .vip-text {
	margin-top: 8px;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
	font-weight: 700;
	color: var(--color-white);

	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* badge */
.vbadge {
	display: inline-block;
	padding: 4px 8px;
	font-size: 10px;
	line-height: 10px;
	border-radius: 3px;
	margin-right: 5px;
	color: var(--color-blue6);
}

/* Silver */
.vbadge.vip5 {
	background: linear-gradient(
		135deg,
		#f5f5f5 0%,
		#dcdcdc 25%,
		#f0f0f0 50%,
		#cfcfcf 75%,
		#f7f7f7 100%
	);
}

/* Gold */
.vbadge.vip6 {
	background: linear-gradient(
		135deg,
		#fff3b0 0%,
		#f5c542 25%,
		#ffe08a 50%,
		#d4a017 75%,
		#fff3b0 100%
	);
}

/* Platinum */
.vbadge.vip7 {
	background: linear-gradient(
		120deg,
		#ffffff 0%,
		#e6edf5 18%,
		#b9c3cf 35%,
		#f5f8fc 50%,
		#b9c3cf 65%,
		#e6edf5 82%,
		#ffffff 100%
	);
}

/* ===== Current VIP block (media left, stats right, name under image) ===== */

#account-page .current-vip {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

/* LEFT column: image + name under it */
#account-page .current-media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

/* VIP image */
#account-page .current-media img {
	width: 120px;     /* tweak if needed */
	max-width: 35vw;  /* protects layout on mobile */
	height: auto;
	-webkit-user-drag: none;
	user-drag: none;
	pointer-events: none;
}

/* name under image */
#account-page .current-name {
	width: 100%;
	min-width: 0;
	display: flex;
	justify-content: center;
}

#account-page .current-name .vip-text {
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
}

/* RIGHT column: stats */
#account-page .current-info {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 12px;
}

/* stats rows: label left, value right */
#account-page .current-info .stat-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	padding: 6px 0;
	font-size: 11px;
	font-weight: 500;
	color: var(--color-white);

}

#account-page .current-info .stat-name {
	flex: 1 1 auto;
	min-width: 0;
	opacity: 0.8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#account-page .current-info .stat-val {
	flex: 0 0 auto;
	text-align: right;
	font-weight: 700;
	white-space: nowrap;
}

#account-page .current-info .progress-bar {
	height: 12px;
	background: var(--color-blue2);
	border-radius: 4px;
	margin: 12px 0 6px;
}

#account-page .current-info .progress-bar .progress-complete {
    background-image: url('/assets/images/progress-bar-bg.png');
    background-color: var(--color-pink);
    background-size: cover;
    border-radius: 4px;
	height: 12px;
}


#account-page .current-info .progress-info .percent {
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	font-weight: 700;
	color: var(--color-white);
}

#account-page .current-info .points-to-change {
	font-size: 16px;
	line-height: 16px;
	color: var(--color-green);
	font-weight: 500;
	display: block;
	text-align: right;
	width: 100%;
	margin: 12px 0;
}

#account-page .current-info .you-can-change {
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
	color: var(--color-white);
	text-align: right;
	width: 100%;
	display: block;
}


#account-page .current-info .for-money {
	font-size: 16px;
	line-height: 16px;
	color: var(--color-pink);
	font-weight: 500;
	display: block;
	text-align: right;
	width: 100%;
	margin: 8px 0;
}

#account-page .current-info button {
	float: right;
	display: block;
	font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    padding: 6px 8px;
    height: 26px;
    margin: 12px 0 0 0;
    border: 2px solid var(--color-pink);
    box-shadow: 0 2px 0 1px #7d0f83;
    border-radius: 7px;
}




@media (min-width: 576px) {
	#account-page .box .user .info {
		float: left;
		width: 200px;
	}

	#account-page .box .user .name, 
	#account-page .box .user .birth {
		text-align: right;	
	}

	#account-page .box .user .name .ico-profile, 
	#account-page .box .user .birth .ico-calendar {
		float: right;
		margin: 0 0 4px 6px;
	}
}

@media (min-width: 768px) {
	
	#account-page .heading {
		background-image: url('/assets/images/account-heading.png');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: left center;
		border-radius: 12px;
		padding: 12px;
	}
	
	#account-page .heading h1 {
		display: block;
		font-size: 24px;
		line-height: 24px;
		border-left: 5px solid var(--color-pink);
		padding-left: 12px;
		margin: 0 0 12px 0;
	}

	#account-page .nav.nav-tabs .nav-link .ico-container { 
		display: none;
	}

	#account-page .nav.nav-tabs {
		margin: 12px 0 0 0;
	}

	#account-page .nav.nav-tabs > li > .nav-link {
		text-align: center;
		font-size: 11px;
		line-height: 11px;
		font-weight: 500;
		border-radius: 10px;
		text-transform: uppercase;
		display: block;
		width: 100%;
		color: var(--color-white);
		text-decoration: none;
		background-color: transparent;
		border: 2px solid transparent;
		box-shadow: none;
		padding: 12px;
	}

	#account-page .nav.nav-tabs .nav-link:hover, 
	#account-page .nav.nav-tabs .nav-link:focus {
		color: var(--color-white);
		background-color: transparent;
		border-color: transparent;
		box-shadow: none;
	}

	#account-page .nav.nav-tabs .nav-link:hover {
		color: var(--color-pink);
	}

	#account-page .nav.nav-tabs .nav-link.active {
		background-image: linear-gradient(to left, #B20AEE, #D300D8) !important;
		border: 2px solid #FB42FF !important;
		box-shadow: 0 4px 0 1px #7d0f83 !important;
		color: #fff !important;
	}

	

}


@media (min-width: 992px) {

	#account-page .heading {
		border-radius: 18px;
		padding: 18px 12px;
	}

	#account-page .heading h1 {
		font-size: 28px;
		line-height: 28px;
		padding-left: 18px;
		margin: 0 0 18px 0;
	}

	#account-page .nav.nav-tabs {
		margin: 18px 0 0 0;
	}

	#account-page .nav.nav-tabs > li > .nav-link {
		font-size: 13px;
		line-height: 13px;
		font-weight: 500;
		border-radius: 12px;
	}

	#account-page .box .box-header h2 {
		font-size: 15px;
	}

	#account-page .box .box-header button {
		font-size: 15px;
		font-weight: 500;
	}

	#account-page .box .box-header button .ico-container {
		margin-left: 12px;
	}

}

@media (min-width: 1200px) {
	#account-page .box .user .info {
		float: none;
		width: 100%;
	}

	#account-page .box .user .name, 
	#account-page .box .user .birth {
		text-align: left;	
	}

	#account-page .box .user .name .ico-profile, 
	#account-page .box .user .birth .ico-calendar {
		float: left;
		margin: 0 6px 4px 0;
	}

}

/* Deposit global types */
#depTypes button, 
#wdTypes button {
	text-align: center;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	border-radius: 10px;
	display: block;
	width: 100%;
	color: var(--color-white);
	text-decoration: none;
	background-color: var(--color-blue5);
	border: 2px solid var(--color-blue4);
	box-shadow: 0 4px 0 1px var(--color-blue6);
	padding: 24px 6px;
}

#depTypes button.active,
#wdTypes button.active {
	background-image: linear-gradient(to left, #B20AEE, #D300D8);
	border: 2px solid #FB42FF;
	box-shadow: 0 4px 0 1px #7d0f83;
	color: #fff;
}

@media (min-width: 768px) {
	#depTypes button, 
	#wdTypes button {
		text-align: center;
		font-size: 11px;
		line-height: 11px;
		font-weight: 500;
		border-radius: 10px;
		display: block;
		width: 100%;
		color: var(--color-white);
		text-decoration: none;
		background-color: transparent;
		border: 2px solid transparent;
		box-shadow: none;
		padding: 12px;
	}
}

/* cashdesk deposit */
#wdMethods, 
#depMethods {
	row-gap: 16px;
}

#depMethods .cashdesk-dep-card, 
#wdMethods .cashdesk-wd-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	height: 100%;
	background: var(--color-blue5);
	border-radius: 14px;
	border: 2px solid var(--color-blue2);
	cursor: pointer;
	transition: border .2s ease, box-shadow .2s ease;
	overflow: hidden;
}

#depMethods .cashdesk-dep-card:hover, 
#wdMethods .cashdesk-wd-card:hover {
	border-color: #3a6df0;
}

#depMethods .cashdesk-dep-card__body, 
#wdMethods .cashdesk-wd-card__body {
	min-width: 0;
	flex: 1 1 auto;
}

#depMethods .cashdesk-dep-card.active, 
#wdMethods .cashdesk-wd-card.active {
	border-color: #ff4dff;
	box-shadow: 0 0 0 2px rgba(255,77,255,.25);
}

#depMethods .cashdesk-dep-card.is-top::before, 
#wdMethods .cashdesk-wd-card.is-top::before {
	content: 'TOP';
	position: absolute;
	top: 0px;
	left: 0px;  
	padding: 2px 8px;
	font-size: 11px;
	border-radius: 14px 0px 0px 0px;
	background: #ff4dff;
	color: #fff;
}

#depMethods .cashdesk-dep-card__icon img, 
#wdMethods .cashdesk-wd-card__icon img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

#depMethods .cashdesk-dep-card__title, 
#wdMethods .cashdesk-wd-card__title {
	font-weight: 500;
	font-size: 13px;
	line-height: 13px;
	margin-bottom: 6px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
}

#depMethods .cashdesk-dep-card__title.is-overflow, 
#wdMethods .cashdesk-wd-card__title.is-overflow {
	mask-image: linear-gradient(to right, #000 80%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
}

#depMethods .cashdesk-dep-card__limits, 
#wdMethods .cashdesk-wd-card__limits {
	display: flex;
	flex-direction: column;
	gap: 0;
	font-size: 11px;
	line-height: 15px;
	font-weight: 700;
	opacity: .6;
	color: var(--color-white);
}

#depMethods .cashdesk-dep-card__limits .limit-line, 
#wdMethods .cashdesk-wd-card__limits .limit-line {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#depMethods .cashdesk-dep-card__limits .limit-line span, 
#wdMethods .cashdesk-wd-card__limits .limit-line span {
	color: var(--color-blue);
}

#depMethods .cashdesk-dep-card__radio, 
#wdMethods .cashdesk-wd-card__radio {
	margin-left: auto;
	margin-top: auto;
	align-self: flex-end; 

	width: 14px;
	min-width: 14px;
	height: 14px;
	min-width: 14px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.4);
}

#depMethods .cashdesk-dep-card.active .cashdesk-dep-card__radio, 
#wdMethods .cashdesk-wd-card.active .cashdesk-wd-card__radio {
	border-color: #ff4dff;
	background: #ff4dff;
}

#depMethods .cashdesk-dep-card__meta, 
#wdMethods .cashdesk-wd-card__meta{
	display: flex;
	gap: 8px;
	font-size: 9px;
	line-height: 1;
	color: var(--color-white);
	margin-top:4px
}

#depMethods .cashdesk-dep-card__meta .cashdesk-dep-card__gate, 
#wdMethods .cashdesk-wd-card__meta .cashdesk-wd-card__gate {
	font-weight: 500;
}

#depMethods .cashdesk-dep-card__pgm, 
#wdMethods .cashdesk-wd-card__pgm {
	opacity: 0.7;
}


#depMethods .cashdesk-empty, 
#wdMethods .cashdesk-empty {
	text-align: center;
	color: var(--color-white);
	font-size: 13px;
	line-height: 15px;
	padding: 24px 0;
}


#depFormContainer, 
#wdFormContainer {
	border-left: 1px solid var(--color-blue3);
	display:none;
}

#depFormContainer .depositTitle, 
#wdFormContainer .withdrawTitle {
	margin: 18px 0;
	font-size: 18px;
	line-height: 15px;
	font-weight: 500;
	text-align: center;
}

#depFormContainer .depFormTitle, 
#wdFormContainer .wdFormTitle {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

/* контейнер под логотип */
#depFormContainer .depFormLogo, 
#wdFormContainer .wdFormLogo {
	width: 32px;
	height: 32px;
	min-width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* сама картинка */
#depFormContainer .depFormLogo img, 
#wdFormContainer .wdFormLogo img {
	max-width: 32px;
	max-height: 32px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* название метода */
#depFormContainer .depFormName, 
#wdFormContainer .wdFormName {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}

#depFormContainer .depFormLimits, 
#wdFormContainer .wdFormLimits {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	font-weight: 700;
	color: var(--color-pink);
	opacity: .8;
}

#depFormContainer .depFormLimits span, 
#wdFormContainer .wdFormLimits span {
	color: var(--color-white);
}

#depFormContainer .depFormLimits .depFormLimitsMin,
#depFormContainer .depFormLimits .depFormLimitsMax,
#wdFormContainer .wdFormLimits .wdFormLimitsMin,
#wdFormContainer .wdFormLimits .wdFormLimitsMax {
	white-space: nowrap;
	padding: 0 9px 6px 9px;
}

#depFormContainer .sprut-default-form .field-error {
	margin-bottom: 0;
}

#wdFormContainer .sprut-default-form .field-error {
	margin-bottom: 3px;
}

#depFormContainer .sprut-default-form button, 
#wdFormContainer .sprut-default-form button {
	margin-top: 3px;
}

#depFormContainer .depBack a, 
#wdFormContainer .wdBack a {
	display: block;
	text-decoration: none;
	text-align: center;
	color: var(--color-pink);
	font-size: 13px;
	font-weight: 500;
	padding: 12px 0;
	margin: 12px 0;	
}

#depFormContainer .depBack, 
#wdFormContainer .wdBack {
	display: none;
	margin-top: 16px;
}

#depFormContainer .depContinueText, 
#wdFormContainer .wdContinueText {
	font-size: 11px;   
	text-align: justify;
	line-height: 13px;
	color: var(--color-white);
	font-weight: 500;
	margin-bottom: 12px;
}

#depFormContainer .depContinueButton, 
#wdFormContainer .wdContinueButton {
	display: block;
    color: var(--color-white);
    background: linear-gradient(110deg, #B30AEE 25.9%, #D300D8 64.06%), #0A1940;
    box-shadow: 0 4px 0 1px #7d0f83;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    border: 3px solid var(--color-pink);
    border-radius: 15px;
    padding: 15px;
    width: 100%;
    text-transform: capitalize;
}

#depFormContainer .depCryptoLine, 
#wdFormContainer .wdCryptoLine {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	font-size: 11px;
	margin: 12px 0;
}

#depFormContainer .depCryptoLabel, 
#wdFormContainer .wdCryptoLabel {
	flex: 0 0 auto;
	color: var(--color-white);
}

#depFormContainer .depCryptoValue, 
#wdFormContainer .wdCryptoValue {
	margin-left: auto;
	text-align: right;
	font-weight: 600;
	color: var(--color-pink);
}

#depFormContainer .depCryptoQr, 
#wdFormContainer .wdCryptoQr {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

#depFormContainer .depCryptoFieldRow, 
#wdFormContainer .wdCryptoFieldRow {
	display: flex;
	align-items: flex-start;
	gap: 0;
	padding: 5px 0px 5px 10px;
	border-radius: 10px;
	border: 2px solid var(--color-blue3);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 500;
	line-height: 13px;
	align-items: center;
	margin-bottom: 12px;
}

#depFormContainer .depCryptoFieldValue, 
#wdFormContainer .wdCryptoFieldValue {
	flex: 1 1 auto;
	min-width: 0;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

#depFormContainer .depCryptoCopy, 
#wdFormContainer .wdCryptoCopy {
	flex: 0 0 auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width: 36px;
	height: 36px;
	padding: 0;
	border-radius: 10px;
	line-height: 1;
	font-size: 0;
	cursor: pointer;
	color: var(--color-white);
}

#depFormContainer .depCryptoCopy svg, 
#wdFormContainer .wdCryptoCopy svg {
	width: 18px;
	height: 18px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#depFormContainer .depCryptoFieldLabel {
	font-size: 11px;
	line-height: 11px;
	padding: 0 0 3px 3px;
	font-weight: 500;
}

#depFormContainer .depCryptoStatus {
	font-size: 11px;
	line-height: 11px;
	color: var(--color-pink);
	font-weight: 500;
}


#depFormContainer .depCryptoInfoText {
	font-size: 11px;
	line-height: 15px;
	text-align: justify;
	color: var(--color-white);
}


#depFormContainer .depCryptoInfoText strong {
	color: var(--color-pink);
}

#depFormContainer .depCryptoCopy.is-copied {
	transform: scale(1.1);
}

#depFormContainer .depCryptoCopy.is-copy-error{
	animation: shake 0.35s;
}


@media (max-width: 575.98px) {
	#depFormContainer .depBack, 
	#wdFormContainer .wdBack {
		display: block;
	}
}






/* ===== Deposit slide animation (no empty space) ===== */
#deposit, 
#withdraw {
	--dep-slide-dur: 260ms;
	--dep-slide-ease: cubic-bezier(.2,.8,.2,1);
}

/* форма анимируется, но в DOM появляется только когда надо (display ставим из JS) */
#depFormContainer, 
#wdFormContainer {
	opacity: 0;
	transform: translateX(16px);
	pointer-events: none;
	transition:
		opacity var(--dep-slide-dur) var(--dep-slide-ease),
		transform var(--dep-slide-dur) var(--dep-slide-ease);
	will-change: transform, opacity;
}

#depMethodsContainer, 
#wdMethodsContainer {
	transform: translateX(0);
	transition: transform var(--dep-slide-dur) var(--dep-slide-ease);
	will-change: transform;
}

/* только на >=sm делаем "уезд" методов */
@media (min-width: 576px) {
	
}

/* открыто */
#deposit.dep-form-open #depFormContainer {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

#withdraw.wd-form-open #wdFormContainer {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}








/* cashdesk history */ 
#cashdesk-history-list .deposit,
#cashdesk-history-list .withdrawal {
	margin-top: 6px; 
	margin-bottom: 6px;
	border-bottom: 1px solid var(--color-blue4);
}

#cashdesk-history-list .datetime,
#cashdesk-history-list .summ,
#cashdesk-history-list .direction,
#cashdesk-history-list .method {
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 11px;
	line-height: 18px;
	font-weight: 500;
}

#cashdesk-history-list .datetime {
	color: var(--color-white);
}

#cashdesk-history-list .summ {
	font-size: 13px;
	color: var(--color-blue);
}

#cashdesk-history-list .withdrawal .summ {
	color: var(--color-green);
}

#cashdesk-history-list .deposit .direction {
	color: var(--color-blue);
}

#cashdesk-history-list .withdrawal .direction {
	color: var(--color-green);
}

#cashdesk-history-list .method {
	color: var(--color-white);
}

#cashdesk-history-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	overflow: hidden;
	user-select: none;
}
  
#cashdesk-history-pager button {
	min-width: 32px;
	height: 30px;
	padding: 0 6px;
	border: 2px solid var(--color-blue3);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
	color: var(--color-pink);
	border-radius: 10px;
	font-size: 13px;
	line-height: 26px;
	cursor: pointer;
}

#cashdesk-history-pager button:hover:not([disabled]) {
	background-color: var(--color-pink);
	color: var(--color-white);

}
  
#cashdesk-history-pager button[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
}
  
#cashdesk-history-pager button.is-active {
	font-weight: 500;
	border-color: var(--color-pink);	
	background-color:  var(--color-pink);
	color: var(--color-white);
	cursor: default;
}
  
  #cashdesk-history-pager .dots {
	padding: 0 6px;
	color: #6c757d;
	font-size: 14px;
	line-height: 28px;
  }



/* footer providers block */
#footerProviders {
	--cols: 15;
	position: relative;
	width: 100%;
	max-width: 1320px;
	margin: 24px auto 0;
	height: 40px;
	overflow: hidden;
	isolation: isolate;
	display: none;
}

#footerProviders .slider-viewport {
	position: relative;
	height: 100%;
	margin: 0;
	overflow: hidden;
	z-index: 0;
}

#footerProviders .slider-inner {
	position: relative;
	display: flex;
	height: 100%;
	transition: transform 0.3s ease;
	z-index: 0;
	gap: 0;
}

#footerProviders a.footer-providers-item,
#footerProviders a.clone {
	flex: 0 0 calc(100% / var(--cols));
	min-width: 0;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-sizing: border-box;
	opacity: 0.5;
}

#footerProviders a.footer-providers-item:hover,
#footerProviders a.clone:hover,
#footerProviders a.footer-providers-item:focus-visible,
#footerProviders a.clone:focus-visible {
	opacity: 1;
	outline: none;
}

#footerProviders a.footer-providers-item img {
	width: 28px;
	height: 28px;
	display: block;
}

@media (min-width: 992px) {
	#footerProviders {
		display: block; 
	} 
}

@media (min-width: 1200px) {
	#footerProviders {
		--cols: 21; 
	} 
}

/* ERROR PAGES & SUCCESS PAGES */
#error-page,
#success-page {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	padding: 60px 0 0 0;
}

#error-page .row, 
#success-page .row {
	height: 100%;
}

#error-page .col-12, 
#success-page .col-12 {
	display: flex;
	justify-content: center;
	align-items: center;
}

#error-page .error-bg,
#success-page .success-bg {
	width: 100%;
	max-width: 810px;
	height: 100%;
	background: var(--color-blue6) url('/assets/images/errors/error-bg.png') center center / cover no-repeat;
	position: relative;
}

#error-page .error-bg .row,
#success-page .success-bg .row {
	display: flex;
	flex-direction: column;
	height: 100%;
}

#error-page .error-bg .row > .col-12, 
#success-page .success-bg .row > .col-12 {
	flex: 0 0 50%;
	max-height: 50%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#error-page .error-bg .row > .description,
#success-page .success-bg .row > .description {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	gap: 0.3rem;
}

#error-page .error-bg .row > .description > *,
#success-page .success-bg .row > .description > * {
	width: 80%;
}

#error-page .oops, 
#success-page .oops {
	font-size: 18px;
	font-weight: 500;
	line-height: 18px;
}

#error-page .code {
	font-size: 64px;
	font-weight: 500;
	line-height: 64px;
}

#error-page .error-header,
#success-page .success-header {
	color: var(--color-pink);
	font-size: 24px;
	font-weight: 500;
	line-height: 24px;
}

#error-page .error-description,
#success-page .success-description {
	font-size: 11px;
	line-height: 16px;
	color: var(--color-blue);
}

#error-page a.button, 
#success-page a.button {
	margin-top: 20px;
	max-width: 200px;
	font-weight: 500;
}

#error-page .error-creature, 
#success-page .success-creature {
	width: 90%;
	max-width: 300px;
	height: auto;
	position: absolute;
	z-index: 2;
}

@media (min-width: 768px) {
	#error-page,
	#success-page {
		position: relative; 
		width: 100%;
		height: 70%;
		z-index: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#error-page .row, 
	#success-page .row {
		height: auto;
	}
	
	#error-page .col-12, 
	#success-page .col-12 {
		display: block;
	}

	#error-page .error-bg, 
	#success-page .success-bg {
		width: 700px;
		height: 340px;
		margin: 0 auto;
		border-radius: 20px;
	}

	#error-page .error-bg .row,
	#success-page .success-bg .row {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		height: 100%;
	}

	#error-page .error-bg .row > .col-12,
	#success-page .success-bg .row > .col-12 {
		flex: 0 0 50%;
		max-width: 50%;
		height: 100%;
		max-height: 100%;
		display: flex;
		align-items: left;
		justify-content: left;
	}

	#error-page .error-bg .row > .description,
	#success-page .success-bg .row > .description {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: left;
		text-align: center;
		gap: 1em;
		padding-left: 0;
	}
	
	#error-page .error-bg .row > .description > * ,
	#success-page .success-bg .row > .description > * {
		width: 95%;
		margin-left: 10px;
		margin-right: auto;
	}
	
	#error-page .error-creature, 
	#success-page .success-creature {
		position: absolute;
		height: 100%;
		top: -20px;
		left: -20px;
		width: auto;
		max-width: none;
	}

	#error-page .error-bg .row > .description,
	#success-page .success-bg .row > .description {
		justify-content: center;
		text-align: left;
	}

	#error-page .oops,
	#success-page .oops {
		font-size: 18px;
		font-weight: 500;
		line-height: 18px;
	}

	#error-page .code {
		font-size: 72px;
		font-weight: 500;
		line-height: 72px;
	}

	#error-page .error-header,
	#success-page .success-header {
		color: var(--color-pink);
		font-size: 24px;
		font-weight: 500;
		line-height: 24px;
	}

	#error-page .error-description,
	#success-page .success-description {
		font-size: 12px;
		line-height: 16px;
	}

	#error-page a.button,
	#success-page a.button {
		margin-top: 20px;
		margin-left: 0;
		margin-right: auto;
		max-width: 200px;
		font-weight: 500;
	}
}

.content-page-menu,
.content-page-content {
	background: var(--color-blue6);
	border-radius: 20px;
	padding: 24px 24px;
	border: 3px solid var(--color-blue4);
	margin-top: 0px;
	margin-bottom: 0px;
}

.content-page-menu .top {
	display: block;
	width: 100%;
	margin-bottom: 12px;
}

.content-page-menu .top a {
	color: var(--color-white);
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
}

.content-page-menu .ico-container {
	width: 24px;
	height: 24px;
	margin-right: 12px;
}

.content-page-menu .ico-container svg, 
.content-page-menu .ico-container img {
	height: 24px;
	color: var(--color-pink);
	width: 24px;
} 

.content-page-menu .subs {
	margin-bottom: 30px;
}

.content-page-menu .sub {
	display: block;	
}

.content-page-menu .sub a {
	color: var(--color-blue);
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	text-decoration: none;
}

.content-page-menu .sub a.active {
	color: var(--color-white);
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}