@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: #2b1234;
  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: 700;
  line-height: 1.25;
  color: #fdcd0b;
  text-align: left;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.bottom {
  display: block;
}

h2,
.title.high {
  font-size: 28px;
}

h3,
.title.middle {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}

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 li + li,
.article li + li {
  margin-top: 8px;
}

article ol > li,
.article ol > li {
  counter-increment: ol;
}

article ul > li:before,
article ol > li:before,
.article ul > li:before,
.article ol > li:before {
  display: inline-block;
  position: absolute;
  font: inherit;
  color: inherit;
  z-index: 1;
  top: 0;
  left: 8px;
}

article ul > li:before,
.article ul > li:before {
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  background: #fdcd0b;
  top: 8px;
  left: 4px;
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

article p a:hover,
.article p a:hover {
  color: #fdcd0b;
  text-shadow: 0 0.4px #fdcd0b, 0.4px 0 #fdcd0b;
}

article > .button,
.article > .button {
  margin-right: auto;
}

article > .image,
.article > .image {
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

/* Button */
.button {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 12px 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(#bcff50), to(#08b83a));
  background: -webkit-linear-gradient(top, #bcff50 0%, #08b83a 100%);
  background: -moz-linear-gradient(top, #bcff50 0%, #08b83a 100%);
  background: -o-linear-gradient(top, #bcff50 0%, #08b83a 100%);
  background: linear-gradient(180deg, #bcff50 0%, #08b83a 100%);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  text-align: center;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 153px;
  min-height: 48px;
  position: relative;
}

.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(8, 184, 58, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(8, 184, 58, 0.9);
  box-shadow: 0 0 20px 0 rgba(8, 184, 58, 0.9);
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 12px;
}

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  background: #2b1234;
  color: #fdcd0b;
  border: 1px solid #fdcd0b;
  padding-top: 11px;
  padding-bottom: 11px;
}

.button.inverse:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(253, 205, 11, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(253, 205, 11, 0.9);
  box-shadow: 0 0 20px 0 rgba(253, 205, 11, 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: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #41294a;
}

.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: #2b1234;
  -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: 75px;
  overflow: visible;
  padding-top: 13px;
  padding-bottom: 13px;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
  max-width: 137px;
}

.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 120px;
}

.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 {
  position: relative;
  padding-left: 50px;
}

.header__menu ul li + li::before {
  content: '';
  background: url('../images/menu-divider.svg');
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  width: 30px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
}

.header__menu ul a {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  color: #fff;
}

.header__menu ul a:hover {
  color: #fdcd0b;
}

.header__button {
  min-width: 106px;
  margin-top: 0;
}

.header__signup {
  margin-left: 16px;
}

/* Languages */
.header__language {
  margin-left: 16px;
}

.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;
}

/* Main */
.main {
  position: relative;
  padding: 75px 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% - 260px - 10px);
  -moz-box-flex: 1;
  flex: 1 1 calc(100% - 260px - 10px);
  margin-left: 260px;
}

.sidebar__links-main {
  display: none;
}

/* Sidebar */
.sidebar {
  width: 260px;
  position: fixed;
  top: 75px;
  left: 10px;
  height: -webkit-calc(100vh - 75px);
  height: -moz-calc(100vh - 75px);
  height: calc(100vh - 75px);
  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 10px;
}

.sidebar__button {
  min-height: 52px;
  min-width: 240px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  color: #2b1234;
  text-align: left;
  padding: 16px 16px 16px 60px;
}

.sidebar__button:hover {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 0 12px 0 rgba(10, 185, 58, 0.9);
  -moz-box-shadow: 0 0 12px 0 rgba(10, 185, 58, 0.9);
  box-shadow: 0 0 12px 0 rgba(10, 185, 58, 0.9);
}

.sidebar__button-wheel {
  margin-top: 0;
}

.sidebar__button img {
  position: absolute;
}

.sidebar__button-mission img {
  max-width: 40px;
  left: 8px;
  top: 6px;
}

.sidebar__button-wheel img {
  max-width: 45px;
  left: 0;
  bottom: 0;
}

.sidebar__menu ul {
  background: #41294a;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 10px 10px 10px 20px;
  -webkit-box-shaow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  margin-top: 16px;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li + li {
  margin-top: 10px;
}

.sidebar__menu li a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.71429;
  color: #fff;
  padding: 6px 46px;
}

.sidebar__menu li a:hover {
  color: #fdcd0b;
}

.sidebar__menu li a img {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar__menu li a img:last-of-type {
  opacity: 0;
}

.sidebar__menu li a:hover img:last-of-type {
  opacity: 1;
}

.sidebar__menu li a:hover span {
  color: #fdcd0b;
}

.sidebar__menu li a small {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 1px 8px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, left top, left bottom, from(#bcff50), to(#08b83a));
  background: -webkit-linear-gradient(top, #bcff50 0%, #08b83a 100%);
  background: -moz-linear-gradient(top, #bcff50 0%, #08b83a 100%);
  background: -o-linear-gradient(top, #bcff50 0%, #08b83a 100%);
  background: linear-gradient(180deg, #bcff50 0%, #08b83a 100%);
}

.application__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 74px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 22px 100px 22px 12px;
  -webkit-box-shadow: 1px 3px 0 0 #26102e;
  -moz-box-shadow: 1px 3px 0 0 #26102e;
  box-shadow: 1px 3px 0 0 #26102e;
  background: #3c2944;
  margin-bottom: 16px;
  margin-top: 30px;
}

.application__button:hover {
  background: #41294a;
}

.application__button span {
  display: block;
  max-width: 132px;
}

.application__button span:first-of-type {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  color: #fff;
}

.application__button span:last-of-type {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.33333;
  color: #ba9cb4;
  margin-top: 3px;
}

.application__button img {
  position: absolute;
  bottom: 0;
  right: 8px;
  max-width: 75px;
  max-height: none;
}

.sidebar__links {
  -webkit-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2), 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2), 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2), 0 5px 40px 0 rgba(0, 0, 0, 0.2);
  background: #41294a;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fdcd0b;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 10px 47px 10px 15px;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-nav.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.sidebar__links-button:hover {
  background: #3c2944;
}

.sidebar__links-button.active:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sidebar__links-list {
  padding: 0 15px 15px 15px;
}

.sidebar__links-list li + li {
  margin-top: 5px;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.sidebar__links-list a:hover {
  color: #fdcd0b;
  text-shadow: 0 0.3px #fdcd0b, 0.3px 0 #fdcd0b;
}

/* Prime */
.prime {
  min-height: 461px;
  background: #2b1234;
  -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;
  padding: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.prime__wrap {
  max-width: 700px;
  margin-left: 14px;
}

.prime__rating {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33333;
  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: 15px;
}

.prime__rating-value {
  margin-left: 4px;
}

/* 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%;
  overflow: hidden;
  background: #2b1234;
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.table a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}

.table a:hover {
  color: #fdcd0b;
  text-shadow: 0 0.4px #fdcd0b, 0.4px 0 #fdcd0b;
}

.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;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.table tbody tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.46;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  font-weight: 300;
  line-height: 1.35;
  font-size: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
}

/* Intro */
.intro__table tr > *:first-child {
  max-width: 245px;
}

.intro__table tr > th {
  text-transform: initial;
}

.intro__table tr > td {
  font-weight: 300;
}

/* Intro__compare*/
.intro__compare > * {
  overflow: hidden;
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #2b1234;
}

.compare__heading {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.65;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 10px 12px 70px;
}

.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: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
}

.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: 0px 16px 16px 60px;
}

.intro__compare ul li + li {
  margin-top: 12px;
}

.intro__compare ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #fdcd0b;
  top: 7px;
  margin: auto;
}

/* Cards */
ul.cards {
  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-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px -8px -8px -8px;
}

ul.cards > li {
  background: #2a2829;
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  margin: 8px;
}

ul.cards > li::before {
  display: none;
}

ul.cards > li h3 {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: #2b1234;
  padding: 16px 20px;
}

.card__text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
  background: #4e0094;
  padding: 12px 20px;
}

/* Tournaments */
ul.tournaments__cards li {
  width: -webkit-calc((100% - 48px) / 3);
  width: -moz-calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
}

/* Upto */
.content.upto__content {
  min-height: 425px;
  background: #2b1234;
  -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;
  max-width: 620px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(43, 18, 52, 0.7);
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 32px;
}

.upto__content-left .upto__wrap {
  margin-left: 80px;
}

.upto__content-right .upto__wrap {
  margin-right: 80px;
}

.upto__text {
  font-weight: 700;
  font-size: 31px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}

.upto__button {
  margin-top: 24px;
}

/* List */
.content__list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 20px;
  background: #2a2829;
  overflow: hidden;
}

ul.list > li,
ol.list > li {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  padding: 8.5px 8px 8.5px 55px;
  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;
  background: rgba(43, 18, 52, 0.9);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

ul.list > li + li,
ol.list > li + li {
  margin-top: 10px;
}

ul.list > li::before,
ol.list > li::before {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background: #fdcd0b;
  width: 40px;
  height: 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;
  text-shadow: none;
  padding: 4px;
  text-align: center;
}

ul.list > li::before {
  content: '';
  background-image: url('../images/icon-list.svg');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  background-size: 20px 20px;
}

/* List-counter  */
ol.list > li::before {
  content: counter(ol);
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.11111;
  text-align: center;
  color: #2b1234;
}

/* Attached */
ol.list > li.attached {
  padding-left: 79px;
}

ol.list > li.attached::before {
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  background: #fdcd0b;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 56px;
}

/* Frame */
.frame {
  position: relative;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.frame-bg {
  background: #4e0094;
  border: 1px solid #fdcd0b;
}

.frame-blur {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(42, 40, 41, 0.2);
}

.frame > * + * {
  margin-top: 16px;
}

.frame > .background + * {
  margin-top: 0;
}

.frame > * {
  position: relative;
}

/* Logining */
.login__content .frame {
  min-height: 350px;
  padding-top: 90px;
  margin-top: -50px;
}

.login__content p {
  width: -webkit-calc(100% - 200px);
  width: -moz-calc(100% - 200px);
  width: calc(100% - 200px);
  -webkit-align-self: flex-start;
  align-self: flex-start;
}

.login__list {
  width: -webkit-calc(100% - 180px);
  width: -moz-calc(100% - 180px);
  width: calc(100% - 180px);
  max-width: 802px;
}

/* Mobile */
.mobile__wrap {
  width: 100%;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
}

.mobile__text {
  position: relative;
  max-width: 693px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.mobile__text > * + * {
  margin-top: 16px;
}

/* 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: 100%;
  max-width: 932px;
  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;
}

.button.download__button {
  display: block;
  padding: 15px 12px;
  background: -webkit-linear-gradient(top, #fdcd0b 0%, #bfa22f 100%), -webkit-linear-gradient(275deg, #fff 0%, #ffce07 100%);
  background: -moz-linear-gradient(top, #fdcd0b 0%, #bfa22f 100%), -moz-linear-gradient(275deg, #fff 0%, #ffce07 100%);
  background: -o-linear-gradient(top, #fdcd0b 0%, #bfa22f 100%), -o-linear-gradient(275deg, #fff 0%, #ffce07 100%);
  background: linear-gradient(180deg, #fdcd0b 0%, #bfa22f 100%), linear-gradient(175deg, #fff 0%, #ffce07 100%);
  border: 1px solid #2b1234;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14286;
  text-transform: uppercase;
  color: #2b1234;
  white-space: normal;
  text-align: center;
  min-width: 256px;
  max-width: 256px;
  min-height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.button.download__button:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(255, 206, 7, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(255, 206, 7, 0.9);
  box-shadow: 0 0 20px 0 rgba(255, 206, 7, 0.9);
}

.download__buttons .download__button {
  margin: 10px;
}

.download__button span {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

/* Bonuses */
ul.bonuses__list > li::before {
  display: none;
}

ul.bonuses__list > li + li {
  margin-top: 20px;
}

/* Games */
.games__table p + ul {
  margin-top: 12px;
}

.games__table ul li {
  padding-left: 0;
}

.games__table ul li + li {
  margin-top: 2px;
}

.games__table ul li::before {
  position: static;
  display: inline-block;
  content: '-';
  width: auto;
  height: auto;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-right: 4px;
}

/* Licence */
.licence__background img {
  opacity: 0.5;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__item {
  counter-increment: ol;
}

.faq-item__title:before {
  content: counter(ol) '.';
  display: inline-block;
  font: inherit;
  color: inherit;
  margin-right: 4px;
}

.faq__list li {
  position: relative;
  overflow: hidden;
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.faq__list li + li {
  margin-top: 16px;
}

.title.faq-item__title {
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  background: #2b1234;
  padding: 12px 50px 12px 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: 13px;
  right: 20px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.title.faq-item__title:hover {
  color: #fff;
}

.faq-item__desc {
  position: relative;
  padding: 12px 20px;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Reviews */
ul.reviews__list {
  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;
}

ul.reviews__list li {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
  background: rgba(43, 18, 52, 0.92);
  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: 10px;
}

ul.reviews__list li::before {
  display: none;
}

ul.reviews__list li > * {
  position: relative;
}

.review__title {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: #fdcd0b;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.review__name {
  white-space: nowrap;
}

.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-left: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 150px;
  -moz-box-flex: 0;
  flex: 0 1 150px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.review__rating img {
  position: relative;
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 26px;
  -moz-box-flex: 0;
  flex: 0 1 26px;
}

.review__rating img + img {
  margin-left: 2px;
}

/* Rating */
.rating__table {
  width: 100%;
  margin-top: 16px;
}

.rating__table tbody {
  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: -8px;
}

.rating__table tr {
  width: -webkit-calc((100% - 80px) / 5);
  width: -moz-calc((100% - 80px) / 5);
  width: calc((100% - 80px) / 5);
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 20px 8px;
  background: #2b1234;
  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;
  color: #fff;
  text-align: center;
  margin: 8px;
}

.rating__table table tr td:nth-child(1) img {
  max-width: 54px;
}

.rating__table table tr td:nth-child(2) {
  background: #fdcd0b;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 6px 8px;
  min-width: 102px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.65;
  text-transform: uppercase;
  text-align: center;
  color: #2b1234;
  margin: 20px 0;
}

.rating__table table tr td:nth-child(3) {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

/* Summary */
.content.summary {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.summary__wrap {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(43, 18, 52, 0.7);
  border: 1px solid #fdcd0b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 20px;
  max-width: 900px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  margin: 10px 180px 10px 10px;
}

.summary__wrap h2 {
  padding: 0;
}

.summary__wrap h2::before {
  display: none;
}

.summary__wrap > * + * {
  margin-top: 20px;
}

.summary__wrap > p {
  margin-top: 20px;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: -60px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.main__arrowtop {
  height: 72%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
  width: 40px;
  height: 40px;
}

.main__arrowtop a img {
  max-width: 40px;
}

.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: 80px;
  margin-bottom: 40px;
  padding: 60px 20px 0px 280px;
}

.footer:before {
  content: '';
  position: absolute;
  left: 280px;
  right: 20px;
  height: 40px;
  background: url('../images/icon-footer.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.footer::before {
  top: 0;
}

.footer__countries {
  width: 100%;
  margin-bottom: 32px;
}

.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;
  justify-content: center;
  margin: -8px;
}

.footer__countries li {
  margin: 8px;
}

.footer__countries li a {
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  background: #41294a;
  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(65, 41, 74, 0.5);
  -webkit-box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.14);
  -moz-box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.14);
}

.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__menu {
  max-width: 760px;
  margin-bottom: 32px;
}

.footer__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -16px 0;
}

.footer__menu li {
  position: relative;
  margin: 16px 0;
}

.footer__menu li:nth-child(4) {
  padding-left: 0;
}

.footer__menu li:nth-child(4)::before {
  display: none;
}

.footer__menu li + li {
  padding-left: 67px;
}

.footer__menu li + li::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  display: block;
  width: 3px;
  height: 32px;
  background: #fdcd0b;
}

.footer__menu li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
}

.footer__menu li a:hover {
  color: #fdcd0b;
}

.footer__payments {
  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-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: 0 -4px;
}

.footer__payments li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 122px;
  -moz-box-flex: 0;
  flex: 0 0 122px;
  height: 80px;
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: 4px;
}

.footer__payments li a img {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__payments li a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__info {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding-top: 64px;
}

.footer__info:before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(254, 192, 126, 0)), color-stop(50%, rgba(253, 205, 10, 1)), to(rgba(254, 192, 126, 0)));
  background: -webkit-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(253, 205, 10, 1) 50%, rgba(254, 192, 126, 0) 100%);
  background: -moz-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(253, 205, 10, 1) 50%, rgba(254, 192, 126, 0) 100%);
  background: -o-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(253, 205, 10, 1) 50%, rgba(254, 192, 126, 0) 100%);
  background: linear-gradient(90deg, rgba(254, 192, 126, 0) 0%, rgba(253, 205, 10, 1) 50%, rgba(254, 192, 126, 0) 100%);
}

.footer__age {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40px;
  -moz-box-flex: 0;
  flex: 0 0 40px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: #e93e3a;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.71429;
  text-transform: uppercase;
  color: #fff;
  padding: 8px;
  margin-left: 24px;
}

.footer__text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 24px - 40px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 24px - 40px);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71429;
  color: #fff;
}

.footer__text p + p {
  margin-top: 24px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  width: auto;
  margin-bottom: 15px;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.breadcrumbs > li:not(:last-child) a {
  opacity: 0.84;
}

.breadcrumbs > li:not(:last-child) a:hover {
  opacity: 1;
}

.breadcrumbs > li a:not([href]) {
  opacity: 1;
  font-weight: 900;
}

.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 10px;
}

/* BONUS PAGE */
.bonus .prime__wrap {
  max-width: 695px;
}

/* Welcome */
.welcome__background img {
  opacity: 0.6;
}

.welcome .frame-bg {
  background: rgba(78, 0, 148, 0.9);
}

ol.welcome__list > li:nth-child(8)::before {
  content: '4';
}

ol.welcome__list > li:nth-child(9)::before {
  content: '5';
}

.pages .summary__wrap {
  max-width: 784px;
}

/* APP PAGE */
.app .prime__wrap {
  max-width: 750px;
}

.app .download__buttons {
  max-width: 1032px;
}

.android__wrap .mobile__text {
  width: 100%;
  max-width: none;
  margin-right: 0;
}

/* Features */
ul.features__cards li {
  width: 100%;
}

ul.features__cards li h3 {
  text-align: left;
  color: #fdcd0b;
}

/* Require */
.require__item > * + * {
  margin-top: 16px;
}

.require__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.require__item .list li {
  text-transform: initial;
}

.require__image {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

.web__background img {
  opacity: 0.6;
}

.app .summary__wrap {
  max-width: 708px;
}

.upper {
  text-transform: uppercase;
}
