/*
Theme Name: Vavada
Author: Vavada team
Description: Our Vavada default theme
Version: 0.1
*/
@font-face {
    /*font-family: 'Futura PT Medium';*/
    /*font-display: swap;*/
    /*src: url('fonts/FuturaPT-Medium.eot');*/
    /*src: url('fonts/FuturaPT-Medium.eot?#iefix') format('embedded-opentype'),*/
    /*url('fonts/FuturaPT-Medium.woff') format('woff'),*/
    /*url('fonts/FuturaPT-Medium.ttf') format('truetype');*/
    /*font-weight: normal;*/
    /*font-style: normal;*/
}
*{
    box-sizing: border-box;
}
a, div, img, picture {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: initial;
}
a, body, button, caption, div, footer, form, h1, h2, h3, header, html, img, input, label, li, menu, nav, ol, p, select, span, table, tbody, td, textarea, tfoot, th, thead, tr, ul {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: #212132;
    background-image: url(img/body.svg);
    background-repeat: repeat;
}

.scroll-container{
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 7px;
    scrollbar-color: #fe284a;
    scrollbar-width: thin;
}
@media (min-width: 768px) {
    .scroll-container{
        background: 0;
    }
}
.scroll-container::-webkit-scrollbar {
    height: 5px;
    width: 0;
    background-color: #ddd;
}
.scroll-container::-webkit-scrollbar-thumb {
    background-color: #fe284a;
}
.scroll-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #ddd;
}
img{
    max-width:100%;
    height: auto;
}
button,
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: 0;
    background: transparent;
}
ol, ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.content table {
    border-collapse: collapse;
    width: 100%;
}

.content table td, .content table th {
    border: 1px solid #ddd;
    padding: 8px;
}
.content table tr{
    transition: all .1s ease-in;
}

.content table tr:hover {color: #000;background-color: #ddd;}

.content table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}
.content{
    max-width: 100%;
    margin-top: 25px;
    margin-bottom: 35px;
}
.content ul,.content ol{
	padding-left: 0;
	margin: 15px 0;
}
.content ul li:before{
	content: "";
	position: relative;
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	margin-right: 14px;
	margin-bottom: 2px;
	background: #fe284a;
	border-radius: 8px;
}
.content ol {
	counter-reset: section;
}
.content li{
    margin-bottom: 5px;
}
.content ol li:before{
	counter-increment: section;
	content: counter(section)".";
	position: relative;
	display: inline-block;
	width: 18px;
	height: 6px;
	margin-right: 10px;
	text-align: right;
	color: #fe284a;
}
.action-referral-link{
    cursor: pointer;
}
.alignright {
    max-width: 100%;
    float: right;
    margin: 10px 0 10px 10px;
}
.alignleft {
    max-width: 100%;
    float: left;
    margin: 10px 10px 10px 0;
}
.aligncenter {
    max-width: 100%;
    margin: 10px auto;
    display: block;
    text-align: center;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container-fluid{
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    /*align-items: flex-start;*/
}
.container-fluid .row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
@media (max-width: 1200px){
    .container, .container-fluid, .container-fluid .row{
        max-width: 100%;
    }
}
@media (max-width: 668px){
    .container, .container-fluid, .container-fluid .row{
        padding-right: 10px;
        padding-left: 10px;
    }
}

header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: rgba(37,37,54,.95);
    box-sizing: border-box;
    z-index: 90;
}
header.fixed{
    height: auto;
    padding: 6px 0 8px 0;
}
.admin-bar header{
    top: 32px;
}
.menu-header-container,
.header-menu{
    display: flex;
}
.fixed .menu-header-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fixed .header-menu {
    display: block;
}
.fixed .header-menu li:not(:last-of-type){
    margin-right: 0;
}
.fixed .header-menu li{
    margin-right: 30px;
    margin-left: 40px;
    margin-bottom: 10px;
}
.burger {
    position: absolute;
    left: 10px;
    top: 8px;
    display: none;
    width: 35px;
    z-index: 9999;
}

.burger span {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    display: block;
    height: 3px;
    background-color: #e21d5c
}

.burger span:not(:last-child) {
    margin-bottom: 8px
}


.burger.is-active span:nth-child(1) {
    -webkit-transform: translate(0, 14px) rotate(45deg);
    -ms-transform: translate(0, 14px) rotate(45deg);
    transform: translate(0, 14px) rotate(45deg)
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
    visibility: hidden
}

.burger.is-active span:nth-child(3) {
    -webkit-transform: translate(0, -7px) rotate(-45deg);
    -ms-transform: translate(0, -7px) rotate(-45deg);
    transform: translate(0, -7px) rotate(-45deg)
}
.logo{
    height: 30px;
    transition: transform .2s ease-in;
}
.fixed .logo {
    transform: scale(0.7);
}
.header-menu li,
.button-container{
    display: flex;
    align-items: center;
}
.logo,
.header-menu li:not(:last-of-type),
.button-container button:first-of-type{
    margin-right: 30px;
}
.header-menu li a{
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    color: #FFFFFF;
}
.button-container button,
.play-now{
    display: flex;
    align-items: center;
    height: 20px;
    color: #ffffff;
    cursor: pointer;
}
.button-container button:first-of-type{
    padding: 0;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: initial;
}
.button-container button:last-of-type,
.play-now{
    height: 30px;
    padding: 0 30px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
    background-color: #fe284a;
    border-radius: 50px;
    /*transition: all .15s ease-in;*/
}
.button-container button:last-of-type:focus, .button-container button:last-of-type:hover {
    box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255,255,255,.4);
}
.button-container button:last-of-type:active{
    transform: translateY(3px);
    box-shadow: inset 0 2px 0 0 #871628, inset 0 0 0 15px rgba(0,0,0,.2);
}
.play-now{
    height: 50px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 25px;
    font-size: 20px;
    padding: 0 40px;
    box-shadow: 0 5px 0 0 #871628, 0 4px 4px 0 #000;
}
.play-now:focus, .play-now:hover {
    box-shadow: 0 5px 0 0 #871628, 0 4px 4px 0 #000, inset 0 25px 25px -3px rgba(255,255,255,.4);
}
.play-now:active{
    transform: translateY(5px);
    box-shadow: inset 0 4px 0 0 #871628, inset 0 0 0 25px rgba(0,0,0,.2);
}
@media (max-width:1024px) {
    .header-menu{
        display: none;
    }
    .logo{
        margin-left: 40px;
    }
    .burger{
        display: block;
    }
}
@media (max-width:668px){
.fixed .header-menu li{
        margin-left: 0;
    }
}

.breadcrumbs{
    margin-top: 70px;
}
.breadcrumbs .home{
    color: #fe284a;
    transition: all .15s ease-in;
}
.breadcrumbs .home:hover{
    color: #e8ce3a;
}

.container-banner{
    max-width: 100%;
    padding: 0;
}
.banner-row{
    flex-wrap: nowrap;
}
.banner{
    width: 100%;
    overflow: hidden;
}
.swiper-container,
.swiper-slide{
    width: 100%;
    max-width: 100%;
}
.swiper-slide{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 380px;
    min-height: 380px;
    background-position: center;
    background-repeat: no-repeat;
}
.slide-image{
    position: absolute;
    height: 100%;
 left: 0;
 bottom: 0;
    object-fit: cover;
    object-position: center;
}
.swiper-slide .text {
    line-height: 32px;
    font-size: 26px;
    font-weight: bold;
    position: absolute;
    bottom: 6px;
    text-transform: uppercase;
}
/* everyday */
.swiper-slide.type-1 .text {
    /*left: calc(50% - 550px);*/
    max-width: 750px;
    line-height: 40px;
    font-size: 32px
}
/* megawin */
.swiper-slide.type-2 .text-block {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    background: linear-gradient(90deg, rgba(50, 18, 88, 0) 0, rgba(50, 18, 88, .9) 25%, rgba(50, 18, 88, .9) 75%, rgba(50, 18, 88, 0))
}
.swiper-slide.type-1 .text,
.swiper-slide.type-2 .text {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(180deg, #ffbc3a 0, #ffbc3a 50%, #e7971e 55%, #ffe47a 65%, #ffe47a 80%, #ffe47a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 48px;
    font-size: 40px;
    text-align: center;
    white-space: nowrap;
    color: rgba(50, 18, 88, .9)
}
/* maxwin */
.swiper-slide.type-3 .text-block {
    position: relative;
    left: 0;
    bottom: 32px;
    display: flex;
    margin: 0 auto;
    background: none;
}
.swiper-slide.type-3 .text {
    position: relative;
    width: 750px;
    text-transform: uppercase;
    line-height: 38px;
    font-size: 30px;
    background: linear-gradient(180deg, #ffee5b 0, #ffee5b 40%, #ffd303 45%, #f4b001 50%, #ffd303 55%, #ffee5b 60%, #ffee5b);
    -webkit-background-clip: text;
        text-shadow: 0 1px 0 #aaa, 0 2px 0 #aaa, 0 3px 0 #aaa, 1px 0 0 #aaa, 1px 1px 0 #aaa, 1px 2px 0 #aaa, 1px 3px 0 #aaa, 0 6px 25px rgba(0,0,0,.6);
    -webkit-text-fill-color: white;
}
.swiper-slide.type-3 .text button{
    display: inline;
    height: 28px;
    max-width: 100%;
    margin-left: 10px;
    padding: 0 8px;
    line-height: 32px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 800;
    font-family: Muller,sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 4px;
    text-shadow: none;
    box-shadow: 0 4px 0 0 #871628, 0 5px 5px 0 #000;
    background-color: #fe284a;
    overflow: hidden;
    border: none;
    outline: none;
}

.swiper-slide.type-3 .text button:focus, .swiper-slide.type-3 .text button:last-of-type:hover {
    box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255,255,255,.4);
}
.swiper-slide.type-3 .text button:active {
    transform: translateY(3px);
    box-shadow: inset 0 2px 0 0 #871628, inset 0 0 0 15px rgba(0,0,0,.2);
}
@media (max-width:1200px) {
    .swiper-slide .text {
        font-size: 32px!important;
    }
    .swiper-slide.type-3 .text {
        left: 0;
        font-size: 28px!important;
    }
}
@media (max-width:1024px) {
    .swiper-slide .text {
        font-size: 26px!important;
    }
}
@media (max-width:668px){
    
    header {
        height: 84px;
        background-color: #161626;
    }
    .menu-header-container {
        border-bottom: 1px solid #363648;
    }
    .header-navigation{
        width: 100%;
    }
    .logo {
        display: block;
        /*margin: 0 auto;*/
        margin-bottom: 5px;
    }
    .header-menu li, .button-container {
        margin: 0 auto;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .swiper-slide.type-3 .text-block,
    .swiper-slide.type-2 .text-block,
    .swiper-slide.type-1 .text-block {
        box-sizing: border-box;
        padding-top: 3px;
        line-height: 16px;
        font-size: 12px;
        text-transform: uppercase;
        text-align: center;
        text-shadow: none;
    }
    .swiper-slide.type-2 .text-block{
        background: linear-gradient(90deg, rgba(50, 18, 88, 0) 0, rgba(50, 18, 88, .6) 20%, rgba(50, 18, 88, .6) 80%, rgba(50, 18, 88, 0))
    }

    .swiper-slide.type-2 .text,
    .swiper-slide.type-1 .text {
        max-width: 100%!important;
        font-size: 15px!important;
        line-height: 138%!important;
        -webkit-text-fill-color: #fff!important;
        white-space: normal!important;
    }
    .swiper-slide.type-3 .text-block{
        width: 66%;
        left: 0;
        bottom: 8px;
        text-align: left!important;
    }
    .swiper-slide.type-3 .text{
        font-size: 20px!important;
        line-height: 137%;
    }
    .swiper-slide.type-3 .text button{
        height: auto;
        margin-left: 0;
        white-space: unset;
        font-size: 13px;
        line-height: 130%;
    }
}
@media (max-width:400px){
    .swiper-slide .text {
        font-size: 10px!important;
    }
}
.categories{
    padding: 5px 0 0;
}
.categories .nav-categories-list,
.categories .nav-categories_item{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.categories .nav-categories_item{
    width: 25%;
    justify-content: center;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.categories .nav-categories_item:hover{
    box-shadow: inset 0 0 0 32px rgba(255,255,255,.05);
}
.categories .nav-categories_item:not(:last-of-type):before {
    content: "";
    display: block;
    position: absolute;
    top: 10.5px;
    right: 0;
    height: 34px;
    width: 2px;
    background-color: #313047;
}
.nav-categories_img {
    height: inherit;
    width: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}
.nav-categories_item.x_slots {
    color: #17eada
}

.nav-categories_item.x_slots .nav-categories_img {
    background-image: url(img/icon_slots.svg)
}

.nav-categories_item.x_live {
    color: #de593e
}

.nav-categories_item.x_live .nav-categories_img {
    background-image: url(img/icon_live.svg)
}

.nav-categories_item.x_casino {
    color: #6ef770
}

.nav-categories_item.x_casino .nav-categories_img {
    background-image: url(img/icon_casino.svg)
}

.nav-categories_item.x_tournament {
    color: #e8ce3a
}

.nav-categories_item.x_tournament .nav-categories_img {
    background-image: url(img/icon_tournament.svg)
}
.categories .nav-categories_item .nav-categories_img{
    width: 60px;
    height: 55px;
    margin-right: 20px;
}
.categories .nav-categories_item.x_live .nav-categories_img{
    width: 55px;
}
.categories .nav-categories_item.x_casino .nav-categories_img,
.categories .nav-categories_item.x_tournament .nav-categories_img{
    width: 45px;
}
.nav-categories-text{
    font-weight: bold;
    text-transform: uppercase;
}
@media (max-width:668px) {
    .categories .nav-categories-list {
        flex-wrap: wrap;
    }
    .categories .nav-categories_item {
        justify-content: flex-start;
        width: 50%;
    }
    .categories .nav-categories_item:before{
        top: 5px;
        height: 30px;
        width: 1px;
    }
    .categories .nav-categories_item:nth-child(2):before{
        display: none;
    }
    .categories .nav-categories_item:nth-child(2) .nav-categories_img,
    .categories .nav-categories_item:nth-child(4) .nav-categories_img{
        margin-left: 10px;
    }
    .categories .nav-categories_item.x_slots .nav-categories_img {
        width: 42px;
    }
    .categories .nav-categories_item.x_live .nav-categories_img {
        width: 37px;
    }
    .categories .nav-categories_item.x_casino .nav-categories_img {
        width: 34px;
    }
    .categories .nav-categories_item.x_tournament .nav-categories_img {
        width: 33px;
    }
    .nav-categories-text {
        font-size: 14px;
    }
}

.games-list-container .row {
    position: relative;
    z-index: 2;
}
.games-list-background{
    position: relative;
    padding-top: 40px;
    background: url(img/noise.png) repeat,#101226;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.5);
}

.games-list-background h1{
    position: relative;
    z-index: 1;
}
.games-list-background:after,
.games-list-background:before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
}
.games-list-background:before {
    top: 2px;
    height: 5px;
    background-image: url(img/point_with_large_space.svg);
    background-repeat: repeat-x;
    background-size: contain;
}
.games-list-background:after {
    top: 0;
    left: 0;
    height: 100%;
    background: url(img/back_games_wided.svg) repeat-y;
    background-size: 100%;
}
.filter-block{
    position: relative;
    display: flex;
    align-items: center;
    width: 450px;
    max-width: 100%;
    z-index: 2;
}
.select{
    position: relative;
    display: flex;
}
.select:before {
    content: "";
    position: absolute;
    top: 13px;
    right: 30px;
    z-index: 2;
    height: 15px;
    width: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(img/icon_dropdown.svg);
    pointer-events: none;
}
.provider{
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 35px;
    margin-right: 20px;
    padding: 10px 25px 7px 10px;
    padding-right: 35px;
    padding-left: 18px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(#191929,#191929) padding-box,linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(128,128,128,.4)) border-box;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow .25s ease;
}
.provider:focus,
.provider:hover {
    outline: none;
    box-shadow: 0 0 0 2px #ffde26;
}
.game-sort{
    display: flex;
}
.game-flag-hit, .game-flag-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    box-sizing: border-box;
    height: 18px;
    width: 24px;
    margin-bottom: 10px;
    border-radius: 2px;
    padding-bottom: 2px;
    background-color: #302e40;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}
.game-flag-hit:after,
.game-flag-hit:before,
.game-flag-new:after,
.game-flag-new:before {
    content: "";
    position: absolute;
    bottom: -8px;
    height: 0;
    width: 0;
    border: 10px solid transparent;
}
.game-flag-hit img,
.game-flag-new img {
    width: 15px;
    height: 15px;
}
.sort-hit{
    margin-right: 20px;
}
.game-sort .sort-hit.active div,
.game-sort .sort-hit:hover div,
.gamecard .sort-hit div {
    background-color: #a91fff;
}
.game-sort .sort-hit.active div:before,
.game-sort .sort-hit:hover div:before,
.gamecard .sort-hit div:before{
    border-left: 24px solid #a91fff;
}
.game-flag-hit:before, .game-flag-new:before {
    left: 0;
    z-index: -1;
    border-left: 22px solid #302e40;
}
.game-sort .sort-hit.active div:after,
.game-sort .sort-hit:hover div:after,
.gamecard .sort-hit div:after{
    border-right: 24px solid #a91fff;
}
.game-flag-hit:after,
.game-flag-new:after {
    right: 0;
    z-index: -2;
    border-right: 22px solid #302e40;
}
.game-sort .sort-new.active div,
.game-sort .sort-new:hover div,
.gamecard .sort-new div{
    background-color: #4dd433;
}
.game-sort .sort-new.active div:before,
.game-sort .sort-new:hover div:before,
.gamecard .sort-new div:before {
    border-left: 24px solid #4dd433;
}
.game-sort .sort-new.active div:after,
.game-sort .sort-new:hover div:after,
.gamecard .sort-new div:after  {
    border-right: 24px solid #4dd433;
}

.search-block {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 450px;
    max-width: 100%;
    z-index: 2;
}
.search-block svg{
    position: absolute;
    right: 15px;
    top: 7px;
    width: 18px;
    height: 18px;
    fill: #ffffff;
    z-index: 2;
}
.search {
    height: 35px;
    padding: 0 18px;
    padding-left: 25px;
    padding-right: 50px;
    font-size: 16px;
    border-radius: 25px;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid transparent;
    background: linear-gradient(#191929,#191929) padding-box,linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(128,128,128,.4)) border-box;
    font-weight: 500;
    color: #fff;
    transition: box-shadow .25s ease;
}
.search:hover {
    outline: none;
    box-shadow: 0 0 0 2px #ffde26;
}
.search.action-referral-link{
    cursor: text;
}
.search::placeholder{
    font-style: italic;
    opacity: 0.5;
}


.gamecard {
    position: relative;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 #000;
    color: #fff;
    will-change: transform;
    transition: transform .15s linear
}
.large{
    transform: scale(1.25);
}
.gamecard,
.gamecard.favorite .game_flag_favorite {
    display: flex
}

.gamecard.favorite .gamecard_favorite {
    display: none
}

.gamecard.favorite .gamecard_favorite.added,
.gamecard a {
    display: flex
}

.gamecard a {
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit
}

.gamecard .gamecard_flags {
    position: absolute;
    top: -2px;
    left: 10px;
    z-index: 3
}

.gamecard .game_flag_favorite {
    display: none
}

.gamecard.x_show {
    transform: scale(1.1);
    z-index: 4
}

.gamecard.x_show .gamecard_links {
    pointer-events: auto;
    opacity: 1
}

.gamecard.x_show.x_no-animation {
    transform: none
}

.gamecard_img,
.gamecard_window {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.gamecard_window {
    position: relative;
    height: 75%;
    border: 1px solid #393a51;
    border-bottom: none
}

.gamecard_img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.gamecard_links {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 20px 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s linear;
    transition-delay: 20ms;
    border-radius: 10px 10px 0 0;
    background-color: rgba(0, 0, 0, .8)
}

.gamecard_demo,
.gamecard_play {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: white;
    cursor: pointer;
}
.btn_approve_small {
    height: 30px;
    padding: 0 30px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 3px 0 0 #3c7028, 0 4px 4px 0 #000;
    background-color: #62c23c;
    border: none;
    border-radius: 50px;
    outline: none;
}
.gamecard_demo {
    box-sizing: border-box;
    height: 23px;
    border-radius: 50px;
    padding: 0 20px;
    background-color: #313047;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase
}

.gamecard_title {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: none;
    box-sizing: border-box;
    height: 25%;
    border: 1px solid #393a51;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0 5px;
    background-color: #161626;
    font-family: Museo Sans Cyrl\ 500, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    /*word-wrap: break-word;*/
    /*overflow-wrap: break-word;*/
}

.gamecard_title span{
    display: -webkit-box;
    line-height: 16px;
    max-height: 32px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.gamecard_flags {
    display: flex
}

.gamecard_flags li {
    margin-right: 10px
}

.gamecard_flags li:last-child {
    margin-right: 0
}

.gamecard_favorite {
    display: flex;
    align-items: center
}

.gamecard_favorite.added {
    display: none
}

.gamecard_favorite.added .svg_heart_empty .svg_color {
    fill: #ff1f44
}

.gamecard_favorite label {
    display: flex;
    cursor: pointer
}

.gamecard_favorite input {
    margin-right: 5px;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: #646a87;
    cursor: pointer
}

.gamecard_favorite input:focus,
.gamecard_favorite input:hover {
    outline: none
}

.gamecard_favorite .icon_heart_empty {
    display: block
}

.gamecard_favorite .icon_heart_empty svg {
    height: 20px
}

@media (min-width:669px) {
    .gamecard:hover {
        transform: scale(1.1);
        z-index: 4
    }
    .gamecard:hover .gamecard_links {
        pointer-events: auto;
        opacity: 1
    }
    .gamecard:hover.x_no-animation {
        transform: none
    }
}

@media (max-width:668px) {
    .gamecard .gamecard_flags {
        top: -4px;
        left: 2px
    }
    .gamecard .gamecard_flags li {
        margin-right: 0
    }
    .gamecard .gamecard_flags .large {
        transform: scale(.75)
    }
    .gamecard.x_show {
        transform: scale(1.35)
    }
    .gamecard_links {
        padding: 5px 0
    }
    .gamecard_demo,
    .gamecard_favorite,
    .gamecard_play {
        margin-bottom: 0;
        transform: scale(.8);
        flex: none
    }
    .gamecard_play:active {
        transform: translateY(3px) scale(.8)
    }
    .gamecard_title {
        line-height: 12px
    }
}

.game-catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 45px;
    overflow-anchor: none
}

.game-catalog .form_search {
    width: 430px
}

.game-catalog .show_more {
    margin: 45px 0 0
}

.game-catalog .show_more.previous {
    margin: 30px 0
}

.game-catalog_header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 5px
}

.game-catalog_header,
.game-catalog_list {
    display: flex;
    box-sizing: border-box;
    width: 100%
}

.game-catalog_list {
    flex-wrap: wrap;
    align-content: center;
    margin: 0 auto;
}

@media (max-width:1024px) {
    .game-catalog .form_search,
    .game-catalog .game-sort-and-filter {
        width: 100%
    }
    .game-catalog .game-sort-and-filter {
        margin-bottom: 20px
    }
    .game-sort-and-filter{
        flex-direction: column;
        align-items: center;
    }
    .filter-block{
        margin-bottom: 20px;
    }
    .select {
        width: 65%;
    }
    .provider {
        width: 100%;
    }
}

@media (max-width:668px) {
    .game-catalog {
        padding: 0 10px
    }
    .game-catalog .game-catalog_header,
    .game-catalog .navigation-subcategory {
        margin-bottom: 20px
    }
    .game-catalog_header {
        padding: 0
    }
    .game-catalog_list-item:nth-child(odd) .gamecard.x_show {
        transform: scale(1.35) translateX(10%);
        transition-delay: 7ms
    }
    .game-catalog_list-item:nth-child(odd) .gamecard.x_show.x_no-animation {
        transform: none
    }
    .game-catalog_list-item:nth-child(2n) .gamecard.x_show {
        transform: scale(1.35) translateX(-10%);
        transition-delay: 15ms
    }
    .game-catalog_list-item:nth-child(2n) .gamecard.x_show.x_no-animation {
        transform: none
    }
}

.game-catalog_list-item {
    position: relative;
    box-sizing: border-box;
    height: 0;
    margin: 0 15px 15px 0
}

.game-catalog_list-item .gamecard {
    position: absolute;
    top: 0;
    left: 0
}

@media (min-width:0px) {
    .game-catalog_list {
        max-width: 450px
    }
    .game-catalog_list .game-catalog_list-item:nth-child(2n) {
        margin-right: 0
    }
    .game-catalog_list-item {
        width: calc((100% - 15px)/2);
        padding-top: calc((100% - 15px)/2)
    }
}

@media (min-width:669px) {
    .game-catalog_list {
        max-width: 100%
    }
    .game-catalog_list .game-catalog_list-item:nth-child(2n) {
        margin-right: 15px
    }
    .game-catalog_list .game-catalog_list-item:nth-child(4n) {
        margin-right: 0
    }
    .game-catalog_list-item {
        width: calc((100% - 45px)/4);
        padding-top: calc((100% - 45px)/4)
    }
}

@media (min-width:1025px) {
    .game-catalog_list {
        max-width: 100%
    }
    .game-catalog_list .game-catalog_list-item:nth-child(4n) {
        margin-right: 15px
    }
    .game-catalog_list .game-catalog_list-item:nth-child(5n) {
        margin-right: 0
    }
    .game-catalog_list-item {
        width: calc((100% - 60px)/5);
        padding-top: calc((100% - 60px)/5)
    }
}

.legally_safe_profit {
    position: relative;
    padding: 20px 0;
    background-color: #161626;
}
.beam_block{
    max-width: 1200px;
    margin: 0 auto;
}
.legally_safe_profit .card {
    display: flex;
    box-sizing: border-box;
    min-height: 160px;
    width: 33%;
    padding-left: 10px
}

.legally_safe_profit .card img {
    align-self: center;
    margin-right: 15px
}

.legally_safe_profit .card .card_descript {
    box-sizing: border-box;
    height: 100%;
    padding-top: 10%
}

.legally_safe_profit .card .card_head {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #fff
}

.legally_safe_profit .card p {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 14px;
    font-weight: 500;
    font-family: Muller, sans-serif;
    color: #646a87
}

.legally_safe_profit .card_legally img {
    width: 35px
}

.legally_safe_profit .card_safe img {
    width: 30px
}

.legally_safe_profit .card_profit img {
    width: 35px
}

.legally_safe_profit:after,
.legally_safe_profit:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    background-image: url(img/star_with_space.svg);
    background-size: contain;
    background-repeat: repeat-x
}

.legally_safe_profit:before {
    top: 3px
}

.legally_safe_profit:after {
    bottom: 3px
}

@media (max-width:1024px) {
    .legally_safe_profit .card img {
        align-self: flex-start;
        padding-top: 40px
    }
}

@media (max-width:668px) {
    .legally_safe_profit {
        padding: 30px 0
    }
    .legally_safe_profit .beam_block .card {
        min-height: 0;
        padding-left: 0
    }
    .legally_safe_profit .beam_block img {
        margin-right: 0
    }
    .legally_safe_profit .beam_block .card_head {
        display: flex;
        justify-content: center;
        margin: 0;
        font-size: 12px
    }
    .legally_safe_profit .beam_block .card_descript {
        height: auto
    }
    .legally_safe_profit .beam_block p {
        display: none
    }
    .legally_safe_profit .card {
        flex-direction: column;
        align-items: center
    }
    .legally_safe_profit .card img {
        align-self: center;
        padding-top: 0
    }
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    background: url(img/noise.png) repeat,#0a0a14;
    box-shadow: inset 0 30px 30px -10px rgba(0,0,0,.8);
    color: #646a87;
}
footer h3 {
    width: 100%;
    margin-bottom: 15px;
    height: 30px;
    border-bottom: 1px solid #222330;
    line-height: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    color: #646a87;
}
.footer_categories .nav-categories{
    width: 100%;
}
.footer_categories .nav-categories_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: inherit;
}

.footer_categories .nav-categories_item {
    text-overflow: ellipsis;
    width: 49%;
    word-wrap: break-word;
    overflow-wrap: break-word
}
.nav-categories_link {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 800;
    font-family: Muller,sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.footer_categories .nav-categories_item.x_slots .nav-categories_img {
    width: 46px
}

.footer_categories .nav-categories_item.x_live .nav-categories_img {
    width: 38px
}

.footer_categories .nav-categories_item.x_casino .nav-categories_img,
.footer_categories .nav-categories_item.x_tournament .nav-categories_img {
    width: 34px
}

.footer_categories .nav-categories_link:focus .nav-categories_content,
.footer_categories .nav-categories_link:hover .nav-categories_content {
    background-color: #252536;
    transform: scale(1.1)
}

.footer_categories .nav-categories_content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    height: 36px;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 16px;
    transition: background-color .15s linear, transform .15s linear
}

.footer_categories .nav-categories_img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40px;
    height: inherit;
    margin-right: 10px
}

.footer_categories .nav-categories_img {
    position: absolute;
    top: 0;
    right: 0
}
.nav-categories_text {
     overflow: hidden;
    text-overflow: ellipsis;
     display: inline-block;
     box-sizing: border-box;
     max-height: 100%;
    max-width: 70%;
    white-space: nowrap;
}
@media (max-width: 668px){
    .nav-categories_text{
        font-size: 12px;
    }
}
.navigation_social {
    display: flex;
    align-items: center
}

.navigation_social li {
    margin-right: 10px
}

.navigation_social li:last-child {
    margin-right: 0
}

.navigation_social span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%
}

.navigation_social span img {
    height: 20px;
    width: 20px
}

.navigation_social span.social_youtube img {
    height: 26px;
    width: 26px
}

.social_instagram {
    background-color: #264484;
    box-shadow: 0 3px 0 1px #16284d
}

.social_instagram:focus,
.social_instagram:hover {
    box-shadow: 0 3px 0 1px #16284d, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.social_vkontakte {
    background-color: #3a6aa3;
    box-shadow: 0 3px 0 1px #223f61
}

.social_vkontakte:focus,
.social_vkontakte:hover {
    box-shadow: 0 3px 0 1px #223f61, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.social_facebook {
    background-color: #3e5a98;
    box-shadow: 0 3px 0 1px #253459
}

.social_facebook:focus,
.social_facebook:hover {
    box-shadow: 0 3px 0 1px #253459, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.social_twitter {
    background-color: #28b7eb;
    box-shadow: 0 3px 0 1px #264484
}

.social_twitter:focus,
.social_twitter:hover {
    box-shadow: 0 3px 0 1px #264484, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.social_google {
    background-color: #cd3b28;
    box-shadow: 0 3px 0 1px #822519
}

.social_google:focus,
.social_google:hover {
    box-shadow: 0 3px 0 1px #822519, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.social_youtube {
    background-color: #f00;
    box-shadow: 0 3px 0 1px #781712
}

.social_youtube:focus,
.social_youtube:hover {
    box-shadow: 0 3px 0 1px #781712, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.social_telegram {
    background-color: #2ca3df;
    box-shadow: 0 3px 0 1px #1a6b84
}

.social_telegram:focus,
.social_telegram:hover {
    box-shadow: 0 3px 0 1px #1a6b84, inset 0 10px 10px 5px rgba(255, 255, 255, .4)
}

.demo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 450px;
    height: auto;
    overflow: hidden
}
.demo-container>img,
.demo-container>picture,
.demo-container>picture img {
    width: 100%;
    height: 450px;
    position: absolute;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    filter: blur(5px);
}
.wrapper-demo-game {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center
}
.wrapper-demo-game>*:not(.play-demo-game) {
    width: 100%;
    height: 100%
}
.wrapper-demo-game iframe{
    border: none;
}
.wrapper-demo-game>svg {
    width: 50px;
    height: 50px;
    cursor: pointer
}

.footer_payments img{
    height: inherit;
    object-fit: contain;
    margin-bottom: 25px;
}
.footer_payments img:not(:last-of-type){
    margin-right: 30px;
}
.footer_payments .payment_visa {
    width: 80px;
}
.footer_payments .payment_mastercard {
    width: 45px;
}
.footer_payments .payment_neteller {
    width: 120px;
}
.footer_payments .payment_skrill {
    width: 80px;
}
.footer_payments .payment_bitcoin, .footer_payments .payment_monetix, .footer_payments .payment_mobile, .footer_payments .payment_qiwi, .footer_payments .payment_webmoney, .footer_payments .payment_yandex-money {
    width: 40px;
}
.footer_payments .payment_moneta {
    width: 90px;
}
.footer_payments .payment_apple-pay {
    width: 80px;
}
@media (max-width: 668px){
    .footer_payments img {
        margin-right: 10px!important;
        margin-left: 10px;
    }
    .footer_payments .payment_visa, .footer_payments .payment_skrill {
        width: 60px;
    }
    .footer_payments .payment_mastercard {
        width: 30px;
    }
    .footer_payments .payment_neteller {
        width: 90px;
    }
    .footer_payments .payment_bitcoin, .footer_payments .payment_monetix, .footer_payments .payment_qiwi, .footer_payments .payment_webmoney, .footer_payments .payment_yandex-money {
        width: 20px;
    }
    .footer_payments .payment_apple-pay, .footer_payments .payment_moneta {
        width: 50px;
    }
    .footer_payments .payment_mobile {
        width: 40px;
    }
}

.footer-bottom {
    border-top: 1px dashed #303036;
    padding: 20px 15px;
}
.footer-bottom .row{
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.p_copyright, .p_warning {
    font-size: 12px;
}
.p_copyright {
    margin-right: 40px;
    width: 35%;
    word-break: normal;
    word-wrap: normal;
}
.p_warning {
    margin-right: 10px;
    width: 40%;
}
.age_18 {
    margin-right: 10px;
    height: 40px;
    width: 40px;
}
@media (max-width: 668px){
    .p_copyright, .p_warning {
        margin-right: 2%;
        width: 80%;
    }
}

@media (max-width: 1370px){
}
@media (max-width: 1200px){
}
@media (max-width: 1023px){
}
@media (max-width: 991px){
}
@media (max-width: 767px){
}
@media (max-width: 600px){
}
@media (max-width: 567px){
}
@media (max-width: 480px){
}
@media (max-width: 370px){
}