@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: #292526;
  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: #fec07e;
  text-align: center;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.decor {
  position: relative;
  display: inline-block;
  padding: 0 96px;
  width: auto;
}

.decor:before,
.decor:after {
  content: '';
  position: absolute;
  background: url('../images/heading-divider.svg');
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 24px;
  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;
}

h2,
.title.high {
  font-size: 32px;
  word-break: break-word;
}

h3,
.title.middle {
  font-size: 20px;
  line-height: 1.6;
  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: 20px;
}

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: 12px;
  height: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #fec07e;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

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: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

article p a:hover,
.article p a:hover,
article li a:hover,
.article li a:hover {
  color: #fec07e;
  text-shadow: 0 0.4px #fec07e, 0.4px 0 #fec07e;
}

article > .button,
.article > .button {
  margin-right: auto;
}

/* Button */
.button {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 13px 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fec882), to(#ffa06d));
  background: -webkit-linear-gradient(top, #fec882 0%, #ffa06d 100%);
  background: -moz-linear-gradient(top, #fec882 0%, #ffa06d 100%);
  background: -o-linear-gradient(top, #fec882 0%, #ffa06d 100%);
  background: linear-gradient(180deg, #fec882 0%, #ffa06d 100%);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.46667;
  text-align: center;
  color: #292526;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 200px;
  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(254, 192, 126, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(254, 192, 126, 0.9);
  box-shadow: 0 0 20px 0 rgba(254, 192, 126, 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: #292526;
  color: #fec07e;
  border: 1px solid #fec07e;
}

/* Special */
.image img,
.background img {
  display: block;
  position: relative;
  margin: auto;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}

.js-expand-content.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgba(255, 255, 255, 1);
  line-height: 1;
}

use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* Content */
.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  margin-top: 20px;
  padding: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #322e2f;
}

.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: #292526;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  margin-top: 0;
  min-height: 80px;
  overflow: visible;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
  max-width: 120px;
}

.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 158px;
}

.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: 72px;
}

.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: 40px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
}

.header__menu ul a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #94897a;
}

.header__menu ul a:hover {
  color: #fff;
}

.header__button {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 40px;
  min-width: 112px;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 0;
}

.header__login {
  padding-top: 7px;
  padding-bottom: 7px;
}

.header__signup {
  margin-left: 8px;
}

/* Languages */
.header__language {
  text-transform: uppercase;
  color: #fec07e;
  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: 24px;
}

.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% - 278px - 10px);
  -moz-box-flex: 1;
  flex: 1 1 calc(100% - 278px - 10px);
  margin-left: 278px;
}

.sidebar__links-main {
  display: none;
}

/* Sidebar */
.sidebar {
  width: 278px;
  position: fixed;
  top: 80px;
  left: 10px;
  height: -webkit-calc(100vh - 80px);
  height: -moz-calc(100vh - 80px);
  height: calc(100vh - 80px);
  padding-bottom: 20px;
  overflow-y: auto;
  z-index: 10;
}

.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: 258px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.06667;
  text-align: left;
  color: #2b1234;
  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 10px 0 rgba(254, 192, 126, 0.9);
  -moz-box-shadow: 0 0 10px 0 rgba(254, 192, 126, 0.9);
  box-shadow: 0 0 10px 0 rgba(254, 192, 126, 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:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-image: url(../images/sidebar-divider.svg);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  margin: 16px 0;
}

.sidebar__menu ul {
  background: #2a2829;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 16px;
  margin-top: 16px;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li + li {
  margin-top: 16px;
}

.sidebar__menu li a {
  position: relative;
  display: block;
  line-height: 1.46667;
  color: #94897a;
  padding: 2px 32px;
}

.sidebar__menu li a:hover {
  color: #fff;
}

.sidebar__menu li a img {
  position: absolute;
  left: 0px;
  top: 0px;
  max-width: 24px;
}

.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: #fff;
}

.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: 24px;
  line-height: 1.46667;
  text-align: center;
  color: #292526;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 1px 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fec882), to(#ffa06d));
  background: -webkit-linear-gradient(top, #fec882 0%, #ffa06d 100%);
  background: -moz-linear-gradient(top, #fec882 0%, #ffa06d 100%);
  background: -o-linear-gradient(top, #fec882 0%, #ffa06d 100%);
  background: linear-gradient(180deg, #fec882 0%, #ffa06d 100%);
}

.application__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 82px;
  border: 1px solid #6c645b;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 13px 24px;
  background: #4e4842;
  margin-bottom: 16px;
}

.application__button:hover {
  background: rgba(78, 72, 66, 0.5);
}

.application__button span {
  display: block;
  max-width: 123px;
}

.application__button span:first-of-type {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.46667;
  text-transform: capitalize;
  color: #fff;
}

.application__button span:last-of-type {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #94897a;
  margin-top: 8px;
}

.application__button img {
  position: absolute;
  bottom: 0;
  right: 24px;
  max-width: 63px;
}

.sidebar__links {
  background: #322e2f;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.46667;
  text-transform: uppercase;
  color: #fec07e;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 9px 58px 9px 24px;
  overflow: hidden;
  background: #4e4842;
  border: 1px solid #6c645b;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.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: 8px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.sidebar__links-button:hover {
  background: rgba(78, 72, 66, 0.5);
}

.sidebar__links-button.active:before {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.sidebar__links-list {
  padding: 16px;
}

.sidebar__links-list li + li {
  margin-top: 16px;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  line-height: 1.65;
  color: #94897a;
}

.sidebar__links-list a:hover {
  color: #fff;
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

/* Prime */
.prime {
  min-height: 450px;
  -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%;
  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: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.prime__wrap {
  max-width: 750px;
}

.prime__rating {
  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: 16px;
}

.prime__rating-value {
  margin-left: 10px;
}

.prime__title {
  word-break: break-word;
}

/* 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%;
  background: #2a2829;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.table a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}

.table a:hover {
  color: #fec07e;
  text-shadow: 0 0.4px #fec07e, 0.4px 0 #fec07e;
}

.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.14);
}

.table tbody tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  line-height: 1.35;
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
}

/* Upto */
.content.upto__content {
  min-height: 360px;
  -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: 473px;
}

.upto__content-left .upto__wrap {
  margin-left: 110px;
}

.upto__content-right .upto__wrap {
  margin-right: 110px;
}

.upto__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 8px;
}

.upto__button {
  margin-top: 30px;
}

/* 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: 600;
  font-size: 16px;
  padding: 3px 8px 3px 48px;
  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;
}

ul.list > li + li {
  margin-top: 20px;
}

ol.list > li + li {
  margin-top: 56px;
}

ul.list > li::before,
ol.list > li::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background: #fec07e;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 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: 17px 17px;
  -moz-background-size: 17px 17px;
  background-size: 17px 17px;
}

/* List-counter  */
ol.list {
  counter-reset: step;
}

ol.list > li {
  counter-increment: step;
}

ol.list > li::before {
  content: attr(data-step);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  color: #2a2829;
}

ol.list > li + li::after {
  width: 16px;
  height: 16px;
  content: url('../images/icon-list-divider.svg');
  position: absolute;
  left: 8px;
  top: -36px;
}

/* Clear */
ul > li.clear {
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  border: none;
  min-height: 0;
}

ul > li.clear::before,
ol > li.clear::before {
  display: none;
}

/* Mobile */
.mobile__wrap {
  width: 100%;
  background: #292526;
  position: relative;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(42, 40, 41, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
}

.mobile__text {
  position: relative;
  max-width: 663px;
  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: 252px;
  -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: 842px;
  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: -5px;
}

.button.download__button {
  display: block;
  padding: 7px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.28;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 236px;
  max-width: 236px;
  min-height: 56px;
  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;
}

.download__buttons .download__button {
  margin: 5px;
}

.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: left;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

/* Frame */
.frame {
  position: relative;
  width: 100%;
  background: #2a2829;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  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-blur {
  -webkit-backdrop-filter: blur(80px);
  backdrop-filter: blur(80px);
  background: rgba(42, 40, 41, 0.2);
}

.frame > * + * {
  margin-top: 16px;
}

/* Bonuses */
.bonus__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  background: #2a2829;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 20px;
}

.bonus__wrapper-column {
  -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;
}

.bonus__wrapper > *:last-child {
  margin-left: 20px;
}

.bonus__image {
  position: relative;
  width: 310px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  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: 24px 10px;
}

.bonus__text {
  width: -webkit-calc(100% - 310px - 20px);
  width: -moz-calc(100% - 310px - 20px);
  width: calc(100% - 310px - 20px);
}

.bonus__text > * + * {
  margin-top: 16px;
}

.bonuses__table {
  background: rgba(35, 8, 53, 0.8);
}

/* Cards */
ul.cards > li {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(41, 37, 38, 0.5);
  border: 1px solid #fec07e;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  text-align: center;
  padding: 24px 20px;
}

ul.cards > li h3 {
  text-align: center;
}

/* Games */
ul.games__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-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px -8px -8px -8px;
}

ul.games__cards > li {
  width: -webkit-calc((100% - 32px) / 2);
  width: -moz-calc((100% - 32px) / 2);
  width: calc((100% - 32px) / 2);
  margin: 8px;
}

ul.games__cards > li::before {
  display: none;
}

ul.games__cards > li:nth-child(n + 3) {
  width: -webkit-calc((100% - 48px) / 3);
  width: -moz-calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
}

/* 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% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
  border: 1px solid #fec07e;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px;
  overflow: hidden;
  background: #2a2829;
  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;
  text-align: center;
  margin: 10px;
}

.reviews__content ul li::before {
  display: none;
}

.reviews__content ul li > * {
  position: relative;
}

.review__title {
  background: #322e2f;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  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;
}

.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: 16px;
}

.review__rating img {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 22px;
  -moz-box-flex: 0;
  flex: 0 1 22px;
}

.review__rating img + img {
  margin-left: 5px;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__list li {
  position: relative;
  overflow: hidden;
  background: #2a2829;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -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: 700;
  font-size: 20px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 54px 14px 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:after {
  content: '';
  background-image: url('../images/icon-faq.svg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 15px;
  right: 16px;
  width: 30px;
  height: 30px;
  -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 {
  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% - 96px) / 6);
  width: -moz-calc((100% - 96px) / 6);
  width: calc((100% - 96px) / 6);
  border: 1px solid #fec07e;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px 8px;
  background: #2a2829;
  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: #322e2f;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 8px;
  min-width: 102px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.65;
  text-transform: uppercase;
  text-align: center;
  color: #fec07e;
  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;
}

/* 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__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: 40px;
  padding: 60px 20px 60px 298px;
}

.footer:before,
.footer:after {
  content: '';
  position: absolute;
  left: 298px;
  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:after {
  bottom: 0;
}

.footer__countries {
  width: 100%;
  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;
  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: #2a2829;
  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(42, 40, 41, 0.5);
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.14);
  -moz-box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 5px 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 {
  margin-top: 32px;
  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: -2px 0;
}

.footer__menu li {
  position: relative;
  margin: 2px 0;
}

.footer__menu li + li {
  padding-left: 35px;
}

.footer__menu li + li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  display: block;
  width: 3px;
  height: 22px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #fec07e;
}

.footer__menu li a {
  text-transform: uppercase;
  color: #94897a;
}

.footer__menu li a:hover {
  color: #fff;
}

.footer__payments {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__payments li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 144px;
  -moz-box-flex: 0;
  flex: 0 1 144px;
  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;
}

.footer__payments li + li {
  margin-left: 8px;
}

.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__age {
  width: 100%;
  text-align: center;
}

.footer__age:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(254, 192, 126, 0)), to(rgba(254, 192, 126, 0)));
  background: -webkit-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 0) 100%);
  background: -moz-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 0) 100%);
  background: -o-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(254, 192, 126, 0)), color-stop(50%, rgba(254, 192, 126, 1)), to(rgba(254, 192, 126, 0)));
  background: -webkit-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 1) 50%, rgba(254, 192, 126, 0) 100%);
  background: -moz-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 1) 50%, rgba(254, 192, 126, 0) 100%);
  background: -o-linear-gradient(left, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 1) 50%, rgba(254, 192, 126, 0) 100%);
  background: linear-gradient(90deg, rgba(254, 192, 126, 0) 0%, rgba(254, 192, 126, 1) 50%, rgba(254, 192, 126, 0) 100%);
  margin: 32px 0;
}

.footer__age span {
  display: block;
  -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: 0 auto;
}

.footer__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.46667;
  text-align: center;
  color: #94897a;
  margin-top: 32px;
}

.footer__text p + p {
  margin-top: 24px;
}

.footer__image {
  margin-top: 32px;
}

.footer__image img {
  max-width: 150px;
}

/* 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: 400;
  font-size: 15px;
  text-transform: uppercase;
}

.breadcrumbs > li:not(:last-child) a {
  opacity: 0.8;
}

.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 2px;
}

/* BONUS PAGE */
/* Summary */
.content.summary {
  min-height: 360px;
  -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(2px);
  backdrop-filter: blur(2px);
  background: rgba(42, 40, 41, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 20px;
  max-width: 689px;
  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: 0 180px 0 36px;
}

.summary__wrap > * + * {
  margin-top: 20px;
}

.summary__wrap > p {
  margin-top: 20px;
}

.summary__background img {
  -o-object-position: 100%;
  object-position: 100%;
}

/* APP PAGE */
.app .prime__wrap {
  max-width: 846px;
}

.app .download__buttons {
  max-width: 938px;
}

/* Place */
.place__content p,
.place__content .frame {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  max-width: 541px;
}

.app .frame-blur {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}

.app .summary__wrap {
  margin-left: 0;
  max-width: 800px;
}
@media screen and (min-width: 1580px) {
  .cover {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .sidebar {
    left: -webkit-calc(50% - ((1580px - 20px) / 2));
    left: -moz-calc(50% - ((1580px - 20px) / 2));
    left: calc(50% - ((1580px - 20px) / 2));
  }

  .footer {
    padding-left: -webkit-calc(50% - ((1580px - 298px - 298px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 298px - 298px) / 2));
    padding-left: calc(50% - ((1580px - 298px - 298px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .footer:before,
  .footer:after {
    left: -webkit-calc(50% - ((1580px - 298px - 298px) / 2));
    left: -moz-calc(50% - ((1580px - 298px - 298px) / 2));
    left: calc(50% - ((1580px - 298px - 298px) / 2));
    right: -webkit-calc(50% - ((1580px - 40px) / 2));
    right: -moz-calc(50% - ((1580px - 40px) / 2));
    right: calc(50% - ((1580px - 40px) / 2));
  }

  .main__arrowtop {
    right: -webkit-calc(50% - ((1580px - 40px) / 2));
    right: -moz-calc(50% - ((1580px - 40px) / 2));
    right: calc(50% - ((1580px - 40px) / 2));
  }
}

@media screen and (max-width: 1400px) {
  /* App */
  .app .prime__background img {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1300px) {
  /* Rating */
  .rating__table tr {
    width: -webkit-calc((100% - 64px) / 4);
    width: -moz-calc((100% - 64px) / 4);
    width: calc((100% - 64px) / 4);
  }
}

@media screen and (max-width: 1200px) {
  .cover {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer:before,
  .footer:after {
    left: 20px;
  }

  .main__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    flex: 1 1 100%;
    margin-left: 0;
  }

  .header__logo {
    margin-left: 0;
  }

  .header__menu {
    margin-left: auto;
  }

  .sidebar {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0;
    margin: 20px auto 0;
    width: 100%;
  }

  .sidebar__menu,
  .application__button {
    display: none;
  }

  .sidebar__wrap {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar__links-button:before {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }

  .sidebar__links-button.active:before {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }

  .sidebar__links-list {
    display: none;
  }
}

@media screen and (max-width: 1025px) {
  .header__logo {
    margin-right: auto;
  }

  .menu-button {
    display: block;
    background-color: transparent;
    padding: 10px;
    width: 40px;
    height: 40px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    flex: none;
    margin-left: 16px;
  }

  .menu-button svg {
    display: block;
    margin: auto;
  }

  .menu-button svg rect {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    fill: #fffaf3;
  }

  .menu-button:hover svg rect {
    fill: #fec07e;
  }

  .menu-button.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .menu-button.active svg rect:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 2);
    -moz-transform: scale(0, 2);
    -o-transform: scale(0, 2);
    transform: scale(0, 2);
  }

  .menu-button.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    background: #292526;
    z-index: 100;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: none;
    padding: 25px;
    text-align: center;
  }

  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .header__menu ul li + li {
    padding: 0;
  }

  .header__menu ul li + li:before {
    display: block;
    position: static;
    margin-bottom: 10px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 70%;
    object-position: 70%;
    opacity: 0.7;
  }

  .app .prime__background img {
    -o-object-position: 80%;
    object-position: 80%;
  }

  .app .prime__wrap {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: rgba(50, 46, 47, 0.8);
  }

  .prime__wrap {
    margin-left: 0;
  }

  /* Upto */
  .content .upto__wrap {
    margin-left: 0;
    margin-right: 0;
  }

  /* Mobile */
  .mobile__text {
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 850px) {
  h1,
  .title.general {
    font-size: 30px;
    line-height: 1.2;
  }

  .decor {
    padding: 0 80px;
  }

  .decor:before,
  .decor:after {
    width: 70px;
  }

  h2,
  .title.high {
    font-size: 24px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer:before,
  .footer:after {
    left: 15px;
    right: 15px;
  }

  .content {
    padding: 15px;
  }

  .main__arrowtop {
    right: 15px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 90%;
    object-position: 90%;
  }

  .banner__wrap {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: rgba(50, 46, 47, 0.8);
  }

  .app .prime__background img {
    -o-object-position: 95%;
    object-position: 95%;
  }

  /* Table */
  .table tr {
    padding-left: 12px;
    padding-right: 12px;
  }

  .table tr > * + * {
    padding-left: 8px;
  }

  /* Mobile */
  .mobile__text {
    width: 100%;
  }

  .mobile__background img {
    -o-object-position: 70%;
    object-position: 70%;
    opacity: 0.5;
  }

  /* Bonuses */
  .bonus__image {
    width: 240px;
  }

  .bonus__text {
    width: -webkit-calc(100% - 240px - 20px);
    width: -moz-calc(100% - 240px - 20px);
    width: calc(100% - 240px - 20px);
  }

  /* Rating */
  .rating__table tr {
    width: -webkit-calc((100% - 48px) / 3);
    width: -moz-calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
  }
}

@media screen and (max-width: 768px) {
  /* Double */
  .double {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .double > * {
    width: 100%;
  }

  .double > *:last-child {
    margin: 20px 0 0 0;
  }

  /* Download__content */
  .download__background img {
    opacity: 0.8;
  }

  .download__buttons {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }

  /* Table-wide */
  .table.table-wide {
    overflow: auto;
  }

  .table.table-wide table {
    width: 820px;
  }

  /* Intro__table */
  .intro__table td:first-child,
  .intro__table th:first-child {
    max-width: 240px;
  }

  /* Vip__table */
  .vip__table td:first-child,
  .vip__table th:first-child {
    max-width: 140px;
  }

  /* Slots */
  .slots__table td:last-child,
  .slots__table th:last-child {
    max-width: 80px;
  }

  /* Games */
  ul.games__cards > li:nth-child(1) {
    width: 100%;
  }

  ul.games__cards > li:nth-child(n + 2) {
    width: -webkit-calc((100% - 32px) / 2);
    width: -moz-calc((100% - 32px) / 2);
    width: calc((100% - 32px) / 2);
  }

  /* Reviews */
  .reviews__content ul li {
    width: 100%;
  }

  /* Summary */
  .summary__background img {
    -o-object-position: 95%;
    object-position: 95%;
  }

  .summary__wrap {
    margin-left: 0;
    padding: 15px 10px;
  }
}

@media screen and (max-width: 650px) {
  h1,
  .title.general {
    font-size: 26px;
  }

  .decor {
    padding: 0 60px;
  }

  .decor:before,
  .decor:after {
    width: 50px;
  }

  h2,
  .title.high {
    font-size: 22px;
  }

  .header > .header__button {
    display: none;
  }

  .header__menu .header__button {
    display: inline-block;
    min-width: 170px;
    margin: 0 5px 20px;
  }

  .main__buttons {
    background: rgba(41, 37, 38, 0.9);
    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;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 12px;
  }

  .main__buttons .button {
    width: -webkit-calc(50% - 4px);
    width: -moz-calc(50% - 4px);
    width: calc(50% - 4px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    min-width: 0;
  }

  /* Prime */
  .banner__wrap {
    padding: 24px 15px;
  }

  /* Table */
  .table {
    overflow: auto;
  }

  .table table {
    width: 620px;
  }

  /* Upto */
  .content.upto__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  .upto__content-left .upto__background img {
    -o-object-position: 70%;
    object-position: 70%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 30%;
    object-position: 30%;
  }

  /* Mobile */
  .mobile__wrap {
    padding: 10px;
  }

  .mobile__text {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  /* Bonuses */
  .bonus__wrapper {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .bonus__wrapper > *:last-child {
    margin: 20px 0 0 0;
  }

  .bonus__wrapper > * {
    width: 100%;
  }

  .bonus__image {
    min-height: 250px;
  }

  .bonus__background img {
    -o-object-position: top;
    object-position: top;
  }

  .main__arrowtop a {
    bottom: 72px;
  }

  /* FOOTER */
  .footer {
    margin-bottom: 60px;
  }

  /* BONUS */
  /* Summary */
  .summary__wrap {
    margin-right: 0;
  }
}

@media screen and (max-width: 550px) {
  /* Cards */
  ul.cards > li {
    padding: 15px 10px;
  }

  /* Reviews */
  ul.games__cards > li:nth-child(n + 2) {
    width: 100%;
  }

  /* Rating */
  .rating__table tr {
    width: -webkit-calc((100% - 32px) / 2);
    width: -moz-calc((100% - 32px) / 2);
    width: calc((100% - 32px) / 2);
  }

  /* FOOTER */
  .bottom__logo {
    margin-left: auto;
  }
}

@media screen and (max-width: 450px) {
  h1,
  .title.general {
    font-size: 24px;
    text-align: center;
  }

  .decor {
    padding: 0 38px;
  }

  .decor:before,
  .decor:after {
    width: 30px;
  }

  h2,
  .title.high {
    font-size: 20px;
  }

  h3,
  .title.middle {
    font-size: 18px;
  }

  h4,
  .title.mini {
    font-size: 16px;
  }

  .content {
    padding: 10px;
  }

  .header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header__logo img {
    max-width: 130px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main__arrowtop {
    right: 10px;
  }

  article > .button,
  .article > .button {
    margin-left: auto;
  }

  /* Prime */
  .banner__wrap {
    padding: 15px 10px;
  }

  .prime__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* List */
  .content__list {
    padding: 10px;
  }

  ul.list > li,
  ol.list > li {
    padding-left: 40px;
  }

  ol.list > li + li {
    margin-top: 36px;
  }

  ol.list > li + li::after {
    top: -26px;
  }

  /* Bonuses */
  .bonus__wrapper {
    padding: 10px;
  }

  /* Frame */
  .frame {
    padding: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  /* Reviews */
  .reviews__content ul li {
    padding: 15px 10px;
  }

  .review__title {
    padding-left: 8px;
    padding-right: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
  }

  .review__rating {
    margin: 12px 0 0 0;
  }

  /* FAQ */
  .title.faq-item__title {
    padding: 10px 44px 10px 10px;
  }

  .faq-item__title:after {
    top: 7px;
    right: 8px;
  }

  .faq-item__desc {
    padding: 5px 10px;
  }

  /* Rating */
  .rating__table tbody {
    margin: -4px;
  }

  .rating__table tr {
    padding: 12px 6px;
    width: -webkit-calc((100% - 16px) / 2);
    width: -moz-calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    margin: 4px;
  }

  .rating__table table tr td:nth-child(2) {
    margin: 10px 0;
  }

  .rating__table table tr td:nth-child(3) {
    font-size: 16px;
  }

  /* FOOTER */
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer:before,
  .footer:after {
    left: 10px;
    right: 10px;
  }

  .footer__countries ul {
    margin: -3px;
  }

  .footer__countries li {
    margin: 3px;
  }

  .footer__countries li a {
    padding: 10px;
  }

  .footer__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    margin: 0;
  }

  .footer__menu li {
    margin: 0;
  }

  .footer__menu li + li {
    padding: 27px 0 00;
  }

  .footer__menu li + li::before {
    height: 3px;
    width: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 12px;
  }
}
