* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1d4369;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

::-webkit-scrollbar{
    width: 6px;
    background: #fff;
}

::-webkit-scrollbar-thumb{
    width: 6px;
    background: #000;
}

.dark{
    background-color: #0b141d;
}

.btn {
    padding: 5px 20px;
    text-transform: uppercase;
    border: none;
    text-align: center;
    border-radius: 5px;
}

.btn.green{
    /* background-color: #7daa2f; */
    background-color: #f6de33;
    color: #000;
}

.btn.green:hover{
    background-color: #f6de33;
}

.btn.blue{
    background-color: #276aa5;
    color: #fff;
}

.btn.blue:hover {
    background-color: #3185ce;
}

.btn.gray {
    background-color: #bed2e4;
    color: #224e7b;
}

.btn.gray:hover {
    opacity: .8;
}

.header-btn {
    font-size: 14px;
    line-height: 22px;
    margin-left: 20px;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

img,
svg{
    max-width: 100%;
    vertical-align: top;
}

li {
    list-style: none;
}

header {
    display: flex;
    align-items: center;
    background-color: #205685;
    height: 52px;
    padding: 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.popup_tabs {
    z-index: 9997;
}

.logo {
    width: 100%;
    max-width: 160px;
}

.logo img{
	width: auto!important;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 40px;
    margin-right: 15px;
}

.menu:hover > li {
    opacity: .5;
}

.menu > li {
    position: relative;
    transition: .3s;
}

.menu > li > a {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px;
    line-height: 32px;
    font-weight: 500;
	color: #FFF;
}

.menu > li > a svg {
    margin-left: 5px;
    width: 10px;
    fill: #fff;
}

.menu > li + li {
    margin-left: 10px;
}

.menu > li:hover {
    opacity: 1;
}

.menu li:hover .dropdown {
    opacity: 1;
    top: 100%;
    pointer-events: all;
	
	width: 400px;
}

.menu .dropdown {
    position: absolute;
    padding: 15px 20px 10px;
    background: #fff;
    color: #276aa5;
    font-size: 14px;
    transition: .3s;
    top: 70%;
    opacity: 0;
    pointer-events: none;
    max-height: calc(100vh - 100px);
    overflow: auto;
}

.menu li:nth-child(1) .dropdown {
    width: 320px;
}

.menu li:nth-child(2) .dropdown {
    width: 320px;
}

.menu li:nth-child(3) .dropdown {
    width: 550px;
}

.menu li:nth-child(5) .dropdown,
.menu li:nth-child(6) .dropdown,
.menu li:nth-child(7) .dropdown {
    width: 500px;
}

.menu li:nth-child(9) .dropdown {
    width: 355px;
}

.menu li:nth-child(9) .dropdown .links.col-2 {
    columns: 150px 2;
}

.menu .dropdown .links li{
    border-left: 1px solid #d3dee8;    
}

.menu .dropdown .links li a{
    border-left: 1px solid #d3dee8;
    padding-left: 10px;
    transition: .5s;
    position: relative;
    left: -1px;
}

.menu .dropdown hr {
    border-top: 1px solid #d3dee8;
    margin: 20px 0;
}

.menu .dropdown .links li a:hover {
    color: #92c738;
    border-left: 1px solid #224e7b;
}

.menu .btn{
    width: 100%;
    margin-top: 20px;
    
}

.menu .dropdown .links.col-2 {
    columns: 220px 2;
}

.menu .dropdown .links.col-3 {
    columns: 160px 3;
}

.menu .dropdown .links li + li a {
    margin-top: 5px;
}

.menu .dropdown .promo-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.menu .dropdown .promo {
    width: calc(50% - 5px);
    background: rgb(32,86,133);
    background: linear-gradient(90deg, rgba(32,86,133,1) 41%, rgba(39,106,165,1) 100%);
    color: #fff;
    font-size: 9px;
    height: 50px;
    margin-bottom: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    position: relative;
}

.menu .dropdown .promo:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.menu .dropdown .promo:hover::after {
    opacity: 1;
}

.menu .dropdown .promo .text{
    position: relative;
    z-index: 2;
}
.menu .dropdown .promo::after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(39,106,165,1);
    opacity: 0;
    border-radius: 5px;
}

.menu .dropdown .promo img{
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 10px;
    opacity: .2;
    height: 40px;
}

.menu .dropdown .img-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu .dropdown .img-block a{
    width: 85px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.menu .dropdown .img-block img{
    max-height: 40px;
}

.menu .dropdown .img-block a:nth-last-child(-n+5){
    margin-bottom: 0;
}

.score{
    display: flex;
    max-width: 173px;
    height: 32px;
    background-color: #276aa5;
    border-radius: 5px;
    margin-left: auto;
}

.score .update{
    min-width: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
}

.score .update::after{
    content: '';
    display: block;
    height: 70%;
    right: 0;
    position: absolute;
    top: calc(50% - 35%);
    border-right: 1px solid #fff;
    opacity: .2;
}

.score .update:hover{
    background: #3185ce;
}

.score .update.disabled{
    background-color: #1d4369;
}

.score .update svg{
    width: 10px;
    opacity: .8;
}

.score-account{
    font-size: 11px;
    min-width: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 5px;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: 500;
}

.score-account:hover{
    background: #3185ce;
}

.score-account.disabled{
    background-color: #1d4369;
}

.score-account svg{
    position: absolute;
    width: 10px;
    right: 10px;
    top: calc(50% - 15px);
}

.score-account .dropdown{
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 405px;
    background: #fff;
    border-radius: 5px;
    font-size: 12px;
    display: none;
    pointer-events: none;
}

.score-account .dropdown.active{
    display: block;
    pointer-events: all;
}

.score-account .dropdown::before{
    content: '';
    position: absolute;
    top: -8px;
    right: calc(14px - 7.5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 8px 7.5px;
    border-color: transparent transparent #fff transparent;
}

.score-account .dropdown-score{
    padding: 5px 10px;
}

.score-account .dropdown-score:hover{
    padding: 5px 10px;
}

.score-account .dropdown-score:first-child{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.score-account .dropdown-score:last-child{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.score-account .dropdown-score.active{
    background: #d3dee8;
}

.score-account .dropdown-row{
    display: flex;
    justify-content: space-between;
}

.score-account .dropdown-row.name{
    font-weight: 600;
    color: #276aa5;
}

.score-account .dropdown-row.bet{
    color: #7498b8;
    margin: 6px 0;
}

.score-account .dropdown-row.bet:nth-child(3){
	margin-bottom: 15px;
}

.score-account .dropdown-row.bet .rating__inner{
	box-shadow: none;
}

.score-account .dropdown-row.bet .rating__percent{
	color: #276aa5;
	padding-top: 15px;
}

.score-name{
    opacity: .8;
}

.with-title{
    position: relative;
}
.with-title:not(.disabled):hover .this-title{
    display: block;
}
.this-title.active{
    display: block;
}

.this-title.bottom{
    top: calc(100% + 8px);
}
.this-title.blue{
    background: #d3dee8;
}

.this-title.blue::before{
    border-color: transparent transparent #d3dee8 transparent;
}

.this-title.fixed{
    position: fixed;
    z-index: 999;
}

.this-title.top{
    top: calc(-25px - 8px);
}

.this-title.right{
    left: inherit;
    right: 0;
    transform: translate(0, 0);
}

.this-title.right::before{
    left: inherit;
    right: calc(16px - 7.5px);
}

.this-title.top::before{
    top: 100%;
    transform: rotate(180deg)
}

.this-title{
    white-space: nowrap;
    pointer-events: none;
    display: none;
    position: absolute;
    font-size: 11px;
    background: #fff;
    padding: 6px 12px;
    color: #276aa5;
    border-radius: 3px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 99;
}

.this-title::before{
    content: '';
    position: absolute;
    top: -8px;
    left: calc(50% - 7.5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 8px 7.5px;
    border-color: transparent transparent #fff transparent;
}

.header-icon{
    margin-left: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: #276aa5;
    position: relative;
}

.header-icon:hover{
    background-color: #3185ce;
}

.header-icon img{
    width: 22px;
}

.header-icon:hover .dropdown{
    top: calc(100% + 8px);
    opacity: 1;
    pointer-events: all;
}

.header-icon .dropdown{
    width: 205px;
    position: absolute;
    top: 70%;
    right: 0px;
    background-color: #fff;
    font-size: 13px;
    color: #276AA5;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}

.header-icon .dropdown::before{
    content: '';
    position: absolute;
    top: -8px;
    right: calc(16px - 7.5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 8px 7.5px;
    border-color: transparent transparent #fff transparent;
}

.header-icon .dropdown div{
    display: flex;
    align-items: center;
    padding: 8px 12px;
	cursor: pointer;
}

.header-icon .dropdown div:hover{
    background-color: #D3DEE8;
}

.header-icon .dropdown a + a{
    border-top: 1px solid #D3DEE8;
}

.header-icon .dropdown img{
    width: 13px;
    margin-right: 15px;
    opacity: .7
}

header .block-settings{
    display: flex;
    align-items: center;
    margin-left: 15px;
    font-size: 12px;
}

header .block-settings .item{
    padding: 5px;
    background: #205685;
    border-radius: 5px;
}

header .block-settings .item:hover{
    padding: 5px;
    background: #D3DEE8;
}

header .block-settings span.item:hover {
    background: #205685;
    cursor: default;
}

header .block-settings .item:hover svg{
    fill: #205685;
}

header .block-settings .item svg{
    width: 13px;
    fill: #fff;
}

header .block-settings .item + .item{
    margin-left: 10px;
    position: relative;
}

header .block-settings .item + .item::before{
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 100%;
    min-height: 2em;
    opacity: .1;
    background: #fff;
    transform: translateY(-50%);
    left: -5px;
    pointer-events: none;
}

header select{
    background-color: #205685;
    color: #fff;
    font-size: 12px;
    border: none;
}

header select:hover{
    color: #205685;
}

header select.item:active,
header select.item:visited,
header select.item:focus-within,
header select.item:focus-visible ,
header select.item:focus,{
    border: none !important;
    outline: none !important;
}

.content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* padding: 10px; */
    margin-top: 52px;
}

.dark .content{
	margin-top: 0;
	padding: 10px;
}

.main-frame{
    /* width: calc(100% - 520px); */
    width: 100%;
}

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

iframe.index-iframe{
	width: 100%!important;
	height: calc(100vh + 24px)!important;
	overflow: hidden;
	margin-top: -70px;
	margin-top: 0px;
}

iframe.index-iframe:-webkit-scrollbar{
    width: 6px;
    background: #fff;
	display: none!important;
}

iframe.index-iframe:-webkit-scrollbar-thumb{
    width: 6px;
    background: #000;
	display: none!important;
}



.auth .form-block{
	width: 320px;
}



.popup2.popup_tabs.popup_deposit_for_bonus{
	background-color: #191826!important;
}

.popup_deposit_for_bonus .popup__content{
    padding-top: 20px!important;
}

.promo-bonus__img img#bonus-img,
.bonus-panel__view .bonus-panel__img{
	margin: 0 auto!important;
}















.main-frame.var2{
    width: calc(100% - 260px);
}

.main-frame.var3{
    width: calc(100% - 408px);
}

.content .l-side,
.content .r-side{
    max-width: 250px;
    width: 100%;
}

.homepage-top{
    position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	margin-left: 0;
}

.homepage-top img{
	width: 100%;
}

.dark .homepage-top{
	max-width: 100%;
	margin-left: 0;
}

.homepage-top.no-arrows{
    margin-bottom: 20px;
}

.homepage-top .swiper-slide{
    border-radius: 3px;
    overflow: hidden;
}

.homepage-top.var2 .swiper-slide img{
    margin-left: auto;
    max-height: 248px;
}

.homepage-top.var2 .swiper-slide{
    display: flex;
    background-color: #252a30;
}

.homepage-top.var2 .swiper-slide::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,#252a30 Max(6.25em,3%),transparent Max(18.75em,60%));
    width: 40%;
}

.homepage-top .text-block{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 50px;
	background: rgba(0,0,0,0.15);
	width: 100%;
}

.homepage-top .text-block h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 700;
}

.homepage-top .text-block p{
    font-size: 14px;
    line-height: 16px;
    margin-top: 10px;
}

.homepage-top .text-block .btn{
    margin-top: 20px;
    font-size: 14px;
}

.homepage-top .swiper-button-next:after,
.homepage-top .swiper-button-prev:after{
    font-size: 17px;
    padding: 50px 10px;
    background-color: rgba(255,255,255,.2);
}

.homepage-top .swiper-button-next:after{
    border-top-left-radius: 5px;    
    border-bottom-left-radius: 5px;    
}

.homepage-top .swiper-button-prev:after{
    border-top-right-radius: 5px;    
    border-bottom-right-radius: 5px;    
}

.homepage-top .swiper-button-next,
.homepage-top .swiper-button-prev{
    color: #fff;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev{
    right: 0;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next{
    left: 0;
}

.live-slider{
    position: relative;
}

.live-slider::after{
    content: "";
    background: linear-gradient(90deg,transparent,rgba(29,67,105,.5));
    position: absolute;
    top: 0;
    right: 0;
    z-index: 90;
    width: 50px;
    height: 100%;
    pointer-events: none;
}

.live-slider .swiper-slide{
    max-width: 320px;
    background-color: #f2f8fc;
    color: #224e7b;
    border-radius: 3px;
}

.live-card__head{
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-size: 11px;
    padding: 7px 0;
    border-bottom: 1px solid #d3dee8;
}

.live-card__head img{
    width: 13px;
}

.live-card__head a{
    display: flex;
    width: 100%;
}

.live-card__head a:hover{
    text-decoration: underline;
}

.live-card__head .name{
    margin-left: 5px;
    margin-right: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 260px;
}

.live-card__head svg{
    height: 14px;
    fill: #6b9129;
    fill-opacity: 0;
    stroke: #6b9129;
    stroke-width: 40px;
    transition: .3s;
    margin-left: 5px;
}

.live-card__head .favorite.active svg{
    fill-opacity: 1;
}

.live-card__head .favorite.active:hover svg{
    opacity: .8;
    cursor: pointer;
}

.live-card__head .favorite:not(.active):hover svg{
    fill-opacity: .2;
    cursor: pointer;
}

.live-card__score-board {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
}

.live-card__score-board .command {
    width: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.live-card__score-board .command img{
    width: 16px;
    margin-bottom: 6px;
}

.live-card__score-board .status-timer{
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.live-card__score-board .status-timer img{
    margin: 0 3px;
    width: 12px;
}

.live-card__score-board .status-score{
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.live-card__tabs .tab{
    display: none;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    border-top: 1px solid #d3dee8;
    padding: 4px 0;
    line-height: 20px;
}

.live-card__tabs .tab.active{
    display: flex;
}

.live-card__tabs .name{
    font-size: 11px;
}

.live-card__tabs .spinner{
    font-size: 12px;
    display: flex;
    align-items: center;
}

.live-card__tabs .pages{
    padding: 0 10px;
}

.live-card__tabs .spinner .prev,
.live-card__tabs .spinner .next{
    width: 6px;
    height: 10px;
    cursor: pointer;
}

.live-card__tabs .spinner svg{
    width: 6px;
    height: 10px;
    fill: #224e7b;
}

.live-card__tab-cont.active{
    display: flex;
}

.live-card__tab-cont{
    display: none;
    align-items: center;
    justify-content: space-between;
}

.live-card__tab-cont .market{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    flex: 1;
    background-color: #d3dee8;
    padding: 5px 10px;
    margin: 0 2px 2px;
    border-top: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.live-card__tab-cont .market:hover{
    background: #b8deff;
}

body > footer{
    padding: 0 10px 20px;
}

footer{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
    padding-bottom: 20px;
}

.footer-block{
    padding: 15px;
    border-radius: 3px;
    background-color: #205685;
	display: flex;
	width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-block + .footer-block{
    margin-top: 10px;
}

.footer-block .list{
    flex: 1;
}

.footer-block .list + .list{
    margin-left: 10px;
}

.footer-block h3{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    line-height: 20px;
}

.footer-block .list svg{
    fill: #bed2e4;
    height: 16px;
    margin-right: 10px;
}

.footer-block .list li a{
    color: #bed2e4;
    font-size: 12px;
    line-height: 16px;
}

.footer-block .list li a:hover{
    color: #fff;
}

.footer-block .list li a:hover svg{
    fill: #fff;
}

.footer-block .partners{
    width: 49%;
}

.footer-block .partners h3{
    margin-bottom: 13px;
}

.footer-block .partners-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-block .partners-logo img{
    max-height: 80px;
    max-width: 80px;
}

.footer-sides{
    margin-top: 10px;
    display: flex;
	width: 100%;
    justify-content: space-between;
}

.footer-sides > .footer-block{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sides > .footer-block:nth-child(1){
    width: calc(50% - 15px);
}

.footer-sides > .footer-block:nth-child(2){
    width: calc(37% - 15px);
}

.footer-sides > .footer-block:nth-child(3){
    width: 13%;
}

.footer-sides > .footer-block + .footer-block{
    margin-top: 0;
}

.footer-sides p {
    color: #bed2e4;
    font-size: 12px;
}

.footer-sides p a{
    color: #fff;
    text-decoration: underline;
}

.footer-sides p a:hover{
    text-decoration: none;
}

.footer-sides svg{
    fill: #bed2e4;
    width: 52px;
    margin-right: 20px;
}

.footer-sides .text a{
    font-size: 20px;
    color: #bed2e4;
}

.footer-sides .text a:hover{
    color: #fff;
}

.footer-sides .footer-block.col{
    padding: 0;
    background-color: inherit;
    flex-direction: column;
    align-items: stretch;
}

.footer-sides .footer-block.col .footer-block{
    justify-content: center;
    align-items: center;
    font-size: 20px;
    height: 100%;
}

.footer-sides .footer-block.col .btn{
    display: none;
}

.sidebar-offer{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 3px;
    position: relative;
}

.sidebar-offer .offer-title{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.sidebar-offer .text{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 87px 15px 15px;
}

.app-content{
    margin-top: 10px;
}

.app-content__head{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
}

.breadcrumbs{
    padding: 8px 10px 8px 15px;
    background-color: #252a30;
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-right: 1px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.breadcrumbs svg.home{
    width: 16px;
    fill: #fff;
}

.breadcrumbs svg.arrow{
    height: 10px;
    fill: #fff;
    margin: 0 10px;
}

.navigation{
    display: flex;
    align-items: center;
    padding: 0 4px 0 15px;
    background-color: #252a30;
    width: calc(100% - 165px);
}

.nav-link{
    font-size: 13px;
    line-height: 20px;
    padding: 7px 0 5px;
    opacity: .65;
    transition: .3;
    border-bottom: 2px solid rgba(0,0,0,0);
}

.nav-link:hover{
    opacity: 1;
}

.nav-link.active{
    opacity: 1;
    border-bottom: 2px solid #92c738;
}

.nav-link + .nav-link{
    margin-left: 15px;
}

.app-content-links{
    background-color: #151b20;
    margin-bottom: 1px;
}

.navigation .nav-link{
}

.navigation .search{
    margin-left: auto;
    background-color: #151b20;
}

.navigation .search input{
    font-family: 'Roboto', sans-serif;
    border: none;
    outline: none;
    background-color: #151b20;
    color: #fff;
    width: 155px;
    padding: 5px 5px 5px 10px;
}

.navigation .search button{
    border: none;
    outline: none;
    background-color: #151b20;
    padding: 6px;
    cursor: pointer;
}

.navigation .search svg{
    width: 13px;
    fill: #fff;
}

.app-content-links{
    padding: 0 15px;
}

.games-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #151b20;
    padding: 15px 15px 5px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.game-card{
    width: calc(20% - 8px);
    background-color: #252a30;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #252a30;
    transition: .4s;
    margin-bottom: 10px;
}

.game-card .img-block{
    height: 170px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-card .img-block img{
    position: absolute;
    top: 0;
    transition: .6s;
    
}

.game-card .img-block .btn{
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: .4s;
}

.game-card .game-name{
    padding: 5px 10px;
    font-size: 14px;
}

.game-card:hover{
    border: 1px solid #f6de33;
}

.game-card:hover .img-block .btn{
    opacity: 1;
}

.game-card:hover .img-block img{
    transform: scale(1.07)
}

.top-links{
    padding: 0 5px 10px;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.top-links a{
    margin-right: 20px;
}

.top-links a:hover,
.top-links a.active{
    color: #90c534;
}

.l-side.var3 {
    border: 1px solid #30353b;
    max-width: 388px;
    width: 100%;
}

.l-side.var3 .clear{
    text-align: right;
    padding: 20px 15px 30px;
    color: #999;
    font-size: 14px;
}

.l-side.var3 .clear span{
    cursor: pointer;
    transition: .3s;
}

.l-side.var3 .clear span:hover{
    color: #fff;
}

.self-tabs{
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding-bottom: 20px;
}

.self-tab{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
    cursor: pointer;
    opacity: .4;
    transition: .3s;
	justify-content: center;
	text-align: center;
	width: 100px;
}

.self-tab a{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.self-tab:hover{
    opacity: 1;
}

.self-tab svg{
    height: 64px!important;
    width: 64px!important;
    stroke: #999;
    margin-bottom: 40px;
}

.l-side__title{
    text-transform: uppercase;
    background-color: #252a30;
    border-top: 1px solid #30353b;
    border-bottom: 1px solid #30353b;
    text-align: center;
    line-height: 33px;
}

.categories{
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
}

.categories .category{
    width: 50%;
    display: flex;
    align-items: center;
    height: 25px;
    font-size: 12px;
    cursor: pointer;
}

.categories .category.active span{
    color: #90c534;
}

.categories .category.active::before{
    background-color: #90c534;
}

.categories .category:hover span{
    color: #fff;
}

.categories .category span{
    margin-left: 10px;
    color: #999;
    text-transform: uppercase;
    transition: .3s;
}

.categories .category::before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #30353b;
    border-radius: 50%;
}

.providers-search{
    width: 100%;
    padding: 0 20px;
    border-bottom: 1px solid #30353b;
}

.providers-search input{
    width: 100%;
    border: none;
    outline: none;
    line-height: 32px;
    background: rgba(0,0,0,0);
    color: #999;
}

.providers-list{
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    max-height: 540px;
    overflow: auto;
}

.providers-list::-webkit-scrollbar{
    background-color: #0b141d;
}

.providers-list::-webkit-scrollbar-track {
}

.providers-list::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border: 4px solid #0b141d;
    border-radius: 20px;
    
}

.provider-item{
    margin: 2px;
    border-bottom: 0.1875em solid rgba(144,197,52,.1);
    background: linear-gradient(180deg,hsla(0,0%,100%,.1) 0,rgba(144,197,52,.2));
    transition: filter .2s ease-in-out,border .2s ease-in-out,opacity .2s ease-in-out;
    opacity: .85;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.33% - 0.25em);
    height: 74px;
    filter: grayscale(1) contrast(.5);
}

.provider-item:hover {
    border-bottom: 3px solid #90c534;
    opacity: 1;
    filter: none;
}

.provider-item span{
    display: inline-block;
    background-image: url(../../img/xbet/sprite.png);
    background-repeat: no-repeat;
    background-size: 1370% 2617.14286%;
    width: 84px;
    height: 42px;
}

.slot-search {
    padding: 10px;
    position: relative;
}

.slot-search input{
    outline: none;
    background-color: #141c20;
    border: 1px solid #30353b;
    color: #999;
    line-height: 32px;
    padding-left: 35px;
    font-size: 16px;
}

.slot-search svg{
    width: 16px;
    position: absolute;
    top: calc(50% - 8px);
    left: 21px;
}

.slot-title{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.slot-title .title{
    text-transform: uppercase;
    font-size: 16px;
    padding-left: 10px;
    border-left: 2px solid #90c534;
    line-height: 35px;
}

.slot-title .btn{
    margin-left: auto;
    line-height: 25px;
}

.swiper.grid{
    margin-top: -20px;
}

.swiper.grid .swiper-slide{
    position: relative;
}

.slots-swiper .swiper-slide div.op{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.6);
    cursor: default;
    opacity: 0;
    transition: .3s;
}

.slots-swiper .swiper-slide:hover div.op{
    opacity: 1;
}

.preloader{
    display: block;
    height: 30px;
    height: 100px;
    width: 100px;
    position: absolute;
    top: 20px;
    left: calc(50% - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
}

.preloader:hover svg{
    fill: #90c534;
}

.preloader svg{
    width: 30px;
    height: 30px;
    fill: #fff;
}

.slots-swiper .preloader:after,
.slots-swiper .preloader:before {
    content: "";
    position: absolute;
    top: -3px;
    display: block;
    width: 100px;
    height: 100px;
}

.slots-swiper .preloader::after,
.slots-swiper .preloader::before {
    border-radius: 50%;
    border-color: transparent #fff;
    border-style: solid;
    border-width: 3px;
}

.slots-swiper .preloader::after,
.slots-swiper .preloader::before {
    left: -3px;
}

.slots-swiper .preloader:before {
    animation: rotate 2s linear infinite
}

.slots-swiper .preloader::after {
    border-color: #90c534 transparent;
    border-style: solid;
    border-width: 3px;
    transform: scale(.8)
}

.slots-swiper .preloader::after {
    animation: rotate-reverse 2s linear infinite
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(0) scale(.8)
    }

    to {
        transform: rotate(-1turn) scale(.8)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0) scale(.9)
    }

    to {
        transform: rotate(1turn) scale(.9)
    }
}

.slot-play{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    cursor: pointer;
    transition: .4s;
}

.slot-play:hover{
    color: #90c534;
    border-bottom: 1px solid #90c534;
}

.star svg{
    width: 20px;
    height: 20px;
    fill: rgba(0,0,0,0);
    stroke: #fff;
    position: absolute;
    top: calc(50% - 25px);
    left: 45px;
    cursor: pointer;
    transition: .4s;
}

.star.in_favorites svg,
.star:hover svg{
    fill: #90c534;
    stroke: #90c534;
}

.star.favorite.in_favorites svg{
    fill: #90c534;
    stroke: #90c534;
}

.star.favorite.removed svg{
	fill: inherit;
    stroke: #FFF;
}

.for-list-game{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	width: 100%;
}

.for-list-game .swiper-slide{
	width: 20%;
	/* height: 200px; */
	padding-right: 15px;
}

.grid .swiper-button-next,
.grid .swiper-button-prev{
    background: rgba(255,255,255,.5);
    padding: 40px 40px;
    transition: .3s;
    font-weight: 900;
    color: #000;
}

.grid .swiper-button-next:hover,
.grid .swiper-button-prev:hover{
    background: rgba(255,255,255,.8);
}

.grid .swiper-button-next{
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.grid .swiper-button-prev{
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.grid .swiper-button-next.swiper-button-disabled,
.grid .swiper-button-prev.swiper-button-disabled{
    pointer-events: all;
    opacity: 1;
    cursor: pointer;
}

.grid .swiper-button-prev,
.grid .swiper-button-next{
	font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

.grid .swiper-button-prev:before,
.swiper-rtl .grid .swiper-button-next:before{
    content: 'prev';
}

.grid .swiper-button-next:before,
.swiper-rtl .grid .swiper-button-prev:before{
    content: 'next';
}

.close-menu{
	display: none;
}

.topmenu{
	display: flex;
    align-items: center;
    background-color: #205685;
    height: 52px;
}






.auth .form-block .reg-soc{
	color: #205685;
	font-size: 12px;
	display: block;
	float: left;
	margin-top: 2px;
	padding-top: 0;
}

.check-form{
	margin-top: 8px;
	color: #205685;
}

.check-form a{
	color: #205685;
}

.check-form label{
	width: 145px;
	font-size: 12px;
	display: block;
	float: left;
}

.check-form input[type="checkbox"]{
	margin-right: 5px;
}

.auth .form-block .btn.green{
	padding: 9px 20px;
	border-radius: 4px;
	cursor: pointer;
}

.auth .form-block .reg-soc{
	padding-right: 0;
}

.mob-btn{
	display: none;
}

.logo img{
	width: 100px;
}

.auth .title,
.close button{
	display: none;
}

.form-block .field-block .field{
	padding-right: 40px;
}

.form-block .title .text.sm{
	color: #1b5480!important;
}

.text-form-reg{
	margin: 15px 0 0;
	color: #205685;
	font-size: 13px;
	text-align: center;
}

.text-form-reg p{
	margin: 18px 0;
}

.reg .form-block{
	max-width: 700px;
}

.reg .popup-block .r-col,
.reg .popup-block .l-col{
	padding: 30px;
}

.popup.reg .btn.green{
	padding: 15px 10px;
}

.form-gift-reg{
	width: 300px;
	background: #fff;
	cursor: pointer;
}

.one-form-gift-reg{
	width: 100%;
	color: #1b5480;
	font-size: 14px;
	padding: 15px;
	border-top: 1px solid #e9eef2;
}

.one-form-gift-reg input[type="radio"]{
	display: none;
}

.img-one-form-gift-reg{
	width: 60px;
	float: left;
	cursor: pointer;
}

.img-one-form-gift-reg svg{
	width: 60px;
	cursor: pointer;
}

.text-one-form-gift-reg{
	width: calc(100% - 60px);
	float: right;
	padding-left: 15px;
}

.text-one-form-gift-reg span{
	display: block;
	width: 100%;
	font-weight: 700;
	margin: 0 0 8px;
	cursor: pointer;
}

.clearfix{
	float: none;
	clear: both;
}

.one-form-gift-reg:hover svg,
.one-form-gift-reg.active svg{
	fill: #fff!important;
}

.one-form-gift-reg:hover,
.one-form-gift-reg.active{
	background: #1b5480;
	cursor: pointer;
	color: #fff;
}

.one-form-gift-reg:nth-child(1){
	border-top: none;
}

.one-form-gift-reg:nth-child(3){
	opacity: 0.7;
}

.reg .popup-block{
	max-width: 100%;
}

.form-gift-reg{
	float: left;
}

.reg .form-block{
	float: right;
	width: 700px;
	margin-left: 1px;
	background: #fff;
	align-items: flex-start;
	flex-wrap: wrap;
}

.reg .form-block .title{
	width: 100%;
	margin-bottom: 15px;
}

.reg .form-block .title .text.sm{
	text-transform: uppercase;
	font-size: 24px;
	width: 100%;
}

.form-col{
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	text-align: justify;
}

.form-one-col{
	width: calc(50% - 8px);
}

.form-one-col:nth-child(1){
	margin-right: 16px;
}

.form-block .field-block .field:focus{
	border: 1px solid #276aa5;
}

.popup.reg .btn.green{
	border-radius: 0;
	cursor: pointer;
	padding: 17px 10px 18px;
}

.error-text{
	color: #1b5480;
}

.form-var{
	width: 100%;
	display: flex;
	/* display: none; */
	align-items: flex-start;
	text-align: justify;
	flex-direction: row;
	color: #1b5480;
	margin: 0 0 15px;
}

.form-one-var{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #d3dee8;
	margin-right: 1px;
	cursor: pointer;
	flex: 1 1 auto;
	padding: 7px 5px;
}

.form-one-var:last-child{
	display: none;
}

.img-form-one-var{
	height: 13px;
	display: inline-block;
	margin-right: 5px;
	padding-top: 1px;
}

.img-form-one-var svg{
	fill: #1b5480;
	margin-bottom: -3px;
}

.form-one-var span{
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
}

.form-one-var:hover,
.form-one-var.active{
	background: #1b5480;
	color: #fff;
}

.form-one-var:hover .img-form-one-var svg,
.form-one-var.active .img-form-one-var svg{
	fill: #fff;
}

.menu .ico__svg[data-v-100dac98]{
    width: auto;
    max-width: 100%;
    height: 9px;
}

.main-frame .products .container .section__main{
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0 70px;
	min-height: calc(100vh - 420px);
}

#home .main-frame .products .container{
	max-width: 100%;
	padding: 0;
}

.main-frame .products h1{
	font-size: 28px;
	margin: 0 0 15px;
}

.log-social{
	margin: 15px auto 0;
}

.auth .form-block .field-block{
    width: 100%;
}

.auth .form-block .field-block .field{
	padding: 2px 35px 2px 8px;
	border-radius: 4px;
	height: 32px;
}

.auth .form-block .field-block svg{
	fill: #205685;
}

.check-form input{
	display: block;
	float: left;
}

.check-form span{
	display: block;
	margin-top: 0px;
	float: left;
}

.h-log-social{
	font-size: 12px;
	color: #7498b8;
	margin: 0 0 10px;
	text-align: center;
}

.popup-block{
	border-radius: 4px;
}

.auth .form-block{
	background: #fff;
	border-radius: 4px;
}

.svg-img{
	border-left: 1px solid #205685;
	width: 40px;
	position: relative;
	z-index: 9991;
	width: 26px;
	margin-top: -27px;
	margin-bottom: 4px;
	padding-left: 7px;
	height: 22px;
	margin-left: calc(100% - 33px);
}

.auth .title{
	display: block;
	width: 100%;
	text-transform: uppercase;
    font-size: 24px;
    width: 100%;
}

.auth .form-block .title .text{
	font-size: 24px;
}

.auth .title2{
	display: none;
}

.form-col-father{
	width: 100%;
}

.form-col{
	display: none;
}

.form-col.active-form{
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-col .log-social{
	width: 100%;
}

.form-col .socials{
	width: 252px;
	margin: 0 auto;
}

.text-form-reg a{
	color: #3da5ff;
	text-decoration: underline;
}

.reg .form-block .field-block .field{
	height: 38px;
	border-radius: 4px;
	padding: 6px 10px;
}

.field-block select{
	padding: 10px 10px;
	background: #fff;
    border-color: #276aa5;
    color: #276aa5;
	height: 38px;
    width: 100%;
    border: 1px solid #276aa5;
	border-radius: 4px;
}

.popup.reg .btn.green{
	padding: 12px 10px 11px;
	border-radius: 4px;
}

.index-top{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.index-banner{
	width: 230px;
	margin-left: 10px;
}

.index-reg{
	width: 280px;
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 4px;
}

.index-top .homepage-top{
	width: calc(100% - 550px);
}

body.login-frame .index-top .homepage-top{
	width: calc(100% - 260px);
	margin-left: 10px;
}

.one-index-banner{
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 4px;
	min-height: 152.5px;
	margin-bottom: 10px;
	padding: 15px;
	display: flex;
	position: relative;
	z-index: 995;
	
}

.h-one-index-banner{
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
}

.line-one-index-banner{
	width: 35px;
	height: 2px;
	background: #fff;
	margin-top: 8px;
	margin-bottom: 35px;
}

.one-index-banner span{
	/* color: #5c9fc9; */
	color: #f6de33;
	font-size: 28px;
	display: block;
	font-weight: 700;
}

.one-index-banner small{
	/* color: #5c9fc9; */
	color: #f6de33;
	font-size: 14px;
}

.one-index-banner:nth-child(2){
	margin-bottom: 0;
}

.form-col-index{
	display: block;
	height: 315px;
	background: #fff;
	position: relative;
	z-index: 995;
	padding: 8px 15px;
	border-radius: 4px;
}

.form-col-index .title{
	text-align: center;
	color: #1b5480;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 5px;
}

.form-col-index .form-var{
	margin: 0 0 5px;
}

.form-col-index .form-one-col{
	width: 100%;
	margin: 0!important;
}

.field-block input{
	padding: 10px 10px;
    background: #fff;
    border-color: #276aa5;
    color: #276aa5;
    height: 38px;
    width: 100%;
    border: 1px solid #276aa5;
    border-radius: 4px;
}

.form-col-index .text-form-reg p{
	margin: 8px 0;
}

.index-reg .field-block{
	margin: 0 0 5px;
}

.index-reg .text-form-reg{
	margin: 5px 0 0;
}

.index-reg .form-one-col{
	display: none;
}

.index-reg .form-one-col.active-form{
	display: block;
}

.index-reg .btn.green{
	padding: 12px 10px 11px;
	cursor: pointer;
}

.homepage-top{
	margin: 0;
	position: relative;
	z-index: 995;
}

.homepage-top .swiper-slide{
	border-radius: 4px;
	background-size: cover;
	background-position: 50% 50%;
}

.btn.green{
	cursor: pointer;
}

header .btn.green.header-btn{
	padding-left: 5px;
	padding-right: 5px;
}

.login-frame iframe.index-iframe{
    margin-top: 0;
}

.login-frame .close-menu{
	margin-left: calc(100% - 188px);
}

body{
	/* min-width: 1040px; */
}

.frame-bg{
	width: 100%;
	height: 70px;
	background: #1d4369;
	margin-top: -58px;
	position: relative;
	z-index: 9;
}




.text-remind{
	font-size: 14px;
	color: #1b5480;
	margin: 8px 0 10px;
}

.remind .popup-block{
	padding: 30px;
	background: #fff;
	max-width: 500px;
}

.remind input{
	border-radius: 4px!important;
	height: 32px!important;
}

.remind .btn.green{
	padding: 8px 15px 7px;
	font-size: 14px;
}

.remind .form-block{
	display: block;
	float: left;
	width: calc(100% - 130px);
	margin: 0;
	max-width: 100%;
}

.remind .form-block .title .text{
	font-size: 22px;
}

.img-remind{
	width: 130px;
	float: right;
}

.img-remind svg{
	transform: rotate(-30deg);
	width: 145px;
	margin-top: 60px;
	margin-left: 40px;
}

.img-remind:before{
    transform: rotate(-30deg);
}

.img-remind:before {
    border-radius: 1.5625em;
    background: #D8E0E8;
}

.img-remind:before {
    position: absolute;
    /* content: ""; */
}

/* #login-modal{
	position: absolute;
	top: 0;
	display: block!important;
	opacity: 1;
	z-index: 9996;
} */

a:hover{
	color: inherit;
}

html.modal_open:after{
	content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 995;
    /* background-image: linear-gradient(180deg, #210459 0%, rgba(59,0,90,0.85) 100%); */
    background: rgba(39,106,165,1);
    opacity: .7;
}

.tab__content .active{
	background-color: #1b1a27;
}



.popup.search,
.popup.search .popup-block{
	width: 100%;
}

.game-page .game-page-width{
	margin: 0 auto;
}

.game-page .game-page-width .top-pannel{
	margin-top: 45px;
}

.game-page .game-page-width .game-modal{
	padding-top: 54%;
}

.popup.search .search-field{
	width: 700px;
	max-width: 820px;
}





.game-modal.full-sc{
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.game-modal.full-sc .browser-size.block{
	display: none;
}

.game-modal.full-sc .side-pannel{
	right: 0;
}






.game-modal .game .search{
    display: flex;
    align-items: center;    
    height: 35px;
    width: calc(100% - 100px);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 19px;
    border: 1px solid #fff;
    background-color: #190a31;
    overflow: hidden;
    margin: 10px 0;
}

.game-modal .game .search input{
    display: flex;
    align-items: center;    
    height: 100%;
    width: calc(100% - 100px);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: #190a31;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: left 10px center;
    width: calc(100% - 37px);
    padding-left: 40px;
}

.game-modal .game .search input::placeholder{
    color: #fff;
}

.game-modal .game .search .close{
    margin-left: auto;
    margin-right: 10px;
    width: 14px;
    opacity: .7;
    cursor: pointer;
    transition: .5s;
}

.game-modal .game .search .close:hover{
    opacity: 1;
}

.game-modal .modal-game-name{
    display: none;
}

.game-modal.multi .modal-game-name{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 33px;
    overflow: hidden;
    background-color: #2d1552;
    border-bottom: 1px solid rgba(255,255,255,0.11);
    border-radius: 4px 4px 0 0;
    padding: 0 10px;
}

.modal-game-name .close-game{
    margin-left: auto;
    cursor: pointer;
}

.game-page .game.none-search .modal-game-name{
	display: none;
}

.active-game ul li a{
	/* pointer-events: none; */
}

.game-modal .game iframe{
	display: block;
}

.game-modal .game.none-search iframe,
.game-modal .game .search{
	display: none;
}

.game-modal .game.none-search iframe{
	display: none!important;
}

.game-modal .game.none-search .search{
	display: flex;
}

.popup.search li .code-game{
	display: none;
}







.container-contact-form{
	padding: 50px 10px 150px;
    background: url(../img/bg-support.png) center center no-repeat;
}

.block-contact-form{
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
}

.h-contact-form{
	margin-bottom: 20px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.mini-h-contact-form{
	margin-top: 5px;
    color: #a0a0a1;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

.one-item-form{
	margin: 15px 0;
}

.one-item-form label{
	display: block;
	width: 130px;
	float: left;
	color: #fff;
	text-align: center;
	font-weight: 700;
	padding-top: 14px;
}

.one-item-form label span{
	margin-left: 6px;
}

.one-item-form input,
.one-item-form textarea{
	width: calc(100% - 130px);
	float: right;
	display: block;
    padding: 14px 18px;
    font-size: 14px;
    border: 1px solid transparent;
    background: #251146;
    background: #fff;
    color: rgba(255,255,255,0.5);
    color: #222;
    border-radius: 25px;
    outline: none;
    resize: none;
}

.one-item-form textarea{
	height: 110px;
}

.one-item-form input[type="submit"]{
	width: 128px;
	text-align: center;
	font-size: 13px;
	text-transform: uppercase;
	background: #f6de33;
	margin: 0 auto;
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	letter-spacing: 0.5px;
	float: none;
}

.reply-contact-form{
    margin-top: 5px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

.info-contact-form{
    margin: 120px 0 0;
	background: #fff;
	color: #333;
	border-radius: 5px;
	padding: 20px;
	font-size: 14px;
}

.info-contact-form a{
    color: #337ab7;
}

body#faq .rules.page_content h1{
	color: #333;
	display: none;
}

body#faq .main-title{
	color: #333;
}

.footer-block .list li img{
	width: 30px;
	float: left;
	margin: 5px 5px 0 0;
}



.panel__info{
	width: calc(100% - 575px)!important;
}

.panel__slider .slider__title{
	color: #fff;
}




.for-list-game .swiper-slide{
	margin-bottom: 10px;
}

.for-list-game .swiper-slide img{
	background-size: cover;
	background-position: 50% 50%;
	min-height: 120px;
}

.game-page .button-scroll-top{
	display: none;
}

.button-scroll-top{
	z-index: 9995;
}

.empty-bonuses-label{
	margin: 0 0 30px;
}

.vip-panel img{
	margin: 0 auto!important;
	display: block!important;
}

.payitem__img_inner img{
	margin: 0 auto;
}

.pay-tooltip__summ label input[type="radio"]{
	width: 16px;
	height: 16px;
	margin-top: -3px;
}

.pay-tooltip__summ label{
	padding: 0 6px;
}

.pay-tooltip__input .input__inner{
	width: 80px;
	margin-left: 6px;
}

.payitem__img_inner .svg-card_rub-dims{
	margin: 0 auto;
}

.right-menus{
	display: flex;
	justify-content: flex-end;
	width: 300px;
	float: right;
}

.topmenu{
	width: calc(100% - 102px);
	justify-content: space-between;
}

.popup-block{
	border: none!important;
}

.error-text{
	width: 100%;
	padding: 15px;
	text-align: center;
}

.enter-pin{
	margin-top: 30px;
	margin-bottom: 10px;
}

.reply-pin-block{
	text-align: center;
	margin-top: 5px;
}

.game-modal .close-fullsc,
.game-modal.full-sc .open-fullsc{
	display: none;
}

.game-modal.full-sc .close-fullsc{
	display: inline-block;	
}





.for-list-game .swiper-slide,
.swiper.grid .swiper-slide{
	min-height: 180px;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	margin: 5px 5px 5px 5px;
}

.for-list-game .swiper-slide img,
.swiper.grid .swiper-slide img{
	position: relative;
	z-index: 1;
	display: none;
	width: 100%;
	height: 100%;
}

.for-list-game .swiper-slide{
	width: calc(20% - 10px);
}

.swiper-slide.removed{
	display: none;
}



.popup_changePassword{
	position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
	z-index: 9995;
	background-color: #1b1a27;
}



.block-settings.only-mobile{
	display: none;
}

.topmenu-mobile-bal{
	display: none;
}

.topmenu .btn.green.header-btn.open-cas{
	margin-top: 5px;
	margin-left: 0px;
	margin-bottom: 15px;
}

.footer-sides > .footer-block.footer-block-copyright{
	display: block;
}








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

	.for-list-game .swiper-slide{
		height: auto;
		width: calc(25% - 10px);
	}
	
	
	
}

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

	.for-list-game .swiper-slide{
		width: calc(33.33% - 10px);
	}
	
	.for-list-game .swiper-slide,
	.swiper.grid .swiper-slide{
		min-height: 180px;
	}
	
	.swiper.grid .swiper-slide{
		min-height: 240px;
	}
	
	.menu > li .ico__svg[data-v-100dac98]{
		height: 6px;
	}
	
	.menu > li > a{
		padding: 10px 4px;
		font-size: 13px;
		line-height: 18px;
	}
	
	header .btn.green.header-btn{
		font-size: 11px;
		padding: 10px 15px;
		line-height: 1.1;
	}
	
	.menu{
		margin-left: 10px;
	}
	
	.menu > li + li{
		margin-left: 5px;
	}
	
	
	
	
	
	
	
	
	
	
}

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

	.panel__info{
		width: calc(100% - 366px)!important;
	}
	
}

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

	.panel__info{
		width: calc(100% - 366px)!important;
	}
    
    header .btn.green.header-btn{
        margin-left: 10px;
    }
    
    .header-icon{
        margin-left: 5px;
    }
    
    .menu{
        margin-right: 0;
    }
	
}

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

	.logo{
		padding-left: 6px;
	}
	
	.index-banner{
		margin-left: 0;
	}
	
	.index-top .homepage-top{
		width: calc(100% - 530px);
	}
	
	.mob-btn{
		display: flex;
		justify-content: flex-end;
        margin-left: auto;
	}
	
	.mob-btn .header-btn{
		margin-left: 5px;
		padding: 10px 15px!important;
		font-size: 12px;
	}
	
	.btn{
		padding: 5px 10px;
		font-size: 12px;
		line-height: 15px;
	}
	
	.menu > li > a{
		font-size: 12px;
		padding: 10px 4px;
		line-height: 18px;
    }
	
	.close-menu.active .active-img{
		display: block;
	}
	
	.close-menu .active-img,
	.close-menu.active .no-active-img{
		display: none;
	}
	
	.topmenu{
		display: block;
		align-items: center;
		width: 60%;
		position: absolute;
		z-index: -1;
		opacity: 0;
		height: calc(100vh - 52px);
		top: 52px;
		left: 0;
		padding: 15px;
		overflow-y: scroll;
		overflow-x: hidden;
		background: #205685;
		display: none;
		padding-bottom: 50px;
	}
	
	.topmenu.active{
		position: fixed;
		z-index: 9995;
		opacity: 1;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
	}
	
	.menu{
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		align-items: flex-start;
		margin-left: 0;
		order: 2;
	}
	
	.right-menus{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		order: 1;
		width: 100%;
		flex-wrap: wrap;
	}
	
	header .right-menus .btn.green.header-btn{
		width: calc(50% - 7px);
		text-align: center;
		justify-content: center;
	}
	
	.right-menus .block-settings{
		/* display: none; */
		display: flex;
		display: none;
		order: 1;
	}
	
	.block-settings.only-mobile{
		display: flex;
		width: 100%;
		order: 3;
	}
	
	.topmenu.to-open-d{
		flex-direction: row;
	}
	
	.menu > li{
		display: block;
		width: 100%;
	}
	
	.menu li:hover .dropdown,
	.menu .dropdown{
		position: static;
		opacity: 1;
	}
	
	.menu li .dropdown{
		width: 100%!important;
		display: none;
	}
	
	.menu li .dropdown.active{
		display: block;
	}
	
	.menu > li + li{
		margin: 0;
	}
	
	.score,
	.btn.green.header-btn.none-mob,
	.header-icon.with-title.gift-head,
	.header-icon,
	.header-icon.data-toggle-modal{
		display: none;
	}
	
	.topmenu-mobile-bal{
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin: 0 0 15px;
	}
	
	.topmenu-mobile-bal .score{
		display: flex;
		width: calc(50% - 7px);
		margin: 0;
	}
	
	.topmenu-mobile-bal .btn.green.header-btn{
		display: flex;
		width: calc(50% - 7px);
		order: 0;
		justify-content: center;
		text-align: center;
		margin: 0;
	}
	
	
	
	
	
	
	
	
	.score{
		max-width: 100%;
		margin: 15px 0;
	}
	
	.score-account{
    	min-width: calc(100% - 28px);
	}
	
	.topmenu .header-btn{
		margin: 5px 0;
		width: 100%;
		display: flex;
		order: 2;
	}
	
	.close-menu{
		display: block;
		width: 28px;
        min-width: 28px;
		margin-left: 15px;
		cursor: pointer;
	}
	
	.this-title.bottom{
		display: none!important;
	}
	
	div.header-icon{
		display: block;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.header-icon.with-title.gift-head{
		width: 32px;
		float: left;
		margin-top: 0;
	}
	
	.topmenu .header-btn{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.header-icon .dropdown{
		position: static;
		margin-top: 8px;
		width: 100%;
		opacity: 1;
	}
	
	.header-icon .dropdown::before{
		display: none;
	}
	
	header .block-settings{
		margin-top: 15px;
		display: none;
		width: 100%;
	}
	
	header .block-settings .item{
		margin-top: -10px;
	}
	
	header .block-settings .user-toppanel__item_profile{
		margin-top: -9px;
		display: block;
		height: 30px;
		float: left;
	}
	
	.header-icon.logout{
		margin-top: 10px;
	}
	
	.header-icon.call{
		display: none;
	}
	
	.header-icon.gift-head,
	div.header-icon,
	.header-icon.logout,
	header .block-settings{
		margin-left: 0;
	}
	
	.menu:hover > li{
		opacity: 1;
	}
	
	.menu .dropdown{
		padding: 10px 13px;
	}
	
	.menu .dropdown .links li,
	.menu .dropdown .links li a{
		border-left: none;
	}
	
	.menu .dropdown .links li a{
		padding-left: 0;
	}
	
	.menu .dropdown .links li a:hover{
		border-left: none;
	}
	
	.menu .btn{
		margin-top: 12px;
	}
	
	.popup_tabs{
		top: 52px;
	}
	
	
	
	.block-settings{
		justify-content: flex-start;
	}
	
	.block-settings.only-mobile .header-icon,
	.block-settings.only-mobile .header-icon.data-toggle-modal{
		display: flex;
	}
	
	.block-settings.only-mobile .header-icon.with-title.data-toggle-modal{
		/* margin-top: -10px; */
		margin-bottom: 0;
	}
	
	header .block-settings.only-mobile .user-toppanel__item_profile{
		width: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 0;
		height: 32px;
	}
	
	
	.block-settings.only-mobile .header-icon.logout{
		margin-top: 0;
	}
	
	header .block-settings.only-mobile select.item{
		margin-top: 0;
		margin-left: 15px;
	}
	
	header .block-settings.only-mobile select.item{
		margin-left: 0;
	}
	
	.login-frame header .block-settings.only-mobile select.item{
		margin-left: 15px;
	}
	
	a.open-cas{
		display: flex;
		justify-content: center;
		margin-bottom: 10px!important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
}

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

	.panel__info{
		width: calc(100% - 315px)!important;
	}
	
	.panel__slider a img{
		height: auto!important;
	}
	
	.panel__slider-inner .slider__item{
		padding: 0 5px;
		width: 100px!important;
	}
	
	.panel__slider-inner .slick-track{
		width: 100%!important;
	}
	
	.main-frame .products .container{
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.l-side.var3{
		width: 100%;
		max-width: 100%;
	}
	
	.main-frame.var3{
		width: 100%;
		max-width: 100%;
	}
	
	.slot-search{
		padding: 45px 0 15px;
	}
	
	.slot-search input{
		width: 100%;
	}
	
	.slot-search svg{
		top: calc(50% + 7px);
		left: 12px;
	}
	
	.reg .form-block{
		width: calc(100% - 350px);
		float: left;
	}
	
	.popup.reg .close{
		right: 10px;
	}
	
	
	
	
	
	
	
	
	
	
	
}

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

	.index-banner{
		margin-left: 10px;
	}
	
	.index-top .homepage-top{
		width: calc(100% - 550px);
	}
	
	.popup-block{
		max-width: 100%;
	}
	
	.form-block{
		overflow-y: scroll;
		height: 100vh;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: colunm;
		flex-wrap: wrap;
	}
	
	.auth .form-block{
		min-width: 100%;
	}
	
	.popup{
		
	}
	
	.popup.active{
		display: block!important;
	}
	
	.popup-block{
		background: #fff;
		width: 100%!important;
		max-width: 100%!important;
	}
	
	.popup-block .form-block{
		padding: 30px!important;
	}
	
	.auth .title{
		display: block;
		width: 100%;
	}
	
	.form-block .title .text.sm{
		color: #1b5480!important;
	}
	
	.form-block .title .sub-text{
		margin-top: 30px;
		color: rgba(27,84,128,0.7);
	}
	
	.form-block .title .sub-text span{
		color: #fff;
		background: #4d8ab9;
		display: block;
		width: 100%;
		max-width: 250px;
		margin: 15px auto 0;
		padding: 15px 20px;
		text-decoration: none;
		text-transform: uppercase;
	}
	
	.popup .close{
		top: 18px;
	}
	
	.close button{
		display: block;
	}
	
	.close img{
		display: none;
	}
	
	.close button::before{
		-webkit-transform: translateX(0.6rem) rotate(45deg);
		transform: translateX(0.6rem) rotate(45deg);
	}
	
	.close button::after{
		-webkit-transform: translateX(0.6rem) rotate(-45deg);
		transform: translateX(0.6rem) rotate(-45deg);
	}
	
	.close button::before,
	.close button::after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0.2rem;
		height: 1.7rem;
		background: #1e3b5a;
	}
	
	
	
	
	.check-form{
		width: 100%;
	}
	
	.check-form label{
		width: calc(100% - 148px);
	}
	
	.form-gift-reg,
	.reg .form-block,
	.reg .form-block{
		float: none;
		clear: both;
		width: 100%;
	}
	
	.reg .popup-block{
		background: #fff;
		padding: 30px;
		padding-top: 50px;
		height: 100vh;
		overflow-y: scroll;
	}
	
	.reg .popup-block .r-col{
		max-height: 100%;
		float: none;
		clear: both;
	}
	
	.form-one-col{
		width: 100%;
		margin: 0;
	}
	
	.form-one-col:nth-child(1){
		margin-right: 0;
	}
	
	.reg .popup-block .form-block{
		padding: 0!important;
		padding-top: 30px!important;
	}
	
	.form-gift-reg{
		/* border: 1px solid #e9eef2; */
	}
	
	.form-one-var{
		width: 25%;
	}
	
	.img-form-one-var{
		display: block;
		padding: 0;
		margin-right: 0;
		margin-bottom: 10px;
		height: 25px;
	}
	
	.form-one-var span{
		text-transform: none;
		display: flex;
		align-items: center;
		padding: 1px;
		font-size: 11px;
		line-height: 13px;
		min-height: 30px;
	}
	
	.index-banner{
		width: calc(50% - 10px);
	}
	
	.index-reg{
		width: calc(50% - 20px);
	}
	
	body.login-frame .index-banner{
		width: 100%;
		margin-left: 0;
	}
	
	.index-top .homepage-top{
		width: calc(100% - 20px);
		height: 300px;
		margin-top: 10px;
		margin-left: 10px;
	}
	
	body.login-frame .index-top .homepage-top{
		width: 100%;
		margin-left: 0;
	}
	
	.homepage-top .text-block{
		background: rgba(0, 0, 0, 0.55);
	}
	
	.form-col-index{
		height: 380px;
	}
	
	.line-one-index-banner{
		margin-bottom: 68px;
	}
	
	.remind .form-block,
	.img-remind{
		float: none;
		clear: both;
		width: 100%;
	}
	
	.img-remind{
		margin-top: -190px;
	}
	
	.img-remind svg{
		margin: 0 auto;
		transform: rotate(0deg);
	}
	
	.popup.search .search-field{
		width: calc(100% - 40px);
		max-width: 100%;
		margin-left: 20px;
		margin-right: 20px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.footer-block{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	
	.footer-block .list{
		width: calc(50% - 10px);
		flex: none;
		margin-left: 0;
		margin-bottom: 10px;
	}
	
	.footer-block .list + .list{
		margin-left: 0;
	}
	
	.footer-block .partners{
		width: 100%;
		margin: 0 0 15px;
	}
	
	.footer-sides{
		display: block;
		justify-content: flex-start;
	}
	
	.footer-sides > .footer-block:nth-child(1),
	.footer-sides > .footer-block:nth-child(2),
	.footer-sides > .footer-block:nth-child(3){
		width: 100%;
		margin-bottom: 1px;
	}
	
	.footer-block .partners-logo{
		flex-wrap: wrap;
	}
	
	.footer-block .partners-logo a{
		width: 33.33%;
		margin-bottom: 15px;
	}
	
	.top-links a{
		font-size: 14px;
		margin-right: 12px;
	}
	
	.menu .dropdown .promo{
		width: 100%;
		font-size: 11px;
		padding: 15px;
	}
	
	.menu .dropdown .promo:nth-last-child(-n+2){
		margin-bottom: 10px;
	}
	
	.menu .dropdown .promo:last-child{
		margin-bottom: 0;
	}
	
	.menu .dropdown hr{
		margin: 10px 0;
	}
	
	.homepage-top .swiper-button-next,
	.homepage-top .swiper-button-prev{
		background-color: rgba(255, 255, 255, 0.75);
		color: #000;
	}
	
	.homepage-top .ico__svg[data-v-100dac98]{
		height: 16px;
	}
	
	.login-frame .frame-bg{
		margin-top: 0;
		display: none;
	}
	
	body{
		overflow-x: scroll;
	}
	
	.login-frame iframe.index-iframe{
		margin-top: 10px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}

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

	.panel__icon-cell{
		display: inline-block;
		width: auto;
	}
	
	
	
	
	
	
	
}

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

	
	.reg .form-block,
	.text-form-reg{
		max-width: 100%;
		width: 100%;
	}
	
	.score-account .dropdown{
		width: 100%;
	}
	
	
}

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

	.homepage-top .text-block h2{
		font-size: 25px;
	}
	
	
	
	
	
	
	
	.popup_tabs{
		left: 0;
	}
	
	.index-banner,
	.index-reg{
		width: 100%;
		margin-left: 0;
	}
	
	.index-reg{
		margin-top: 10px;
		margin-right: 0;
	}
	
	.form-col-index{
		height: auto;
	}
	
	.index-top .homepage-top{
		width: 100%;
		margin: 10px 0 0 0;
	}
	
	.menu .dropdown .img-block a{
		/* width: 70px; */
	}
	
	.topmenu{
		width: 78%;
	}
	
	.form-one-var{
		min-height: 105px;
	}
	
	.panel__info,
	.panel__slider-inner{
		width: 100%!important;
	}
	
	.panel__slider-inner .slider__item:nth-child(5),
	.panel__slider-inner .slider__item:nth-child(6),
	.panel__slider-inner .slider__item:nth-child(7),
	.panel__slider-inner .slider__item:nth-child(8),
	.panel__slider-inner .slider__item:nth-child(9),
	.panel__slider-inner .slider__item:nth-child(10){
		display: none;
	}
	
	.main_tournament{
		padding: 0 0 30px;
	}
	
	.panel__status_future{
		background: none;
	}
	
	/* .payitem {
		width: 100%;
    	margin: 8px 0;
	}
	
	.payitem__footer .payitem__note{
		text-align: center;
	} */
	
	.payitem__footer .payitem__note{
		font-size: 13px;
	}
	
	.pay-tooltip__summ .pay-tooltip__input{
    	margin: -24px 0 0 16px;
	}
	
	.pay-tooltip__summ input[name="money"]{
		margin-top: 15px;
	}
	
	#withdraw-tab .pay-tooltip__number_withplus .pay-tooltip__input:before{
		left: 11px;
	}
	
	.for-list-game .swiper-slide,
	.swiper.grid .swiper-slide{
		min-height: 150px;
		margin: 5px;
		width: calc(33.33% - 10px);
	}
	
	.swiper.grid .swiper-slide{
		min-height: 65px;
		margin: 5px;
		/* width: calc(33.33% - 10px)!important; */
	}
	
	iframe.index-iframe{
		width: calc(100% + 30px)!important;
		margin-left: -15px;
		margin-right: -15px;
	}
	
	
	
	.button-scroll-top{
		display: none!important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
}

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

	.topmenu-mobile-bal{
		flex-wrap: wrap;
	}
	
	.topmenu-mobile-bal .score,
	.topmenu-mobile-bal .btn.green.header-btn{
		width: 100%;
	}
	
	.topmenu-mobile-bal .btn.green.header-btn{
		margin-top: 15px;
	}
	
	.score-account .dropdown{
		width: 100%;
	}
	
	
	
	
}

@media screen and (max-width: 480px){
    
    .one-item-form{
        display: flex;
        flex-wrap: wrap;
    }
    
    .one-item-form label{
        width: auto;
        padding-left: 10px;
    }
    
    .one-item-form input,
    .one-item-form textarea{
        width: 100%;
        margin-top: 10px;
    }
    
    .form-block .field-block + .btn,
    .form-block .field-block{
        width: 100%;
    }

	.panel__slider-inner .slider__item:nth-child(4){
		display: none;
	}
	
	header .btn.green.header-btn{
		font-size: 10px;
	}
	
	.mob-btn .header-btn{
		margin-left: 5px;
		padding: 10px 5px!important;
	}
	
	.menu .dropdown .img-block a{
		width: calc(50% - 8px);
	}
	
	header .right-menus .btn.green.header-btn{
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	
    .auth .form-block{
        width: 100%;
    }
	
	
	
	
	
	
	
}

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

	.index-banner{
		width: calc(100% - 20px);
		margin-bottom: 10px;
	}
	
	.index-reg{
		width: calc(100% - 20px);
	}
	
	.index-top .homepage-top{
		width: calc(100% - 20px);
		height: 300px;
		margin-top: 10px;
		margin-left: 10px;
	}
	
	.form-col-index{
		height: auto;
		min-height: auto;
	}
	
	.line-one-index-banner{
		margin-bottom: 35px;
	}
	
	.topmenu{
		width: 80%;
	}
	
}
