@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');

body {
	background: #0B0C21;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.714;
	color: #fff;
	text-align: left;
	overflow-x: hidden;
	min-height: 100vh;
}

p {
	margin-top: 20px;
	width: 100%;
}

p:first-child {
	margin-top: 0;
}

ul,
ol {
	text-align: left;
	position: relative;
	width: 100%;
}

li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 135%;
	position: relative;
}

ol>li {
	min-height: 40px;
	padding-left: 56px;
}

ul>li {
	min-height: 30px;
	padding-left: 48px;
}

ol li+li {
	margin-top: 12px;
}

ul li+li {
	margin-top: 8px;
}

li:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

ul>li:before {
	background: url('../img/ul-li.png') no-repeat -74px -1px;
	width: 32px;
	height: 34px;
}

ol>li:before {
	background-image: url('../img/ol-li.png');
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
}

ol>li:first-child:before {
	background-position: -1px -1px;
}

ol>li:nth-child(2):before {
	background-position: -1px -43px;
}

ol>li:nth-child(3):before {
	background-position: -43px -1px;
}

ol>li:nth-child(4):before {
	background-position: -43px -43px;
}

ol>li:last-child:before {
	background-position: -85px -1px;
}

nav ul li {
	display: block;
	min-height: 0;
	padding: 0;
}

nav ul li+li {
	margin-top: 0;
}

nav ul li:before {
	display: none;
}

.list-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.list-row li+li {
	margin-top: 0;
}

/* Title */
h1,
h2,
h3,
h4,
.title {
	display: block;
	position: relative;
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
}

.title {
	margin-bottom: 20px;
}

h1,
.title.general {
	font-weight: 900;
	font-size: 34px;
	color: #FCC211;
	line-height: 1.235;
}

h2,
.title.high {
	border-bottom: 3px solid #FFC700;
	font-size: 28px;
	line-height: 120%;
	padding-bottom: 10px;
}

h3,
.title.middle {
	font-size: 20px;
	line-height: 135%;
}

h4,
.title.mini {
	font-size: 16px;
	line-height: 135%;
}

/* Article */
article,
.article {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.714;
	text-align: left;
}

article>*:first-child,
.article>*:first-child {
	margin-top: 0px;
}

article>*+*,
.article>*+* {
	margin-top: 20px;
}

article p a,
.article p a,
article li a:not(.button):not(.app-button),
.article li a:not(.button):not(.app-button) {
	color: inherit;
	text-decoration: underline;
}

article .title+*,
.article .title+* {
	margin-top: 0;
}

/* Button */
.button {
	display: inline-block;
	background: url('../img/button.webp') no-repeat center center / cover;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	padding: 30px 14px;
	margin: 20px 0 0;
	height: auto;
	min-width: 279px;
	position: relative;
}

.yellow {
	background-image: url('../img/button-2.webp');
	min-width: 264px;
}

.button:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.button>* {
	display: inline-block;
	vertical-align: middle;
}

.button img {
	max-width: 17px;
	margin-right: 8px;
}

/* 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;
}

.background+* {
	margin-top: 0;
}

.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-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0px auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.content {
	background-color: #1F2038;
	border-radius: 12px;
	margin-top: 20px;
	padding: 20px;
}

.cover {
	padding-left: 30px;
	padding-right: 30px;
}

.content>*,
.cover>* {
	position: relative;
}

/* article banner */
.article-banner {
	background-color: #14152D;
	border-radius: 12px;
	overflow: hidden;
	padding: 20px;
	position: relative;
	width: 100%;
}

.article-banner__desc {
	position: relative;
	z-index: 1;
	width: 100%;
}

.article-banner__desc>*+* {
	margin-top: 20px;
}

.article-banner__img {
	position: absolute;
}

.article-banner__img img {
	display: block;
}

/* 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;
	padding-top: 13.5px;
	padding-bottom: 13.5px;
}

.logo {
	display: inline-block;
}

.logo img {
	display: block;
}

.header__logo {
	max-width: 1524px;
}

.menu-button,
.header__menu .header__button {
	display: none;
}

.header__menu {
	margin: 0 auto 0 6.7%;
}

.header__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.header__menu ul a {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	line-height: 1;
}

.header__menu ul li a:hover {
	color: #FCC211;
}

.header__button {
	border-radius: 8px;
	font-size: 14px;
	margin-top: 0;
}

.header__button-login {
	background: #FCC211;
	color: #13151B;
	min-width: 109px;
	padding-top: 13px;
	padding-bottom: 13px;
}

.header__button-signup {
	background: none;
	border: 1px solid #FCC211;
	min-width: 159px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.header__lang {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
}

.header__lang img {
	max-width: 24px;
	border-radius: 50%;
	display: block;
}

/* Sidebar */
.sidebar {
	position: fixed;
	top: 67px;
	left: 30px;
	height: calc(100vh - 67px);
	overflow: auto;
	width: 240px;
	padding-bottom: 20px;
	z-index: 10;
}

.sidebar::-webkit-scrollbar {
	display: none;
}

/* Sidebar left */
.sidebar__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.sidebar__button {
	background: -o-linear-gradient(left, #2C1575 47%, #7F0DCE 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(47%, #2C1575), to(#7F0DCE));
	background: linear-gradient(90deg, #2C1575 47%, #7F0DCE 100%);
	border-radius: 10px;
	-webkit-box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.7);
	box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.7);
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	line-height: 17.5px;
	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;
	height: 60px;
	overflow: hidden;
	position: relative;
}

.sidebar__button>* {
	position: relative;
	z-index: 1;
}

.sidebar__button:after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 10px;
	padding: 2px;
	background: -o-linear-gradient(left, #430870 0%, rgba(67, 8, 112, 0) 23.24%, #FCC211 100%);
	background: -webkit-gradient(linear, left top, right top, from(#430870), color-stop(23.24%, rgba(67, 8, 112, 0)), to(#FCC211));
	background: linear-gradient(90deg, #430870 0%, rgba(67, 8, 112, 0) 23.24%, #FCC211 100%);
	-webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box,
		-webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
	-webkit-mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box,
		-webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
	mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.sidebar__button img {
	position: absolute;
}

.sidebar__button-wheel img {
	left: 11px;
	bottom: 2px;
	max-width: 70px;
}

.sidebar__button-app img {
	left: 1px;
	bottom: 2px;
	max-width: 84px;
}

.sidebar__button:hover span {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.sidebar__item-quicklinks {
	margin: 10px 0 20px;
	padding-bottom: 30px;
	position: relative;
}

.sidebar__item-quicklinks:after {
	content: '';
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
	background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.sidebar-quicklinks__list li+li {
	margin-top: 0;
}

.sidebar-quicklinks__list li a {
	border-radius: 6px;
	font-weight: 700;
	font-size: 14px;
	color: #727489;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	padding: 16px;
}

.sidebar-quicklinks__list li a:hover {
	background-color: #FCC211;
}

.sidebar-quicklinks__list li a img {
	max-height: 24px;
}

.sidebar-quicklink__numb {
	background-color: #FA5926;
	border-radius: 50%;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
	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;
	position: absolute;
	top: 8px;
	left: 30px;
	padding: 2px 8px;
	height: 16px;
	width: 16px;
}

.sidebar-quicklinks__app {
	background-color: #4D4D76;
	border-radius: 5px;
	-webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.3) inset,
		0px 3px 1px 0px rgba(18, 23, 32, 1);
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.3) inset,
		0px 3px 1px 0px rgba(18, 23, 32, 1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 74px;
	margin-top: 20px;
	padding-left: 9px;
	position: relative;
}

.sidebar-quicklinks__app img {
	max-width: 84px;
	max-height: none;
	position: absolute;
	bottom: 0;
	right: 9px;
}

.sidebar-quicklinks__app span {
	color: #fff;
	line-height: 1;
	display: block;
}

.sidebar-quicklinks__app span span:first-child {
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
}

.sidebar-quicklinks__app span span:last-child {
	font-size: 10px;
	line-height: 12px;
	color: rgba(255, 255, 255, .6);
	margin-top: 3px;
}

.sidebar__item-navigation {
	background-color: #1F2038;
	border-radius: 6px 6px 12px 12px;
}

.sidebar-item__button {
	display: block;
	background-color: #4D4D76;
	border-radius: 6px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #FCC211;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
	padding: 12px 28px 12px 12px;
	position: relative;
	width: 100%;
}

.sidebar-item__button:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.7589 15.7541C19.4667 16.0522 19.0095 16.0793 18.6873 15.8354L18.595 15.7541L12 9.02658L5.40503 15.7541C5.11283 16.0522 4.65558 16.0793 4.33338 15.8354L4.24106 15.7541C3.94887 15.456 3.9223 14.9896 4.16137 14.661L4.24106 14.5668L11.418 7.2459C11.7102 6.94784 12.1675 6.92074 12.4897 7.16461L12.582 7.2459L19.7589 14.5668C20.0804 14.8947 20.0804 15.4262 19.7589 15.7541Z' fill='%23FCC211'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 12px;
	margin: auto;
}

.sidebar-item__button.slide:before {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.sidebar-navigation__list {
	margin-top: 10px;
	padding-bottom: 12px;
}

.sidebar-navigation__list li+li {
	margin-top: 12px;
}

.sidebar-navigation__list li a {
	display: block;
	font-size: 14px;
	color: #727489;
	line-height: 1.714;
	padding: 0 12px;
	position: relative;
}

.sidebar-navigation__list li a:hover {
	color: #FCC211;
}

/* Main */
.main {
	padding: 67px 30px 20px 290px;
	position: relative;
}

/* Prime */
.prime {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 445px;
	color: #fff;
	margin: 0;
	padding-left: 70px;
}

.prime__wrap {
	background-color: rgba(11, 12, 33, 0.8);
	border-radius: 16px;
	-webkit-box-shadow: 0px 0px 20px 0px #0BCAD5;
	box-shadow: 0px 0px 20px 0px #0BCAD5;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	text-align: center;
	padding: 24px;
	max-width: 670px;
	width: 100%;
}

.prime__wrap>* {
	position: relative;
	z-index: 1;
}

.prime__wrap:after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 4px;
	background: -o-linear-gradient(left, rgba(31, 32, 53, 0) 0%, rgba(11, 216, 226, 0.8) 50.48%, rgba(31, 32, 53, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(31, 32, 53, 0)), color-stop(50.48%, rgba(11, 216, 226, 0.8)), to(rgba(31, 32, 53, 0)));
	background: linear-gradient(90deg, rgba(31, 32, 53, 0) 0%, rgba(11, 216, 226, 0.8) 50.48%, rgba(31, 32, 53, 0) 100%);
	-webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box,
		-webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
	-webkit-mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box,
		-webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
	mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.prime__rating {
	text-transform: uppercase;
	margin-bottom: 16px;
}

.prime__rating>span {
	font-weight: 500;
	margin-left: 8px;
}

.prime__title {
	margin-bottom: 16px;
}

.prime__text {
	font-size: 16px;
	line-height: 1.5;
}

.prime__button {
	margin-top: 32px;
}

/* About */
.table {
	background-color: #14152D;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.table tr>* {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 12px 20px;
}

.table tr+tr {
	border-top: 1px solid rgba(252, 194, 17, 0.5);
}

.table tr+tr>* {
	padding-bottom: 11px;
}

.table thead {
	background-color: #FCC211;
	font-weight: 700;
	font-size: 14px;
	color: #13151B;
	line-height: 1.429;
	text-transform: uppercase;
}

.table tbody {
	line-height: 1.358;
}

.about__table tr {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/* Features */
.features__proscons {
	background-color: #14152D;
	border-radius: 12px;
	padding: 20px;
	width: 100%;
}

.features-proscons__title {
	margin-bottom: 16px;
}

.features__proscons-pros ul li {
	min-height: 34px;
}

.features__proscons-cons ul li {
	min-height: 36px;
}

.features__proscons-cons ul li:before {
	background-position: -1px -1px;
}

/* Banner */
.bonus-banner {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 400px;
	padding-left: 70px;
}

.bonus-banner__background img {
	-o-object-position: 75%;
	object-position: 75%;
}

.bonus-banner__wrap {
	background-color: rgba(20, 21, 45, 0.6);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	text-align: center;
	padding: 32px;
	max-width: 560px;
	width: 100%;
}

.bonus-banner__title {
	border: none;
	font-weight: 900;
	color: #FFC700;
	line-height: 155%;
	padding: 0;
}

.bonus-banner__text {
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	margin-top: 13px;
}

.bonus-banner__button {
	margin-top: 37px;
}

/* App */
.app-desc__steps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	width: 100%;
}

.app-steps__item {
	background-color: rgba(20, 21, 45, 0.7);
	border-radius: 20px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 20px;
}

.app-item__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.app-item__title img {
	max-width: 32px;
}

/* Store */
.store {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 300px;
	padding-left: 54px;
	padding-right: 60px;
}

.store__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.app-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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 16px;
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	line-height: 16px;
	text-align: center;
	width: 233px;
	height: 64px;
	position: relative;
	z-index: 1;
}

.app-button img {
	max-width: 32px;
}

.ios-button span {
	width: 121px;
}

.android-button span {
	width: 131px;
}

.app-button:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.store__logo {
	max-width: 302px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.store__logo img {
	display: block;
}

/* Promotions */
.promotions-list__item {
	background-color: #14152D;
	border-radius: 12px;
	display: block;
	min-height: 0;
	overflow: hidden;
	padding: 20px;
}

.promotions-list__item:before {
	display: none;
}

.promotions-list__item+.promotions-list__item {
	margin-top: 20px;
}

.promotions-list__item:nth-child(odd) .promotions-item__desc {
	max-width: 740px;
	width: 72%;
}

.promotions-list__item:nth-child(even) .promotions-item__desc {
	margin-left: auto;
	max-width: 706px;
	width: 68%;
}

.promotions-item__desc {
	position: relative;
	z-index: 1;
}

.promotions-list__item:first-child .promotions-item__desc ul li:before {
	width: 33px;
	height: 30px;
	background-position: -1px -71px;
}

.promotions-list__item:nth-child(2) .promotions-item__desc ul li:before {
	width: 37px;
	height: 31px;
	background-position: -35px -1px;
}

.promotions-list__item:nth-child(3) .promotions-item__desc ul li:before {
	width: 30px;
	height: 30px;
	background-position: -74px -37px;
}

.promotions-item__img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.promotions-list__item:nth-child(even) .promotions-item__img {
	right: auto;
	left: 0;
}

.promotions-list__item:first-child .promotions-item__img {
	max-width: 370px;
	width: 35%;
}

.promotions-list__item:nth-child(2) .promotions-item__img {
	max-width: 332px;
	width: 31%;
}

.promotions-list__item:nth-child(3) .promotions-item__img {
	max-width: 396px;
	width: 37%;
}

.promotions-list__item:nth-child(4) .promotions-item__img {
	max-width: 462px;
	width: 43%;
}

.promotions-list__item:last-child .promotions-item__img {
	max-width: 424px;
	width: 40%;
}

.promotions-item__img img {
	display: block;
}

/* VIP */
.contebt-with-bg {
	padding: 80px;
}

.content-bg__background img {
	-o-object-position: 75%;
	object-position: 75%;
}

.content-bg__desc {
	background-color: rgba(20, 21, 45, 0.4);
	border-radius: 12px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	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: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	padding: 20px;
	max-width: 700px;
}

.content-bg__desc p,
.content-bg__desc .button {
	margin-top: 0;
}

/* Tournaments */
.tournaments__table thead th:first-child,
.tournaments__table tbody th {
	max-width: 180px;
}

.tournaments__table thead th:nth-child(2),
.tournaments__table tbody td:nth-child(2) {
	max-width: 310px;
}

/* Slots */
.slots__table td+td {
	border-left: 1px solid rgba(252, 194, 17, 0.5);
}

/* Games */
.games-list__item {
	background-color: #14152D;
	border-radius: 12px;
	display: block;
	overflow: hidden;
	padding: 20px;
}

.games-list__item:before {
	display: none;
}

.games-list__item+.games-list__item {
	margin-top: 20px;
}

.games-item__desc {
	max-width: 740px;
	width: 72%;
	position: relative;
	z-index: 1;
}

.games-list__item:nth-child(even) .games-item__desc {
	margin-left: auto;
}

.games-item__img {
	position: absolute;
	bottom: 0;
}

.games-list__item:first-child .games-item__img {
	right: 3.4%;
	max-width: 253px;
	width: 24%;
}

.games-list__item:nth-child(2) .games-item__img {
	left: 0;
	max-width: 329px;
	width: 31%;
}

.games-list__item:nth-child(3) .games-item__img {
	right: 1.7%;
	max-width: 293px;
	width: 28%;
}

.games-list__item:nth-child(4) .games-item__img {
	left: 0;
	max-width: 304px;
	width: 29%;
}

.games-list__item:last-child .games-item__img {
	right: 1.2%;
	max-width: 338px;
	width: 32%;
}

.games-item__img img {
	display: block;
}

/* FAQ */
.faq__list li {
	background-color: #14152D;
	border-radius: 15px;
	display: block;
	min-height: 0;
	overflow: hidden;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	padding: 0;
}

.faq__list li+li {
	margin-top: 16px;
}

.faq__list li:before {
	display: none;
}

.faq-item__title {
	color: #FCC211;
	line-height: 100%;
	text-transform: none;
	cursor: pointer;
	margin: 0;
	position: relative;
	padding: 21px 50px 21px 16px;
	z-index: 1;
}

.faq-item__title:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.125 9.5H5.875C4.83953 9.5 4 10.3955 4 11.5C4 12.6045 4.83953 13.5 5.875 13.5H17.125C18.1605 13.5 19 12.6045 19 11.5C19 10.3955 18.1605 9.5 17.125 9.5Z' fill='%23FCC211'/%3E%3Cpath d='M13.5 17.125L13.5 5.875C13.5 4.83953 12.6045 4 11.5 4C10.3955 4 9.5 4.83953 9.5 5.875L9.5 17.125C9.5 18.1605 10.3955 19 11.5 19C12.6045 19 13.5 18.1605 13.5 17.125Z' fill='%23FCC211'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
	width: 24px;
	height: 24px;
}

.faq-list__item.active .faq-item__title:after {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.125 10H5.875C4.83953 10 4 10.8955 4 12C4 13.1045 4.83953 14 5.875 14H17.125C18.1605 14 19 13.1045 19 12C19 10.8955 18.1605 10 17.125 10Z' fill='%23FCC211'/%3E%3C/svg%3E%0A");
}

.faq-item__desc {
	border-top: 1px solid #FCC211;
	line-height: 1.714;
	padding: 16px;
}

/* Reviews */
.reviews__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.reviews-list__item {
	background-color: #14152D;
	border-radius: 15px;
	display: block;
	min-height: 0;
	padding: 20px;
	width: calc(50% - 10px);
}

.reviews-list__item+.reviews-list__item {
	margin-top: 0;
}

.reviews-list__item::before {
	display: none;
}

.reviews-item__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.reviews-header__name {
	font-weight: 700;
	font-size: 15px;
	line-height: 135%;
}

.reviews-header__stars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}

.reviews-header__stars img {
	display: block;
	max-width: 22px;
}

.reviews-item__desc {
	line-height: 135%;
}

/* Grades */
.grades__table thead th:first-child,
.grades__table tbody th,
.grades__table thead th:last-child,
.grades__table tbody td:last-child {
	max-width: 300px;
}

.grades__table tbody td:last-child {
	font-weight: 700;
	color: #FCC211;
}

/* Btn Top */
.to-top-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: absolute;
	top: 0;
	bottom: -70px;
	right: 46px;
	width: 56px;
}

.to-top {
	background: url('../img/up.png') no-repeat center center / cover;
	position: -webkit-sticky;
	position: sticky;
	bottom: 10px;
	width: 56px;
	height: 65px;
	display: none;
	z-index: 100;
	opacity: .8;
}

.to-top:hover {
	opacity: 1;
}

/* Footer */
.footer {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	padding: 0 50px 33px 310px;
}

.footer__logo {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .5;
	max-width: 152px;
}

.footer ul {
	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;
}

.footer ul li {
	display: block;
	line-height: 1;
	min-height: 0;
	padding: 0;
}

.footer ul li:before {
	display: none;
}

.footer ul li+li {
	margin-top: 0;
}

.footer__menu {
	border: 2px solid rgba(255, 255, 255, .1);
	border-radius: 100px;
	padding: 8px 37px;
}

.footer__menu ul {
	gap: 16px;
}

.footer__menu ul li a {
	display: block;
	border-radius: 100px;
	font-weight: 500;
	color: rgba(255, 255, 255, .5);
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	padding: 9px 16px;
}

.footer__menu ul li a:hover {
	background-color: #FCC211;
	color: #13151B;
}

.footer__langs {
	gap: 20px;
}

.footer__langs li a {
	background-color: #1F2038;
	border-radius: 8px;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	line-height: 1;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 12px;
}

.footer__langs li a:hover {
	background-color: rgba(255, 255, 255, .2);
}

.footer__langs li a img {
	border-radius: 50%;
	max-width: 24px;
}

.footer__payment {
	gap: 7px;
}

ul.footer__payment li {
	background-color: #33334F;
	border-radius: 8px;
	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;
	width: 148px;
	height: 58px;
}

.footer__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.footer-wrap__img {
	max-width: 64px;
}

.footer-wrap__img img {
	display: block;
}

.footer-wrap__desc {
	color: rgba(255, 255, 255, .5);
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.footer-wrap__desc p+p {
	margin-top: 12px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 15px;
	text-align: center;
}

.breadcrumbs>li {
	display: inline-block;
	min-height: 0;
	padding: 0px;
}

.breadcrumbs>li+li {
	margin: 0;
}

.breadcrumbs>li:before {
	display: none;
}

.breadcrumbs>li a {
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
}

.breadcrumbs>li a:not([href]) {
	font-weight: 500;
}

.breadcrumbs>li:not(:last-child):after {
	content: '|';
	display: inline-block;
	position: relative;
	font: inherit;
	color: #fff;
	margin: 0px 12px;
}

.breadcrumbs>li a:not([href]),
.breadcrumbs>li a:not([href]) span {
	cursor: default;
}

/* BONUS PAGE */
/* Prime */
.bonus-prime__wrap {
	-webkit-box-shadow: 0px 0px 20px 0px #E32622;
	box-shadow: 0px 0px 20px 0px #E32622;
}

.bonus-prime__wrap:after {
	background: -o-linear-gradient(left, rgba(31, 32, 53, 0) 0%, rgba(227, 38, 34, 0.8) 50.48%, rgba(31, 32, 53, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(31, 32, 53, 0)), color-stop(50.48%, rgba(227, 38, 34, 0.8)), to(rgba(31, 32, 53, 0)));
	background: linear-gradient(90deg, rgba(31, 32, 53, 0) 0%, rgba(227, 38, 34, 0.8) 50.48%, rgba(31, 32, 53, 0) 100%);
}

/* Welcome */
.welcome ul li::before {
	width: 30px;
	height: 30px;
	background-position: -74px -37px;
}

.welcome-steps__desc {
	max-width: 740px;
	width: 72%;
}

.welcome-steps__img {
	bottom: 0;
	right: 0;
	max-width: 406px;
	width: 38%;
}

.welcome-terms__desc {
	margin-left: auto;
	max-width: 706px;
	width: 68%;
}

.welcome-terms__img {
	bottom: 0;
	left: 0;
	max-width: 329px;
	width: 31%;
}

/* Reload */
.reload-banner__desc {
	max-width: 740px;
	width: 72%;
}

.reload-banner__desc ul li:before {
	width: 33px;
	height: 30px;
	background-position: -1px -71px;
}

.reload-banner__img {
	bottom: 0;
	right: 0;
	max-width: 346px;
	width: 33%;
}

/* Freespins */
.freespins-banner__desc {
	margin-left: auto;
	max-width: 706px;
	width: 68%;
}

.freespins-banner__img {
	bottom: 6%;
	left: 0.5%;
	max-width: 317px;
	width: 30%;
}

/* Rewards */
.rewards__item:nth-child(2) {
	max-width: none;
}

.rewards__item:nth-child(3) {
	margin-left: auto;
}

/* Cashback */
.cashback-banner__desc {
	max-width: 740px;
	width: 72%;
}

.cashback-banner__img {
	bottom: 0;
	right: 0;
	max-width: 360px;
	width: 34%;
}

/* Limited */
.limited-banner__desc {
	max-width: 740px;
	width: 72%;
}

.limited-banner__img {
	bottom: 0;
	right: 0;
	max-width: 385px;
	width: 36%;
}

/* Responsibly */
.responsibly-banner__desc ul li:before {
	width: 33px;
	height: 30px;
	background-position: -1px -71px;
}

/* Start */
.start__banner {
	padding: 52px 50px;
}

.start-banner__background img {
	-o-object-position: 80%;
	object-position: 80%;
}

.title.start-desc__title {
	border: none;
	font-weight: 900;
	font-size: 32px;
	padding: 0;
}

/* APP PAGE */
/* Prime */
.app-prime__wrap {
	-webkit-box-shadow: 0px 0px 20px 0px #A033FF;
	box-shadow: 0px 0px 20px 0px #A033FF;
}

.app-prime__wrap:after {
	background: -o-linear-gradient(left, rgba(31, 32, 53, 0) 0%, rgba(160, 51, 255, 0.8) 50.48%, rgba(31, 32, 53, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(31, 32, 53, 0)), color-stop(50.48%, rgba(160, 51, 255, 0.8)), to(rgba(31, 32, 53, 0)));
	background: linear-gradient(90deg, rgba(31, 32, 53, 0) 0%, rgba(160, 51, 255, 0.8) 50.48%, rgba(31, 32, 53, 0) 100%);
}

/* Install */
.ios-desc__wrap {
	max-width: 740px;
	width: 72%;
}

.install-desc__requirements {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.install-requirements__item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background-color: rgba(20, 21, 45, 0.7);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 20px;
}

.ios-requirements__item ul li:before {
	background: url('../img/apple.svg') no-repeat center center / cover;
	height: 30px;
	width: 30px;
}

.ios-banner__img {
	top: 6%;
	right: 1%;
	max-width: 296px;
	width: 28%;
}

.andriod-desc__wrap {
	margin-left: auto;
	max-width: 706px;
	width: 68%;
}

.android-requirements__item ul li:before {
	background: url('../img/android.svg') no-repeat center center / cover;
	height: 30px;
	width: 30px;
}

.android-banner__img {
	top: 4.5%;
	left: 0;
	max-width: 346px;
	width: 33%;
}

/* Advantages */
.advantages-list__item {
	background-color: #14152D;
	border-radius: 12px;
	display: block;
	overflow: hidden;
	padding: 20px;
}

.advantages-list__item:before {
	display: none;
}

.advantages-list__item+.advantages-list__item {
	margin-top: 20px;
}

.advantages-item__desc {
	max-width: 740px;
	width: 72%;
}

.advantages-list__item:nth-child(even) .advantages-item__desc {
	margin-left: auto;
}

.advantages-item__img {
	position: absolute;
	bottom: 0;
}

.advantages-list__item:first-child .advantages-item__img {
	right: .5%;
	max-width: 294px;
	width: 28%;
}

.advantages-list__item:nth-child(2) .advantages-item__img {
	left: 3.5%;
	max-width: 231px;
	width: 22%;
}

.advantages-list__item:nth-child(3) .advantages-item__img {
	right: 2%;
	max-width: 267px;
	width: 25%;
}

.advantages-list__item:last-child .advantages-item__img {
	left: 0;
	max-width: 331px;
	width: 31%;
}

.advantages-item__img img {
	display: block;
}

/* Devices */
.devices__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.devices-list__item {
	background-color: #14152D;
	border-radius: 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 20px 20px 20px 68px;
}

.devices-list__item:before {
	left: 20px;
	height: 30px;
	width: 30px;
}

.devices-list__item:first-child:before {
	background: url('../img/apple.svg') no-repeat center center / cover;
}

.devices-list__item:last-child:before {
	background: url('../img/android.svg') no-repeat center center / cover;
}

.devices-list__item+.devices-list__item {
	margin-top: 0;
}

.devices-banner__desc {
	max-width: 740px;
	width: 72%;
}

.devices__buttons,
.app__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
}

.devices-banner__img {
	bottom: 0;
	right: 0;
	max-width: 351px;
	width: 33%;
}

/* Web */
.web-banner__desc {
	max-width: 740px;
	width: 72%;
}

.web-banner__desc ul li:before {
	height: 30px;
	width: 37px;
	background-position: -1px -39px;
}

.web-banner__img {
	bottom: 0;
	right: 0;
	max-width: 354px;
	width: 33%;
}