@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=Roboto:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  background: #100724;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  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: #fff;
  text-align: left;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  text-align: center;
  font-size: 26px;
  margin-bottom: 0;
}

.decor {
  position: relative;
  display: inline-block;
  padding: 0 100px;
  width: auto;
}

.decor:before,
.decor:after {
  content: '';
  position: absolute;
  background: url('../images/icon-heading-decor.svg');
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 88px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.decor:before {
  left: 0;
}

.decor:after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.bottom {
  display: block;
}

.highlight {
  color: #ffd169;
}

h2,
.title.high {
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  padding: 14px;
  background: #230835;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color: #ffd169;
}

h3,
.title.middle {
  font-size: 24px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #ffd169;
}

h4,
.title.mini {
  font-size: 18px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #ffd169;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 16px;
}

article li,
.article li {
  position: relative;
  padding-left: 24px;
}

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: '•';
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a {
  color: #18c214;
}

article p a:hover,
.article p a:hover {
  text-shadow: 0 0.4px #18c214, 0.4px 0 #18c214;
}

article > .button,
.article > .button {
  margin-right: auto;
}

article > .image,
.article > .image {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

/* Button */
.button {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #34c759;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 200px;
  min-height: 56px;
  position: relative;
  padding: 16px 20px;
}

.button:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 0 20px 0 rgba(45, 241, 81, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(45, 241, 81, 0.9);
  box-shadow: 0 0 20px 0 rgba(45, 241, 81, 0.9);
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 16px;
}

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: -webkit-linear-gradient(275deg, #392b6b 0%, #3942b1 100%);
  background: -moz-linear-gradient(275deg, #392b6b 0%, #3942b1 100%);
  background: -o-linear-gradient(275deg, #392b6b 0%, #3942b1 100%);
  background: linear-gradient(175deg, #392b6b 0%, #3942b1 100%);
}

.button.inverse:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(81, 59, 255, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(81, 59, 255, 0.9);
  box-shadow: 0 0 20px 0 rgba(81, 59, 255, 0.9);
}

/* 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: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: -webkit-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: -moz-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: -o-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: linear-gradient(175deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
}

.content .scroll {
  position: absolute;
  width: 0;
  height: 0;
  top: -74px;
  left: 0;
}

.scroll + h2,
.content .background + h2 {
  margin-top: 0;
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: #100724;
  -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: 77px;
  overflow: visible;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
  max-width: 156px;
}

.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 110px;
}

.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 {
  margin-left: 24px;
}

.header__menu ul a {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.5;
  color: #fff;
}

.header__menu ul a:hover {
  opacity: 1;
}

.header__button {
  padding: 8px 24px;
  min-height: 40px;
  min-width: 100px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-top: 0;
}

.header__login {
  margin-left: 16px;
}

.header__signup {
  margin-left: 8px;
}

/* Languages */
.header__language {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  flex: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  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-left: 15px;
}

.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;
  margin-right: 8px;
}

/* Main */
.main {
  position: relative;
  padding: 77px 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% - 240px - 20px);
  -moz-box-flex: 1;
  flex: 1 1 calc(100% - 240px - 20px);
  margin-left: 260px;
}

.sidebar__links-main {
  display: none;
}

/* Sidebar */
.sidebar {
  width: 240px;
  position: fixed;
  top: 77px;
  left: 20px;
  height: -webkit-calc(100vh - 77px);
  height: -moz-calc(100vh - 77px);
  height: calc(100vh - 77px);
  padding-bottom: 20px;
  overflow-y: auto;
  z-index: 10;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar__wrap {
  margin-top: 20px;
}

.sidebar__buttons {
  margin-bottom: 16px;
}

.sidebar__buttons > a + a {
  margin-top: 16px;
}

.sidebar__buttons a {
  position: relative;
  display: block;
  background: #34216d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 12px 12px 80px;
  min-height: 48px;
}

.sidebar__buttons a:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(113, 124, 255, 0.8);
  -moz-box-shadow: 0 0 20px 0 rgba(113, 124, 255, 0.8);
  box-shadow: 0 0 20px 0 rgba(113, 124, 255, 0.8);
}

.sidebar__buttons a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 95px;
  height: 53px;
}
.sidebar__menu {
  margin-bottom: 20px;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li + li {
  margin-top: 11px;
}

.sidebar__menu li a {
  position: relative;
  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: 400;
  font-size: 14px;
  color: #b8a3e4;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 9px 36px 10px 11px;
}

.sidebar__menu li a:hover {
  background: #251645;
  color: #fff;
}

.sidebar__menu li a img {
  display: block;
  max-width: 23px;
  margin-right: 12px;
}

.sidebar__menu li a:after {
  content: '';
  position: absolute;
  right: 11px;
  top: 19px;
  display: block;
  width: 11px;
  height: 11px;
  background-image: url(../images/icon-arrow-menu.svg);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.sidebar__menu li a:hover:after {
  background-image: url(../images/icon-arrow-menu-hover.svg);
}

.sidebar__links {
  background: -webkit-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: -moz-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: -o-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: linear-gradient(175deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 12px 40px 12px 16px;
  overflow: hidden;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-arrow-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: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
}

.sidebar__links-button:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.sidebar__links-button.active:before {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.sidebar__links-list {
  padding-bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar__links-list a {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
}

.sidebar__links-list a:hover {
  color: #ffd169;
  text-shadow: 0 0.3px #ffd169, 0.3px 0 #ffd169;
}

/* Prime */
.prime {
  min-height: 460px;
  background: #100724;
  -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: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.banner__wrap {
  position: relative;
  width: 100%;
  max-width: 625px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 20px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(35, 8, 53, 0.5);
  text-align: center;
  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 {
  position: relative;
  width: 100%;
  padding: 107px 24px 28px 24px;
  max-width: 590px;
  min-height: 410px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  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;
  margin-left: 20px;
}

.wrap__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 20px;
}

.wrap__image img {
  max-width: 50px;
}

.prime__rating {
  position: relative;
  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: 10px;
}

.prime__rating-value {
  margin-left: 4px;
}

.prime__text {
  position: relative;
  margin-top: 8px;
}

.prime__button {
  margin-top: 24px;
}

/* Table */
.table {
  width: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  background: #230835;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.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 tr > * {
  padding-right: 4px;
}

.table thead tr {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  min-height: 46px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus .table thead tr {
  font-size: 15px;
  line-height: 1.4;
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.35;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.table tr > * + * {
  padding-left: 16px;
}

.table a {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.table a:hover {
  color: #fffc65;
}

.highlight__table tr > th {
  text-transform: initial;
}

.highlight__table tr > td {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}

/* Double */
.double {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.double > * {
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}

.double > *:last-child {
  margin-left: 20px;
}

.double__item > * + * {
  margin-top: 16px;
}

/* Intro__compare*/
.intro__compare > * {
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px;
  background: #230835;
}

.compare__heading {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.65;
  text-transform: uppercase;
  padding: 3px 10px 20px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.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: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
}

.compare__plus p::before {
  background-image: url('../images/icon-plus.svg');
}

.compare__minus p::before {
  background-image: url('../images/icon-minus.svg');
}

.intro__compare ul {
  padding-left: 50px;
  margin-top: 16px;
}

.intro__compare ul li + li {
  margin-top: 16px;
}

.intro__compare ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px 0 #372d82;
  -moz-box-shadow: 0 1px 4px 0 #372d82;
  box-shadow: 0 1px 4px 0 #372d82;
  top: 8px;
  margin: auto;
}

/* Upto */
.content.upto__content {
  min-height: 425px;
  background: #100724;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.content.upto__content-left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.upto__wrap {
  position: relative;
  color: #fff;
}

.upto__content-left .upto__wrap {
  margin-left: 60px;
}

.upto__title {
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  text-transform: initial;
  background: none;
  padding: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #fff;
}

.upto__title .bottom {
  margin-top: 8px;
}

.upto__content.wolf .upto__background img {
  -o-object-position: 100%;
  object-position: 100%;
}

/* List */
/* List-counter  */
.list,
.list-counter {
  width: 100%;
  margin-top: 16px;
}

.list ul,
.list-counter ol {
  position: relative;
}

.list ul li,
.list-counter ol li {
  font-weight: 500;
  text-transform: uppercase;
  background: #230835;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 13px 20px 13px 52px;
}

.list ul li + li,
.list-counter ol li + li {
  margin-top: 20px;
}

.list ul li::before,
.list-counter ol li::before {
  top: 0;
  left: 0;
  background: #fff;
  -webkit-border-radius: 6px 0 0 6px;
  -moz-border-radius: 6px 0 0 6px;
  border-radius: 6px 0 0 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;
  text-shadow: none;
  width: 40px;
  height: 100%;
  padding: 4px;
  text-align: center;
}

.list ul li::before {
  content: '•';
  color: #31289b;
  font-size: 28px;
}

/* List-counter  */
.list-counter ol li::before {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  content: counter(ol);
  color: #31289b;
}

/* Frame */
.frame {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #230835;
}

/* Bg-wrap */
.bg__wrap {
  width: 100%;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  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;
}

.bg__wrap > * {
  position: relative;
}

.bg__wrap > * + * {
  margin-top: 16px;
}

.bg__wrap > .background + * {
  margin-top: 0;
}

.bg__wrap .background {
  background: #100724;
}

.bg__wrap .button {
  -webkit-align-self: flex-start;
  align-self: flex-start;
}

.registration__wrap,
.bg__wrap-text {
  position: relative;
  margin-right: 150px;
  max-width: 718px;
}

.registration__wrap > * + *,
.bg__wrap-text > * + * {
  margin-top: 16px;
}

/* Download__content */
.content.download__content {
  min-height: 200px;
  background: #100724;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -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-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
}

.download__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.download__background img {
  -o-object-position: 100%;
  object-position: 100%;
}

.download__image {
  margin-right: 50px;
}

.download__image img {
  max-width: 355px;
}

.download__buttons {
  width: auto;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: -10px;
}

.download__button {
  display: block;
  padding: 12px 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.14286;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 240px;
  max-width: 240px;
  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;
}

.download__buttons .download__button {
  margin: 10px;
}

.download__button > span {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  text-align: center;
}

.download__button span span {
  display: inline-block;
}

/* Vip */
.vip__wrap {
  margin-right: 200px;
}

/* Live */
.live__list {
  width: 100%;
}

.live__list > ul > li {
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px;
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  background: rgba(35, 8, 53, 0.4);
  width: 100%;
  max-width: 945px;
}

.live__list > ul > li::before {
  display: none;
}

.live__list > ul > li + li {
  margin-top: 20px;
}

.live__list > ul > li:nth-child(2n + 1) {
  margin-right: auto;
}

.live__list > ul > li:nth-child(2n) {
  margin-left: auto;
}

.live__list .list {
  margin-top: 16px;
}

/* Reviews */
.reviews__content ul {
  width: -webkit-calc(100% + 20px);
  width: -moz-calc(100% + 20px);
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 6px -10px -10px -10px;
}

.reviews__content ul li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  overflow: hidden;
  background: #230835;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px 16px;
  margin: 10px;
}

.reviews__content ul li > * {
  position: relative;
}

.reviews__content ul li::before {
  display: none;
}

.review__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.review__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-top: 12px;
}

.review__rating > * {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 15px;
  -moz-box-flex: 0;
  flex: 0 1 15px;
}

.review__rating img + img {
  margin-left: 4px;
}

.review__text {
  margin-top: 20px;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__item {
  counter-increment: ol;
}

.faq__list li {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #230835;
}

.faq__list li + li {
  margin-top: 16px;
}

.faq__item::before {
  z-index: 3;
}

.title.faq-item__title {
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  text-transform: initial;
  color: #fff;
  padding: 16px 46px 16px 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:before {
  content: counter(ol) '.';
  display: inline-block;
  font: inherit;
  color: inherit;
  margin-right: 4px;
}

.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: 10px;
  right: 7px;
  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 {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item__desc {
  position: relative;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq__item.active .faq-item__title:after {
  background-image: url('../images/icon-faq-active.svg');
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: -62px;
  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: 72%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
  width: 42px;
  height: 42px;
}

.main__arrowtop a img {
  max-width: 42px;
}

.main__arrowtop a:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* Rating */
.rating__table thead tr {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
}

.rating__table tbody tr td {
  padding-top: 8px;
  padding-bottom: 8px;
}

.rating__table tr > td + td {
  padding-left: 16px;
}

.rating__table tr td:nth-child(1) {
  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;
}

.rating__table tr td:nth-child(3) {
  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;
}

.rating__table tr td:nth-child(3) img {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 33px;
  -moz-box-flex: 0;
  flex: 0 1 33px;
}

.rating__table tr td:nth-child(3) img + img {
  margin-left: 4px;
}

/* Footer */
.footer {
  margin-top: 82px;
  margin-bottom: 20px;
  padding: 0 30px 0 290px;
}

.footer__wrap {
  padding: 32px 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: -webkit-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: -moz-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: -o-linear-gradient(275deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
  background: linear-gradient(175deg, rgba(59, 9, 98, 0.35) 0%, rgba(58, 73, 249, 0.35) 100%);
}

.footer__payment {
  width: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.footer__payment ul {
  width: -webkit-calc(100% + 16px);
  width: -moz-calc(100% + 16px);
  width: calc(100% + 16px);
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: -8px;
}

.footer__payment 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;
  margin: 8px;
}

.footer__payment li a {
  position: relative;
  display: block;
}

.footer__payment li a img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
}

.footer__payment li a:hover img:nth-child(2) {
  opacity: 1;
}

.footer__payment li a:hover img:nth-child(1) {
  opacity: 0;
}

.footer__countries {
  width: 100%;
  max-width: 1186px;
  margin: 40px auto;
  border-bottom: 1px solid #645b8e;
  border-top: 1px solid #645b8e;
  padding: 40px 0;
}

.footer__countries ul {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: -10px;
}

.footer__countries li {
  margin: 8px;
}

.footer__countries li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 12px 16px;
  background: -webkit-gradient(linear, left top, right top, color-stop(41.99%, #392f76), to(#2d0f62));
  background: -webkit-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: -moz-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: -o-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: linear-gradient(90deg, #392f76 41.99%, #2d0f62 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__countries li a:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 0 20px 0 #392f76;
  -moz-box-shadow: 0 0 20px 0 #392f76;
  box-shadow: 0 0 20px 0 #392f76;
}

.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%;
  max-width: 1186px;
  margin: 0 auto;
}

.footer__bottom {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.bottom__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 155px;
  -moz-box-flex: 0;
  flex: 0 0 155px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.footer__logo {
  display: block;
}

.footer__logo:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__logo img {
  max-width: 155px;
}

.footer__links {
  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-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  margin: -5px;
}

.footer__links > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 221px;
  -moz-box-flex: 0;
  flex: 0 1 221px;
  min-width: 144px;
  margin: 5px;
}

.footer__links p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  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: 8px;
}

.footer__links p img {
  margin-right: 8px;
}

.footer__links ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #b8a3e4;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__links ul li a:hover {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__contacts {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 220px;
  -moz-box-flex: 0;
  flex: 0 1 220px;
  min-width: 190px;
  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;
  margin-left: 10px;
}

.footer__mail {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-transform: uppercase;
  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;
  min-width: 190px;
}

.footer__mail span:first-child {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.footer__mail img {
  max-width: 20px;
}

.footer__mail:hover span {
  background: -webkit-linear-gradient(275deg, #bb63ff 0%, #717cff 100%);
  background: -moz-linear-gradient(275deg, #bb63ff 0%, #717cff 100%);
  background: -o-linear-gradient(275deg, #bb63ff 0%, #717cff 100%);
  background: linear-gradient(175deg, #bb63ff 0%, #717cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__info {
  margin-top: 16px;
  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;
  min-width: 190px;
}

.footer__age {
  width: 54px;
  height: 54px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.514;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #b63d3d;
  padding: 13px 0;
  margin-left: 20px;
}

.footer__text {
  width: 100%;
  max-width: 1186px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.66667;
  color: #b8a3e4;
  margin: 40px auto 0 auto;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
  margin-bottom: 10px;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  color: #fff;
  font-size: 15px;
}

.breadcrumbs > li:not(:last-child) a {
  font-weight: 400;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-shadow: 0 0.4px #fff, 0.4px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 600;
}

.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;
}

/* BONUS PAGE */
/* Welcome */
/* Vip */
ul.welcome__list > li,
ul.vip__list > li {
  padding: 0;
}

ul.welcome__list > li::before,
ul.vip__list > li::before {
  display: none;
}

ul.welcome__list > li + li,
ul.vip__list > li + li {
  margin-top: 20px;
}

ul.welcome__list > li .list,
ul.vip__list > li .list {
  margin-top: 20px;
}

/* APP PAGE */
/* Benefits */
/* Mobile */
.benefits__list,
.mobile__list {
  width: 100%;
}

.benefits__list ul,
.mobile__list ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}

.benefits__list ul li {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  margin: 10px;
}

.mobile__list ul li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  background: rgba(35, 8, 53, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 10px;
}

.benefits__list ul li::before,
.mobile__list ul li::before {
  display: none;
}

.benefits__list ul li p,
.mobile__list ul li p {
  position: relative;
}
