* { box-sizing: border-box; }


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: none!important;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display: block;
}

blockquote, q{
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after{
	content: '';
	content: none;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

img{
	max-width: 100%;
    max-height: 100%;
	height: auto;
    vertical-align: top!important;
}

ul, ol{
	padding: 10px 10px 10px 20px;
}

a{
	transition: 0.2s;
	text-decoration: none;
	color: #2f2fde;
    display: inline-block;
}

a:hover,
a:active,
a:focus,
a:visited{
	text-decoration: none; 
}

::-webkit-scrollbar{
    width: 5px;
    background: transparent;
}

::-webkit-scrollbar-thumb{
    width: 4px;
	background-color: #2a3546;
    border-radius: 2px;
}

html,
body{
	background-color: #f5f5f7;
    color: #000;
    line-height: 1.5;
    font-family: "Montserrat",sans-serif;
    font-weight: 400;
    font-size: 14px;
	overflow-x: hidden;
	scrollbar-color-: #458245 #714826;
    scrollbar-width-: 4px; 
}

strong{
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6{
	font-family: Montserrat;
	font-weight: 700;
}

h1{
	font-size: 32px;
}

h2{
	font-size: 0px;
}

h3{
	font-size: 22px;
}

h4{
	font-size: 19px;
}

p{
	margin: 5px 0;
}

svg{
    vertical-align: top;
}

.container{
	max-width: 1540px;
    width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.header{
	position: fixed;
	top: 0;
	left: 0;
    right: 0;
	width: 100%;
    z-index: 10;
	background-color: #f1f1f3;
}

.header .container{
    max-width: 1920px;    
}

.fixed-header{
    padding: 20px 40px;
    height: 100px;
}

.fixed-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
	width: 100%;
    height: 100%;
}

.header-left{
	display: flex;
    align-items: center;
    /*justify-content: flex-start;*/
    justify-content: space-between;
    width: 56%;
}

.header-right{
	display: flex;
    align-items: center;
    justify-content: flex-end;
	margin-left: 10px;
}

.header-logo{
	max-width: 125px;
    width: 100%;
    text-align: center;
    margin: 0 20px;
    display: flex;
    order: 2;
}
.logo-white{
    position: absolute; 
    left: 50%; 
    margin-left: -62.5px; 
    margin-top: -12px; 
    z-index: 10;  
    transition: none !important;
}

.header-logo svg{
    max-width: 95.61px;
    height: 100%;
}

.header-logo svg path,
.footer-logo svg path{
    fill: #000;
}

.header-menu{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}

.head_menu_btn{
    cursor: pointer;
    opacity: .7;
    transition: .3s;
}

/* Анимация кнопки меню - 2025-01-27: Добавлено для исправления конфликтов CSS */
.header-left .head_menu_btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
}

.header-left .head_menu_btn.hide-animation {
    transform: translateX(-100px) scale(0.1) !important;
    opacity: 0.1 !important;
    visibility: hidden !important;
}

.header-left .head_menu_btn.show-animation {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Дополнительные специфичные селекторы для гарантированного переопределения - 2025-01-27 */
.header .header-left .head_menu_btn.hide-animation {
    transform: translateX(-100px) scale(0.1) !important;
    opacity: 0.1 !important;
    visibility: hidden !important;
}

.header .header-left .head_menu_btn.show-animation {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Базовые стили для кнопки меню - 2025-01-27 */
.header-left .head_menu_btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Анимация кнопки меню при открытии/закрытии через CSS - 2025-01-27 */
.header-left .head_menu_btn.menu-hidden {
    transform: translateX(-100px) scale(0.1) !important;
    opacity: 0.1 !important;
    visibility: hidden !important;
}

/* Анимация кнопки меню для мобильного меню - 2025-01-27 */
.block-content.menu-open .head_menu_btn,
.footer.menu-open .head_menu_btn {
    transform: translateX(-100px) scale(0.1) !important;
    opacity: 0.1 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.block-content:not(.menu-open) .head_menu_btn,
.footer:not(.menu-open) .head_menu_btn {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.head_menu_btn svg{
    fill: #000;
}

.head_menu_btn:hover{
    opacity: 1;
}

.header-menu a{
	color: #000;
	font-weight: 600;
	font-size: 14px;
	margin: 0 35px 0 0;
}

.header-menu a:hover,
.header-menu a.active{
	color: #2f2fde;
}
	
.overflow-topmenu{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000070;
    display: none;
    z-index: 19;
}

.overflow-topmenu.active{
    display: block;
}

.parent-header-btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.no-login-header-btn,
.yes-login-header-btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.no-login-header-btn{
	display: flex;
}

.yes-login-header-btn{
	/* display: none; */
}

.header-btn{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: auto;
}

.header .btn-filled{
    margin-left: 20px;
}

a.btn svg{
	fill: #fff;
	width: 17px;
	height: 17px;
	margin: 0px 5px 0 0;
	display: block;
	float: left;
}

.btn{
    color: #fff;
    font-weight: 400;
    justify-content: center;
    padding: 0 15px;
    text-align: center;
    border-width: 0;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    align-items: center;
    background-color: #2f2fde;
    border-color: transparent;
    border-radius: 8px;
    border-style: solid;
    display: flex;
	width: auto;
    font-size: inherit;
    min-height: 30px;
    outline: none;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
	font-size: 12px;
	
}

a.profile-btn{
	background-color: #202a39;
    padding: 10px 20px 11px;
	margin-right: 0;
	border-radius: 14px;
    font-weight: 600;
	color: #fff;
	display: inline-block;
	margin-left: 8px;
}

a.profile-btn svg{
	fill: #fff;
}

.header-lang{
	width: 22px;
	margin-left: 20px;
	position: relative;
	z-index: 9991;
}

.btn-lang,
.open-lang {
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
}

.btn-lang a{
	background-color: #fff;
	font-size: 14px;
    border-radius: 10px;
    padding: 5px 15px;
	color: #000;
	display: inline-block;
	width: 100%;
    min-height: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.btn-lang a:hover,
.btn-lang.active a{
    background-color: #ffc400;
}

.btn-lang a img{
	width: 20px;
	height: 20px;
	border-radius: 50%;
    margin-right: 15px;
}

.btn-lang a:hover img,
.btn-lang.active a img{
    box-shadow: 0 0 0 4px #2f2fde;
}

.btn-lang a svg{
	width: 20px;
    height: 20px;
    margin-left: auto;
}

.btn-lang a svg use{
	transform: scale(1.5);
    transform-origin: 50%;
}

.btn-lang.active a svg{
	transform: scale(1, -1);
}

.btn-filled{
    background: #ffc400;
    border: 2px solid #ffc400;
    color: #000;
    padding: 5px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}

.btn-filled:hover{
    background: #ffa300;
    border-color: #ffa300;
}

.btn-filled.pink{
    background-color: #c700cb;
    border-color: #c700cb;
    color: #fff;
}

.btn-filled.pink:hover{
    background: #fa09ff;
    border-color: #fa09ff;
}

.btn-bordered{
    background: rgba(255,255,255,0);
    border: 2px solid #ffc400;
    color: #000;
    padding: 5px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}

.btn-bordered:hover{
    background: rgba(255, 196, 0, .1);
}

.open-lang{
	background-color: #fff;
    border-radius: 10px;
	margin-top: 10px;
	display: none;
    overflow: hidden;
}

.open-lang.active{
	display: block;
}

.open-lang a{
	font-size: 12px;
    padding: 5px 15px;
	display: flex;
    align-items: center;
	width: 100%;
    color: #000;
}

.open-lang a img{
	width: 20px;
	height: 20px;
	border-radius: 50%;
    margin-right: 15px;
}

.open-lang a:hover{
    background-color: #ffc400;
}

.reg-btn-topmenu{
	width: 100%;
	margin: 0 0 30px;
}

.h-header-balance{
    margin-right: 10px;
}

.h-header-balance{
	width: auto;
	font-size: 12px;
	line-height: 1.2;
}

.text-header-balance{
	width: 100%;
	font-size: 11px;
}

.yes-login-header-btn .btn{
    margin-right: 20px;
}

.yes-login-header-btn .open-profile{
	background: #2f2fde;
    min-width: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.yes-login-header-btn a.btn svg{
	margin: 0;
}



.block-content{
	min-height: calc(100vh - 220px);
}

.block-content.menu-open,
.footer.menu-open{
	/* padding-left: 232px; */
}



































.index-top{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
    margin-bottom: 20px;
}

.index-slider{
	width: 100%;
}

.index-slider .swiper{
	width: 100vw;
	height: 100%;
	overflow-x: hidden;
	overflow: hidden;
	position: relative;
}

.index-slider .swiper-slide{
    background-size: auto 135%;
    background-position: center;
    background-repeat: no-repeat;

	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 400px;
    position: relative;
    transition: background-size .6s !important;
    overflow: hidden;
}

/* .index-slider .swiper-slide:hover{
    background-size: auto 150%;
} */

.index-slider .swiper-slide .img-wrap{
    position: absolute;
    bottom: 100%;
    left: 50%;
    transition: .7s !important;
}

.TopSwiper .swiper-slide-active .img-wrap{
    bottom: 0%;
}

.index-slider .swiper-slide .img-wrap img{
    position: relative;
    transition: 0s !important;
}

.TopSwiper .bg-swiper-slide{
    position: relative;
    left: -1600px;
    transition: .9s !important;
    z-index: 2;
}

.TopSwiper .swiper-slide-active .bg-swiper-slide{
    left: 0;
}

.parent-swiper-pagination{
	position: absolute;
	width: 200px;
	top: 355px;
	right: auto;
	bottom: 0;
	left: calc(50% - 100px);
	height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.swiper-pagination-bullet{
	display: inline-block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    background-color: rgba(0,0,0,0);
    border-radius: 10px;
	margin: 0 2px;
    border: 1px solid #b3b4b8;
	opacity: 1;
}

.swiper-pagination-bullet-active{
	width: 10px;
    height: 10px;
    background: #b3b4b8;
}

.bg-swiper-slide{
    color: #fff;
	max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    font-family: "Rubik",sans-serif;
}

span.title-slide{
	font-size: 44px;
	font-weight: 700;
    white-space: pre-line;
    text-shadow: 1px 1px 3px #000;
    z-index: 10;
    line-height: 1.12;
	width: 100%;
	display: block;
}

span.number-slide{
    font-size: 13px;
    margin-top: 4px;
	font-weight: 500;
    line-height: 1.31;
    opacity: .8;
    white-space: pre-line;
    text-shadow: 1px 1px 3px #000;
    z-index: 10;
	display: block;
}

.btn-slider{
	margin: 15px 0 0;
}

.btn-slider a,
.btn-slider small{
	max-width: 100%;
    padding: 8px 15px;
    background: linear-gradient(107deg, rgb(255, 86, 196) 0%, rgb(255, 50, 175) 100%);
	display: inline-block;
    margin: 0;
	font-weight: 300;
    line-height: 1.4;
    cursor: pointer;
    border: none;
    outline: none;
    font: inherit;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: 6px;
    transition: .25s ease-in-out;
}

.parent-swiper-navination{
	position: absolute;
	width: 90px;
	bottom: 20px;
	right: calc((100vw - 1560px) / 2);
	height: 40px;
	display: flex;
	align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.parent-swiper-navination .swiper-button-next,
.parent-swiper-navination .swiper-button-prev{
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
	background-size: 12px 44px;
    position: static;
    background-image: none;
    margin-top: 0;
}

.parent-swiper-navination .swiper-button-next svg{
    transform: rotate(-90deg);
}
.parent-swiper-navination .swiper-button-prev svg{
	transform: rotate(90deg);
}

.parent-swiper-navination .swiper-button-next:hover,
.parent-swiper-navination .swiper-button-prev:hover{
	background-color: #000;
}

.parent-swiper-navination .swiper-button-next:hover svg,
.parent-swiper-navination .swiper-button-prev:hover svg{
	fill: #fff;
}

.parent-swiper-navination svg{
    fill: #2f2fde;
}













.list-anim-btn{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 14px 0 14px;
	width: 100%;
}

.list-anim-btn .anim-btn{
	width: calc(25% - 9px);
    border-radius: inherit;
    background-color: rgba(20,27,46,.6);
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	min-height: 90px;
	position: relative;
    overflow: hidden;
}

.list-anim-btn .anim-btn:hover{
    background-color: rgba(20,27,46,1);
}

.list-anim-btn .anim-btn div{
	padding: 20px;
	background-size: 64px 60px;
	background-position: calc(100% - 20px) 50%;
	background-repeat: no-repeat;
}

.list-anim-btn .anim-btn:hover > div{
	transform: scale(1.03);
}

.list-anim-btn .anim-btn div{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
}

.list-anim-btn .anim-btn span{
	width: 100%;
	font-size: 24px;
    letter-spacing: .34px;
    font-weight: 600;
    line-height: 1;
}

.list-anim-btn .anim-btn small{
	width: 100%;
	font-size: 13px;
    letter-spacing: -.21px;
    margin-top: 3px;
}




.line-one-index-category{
    margin-top: -19px;
    margin-bottom: 15px;
    width: 100%;
    height: 4px;
	border-radius: 0 0 5px 5px;
	background-image: linear-gradient(90deg, rgb(0, 183, 255) 0%, rgb(199, 0, 255) 50%, rgb(255, 187, 0) 100%);
}

.parent-banner-ihb{
	background-color: #1e283f;
	background-image: url(../img/betnew/home-banner.png);
	background-position: 100% 100%;
	background-size: 400px 100%;
	background-repeat: no-repeat;
	min-height: 202px;
}

.banner-ihb{
	margin-top: 28px;
}

.banner-ihb span{
	font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.banner-ihb a{
	height: 45px;
    border-radius: 8px;
    background-image: -webkit-linear-gradient(195deg,#00b7ff,#8d53e9);
    background-image: linear-gradient(255deg,#00b7ff,#8d53e9);
    padding: 0 15px;
    cursor: pointer;
    font-weight: 700;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-top: 25px;
	max-width: 200px;
}



.head-subcat{
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}

.head-subcat-routers{
	width: calc(100% - 250px);
	margin-right: 30px;
	display: block;
	flex: 1 1 auto;
	overflow: hidden;
    border-radius: 6px;
	height: 32px;
}

.one-subcat-router{
	margin-right: 12px;
	display: block;
	float: left;
}

.head-subcat-routers a{
    display: inline-flex;
    align-items: center;
    text-align: center;
    background: rgba(148,166,205,.15);
    padding: 0 11px;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    /* border: 1px solid rgba(0,0,0,0); */
    transition: .6s all ease;
}

.head-subcat-routers a div{
    flex-shrink: 0;
    display: flex;
    align-items: center;
	margin-right: 6px;
}

.head-subcat-routers a img{
	width: auto;
	height: 20px;
}

.head-subcat-routers a span{
	display: block;
    color: #7a7b91;
    color: #fff;
    font-size: 12px;
    text-align: left;
    white-space: nowrap;
    transition: .4s all ease;
}

.head-subcat-routers a:hover{
	background: rgba(148,166,205,.3);
}


.head-subcat-select{
	width: 170px;
	display: block;
    margin-left: 20px;
    position: relative;
}

.subcat-select{
	background: #dddddd4f;
	color: #000;
	font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 0  15px;
	width: 100%;
    height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.subcat-select:hover{
    background: #bfc8dc;
}

.head-subcat-select svg{
	fill: #2f2fde;
	width: 19px;
}

.subcat-select-img{
	display: flex;
}

.head-subcat-select.active .subcat-select svg.icon-arrow{
	transform: scale(1, -1);
}

.subcat-select-drop{
    background: #f3f5fc;
    font-size: 14px;
    border-radius: 10px;
	display: flex;
    flex-direction: column;
	position: absolute;
    right: 0;
	margin-top: 10px;
	z-index: 4;
	max-height: 285px;
	overflow-y: scroll;
	display: none;
}

.head-subcat-select.active .subcat-select-drop{
	display: block;
}

.subcat-select-drop a{
	display: flex;
    align-items: center;
	justify-content: flex-start;
	width: 100%;
	padding: 8px 10px;
	color: #000;
	font-size: 12px;
}

.subcat-select-drop a:hover{
    background-color: #bfc8dc;
}

.subcat-select-drop .img-select-drop{
	width: 50px;
	margin-right: 9px;
}

.subcat-select-drop .title-select-drop{
	width: calc(100% - 94px);
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
}

.subcat-select-drop .col-select-drop{
	width: 35px;
	text-align: right;
}



.head-tabs{
	display: flex;
	width: 100%;
    align-items: flex-start;
    justify-content: space-between;
	margin: 0 0 30px;
}

.jackpot-tabs{
	width: 500px;
	border: 2px solid #c5991e;
    border-radius: 14px;
	padding: 15px;
	min-height: 250px;
}

.h-jackpot-tabs{
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}

.jackpot-tabs span{
	font-size: 32px;
    font-weight: 900;
    letter-spacing: -1.96px;
    text-shadow: 0 2px 87px #0c1820;
}

.h-jackpot-tabs svg{
	width: 15px;
	height: 15px;
	fill: #c5991e;
	margin: -2px 15px 0;
}

.summ-jackpot-tabs{
	background: radial-gradient(circle at -65% 157%,#c5991e,#b68100 7%,#fff29d 66%,#b57f00 113%,#c7940f 138%);
    font-size: 40px;
    font-weight: 900;
	width: 100%;
	text-align: center;
	display: block;
	margin-top: 5px;
	margin-bottom: 15px;
	line-height: 1;
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jackpot-tabs .data-game-slide{
	display: none;
}

.head-tabs .index-slider{
	width: calc(100% - 515px);
}

.head-tabs .index-slider .swiper-slide{
	min-height: 250px;
}







.list-tabs-wrapper{
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0 15px;
    background-color: #c4c4c417;
    border-radius: 10px;
    margin-bottom: 30px;
}

.list-tabs{
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.list-tabs a.router-link{
    color: #000;
    padding: 5px;
	font-weight: 600;
    position: relative;
}

.list-tabs a.router-link + a.router-link{
    margin-left: 30px;
}

.list-tabs a.router-link::after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    transform: scaleX(0.5);
    opacity: 0;
    height: 3px;
    border-radius: 4px;
    pointer-events: none;
    background-color: #2f2fde;
    transition: all 0.5s cubic-bezier(0.6, 0.1, 0.05, 1.5);
}

.list-tabs a.router-link:hover span,
.list-tabs a.router-link.active span{
	color: #2f2fde;
    transition: .3s !important;
}
.list-tabs a.router-link:hover::after,
.list-tabs a.router-link.active::after{
    transform: scaleX(1);
    opacity: 1;
}

.list-tabs-wrapper .header-search{
    margin-left: auto;
}

.list-tabs-wrapper .header-search input[type="search"]{
    background-image: url(../img/betnew/search-blue.svg);
    max-width: 150px;
    text-overflow: ellipsis;
    background-color: #dddddd4f;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 0 15px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    width: auto;
    background-position: right 15px center;
    opacity: 1;
    transition: 0s;
}

.list-tabs-wrapper .header-search:hover input[type="search"]{
    background-color: #bfc8dc;
    transform: none;
}

.head-one-category{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(16.66% - 20px);
    margin: 10px;
    background-color: #f3f5fc;
    border-radius: 16px;
    padding: 30px 15px 15px;
    transition: 0s;
}

.head-one-category.filters {
    flex-direction: row;
    width: 100%;
    margin: 0 0 30px 0;
    background: none;
    padding: 0 15px;
}

.head-one-category.text{
    display: block;
    width: 100%;
    margin: 40px 0 10px;
    background-color: inherit;
    border-radius: 0;
    padding: 0;
}

.head-one-category svg{
    fill: #2f2fde;
}

.h-one-category{
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.head-one-category .view-all{
	color: #2f2fde;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.head-one-category .view-all svg{
    transform: rotate(-90deg);
}

.head-one-category .view-all span{
    display: flex;
    margin-left: 5px;
}

.head-one-category .view-all:hover span{
    transform: rotateX(360deg) translateX(10px);
}

.head-btn{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slide-head-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 34px;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
}

.head-btn-slide{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 28px;
	background-color: #353f59;
    color: #c6c6c6;
    border-color: transparent;
	padding: 0;
    margin: 0;
    font-size: 12px;
	-moz-appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    outline: none;
    display: inline-block;
    transition: color .1s ease-in-out,background-color .1s ease-in-out,border-color .1s ease-in-out;
	border-radius: 6px;
	padding-top: 0;
}

.head-btn-slide.left-slide{
	margin-left: 15px;
}

.head-btn-slide.right-slide{
	margin-left: 5px;
}

.head-btn-slide svg{
	fill: #fff;
	width: 21px;
	height: 28px;
}

.head-btn-slide:hover{
	/* background-color: #3e3ef4; */
}

.head-btn-slide:hover svg{
	fill: #fff;
}

.swiper.game-swiper{
	/* width: calc(100% - 29px); */
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.parent-game-swiper{
	display: flex;
	position: relative;
	margin-top: 15px;
}

.game-swiper .swiper-slide{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15%;
}

.game-swiper .swiper-button-next,
.game-swiper .swiper-button-prev{
	display: none;
}

.game-slide{
	position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: block;
	width: 100%;
}

.provider-game-slide-img{
    position: absolute;
    z-index: 3;
    top: 5px;
    right: 5px;
    max-width: 75px;
    width: 60%;
}

.game-preview__btn-star{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    border: none;
	z-index: 2;
    background-color: #fff;
    border-radius: 10px;
    padding-bottom: 1px;
    padding-right: 1px;
}

.game-preview__btn-star svg{
	display: inline-block;
    fill: #000;
	width: 28px!important;
    height: 28px!important;
}

.game-preview__btn-star.star.favorite svg:nth-child(2),
.game-preview__btn-star.star.favorite.no_favorites:hover svg:nth-child(1),
.game-preview__btn-star.star.favorite.in_favorites svg:nth-child(1){
	display: none;
}

.game-preview__btn-star.star.favorite.in_favorites svg:nth-child(2),
.game-preview__btn-star.star.favorite.no_favorites:hover svg:nth-child(2){
	display: inline-block;
    fill: #2f2fde;
}

.meta-game-slide{
	position: absolute;
    right: 8px;
    top: 8px;
    z-index: 1;
    width: 36px;
}

.meta-game-slide span{
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
}

.meta-game-slide .new{
	background: #3e3ef4;
}

.meta-game-slide .top{
	background: #ffbb39;
	color: #131521;
}

.meta-game-slide .hot{
	background: #fd2d5e;
}

.hover-game-slide{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
    opacity: 0;
    z-index: 2;
    padding: 10px 15px;
    overflow: hidden;
    transition: opacity .3s;
}

.hover-game-slide > *{
    z-index: 2;
}

.hover-game-slide::before{
    transition: all 0.25s linear;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(255,255,255,.8);
    transform: translateX(-100%) skewX(35deg);
    pointer-events: none;
}

.game-slide:hover .hover-game-slide::before{
    transform: translateX(0) skewX(0);
}

.hover-game-slide .btn{
    font-size: 12px;
    padding: 5px 20px;
    margin: 5px;
}

.hover-game-slide .btn-bordered{
    background-color: rgba(255, 196, 0, .0);
}

.hover-game-slide .btn-bordered:hover{
    background-color: rgba(255, 196, 0, .1);
}

.img-game-slide{
	position: relative;
    overflow: hidden;
	height: auto;
	padding-top: 75%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: flex;
    align-items: center;
    justify-content: center;
	color: #fff;
    font-size: 18px;
}

.parent-game-swiper .game-slide{
	border-radius: 16px 16px 0 0;
}

.parent-game-swiper .img-game-slide{
	padding-top: 135%;
}

.game-slide.slide-view-all:hover > .img-game-slide{
	filter: blur(0px);
}

.game-slide:hover > .hover-game-slide{
	opacity: 1;
}

.game-slide.slide-view-all:hover > .hover-game-slide{
	opacity: 0;
    z-index: -1;
}

.data-game-slide{
	background: rgb(32, 33, 42);
	border-radius: 0 0 10px 10px;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	height: 80px;
	
	/* display: none; */
}

.provider-game-slide{
	color: rgb(122, 123, 145);
    font-size: 12px;
	font-weight: 400;
    text-align: center;
	width: 100%;
}

.h-game-slide{
    font-size: 14px;
	color: #000;
    font-weight: 600;
    text-align: center;
	width: 100%;
    margin-top: auto;
}

.h-game-btns{
    display: flex;
    margin-top: auto;
}

.parent-game-slide{
	width: 100%;
}

.mini-slider-win{
    margin: 10px 0;
    box-shadow: 10px 0 20px #3232321f;
    padding: 15px 0;
}

.swiper-wins {
    overflow: hidden;
}

.swiper-wins .swiper-slide{
    height: 60px;
    width: 320px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.swiper-wins .swiper-slide::before{
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 3px;
    height: 90%;
    background-color: #bfc8dc;
    border-radius: 3px;
}

.swiper-wins .mini-img{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-wins .mini-img img{
    object-fit: cover;
    height: 100%;
}

.swiper-wins .mini-desc{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 195px;
}

.swiper-wins .mini-desc .name{
    max-width: 82px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.swiper-wins .mini-desc .summ{
    max-width: 105px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.swiper-wins .mini-desc a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-wins .mini-desc a .text{
    max-width: 167px;
    color: #000;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.swiper-wins .mini-desc a:hover .text{
    border-bottom: 1px solid rgba(0,0,0,1);
}




.swiper-tournament-slider{
    overflow: hidden;
    position: relative;
    margin: 10px 0;
}

.swiper-tournament-slider .swiper-slide{
    min-height: 380px;
}

.swiper-tournament-slider .swiper-slide .main__item{
    margin: 0;
}

.swiper-tournament-slider .parent-swiper-navination{
    right: 40px;
    bottom: 40px;
}

.swiper-button-next.swiper-button-disabled svg,
.swiper-button-prev.swiper-button-disabled svg{
    fill: #000;
}





.index-banner{
    margin: 10px 0;
    background-image: url(../img/betnew/banner1.webp);
    min-height: 400px;
    padding: 20px 20px 20px 40%;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.index-banner .title{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.jp-summ{
    font-size: 120px;
    font-weight: 700;
    position: relative;
    min-height: 180px;
    width: 640px;
}

.jp-summ .curr{
    font-size: 40px;
    text-transform: uppercase;
}

.jp-summ .main{
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(90deg, rgba(246,209,64,1) 30%, rgb(255 250 223) 44%, rgba(246,209,64,1) 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jp-summ .shadow{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    text-shadow: 3px -3px #683c14, -3px -3px #683c14, -3px 3px #683c14, -3px -3px #683c14, 3px -2px #683c14, -3px -2px #683c14, -2px 3px #683c14, -2px -3px #683c14, 3px -1px #683c14, -3px -1px #683c14, -1px 3px #683c14, -1px -3px #683c14, 3px 0px #683c14, -3px 0px #683c14, 0px 3px #683c14, 0px -3px #683c14, 3px 1px #683c14, -3px 1px #683c14, 1px 3px #683c14, 1px -3px #683c14, 3px 2px #683c14, -3px 2px #683c14, 2px 3px #683c14, 2px -3px #683c14, 3px 3px #683c14, -3px 3px #683c14, 3px 3px #683c14, 3px -3px #683c14;
}










.swiper-slide .data-game-slide{
	padding: 30px 5px 5px;
	height: auto;
	min-height: 100px;
	background: none;
	margin-top: -40px;
	position: relative;
	z-index: 100;
	background: linear-gradient(to top, rgb(25, 26, 35) 58%, rgba(25, 26, 35, 0) 100%);
}


.list-game{
	display: flex;
	flex-wrap: wrap;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.list-game .parent-game-slide{
	width: calc(16.66% - 20px);
	margin: 10px;
    background-image: url(../img/betnew/logo.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f3f5fc;
    border-radius: 16px;
}

.list-index-category .list-game .data-game-slide,
.one-category.parent-list-game .list-game .data-game-slide{
	display: none;
}

.parent-list-game .view-all{
	margin: 0;
}

.list-game.grid{
    display: grid;
    flex-grow: 1;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-gap: 20px;
}
/* увеличение первой карточки
.list-game.grid .parent-game-slide:first-child{
    grid-row: 1 / 3;
    grid-column: 1 / 3;
}
*/
.list-game.grid .parent-game-slide:first-child .img-game-slide{
    padding-top: 76%;
}

.list-game.grid .parent-game-slide{
    width: 100%;
    margin: 0;
}

.one-category.slider-one-cat{
    background-image: linear-gradient(110deg,#1e283f,rgba(20,27,46,.6) 100%);
	padding: 15px;
	border-radius: 4px;
}



a.all-games{
	min-width: 120px;
    max-width: 120px;
	display: block;
	margin: 25px auto 0;
	text-align: center;
    color: rgb(198, 198, 198);
    background: rgb(31, 32, 43);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(36, 38, 49);
    border-image: initial;
    padding: 10px 20px;
	font-size: 14px;
	border-radius: 10px;
}

a.all-games:hover{
	color: #c6c6c6;
    background: #242631;
}



.the-content{
	margin: 50px 0 50px;
	font-size: 14px;
    color: #000;
}

.the-content:empty{
    margin: 0;
}

.the-content p{
	margin: 7px 0;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6{
	margin: 7px 0 7px;
}

.the-content h1{
	font-size: 22px;
}

.the-content h2{
	font-size: 19px;
}

.the-content h3{
	font-size: 17px;
}

.the-content a{
	color: #2f2fde;
}

.the-content img{
	display: none;
}

iframe.index-iframe{
    margin-bottom: 0;
}

.tvbet_info{
    margin-top: 30px;
}

.full-width-page{
	width: 100%;
	padding-top: 100px;
	position: relative;
}

.left-aside{
	width: 270px;
	background-color: #141b2f;
    border-radius: 12px;
    display: none;
    pointer-events: none;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
    position: relative;
}

.wrapper-left-aside{
	position: fixed;
	width: 270px;
	height: calc(100vh - 94px);
	top: 79px;
    overflow-y: scroll;
    overflow-x: hidden;
	padding: 0;
	background-color: #141b2f;
    border-radius: 12px;
    display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	z-index: 10;
}

#home .left-aside{
	display: none;
}

#home .main-aside{
	width: 100%;
}

.search-aside{
	width: 100%;
	margin: 0 0 25px;
	padding: 15px 15px 0 15px;
}

input[type="search"]{
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACuUlEQVRIie2WTU8TQRjHf7MsJaSkNzkoMUY5mBQu6GW3SQMierR44APIgWiMNSZEP4ERiOFskC+wCfJyIiEYJXR3NfWiNPGiRiNi6q0XstLu46HTBBTaLQFP/E87b89vZp7Z/wyc6D9JNepQKBRipVIpIyIZoA/o0k3fgXdKqcVEIrGQTCZ/HxnY87ybIjIFnG8Q5xMwbtv2fFSwsV+liBiu606KyJyGvheRrGEYyXg83hGPxzvCMOwB7gMfgAvAC8/znojIvjH/1r4rdl13EhgHAiBrWdaMUio8aJK+74+JyDTQppSasCzrUdNgvb1zGnrdtu3XUVbgeV6/iCwDbcCwbdsL9frv2ZZCoRDTOQXIRoUCWJb1SkQe6OJUPp9vjQwulUoZdE4ty5qJCq1pc3PzGbABdAdBcCMyGBgGUEo9Pyin9TQyMlIBZnUxExkchmGfBq82C90VY0XHuBwZrJQ6DbC9vf3tsGCgNvZMZPBRyDTNhm74D1hEfgC0t7efPSy4UqnUxv6MDFZK5QHCMBw6LNgwjGs6lt8MeFF/jka1vt1yHKdFRG4BiMhSZHAikVigavi9vu+PNQvu6uq6DSSBz0EQ1L0w9oD11TauZzzteV5/VOj6+voA8FQXswMDA+XIYADbtueVUhNAm4gs53K5O47jtBwUwHGcFtd17xqGsQzEgKKIvG000X2Pvr5xHovIQ121AcyGYbiys7PzFSAWi50zDGNIREapbi9AEegENkRkMJVKFZsC1+S6bgaYArobLOALcK9cLr8xTfMl0NMI3vBnz+fzrdrwM0qpS1SfPgrYUkr5IrIUBMF8Lae5XK5TW25deCSXaVZra2unTNNcBXqBj+Vy+Uo6nd46dnAU+JF7dU3pdPqXiFylejAvmqa5uLv92MAAqVSqKCKDVJ/BleNknehA/QF7cy2MjI/mRAAAAABJRU5ErkJggg==);
	background-repeat: no-repeat;
	background-size: 18px 18px;
	background-position: 10px 50%;
	background-color: #1f2941;
	border: none;
	margin: 0;
	width: 100%;
    border-radius: 12px;
}

.header-search{
    margin-left: 20px;
}

.header-search:hover input[type="search"]{
    transform: rotate(30deg);
    opacity: 1;
}

.header-search input[type="search"]{
	background-image: url(../img/betnew/search-dark.svg);
	background-repeat: no-repeat;
    background-position: center;
    background-color: inherit;
    background-size: auto;
	border: none;
    font-family: "Montserrat",sans-serif;
	margin: 0;
    padding: 0;
    border-radius: 0;
    width: 19px;
    height: 19px;
    cursor: pointer;
    opacity: .7;
    transition: .3s;
}

.block-topmenu{
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    max-width: 290px;
    width: 100%;
    background-color-: #F3F5FC;
    z-index: 20;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    overflow-y: auto;
    padding-bottom: 30px;
    transition: .3s;
    background-image: url(../img/imgmenuz2.webp);
}

.block-topmenu.active{
    left: 0;
}
.block-topmenu.active .topmenu-else-links,
.block-topmenu.active .list-menu{
    animation: fade-in 0.4s ease-in forwards;
}
/* Animation keyframes */

@keyframes fade-in {
  0% {
    opacity: 0;
    margin-left: -150px;
    display: none;
  }

  100% {
    opacity: 1;
    margin-left: -0px;
    display: block;
  }
}

.block-topmenu_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.block-topmenu_head svg{
    max-width: 17px;
    margin-left: auto;
    opacity: .7;
    cursor: pointer;
    /* Анимация появления слева направо - 2025-01-27 */
    animation: slideInFromLeft 0.5s ease-out;
}

/* Анимация появления иконки закрытия слева направо - 2025-01-27 */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 0.7;
    }
}

.block-topmenu_head svg:hover{
    opacity: 1;
}

.block-topmenu_head svg use{    
    transform: scale(2);
    transform-origin: 50%;
}

.block-topmenu .header-logo{    
    margin: 0 auto;
}

.block-topmenu .header-logo img{    
    max-width: 150px;
    height:150px;
}

.block-topmenu .header-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-: 30px 0 0;
    padding: 20px;
    background-color-: #fff;
}

.block-topmenu .header-btn .reg-btn{    
    margin-left: 0;
    margin-bottom: 20px;
}

.block-topmenu .header-btn .btn{
    width: 160px;
}

.block-topmenu .header-menu{
    display: flex;
    flex-direction: column;
}

.block-topmenu .header-menu a{
    margin-right: 0;
}

.one-menu a{
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
	text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    padding: 8px 25px;
    color: #000;
}

.one-menu a:hover{
	background: #ffc400;
}

.img-one-menu{
	width: 24px;
	margin-right: 8px;
}

.one-menu a svg{
	fill: #2f2fde;
	width: 25px;
	height: 25px;
}

.list-menu-border{
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.09);
	margin: 15px 0;
}

svg.icon-external{
	margin-left: 3px;
    margin-bottom: 0px;
	fill: #c6c6c6;
}

.one-menu.open-menu.active .h-one-open-menu{
	background: #ffc400;
}

.one-menu a svg.svg-open{
	transform: rotate(90deg);
	position: absolute;
	right: 20px;
	margin-top: 1px;
}

.one-menu.open-menu.active .h-one-open-menu svg.svg-open{
	fill: #2f2fde;
	transform: rotate(-90deg);
}

.one-menu.open-menu .one-open-menu a{
	font-size: 12px;
}

.one-menu.open-menu .one-open-menu a .img-one-menu svg{
	fill: #ffbb39;
    transition: .3s;
}

.one-menu.open-menu .one-open-menu a:hover .img-one-menu svg{
	fill: #2f2fde;
}

.one-menu.open-menu .one-open-menu a{
	text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3333;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    padding: 5px 12px;
}

.one-menu.open-menu .one-open-menu a span{
	text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
}

.one-menu.open-menu .one-open-menu .img-one-menu{
    width: 22px;
    margin-right: 20px;
    margin-left: 40px;
}

.one-menu.open-menu .one-open-menu{
	display: none;
}

.one-menu.open-menu.active .one-open-menu{
	display: block;
}

.topmenu-line{
    width: 100%;
    background-color: rgba(0,0,0,.2);
    width: calc(100% - 50px);
    height: 2px;
    margin: 10px auto;
}

.topmenu-else-links a{
    display: block;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 25px;
    color: #000;
}

.topmenu-else-links a:hover{
    background-color: #ffc400;
}

.top-menu-profile-info{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

.top-menu-profile-info > span,
.top-menu-profile-balance > span{
    margin-right: 10px;
    background-color: #2f2fde;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
}

.top-menu-profile-log-out{
    margin-left: auto;
    opacity: .7;
    height: 17px;
}

.top-menu-profile-log-out:hover{
    opacity: 1;
}

.top-menu-profile-log-out svg path{
    fill: #000;
    stroke: #000;
    stroke-width: 0.4;
}

.profile-btn-topmenu{
    margin: 0px 20px 20px;
}

.top-menu-profile-balance{
    margin: 20px 0;
    display: flex;
}

.header .header-balance{
    padding: 0;

}

.header-balance{
    border-radius: 10px;
/*    padding: 5px 15px;*/
    display: flex;
    align-items: center;
    justify-content: start;
}

.h-header-balance,
.text-header-balance,
.header-balance span{
	font-size: 16px;
    font-weight: 600;
    width: auto;
}

.profile-btn-topmenu .btn{
    max-width-: 130px;
    margin: 0 auto;
}

.profile-btn-topmenu .btn + .btn{
    margin-top: 10px;
}


.list-routers{
    font-size: 14px;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: 2px;
	margin-bottom: 15px;
	width: 100%;
}

.list-routers a{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	padding: 13px 15px;
	color: #fff;
	font-size: 12px;
	border-top: 1px solid rgba(38,46,72,.5);
}

.list-routers a:first-child{
	border-top: none;
}

.list-routers a:hover{
	background: rgba(38,46,72,.5);
}

.img-list-routers{
	width: 50px;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.img-list-routers img{
	max-height: 20px;
}

.title-list-routers{
	width: calc(100% - 95px);
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
	color: #fff;
	font-weight: 700;
}

.col-list-routers{
	width: 33px;
	text-align: right;
	color: #7388b6;
    font-size: 10px;
}

.h-aside{
    color: #7388b6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -.12px;
    margin: 0 0 3px;
    opacity: .3;
    text-transform: uppercase;
	padding: 0 15px;
}

.list-routers.list-aside-cat .img-list-routers{
	width: 20px;
}

.list-routers.list-aside-cat .title-list-routers{
    width: calc(100% - 65px);
}
























.modal-overflow{
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
	opacity: 0;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
    background-color: rgba(0,0,0,.7);
}

.modal-overflow.active{
	z-index: 100;
	opacity: 1;
}

.modal-container{
	position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
	opacity: 0;
	width: 100%;
    pointer-events: none;
}

.modal-container.active{
	opacity: 1;
	z-index: 100000;
    pointer-events: all;
}

.modal-win{
	display: none;
	position: relative;
	padding: 0;
	width: 400px;
	left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    overflow: hidden;
}

#reg.modal-win{
    width: 736px;
    left: 50%;
}

.modal-win.active{
	z-index: 102;
	display: block;
}

.close-small{
	width: 42px;
    height: 42px;
    border: none;
    font-weight: 300;
    font-size: 24px;
    line-height: 24px;
    
    border-radius:19px;
    color: #c6c6c6;
    padding: 0;
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    z-index: 10;
    transition: color .1s ease-in-out;
	cursor: pointer;
}

.close-small svg{
	fill: #4a3e6d;
}

.close-small svg:hover{
	fill: #4a3e6d;
}

.parent-modal-win{
	display: flex;
	justify-content: space-between;
	background-color: #fff;
}

.img-modal-win{
	width: 50%;
    padding: 32px;
    background-color: #1a2131;
	background-image: url(../img/register-image.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: 300px;
    text-align: center;
    display: none;
}

#reg .content-modal-win{
    width: 50%;
    background-image-: url(../img/imgsrch.jpg);
}
#reg .img-modal-win{
    display: block;
}
.content-modal-win{
	width: 100%;
	padding: 32px;
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-image-: url(../img/imgsrch.jpg);
    background-color:#000;
}

.content-modal-win a{
    font-weight: 600;
}

.content-modal-win .bottom-modal-text p a{
    text-decoration: underline;
}

.content-modal-win .text-check a{
    text-decoration: underline;
}

.btn-modal-win{
	display: flex;
	align-items: center;
}

.one-btn-modal-win{
	display: flex;
	align-items: center;
	margin-right: 13px;
}

.one-btn-modal-win span{
	text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
	font-size: 15px;
	font-weight: 600;
    line-height: 1.5;
	color: #4a3e6d;
	cursor: pointer;
    text-align: center;
	padding: 5px 10px;
}

.one-btn-modal-win span:hover{
	color: #4a3e6d;
}

.one-btn-modal-win.active span{
    border-radius: 14px;
    padding: 5px 10px;
    border-radius: 3rem;
	color: #fff;
	cursor: default;
    background-color: #3e3ef4;
    opacity: 1;
	-moz-appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
    justify-content: flex-start;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: color .1s ease-in-out,background-color .1s ease-in-out,border-color .1s ease-in-out;
    border: 2px solid transparent;
}


.h-form-modal-win{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
	width: 100%;
    line-height: 1;
    color: #FFF;
}

.form-modal-win{
	margin: 22px 0 0;
}

input{
	position: relative;
    display: flex;
    align-items: center;
	border: 1px solid #222332;
    transition: color .1s ease-in-out,border-color .1s ease-in-out;
    border-radius: 5px;
    padding: 12px 14px;
	padding-left: 36px;
	width: 100%;
	margin-bottom: 10px;
	background-color: transparent;
    font-size: 12px;
	outline: none;
	font-weight: 400;
	color: #4a3e6d;
}

.modal-win input{
    border: 0px solid rgba(0,0,0,.4);
    border-radius: 10px;
	background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: 10px 50%;
    padding-left: 14px;
    background-color: #ffffff63;
}

.login-form .forgot{
    display: flex;
    justify-content: flex-end;
}

#login .btn,
#reg .btn{
    margin: 20px auto 0;
}

button.submit.disabled{
    pointer-events: none;
    opacity: 0.7;
}

.answer{
    text-align: center;
    margin: 10px 0 0;
	color: #4a3e6d;
}

.modal-win input:hover,
.modal-win input:active,
.modal-win input:focus,
.modal-win input:focus-visible{
	border: 2px solid #ffc400;
	outline: none;
}

::-webkit-input-placeholder{
    color: #c6c6c6;
}

:-moz-placeholder{
    color: #c6c6c6;
}
::-moz-placeholder{
    color: #c6c6c6;
}

:-ms-input-placeholder{
    color: #c6c6c6;
}

.one-form-modal-win svg.svg-bg{
	width: 20px;
	height: 20px;
	fill: #FFF;
    transition: fill .1s ease-in-out;
	position: absolute;
	margin-top: -42px;
	margin-left: 13px;
	left: calc(50% + 33px);
}

.pass-open{
	background-color: #3e3ef4;
    color: #fff;
    border-color: transparent;
	width: 24px;
	height: 24px;
    padding: 4px;
	border-radius: 6px;
    position: absolute;
	left: calc(100% - 33px);
	top: -44px;
	-moz-appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    outline: none;
    display: inline-block;
    transition: color .1s ease-in-out,background-color .1s ease-in-out,border-color .1s ease-in-out;
}

.pass-open svg{
	fill: #fff;
	width: 16px;
	height: 16px;
}

.pass-open.active svg:nth-child(1),
.pass-open svg:nth-child(2){
	display: none;
}

.pass-open.active svg:nth-child(2){
	display: inline-block;
}

.forgot a{
    font-size: 11px;
	text-decoration: underline;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: color .1s ease-in-out;
	display: flex;
}

.login-social{
	margin: 30px 0 15px;
	text-align: center;
}

.h-login-social{
	font-size: 13px;
	color: #4a3e6d;
	font-weight: 700;
	margin: 0 0 4px;
}

.bottom-modal-text{
	font-size: 14px;
    color: #4a3e6d;
    line-height: 1.2;
	margin: 10px 0 0;
	text-align: left;
}

.bottom-modal-text p{
	display: block;
	white-space: break-spaces;
}

.bottom-modal-text span{
    font-size: 14px;
	color: #4a3e6d;
	display: block;
	width: 100%;
	margin: 10px 0 0;
}

.one-form-modal-win input[type="checkbox"]{
	display: block;
	width: 26px;
    height: 26px;
    margin: 0 8px 0 0;
	padding: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #2f2fde;
    transition: border-color .1s ease-in-out;
	z-index: 991;
}

.one-form-modal-win input[type="checkbox"]:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -4px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 6px;
    visibility: hidden;
    transform: rotate(-45deg);
    border-radius: 1px;
    border-color: #2f2fde;
    border-style: solid;
    border-width: 0 0 2px 2px;
	z-index: 992;
}

.one-form-modal-win input[type="checkbox"].active{
    border-color: #2f2fde;
}

.one-form-modal-win input[type="checkbox"].active:before{
	visibility: visible;
}

.form-check{
	display: flex;
	align-items: center;
	font-size: 11px;
    color: #4a3e6d;
    line-height: 1.2;
}

.margin-form-check{
	margin: 10px 0 8px;
}

.text-check{
	text-align: left;
}

.error-check{
	display: none;
	font-size: 11px;
	margin: 0 0 5px;
}

.error-check.active{
	display: block;
}


.modal-win#remind{
	width: 360px;
	background: #fff;
}

.h-remind{
	font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #4a3e6d;
    display: block;
    background: #fff;
    border-radius: 14px 14px 0 0;
	padding: 24px 24px 0;
}

.content-remind{
	padding: 24px;
	padding-top: 0;
	position: relative;
	z-index: 995;
}

#remind p{
	display: inline-block;
    color: #4a3e6d;
    margin-bottom: 4px;
}

#remind .one-form-modal-win svg.svg-bg{
	left: 24px;
}

.submit-remind{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 0;
}

.history-remind{
	background-color: #2f2fde;
    color: #fff;
	border-radius: 10px;
	padding: 10px;
	width: 36.5px;
	height: 36.5px;
	margin-right: 8px;
	-moz-appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.history-remind svg{
    fill: #fff;
	width: 24px;
	height: 24px;
}

.history-remind:hover svg{
    fill: #fff;
}






























.footer-menus{
	padding: 0 0 15px;
}

.footer-menus .container{
	width: 100%;
	display: flex;
}

.footer-support{
	width: 25%;
    max-width: 180px;
    margin-right: 40px;
}

.footer-support .btn{
    margin-top: 20px;
    font-weight: 600;
}

.footer-logo svg{
    max-height: 60px;
    width: 100%;
}

.footer-copyright{
    width: calc(100% - 420px);
}

.text-footer-support{
	font-size: 11px;
    line-height: 12px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.email-footer-support{
	margin: 0;
}

.email-footer-support img{
	width: 28px;
	height: 28px;
	margin-right: 5px;
}

.email-footer-support a{
	color: #fff;
	font-size: 12px;
}

.footer-menu{
	width: 25%;
    max-width: 160px;
	margin-right: 40px;
}

.h-footer-menu{
	font-weight: 700;
    font-size: 16px;
    color: #2f2fde;
    margin-bottom: 20px;
}

.footer-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.footer-menu ul li{
	margin: 0 0 5px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer-menu ul li:last-child{
	border-right: none;
}

.footer-menu ul li a{
	padding: 0;
    text-align: left;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.footer-menu ul li a:hover{
    color: #2f2fde;
}

.footer-social{
	width: 250px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer-social img{
	border-radius: 10px;
	margin: 0 10px 0 0;
	width: 40px;
	height: 40px;
}

.footer-tournaments{
	width: calc(100% - 250px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-tournaments svg{
	height: 30px;
	margin: 0 10px 0 0;
}

.footer .copyright_gambling_soft {
    color: #000;
}

.footer .copyright_gambling_soft span{
    color: #000;    
}

.footer .copyright_gambling_soft a{
    color: #2f2fde;
    border-color: #2f2fde;
}

.footer .copyright_gambling_soft svg,
.footer .copyright_gambling_soft svg g{
    fill: #2f2fde !important;
}

.footer-pay-logo{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #f3f5fc;
    border-radius: 8px;
    padding: 20px 0;
    margin-bottom: 40px;
}

.footer-pay-logo img{
    max-width: 105px;
    max-height: 54px;
}

.footer-providers-logo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.footer-providers-logo .img-wrap{
    padding: 20px 10px;
    width: 200px;
    height: 75px;
    filter: contrast(.5);
    text-align: center;
}

.footer-providers-logo img{
}


.footer-copyright .container{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 20px;
}

.footer-copyright .copyright{
    padding: 0;
	width: 100%;
	font-size: 12px;
}



.hidden{
	display: none;
}

.open-menu-mobile,
.dropdown-left-aside{
	display: none;
}


.tournaments-bg{
    background-color: #f3f5fc;
}

.tournaments-bg .main_tournament-details{
    background-color: #fff;
}

.lottery__tabitem{
    background: none;
    padding: 0;
    width: auto;
    font-weight: 500;
    margin: 0 20px;
    min-width: 250px;
}

.lottery__tabitem.lottery__tabitem_active{
    background: none;
    color: #2f2fde;
}

.main__item{
    background-color: #fff;
    background-size: cover;
    background-position: right center;
    padding: 20px;
    margin: 15px 0 20px;
    border-radius: 10px;
    position: relative;
}

.panel-sticker{
    background-color: #ffc400;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-width: 140px;
    text-align: center;
    border-radius: 10px 0 10px 0;
}

.panel.panel_tournament{
    max-width: 566px;    
    background-color: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 10px;    
    padding: 25px;
    box-shadow: 3px 4px 16px rgb(0 0 0 / 7%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.panel__header{
    margin: 0 0 15px;
    display: block;
    width: 100%;
}

.panel__title.panel__title_tournament.title{
    font-size: 36px;
}

.pannel__sides-bg{
    background: #fff;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
}

.pannel__sides-bg .l-side,
.pannel__sides-bg .r-side{
    display: flex;
    align-items: center;
}

.sides-line{
    background: #000;
    width: 2px;
    min-height: 100%;
    margin: 0 10px;
    align-self: stretch;
}

.pannel__sides-bg svg{
    margin-right: 10px;
}

.panel__prize{
    width: auto;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
    display: block;
}

.panel__prize.large{
    text-align: center;
    padding: 20px 0;
}

.panel__prize.large .panel__countnote.title{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.panel__prize.large .panel__countdown{
    justify-content: center;
}

.panel__prize.large .panel__countdown,
.panel__prize.large .panel__countbutton{
    font-size: 36px;
    color: #2f2fde;
}

.panel__countdown{
    padding-right: 0;
    font-size: 14px;
    line-height: inherit;
    display: flex;
    align-items: flex-end;
}

.panel__countnote.title{
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.panel__countbutton{
    position: static;
    background: none;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 0 5px;
}

.panel__timer{
    width: auto;
    padding-left: 0;
}

.timer__table{
    min-width: 105px;
}

.timer__table .timer__row_digit .timer__cell{
    color: #000;
    padding: 0;
    background: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
}

.timer__table .timer__row_digit .timer__cell.timer__cell_empty,
.timer__table .timer__cell:nth-child(4),
.timer__table .timer__cell:nth-child(6){
    padding: 0;
}

.timer__table .timer__cell.timer__cell_empty:before{
    padding-right: 0;
}

.panel__timer .timer__note{
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.panel__caption{
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
}

.panel__info-button{
    margin: 50px 0 0;
    display: flex;
}

.main_tournament-details{
    padding-top: 20px;
}

.tournament-details__header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.tournament-details__header .panel.panel_tournament{    
    background-color: inherit;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    border: none;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.tournament-details__header .pannel__sides-bg{    
    margin-bottom: 0;
    margin-top: 20px;
}

.tournament-details__header .panel__caption{    
    text-align: center;
    font-size: 14px;
}

.tournament-details__header .panel__title.panel__title_tournament.title{    
    font-size: 24px;
    text-align: center;
}

.tournament-details__btns{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #f3f5fc;
}

.details__btn{
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
}

.details__btn:hover{
    color: #2f2fde;
}

.leaderboard__slider.slider_leaderboard{
    background: #f3f5fc;
    margin-top: 0;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.leaderboard__slider.slider_leaderboard::after{
    content: '';
    position: absolute;    
    top: 0;
    right: -8px;
    width: 200px;
    height: 400px;
    background: url(../img/betnew/right-detail.png);
    background-repeat: no-repeat;
}

.leaderboard__slider.slider_leaderboard::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 400px;
    background: url(../img/betnew/left-detail.png);
    background-repeat: no-repeat;
}

.leaderboard__block{
    max-width: 100%;
    width: 460px;
    min-width: 290px;
    margin: 0 auto;
}

table.table.table_leaderboard td,
table.table.table_leaderboard th{
    border: none;
    font-weight: 600;
}

.table_leaderboard .table__body .table__row:nth-child(odd),
.table_leaderboard .table__body .table__row:nth-child(2){
    background-color: #fff;
}

.table_leaderboard .table__head .table__headrow .table__cell:first-child,
.table_leaderboard .table__body .table__row .table__cell:first-child{
    padding-left: 40px;
}

.table_leaderboard .table__head .table__headrow .table__cell:last-child,
.table_leaderboard .table__body .table__row .table__cell:last-child{
    padding-right: 40px;
}

.tournament-details__leaderboard,
.tournament-details__slider,
.tournament-details__summary,
.tournament-details__crosstitle.tournament-details__crosstitle_small.title{
    padding-bottom: 20px;
    margin: 0;
}

.tournament-details__crosstitle.tournament-details__crosstitle_small.title{
    text-align: center;
}

.items_tournament{
    display: flex;
    flex-wrap: wrap;
}

.items_tournament .game-slide{
    margin: 10px;
    max-width: 16.66%;
}

.tournament-details__summary .summary__block:first-child .summary__cell{
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
}

.parent-search-list-game .list-game .parent-game-slide{
    width: calc(20% - 20px);
    animation: cardFadeIn 0.4s ease both;
}
.parent-search-list-game .list-game .parent-game-slide:nth-child(1)  { animation-delay: 0.03s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(2)  { animation-delay: 0.06s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(3)  { animation-delay: 0.09s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(4)  { animation-delay: 0.12s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(5)  { animation-delay: 0.15s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(6)  { animation-delay: 0.18s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(7)  { animation-delay: 0.21s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(8)  { animation-delay: 0.24s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(9)  { animation-delay: 0.27s; }
.parent-search-list-game .list-game .parent-game-slide:nth-child(10) { animation-delay: 0.30s; }
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(14px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

#search .data-game-slide{
    display: none;
}

.modal-win#search{
    background: rgba(5, 8, 20, 0.85);
    background-image: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: searchOverlayIn 0.3s ease;
}
@keyframes searchOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-win#search .search-field{
    position: relative;
    background: linear-gradient(145deg, rgba(18,24,42,0.97) 0%, rgba(12,18,35,0.99) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
    max-width: 1433px;
    width: 100%;
    margin: 0 auto;
    min-height: 90%;
    height: 90%;
    padding: 30px 50px;
    margin: 40px auto;
    border-radius: 24px;
    overflow: auto;
    animation: searchPanelIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes searchPanelIn {
    from { opacity: 0; transform: translateY(-24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-main-title{
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff 60%, rgba(180,160,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-main-title .close-small{
    position: static;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.modal-main-title .close-small:hover{
    background: rgba(255,255,255,0.15);
    transform: rotate(90deg);
}
.modal-main-title .close-small svg{
    width: 55%;
    height: 55%;
    fill: rgba(255,255,255,0.8);
}

.parent-search-list-game{
    max-width: 100%;
}

.modal-win#search .search-field input{
    max-width: 100%;
    width: 100%;
    border: 2px solid transparent;
    background-image: linear-gradient(#0d1220, #0d1220),
                      linear-gradient(90deg, #6c47ff, #a855f7, #ec4899, #6c47ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 300% 100%;
    animation: searchBorderFlow 4s linear infinite;
    padding: 16px 20px 16px 52px;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    border-radius: 14px;
    outline: none;
    transition: box-shadow 0.3s;
    box-shadow: 0 4px 24px rgba(108,71,255,0.15);
    margin-bottom: 28px;
}
.modal-win#search .search-field input:focus{
    box-shadow: 0 4px 32px rgba(108,71,255,0.35);
}
.modal-win#search .search-field input::placeholder{
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}
@keyframes searchBorderFlow {
    0%   { background-position: 100% 100%, 0% 50%; }
    100% { background-position: 100% 100%, 300% 50%; }
}
/* Search icon removed - using native browser icon */

.log-out-mobile{
    display: none;
}

.summary__item .summary__cell:first-child .summary__title.title{
    font-weight: 600;
}

.block-topmenu .change-theme-color{
    display: none;
}

.change-theme-color{
    display: none;
   
    margin: 0 0 0 20px;
    cursor: pointer;
}

.change-theme-color input[type="checkbox"]{
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.change-theme-color input[type="checkbox"]:checked + span::after{
    top: 19px;
    background-color: #171824;
}

.change-theme-color input[type="checkbox"]:checked + span{
    background-color: #313249;
}

.change-theme-color > span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 20px;
    height: 40px;
    padding: 3px 0;
    border-radius: 100px;
    background-color: #bfc8dc;
    position: relative;
}

.change-theme-color > span::after{
    transition: all 0.3s linear;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin: 2px;
    transform: translate(0);
    background-color: #fff;
    transition: .3s;
}

.change-theme-color span span {
    font-size: 0;
    position: relative;
    transition: .3s;
    transform: rotate(120deg);
    opacity: 0;
}

.change-theme-color span span:first-child {
    top: 5px;
}

.change-theme-color span span:last-child {
    bottom: 5px;
}

.change-theme-color span span.active:first-child {
    top: 0px;
}

.change-theme-color span span.active:last-child {
    bottom: 0px;
}

.change-theme-color span span.active {
    transform: rotate(0deg);
    opacity: 1;
}

.change-theme-color span span {
    font-size: 0;
    position: relative;
    transition: .3s;
}

.change-theme-color span span svg{
    width: 16px;
    height: 16px;
    
}

.game-slide-anim{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.game-slide-anim svg{
    position: absolute;
    top: 0;
    left: 0;
}

.game-slide-anim svg + svg{
    display: none;
}

.ulogin-buttons-container{
    width: auto !important;
}

.ulogin-button-steam{
    margin-right: 0 !important;
}

.ulogin-dropdown-button{
    display: none !important;
}

body.dark-theme .page-content .support-content{
    background-color: #171824;
}

body.dark-theme .page-content .support-content.user-support-block h1.page-title{
    color: #fff;
}

body.dark-theme .page-content form#add-support-reply{
    background: #171824;
}

body.dark-theme .page-content form#add-support-reply{
    background: #171824;
}

.page-content .support-content .block-submit-btn-win{
    justify-content: flex-end;
}

.page-content .support-content.user-support-block form#add-support-reply textarea[name=message]{
    resize: none;
}

.page-content .support-content .content-one-message{
    width: auto;
}

.page-content .support-content .one-message.User .content-one-message{
    width: auto;
}

.page-content .support-content .meta-one-message{
    justify-content: flex-start
}

.page-content .support-content .author-one-message{
    width: auto;
}

.page-content .support-content .info-one-message{
    width: auto;
    margin: 0 10px;
}

.wager-scale{
    margin-left: 20px;
}

.wager-scale__title{
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.wager-scale__wrap{
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.wager-scale__inner{
    height: 100%;
    background: #8ABF4F;
}

.wager-scale__percent{
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.profile .wager-scale{
    margin-left: 0;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.profile .wager-scale__title,
.profile .wager-scale__percent{
    color: inherit;
    font-size: 16px;
}
.profile .wager-scale__wrap{
    height: 8px;
    margin: 0 12px;
}

.topmenu .wager-scale{
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding: 5px 15px;
}

.topmenu .wager-scale__wrap{
    height: 8px;
    margin: 0 12px;
}

.one-form-modal-win select{
    align-items: center;
    transition: color .1s ease-in-out,border-color .1s ease-in-out;
    height: 44px;
    border-radius: 10px;
    padding: 0 10px;
    width: 100%;
    background-color: transparent;
    line-height: 20px;
    font-size: 14px;
    outline: none;
    font-weight: 600;
    color: #FFF;
    outline: none;
    border: 2px solid rgba(0,0,0,.4);
}

.one-form-modal-win select option{
    background-color: #fff;
}
.one-form-modal-win__title{
    font-size: 11px;
    margin-bottom: 5px;
}

.panel__info-button .opt-in{
    margin-left: 15px;
    cursor: pointer;
}

.panel__info-button .opt-in span:last-child{
    display: none;
}

.panel__info-button .opt-in.active{
    color: #858585;
    pointer-events: none;
}

.panel__info-button .opt-in.active:hover{
    border: 1px solid #1b1414;
}

.panel__info-button .opt-in.active span:first-child{
    display: none;
}

.panel__info-button .opt-in.active span:last-child{
    display: block;
}

.tournament-details__header .panel__info-button{
    display: flex;
    justify-content: center;
}

.tournament-details__header .opt-in{
    margin: 0 auto;
}

.top-filters{
    display: flex;
    align-items: flex-end;
}

.top-filters__btn {
    display: none;
}

.top-filter{
    position: relative;
    z-index: 19;
}

.top-filter + .top-filter{
    margin-left: 4px;
}

.top-filter .text{
    color: #858585;
    padding-bottom: 8px;
}

.top-filter .title-block{
    display: flex;
    align-items: center;
    background-color: #f3f5fc;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    min-width: 150px;
    font-weight: 600;
}

.top-filters .title-block svg{
    margin-left: 8px;
}

.top-filter.providers .title-block{
    padding: 8px 11px;
}

.top-filter.categories .title-block{
    border: 1px solid #000;
}

.top-filter .valNum{
    display: none;
}

.top-filter .default{
    margin-right: auto;
}

.top-filter .valNum.active{
    display: block;
    margin-right: auto;
}

.top-filter .valNum.active + .default{
    display: none;
}

.top-filters .dropdown{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: calc(100% + 50px);
    padding: 4px;
    background-color: #f3f5fc;
    border-radius: 8px;
    box-shadow: 0px 7px 20px 2px rgba(0,0,0,0.32);
    max-height: calc(100vh - 300px);
    overflow: auto;
}

.top-filters .dropdown::-webkit-scrollbar{
    width: 3px;
    background: transparent;
}

.top-filters .dropdown::-webkit-scrollbar-thumb{
    width: 3px;
	background-color: #858585;
    border-radius: 2px;
}

.top-filter.active .dropdown{
    display: block;
}

.top-filter.categories .dropdown{
    padding: 12px;
}

.top-filter.categories .dropdown-item{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.top-filter.categories .dropdown-item + .dropdown-item{
    margin-top: 8px;
}

.top-filter.categories .dropdown-item.active,
.top-filter.categories .dropdown-item:hover{
    background-color: #d63741;
    color: #fff;
    border: none;
    border: 1px solid #d63741;
}

.top-filter.categories .dropdown-item.active svg{
    display: block;
    stroke: #fff;
    margin-right: 8px;
}

.top-filter.categories .dropdown-item.revers svg{
    transform: rotate(180deg);
}

.top-filter.categories .dropdown-item svg{
    display: none;
}

.top-filter.providers .dropdown-item{
    padding: 8px;
    color: #858585;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.top-filter.providers .dropdown-item.non-result{
    display: none;
}

.top-filter.providers .dropdown-item:hover{
    background-color: #1b14140a;
}

.top-filter.providers .checkbox{
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border: 1px solid rgb(157 148 148 / 50%);
    border-radius: 4px;
}

.top-filter.providers .dropdown-item.active .checkbox{
    background-color: #fff;
    border: 1px solid #fff;
}

.top-filter.providers .checkbox svg{
    display: none;
}

.top-filter.providers.active .checkbox svg{
    display: block;
}

.top-filter.providers .checkbox path{
    stroke-width: 4px;
    stroke: #ababab;
}

.top-filter.providers .dropdown-item.active .checkbox path{
    stroke: #2f2fde;
}

.top-filter.providers.active .provider-items{
    margin-left: auto;
}

.load-more{
    max-width: 200px;
    margin: 20px auto 0;
}

.modal-game-name span{
    color: #fff;
}
.top-pannel .name{
    color: #000;
}
.top-pannel .arrow {
    border: 1px solid rgba(0,0,0,0.5);
}
.top-pannel .arrow img{
    filter: invert(100%);    
}

@media screen and (max-width: 1620px){
    .container{
        max-width: 1170px;
    }
    .parent-swiper-navination{
        right: calc((100vw - 1130px) / 2);
    }
    
    .list-game .parent-game-slide{
        width: calc(25% - 20px);
    }
    
    .head-one-category{
        width: calc(25% - 20px);
    }
    .one-index-category.one-row .parent-game-slide:nth-child(n+5),
    .one-index-category.two-rows .parent-game-slide:nth-child(n+9){
        height: 0;
        pointer-events: none;
        overflow: hidden;
        margin: 0;
    }
    .footer-providers-logo .img-wrap{
        padding: 10px;
        width: auto;
        height: 70px;
    }
    .index-slider .swiper-slide{
        min-height: 350px;
    }
    
}

@media screen and (max-width: 1401px){
    .header-menu{
        display: none;
    }
    .header-left{
        width: 58%;
    }
}

@media screen and (max-width: 1170px){
    .parent-swiper-navination{
        right: 20px;
    }
    
    .footer-pay-logo{
        padding: 10px 0;
    }
    
    .footer-pay-logo img{
        max-width: 100px;
        padding: 10px;
    }
    
    .footer-providers-logo .img-wrap{
        height: 50px;
    }
}

@media screen and (max-width: 1200px){
    
    .yes-login-header-btn .wager-scale{
        display: none;
    }

    .header .change-theme-color{
        display: none;
    }
    
    .block-topmenu .change-theme-color{
        display: flex;
        align-items: center;
        max-width: 240px;
        margin: 10px auto;
        padding: 5px 15px;
        min-height: 40px;
        border-radius: 10px;
        background-color: #fff;
    }
    
    body.dark-theme .block-topmenu .change-theme-color{
        background-color: #171824;
    }
    
    .block-topmenu .change-theme-color > span{
        flex-direction: row;
        width: 40px;
        height: 20px;
        padding: 0 3px;
        margin-left: auto;
    }
    
    .block-topmenu .change-theme-color span span:first-child{
        top: inherit;
        left: 5px;
    }
    
    .block-topmenu .change-theme-color span span.active:first-child{
        top: inherit;
        left: 0px;
    }
    
    .block-topmenu .change-theme-color span span:last-child{
        bottom: inherit;
        right: 5px;
    }
    
    .block-topmenu .change-theme-color span span.active:last-child{
        bottom: inherit;
        right: 0px;
    }
    
    .block-topmenu .change-theme-color input[type="checkbox"]:checked + span::after{
        top: inherit;
        left: 19px;
    }
    
    
    .TopSwiper .swiper-slide-active .img-wrap{
        bottom: -8%;
    }
    .full-width-page{
        padding-top: 70px;
    }
    .fixed-header{
        padding: 5px 20px;
        height: 70px;
    }
    .index-slider .swiper-slide{
        min-height: 250px;
    }
    .log-out-mobile{
        display: block;
    }
    .header-logo{
        /*max-width: inherit;*/
        width: auto;
        margin: 0;
    }
    .header .header-balance{
        display: none;
    }
    .no-login-header-btn .header-btn{
        display: none;
    }
    .header-right .header-search{
        display: none;
    }
    .header-left{
        width: calc(50% + 47.5px);
        justify-content: space-between;
    }
	.header-menu a{
		margin: 0 9px 0 0;
		font-size: 13px;
	}
	
	span.title-slide{
		font-size: 30px;
	}
	
	.bg-swiper-slide{
		max-width: 100%;
	}
	
	.jackpot-tabs{
		width: 350px;
		min-height: 202px;
		padding-bottom: 8px;
	}
	
	.jackpot-tabs .list-game .parent-game-slide:nth-child(4){
		display: none;
	}
	
	.jackpot-tabs .list-game .parent-game-slide{
		width: calc(33.33% - 20px);
	}
	
	.h-jackpot-tabs{
		margin-top: 0;
	}
	
	.jackpot-tabs span{
		font-size: 26px;
		letter-spacing: 0;
	}
	
	.summ-jackpot-tabs{
		font-size: 30px;
	}
	
	.head-tabs .index-slider{
		width: calc(100% - 365px);
	}
	
	.head-tabs .index-slider .swiper-slide{
		min-height: 202px;
	}
	
	.index-banner a{
		font-size: 14px;
	}
	
	.left-aside,
	.wrapper-left-aside{
    	width: 200px;
	}
	
	.main-aside{
		width: calc(100% - 215px);
	}
	
    .index-banner{
        background-position: right center;
        padding: 20px;
    }
	
	
	
	
	
	
	
	
	
	
	
	
	.footer-social{
		width: 145px;
	}
	
	.footer-social img{
		border-radius: 4px;
		margin: 0px 6px 0 0;
		width: 30px;
		height: 30px;
	}
	
	.footer-tournaments{
		width: calc(100% - 160px);
	}
	
	.footer-tournaments svg{
		height: 20px;
		margin: 0 2px 0 0;
	}
	
}


@media screen and (max-width: 1024px){

	.header-menu a{
		font-size: 13px;
		margin: 0 7px 0 0;
	}
	
	.list-anim-btn .anim-btn span{
    	font-size: 18px;
	}
	
	.list-anim-btn .anim-btn small{
		font-size: 11px;
	}
	
}
@media screen and (max-width: 1100px){
   	.main-aside{
		width: 100%;
	} 
}

@media screen and (max-width: 991px){
    
    .index-slider .swiper-slide .img-wrap{
        width: 55%;
        left: 45%;
    }
    
    .swiper-wins .swiper-slide{
        width: 50%;
    }
    
    .h-game-slide{
        padding: 0 3px;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .hover-game-slide .btn{
        padding: 5px 10px;
    }
    
    .hover-game-slide{
        padding: 0;
    }
    
    .head-one-category {
        padding: 15px 10px;
    }
    
    .head-one-category .head-btn{
        display: none;
    }
    
    .list-tabs-wrapper .header-search{
        margin-left: 0;
        
    }
    
    .list-tabs-wrapper .header-search input[type="search"]{
        background-color: #f3f3f5;
        max-width: 100%;
        width: 100%;
    }
    
    .subcat-select{
        background-color: #f3f3f5;        
    }
    
    .TopSwiper .swiper-slide-active .img-wrap{
        bottom: 0;
    }

    .list-tabs-wrapper{
        background: none;
        padding: 0;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    
    .list-tabs{
        width: 100%;
        align-items: center;
        background-color: #f3f3f5;
        padding: 0 15px;
        margin-top: 10px;
        min-height: 60px;
        order: 1;
        border-radius: 10px;
    }
    
    .head-subcat-select{
        
    }
    
    .footer-pay-logo{
        flex-wrap: wrap;
    }
    
	.index-top{
		flex-wrap: wrap;
	}
	
	.index-banner{
		padding: 25px;
		min-height: 200px;
	}
	
	.list-anim-btn{
		margin: 0;
	}
	
	.list-anim-btn .anim-btn{
		width: calc(50% - 8px);
		margin-bottom: 15px;
	}
	
	.one-index-category{
		width: 100%;
	}
	
	.fixed-header{
		padding: 0 15px;
	}
	
	.fixed-header .container{
		background-image: none;
		flex-wrap: wrap;
		padding-left: 0;
		padding-right: 0;
	}
	
	.parent-header-btn{
		justify-content: space-between;
	}
	
	.no-login-header-btn,
	.yes-login-header-btn{
		justify-content: space-between;
	} 
	
	.container{
    	padding: 0 15px;
	}
	
	.header-menu{
		flex-wrap: wrap;
		align-items: flex-start;
		padding-top: 10px;
		padding-bottom: 23px;
	}
	
	.header-menu a{
		width: 100%;
		font-size: 15px;
		margin: 0;
		padding: 7px 0 7px;
	}
	
	.header-menu a,
	.header-menu a:hover,
	.header-menu a.active{
		border-bottom: none;
	}
	
	.header-menu a:hover,
	.header-menu a.active{
		color: #0c6fd5;
	}
	
	.reg-btn-topmenu{
		flex-wrap: wrap;
		align-items: flex-start;
		margin: 0 0 15px;
	}
	
	.reg-btn-topmenu,
	.reg-btn-topmenu .auth-btn{
		display: flex;
	}
	
	.left-aside{
		margin-bottom: 15px;
		position: relative;
		z-index: 9;
	}
	
	.left-aside,
	.wrapper-left-aside{
		width: 100%;
	}
	
	.wrapper-left-aside{
		top: 0;
		position: static;
		height: auto;
		margin-bottom: 10px;
		overflow-y: hidden;
	}
	
	.main-aside{
		width: 100%;
	}
	
	.search-aside{
		padding: 10px 10px 0 10px;
		margin: 0 0 10px;
	}
	
	.modal-win#search .search-field{
    	padding: 20px 15px;
	}
	
	.parent-search-list-game .list-game .parent-game-slide{
		width: calc(25% - 20px);
	}
	
	.dropdown-left-aside{
		width: calc(100% - 20px);
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	    margin: 0 10px;
	}
	
	.one-dropdown-left-aside{
		width: calc(50% - 5px);
	}
	
	.one-dropdown-left-aside .head-subcat-select{
		width: 100%;
	}
	
	.one-dropdown-left-aside .subcat-select{
    	padding: 6px 3px 6px 5px;
	}
	
	.one-dropdown-left-aside .subcat-select-drop{
		width: 100%;
		left: 0;
		margin-top: 15px;
		border-radius: 12px;
	}
	
	.none-mobile{
		display: none;
	}
	
	input[type="search"]{
		padding: 10px 14px 10px 36px;
	}
	
	
	
	
	
	
	
	
	.footer{
		padding-left: 0;
	}
	
}


@media screen and (max-width: 768px){
    
    .list-game.grid{
        grid-gap: 10px;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    #reg.modal-win{
        width: calc(100% - 30px);
    }
    
    #reg .content-modal-win{
        width: 100%;
    }
    
    #reg .img-modal-win{
        display: none;
    }
    
    .parent-swiper-navination{
        display: none;
    }
    
    .TopSwiper .bg-swiper-slide{
        text-align: center;
    }
    
    .one-index-category.one-row .parent-game-slide:nth-child(n+5),
    .one-index-category.two-rows .parent-game-slide:nth-child(n+9){
        height: auto;
        pointer-events: all;
        margin: 10px;
    }
    
    .head-one-category{
		width: calc(33.33% - 20px);        
    }

	.list-game .parent-game-slide{
		width: calc(33.33% - 20px);
	}
	
	.h-one-category{
		font-size: 16px;
	}
	
	.line-one-index-category{
		margin-top: -14px;
		margin-bottom: 8px;
	}
	
	.parent-banner-ihb{
		background-size: 170px 95px;
	}
	
	.index-banner{
		margin-bottom: 15px;
		padding: 15px;
		min-height: 135px;
	}
	
	.jp-summ{
		font-size: 66px;
        line-height: 180px;
        text-align: center;
	}
    
    .jp-summ .shadow{
        right: 0;
    }
	
	.index-banner a,
	.index-banner small{
		font-size: 12px;
	    min-height: 30px;
	}
	
	.list-anim-btn .anim-btn div{
		padding: 15px;
		background-size: 52px 50px;
		background-position: calc(100% - 15px) 50%;
	}
	
	.h-game-slide{
		font-size: 12px;
	}
	
	.the-content{
		margin: 30px 0 30px;
		font-size: 13px;
	}
	
	.parent-search-list-game .list-game .parent-game-slide{
		width: calc(33.33% - 20px);
	}
	
	.head-tabs{
		flex-wrap: wrap;
		margin: 0 0 15px;
	}
	
	.jackpot-tabs{
		width: 100%;
		border: 1px solid #c5991e;
    	padding: 10px 10px 3px 10px;
		min-height: auto;
		margin-bottom: 15px;
		border-radius: 12px;
	}
	
	.h-jackpot-tabs svg{
		width: 11px;
		height: 11px;
    	margin: -2px 6px 0;
	}
	
	.jackpot-tabs span{
		font-size: 17px;
	}
	
	.summ-jackpot-tabs{
		font-size: 20px;
		margin-top: 0;
		margin-bottom: 5px;
	}
	
	.jackpot-tabs .list-game .parent-game-slide{
		width: calc(25% - 6px);
		margin: 3px;
	}
	
	.items_tournament .game-slide{
		max-width: calc(33.33% - 20px);
	}
	
	.jackpot-tabs .list-game .parent-game-slide:nth-child(4){
		display: flex;
	}
	
	.head-tabs .index-slider{
		width: 100%;
	}
	
	.head-tabs .index-slider .swiper-slide{
		border-radius: 12px;
	}
	
	.head-tabs .index-slider{
		margin: 0;
	}
	
	.list-tabs{
        white-space: nowrap;
        overflow: auto;
	}
	
	.list-tabs a.router-link{
    	margin: 0 6px 0 0;
		font-size: 13px;
		font-weight: 450;
		padding: 0;
    	border-bottom: none;
	}
	
	.list-tabs a.router-link:hover,
	.list-tabs a.router-link.active{
    	border-bottom: none;
	}
	
	h1{
		font-size: 22px;
	}
	
	h2{
		font-size: 0px;
	}
	
	h3{
		font-size: 17px;
	}
	
	.header-btn{
		width: 100%;
	}
	
	.btn-slider a,
	.btn-slider small{
		padding: 5px 12px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.footer-support,
	.footer-menu{
		width: 50%;
		margin-bottom: 10px;
	}
	
	.footer-social{
		width: 100%;
		margin-bottom: 12px;
	}
	
	.footer-tournaments{
		width: 100%;
	}
	
	.footer-tournaments svg{
		height: 14px;
		margin: 0;
	}
    
	
}

@media screen and (max-width: 700px){
    
    .h-game-btns{
        margin-top: 15px;
    }
    
    .swiper-wins .swiper-slide{
        width: 70%;
        justify-content: flex-start;
    }
    .swiper-wins .mini-img{
        margin-right: 25px;
    }
    .swiper-wins .mini-desc{
        max-width: calc(100% - 85px);
    }
    .footer-menus .container{
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-menu{
        margin-right: 0;
    }
    
    .footer-copyright{
        width: 100%;
    }
    
    .leaderboard__slider.slider_leaderboard::after{
        right: -74px;
    }
    .leaderboard__slider.slider_leaderboard::before{
        left: -80px;
    }
}

@media screen and (max-width: 700px){
    .header-left{
        width: auto;
    }
    
    .header-logo{
        position: unset;
        left:0%;
        margin-left: 20px;
         margin-top: 0px;
    }
    .logo-white{
        position: unset; 
        left: 0%; 
        margin-left: 0px; 
        margin-top: 0px; 
       
        transition: none !important;
    }
}

@media screen and (max-width: 560px){
    
    #reg.modal-win{
        width: 100%;
    }
    
    .content-modal-win{
        padding: 15px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    #reg .content-modal-win{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .h-form-modal-win{
        text-align: center;
    }
    .form-modal-win.reg-form{
        width: 100%;
    }
    
    .modal-win .close-small{
        top: 30px;
    }
    
    .modal-win{
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .modal-win.active#remind{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .parent-modal-win{
        height: 100vh;
    }
    
    .h-game-btns{
        margin-top: auto;
    }
    
    .leaderboard__slider.slider_leaderboard::after,
    .leaderboard__slider.slider_leaderboard::before{
        content: none;
    }
    
    .panel__title.panel__title_tournament.title{
        font-size: 24px;
    }
    
    .index-banner{
        background-position: left 25% center;
        background-size: auto 100%;
    }
    
    .jp-summ{
        font-size: 34px;
        line-height: 100px;
        min-height: auto;
    }
    
    .jp-summ .curr{
        font-size: 20px;
    }
    
    .header-right{
        margin-left: 0;
        max-width: 30%;
    }
    
    .yes-login-header-btn .btn{
        margin-left: 0;
    }
    
    .swiper-wins .swiper-slide{
        width: 100%;
        padding: 0 0 0 10px;
    }
    
    .index-slider .swiper-slide .img-wrap{
        width: 100%;
        left: 0;
        opacity: .7;
    }
    
    span.number-slide{
        opacity: 1;
    }

	.head-one-category{
		width: calc(50% - 20px);
	}

	.list-game .parent-game-slide{
		width: calc(50% - 20px);
	}
	
	.parent-search-list-game .list-game .parent-game-slide{
		width: calc(50% - 20px);
	}
	
	.header-btn{
		justify-content: space-between;
	}
	
	.header-btn .auth-btn,
	.header-btn .reg-btn{
		width: calc(50% - 5px);
	}
	
	.yes-login-header-btn .btn.open-deposit,
	.yes-login-header-btn a.btn.open-deposit{
    	width: 100%;
	}
	
    
    .footer-copyright{
        order: 2;
        text-align: center;
    }
    
    .footer-menu ul li a{
        text-align: center;
    }
    
    .footer-menu{
        text-align: center;
    }
    
    .footer-menu ul li{
        justify-content: center;
    }
    
    .footer-support{
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        text-align: center;
        order: 1;
    }
    
    .footer-support .btn{
        max-width: 200px;
        margin: 20px auto 0;
    }
    
    .details__btn{
        text-align: center;
    }
		
	.items_tournament .game-slide{
        margin: 5px;
		max-width: calc(50% - 10px);
	}
}
@media screen and (max-width: 500px){
    .btn.open-deposit{
        display:none;
    }
    .panel__title.panel__title_tournament.title{
        font-size: 21px;
    }    
    .main__item{
        padding: 30px 10px 10px;
    }    
    .panel.panel_tournament{
        padding: 10px;
    }    
    .panel__countnote.title{
        font-size: 11px;
    }    
    .panel__countdown{
        font-size: 12px;
    }    
    .panel__countbutton{
        font-size: 10px;
    }
    .pannel__sides-bg{
        padding: 5px;
        width: 100%;
        justify-content: space-evenly;
    }
    .pannel__sides-bg svg{
        margin-right: 5px;
    }
    .timer__table .timer__row_digit .timer__cell{
        font-size: 12px;
    }
    .sides-line{
        margin: 0 5px;
    }
    .panel__caption{
        font-size: 16px;
    }
    .panel__info-button{
        margin: 50px auto 0;
    }
    
    
}

@media screen and (max-width: 425px){
    .h-game-btns{
        margin-top: 15px;
    }
}

@media screen and (max-width: 370px){
    .h-game-btns{
        margin-top: auto;
    }
    
    .list-game.grid{
        grid-gap: 10px;
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }
    
    .list-game.grid .parent-game-slide:first-child{
        grid-row: 1 / 1;
        grid-column: 1 / 1;
    }
    
    .yes-login-header-btn .btn.open-deposit,
    .yes-login-header-btn a.btn.open-deposit{
        padding: 5px 10px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .head-subcat-select{
        margin-left: 10px;
        width: 150px;
    }
    
    .list-tabs-wrapper .header-search{
        width: calc(100% - 160px);
    }
    
    .list-tabs-wrapper .header-search input[type="search"]{
        padding: 0 10px;
        background-position: right 10px center;
    }
    
    .head-subcat-select .subcat-select{
        padding: 0 10px;
    }
    
    .header-logo{
        margin-left: 10px;
    }
    
    .head-one-category{
        width: 100%;
        margin: 0 0 10px 0;
    }
    
    .list-game .parent-game-slide{
        width: 100%;
        margin: 0 0 10px 0;
    }
    
    .h-one-category{
        margin-top: 20px;
    }
    .parent-search-list-game .list-game .parent-game-slide{
        width: 100%;
    }
    .modal-main-title{
        padding-bottom: 20px;
    }
    .modal-win#search .search-field{
        padding: 20px 15px;
    }
}
    
    
/*  dark theme  */
    
body.dark-theme{
    background-color: #171824;
    color: #fff;
}
    
body.dark-theme .header{
    background-color: #171824;
}
    
body.dark-theme .header-menu a{
    color: #fff;
}
    
body.dark-theme .dynamic-color,
body.dark-theme .whisker {
    fill: #fff;
}
    
body.dark-theme .head_menu_btn svg{
    fill: #fff;
}
    
body.dark-theme .yes-login-header-btn .open-profile{
    background: #ffc400;
}
    
body.dark-theme .yes-login-header-btn .open-profile img{
    filter: brightness(0);
}
    
body.dark-theme .header-search input[type="search"]{
    background-image: url(../img/betnew/search-light.svg);
}
    
body.dark-theme .list-tabs-wrapper{
    background-color: #2223358f;
}
    
body.dark-theme .list-tabs a.router-link{
    color: #fff;
}
    
body.dark-theme .list-tabs a.router-link:hover span,
body.dark-theme .list-tabs a.router-link.active span{
    color: #ffc400;
}
    
body.dark-theme .list-tabs a.router-link::after{
    background-color: #ffc400;
}
    
body.dark-theme .list-tabs-wrapper .header-search input[type="search"],
body.dark-theme .subcat-select{
    background-color: #1718243d;
    color: #fff;
}
    
body.dark-theme .list-tabs-wrapper .header-search:hover input[type="search"],
body.dark-theme .subcat-select:hover{
    background-color: #313249;
}
    
body.dark-theme .head-subcat-select svg{
    fill: #ffc400;
}
    
body.dark-theme .list-tabs-wrapper .header-search input[type="search"]{
    background-image: url(../img/betnew/search-yellow.svg);
}
    
body.dark-theme .subcat-select-drop{
    background-color: #313249;
}
    
body.dark-theme .subcat-select-drop a{
    color: #fff;
}
    
body.dark-theme .subcat-select-drop a:hover{
    background-color: #171824;
}
    
body.dark-theme .top-filter .title-block{
    background-color: #222335;
}

body.dark-theme .top-filters .dropdown{
    background-color: #222335;
}

body.dark-theme .top-filter.providers .dropdown-item.active .checkbox{
    background-color: #171824;
    border: 1px solid #31313b;
}
    
body.dark-theme .head-one-category:not(.filters){
    background-color: #222335;
}
    
body.dark-theme .head-one-category:not(.filters) svg{
    fill: #ff00ff;
}
    
body.dark-theme .head-one-category.filters svg{
    fill: #ffc400;
    stroke-width: 0;
}
body.dark-theme .head-one-category.filters path{
    stroke: #ffc400;
}
    
body.dark-theme .head-one-category .view-all{
    color: #ff00ff;
}
    
body.dark-theme .h-one-category{
    color: #fff;
}
    
body.dark-theme .list-game .parent-game-slide{
    background-color: #222335;
    background-image: url(../img/betnew/logo-light.svg);
}
    
body.dark-theme .swiper-wins .mini-desc .summ,
body.dark-theme .swiper-wins .mini-desc a .text{
    color: #fff;
}
    
body.dark-theme .mini-desc a{
    color: #ffc400;
}
    
body.dark-theme .swiper-wins .swiper-slide::before{
    background-color: #313249;
}
    
body.dark-theme .btn-filled.pink{
    background-color: #ffc400;
    border-color: #ffc400;
    color: #000;
}
    
body.dark-theme .btn-filled.pink:hover{
    background-color: #ffa300;
    border-color: #ffa300;
    color: #fff;
}
    
body.dark-theme .hover-game-slide::before{
    background: rgba(0,0,0,.8);
}
    
body.dark-theme .btn-bordered{
    color: #fff;
}
    
body.dark-theme .h-game-slide{
    color: #fff;
}
    
body.dark-theme .footer-pay-logo{
    background-color: #222335;
}
    
body.dark-theme .footer .copyright_gambling_soft span{
    color: #fff;
}
    
body.dark-theme .footer-menu ul li a{
    color: #fff;
}
    
body.dark-theme .block-topmenu{
    background-color: #222335;
    opacity: 1;
    background-image: url(../img/imgmenuz.webp);
}
    
body.dark-theme .top-menu-profile-log-out svg path{
    fill: #C4C4C4;
    stroke: #C4C4C4;
}
    
body.dark-theme .one-menu a svg,
body.dark-theme .one-menu.open-menu.active .h-one-open-menu svg.svg-open{
    fill: #ff00ff;
}
    
body.dark-theme .one-menu.open-menu .one-open-menu a .img-one-menu svg{
    fill: #2f2fde;
}
    
body.dark-theme .one-menu a:hover,
body.dark-theme .one-menu.open-menu.active .h-one-open-menu{
    background: #2f2fde;
}
    
body.dark-theme .top-menu-profile-info > span{
    background-color: #ffc400;
}
    
body.dark-theme .top-menu-profile-info > span img{
    filter: brightness(0);
}
    
body.dark-theme .block-topmenu_head svg{
    fill: #fff;
}
    
body.dark-theme .one-menu a{
    color: #fff;
}
    
body.dark-theme .modal-win#search{
    background: rgba(0,0,0,0);
}
    
body.dark-theme .modal-overflow{
    background-color: rgba(0,0,0,.5);
}
    
body.dark-theme .head-one-category.text{
    background-color: inherit;
}
    
body.dark-theme .the-content{
    color: #fff;
}
    
body.dark-theme .modal-win#search .search-field{
    background-color: #151a22;
    background-imag-e: url(../img/imgsrch.jpg);
}
    
body.dark-theme .modal-win#search .close-small svg,
body.dark-theme .modal-win#search .close-small svg:hover{
    fill: #FFF;
}
    
body.dark-theme .game-modal .game,
body.dark-theme .side-pannel .block{
    background-color: #222335;
}
    
body.dark-theme .payments-block{
    color: #fff;
}
    
body.dark-theme .payments-block .tabs .tab{
    color: #fff;
}
    
body.dark-theme .payments-table{
    box-shadow: 0 0 5px rgb(255 255 255 / 40%);
}
    
body.dark-theme .payments-row + .payments-row{
    border-top: 1px solid rgba(255,255,255,.4);
}
    
body.dark-theme .one-menu.open-menu .one-open-menu a:hover .img-one-menu svg{
    fill: #ff00ff;
}
    
body.dark-theme .btn-lang a{
    background-color: #171824;
    color: #fff;
}
    
body.dark-theme .btn-lang a:hover,
body.dark-theme .btn-lang.active a{
    background-color: #2f2fde;
}
    
body.dark-theme .btn-lang a svg{
    filter: invert(1);
}
    
body.dark-theme .open-lang{
    background-color: #bbbcd1;
}

body.dark-theme .popup2{
     
    background-color: #171824fc;
}
    
body.dark-theme .tab__action.deposit-action,
body.dark-theme .profile-info__action,
body.dark-theme .tab__action.head_action a.tab__item{
    border-bottom: 2px solid #fafafa;
    
}
body.dark-theme .enter-pin{
    border-top: 2px solid #fafafa;
}
    
body.dark-theme .tab__action a.tab__item{
    color: #fff;
}
    
body.dark-theme .icon_action_menu svg{
    fill: #fff;
}
    
body.dark-theme .tab__action.head_action a:hover,
body.dark-theme .tab__action.head_action a.tab__item.tab__item_active{
    color: #ffc400;
    fill: #ffc400;
}
    
body.dark-theme .tab__action.head_action a.tab__item.tab__item_active .icon_action_menu svg{
    fill: #ffc400;
}
    
body.dark-theme .tab__action.deposit-action a:hover,
body.dark-theme .tab__action.deposit-action a.tab__item.tab__item_active{
    color: #ffc400;
}
    
body.dark-theme .popup2.popup_tabs input{
    background-color: #fafafa;
}
    
body.dark-theme .pay-tooltip__summ{
    background: inherit;
    color: #fff;
}
    
body.dark-theme .pay-tooltip__summ label.active{
    color: #ffc400;
}
    
body.dark-theme .payment__tooltip.payment__tooltip_open{
    border-top: 2px solid #fafafa;
}
    
body.dark-theme #history-tab table tr th,
body.dark-theme #history-tab table tr td{
    border-right: 1px solid rgba(255,255,255,.7);
}
    
body.dark-theme .profile-details{
    border-bottom: 2px solid #fafafa;
}
    
body.dark-theme .profile-contacts__input label.profile-contacts__label.input__label,
body.dark-theme .profile-details__input label.input-lbl{
    color: #fff;
}
    
body.dark-theme .tab-bonuses__item{
    background-color: #222335;
}
    
body.dark-theme .timer__table .timer__row_digit .timer__cell{
    color: #fff;
}
    
body.dark-theme .levels-table__slider-bar{
    border: 2px solid #fafafa;
}
    
body.dark-theme .popup2 .js-close-popup svg{
    opacity: 96%;
    fill: #fff;
}
    
body.dark-theme .block-topmenu .header-btn{
    background-color-: #313249;
}
    
body.dark-theme .topmenu-line{
    background-color: rgba(255, 255, 255, .4);
}
    
body.dark-theme .topmenu-else-links a{
    color: #fff;
}
    
body.dark-theme .topmenu-else-links a:hover{
    background-color: #2f2fde;
}
    
body.dark-theme .parent-modal-win{
    background-color: #bbbcd1;
    color: #000;
}
    
body.dark-theme .modal-win input{
    background-color: #ffffffa6;
}
    
body.dark-theme .modal-win .btn-bordered{
    color: #000;
}
    
body.dark-theme .modal-win#remind{
    background-color: #bbbcd1;
}
    
body.dark-theme .h-remind{
    background-color: #bbbcd1;
}
    
body.dark-theme .tournaments-bg{
    background-color: #222335;
}
    
body.dark-theme .lottery__tabitem.lottery__tabitem_active{
    color: #ffc400;
}
    
body.dark-theme .pannel__sides-bg{
    background: #171824;
}
    
body.dark-theme .tournaments-bg .main_tournament-details{
    background-color: #171824;
}
    
body.dark-theme .details__btn:hover{
    color: #ffc400;
}
    
body.dark-theme .panel__prize.large .panel__countdown,
body.dark-theme .panel__prize.large .panel__countbutton{
    color: #ffc400;
}
    
body.dark-theme .leaderboard__slider.slider_leaderboard{
    background: #222335;
}
    
body.dark-theme .table_leaderboard .table__body .table__row:nth-child(odd),
body.dark-theme .table_leaderboard .table__body .table__row:nth-child(2){
    background-color: #171824;
}
    
body.dark-theme .sides-line{
    background: #fafafa;
}
    
body.dark-theme .header-menu a:hover,
body.dark-theme .header-menu a.active{
    color: #ffc400;
}
    
body.dark-theme .popup__input.input input{
    background-color: #fff;
}
    
body.dark-theme	.modal-win#search .btn-bordered{
    	color: #fff;
}
    
body.dark-theme	table.history__table tbody.history__body tr:nth-child(1n){
    background: #222335;
}
    
body.dark-theme	#history-tab table tr th,
body.dark-theme	#history-tab table tr td{
    border: 1px solid rgba(255,255,255,.7);
    border-top: none;
    border-right: none;
    border-bottom: none;
}

body.dark-theme .popup2 table tbody tr:nth-child(2n) td{
    background: #222335;
}

body.dark-theme .vip-panel,
body.dark-theme .vip-panel:before{
    background: #222335;
}

body.dark-theme .log-out-mobile svg path{
    fill: rgba(255,255,255,.7);
}
   
body.dark-theme .pay-tooltip{
    background: #171824;
}
   
body.dark-theme .payment__tooltip_close{
    color: #fff;
}
   
body.dark-theme .one-form-modal-win select option{
    background-color: #bbbcd1;
}
   
body.dark-theme .top-pannel .name{
    color: #fff;
}
   
body.dark-theme .top-pannel .arrow{
    border: 1px solid rgba(255,255,255,0.5);
}

body.dark-theme .header-logo svg path,
body.dark-theme .footer-logo svg path{
    fill: #fff;
}
   
body.dark-theme .top-pannel .arrow img{
    filter: none;
}

@media screen and (max-width: 1200px){
    body.dark-theme .payment__tooltip.payment__tooltip_open{
        border-top: 0;
    }
}
@media screen and (max-width: 991px){

    body.dark-theme .list-tabs{
        background-color: #2223358f;
    }
    
    body.dark-theme .list-tabs-wrapper{
        background-color: inherit;
    }
    
    body.dark-theme .list-tabs-wrapper .header-search input[type="search"],
    body.dark-theme .subcat-select{
        background-color: #2223358f;
    }
}
   

@media screen and (max-width: 768px){

    body.dark-theme .levels-table__item:nth-child(2n){
        background-color: #222335;
    }

    body.dark-theme .tab__action_container_child{
        background-color: #171824;
    }
    
    body.dark-theme .tab__action.head_action a.tab__item{
        border-bottom: 0;
    }
    
    body.dark-theme .tab__action.head_action a.tab__item.tab__item_active{
        background-color: #222335;
    }
    
    body.dark-theme .log-out-mobile svg path{
        fill: #fff;
        opacity: .7;
    }
    
}

.gam_bonus_activated{
    display: contents;
    text-align: center;
}

.deactivate-bonus.bonus-panel__button.button.button_shape_round{
    color: #fff;
    background: #fd2d5e;
    padding: 7px 11px;
    font-weight: 300;
    font-size: 13px;
    cursor: pointer;
    margin: 10px 0 0;
    width: auto;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    align-self: center;
}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    




/*  dark theme  */
/* ===== SKELETON LOADER для карточек игр (betnew 2026-04-14) ===== */
@keyframes skeleton-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}
@keyframes sk-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.skeleton-card .game-slide {
    pointer-events: none;
    position: relative;
}
.skeleton-img {
    background: linear-gradient(90deg, #1e2540 20%, #3a4a7a 45%, #5a6fa0 50%, #3a4a7a 55%, #1e2540 80%) !important;
    background-size: 1200px 100% !important;
    animation: skeleton-shimmer 1.4s infinite linear !important;
    border-radius: 8px;
    position: relative;
}
.skeleton-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: sk-spin 0.8s linear infinite;
    pointer-events: none;
    z-index: 2;
}
/* ===== END SKELETON ===== */
