@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.5;
  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: 900;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  width: 100%;
  text-align: center;
  font-size: 34px;
  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: 94px;
  height: 17px;
  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-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
}

h3,
.title.middle {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
}

h4,
.title.mini {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  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,
article li a,
.article li a {
  color: #18c214;
}

article p a:hover,
.article p a:hover,
article li a:hover,
.article li 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: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}

/* Button */
.button {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #34c759;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 142px;
  min-height: 47px;
  position: relative;
  padding: 12px 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 {
  background: -webkit-linear-gradient(275deg, #392b6b 0%, #3942b1 100%), -webkit-linear-gradient(bottom, #9f2fff 0%, #0bb1d3 100%);
  background: -moz-linear-gradient(275deg, #392b6b 0%, #3942b1 100%), -moz-linear-gradient(bottom, #9f2fff 0%, #0bb1d3 100%);
  background: -o-linear-gradient(275deg, #392b6b 0%, #3942b1 100%), -o-linear-gradient(bottom, #9f2fff 0%, #0bb1d3 100%);
  background: linear-gradient(175deg, #392b6b 0%, #3942b1 100%), linear-gradient(0deg, #9f2fff 0%, #0bb1d3 100%);
}

/* Big */
.big {
  padding: 19px 16px;
  min-width: 211px;
  min-height: 70px;
  font-weight: 800;
  font-size: 20px;
}

/* Border gradient */
.gradient {
  position: relative;
}

.gradient::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 1px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: -webkit-linear-gradient(275deg, #3a49f9 0%, #9c2cf3 100%);
  background: -moz-linear-gradient(275deg, #3a49f9 0%, #9c2cf3 100%);
  background: -o-linear-gradient(275deg, #3a49f9 0%, #9c2cf3 100%);
  background: linear-gradient(175deg, #3a49f9 0%, #9c2cf3 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* 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: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #251645;
}

.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,
.scroll + .double {
  margin-top: 0;
}

.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;
}

.header__logo {
  margin-left: 40px;
}

.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 70px;
}

.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: 30px;
}

.header__menu ul a {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  opacity: 0.5;
  color: #fff;
}

.header__menu ul a:hover {
  opacity: 1;
}

.header__button {
  padding: 8px 16px;
  min-height: 40px;
  min-width: 100px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-top: 0;
}

.header__login {
  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%);
  margin-left: 20px;
}

.header__login: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);
}

.header__signup {
  margin-left: 20px;
}

/* Languages */
.header__language {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 8px 13px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  background: #16225a;
  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-left: auto;
}

.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: 6px;
}

.header__language-button {
  position: relative;
  cursor: pointer;
  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;
  padding-right: 28px;
}

.header__language-button::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 6px;
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../images/icon-arrow-lang.svg);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.header__language-button.active::before {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.header__language-menu {
  position: relative;
  z-index: 101;
  display: none;
  margin-top: 15px;
}

.header__language-menu ul {
  max-height: -webkit-calc(100vh - 77px);
  max-height: -moz-calc(100vh - 77px);
  max-height: calc(100vh - 77px);
  overflow-y: auto;
}

.header__language-menu ul {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header__language-menu ul::-webkit-scrollbar {
  display: none;
}

.header__language-menu li + li {
  margin-top: 15px;
}

.header__language-menu a {
  font-weight: 400;
  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;
}

.header__language-menu a img {
  margin-right: 9px;
}

/* 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 {
  padding: 0 11px;
  margin-top: 16px;
}

.sidebar__buttons {
  margin-bottom: 32px;
}

.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: 14px;
  line-height: 1.42857;
  text-transform: uppercase;
  color: #fff;
  padding: 17px 12px 16px 90px;
  min-height: 53px;
}

.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-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 11px 30px 11px 10px;
  background: #251645;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  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: 19px;
  right: 10px;
  width: 11px;
  height: 11px;
}

.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 {
  margin-top: 12px;
  padding: 0 11px 16px 11px;
}

.sidebar__links-list li + li {
  margin-top: 8px;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #b8a3e4;
}

.sidebar__links-list a:hover {
  color: #fff;
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

/* Prime */
.prime {
  min-height: 440px;
  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;
  margin-top: 0px;
}

.banner__wrap {
  position: relative;
  width: 100%;
  max-width: 675px;
  padding: 32px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background: rgba(48, 39, 151, 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 {
  max-width: 780px;
  margin-left: 20px;
}

.prime__rating {
  font-weight: 600;
  font-size: 16px;
  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-bottom: 10px;
}

.prime__rating-value {
  margin-left: 18px;
}

.prime__text {
  position: relative;
  margin-top: 10px;
}

.prime__button {
  padding: 19px 16px;
  min-width: 211px;
  min-height: 70px;
  font-weight: 800;
  font-size: 20px;
  margin-top: 32px;
}

/* 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;
}

/* Table */
.table {
  width: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.table a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}

.table a:hover {
  color: #18c214;
  text-shadow: 0 0.4px #18c214, 0.4px 0 #18c214;
}

.table .gradient::before {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.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 {
  min-height: 46px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  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%);
}

.table tbody tr + tr {
  border-top: 1px solid rgba(58, 73, 249, 0.4);
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  line-height: 1.35;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
  border-left: 1px solid rgba(58, 73, 249, 0.4);
}

/* Intro */
.intro__table td:first-child,
.intro__table th:first-child {
  max-width: 50%;
}

.intro__table tr > th {
  font-weight: 700;
  font-size: 20px;
  text-transform: initial;
}

/* Intro__compare*/
.intro__compare > * {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.intro__compare .gradient::before {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.compare__heading {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 8px 10px 8px 70px;
  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%);
}

.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: 8px;
  left: 20px;
  width: 30px;
  height: 30px;
}

.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: 16px 16px 16px 50px;
}

.intro__compare ul li + li {
  margin-top: 16px;
}

.intro__compare ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: -webkit-linear-gradient(275deg, #9c2cf3 0%, #3a49f9 100%);
  background: -moz-linear-gradient(275deg, #9c2cf3 0%, #3a49f9 100%);
  background: -o-linear-gradient(275deg, #9c2cf3 0%, #3a49f9 100%);
  background: linear-gradient(175deg, #9c2cf3 0%, #3a49f9 100%);
  top: 7px;
  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;
}

.content.upto__content-right {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.upto__wrap {
  position: relative;
  color: #fff;
}

.upto__content-left .upto__wrap {
  margin-left: 20px;
}

.upto__content-right .upto__wrap {
  margin-right: 20px;
}

.upto__title {
  text-transform: initial;
}

.upto__title .bottom {
  font-size: 31px;
  text-transform: uppercase;
  margin-top: 6px;
}

.upto__button {
  padding: 19px 16px;
  min-width: 211px;
  min-height: 70px;
  font-weight: 800;
  font-size: 20px;
  margin-top: 32px;
}

/* List */
/* List-counter  */
.list,
.list-counter {
  width: 100%;
}

.list ul li,
.list-counter ol li {
  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%);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  padding: 6px 20px 6px 80px;
  min-height: 49px;
  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;
}

.list ul li + li,
.list-counter ol li + li {
  margin-top: 20px;
}

.list ul li::before,
.list-counter ol li::before {
  top: -5px;
  left: 0;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 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;
  text-shadow: none;
  height: -webkit-calc(100% + 10px);
  height: -moz-calc(100% + 10px);
  height: calc(100% + 10px);
  min-height: 60px;
  width: 60px;
  padding: 10px;
  text-align: center;
}

.list ul li::before {
  content: url('../images/icon-list.svg');
}

/* List-counter  */
.list-counter ol li::before {
  font-weight: 900;
  font-size: 38px;
  line-height: 0.52;
  content: counter(ol);
  color: #6b3af6;
}

.list-counter ol li::after,
.list ul li::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  background: -webkit-linear-gradient(290deg, #9c2cf3 0%, #3a49f9 100%);
  background: -moz-linear-gradient(290deg, #9c2cf3 0%, #3a49f9 100%);
  background: -o-linear-gradient(290deg, #9c2cf3 0%, #3a49f9 100%);
  background: linear-gradient(160deg, #9c2cf3 0%, #3a49f9 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* Download__content */
.content.download__content {
  min-height: 300px;
  -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;
}

.download__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.download__buttons {
  position: relative;
  z-index: 1;
  width: -webkit-calc(100% + 20px);
  width: -moz-calc(100% + 20px);
  width: calc(100% + 20px);
  max-width: 1100px;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  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-android {
  background: #513bff;
}

.download__button-android: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);
}

.download__button span {
  text-align: center;
}

.download__button:first-child span {
  min-width: 128px;
}

/* Bonuses */
.bonuses__content p span {
  font-weight: 600;
  color: #ffd169;
  text-transform: uppercase;
}

.bonus__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.bonus__wrapper > *:last-child {
  margin-left: 20px;
}

.bonus__image {
  width: 331px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  padding: 34px 10px;
}

.bonus__text {
  width: -webkit-calc(100% - 331px - 20px);
  width: -moz-calc(100% - 331px - 20px);
  width: calc(100% - 331px - 20px);
}

.bonus__text > * + * {
  margin-top: 16px;
}

.bonuses__table {
  background: rgba(37, 22, 69, 0.8);
}

/* Slots */
.slots__table tr > th + th,
.slots__table tr > td + td {
  padding-left: 16px;
}

.slots__table tr th {
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
}

.slots__table tr td {
  font-weight: 300;
  line-height: 1.35;
}

.slots__table ul li {
  padding-left: 20px;
}

.slots__table ul li::before {
  content: '';
  left: 0;
  top: 6px;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: -webkit-linear-gradient(275deg, #9c2cf3 0%, #3a49f9 100%);
  background: -moz-linear-gradient(275deg, #9c2cf3 0%, #3a49f9 100%);
  background: -o-linear-gradient(275deg, #9c2cf3 0%, #3a49f9 100%);
  background: linear-gradient(175deg, #9c2cf3 0%, #3a49f9 100%);
}

.slots__table ul li + li {
  margin-top: 6px;
}

/* Games */
.games__list {
  width: 100%;
}

.games__list ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: -10px;
}

.games__list ul li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  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%);
  padding: 24px 20px;
  margin: 10px;
}

.games__list ul li::before {
  content: '';
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  left: 0;
}

.games__title {
  text-align: center;
  text-transform: initial;
  font-weight: 700;
}

.games__text {
  margin-top: 20px;
  text-align: center;
}

/* Support */
.support__text {
  width: -webkit-calc(100% - 203px - 20px);
  width: -moz-calc(100% - 203px - 20px);
  width: calc(100% - 203px - 20px);
  margin-top: auto;
  margin-bottom: auto;
}

.support__content .list li {
  display: block;
}

.support__image {
  position: relative;
  width: 203px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #251645;
}

.support__image.gradient:before {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.support__image img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 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);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  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%);
  margin: 10px;
}

.reviews__content ul li > * {
  position: relative;
}

.reviews__content ul li::before {
  content: '';
  left: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.review__title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

.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;
}

.review__rating img {
  max-width: 36px;
}

.review__rating img + img {
  margin-left: 6px;
}

.review__text {
  margin-top: 20px;
}

.review__name {
  font-weight: 700;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__list li {
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.faq__list li + li {
  margin-top: 16px;
}

.faq__item::before {
  z-index: 3;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.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;
  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%);
  padding: 16px 46px 16px 20px;
  -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: 19px;
  right: 20px;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.title.faq-item__title:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.faq-item__desc {
  position: relative;
  padding: 12px 16px;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Rating */
.rating__table thead tr {
  font-weight: 600;
  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(2) {
  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;
  padding-right: 6px;
}

.rating__table tr td:nth-child(2) > * {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 36px;
  -moz-box-flex: 0;
  flex: 0 1 36px;
}

.rating__table tr td:nth-child(2) img + img {
  margin-left: 8px;
}

/* Summary */
.summary__wrap {
  -webkit-align-self: stretch;
  align-self: stretch;
  padding: 24px 20px;
  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%);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  max-width: 935px;
  margin-right: 170px;
  margin-top: 0;
}

.summary__wrap.gradient::before {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

/* 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);
}

/* Footer */
.footer {
  margin-top: 82px;
  margin-bottom: 20px;
  padding: 0 20px 0 280px;
}

.footer__payment {
  width: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  padding: 20px 10px;
  background: #1a0b3b;
}

.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%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.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: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 12px;
  background: #1a0b3b;
  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 {
  background: rgba(50, 41, 159, 0.5);
}

.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__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;
  background: #1a0b3b;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  padding: 40px 20px;
}

.bottom__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 155px;
  -moz-box-flex: 0;
  flex: 0 0 155px;
  margin-right: 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-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  min-width: 500px;
  margin: -5px;
}

.footer__links > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
  margin: 5px;
}

.footer__links p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  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: 16px;
}

.footer__links p img {
  margin-right: 10px;
}

.footer__links ul li + li {
  margin-top: 8px;
}

.footer__links ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  -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 {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__contacts {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 295px;
  -moz-box-flex: 0;
  flex: 0 1 295px;
  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;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  padding: 10px;
  font-weight: 600;
  font-size: 18px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  min-width: 190px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1a0b3b), to(#1a0b3b)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#9c2cf3), to(#3a49f9)) border-box;
  background: -webkit-linear-gradient(#1a0b3b, #1a0b3b) padding-box, -webkit-linear-gradient(top, #9c2cf3, #3a49f9) border-box;
  background: -moz-linear-gradient(#1a0b3b, #1a0b3b) padding-box, -moz-linear-gradient(top, #9c2cf3, #3a49f9) border-box;
  background: -o-linear-gradient(#1a0b3b, #1a0b3b) padding-box, -o-linear-gradient(top, #9c2cf3, #3a49f9) border-box;
  background: linear-gradient(#1a0b3b, #1a0b3b) padding-box, linear-gradient(180deg, #9c2cf3, #3a49f9) border-box;
  border: 2px dashed #1a0b3b;
}

.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: 30px;
  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: 128px;
}

.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%;
  background: #1a0b3b;
  padding: 13px 20px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 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;
  margin-top: 20px;
}

.footer__text p {
  width: -webkit-calc(100% - 20px -102px);
  width: -moz-calc(100% - 20px -102px);
  width: calc(100% - 20px -102px);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  margin-left: 20px;
  margin-top: 0;
}

.footer__image {
  width: 102px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  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-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.breadcrumbs > li:not(:last-child) a {
  opacity: 0.7;
}

.breadcrumbs > li:not(:last-child) a:hover {
  opacity: 1;
}

.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;
}

/* BONUS PAGE */
/* Welcome */
.welcome__list {
  width: 100%;
}

ul.welcome__list > li,
.welcome__item {
  width: 100%;
  background: #34216d;
  padding: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.welcome__item > * + * {
  margin-top: 16px;
}

.welcome__item > .background + * {
  margin-top: 0;
}

.welcome__item > * {
  position: relative;
}

ul.welcome__list > li::before {
  display: none;
}

ul.welcome__list > li + li {
  margin-top: 20px;
}

ul.welcome__list > li > * + * {
  margin-top: 16px;
}

.welcome__list > li .bonus__button {
  color: #fff;
}

.welcome__list > li .bonus__button:hover {
  text-shadow: none;
  color: #fff;
}

.welcome__list h4 {
  text-transform: initial;
  font-size: 17px;
}

/* Spins */
.spins__wrap {
  position: relative;
  width: 100%;
  min-height: 356px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  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;
}

.spins__wrap ul {
  margin-left: 160px;
  margin-right: 180px;
  max-width: 537px;
}

/* Tournament */
.tournaments__wrap {
  position: relative;
  width: 100%;
  min-height: 458px;
  padding: 20px;
  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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  justify-content: flex-end;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.tournaments__text {
  max-width: 852px;
  margin-left: 180px;
}

.tournaments__text ul {
  margin-top: 16px;
}

.tournaments__background img {
  -o-object-position: 0%;
  object-position: 0%;
}

/* Takeoff */
.takeoff__wrap {
  -webkit-align-self: flex-end;
  align-self: flex-end;
  max-width: 590px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  padding: 24px 20px;
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 180px;
}

.takeoff__wrap > * + * {
  margin-top: 20px;
}

.takeoff__button {
  margin-right: auto;
}

/* APP PAGE */
.app .prime__wrap {
  max-width: 692px;
}

/* Mobile */
.mobile__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.mobile__wrapper .list-counter {
  max-width: none;
}

.mobile__image {
  position: relative;
  width: 286px;
  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-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-right: -20px;
}

.mobile__text {
  width: -webkit-calc(100% - 286px + 20px);
  width: -moz-calc(100% - 286px + 20px);
  width: calc(100% - 286px + 20px);
}

.mobile__content .download__button {
  margin: 0;
}

/* Features */
.features__list {
  width: 100%;
}

.features__list ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}

.features__list ul li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  padding: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(33, 24, 98, 0.6);
  margin: 10px;
}

.features__list ul li::before {
  content: '';
  left: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.features__title {
  font-weight: 800;
  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%);
  padding: 12px 20px;
}

.features__text {
  padding: 24px 20px;
  margin-top: 0;
}

/* Download */
.app .download__buttons {
  max-width: 960px;
}

/* Requirements */
.requirements__wrap {
  width: 100%;
  background: #34216d;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  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;
}

.requirements__wrap > * + * {
  margin-top: 16px;
}

/* Web */
.web__wrapper {
  width: 100%;
  padding: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 356px;
  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;
}

.web__wrapper ul {
  margin-left: 44px;
  margin-right: 180px;
  max-width: 623px;
}
