@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

svg use {
    fill: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .header__menu-button path, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background-color: #2b2b3f;
}

body.active {
    overflow: hidden;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #e9403a;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.content {
    max-width: 1290px;
    padding: 35px 0 0;
    margin: auto;
}

h1, h2, h3, h4, .title {
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    word-break: break-word;
}

h1, .title.general {
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    color: #e93e3b;
    text-align: center;
    margin-bottom: 35px;
}

h2, .title.high {
    font-size: 35px;
    line-height: 40px;
}

h2.red, .title.high.red {
    color: #e93e3b;
}

h3, .title.middle {
    font-size: 35px;
    line-height: 40px;
}

h4, .title.small {
    font-size: 30px;
    line-height: 45px;
}

.button {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    min-width: 180px;
    background-color: #2b2b3f;
    padding: 12.5px 20px;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.button:hover {
    background-color: #fff;
    color: #000;
}

.button.white {
    background-color: #fff;
    color: #000;
}

.button.white:hover {
    background-color: #2b2b3f;
    color: #fff;

}


.wrap {
    background-color: #343449;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 50px 80px;
}

table {
    font-size: 18px;
    width: 100%;
    word-break: break-word;
}

table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

table tr td:nth-child(n + 2) {
    padding-left: 30px;
}



/* header */

.header {
    background-color: #e93e3b;
    -webkit-box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.header__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    padding: 20px 30px;
}

.header__logo {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 140px;
    -moz-box-flex: 0;
    flex: 0 1 140px;
}

.header__logo img {
    display: block;
}

.header__buttons {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 390px;
    -moz-box-flex: 0;
    flex: 0 1 390px;
}

.header__buttons > * + * {
    margin-left: 20px;
}

.header__menu {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 140px - 390px - 100px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 140px - 390px - 100px);
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.menu ul a {
    display: block;
    padding: 12.5px 0;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.header__menu a:hover {
    color: #01121b;
}

.header__menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.header__menu > ul > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 -webkit-calc(100% / 3);
    -moz-box-flex: 1;
    flex: 1 1 calc(100% / 3);
}

.header__expand-menu {
    display: none;
}

.header__expand-menu .header__buttons {
    display: none;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu li a {
    background-color: rgba(0, 0, 0, 0.3);
}

.header__expand-menu li + li {
    margin-top: 20px;
}


/* banner */


.banner__image img {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.banner__image:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}



/* article  */

article > * + *, .article > * + * {
    margin-top: 25px;
}

article li, .article li {
    display: block;
    padding-left: 30px;
}

article li + li, .article li + li {
    margin-top: 20px;
}

.article .bonus__list li:before {
    content: none;
}

article ul li:before {
    content: "—";
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 0;
    top: -2px;
}

.article ol, article ol {
    list-style-position: inside;
    list-style: none;
}

.article ol > li, article > ol li {
    counter-increment: ol;
}

.article ol > li:before, article ol > li:before {
    content: counter(ol);
    font-weight: 16px;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}



/* main info */

.main-info__wrap {
    padding-top: 25px;
    padding-bottom: 25px;
}

.title.main-info__title {
    text-transform: none;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 30px;
}

.main-info__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 100px;
}

.main-info__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -moz-box-flex: 0;
    flex: 0 1 70%;
    max-width: -webkit-calc(100% - 100px);
    max-width: -moz-calc(100% - 100px);
    max-width: calc(100% - 100px);
}

.main-info__table tbody tr:nth-child(5), .main-info__table tbody tr:nth-child(6), .main-info__table tbody tr:last-child {
    margin-top: 25px;
}

.main-info__table tbody tr:last-child td:last-child {
    font-size: 15px;
}

.main-info__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
}

.main-info-pros__wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 65%;
    -moz-box-flex: 0;
    flex: 0 1 65%;
}

.main-info__wrapper h2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
    -moz-box-flex: 0;
    flex: 0 1 35%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
    padding-left: 30px;
    padding-right: 50px;
}

.main-info-pros__table tbody {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    font-weight: 700;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.main-info-pros__table tr {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 50px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 50px) / 2);
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-info-pros__table td {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-box-flex: 0;
    flex: 0 1 100%;
}

.main-info-pros__table td:nth-child(n + 2) {
    padding: 0;
    margin-top: 15px;
}



/* registration */



/* bonus */

.bonus__wrap {
    border: 1px solid #e93e3b;
}

.bonus__table {
    font-weight: 700;
}

.bonus__table tbody tr {
    margin-top: 15px;
}

.bonus__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
}

.bonus__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
    -moz-box-flex: 0;
    flex: 0 1 45%;
}

.bonus__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
}


/* vip */

.vip__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
}

.vip__wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
    -moz-box-flex: 0;
    flex: 0 1 45%;
    min-width: 390px;
}

.vip__table tr {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.vip__table tr + tr {
    margin-top: 15px;
}

.vip__table tr td:first-child {
    font-weight: 700;
    color: #e93e3b;
}

.vip__table tr td:nth-child(n + 2) {
    padding-left: 5px;
}

.vip__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 55%;
    -moz-box-flex: 0;
    flex: 0 1 55%;
    padding-left: 30px;
    max-width: -webkit-calc(100% - 390px);
    max-width: -moz-calc(100% - 390px);
    max-width: calc(100% - 390px);
}

.vip-levels__wrap {
    margin-top: 25px;
    border: 1px solid #e93e3b;
}

.vip-levels__table thead {
    font-weight: 700;
}

.vip-levels__table tbody tr:first-child {
    margin-top: 25px;
}

.vip-levels__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20%;
    -moz-box-flex: 0;
    flex: 0 1 20%;
}

.vip-levels__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-box-flex: 0;
    flex: 0 1 40%;
}

.vip-levels__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-box-flex: 0;
    flex: 0 1 40%;
}


/* tournaments */

.tournaments__wrap {
    padding: 25px 60px;
}

.tournaments__table thead {
    font-weight: 700;
}

.tournaments__table tbody tr:nth-child(1) {
    margin-top: 15px;
}

.tournaments__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20%;
    -moz-box-flex: 0;
    flex: 0 1 20%;
}

.tournaments__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 55%;
    -moz-box-flex: 0;
    flex: 0 1 55%;
}

.tournaments__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
}


/* slots */

.slots__wrap {
    background-color: #222232;
    border: 1px solid #e93e3b;
    overflow: hidden;
}

.slots__wrap:before {
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2b2b3f;
}

.slots__table {
    font-weight: 700;
    font-size: 15px;
}

.slots__table thead {
    color: #e93e3b;
}

.slots__table tbody tr:first-child {
    margin-top: 25px;
}

.slots__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 27%;
    -moz-box-flex: 0;
    flex: 0 1 27%;
    padding-right: 20px;
}

.slots__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 22%;
    -moz-box-flex: 0;
    flex: 0 1 22%;
}

.slots__table tr td:nth-child(n + 3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 17%;
    -moz-box-flex: 0;
    flex: 0 1 17%;
}


/* games */

.games__table tbody tr {
    margin-top: 20px;
}

.games__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    min-width: 90px;
}

.games__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
    -moz-box-flex: 0;
    flex: 0 1 75%;
    max-width: -webkit-calc(100% - 90px);
    max-width: -moz-calc(100% - 90px);
    max-width: calc(100% - 90px);
}


/* live games */

.live-games__content {
    padding-bottom: 25px;
}



/* faq */

.faq__content h2 {
    margin-bottom: 25px;
}

.faq-item__question {
    font-size: 30px;
    line-height: 35px;
    padding: 6.5px 30px;
    text-align: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #e9403a;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-transform: none;
}

.faq__item {
    display: block;
    cursor: pointer;
    margin-bottom: 25px;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq__item:hover .faq-item__question {
    background-color: #e9403a;
}

.faq__item.active .faq-item__question {
    background-color: #e9403a;
}

.faq-item__answer {
    padding: 25px 0 0;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}


/* payment */

.payment {
    overflow: hidden;
}

.payment__content {
    padding-top: 150px;
    padding-bottom: 130px;
}

.payment__bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.payment__bg img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    height: 100%;
}



/* money */

.money__table thead {
    font-weight: 700;
}

.money__table tbody tr {
    margin-top: 20px;
}

.money__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    min-width: 130px;
}

.money__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
    -moz-box-flex: 0;
    flex: 0 1 75%;
    max-width: -webkit-calc(100% - 130px);
    max-width: -moz-calc(100% - 130px);
    max-width: calc(100% - 130px);
}


/* chat */

.chat__wrap {
    padding: 25px 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.chat__wrap > * + * {
    margin-left: 7%;
}


/* conclusion */

.conclusion__content {
    padding-bottom: 50px;
}
