@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --font-family: 'Lato', sans-serif;
  --body-bg: #1c0029;

  --text-color: #2b255c;
  --title-color: #2b255c;
  --title-secondary-color: #ffea00;

  --content-bg: #fff;
  --content-dark-bg: #0d0112;
  --header-bg: #1c0029;
  --table-bg: #2b255c;
  --table-text-color: #fff;
  --table-heading-bg: #1e4240;
  --table-heading-text-color: #fff;
  --table-row-border: 1px solid rgba(255, 255, 255, 0.2);
  --frame-bg: #2b255c;
  --frame-bg-dark: #00240f;
  --faq-item-bg: #2b255c;
  --countries-bg: #2b255c;
  --countries-border: 1px solid rgba(255, 255, 255, 0.3);

  --list-pseudo: #fff;
  --list-pseudo-dark: #403769;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--body-bg);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  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: 800;
  line-height: 1.25;
  color: var(--title-color);
  text-align: left;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--title-secondary-color);
  margin-bottom: 0;
}

h2,
.title.high {
  font-style: italic;
  font-size: 24px;
  text-transform: uppercase;
}

h3,
.title.middle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
}

h4,
.title.mini {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 16px;
}

article li,
.article li {
  position: relative;
  padding-left: 24px;
}

article li + li,
.article li + li {
  margin-top: 8px;
}

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;
  top: 0;
  left: 8px;
}

article ul > li:before,
.article ul > li:before {
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #ffea00;
  top: 8px;
  left: 4px;
  margin: auto;
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a {
  color: #403769;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

article p a:hover,
.article p a:hover {
  color: #c13cff;
  text-shadow:
    0 0.4px #c13cff,
    0.4px 0 #c13cff;
}

article > .button,
.article > .button {
  margin-right: auto;
}

/* Button */
.button {
  position: relative;
  white-space: nowrap;
  display: inline-block;
  background-image: url('../images/button-bg.webp');
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  height: auto;
  width: auto;
  min-width: 306px;
  min-height: 89px;
  padding: 36px 36px 24px 36px;
  margin: 0px -15px -5px -15px;
}

.button:hover {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 12px;
}

.button span {
  text-align: left;
}

/* Special */
.image img,
.background img {
  display: block;
  position: relative;
  margin: auto;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}

.js-expand-content.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgba(255, 255, 255, 1);
  line-height: 1;
}

use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -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 {
  margin-top: 20px;
  padding: 20px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  background: var(--content-bg);
}

.content-dark {
  background: var(--content-dark-bg);
  color: #fff;
}

.content-dark h2,
.content-dark h3,
.content-dark h4,
.content-dark .list li {
  color: #fff;
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.content .scroll {
  position: absolute;
  width: 0;
  height: 0;
  top: -74px;
  left: 0;
}

.scroll + h2,
.content .background + h2,
.content .background + *,
.scroll + .double {
  margin-top: 0;
}

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: var(--header-bg);
  -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;
  margin-top: 0;
  min-height: 80px;
  overflow: visible;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo {
  display: inline-block;
}

.header__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 129px;
  -moz-box-flex: 0;
  flex: 0 1 129px;
  min-width: 0;
}

.logo img {
  display: block;
}

.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 50px;
}

.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;
  gap: 57px;
  background: #2b255c;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 12px 20px;
  min-height: 50px;
}

.header__menu ul a {
  padding: 15px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.header__menu ul a:hover {
  color: #ffea00;
}

.header__button {
  padding: 11px 24px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  min-height: 50px;
  min-width: 92px;
  font-size: 16px;
  line-height: 1.5;
  background-image: none;
  margin: 0;
}

.header__login {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow:
    inset 0 0 9px 0 rgba(255, 255, 255, 0.2),
    inset 0 -3px 1px 0 rgba(255, 255, 255, 0.1);
  -moz-box-shadow:
    inset 0 0 9px 0 rgba(255, 255, 255, 0.2),
    inset 0 -3px 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 9px 0 rgba(255, 255, 255, 0.2),
    inset 0 -3px 1px 0 rgba(255, 255, 255, 0.1);
  background: -webkit-radial-gradient(41.88% 100%, 201% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 76.44%, rgba(255, 255, 255, 0.4) 100%);
  background: -moz-radial-gradient(41.88% 100%, 201% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 76.44%, rgba(255, 255, 255, 0.4) 100%);
  background: -o-radial-gradient(41.88% 100%, 201% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 76.44%, rgba(255, 255, 255, 0.4) 100%);
  background: radial-gradient(201% 100% at 41.88% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 76.44%, rgba(255, 255, 255, 0.4) 100%);
}

.header__signup {
  -webkit-box-shadow:
    0 2px 16px 0 rgba(255, 111, 0, 0.4),
    inset 0 0 9px 0 #ee9505,
    inset 0 -3px 0 0 #ca5100;
  -moz-box-shadow:
    0 2px 16px 0 rgba(255, 111, 0, 0.4),
    inset 0 0 9px 0 #ee9505,
    inset 0 -3px 0 0 #ca5100;
  box-shadow:
    0 2px 16px 0 rgba(255, 111, 0, 0.4),
    inset 0 0 9px 0 #ee9505,
    inset 0 -3px 0 0 #ca5100;
  background: -webkit-radial-gradient(41.88% 100%, 201% 100%, #d03e04 0%, #ffb700 76.44%, #ffea00 100%);
  background: -moz-radial-gradient(41.88% 100%, 201% 100%, #d03e04 0%, #ffb700 76.44%, #ffea00 100%);
  background: -o-radial-gradient(41.88% 100%, 201% 100%, #d03e04 0%, #ffb700 76.44%, #ffea00 100%);
  background: radial-gradient(201% 100% at 41.88% 100%, #d03e04 0%, #ffb700 76.44%, #ffea00 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  margin-left: 22px;
}

/* Languages */
.header__language {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  flex: none;
  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;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  margin-left: 22px;
}

.header__language img {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 0;
  margin-right: 8px;
}

/* Main */
.main {
  position: relative;
  padding: 80px 20px 0 20px;
}

.main__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.main__content {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 -webkit-calc(100% - 278px - 10px);
  -moz-box-flex: 1;
  flex: 1 1 calc(100% - 278px - 10px);
  margin-left: 278px;
}

.sidebar__links-main {
  display: none;
}

/* Sidebar */
.sidebar {
  width: 278px;
  position: fixed;
  top: 80px;
  left: 10px;
  height: -webkit-calc(100vh - 80px);
  height: -moz-calc(100vh - 80px);
  height: calc(100vh - 80px);
  padding-bottom: 20px;
  overflow-y: auto;
  z-index: 10;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__wrap {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  -webkit-box-shadow:
    0 8px 10px 0 rgba(176, 29, 193, 0.12),
    inset 0 -4px 0 1px rgba(61, 31, 134, 0.1),
    inset 0 4px 20px 1px rgba(176, 29, 193, 0.12);
  -moz-box-shadow:
    0 8px 10px 0 rgba(176, 29, 193, 0.12),
    inset 0 -4px 0 1px rgba(61, 31, 134, 0.1),
    inset 0 4px 20px 1px rgba(176, 29, 193, 0.12);
  box-shadow:
    0 8px 10px 0 rgba(176, 29, 193, 0.12),
    inset 0 -4px 0 1px rgba(61, 31, 134, 0.1),
    inset 0 4px 20px 1px rgba(176, 29, 193, 0.12);
  background: #2b255c;
  margin: 10px;
}

.sidebar__button {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  min-height: 48px;
  min-width: 234px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 12px 16px 12px 55px;
  margin: 0;
  background-image: none;
}

.sidebar__button img {
  position: absolute;
  max-width: 58px;
  left: 0;
  bottom: 0;
  margin-right: 0;
}

.sidebar__button-wheel {
  background:
    url('../images/sidebar-btn1-bg.webp') no-repeat center center / cover,
    -webkit-linear-gradient(16deg, #6802a4 24.6%, #ca17e8 100%);
  background:
    url('../images/sidebar-btn1-bg.webp') no-repeat center center / cover,
    -moz-linear-gradient(16deg, #6802a4 24.6%, #ca17e8 100%);
  background:
    url('../images/sidebar-btn1-bg.webp') no-repeat center center / cover,
    -o-linear-gradient(16deg, #6802a4 24.6%, #ca17e8 100%);
  background:
    url('../images/sidebar-btn1-bg.webp') no-repeat center center / cover,
    linear-gradient(74deg, #6802a4 24.6%, #ca17e8 100%);
}

.sidebar__button-prize {
  background:
    url('../images/sidebar-btn2-bg.webp') no-repeat center center / cover,
    -webkit-linear-gradient(16deg, #3d0098 24.6%, #9210f2 100%);
  background:
    url('../images/sidebar-btn2-bg.webp') no-repeat center center / cover,
    -moz-linear-gradient(16deg, #3d0098 24.6%, #9210f2 100%);
  background:
    url('../images/sidebar-btn2-bg.webp') no-repeat center center / cover,
    -o-linear-gradient(16deg, #3d0098 24.6%, #9210f2 100%);
  background:
    url('../images/sidebar-btn2-bg.webp') no-repeat center center / cover,
    linear-gradient(74deg, #3d0098 24.6%, #9210f2 100%);
  margin-top: 7px;
}

.sidebar__menu:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
  margin: 16px 0;
}

.sidebar__menu ul {
  margin-top: 12px;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li + li {
  margin-top: 6px;
}

.sidebar__menu li:nth-child(2)::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
  margin-top: 6px;
}

.sidebar__menu li a {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.214;
  color: #fbf3ff;
  padding: 13px 30px 13px 40px;
}

.sidebar__menu li a:hover {
  color: #c13cff;
}

.sidebar__menu li a img {
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 24px;
}

.sidebar__menu li a::after {
  content: '';
  background: url('../images/icon-arrow-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: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  width: 12px;
  height: 12px;
}

.sidebar__language {
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #5f2d72;
  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;
  gap: 15px;
  padding: 12px 36px 12px 12px;
  font-weight: 700;
  font-size: 14px;
  color: #fbf3ff;
  line-height: 1.21;
  margin-top: 12px;
}

.sidebar__language::after {
  content: '';
  background: url('../images/icon-arrow-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: 50%;
  -webkit-transform: translateY(-50%) rotate(270deg);
  -moz-transform: translateY(-50%) rotate(270deg);
  -o-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg);
  right: 12px;
  width: 12px;
  height: 12px;
}

.sidebar__language:hover {
  -webkit-box-shadow: 0 0 10px 0 rgba(95, 45, 114, 1);
  -moz-box-shadow: 0 0 10px 0 rgba(95, 45, 114, 1);
  box-shadow: 0 0 10px 0 rgba(95, 45, 114, 1);
}

.sidebar__language img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__button {
  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-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;
  color: #fff;
  width: 100%;
  min-height: 105px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px 92px 10px 12px;
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    -webkit-radial-gradient(56.91% 42.9%, 126.38% 43.09%, #8b21b2 36.46%, #3c187c 100%);
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    -moz-radial-gradient(56.91% 42.9%, 126.38% 43.09%, #8b21b2 36.46%, #3c187c 100%);
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    -o-radial-gradient(56.91% 42.9%, 126.38% 43.09%, #8b21b2 36.46%, #3c187c 100%);
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    -webkit-radial-gradient(56.91% 42.9%, 126.38% 43.09%, #8b21b2 36.46%, #3c187c 100%);
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    -moz-radial-gradient(56.91% 42.9%, 126.38% 43.09%, #8b21b2 36.46%, #3c187c 100%);
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    -o-radial-gradient(56.91% 42.9%, 126.38% 43.09%, #8b21b2 36.46%, #3c187c 100%);
  background:
    url('../images/application-btn-bg.webp') no-repeat center center / cover,
    radial-gradient(126.38% 43.09% at 56.91% 42.9%, #8b21b2 36.46%, #3c187c 100%);
  margin-top: 12px;
}

.application__button:hover {
  -webkit-box-shadow: 0 0 10px 0 rgba(208, 0, 212, 0.7);
  -moz-box-shadow: 0 0 10px 0 rgba(208, 0, 212, 0.7);
  box-shadow: 0 0 10px 0 rgba(208, 0, 212, 0.7);
}

.application__button span {
  display: block;
}

.application__button span:first-of-type {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
}

.application__button span:nth-child(2) {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.05;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  margin-top: 8px;
}

.application__button span:last-of-type {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 16px 0 rgba(252, 81, 255, 0.5);
  -moz-box-shadow: 0 2px 16px 0 rgba(252, 81, 255, 0.5);
  box-shadow: 0 2px 16px 0 rgba(252, 81, 255, 0.5);
  background: -webkit-radial-gradient(50% 100%, 100% 201%, #d000d4 0%, #cb00cf 76.44%, #fd97ff 100%);
  background: -moz-radial-gradient(50% 100%, 100% 201%, #d000d4 0%, #cb00cf 76.44%, #fd97ff 100%);
  background: -o-radial-gradient(50% 100%, 100% 201%, #d000d4 0%, #cb00cf 76.44%, #fd97ff 100%);
  background: radial-gradient(100% 201% at 50% 100%, #d000d4 0%, #cb00cf 76.44%, #fd97ff 100%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 4px;
  width: auto;
  min-width: 78px;
  min-height: 34px;
  margin-top: 12px;
}

.application__button img {
  position: absolute;
  bottom: 0;
  right: 10px;
  max-width: 77px;
}

/* Navigation */
.sidebar__links {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  margin-left: 10px;
  margin-right: 10px;
}

.sidebar__links-button {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.21;
  color: #fff;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 8px 40px 8px 10px;
  overflow: hidden;
  -webkit-box-shadow:
    inset 4px 4px 15px 0 rgba(0, 0, 0, 0.15),
    inset -4px -4px 15px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow:
    inset 4px 4px 15px 0 rgba(0, 0, 0, 0.15),
    inset -4px -4px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow:
    inset 4px 4px 15px 0 rgba(0, 0, 0, 0.15),
    inset -4px -4px 15px 0 rgba(0, 0, 0, 0.15);
  background: #2b255c;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-nav.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: 9px;
  right: 14px;
  width: 14px;
  height: 14px;
}

.sidebar__links-button:hover {
  background: rgba(43, 37, 92, 0.5);
}

.sidebar__links-button.active:before {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.sidebar__links-list {
  background: #fff;
}

.sidebar__links-list li {
  border-top: 1px solid #f1f3f5;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #2b255c;
  opacity: 0.6;
  padding: 8px 10px;
}

.sidebar__links-list a:hover {
  text-shadow:
    0 0.2px #2b255c,
    0.2px 0 #2b255c;
  color: #2b255c;
  opacity: 1;
}

/* Prime */
.prime {
  min-height: 450px;
  color: #fff;
  border: none;
  background: #00240f;
  -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: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-top: 0px;
}

.banner__wrap {
  position: relative;
  width: 100%;
  padding: 15px 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  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: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.prime__wrap {
  max-width: 570px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  margin-left: 40px;
}

.prime__rating {
  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-bottom: 20px;
}

.prime__rating-value {
  font-weight: 700;
  margin-left: 10px;
}

.prime__text {
  margin-top: 10px;
}

/* Double */
.double,
.frame.double {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  gap: 16px;
}

.double > .double__item {
  max-width: none;
  width: -webkit-calc((100% - 16px) / 2);
  width: -moz-calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
}

.double__item > * + * {
  margin-top: 16px;
}

.double__text {
  width: 50%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
  margin-top: 0;
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.double__text > * {
  position: relative;
}

.double__text > * + * {
  margin-top: 16px;
}

.double__image {
  position: relative;
  width: 50%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0;
}

.frame > .double__image {
  margin-top: 0;
}

.double__text + .double__image,
.double__image + .double__text {
  margin-top: 0;
}

.double__image-flex {
  padding: 8px;
  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;
}

.double__image-center {
  width: 33%;
  padding: 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;
}

.image__small-logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 350px;
  -moz-box-flex: 0;
  flex: 0 1 350px;
}

.image__big-logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 400px;
  -moz-box-flex: 0;
  flex: 0 1 400px;
}

/* Table */
.table {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: var(--table-bg);
  color: var(--table-text-color);
}

.table a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--table-text-color);
}

.table a:hover {
  color: #ffea00;
  text-shadow:
    0 0.2px #ffea00,
    0.2px 0 #ffea00;
}

.table tr {
  position: relative;
  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;
  padding: 0 20px;
}

.table thead tr {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  background: var(--table-heading-bg);
}

.table tbody tr + tr {
  border-top: var(--table-row-border);
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  line-height: 1.35;
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
}

/* Table scroll */
.table-scroll {
  max-height: 512px;
  overflow-y: auto;
}

.table-scroll thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Intro__compare*/
.compare__item {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: var(--table-bg);
  color: var(--table-text-color);
  overflow: hidden;
}

.compare__heading {
  position: relative;
  min-height: 46px;
  padding: 7px 8px 7px 46px;
  background: var(--table-heading-bg);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: var(--table-heading-text-color);
}

.compare__heading::before {
  content: '';
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 12px;
  width: 24px;
  height: 24px;
}

.compare__plus .compare__heading::before {
  background-image: url('../images/icon-plus.svg');
}

.compare__minus .compare__heading::before {
  background-image: url('../images/icon-minus.svg');
}

.compare__item ul {
  margin-top: 0;
}

.compare__item ul > li + li {
  margin-top: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.compare__minus ul > li:last-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.compare__item ul > li {
  padding: 8px 20px;
}

.compare__item ul > li::before {
  display: none;
}

/* Upto */
.content.upto__content {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  min-height: 380px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  background: #00240f;
}

.content.upto__content-left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.content.upto__content-right {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.upto__wrap {
  width: auto;
  position: relative;
  color: #fff;
  max-width: 630px;
}

.upto__content-left .upto__wrap {
  margin-left: 50px;
}

.upto__content-right .upto__wrap {
  margin-right: 50px;
}

.title.upto__title {
  font-style: normal;
  text-align: center;
  font-size: 36px;
}

.upto__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 2px;
}

.upto__button {
  margin-top: 5px;
}

/* List */
ul.list > li,
ol.list > li {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
  padding: 0px 0px 0px 23px;
  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;
}

ul.list > li > p,
ol.list > li > p {
  font-weight: 400;
  margin-top: 15px;
}

ul.list > li > .title,
ol.list > li > .title {
  margin-bottom: 0;
}

ul.list > li + li,
ol.list > li + li {
  margin-top: 16px;
}

ul.list > li::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
}

ul.list > li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--list-pseudo-dark);
}

.frame ul.list > li::before,
.frame__text ul.list > li::before,
.content-dark ul.list > li::before {
  background: var(--list-pseudo);
}

.frame .list > li,
.frame__text .list > li {
  color: #fff;
}

/* List-counter  */
ol.list > li {
  padding-left: 30px;
}

ol.list > li::before {
  content: counter(ol);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--list-pseudo-dark);
  left: 0;
  top: -2px;
}

.frame ol.list > li::before,
.frame__text ol.list > li::before {
  color: var(--list-pseudo);
}

/* List2  List3*/
.list-2,
.list-3,
.list-4,
.list-3-2,
.list-2-1,
.list-2-3,
.list-4-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.list-2 > li {
  width: -webkit-calc((100% - 16px) / 2);
  width: -moz-calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
}

.list.list-2 > li + li,
.list.list-3 > li + li,
.list.list-4 > li + li,
.list.list-3-2 > li + li,
.list.list-2-1 > li + li {
  margin-top: 0;
}

.list-3 > li {
  width: -webkit-calc((100% - 32px) / 3);
  width: -moz-calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
}

.list-4 > li {
  width: -webkit-calc((100% - 48px) / 4);
  width: -moz-calc((100% - 48px) / 4);
  width: calc((100% - 48px) / 4);
}

.list-3-2 > li:nth-last-child(-n + 2) {
  width: -webkit-calc((100% - 16px) / 2);
  width: -moz-calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
}

.list-2-3 > li:nth-last-child(-n + 3) {
  width: -webkit-calc((100% - 32px) / 3);
  width: -moz-calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
}

.list-4-3 > li:nth-last-child(-n + 3) {
  width: -webkit-calc((100% - 32px) / 3);
  width: -moz-calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
}

.list-2-1 > li {
  width: -webkit-calc((100% - 16px) / 2);
  width: -moz-calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
}

.list-2-1 > li:nth-last-child(-n + 1) {
  width: 100%;
}

/* Clear */
ul > li.clear,
ol > li.clear {
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0 0 0 32px;
  border: none;
  min-height: 0;
  font-weight: 400;
}

ol.list > li.clear {
  margin-top: 20px;
}

ul > li.clear::before,
ol > li.clear::before,
ul > li.clear::after,
ol > li.clear::after {
  display: none;
}

.clear ul > li + li {
  margin-top: 20px;
}

/* Download__content */
.content.download__content {
  min-height: 250px;
  background: var(--frame-bg-dark);
  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;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.download__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.download__image {
  position: absolute;
  width: 290px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.download__buttons {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 20px;
}

.download__content .download__buttons {
  padding-top: 110px;
  margin-left: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.button.download__button {
  display: block;
  border: 1px solid #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 196px;
  max-width: 196px;
  min-height: 64px;
  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;
}

.button.download__button-ios {
  -webkit-box-shadow:
    0 2px 16px 0 rgba(0, 47, 255, 0.4),
    inset 0 0 9px 0 #056eee,
    0 0 15px 0 #9ccaff;
  -moz-box-shadow:
    0 2px 16px 0 rgba(0, 47, 255, 0.4),
    inset 0 0 9px 0 #056eee,
    0 0 15px 0 #9ccaff;
  box-shadow:
    0 2px 16px 0 rgba(0, 47, 255, 0.4),
    inset 0 0 9px 0 #056eee,
    0 0 15px 0 #9ccaff;
  background: -webkit-radial-gradient(41.88% 100%, 201% 100%, #0b26a9 0%, #0c45cb 76.44%, #1460e7 100%);
  background: -moz-radial-gradient(41.88% 100%, 201% 100%, #0b26a9 0%, #0c45cb 76.44%, #1460e7 100%);
  background: -o-radial-gradient(41.88% 100%, 201% 100%, #0b26a9 0%, #0c45cb 76.44%, #1460e7 100%);
  background: radial-gradient(201% 100% at 41.88% 100%, #0b26a9 0%, #0c45cb 76.44%, #1460e7 100%);
}

.button.download__button-android {
  -webkit-box-shadow:
    0 0 15px 0 #ff46f3,
    inset 0 0 9px 0 #8505ee,
    0 2px 16px 0 rgba(157, 0, 255, 0.4);
  -moz-box-shadow:
    0 0 15px 0 #ff46f3,
    inset 0 0 9px 0 #8505ee,
    0 2px 16px 0 rgba(157, 0, 255, 0.4);
  box-shadow:
    0 0 15px 0 #ff46f3,
    inset 0 0 9px 0 #8505ee,
    0 2px 16px 0 rgba(157, 0, 255, 0.4);
  background: -webkit-radial-gradient(41.88% 100%, 201% 100%, #7105aa 0%, #ab10d2 76.44%, #c717e5 100%);
  background: -moz-radial-gradient(41.88% 100%, 201% 100%, #7105aa 0%, #ab10d2 76.44%, #c717e5 100%);
  background: -o-radial-gradient(41.88% 100%, 201% 100%, #7105aa 0%, #ab10d2 76.44%, #c717e5 100%);
  background: radial-gradient(201% 100% at 41.88% 100%, #7105aa 0%, #ab10d2 76.44%, #c717e5 100%);
}

.download__buttons .download__button {
  margin: 0px;
}

.download__button span {
  text-align: center;
  min-width: 105px;
}

.download__button img {
  max-width: 25px;
  margin-right: 8px;
}

/* Wrapper */
.wrapper {
  width: 100%;
  position: relative;
}

/* Frame */
.frame,
li.frame {
  position: relative;
  width: 100%;
  background: var(--frame-bg);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  padding: 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-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  color: #fff;
}

.frame h3,
.frame h4 {
  color: #fff;
}

.background.frame__background-100 img {
  -o-object-position: 100%;
  object-position: 100%;
}

.frame__background.no-opacity,
.frame__background.no-opacity img {
  opacity: 1;
}

.frame-dark,
li.frame-dark {
  background: var(--frame-bg-dark);
}

.frame-dark > ul.list li::before {
  background: #fff;
}

.frame > * + * {
  margin-top: 16px;
}

.frame > .background + * {
  margin-top: 0;
}

.frame > * {
  position: relative;
}

.frame > .image + h3,
.frame > .background + h3,
.frame > .image + * {
  margin-top: 0;
}

.frame__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  max-height: 100%;
}

.frame__image-center {
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  max-width: 394px;
}

.h-100 {
  height: 100%;
}

.w-35 {
  width: 35%;
}

.frame__image img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

.frame__image.no-opacity,
.frame__image.no-opacity img {
  opacity: 1;
}

.frame__image-left {
  right: auto;
  left: 0;
}

.frame__image-left img {
  -o-object-position: right;
  object-position: right;
}

.frame__text {
  width: 52%;
  max-width: 600px;
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  margin-right: auto;
}

.frame__text-right {
  margin-left: auto;
  margin-right: 0;
}

.frame__text-75 {
  width: 75%;
}

.frame__text > * {
  position: relative;
}

.frame__text > * + * {
  margin-top: 16px;
}

.frame__text > * + .button,
.frame > * + .button,
.double__text > * + .button {
  margin-top: 0;
}

/* Bonuses */
/* Games */
ul.bonuses__list > li::before,
ul.games__list > li::before {
  display: none;
}

ul.bonuses__list > li + li,
ul.games__list > li + li {
  margin-top: 20px;
}

/* Slots table */
.slots__table tr > *:nth-child(1),
.slots__table tr > *:nth-child(2) {
  min-width: 160px;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__list > li {
  position: relative;
  overflow: hidden;
  background: var(--faq-item-bg);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.faq__list > li + li {
  margin-top: 16px;
}

.title.faq-item__title {
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 56px 14px 16px;
  -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-image: url('../images/icon-faq.svg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.title.faq-item__title:hover {
  color: #fff;
  text-shadow:
    0 0.2px #fff,
    0.2px 0 #fff;
}

.faq-item__desc {
  position: relative;
  padding: 12px 16px;
  color: #fff;
}

.faq-item__desc::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 16px;
  height: 1px;
  width: -webkit-calc(100% - 32px);
  width: -moz-calc(100% - 32px);
  width: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.2);
}

.faq-item__desc ul li {
  border: none;
  padding: 0;
}

.faq-item__desc ul li:before {
  content: '•';
  display: inline-block;
  margin-right: 8px;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Reviews */
.reviews ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews ul li {
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  margin: 0;
}

.reviews ul li::before {
  display: none;
}

.reviews ul li > * {
  position: relative;
}

.review__heading {
  width: 100%;
  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;
  gap: 16px;
}

.review__image {
  width: 100px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.review__name {
  width: -webkit-calc(100% - 10px - 100px);
  width: -moz-calc(100% - 10px - 100px);
  width: calc(100% - 10px - 100px);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.review__rating {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 130px;
  -moz-box-flex: 0;
  flex: 0 1 130px;
  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;
  gap: 5px;
  margin-top: 16px;
}

.review__rating > * {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 22px;
  -moz-box-flex: 0;
  flex: 0 1 22px;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: -70px;
  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__arrowtop {
  height: 72%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
  width: 50px;
  height: 50px;
}

.main__arrowtop a img {
  max-width: 50px;
}

.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: 90px;
  margin-bottom: 40px;
  padding: 0px 20px 0px 298px;
}

.footer__countries {
  width: 100%;
  margin-bottom: 20px;
}

.footer__countries ul {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer__countries li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  background: var(--countries-bg);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  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;
}

.footer__countries li a:hover {
  -webkit-box-shadow: 0 0 5px 0 #fff;
  -moz-box-shadow: 0 0 5px 0 #fff;
  box-shadow: 0 0 5px 0 #fff;
}

.footer__countries li a img {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  max-width: 24px;
  margin-right: 8px;
}

.footer__wrapper {
  width: 100%;
  background: #fff;
  padding: 32px 100px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.footer__menu {
  margin-bottom: 32px;
}

.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;
  gap: 40px 0;
}

.footer__menu li {
  position: relative;
}

.footer__menu li:not(:last-child) {
  padding-right: 81px;
}

.footer__menu li:not(:last-child):after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(43, 37, 92, 0.4);
}

.footer__menu li a {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #2b255c;
}

.footer__menu li a:hover {
  text-shadow:
    0 0.2px #2b255c,
    0.2px 0 #2b255c;
}

.footer__payments {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
  gap: 16px;
  margin-bottom: 32px;
}

.footer__payments li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 112px;
  -moz-box-flex: 0;
  flex: 0 1 112px;
  height: 58px;
  background: #fcf4ff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  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;
}

.footer__payments li a img {
  max-width: 70px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__payments li a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__info {
  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;
  gap: 16px;
}

.footer__age {
  width: 40px;
}

.footer__text {
  width: -webkit-calc(100% - 16px - 40px);
  width: -moz-calc(100% - 16px - 40px);
  width: calc(100% - 16px - 40px);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  width: auto;
  margin-bottom: 20px;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.breadcrumbs > li:not(:last-child) a {
  opacity: 1;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-shadow:
    0 0.4px #fff,
    0.4px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  opacity: 1;
}

.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 4px;
}

/* APP PAGE */
.prime .download__buttons {
  margin-top: 20px;
}

/* Features */
ul.features__list > li::before {
  display: none;
}

ul.features__list > li + li {
  margin-top: 20px;
}
