@charset "utf-8";

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Title */
h1,
h2,
h3,
h4 {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  color: #fff72e;
  text-align: center;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-size: 34px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 0;
}

h2,
.title.high {
  font-size: 32px;
  padding: 0 72px;
  width: auto;
}

h2:before {
  left: 0;
  background: url('../images/icon-heading-decor.svg');
}

h2:after {
  right: 0;
  background: url('../images/icon-heading-decor.svg');
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

h2:before,
h2:after {
  content: '';
  position: absolute;
  top: 11px;
  width: 64px;
  height: 18px;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

h3,
.title.middle {
  font-size: 24px;
  line-height: 1.5;
}

h4,
.title.mini {
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: left;
}

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

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

article > span + h2,
.article > span + h2 {
  margin-top: 0px;
}

article li,
.article li {
  position: relative;
  padding: 6px 0 0 22px;
}

article ol > li,
.article ol > li {
  counter-increment: ol;
}

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

article ol > li:before,
.article ol > li:before {
  color: #fff72e;
  font-weight: 900;
  top: 6px;
}

article ul > li:before,
.article ul > li:before {
  content: '';
  top: 11px;
  width: 14px;
  height: 14px;
  background: url('../images/icon-list-divider.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
}

article p a,
.article p a,
article p li,
.article p li {
  color: #fff72e;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

article p a:hover,
.article p a:hover {
  text-shadow: 0 0.3px #fff72e, 0.3px 0 #fff72e;
}

/* Button */
.button {
  background-color: #4cb63a;
  border: 1px solid #4cb63a;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 170px;
  position: relative;
  padding: 10.5px 15px;
}

.button:hover {
  background: #130404;
  border: 1px solid #fff72e;
  color: #fff72e;
}

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

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  border: 1px solid #fff72e;
  background: #130404;
  color: #fff72e;
}
.button.inverse:hover {
  background-color: #4cb63a;
  border: 1px solid #4cb63a;
  color: #fff;
}

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

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

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

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

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

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

use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-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: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  background: #2d0d0d;
  max-width: 1163px;
  margin-top: 20px;
  padding: 20px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.content .scroll {
  position: absolute;
  width: 0;
  height: 0;
  top: -70px;
  left: 0;
}

.dark {
  background: transparent;
}

.content .wrapper {
  border: 1px solid #fff72e;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 16px 24px;
  background: -webkit-gradient(linear, right top, left top, from(#2d0d0d), to(#130404));
  background: -webkit-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -moz-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -o-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: linear-gradient(270deg, #2d0d0d 0%, #130404 100%);
}

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

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

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: #130404;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  min-height: 68px;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

.header__logo img {
  max-width: 102px;
}

.logo[href]:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

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

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

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

.header__menu ul li + li {
  padding-left: 50px;
  position: relative;
}

.header__menu ul li + li:before {
  content: '';
  background: url('../images/header-divider.webp');
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  width: 30px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
}

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

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

.header__button {
  margin-top: 0;
  min-width: 115px;
}

.header__login {
  margin-left: auto;
}

.header__signup {
  min-width: 145px;
  margin-left: 20px;
}

.header__lang {
  margin-left: 20px;
  -webkit-border-radius: 600px;
  -moz-border-radius: 600px;
  border-radius: 600px;
  overflow: hidden;
}

.header__lang img {
  display: block;
  max-width: 24px;
}

/* Main */
.main {
  position: relative;
  padding: 68px 20px 0 257px;
}

/* Sidebar */
.sidebar {
  font-size: 14px;
  width: 237px;
  position: fixed;
  top: 68px;
  left: 0px;
  height: -webkit-calc(100vh - 68px);
  height: -moz-calc(100vh - 68px);
  height: calc(100vh - 68px);
  padding-bottom: 20px;
  overflow: auto;
  z-index: 10;
}

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

.sidebar__wrap {
  background: #2d0d0d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.sidebar__item {
  position: relative;
  background-color: #2d0d0d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.sidebar__item li a:hover {
  background: -o-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -webkit-gradient(linear, right top, left top, from(#2d0d0d), to(#130404));
  background: -webkit-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -moz-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: linear-gradient(270deg, #2d0d0d 0%, #130404 100%);
}

.sidebar__menu {
  padding: 13px 0 0 0;
  margin-bottom: 32px;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  color: #fff;
  line-height: 1.71;
  padding: 12px 16px;
}

.sidebar__menu li a img {
  margin-right: 16px;
  max-width: 24px;
  max-height: 24px;
}

.sidebar__menu:after {
  content: '';
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
}

.sidebar__links {
  padding: 16px 0;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 0 45px 0 16px;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-arrow-up-sidebar.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 16px;
  width: 24px;
  height: 24px;
}

.sidebar__links-button:hover {
  color: #fff72e;
}

.sidebar__links-button:hover:before {
  background: url('../images/icon-arrow-up-sidebar-hover.svg');
}

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

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

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

.sidebar__links-list a {
  display: block;
  color: #fff;
  line-height: 1.286;
  padding: 8px 16px;
  position: relative;
}

/* Prime */
.prime {
  min-height: 447px;
  background: -webkit-linear-gradient(181deg, rgba(45, 13, 13, 0) 35.12%, #130404 71.09%);
  background: -moz-linear-gradient(181deg, rgba(45, 13, 13, 0) 35.12%, #130404 71.09%);
  background: -o-linear-gradient(181deg, rgba(45, 13, 13, 0) 35.12%, #130404 71.09%);
  background: linear-gradient(269deg, rgba(45, 13, 13, 0) 35.12%, #130404 71.09%);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-border-radius: 0 0 0 8px;
  -moz-border-radius: 0 0 0 8px;
  border-radius: 0 0 0 8px;
  border: none;
  padding: 20px;
  margin: 0 -20px 0 0;
  width: -webkit-calc(100% + 20px);
  width: -moz-calc(100% + 20px);
  width: calc(100% + 20px);
  max-width: -webkit-calc(100% + 20px);
  max-width: -moz-calc(100% + 20px);
  max-width: calc(100% + 20px);
}

.prime__wrap {
  max-width: 487px;
  text-align: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.pages .prime__wrap {
  max-width: 696px;
}

.prime__rating {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.prime__rating-value {
  margin-left: 18px;
}

.prime__button {
  margin-top: 24px;
}

/* Info */
.table {
  width: 100%;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.table table {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: -webkit-gradient(linear, right top, left top, from(#2d0d0d), to(#130404));
  background: -webkit-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -moz-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -o-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: linear-gradient(270deg, #2d0d0d 0%, #130404 100%);
}

.table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 247, 46, 0.6);
  border-right: 1px solid rgba(255, 247, 46, 0.6);
}

.table tr:first-child {
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  border-radius: 12px 12px 0 0;
  border-top: 1px solid rgba(255, 247, 46, 0.6);
}

.table tr:last-child {
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid rgba(255, 247, 46, 0.6);
}

.table tr td {
  padding: 10px 20px;
  width: 50%;
  text-align: center;
}

.info__table tr + tr,
.comparison__table tr + tr {
  border-top: 1px solid rgba(255, 247, 46, 0.6);
}

.info__table tr td:first-child,
.comparison__table tr td:first-child {
  border-right: 1px solid rgba(255, 247, 46, 0.6);
}

.comparison__table tr:first-child td {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff72e;
  min-width: 50%;
}

.comparison__table tr td img {
  margin-right: 10px;
  max-width: 24px;
}

/* Apps */
.apps__wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  margin-top: 343px;
}

.apps__wrap > * {
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  max-width: 488px;
}

.apps__wrap > *:last-child {
  margin: 156px 0 46px 20px;
}

/* VIP */
.vip__wrap {
  max-width: 679px;
  margin-right: auto;
}

/* Data */
.data {
  width: 100%;
}

.data table {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33.22%, #2d0d0d), to(#130404));
  background: -webkit-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: -moz-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: -o-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: linear-gradient(360deg, #2d0d0d 33.22%, #130404 100%);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.data tr {
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  text-align: center;
  word-break: break-word;
}

.data tr td,
.data tr th {
  padding: 10px 8px;
}

.data thead tr {
  color: #fff72e;
  text-transform: uppercase;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  border-radius: 12px 12px 0 0;
  border-top: 1px solid #fff72e;
  border-left: 1px solid #fff72e;
  border-right: 1px solid #fff72e;
}

.data tbody tr {
  border-left: 1px solid #fff72e;
  border-right: 1px solid #fff72e;
}

.data tbody tr:last-child {
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid #fff72e;
}

.data tr td + td,
.data tr th + th {
  border-left: 1px solid #fff72e;
}

/* data__games */
.data__games tr td,
.data__games tr th {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 20%;
  -moz-box-flex: 0;
  flex: 0 1 20%;
}

/* data__ayments */
.data__payments tr td,
.data__payments tr th {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 15%;
  -moz-box-flex: 0;
  flex: 0 1 15%;
}

/* Games__wrap */
.games__wrap {
  width: 100%;
}

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

.games__wrap ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -8px;
}

.games__wrap ul li {
  position: relative;
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33.22%, #2d0d0d), to(#130404));
  background: -webkit-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: -moz-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: -o-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: linear-gradient(360deg, #2d0d0d 33.22%, #130404 100%);
  padding: 32px 24px 16px 24px;
  width: -webkit-calc((100% - 64px) / 4);
  width: -moz-calc((100% - 64px) / 4);
  width: calc((100% - 64px) / 4);
  margin: 32px 8px 8px 8px;
}

.games__wrap ul li img {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 48px;
}

.games__wrap ul li p {
  margin-top: 8px;
}

/* FAQ */
.faq__list li {
  position: relative;
  border: 1px solid #fff72e;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

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

.faq-item__title {
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  padding: 13px 44px 13px 20px;
  -webkit-box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, right top, left top, from(#2d0d0d), to(#130404));
  background: -webkit-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -moz-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -o-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: linear-gradient(270deg, #2d0d0d 0%, #130404 100%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:after {
  content: '';
  background: url('../images/icon-faq.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:hover {
  color: #fff;
}

.faq-item__title:hover:after {
  background: url('../images/icon-faq-hover.svg');
}

.faq-item__desc {
  position: relative;
  padding: 16px 20px;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotateX(180deg);
}

/* Reviews */
.reviews ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px -8px -8px -8px;
}

.reviews .wrapper {
  padding: 26px 20px;
}

.reviews ul li {
  position: relative;
  width: -webkit-calc((100% - 16px - 16px) / 2);
  width: -moz-calc((100% - 16px - 16px) / 2);
  width: calc((100% - 16px - 16px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  margin: 8px;
}

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

.reviews__image {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60px;
  -moz-box-flex: 0;
  flex: 0 0 60px;
  margin-right: 20px;
}

.reviews__image img {
  max-width: 60px;
}

.reviews__user {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 60px - 20px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 60px - 20px);
  margin-top: 7px;
}

.reviews .reviews__title {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #ffd400;
}

.reviews__stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-top: 6px;
}

.reviews__stars img {
  max-width: 18px;
}

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

.reviews__text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -moz-box-flex: 0;
  flex: 0 1 100%;
  margin-top: 8px;
  margin-bottom: auto;
}

/* Casino */
.content.casino__content {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.casino__right {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-top: 0;
}

.casino__content ul li {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: -50px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.main .main__arrowtop {
  height: 85%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
  width: 38px;
  height: 38px;
}

.main__arrowtop a img {
  max-width: 38px;
}

.main__arrowtop a:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  margin-top: 20px;
  padding: 66px 20px 26px 257px;
}

.footer:before {
  content: '';
  position: absolute;
  left: 257px;
  right: 20px;
  top: 0;
  height: 40px;
  background: url('../images/footer-decor.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.footer__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -2px 0;
}

.footer__menu li {
  padding: 0 16px;
  margin: 2px 0;
}

.footer__menu li + li {
  border-left: 1px solid #fff72e;
}

.footer__menu li a {
  font-size: 16px;
  color: #d8d3d3;
  text-transform: uppercase;
}

.footer__menu li a:hover {
  color: #fff72e;
}

.footer__counties {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 24px -8px -8px -8px;
}

.footer__counties li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 11px 24px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33.22%, #2d0d0d), to(#130404));
  background: -webkit-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: -moz-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: -o-linear-gradient(bottom, #2d0d0d 33.22%, #130404 100%);
  background: linear-gradient(360deg, #2d0d0d 33.22%, #130404 100%);
  margin: 8px;
}

.footer__counties li a {
  text-transform: uppercase;
  color: #fff;
}

.footer__counties li a:hover {
  color: #ffd400;
}

.footer__counties li a img {
  display: block;
  max-width: 24px;
  margin-right: 8px;
}

.footer__payment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: 32px 0;
}

.footer__payment li {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin-top: -3.5px;
  margin-bottom: -3.5px;
}

.footer__payment li img {
  max-width: 120px;
  display: block;
  margin: auto;
}

.footer__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  max-width: 1075px;
  padding-top: 26px;
  position: relative;
  width: 100%;
}

.footer__text:before {
  content: '';
  background: -o-linear-gradient(left, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  background: -webkit-gradient(linear, left top, right top, color-stop(1.44%, rgba(255, 247, 46, 0)), color-stop(50.08%, #fff72e), color-stop(98.72%, rgba(255, 247, 46, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  background: -moz-linear-gradient(left, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  background: linear-gradient(90deg, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
}

.footer__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
  color: #d8d3d3;
  padding-right: 20px;
}

.footer__age {
  background: #fe5151;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 2.9;
  width: 40px;
  height: 40px;
}

/* PAGES */
.pages .prime {
  background: #130404;
}

.article p span {
  color: #fff72e;
}

/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  margin-bottom: 16px;
  width: auto;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.breadcrumbs > li:not(:last-child) a {
  font-weight: 500;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-shadow: 0 0.4px #fff, 0.4px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 700;
}

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

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

/* BONUS PAGE */
.bonuses__content > ul > li {
  background: -webkit-gradient(linear, right top, left top, from(#2d0d0d), to(#130404));
  background: -webkit-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -moz-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -o-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: linear-gradient(270deg, #2d0d0d 0%, #130404 100%);
  border: 1px solid #fff72e;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 20px;
}

.bonuses__content > ul > li::before {
  display: none;
}

.bonuses__content > ul > li:nth-child(2n) .bonuses__bottom {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  flex-direction: row-reverse;
}

.bonuses__content > ul > li:nth-child(2n) .bonuses__image {
  margin: 0 0 0 20px;
}

.bonuses__content > ul > li + li {
  margin-top: 16px;
}

.bonuses__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-top: 16px;
}

.bonuses__image {
  border: 1px solid #fff72e;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 193px;
  -moz-box-flex: 0;
  flex: 0 0 193px;
  margin-right: 20px;
}

.bonuses__image img {
  max-width: 193px;
}

.bonuses__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 193px - 20px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 193px - 20px);
}

.bonuses__info ul {
  margin-top: 10px;
}

.bonus .casino__content {
  min-height: 373px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.bonus .casino__content .wrapper {
  max-width: 645px;
  margin-top: 28px;
}

/* Cashback */
.cashback__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 268px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.cashback__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.cashback__wrapper p {
  position: relative;
}

/* Spil */
.content.spil__content {
  min-height: 544px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  justify-content: flex-end;
}

.spil__content .wrapper {
  max-width: 557px;
}

/* APP PAGE */
/* Mobile */
.mobile__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.mobile__wrap > * {
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}

.mobile__wrap > *:last-child {
  margin-left: 20px;
}

.mobile__wrap ol {
  margin-top: 10px;
}

.mobile__image {
  display: block;
  margin-bottom: 16px;
}

.mobile__image:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.mobile__image img {
  max-width: 44px;
}

/* Models */
.content.models__content {
  min-height: 414px;
}

.models__content .wrapper {
  max-width: 664px;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  margin-left: 100px;
}

.models__content li a {
  color: #fff72e;
  font-weight: 600;
}

.models__content li a:hover {
  text-shadow: 0 0.3px #fff72e, 0.3px 0 #fff72e;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
