@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

body {
  overflow-x: hidden;
  min-height: 100vh;
  background: #121317;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: left;
}

p {
  width: 100%;
}

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

li {
  position: relative;
  padding-left: 21px;
}

ol > li {
  counter-increment: ol;
}

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

ul > li:before {
  content: '';
  width: 3px;
  height: 3px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #ffffff;
  top: 12px;
  left: 9px;
}

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

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

h1.title,
.title.general {
  font-size: 24px;
}

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

h2 {
  padding: 4px 10px;
  width: 100%;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  border-bottom: 1px solid #4ea522;
  background: #171f18;
  -webkit-box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
}

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

h4,
.title.mini {
  font-size: 16px;
}

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

.content > .article {
  padding: 0;
}

article > *,
.article > * {
  margin-bottom: 16px;
}

article > *:last-child,
.article > *:last-child {
  margin-bottom: 0;
}

article > img,
.article > img {
  width: 100%;
}

article p a,
.article p a,
article li a,
.article li a {
  color: inherit;
  text-decoration: underline;
}

/* Button */
.button {
  display: inline-block;
  position: relative;
  height: auto;
  width: auto;
  min-width: 160px;
  background: #4ea522;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 10px 15px 8px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  border: 2px solid #4ea522;
}

.button-contrast {
  background: #23272e;
  border-color: #23272e;
}

.button:hover {
  background: none;
  color: #4ea522;
}

.button-contrast:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.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 {
  margin: 0 !important;
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -10;
}

.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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
	position: relative;
}

.content,
.article,
article {
  padding: 32px 20px;
  line-height: 2;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #252a31;
  overflow: hidden;
}

.content > * {
  margin-bottom: 16px;
}
.content > *:last-child {
  margin-bottom: 0;
}

.content.content-transparent {
  background: transparent !important;
}

.dummy {
	margin: 0 !important;
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 1px;
	left: 0;
	top: -70px;
}

.desc {
  width: 100%;
}

.desc > * {
  margin-bottom: 16px;
}
.desc > *:last-child {
  margin-bottom: 0;
}

.desc > img {
  width: 100%;
}

.content .desc > img {
  display: block;
}

.cover {
  padding-left: -webkit-calc(50% - (1280px / 2));
  padding-left: calc(50% - (1280px / 2));
  padding-right: -webkit-calc(50% - (1280px / 2));
  padding-right: calc(50% - (1280px / 2));
}

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

.main__buttons {
  display: none;
}

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

.header > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

.header__logo img {
  height: 52px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

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

.header__menu {
  margin: 0 auto 0 57px;
}

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

.header__menu ul li {
  padding-left: 0;
}

.header__menu ul li:before {
  display: none;
}

.header__menu ul a {
  padding: 8px 10px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.header__menu ul a:hover {
  color: #4ea522;
}

.header-menu__button {
  padding-right: 13px;
  position: relative;
}
.header__menu ul a.header-menu__button {
	padding-right: 26px;
}

.header-menu__button:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 10px;
  height: 6px;
  background-image: url(../media/header-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

ul.header-menu__subtitle {
  background: #16181d;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 100%;
  width: 120%;
  min-width: 100px;
  padding: 20px 8px 10px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  display: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-menu__subtitle li + li {
  margin: 10px 0 0;
}

.header-menu__subtitle li a {
  padding: 4px 0;
}

.header__button {
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 6px;
}

.header__signup {
  font-weight: 400;
  min-width: 128px;
  margin-right: 10px;
}

.header__login {
  min-width: 110px;
  margin-right: 13px;
  padding-left: 19px;
  padding-right: 19px;
}

.header__lang {
  position: relative;
}

.header__lang-button {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 16px 5px 5px;
  position: relative;
}

.header__lang-button:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
  margin: auto;
  width: 10px;
  height: 6px;
  background-image: url(../media/header-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__lang-button.open:before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.header__lang-button.header__lang-link::before {
	display: none;
}

.header__lang-list {
  background: #16181d;
  position: absolute;
  z-index: 15;
  top: 100%;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  display: none;
}

.header__lang:hover .header__lang-list {
  display: block;
}

.header__lang-list li {
  padding: 0;
}

.header__lang-list li:before {
  display: none;
}

.header__lang-list li a {
  display: block;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
}

.header__lang-list li a:hover {
  color: #4ea522;
}

/* Main */
.main {
  padding-top: 52px;
}

.main > * {
  margin-bottom: 20px;
  width: 100%;
}

.main > *:last-child {
  margin-bottom: 0;
}

/* Prime */
.prime {
  padding: 60px;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 385px;
  background: none;
  color: #fff;
}

.prime__wrap {
  max-width: 550px;
  position: relative;
  z-index: 1;
}

.prime__wrap > *:not(:last-child) {
  margin-bottom: 16px;
}

.prime__title {
  text-shadow: 0 0 2px #000;
}

.prime__title > .contrast {
  margin-bottom: 4px;
  display: block;
  font-size: 133%;
  color: #4ea522;
}

/* Features */
/* Board */
.features__desc {
  margin-bottom: 16px;
}

.board {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-calc(100% + 10px * 2);
  width: calc(100% + 10px * 2);
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}

.board__item {
  margin: 60px 10px 0;
  padding: 30px 20px 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(100% / 3 - 20px);
  -ms-flex: 0 0 calc(100% / 3 - 20px);
  flex: 0 0 calc(100% / 3 - 20px);
  position: relative;
  background: #171f18;
  border: 2px solid #4ea522;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  -webkit-filter: drop-shadow(0 0 6.7px #4ea522) drop-shadow(0 0 2px #4ea522);
  filter: drop-shadow(0 0 6.7px #4ea522) drop-shadow(0 0 2px #4ea522);
}

.board__item::before {
  display: none;
}

.board__icon {
  position: absolute;
  left: 50%;
  top: -40px;
  width: 62px;
  height: 62px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.board__title {
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: #4ea522;
  text-align: center;
}

.board__desc {
  text-align: center;
  line-height: 1.5;
}

.board__desc > * {
  margin-bottom: 8px;
}
.board__desc > *:last-child {
  margin-bottom: 0;
}

/* Table */
.table {
  width: 100%;
  line-height: 1.5;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  overflow: hidden;
}

.table > * {
  display: block;
  width: 100%;
}

.table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #23272e;
}

.table tr:nth-child(even) {
  background: #4f535a;
}

.table thead {
  text-transform: uppercase;
}

.table thead tr {
  background: #161e18;
}

.table th,
.table td {
  padding: 10px 20px;
  text-align: center;
}

.table tr > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  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;
}

.table.table-four tr > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.table td:not(:first-child) {
  border-left: 2px solid rgba(22, 30, 24, 0.5);
}

.table td a {
  font: inherit;
  color: inherit;
}

.table td a:hover {
  opacity: 0.5;
}

.table td > img {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

/* Banner */
.banner {
  padding: 9.5% 4.5%;
}

.banner__wrap {
  margin: auto auto auto 0;
  max-width: 400px;
  text-align: center;
}

.banner__title {
  padding: 0;
  font-size: 28px;
  line-height: 2;
  text-align: center;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.banner__title .small {
  display: block;
  font-size: 15px;
}

/* Registration */
.registration {
  position: relative;
  overflow: hidden;
}

.registration__desc {
  width: -webkit-calc(100% - 375px - 40px);
  width: calc(100% - 375px - 40px);
}

.registration__image {
  margin: 0 !important;
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 375px;
  max-height: -webkit-calc(100% - 86px);
  max-height: calc(100% - 86px);
  -webkit-filter: drop-shadow(0 0 23px #65b240) drop-shadow(0 0 15px #65b240);
  filter: drop-shadow(0 0 23px #65b240) drop-shadow(0 0 15px #65b240);
  z-index: -1;
}

/* Bonuses */
.bonuses__list {
  list-style: none;
}

.bonuses__list li {
  padding: 0 !important;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  min-height: 297px;
  -webkit-box-shadow: 0 0 7px #4ea522, 0 0 4px #4ea522, 0 0 2.5px #4ea522,
    0 0 1.1px #4ea522, 0 0 0.5px #4ea522;
  box-shadow: 0 0 7px #4ea522, 0 0 4px #4ea522, 0 0 2.5px #4ea522,
    0 0 1.1px #4ea522, 0 0 0.5px #4ea522;
  border: 1px solid #4ea522;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  overflow: hidden;
}

.bonuses__list li:last-child {
  margin-bottom: 0;
}

.bonuses__list li::before {
  display: none;
}

.bonuses-list__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 250px;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
}

.bonuses-list__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.bonuses-list__text {
  padding: 40px 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(100% - 250px);
  -ms-flex: 0 0 calc(100% - 250px);
  flex: 0 0 calc(100% - 250px);
  background-image: url(../media/bonuses/bonus-item-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bonuses-list__text > * {
  margin-bottom: 16px;
}
.bonuses-list__text > *:last-child {
  margin-bottom: 0;
}

.bonuses-list__title {
  font-size: 24px;
  font-weight: 600;
  color: #4ea522;
}

/* Casino */
.casino__wrap {
  margin-top: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.casino-wrap__item {
  margin: 20px 0 0;
  padding: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 20px) / 2);
  -ms-flex: 0 0 calc((100% - 20px) / 2);
  flex: 0 0 calc((100% - 20px) / 2);
  background: #171f18;
  border: 2px solid #4ea522;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
}

.casino-wrap__item > * {
  margin-bottom: 8px;
}

.casino-wrap__item > *:last-child {
  margin-bottom: 0;
}

.casino-wrap__title {
  display: block;
  font-family: 'Baloo Bhai 2', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  color: #4ea522;
  text-align: center;
}

/* VIP */
.vip {
  position: relative;
}

.vip__image {
  margin: 0 !important;
  position: absolute;
  right: 6.25%;
  bottom: 0;
  max-height: -webkit-calc(100% - 93px);
  max-height: calc(100% - 93px);
  -webkit-filter: drop-shadow(0 0 23px #65b240) drop-shadow(0 0 15px #65b240);
  filter: drop-shadow(0 0 23px #65b240) drop-shadow(0 0 15px #65b240);
}

.vip__image img {
  display: block;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.vip__desc {
  padding: 10px 16px;
  max-width: 73%;
  background: #171f18;
  border: 2px solid #4ea522;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
}

/* Slots */

/* Games */
.games__board {
  margin-bottom: 80px;
}

.games-board__item.games-board__item-transparent {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  -webkit-filter: none !important;
  filter: none !important;
  border: none;
  background: rgba(78, 165, 34, 0.16);
}

.games-board__item.games-board__item-transparent img {
  display: block;
  width: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Casino games */
.casino-games__list {
  list-style: none;
}

.casino-games__list li {
  margin-bottom: 16px;
  padding: 0;
}

.casino-games__list li:last-child {
  margin-bottom: 0;
}

.casino-games__list li::before {
  display: none;
}

.casino-games__list li > * {
  margin-bottom: 8px;
}
.casino-games__list li > *:last-child {
  margin-bottom: 0;
}

.casino-games-list__title {
  padding: 8px 0 8px 28px;
  display: block;
  width: 100%;
  position: relative;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #4ea522;
  border-bottom: 2px solid #4ea522;
}

.casino-games-list__title::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  bottom: 6px;
  background-image: url(../media/icons/green-star.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
}

.app {
  padding: 24px 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  background-size: cover;
  position: relative;
  min-height: 200px;
}
.app__background img {
  -o-object-position: center;
  object-position: center;
}
.app__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 314px;
  -ms-flex: 0 0 314px;
  flex: 0 0 314px;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.app__stores {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  position: absolute;
  left: 105px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 100;
}

.app__stores a {
  padding: 14px 30px;
  margin: 8px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px; */
	width: 240px;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  border: 2px solid #4da533;
  background: rgba(11, 14, 23, 0.5);
}

.app__stores a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}

.app__stores a img {
  margin-right: 16px;
  display: block;
  max-width: 32px;
  max-height: 32px;
}

/* Assessment */
.assessment__list {
  margin: -10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-calc(100% + 20px);
  width: calc(100% + 20px);
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  list-style: none;
}

.assessment__list li {
  margin: 10px;
  padding: 20px;
  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;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(100% / 3 - 20px);
  -ms-flex: 0 0 calc(100% / 3 - 20px);
  flex: 0 0 calc(100% / 3 - 20px);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  background: #171f18;
  border: 2px solid #4ea522;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
}

.assessment__list li::before {
  display: none;
}

.assessment__list li > * {
  margin-right: 20px;
}
.assessment__list li > *:last-child {
  margin-right: 0;
}

.assessment-list__icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32px;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  height: 32px;
}

.assessment-list__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.assessment-list__rating {
  font-size: 24px;
}

/* Support */
.support__list {
  list-style: none;
}

.support__list li {
  padding: 0;
}

/* F.A.Q. */
.faq__list li {
  padding: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 8px;
          border-radius: 8px;
  overflow: hidden;
}

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

.faq__list li:before {
  display: none;
}

.faq-item__title {
  margin: 0;
  padding: 16px 64px 16px 20px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  position: relative;
  background-color: #161e18;
}

.faq-item__title:before {
  content: '';
  display: block;
  position: absolute;
  top: -webkit-calc(50% - 24px / 2);
  top: calc(50% - 24px / 2);
  right: 20px;
  width: 24px;
  height: 24px;
  background-image: url(../media/icons/faq-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.faq-item__desc {
  border-top: 1px solid #4ea522;
  padding: 16px 12px 15px;
  background-color: #314f2d;
}

.faq-item__desc p:first-child {
  margin-top: 0;
}

.faq__item.active .faq-item__title:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* review */
.review__list {
  margin-top: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.review__list li {
  margin-top: 20px;
  padding: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 20px) / 2);
  -ms-flex: 0 0 calc((100% - 20px) / 2);
  flex: 0 0 calc((100% - 20px) / 2);
  background: #171f18;
  border: 2px solid #4ea522;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
  box-shadow: 0px 0px 0.159px 0px #4ea522, 0px 0px 0.318px 0px #4ea522,
    0px 0px 1.114px 0px #4ea522, 0px 0px 2.228px 0px #4ea522,
    0px 0px 3.819px 0px #4ea522, 0px 0px 6.683px 0px #4ea522;
}

.review__list li::before {
  display: none;
}

.review__list li > * {
  margin-bottom: 8px;
}
.review__list li > *:last-child {
  margin-bottom: 0;
}

.review__list .item__top {
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.item__image {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60px;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  height: 60px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  overflow: hidden;
}

.item__info > * {
  display: block;
}

.item__name {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #4ea522;
}

.item__stars {
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.item__stars img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.item__stars img + img {
  margin-left: 4px;
}

/* Footer */
.footer {
  padding-top: 32px;
  padding-bottom: 32px;
  color: #bebfc1;
}

.footer__popular {
  background: #16181d;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  display: block;
  width: 100%;
}

.footer-popular__title {
  padding: 12px 44px 12px 20px;
  margin: 0;
	display: block;
  position: relative;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
	cursor: pointer;
}
.footer-popular__title:hover {
	color: #4ea522;
}

.footer-popular__title::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  width: 10px;
  height: 6px;
  background-image: url(../media/header-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
	-webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.active .footer-popular__title::after {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.footer-popular__desc {
  padding: 12px 20px;
}

.footer__desc > *:not(:last-child),
.footer__bottom > *:not(:last-child) {
  margin-right: 10px;
}

.footer__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 10px;
  width: 100%;
}

.footer__desc-item {
  background: #16181d;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.footer__desc-text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 59%;
  -ms-flex: 0 0 59%;
  flex: 0 0 59%;
  font-size: 12px;
  line-height: 1.5;
  padding: 20px;
}
m .footer__desc-text p {
  max-width: 623px;
}

.footer__desc-text p:first-child {
  margin-top: 0;
}

.footer__desc-payment {
  padding: 20px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.footer__desc-payment img {
  max-height: 60px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.footer__bottom-copy {
  background: #16181d;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 59%;
  -ms-flex: 0 0 59%;
  flex: 0 0 59%;
  font-size: 12px;
  padding: 22px 20px;
}

.footer__bottom-copy p {
  margin-top: 0;
}

.footer__bottom-copy p a {
  color: inherit;
  text-decoration: underline;
}

.footer__bottom-right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(41% - 10px);
  -ms-flex: 0 0 calc(41% - 10px);
  flex: 0 0 calc(41% - 10px);
}

.footer__bottom-age {
  background: #16181d;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  margin-bottom: 9px;
  margin-top: 0;
}

.footer__bottom-mobile {
  display: block;
  background: #23272e;
  width: 100%;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 6px 5px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.to-top {
  background-color: #4ea522;
  background-image: url(../media/header-arrow.svg);
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: none;
}