@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&family=Roboto:wght@400;700&display=swap');

body {
   overflow-x: hidden;
   min-height: 100vh;
   background: #0B0C21;
   font-family: 'Poppins', sans-serif;
   font-size: 14px;
   font-weight: 400;
   line-height: 1.35;
   color: #fff;
   text-align: left;
}

p {
   margin-top: 20px;
   width: 100%;
}

.title+p,
p:first-child {
   margin-top: 0;
}

ul,
ol {
   text-align: left;
   width: 100%;
}

li {
   position: relative;
}

/* Title */
h1,
h2,
h3,
h4 {
   display: block;
   position: relative;
   width: 100%;
   font-weight: 700;
   line-height: 1.2;
   text-transform: uppercase;
}

.title {
   margin-bottom: 20px;
}

h1.title,
.title.general {
   font-weight: 900;
   font-size: 40px;
   color: #fff;
   line-height: 1.5;
}

h2,
.title.high {
   font-size: 28px;
}

h2:after {
   content: '';
   background: -o-linear-gradient(left, #FFC700 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(#FFC700), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, #FFC700 0%, rgba(255, 199, 0, 0) 100%);
   display: block;
   height: 3px;
   margin-top: 7px;
}

h3,
.title.middle {
   font-size: 20px;
   line-height: 1.35;
}

h4,
.title.mini {
   font-size: 14px;
   color: #FCC211;
   line-height: 1.35;
   text-transform: none;
}

/* Article */
article,
.article {
   font-size: 14px;
   font-weight: 400;
   line-height: 1.35;
   text-align: left;
}

article>*+*,
.article>*+* {
   margin-top: 20px;
}

article ul li,
.article ul li {
   padding-left: 18px;
}

article ol li,
.article ol li {
   padding-left: 21px;
}

article li+li,
.article li+li {
   margin-top: 16px;
}

ol>li {
   counter-increment: ol;
}

article ul>li:before,
.article ul>li:before,
article ol>li:before,
.article ol>li:before {
   display: inline-block;
   position: absolute;
   font: inherit;
   z-index: 1;
}

article ul>li:before,
.article ul>li:before {
   content: "";
   background-color: #FFD400;
   border-radius: 50%;
   width: 6px;
   height: 6px;
   top: 6px;
   left: 0;
}

article ol>li:before,
.article ol>li:before {
   content: counter(ol)'.';
   left: 5px;
   top: 0;
}

p a,
article li a,
.article li a,
.keyword,
li strong {
   color: #FCC211;
}

/* Button */
.button {
   background: url('../img/button.svg') no-repeat center / cover;
   display: inline-block;
   font-weight: 700;
   font-size: 18px;
   color: #fff;
   line-height: 1;
   text-align: center;
   white-space: nowrap;
   height: auto;
   width: auto;
   min-width: 264px;
   margin: 16px 0 0;
   padding: 30px 20px;
   position: relative;
}

.button:hover {
   -webkit-transform: scale(1.05);
   -ms-transform: scale(1.05);
   transform: scale(1.05);
}

.button img,
.button span {
   display: inline-block;
   vertical-align: middle;
}

.button img {
   margin-right: 10px;
}

.button span {
   text-align: left;
}

/* Special */
.image img,
.background img {
   display: block;
   position: relative;
   margin: auto;
}

.background {
   display: block !important;
   position: absolute !important;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
}

.background img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.js-expand-content {
   display: none;
   overflow: hidden;
}

.js-expand-content.expanded {
   height: 100%;
}

svg {
   display: inline-block;
   position: relative;
   vertical-align: inherit;
   fill: rgba(255, 255, 255, 1);
   line-height: 1;
}

use {
   fill: rgba(255, 255, 255, 1);
   fill-rule: evenodd;
   -webkit-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}

.path {
   fill: inherit;
   stroke: inherit;
   stroke-width: inherit;
}

/* Content */
.content,
.cover {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   width: 100%;
   overflow: hidden;
   position: relative;
}

.content {
   background: #1F2038;
   border-radius: 20px;
   max-width: 1163px;
   width: calc(100% - 20px);
   margin-top: 20px;
   padding: 20px;
}

.cover {
   padding-left: 20px;
   padding-right: 20px;
}

.content>*,
.cover>* {
   display: block;
   position: relative;
}

.main__buttons {
   display: none;
}

/* Header */
.header {
   background: #0B0C21;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 16px;
   overflow: visible;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   height: auto;
   margin-top: 0;
   padding-top: 13px;
   padding-bottom: 13px;
}

.logo img {
   display: block;
}

.header__logo {
   max-width: 152px;
}

.menu-button,
.header__menu .header__button {
   display: none;
}

.header__menu {
   margin: 0 auto 0 5.2%;
}

.header__menu ul {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 20px 40px;
}

.header__menu ul a {
   font-weight: 700;
   font-size: 14px;
   color: #fff;
}

.header__menu ul a:hover {
   color: #FFD400;
}

.header__button {
   border: 1px solid #FFD400;
   border-radius: 8px;
   font-weight: 700;
   line-height: 1.743;
   text-align: center;
   min-width: 132px;
   padding: 7px 10px;
}

.header__signup {
   background-color: #FFD400;
   color: #000;
}

.header__signup:hover {
   background-color: rgba(0, 0, 0, 0);
   color: #fff;
}

.header__login {
   color: #fff;
}

.header__login:hover {
   background-color: #FFD400;
   color: #000;
}

.header__lang {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 6px;
}

.header__lang img {
   display: block;
   border-radius: 50%;
   max-width: 24px;
   max-height: 24px;
}

.header__lang span {
   font-weight: 600;
   font-size: 14px;
   color: #fff;
   text-transform: uppercase;
}

/* Main */
.main {
   padding: 67px 0 0 257px;
}

/* Sidebar */
.sidebar {
   background: -o-linear-gradient(top, #0B0C21 0%, #08091C 20.16%, #0B0C21 100%);
   background: -webkit-gradient(linear, left top, left bottom, from(#0B0C21), color-stop(20.16%, #08091C), to(#0B0C21));
   background: linear-gradient(180deg, #0B0C21 0%, #08091C 20.16%, #0B0C21 100%);
   width: 237px;
   height: calc(100vh - 67px);
   padding: 0 15px 30px;
   position: fixed;
   top: 67px;
   left: 0;
   overflow: auto;
   z-index: 10;
}

.sidebar::-webkit-scrollbar {
   display: none;
}

.sidebar__menu {
   padding: 6px 0;
}

.sidebar__menu li a {
   display: block;
   font-weight: 500;
   font-size: 16px;
   color: #727489;
   line-height: 1.76;
   position: relative;
   padding: 8px 0 8px 37px;
}

.sidebar__menu li a img {
   max-width: 24px;
   max-height: 24px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 1px;
   margin: auto;
}

.sidebar__menu li a img:last-of-type {
   opacity: 0;
}

.sidebar__menu li a:hover img:last-of-type {
   opacity: 1;
}

.sidebar__menu li a:hover span {
   color: #FFD400;
}

.sidebar__menu-count {
   background-color: #FA5926;
   border-radius: 50%;
   font-size: 12px;
   color: #fff;
   text-align: center;
   line-height: 1.3;
   display: block;
   width: 16px;
   height: 16px;
   position: absolute;
   top: 4px;
   left: 17px;
}

.sidebar__menu:after {
   content: '';
   display: block;
   height: 1px;
   background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
   background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
   margin: 17px 0 20px;
}

.sidebar__links-button {
   font-weight: 700;
   font-size: 16px;
   color: #FFD400;
   line-height: 1.5;
   text-align: left;
   position: relative;
   white-space: normal;
   padding-right: 36px;
   width: 100%;
}

.sidebar__links-button:before {
   content: '';
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M19.7589%2015.7541C19.4667%2016.0522%2019.0095%2016.0793%2018.6873%2015.8354L18.595%2015.7541L12%209.02658L5.40503%2015.7541C5.11283%2016.0522%204.65558%2016.0793%204.33338%2015.8354L4.24106%2015.7541C3.94887%2015.456%203.9223%2014.9896%204.16137%2014.661L4.24106%2014.5668L11.418%207.2459C11.7102%206.94784%2012.1675%206.92074%2012.4897%207.16461L12.582%207.2459L19.7589%2014.5668C20.0804%2014.8947%2020.0804%2015.4262%2019.7589%2015.7541Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
   width: 24px;
   height: 24px;
   position: absolute;
   top: 0;
   right: 0;
}

.sidebar__links-button.hide:before {
   -webkit-transform: rotateX(180deg);
   transform: rotateX(180deg);
}

.sidebar__links-list {
   margin-top: 10px;
}

.sidebar__links-list li+li {
   margin-top: 10px;
}

.sidebar__links-list a {
   color: #727489;
   word-wrap: break-word;
}

.sidebar__links-list a:hover {
   color: #FFD400;
   text-decoration: underline;
}

/* Main */
.content-main {
   width: calc(100% - 257px);
}

/* Prime */
.prime {
   border-radius: 0;
   margin-top: 0;
   padding: 60px 60px 55px;
}

.content.prime {
   width: 100%;
   max-width: 1183px;
}

.prime__wrap {
   max-width: 665px;
}

/* breadcrumbs */
.breadcrumbs {
   margin-bottom: 16px;
}

.breadcrumbs>li {
   display: inline-block;
   padding: 0px;
}

.breadcrumbs>li:before {
   display: none;
}

.breadcrumbs>li a {
   display: inline-block;
   color: rgba(255, 255, 255, .8);
   font-weight: 500;
   text-transform: uppercase;
}

.breadcrumbs>li a:not([href]) {
   color: #fff;
}

.breadcrumbs>li a:not([href]),
.breadcrumbs>li a:not([href]) span {
   cursor: default;
}

.breadcrumbs>li:not(:last-child):after {
   content: '|';
   display: inline-block;
   position: relative;
   font: inherit;
   color: #fff;
   margin: 0px 12px;
}

.prime__title {
   margin-bottom: 17px;
}

.prime__title span {
   color: #FFD400;
}

.prime__text {
   line-height: 1.71;
}

.prime__button {
   margin-top: 32px;
}

/* Pretext */
.pretext {
   line-height: 1.71;
}

.pretext p+p {
   margin-top: 16px;
}

/* Info */
.table {
   border: 1px solid #FCC211;
   border-radius: 15px;
   width: 100%;
   word-break: break-all;
   overflow: hidden;
}

.table thead {
   background-color: #FCC211;
   font-weight: 700;
   font-size: 20px;
   color: #13151B;
   line-height: 1.2;
}

.table tr {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
}

.table thead tr {
   padding: 11px 10px 11px 20px;
}

.table tbody {
   line-height: 1.429;
}

.table tbody tr {
   padding: 13px 20px;
}

.table tr+tr {
   border-top: 1px solid #FCC211;
   line-height: 1.372;
}

.info__table tbody th,
.info__table thead th:first-child,
.app__table tbody th,
.app__table thead th:first-child,
.promotions__table tbody th,
.promotions__table thead th:first-child,
.choice__table tbody th,
.choice__table thead th:first-child,
.features__table tbody th,
.features__table thead th:first-child {
   width: 22.5%;
}

.table td,
.info__table thead th:last-child,
.app__table thead th:last-child,
.promotions__table thead th:last-child,
.choice__table thead th:last-child,
.features__table thead th:last-child {
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

.article-wrap {
   background-color: #14152D;
   border-radius: 20px;
   padding: 20px;
   width: 100%;
}

.info__subtitle {
   text-transform: none;
}

.yellow-text {
   font-weight: 700;
   color: #FFC700;
}

/* Account */
.banner {
   border: 1px solid #FCC211;
   border-radius: 20px;
   overflow: hidden;
   width: 100%;
}

.account__banner {
   padding: 93px 80px;
}

.banner__wrap {
   position: relative;
}

.account__banner-wrap {
   max-width: 730px;
}

.account__banner-button {
   margin-top: 35px;
}

.account__verify {
   padding: 20px 0;
   position: relative;
}

.account__verify::before,
.account__verify::after {
   content: '';
   background: -o-linear-gradient(left, #FFC700 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(#FFC700), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, #FFC700 0%, rgba(255, 199, 0, 0) 100%);
   height: 3px;
   position: absolute;
   left: 0;
   right: 0;
}

.account__verify::before {
   top: 0;
}

.account__verify::after {
   bottom: 0;
}

.account__verify h3 {
   text-transform: none;
}

.wrap-list {
   position: relative;
}

.wrap-list:before {
   content: '';
   border-left: 1px dashed #FCC211;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 16px;
}

ol.wrap-list li {
   font-family: 'Roboto', sans-serif;
   line-height: 1.286;
   padding: 7px 0 7px 48px;
}

ol.wrap-list li:before {
   content: '0' counter(ol);
   background-color: #14152D;
   border: 1px solid #FCC211;
   border-radius: 3px;
   width: 32px;
   height: 32px;
   top: 0;
   left: 0;
   font-weight: 700;
   font-size: 15px;
   text-align: center;
   line-height: 2.1;
   overflow: hidden;
}

.wrap-list li+li {
   margin-top: 40px;
}

/* Devices */
.devices__about {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
}

.devices .devices__about li {
   border: 1px solid #FCC211;
   border-radius: 15px;
   width: calc(50% - 10px);
   text-align: center;
   padding: 20px;
}

.devices .devices__about li:before {
   display: none;
}

.devices .devices__about li+li {
   margin-top: 0;
}

.devices__about h3:after {
   content: '';
   display: block;
   border-top: 1px solid #FCC211;
   max-width: 230px;
   width: 100%;
   margin: 14px auto 0;
}

.devices__about p {
   margin-top: 16px;
}

.devices__steps {
   border: 1px solid #FCC211;
   border-radius: 15px;
   padding: 20px;
}

.devices__header-title {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 20px;
}

.devices__header-title img {
   display: block;
   max-width: 32px;
}

.devices__header p {
   margin-top: 8px;
   padding-left: 53px;
}

/* Promotions */
.promotions__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 20px;
}

.promotions__list-item {
   border: 1px solid #FCC211;
   border-radius: 15px;
   padding: 20px;
   overflow: hidden;
   width: calc(50% - 10px);
   min-height: 250px;
}

.promotions__list-item:before {
   display: none;
}

.promotions__list-item+.promotions__list-item {
   margin-top: 0;
}

.promotions__item-desc {
   position: relative;
}

.promotions__item-title {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   gap: 16px;
   width: 100%;
}

.promotions__item-title img {
   max-width: 32px;
}

.promotions__item-title span {
   border-bottom: 1px solid #FCC211;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
   max-width: 415px;
   padding-bottom: 10px;
}

.promotions__item-text {
   margin-top: 10px;
   padding: 0 48px;
}

/* Tournaments */
.tournaments__list-item {
   border: 1px solid #FCC211;
   border-radius: 15px;
   overflow: hidden;
   padding: 109px 80px;
}

.tournaments__list-item:before {
   display: none;
}

.tournaments__list-item+.tournaments__list-item {
   margin-top: 20px;
}

.tournaments__item-img {
   position: absolute;
   bottom: 0;
   right: 0;
}

.tournaments__item-desc {
   text-shadow: 0 0 5px #000;
   max-width: 655px;
   position: relative;
}

.tournaments__item-title {
   text-transform: uppercase;
   color: #fff;
   margin-bottom: 20px;
}

.tournaments__item-img img {
   display: block;
}

/* App Banner */
.app-banner {
   padding: 100px 80px;
}

.app-banner__desc {
   max-width: 590px;
   position: relative;
}

.app-banner__buttons {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 16px;
   margin-top: 40px;
}

.app-banner__button {
   background-color: #1F2038;
   border: 2px solid #FFD400;
   border-radius: 8px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 16px;
   font-weight: 500;
   color: #fff;
   text-align: center;
   width: 240px;
   height: 64px;
   padding: 16px 32px;
}

.app-banner__button:hover {
   background-color: #FFD400;
}

.app-banner__button img {
   max-width: 32px;
}

.app-banner__button span {
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* Games */
.games__table th,
.games__table td {
   width: 20%;
}

.games__table thead tr,
.package__table thead tr,
.credit__table thead tr,
.limited-promotions__table tr,
.limited-promotions__table thead tr,
.conditions__table thead tr {
   padding: 0;
   gap: 0;
}

.games__table th,
.package__table th,
.credit__table th,
.limited-promotions__table th,
.conditions__table th {
   font-size: 14px;
   text-transform: uppercase;
   line-height: 1.143;
   word-wrap: break-word;
   padding: 14px 20px;
}

.games__table tbody tr,
.package__table tbody tr,
.credit__table tbody tr,
.limited-promotions__table tbody tr,
.conditions__table tbody tr {
   gap: 0;
   line-height: 1.358;
   padding: 0;
}

.games__table tr+tr,
.package__table tr+tr,
.credit__table tr+tr,
.limited-promotions__table tr+tr,
.conditions__table tr+tr {
   line-height: 1.3;
}

.games__table td,
.package__table td,
.credit__table td,
.limited-promotions__table td,
.conditions__table td {
   padding: 12px 20px;
}

.games__table td+td,
.package__table td+td,
.credit__table td+td,
.limited-promotions__table td+td,
.conditions__table td+td {
   border-left: 1px solid #FCC211;
}

/* Livegames */
.livegames__list {
   margin-top: 20px;
}

.livegames__list-item {
   background-color: #14152D;
   border-radius: 15px;
   padding: 20px;
}

.livegames__list-item+.livegames__list-item {
   margin-top: 14px;
}

.livegames__list-title:before {
   content: counter(ol)'.';
   display: inline-block;
   margin-right: 5px;
}

.livegames__item-text {
   margin-top: 15px;
}

/* Safety */
.safety .article-wrap {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 0 20px;
}

.safety h4 {
   color: #fff;
   margin-bottom: 20px;
}

.safety__item {
   border: 1px solid #FCC211;
   border-radius: 15px;
   padding: 20px;
   width: calc(50% - 10px);
}

/* Transaction */
.transaction ol ul {
   margin-top: 16px;
}

/* Service */
.service__banner {
   padding: 90px 80px;
}

.service__desc {
   max-width: 755px;
}

.service__banner-title {
   margin-bottom: 40px;
}

.service__button {
   margin-top: 40px;
}

/* FAQ */
.faq__item {
   background-color: #14152D;
   border-radius: 15px;
   overflow: hidden;
}

.faq__item+.faq__item {
   margin-top: 16px;
}

.faq-item__title {
   color: #FFD400;
   text-transform: none;
   text-align: left;
   margin-bottom: 0;
   cursor: pointer;
   padding: 18px 55px 17px 16px;
}

.faq-item__title:before {
   content: '';
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
   width: 24px;
   height: 24px;
   position: absolute;
   top: 19px;
   right: 16px;
}

.faq-item__desc {
   border-top: 1px solid #FFD400;
   padding: 16px;
}

.faq-item__desc .article {
   line-height: 1.71;
}

.faq__item.active .faq-item__title:before {
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17.125%2010H5.875C4.83953%2010%204%2010.8955%204%2012C4%2013.1045%204.83953%2014%205.875%2014H17.125C18.1605%2014%2019%2013.1045%2019%2012C19%2010.8955%2018.1605%2010%2017.125%2010Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
}

/* Reviews */
.reviews__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 20px;
}

.reviews__list-item {
   background-color: #14152D;
   border: 1px solid #FCC211;
   border-radius: 15px;
   padding: 20px;
   width: calc(50% - 10px);
}

.reviews__item-stars {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 5px;
   margin-bottom: 20px;
}

.reviews__item-stars img {
   max-width: 22px;
}

.reviews__item-desc h3 {
   text-transform: none;
}

.reviews__item-desc p {
   margin-top: 16px;
}

/* Footer */
.footer {
   padding: 62px 40px 20px 277px;
}

.footer__logo {
   -webkit-filter: grayscale(100%);
   filter: grayscale(100%);
   max-width: 152px;
   opacity: .5;
   margin: 0 auto;
}

.footer__menu {
   margin: 32px 0px;
   width: 100%;
}

.footer__menu ul {
   border: 2px solid rgba(255, 255, 255, .1);
   border-radius: 100px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 8px 16px;
   padding: 2px;
}

.footer__menu li a {
   display: block;
   font-weight: 500;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.502);
   line-height: 1;
   text-transform: uppercase;
   padding: 9px 17px;
}

.footer__menu li a:hover {
   background-color: #FFD400;
   border-radius: 100px;
   color: #000;
}

.footer__flags {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 20px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.footer__flags li {
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background: -o-linear-gradient(bottom, #14152d 0%, #45465e 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(#14152d), to(#45465e));
	background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	padding: 12px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.footer__flags li:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
}
.footer__flags a {
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
}
.footer__flags a + a {
	margin-left: 8px;
}
.footer__flags img {
	max-width: 24px;
}



.footer__payment {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   gap: 14.5px;
   margin-top: 32px;
}

.footer__payment li {
   background-color: #33334F;
   border-radius: 8px;
   width: 148px;
   height: 58px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   padding: 5px;
}

.footer__text {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   gap: 12px;
   margin-top: 32px;
   position: relative;
}

.footer__desc {
   color: rgba(255, 255, 255, .5);
   line-height: 1.71;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* To top */
.to-top {
   background-color: #1F2038;
   border-radius: 50%;
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2238%22%20viewBox%3D%220%200%2038%2038%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M29.6009%2016.5921C29.8572%2016.8458%2030.0007%2017.189%2030%2017.5465C29.9993%2017.904%2029.8544%2018.2466%2029.5971%2018.4994C29.3398%2018.7522%2028.9911%2018.8945%2028.6272%2018.8952C28.2633%2018.8959%2027.914%2018.7549%2027.6557%2018.5031L19%209.99957L10.3443%2018.5031C10.086%2018.7549%209.73669%2018.8959%209.37281%2018.8952C9.00893%2018.8945%208.66015%2018.7522%208.40285%2018.4994C8.14555%2018.2466%208.0007%2017.904%208%2017.5465C7.99931%2017.189%208.14283%2016.8458%208.39915%2016.5921L18.0274%207.13307C18.2854%206.87967%2018.6352%206.7373%2019%206.7373C19.3648%206.7373%2019.7146%206.87967%2019.9726%207.13307L29.6009%2016.5921Z%22%20fill%3D%22%23FDCD0B%22%2F%3E%3Cpath%20d%3D%22M29.6009%2028.7503C29.8572%2029.004%2030.0007%2029.3472%2030%2029.7047C29.9993%2030.0622%2029.8544%2030.4048%2029.5971%2030.6576C29.3398%2030.9104%2028.9911%2031.0527%2028.6272%2031.0534C28.2633%2031.0541%2027.914%2030.9131%2027.6557%2030.6613L19%2022.1578L10.3443%2030.6613C10.086%2030.9131%209.73669%2031.0541%209.37281%2031.0534C9.00893%2031.0527%208.66015%2030.9104%208.40285%2030.6576C8.14555%2030.4048%208.0007%2030.0622%208%2029.7047C7.99931%2029.3472%208.14283%2029.004%208.39915%2028.7503L18.0274%2019.2913C18.2854%2019.0379%2018.6352%2018.8955%2019%2018.8955C19.3648%2018.8955%2019.7146%2019.0379%2019.9726%2019.2913L29.6009%2028.7503Z%22%20fill%3D%22%23FDCD0B%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: 38px;
   display: block;
   width: 42px;
   height: 42px;
   position: fixed;
   right: 20px;
   bottom: 20px;
   display: none;
   z-index: 100;
   opacity: .6;
}

.to-top:hover {
   opacity: 1;
}

/* BONUSES PAGE */
/* Prime */
.bonuses-prime {
   padding-top: 93px;
   padding-bottom: 87px;
}

.bonuses-prime__wrap {
   max-width: 855px;
}

.bonuses-prime__wrap .title {
   margin-bottom: 0;
}

/* Package */
.package__table th,
.package__table td {
   width: calc(100% / 6);
}

.package__list {
   font-family: 'Roboto', sans-serif;
   border-top: 1px solid #FCC211;
   border-bottom: 1px solid #FCC211;
   padding: 14px 0 20px;
}

.package__list:before {
   top: 20px;
   bottom: 20px;
}

.package__list li+li {
   margin-top: 31px;
}

.package__validity {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 14px;
}

/* Credit */
.credit__table th,
.credit__table td {
   width: 20%;
}

/* Mobile */
.mobile-banner {
   margin-top: 20px;
   padding: 80px 80px 74px;
}

.mobile-banner__desc {
   max-width: 730px;
}

.mobile-banner__desc h3 {
   max-width: 590px;
}

/* Cashback */
.cashback__banner {
   padding: 109px 80px;
}

.cashback__banner-desc {
   max-width: 625px;
   position: relative;
}

.cashback__banner-desc p {
   margin-top: 12px;
}

.cashback__button {
   margin-top: 32px;
}

/* Limited Promotions */
.limited-promotions__table th,
.limited-promotions__table td,
.conditions__table th,
.conditions__table td {
   width: calc(100% / 3);
}

/* Responsibility */
.responsibility__banner {
   padding: 80px 80px 50px;
}

.responsibility__button {
   margin-top: 32px;
}

/* MOBILE PAGE */
/* Prime */
.mobile-prime {
   padding-top: 84px;
   padding-bottom: 79px;
}

/* Guide */
.guide__steps-item:before {
   display: none;
}

.guide__steps-title {
   text-transform: none;
}

.guide__steps-title:before {
   content: '0' counter(ol);
   border: 1px solid #FCC211;
   border-radius: 3px;
   display: inline-block;
   font-family: 'Roboto', sans-serif;
   font-weight: 700;
   font-size: 15px;
   text-align: center;
   line-height: 2.2;
   vertical-align: middle;
   margin-right: 20px;
   width: 32px;
   height: 32px;
}

.guide__install-wrap {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
}

.guide__install-item {
   border: 1px solid #FCC211;
   border-radius: 15px;
   padding: 20px;
   width: calc(50% - 10px);
}

.guide__install-item+.guide__install-item {
   margin-top: 0;
}

.guide__install-item:before {
   display: none;
}

.guide__install-header {
   border-bottom: 1px solid #FCC211;
   font-weight: 700;
   font-size: 20px;
   text-transform: uppercase;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 20px;
   margin-bottom: 16px;
   padding-bottom: 16px;
}

.guide__install-header img {
   max-width: 32px;
}

/* Features */
.features__text {
   font-weight: 700;
   font-size: 20px;
}

/* Play */
.play-banner {
   padding: 80px;
}

.play-banner__desc {
   max-width: 665px;
}