@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@700&family=Noto+Sans+JP:wght@100..900&family=Roboto&display=swap');

body {
	background: #172D44;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: #D9D9D9;
	text-align: left;
	overflow-x: hidden;
	min-height: 100vh;
}

p {
	margin-top: 16px;
	width: 100%;
}

p:first-child {
	margin-top: 0;
}

/* list */
ul,
ol {
	text-align: left;
	position: relative;
	width: 100%;
}

ol {
	background-color: rgba(64, 143, 212, 0.9);
	border-radius: 6px;
}

li {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.375;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 46px;
	padding: 7px 20px 7px 64px;
	position: relative;
}

ul li+li {
	margin-top: 12px;
}

ol li+li {
	border-top: 1px solid rgba(255, 255, 255, 0.7);
	padding-bottom: 7px;
}

ol>li {
	counter-increment: ol;
}

ul>li {
	background-color: rgba(64, 143, 212, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 6px;
}

li:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	height: 24px;
	width: 24px;
}

ul>li: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='M12 24C5.37259 24 0 18.6274 0 12V12C0 5.37256 5.37259 0 12 0H12C18.6274 0 24 5.37259 24 12V12C24 18.6274 18.6274 24 12 24Z' fill='white'/%3E%3Cpath d='M18.9905 6.39094C18.684 5.95242 18.0801 5.84534 17.6416 6.15182C14.4543 8.3793 11.6436 11.1936 9.39456 14.4419C8.47377 13.4494 7.48736 12.5308 6.44632 11.6945C6.09435 11.4115 5.58033 11.4039 5.21834 11.7027C4.80414 12.0445 4.74548 12.6574 5.08733 13.0716C6.33471 14.5821 7.39255 16.2203 8.24029 17.9343C8.7791 19.045 10.4079 19.0419 10.9375 17.9147C12.7725 14.0358 15.4748 10.5165 18.8199 7.68728C19.2001 7.3688 19.2805 6.80549 18.9905 6.39094Z' fill='%23408FD4'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

ol>li:before {
	content: counter(ol);
	background-color: #fff;
	border-radius: 50%;
	font-family: 'Roboto', sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #4786B6;
	line-height: 1;
	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;
}

nav ul li {
	display: block;
	background: none;
	border: none;
	border-radius: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: inherit;
	line-height: inherit;
	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: 12px;
}

.list-row-2 li {
	width: calc(50% - 6px);
}

.list-row-3 li {
	width: calc(33.3% - 8px);
}

.list-row li+li {
	margin-top: 0;
}

/* Title */
h1,
h2,
h3,
h4,
.title {
	display: block;
	position: relative;
	width: 100%;
	font-weight: 700;
	color: #fff;
	line-height: 120%;
}

.title {
	margin-bottom: 16px;
}

h1,
.title.general {
	font-size: 32px;
}

h2,
.title.high {
	font-size: 24px;
	text-transform: uppercase;
}

h2 {
	padding-bottom: 12px;
}

h2:after {
	content: '';
	background-color: #408FD4;
	height: 6px;
	width: 80px;
	position: absolute;
	left: 0;
	bottom: 0;
}

h3,
.title.middle {
	border-left: 4px solid #408FD4;
	font-size: 20px;
	text-transform: uppercase;
	padding: 2.5px 0 2.5px 8px;
}

h4,
.title.mini {
	font-size: 16px;
	text-transform: uppercase;
	padding: 0;
}

h3.title.mini {
	border: none;
	padding-left: 0;
}

/* Article */
article,
.article {
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	text-align: left;
}

article>*:first-child,
.article>*:first-child {
	margin-top: 0px;
}

article>*+*,
.article>*+* {
	margin-top: 16px;
}

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-color: #408FD4;
	border-radius: 40px;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	padding: 14px;
	margin: 16px 0 0;
	height: auto;
	min-width: 164px;
	position: relative;
}

.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: #1B3959;
	-webkit-box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.2),
		0px -4px 10px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.2),
		0px -4px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	margin-top: 20px;
	padding: 20px;
}

.cover {
	padding-left: 20px;
	padding-right: 20px;
}

.content>*,
.cover>* {
	position: relative;
}

/* article banner */
.article-banner {
	background-color: rgba(18, 61, 97, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	overflow: hidden;
	padding: 32px;
	position: relative;
	width: 100%;
}

.banner-with-bg {
	background: none;
	border: none;
}

.article-banner__desc {
	font-size: 14px;
	line-height: 150%;
	position: relative;
	z-index: 1;
	width: 100%;
}

.article-banner__desc>*+* {
	margin-top: 16px;
}

.article-banner__desc h3:not(.title.mini) {
	font-family: 'Roboto', sans-serif;
}

.article-banner__desc ul li {
	font-weight: 700;
}

.article-banner__img {
	position: absolute;
}

.article-banner__img img {
	display: block;
}

/* Header */
.header {
	background: #101F2E;
	-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: 24px;
	overflow: visible;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: auto;
	padding-top: 10.5px;
	padding-bottom: 10.5px;
}

.logo {
	display: inline-block;
}

.logo img {
	display: block;
}

.header__logo {
	max-width: 115px;
}

.menu-button,
.header__menu .header__button {
	display: none;
}

.header__menu {
	margin: 0 auto 0 8.4%;
}

.header__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
}

.header__menu ul a {
	display: block;
	font-size: 16px;
	color: #fff;
	line-height: 1;
}

.header__menu ul li a:hover {
	color: #408FD4;
}

.header__button {
	margin-top: 0;
}

.header__button-login {
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #408FD4;
	color: #408FD4;
	min-width: 73px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header__button-signup {
	min-width: 122px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.header__lang {
	font-family: 'Merriweather Sans', sans-serif;
	font-size: 700px;
	font-size: 15px;
	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;

}

.header__lang img {
	max-width: 24px;
	border-radius: 50%;
	display: block;
}

/* Sidebar */
.sidebar {
	position: fixed;
	top: 60px;
	left: 30px;
	height: calc(100vh - 60px);
	overflow: auto;
	width: 240px;
	padding: 20px 0;
	z-index: 10;
}

.sidebar::-webkit-scrollbar {
	display: none;
}

.sidebar>*+* {
	margin-top: 16px;
}

.sidebar__item {
	background-color: #1B3959;
	border-radius: 6px;
	overflow: hidden;
}

.sidebar__item-quicklinks {
	padding: 8px 0;
}

.sidebar-quicklinks__list li a {
	font-size: 15px;
	color: #E3E8EB;
	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: 8px 12px;
}

.sidebar-quicklinks__list li a:hover {
	background-color: rgba(255, 255, 255, .2);
}

.sidebar-quicklinks__list li a img {
	max-height: 32px;
}

.sidebar__item-navigation {
	padding: 12px;
}

.sidebar-item__button {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	line-height: 1;
	text-align: left;
	padding: 5px 28px 5px 0;
	position: relative;
	width: 100%;
}

.sidebar-item__button:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 11L8 5L2 11' stroke='white' stroke-width='1.71429'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.sidebar-item__button.slide:before {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.sidebar-navigation__list {
	margin-top: 12px;
}

.sidebar-navigation__list li+li {
	margin-top: 10px;
}

.sidebar-navigation__list li a {
	display: block;
	font-size: 15px;
	color: #E3E8EB;
	line-height: 120%;
	position: relative;
}

.sidebar-navigation__list li a:hover {
	color: #408FD4;
}

/* Main */
.main {
	padding: 80px 30px 80px 290px;
	position: relative;
}

/* Prime */
.prime {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 500px;
	margin-top: 0;
	padding-left: 40px;
	padding-right: 40px;
}

.prime__wrap {
	background-color: rgba(18, 61, 97, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: #fff;
	text-align: center;
	max-width: 700px;
	padding: 20px;
}

.prime__rating {
	font-size: 16px;
	color: #E3E8EB;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.prime__rating span {
	font-weight: 500;
	margin-left: 10px;
}

.prime__text {
	font-size: 20px;
	line-height: 120%;
}

.prime__button {
	margin-top: 20px;
}

/* Technical */
.table {
	overflow: hidden;
	position: relative;
	width: 100%;
}

table a {
	color: inherit;
}

.table {
	background-color: #172D44;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 6px;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	line-height: 22px;
	position: relative;
}

.table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	padding: 12px 20px;
	word-break: break-word;
}

.table tr>* {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.table tr+tr {
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	padding-bottom: 11px;
}

.table thead {
	background-color: #408FD4;
	font-weight: 800;
	text-transform: uppercase;
}

.table tbody th {
	font-weight: 700;
}

/* Description */
.description__banner {
	padding: 20px;
}

.description-pros__desc {
	max-width: 808px;
	width: 68%;
}

.description-banner__desc ul li {
	font-weight: 400;
	padding-left: 68px;
}

.description-banner__desc ul li:before {
	background-color: #fff;
	border-radius: 50%;
	background-size: 20px;
	height: 28px;
	width: 28px;
}

.description-pros__desc li:before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 10C20 11.38 18.88 12.5 17.5 12.5H12.5V17.5C12.5 18.88 11.38 20 10 20C8.62 20 7.49999 18.88 7.49999 17.5V12.5H2.50001C1.12001 12.5 0 11.38 0 10C0 8.62001 1.12001 7.50001 2.50001 7.50001H7.49999V2.5C7.49999 1.12 8.62 0 10 0C11.38 0 12.5 1.12 12.5 2.5V7.50001H17.5C18.88 7.50001 20 8.62001 20 10Z' fill='%233E88C8'/%3E%3C/svg%3E%0A");
}

.description-cons__desc li:before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='6' viewBox='0 0 20 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5 0H2.5C1.11938 0 0 1.34325 0 3C0 4.65675 1.11938 6 2.5 6H17.5C18.8806 6 20 4.65675 20 3C20 1.34325 18.8806 0 17.5 0Z' fill='%233D87C7'/%3E%3C/svg%3E%0A");
}

.description-pros__img {
	bottom: 6%;
	right: 3%;
	max-width: 334px;
	width: 27%;
}

.description-cons__desc {
	margin-left: auto;
	max-width: 788px;
	width: 66%;
}

.description-cons__img {
	bottom: 0;
	left: 4%;
	max-width: 290px;
	width: 24%;
}

/* Bonus Banner */
.bonus-banner {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 380px;
	padding-left: 7%;
}

.bonus-banner__background img {
	-o-object-position: 75%;
	object-position: 75%;
}

.bonus-banner__wrap {
	background-color: rgba(18, 61, 97, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	text-align: center;
	padding: 20px;
	max-width: 459px;
	width: 100%;
}

.bonus-banner__title {
	font-size: 32px;
	text-transform: none;
	padding: 0;
}

.bonus-banner__title::after {
	display: none;
}

.bonus-banner__text {
	font-size: 20px;
	line-height: 150%;
	margin-top: 16px;
}

.bonus-banner__button {
	margin-top: 20px;
}

/* App */
.app-banner__desc {
	max-width: 796px;
	width: 68%;
}

.app-android__img {
	bottom: 0;
	right: 1%;
	max-width: 386px;
	width: 32%;
}

.app-ios__desc {
	margin-left: auto;
}

.app-ios__img {
	bottom: 4%;
	left: 1%;
	max-width: 382px;
	width: 31%;
}

/* Store */
.store {
	-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;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	min-height: 260px;
	padding: 20px 4.5% 20px 10%;
}

.store__buttons {
	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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.app-button {
	background-color: #408FD4;
	border-radius: 6px;
	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: 700;
	font-size: 14px;
	color: #fff;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	width: 250px;
	height: 60px;
	position: relative;
	z-index: 1;
}

.app-button img {
	max-width: 32px;
}

.app-button:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.store__logo {
	max-width: 213px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.store__logo img {
	display: block;
}

/* Offers */
.offers-banner__desc {
	max-width: 796px;
	width: 68%;
}

.offers__banner:nth-of-type(even) .offers-banner__desc {
	margin-left: auto;
}

.offers__banner:nth-of-type(1) .offers-banner__img {
	bottom: -3px;
	right: -8px;
	max-width: 420px;
	width: 34%;
}

.offers__banner:nth-of-type(2) .offers-banner__img {
	bottom: -4px;
	left: -3.8%;
	max-width: 439px;
	width: 36%;
}

.offers__banner:nth-of-type(3) .offers-banner__img {
	bottom: 0;
	right: -3.5%;
	max-width: 447px;
	width: 37%;
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
}

.offers__banner:nth-of-type(4) .offers-banner__img {
	bottom: 0;
	left: -5%;
	max-width: 460px;
	width: 38%;
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
}

/* Tournaments */
.tournaments__banner {
	padding: 20px;
}

.tournaments-banner__desc {
	max-width: 808px;
	width: 68%;
}

.tournaments-banner__img {
	bottom: 6%;
	right: 5%;
	max-width: 288px;
	width: 24%;
}

/* Slots */
.slots__table td:first-child {
	font-style: italic;
}

/* Games */
.games-banner__desc p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 22px;
}

.blocks-list {
	max-width: 796px;
	width: 68%;
}

.blocks-list__item {
	background-color: rgba(18, 61, 97, 0.7);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	display: block;
	min-height: 0;
	padding: 20px;
}

.blocks-list li.blocks-list__item {
	font-weight: 400;
}

.blocks-list__item+.blocks-list__item {
	margin-top: 16px;
}

.blocks-list__item:before {
	display: none;
}

.blocks-list li.blocks-list__item {
	font-weight: 400;
}

.blocks-list h3 {
	font-family: 'Noto Sans JP', sans-serif;
}

.games-banner__img {
	bottom: 0;
	right: 0;
	max-width: 481px;
	width: 39%;
}

/* Deposits */
.deposits-banner__desc {
	max-width: 808px;
	width: 69%;
}

.deposits-banner__img {
	bottom: 0;
	right: 3.5%;
	max-width: 317px;
	width: 26%;
}

/* FAQ */
.faq__list li {
	background: none;
	border: none;
	border-radius: 3px;
	font-family: 'Noto Sans JP', sans-serif;
	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 {
	background-color: rgba(51, 114, 162, 0.9);
	border: none;
	border-radius: 3px;
	font-size: 15px;
	line-height: 22px;
	cursor: pointer;
	margin: 0;
	position: relative;
	padding: 17px 55px 17px 20px;
	z-index: 1;
}

.faq-item__title:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.241064 8.7541C0.533263 9.05216 0.990508 9.07926 1.31272 8.83539L1.40503 8.7541L8 2.02658L14.595 8.7541C14.8872 9.05216 15.3444 9.07926 15.6666 8.83539L15.7589 8.7541C16.0511 8.45604 16.0777 7.98963 15.8386 7.66096L15.7589 7.56679L8.58198 0.245899C8.28978 -0.0521604 7.83254 -0.0792568 7.51033 0.16461L7.41802 0.245899L0.241064 7.56679C-0.0803547 7.89466 -0.0803547 8.42624 0.241064 8.7541Z' fill='white'/%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: 28px;
	margin: auto;
	width: 16px;
	height: 9px;
	-webkit-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	transform: rotateX(180deg);
	-webkit-transition: -webkit-transform .4s ease-in-out;
	transition: -webkit-transform .4s ease-in-out;
	-o-transition: transform .4s ease-in-out;
	transition: transform .4s ease-in-out;
	transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.faq-list__item.active .faq-item__title:after {
	-webkit-transform: rotateX(0);
	-ms-transform: rotateX(0);
	transform: rotateX(0);
}

.faq-item__desc {
	background-color: rgba(23, 45, 68, 0.4);
	font-size: 15px;
	line-height: 22px;
	padding: 12px 20px;
}

/* Reviews */
.reviews__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px 20px;
}

.reviews-list__item {
	display: block;
	background-color: rgba(18, 61, 97, 0.75);
	font-family: 'Noto Sans JP', sans-serif;
	width: calc(33.3% - 13.3px);
	padding: 32px;
}

.reviews-list__item:nth-child(-n+2) {
	width: calc(50% - 10px);
}

.reviews-list__item+.reviews-list__item {
	margin-top: 0;
}

.reviews-list__item::before {
	display: none;
}

.reviews-item__stars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
	margin-bottom: 16px;
}

.reviews-header__stars img {
	max-width: 22px;
}

.reviews-item__desc {
	font-size: 15px;
	line-height: 150%;
}

/* Grades */
.grades__background img {
	-o-object-position: 75%;
	object-position: 75%;
}

.grades__table {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	max-width: 828px;
}

.grades__table tr {
	padding-top: 16px;
	padding-bottom: 16px;
}

.grades__table tr+tr {
	padding-bottom: 15px;
}

.grades__table td:last-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.grades__table td:last-child span {
	width: 56px;
}

.progressbar,
.progress {
	border-radius: 50px;
	height: 16px;
}

.progressbar {
	background-color: #fff;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-right: 3px;
}

.progress {
	background-color: #408FD4;
}

/* 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: 20px;
	right: 30px;
	width: 40px;
}

.to-top {
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0.78125L8.28125 16.4062H14.5312V28.5938H25.4688V16.4062H31.7188L20 0.78125Z' fill='url(%23paint0_linear_1698_4981)'/%3E%3Cpath d='M14.5312 33.9062V30.7812H25.4688V33.9062H14.5312Z' fill='url(%23paint1_linear_1698_4981)'/%3E%3Cpath d='M14.5312 39.2188V36.0938H25.4688V39.2188H14.5312Z' fill='url(%23paint2_linear_1698_4981)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1698_4981' x1='20' y1='28.5938' x2='20' y2='0.78125' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232B526F'/%3E%3Cstop offset='1' stop-color='%23539DD5' stop-opacity='0.7'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_1698_4981' x1='20' y1='33.9062' x2='20' y2='30.7812' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232B526F'/%3E%3Cstop offset='1' stop-color='%23539DD5' stop-opacity='0.7'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_1698_4981' x1='20' y1='39.2188' x2='20' y2='36.0938' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%232B526F'/%3E%3Cstop offset='1' stop-color='%23539DD5' stop-opacity='0.7'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: -webkit-sticky;
	position: sticky;
	bottom: 20px;
	width: 40px;
	height: 40px;
	display: none;
	z-index: 100;
	opacity: .8;
}

.to-top:hover {
	opacity: 1;
}

/* Footer */
.footer {
	padding-left: 290px;
	padding-bottom: 14px;
}

.footer ul {
	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;
}

.footer ul li {
	background: none;
	border: none;
	border-radius: 0;
	display: block;
	min-height: 0;
	padding: 0;
}

.footer ul li::before {
	display: none;
}

.footer ul li+li {
	margin-top: 0;
}

.footer__menu {
	border-bottom: 1px solid #5C748A;
	padding-bottom: 32px;
	width: 100%;
}

.footer__menu ul {
	gap: 16px 37px;
}

.footer__menu ul li a {
	display: block;
	font-size: 14px;
	line-height: 16px;
	color: #2E99DC;
}

.footer__langs {
	gap: 22px;
	padding: 47px 0;
}

.footer__langs li {
	background: none;
	border: none;
	display: block;
	min-height: 0;
	padding: 0;
}

.footer__langs li+li {
	margin-top: 0;
}

.footer__langs li:before {
	display: none;
}

.footer__langs li a {
	background-color: #2B526F;
	border-radius: 6px;
	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__payments {
	gap: 20px 77px;
	border-top: 1px solid #5C748A;
	border-bottom: 1px solid #5C748A;
	margin-bottom: 32px;
	padding: 32px 0;
}

.footer__payments li img {
	display: block;
	max-height: 50px;
}

.footer__copyright {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}

.footer__copyright img {
	max-width: 186px;
}

.footer__copyright p {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	line-height: 22px;
	margin-top: 0;
}


/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
	text-align: center;
	margin-bottom: 16px;
}

.breadcrumbs>li {
	display: inline-block;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	border-radius: 0;
	min-height: 0;
	padding: 0px;
}

.breadcrumbs>li+li {
	margin: 0;
}

.breadcrumbs>li:before {
	display: none;
}

.breadcrumbs>li a {
	display: inline-block;
	color: #E3E8EB;
}

.breadcrumbs>li a:not([href]) {
	font-weight: 700;
}

.breadcrumbs>li:not(:last-child):after {
	content: '|';
	display: inline-block;
	position: relative;
	font: inherit;
	color: #E3E8EB;
	margin: 0px 10px;
}

.breadcrumbs>li a:not([href]),
.breadcrumbs>li a:not([href]) span {
	cursor: default;
}

/* BONUS PAGE */
/* Promotions */
.promotions__banner {
	padding: 20px;
}

.promotions-banner__desc {
	max-width: 808px;
	width: 69%;
}

.promotions-banner__img {
	bottom: 0;
	right: 0;
	max-width: 412px;
	width: 34%;
}

/* Welcome */
.welcome-banner__desc {
	max-width: 796px;
	width: 68%;
	z-index: 2;
}

.welcome__banner:nth-of-type(even) .welcome-banner__desc {
	margin-left: auto;
}

.welcome__banner:nth-of-type(1) .welcome-banner__img {
	bottom: 0;
	right: 2%;
	max-width: 358px;
	width: 29%;
}

.welcome__banner:nth-of-type(2) .welcome-banner__img {
	bottom: -38%;
	left: -9%;
	max-width: 513px;
	width: 42%;
}

.welcome__banner:nth-of-type(3) .welcome-banner__img {
	bottom: -30%;
	right: -2.8%;
	max-width: 474px;
	width: 39%;
}

/* Free Spins */
.freespins__banner {
	padding: 20px;
}

.freespins-banner__desc .list-row li:nth-child(n+4) {
	width: calc(50% - 6px);
}

/* Rewards */
.rewards__banner {
	padding: 20px;
}

.rewards-banner__desc {
	max-width: 808px;
	width: 69%;
}

.rewards-banner__img {
	bottom: 0;
	right: 3%;
	max-width: 336px;
	width: 28%;
}

.rewards__table {
	overflow: auto;
}

.table.rewards__table table {
	width: 1265px;
}

.rewards__table th:not(:last-child),
.rewards__table td:not(:last-child) {
	max-width: 125px;
}

.table::-webkit-scrollbar {
	height: 5px;
}

.table::-webkit-scrollbar-track {
	background: rgba(255, 247, 46, 0.05);
	border-radius: 5px;
}

.table::-webkit-scrollbar-thumb {
	background: #408FD4;
}

.rewards__table thead tr {
	padding-top: 8px;
	padding-bottom: 8px;
}

.rewards__table td:first-child {
	font-style: italic;
}

/* Limited */
.limited-banner__desc {
	max-width: 796px;
	width: 68%;
}

.limited__banner:last-of-type .limited-banner__desc {
	margin-left: auto;
}

.limited-banner__img {
	bottom: 0;
}

.limited__banner:first-of-type .limited-banner__img {
	right: 0;
	max-width: 412px;
	width: 34%;
}

.limited__banner:last-of-type .limited-banner__img {
	left: 0;
	max-width: 402px;
	width: 33%;
}

/* APP PAGE */
/* Prime */
.prime__buttons {
	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: 20px;
	margin-top: 20px;
}

/* Advantages */
.advantages-banner__background img {
	-o-object-position: 75%;
	object-position: 75%;
}

/* Device */
.device__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	max-width: none;
	width: 100%;
}

.device-list__item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.device-list__item+.device-list__item {
	margin-top: 0;
}

/* BETTING PAGE */
/* Symbols */
.symbols__table td:first-child {
	font-style: italic;
}

/* Features */
.features__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
	max-width: none;
	width: 100%;
}

.features-list__item {
	width: calc(33.3% - 10.6px);
}

.features-list__item+.features-list__item {
	margin-top: 0;
}

.features-first__desc {
	max-width: 796px;
	width: 68%;
}

.features-first__img {
	bottom: 0;
	right: 0;
	max-width: 392px;
	width: 32%;
}

.features-banner__img {
	max-width: 555px;
	width: 45%;
}

/* Pros Cons */
.proscons-pros__img {
	bottom: auto;
	top: -6%;
}