@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: #130404;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  margin-top: 16px;
  width: 100%;
}

.title + p,
p:first-child {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* Title */
h1,
h2,
h3,
h4 {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  color: #fff72e;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.decor {
  position: relative;
  display: inline-block;
  padding: 0 80px;
  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: 64px;
  height: 18px;
  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;
  text-align: center;
}

h3,
.title.middle {
  font-size: 24px;
  line-height: 1.55;
  text-align: left;
}

h4,
.title.mini {
  font-size: 16px;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 16px;
}

article li,
.article li {
  position: relative;
  padding-left: 24px;
}

article li + li,
.article li + li {
  margin-top: 8px;
}

article ol > li,
.article ol > li {
  counter-increment: ol;
}

article ul > li:before,
article ol > li:before,
.article ul > li:before,
.article ol > li:before {
  display: inline-block;
  position: absolute;
  font: inherit;
  color: inherit;
  z-index: 1;
  top: 0;
  left: 8px;
}

article ul > li:before,
.article ul > li:before {
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #fff72e;
  top: 8px;
  left: 4px;
  margin: auto;
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

article p a:hover,
.article p a:hover {
  color: #fff72e;
  text-shadow: 0 0.4px #fff72e, 0.4px 0 #fff72e;
}

article > .button,
.article > .button {
  margin-right: auto;
}

/* Button */
.button {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 9px 18px;
  background: #4cb63a;
  border: 1px solid #4cb63a;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 170px;
  min-height: 45px;
  position: relative;
}

.button:hover {
  background: #130404;
  border: 1px solid #fff72e;
  color: #fff72e;
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 12px;
}

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  border: 1px solid #fff72e;
  background: #130404;
  color: #fff72e;
}
.button.inverse:hover {
  background-color: #4cb63a;
  border: 1px solid #4cb63a;
  color: #fff;
}

/* 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: 32px 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: -webkit-gradient(linear, right top, left top, from(#130404), to(#2d0d0d));
  background: -webkit-linear-gradient(right, #130404 0%, #2d0d0d 100%);
  background: -moz-linear-gradient(right, #130404 0%, #2d0d0d 100%);
  background: -o-linear-gradient(right, #130404 0%, #2d0d0d 100%);
  background: linear-gradient(270deg, #130404 0%, #2d0d0d 100%);
}

.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: #130404;
  -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: 14px;
  padding-bottom: 14px;
}

.header:after {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 247, 46, 0)), color-stop(50%, rgba(255, 247, 46, 1)), color-stop(50%, rgba(255, 247, 46, 1)), to(rgba(255, 247, 46, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  background: linear-gradient(to right, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  height: 3px;
  position: absolute;
  left: 280px;
  right: 20px;
  bottom: -1px;
  z-index: 1;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
  max-width: 124px;
}

.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 135px;
}

.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.webp');
  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: 10px;
  margin: auto;
}

.header__menu ul a {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  color: #fff;
}

.header__menu ul a:hover {
  color: #fff72e;
}

.header__button {
  min-width: 147px;
  margin-top: 0;
}

.header__signup {
  margin-left: 20px;
}

/* Language */
.header__lang {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin-left: 20px;
}

.header__lang img {
  display: block;
  max-width: 24px;
  max-height: 24px;
}

/* Main */
.main {
  position: relative;
  padding: 80px 20px 0 20px;
}

.main__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.main__content {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 -webkit-calc(100% - 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: 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 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  min-height: 60px;
  min-width: 240px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: #fff;
  text-align: left;
  white-space: normal;
  -webkit-box-shadow: inset 0 -3px 0 0 #a0140a, inset 0 1px 0 0 #e4eaea;
  -moz-box-shadow: inset 0 -3px 0 0 #a0140a, inset 0 1px 0 0 #e4eaea;
  box-shadow: inset 0 -3px 0 0 #a0140a, inset 0 1px 0 0 #e4eaea;
  background: -webkit-linear-gradient(214deg, #fad000 8.33%, #bd2916 54.58%);
  background: -moz-linear-gradient(214deg, #fad000 8.33%, #bd2916 54.58%);
  background: -o-linear-gradient(214deg, #fad000 8.33%, #bd2916 54.58%);
  background: linear-gradient(236deg, #fad000 8.33%, #bd2916 54.58%);
  border: none;
  padding: 12px 16px 12px 90px;
  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;
}

.sidebar__button:hover {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
  background: -webkit-linear-gradient(214deg, #fad000 8.33%, #bd2916 54.58%);
  background: -moz-linear-gradient(214deg, #fad000 8.33%, #bd2916 54.58%);
  background: -o-linear-gradient(214deg, #fad000 8.33%, #bd2916 54.58%);
  background: linear-gradient(236deg, #fad000 8.33%, #bd2916 54.58%);
  color: #fff;
  border: none;
}

.sidebar__button-wheel {
  margin-top: 0;
}

.sidebar__button img {
  position: absolute;
  margin-right: 0;
}

.sidebar__button-wheel img {
  max-width: 70px;
  left: 6px;
  bottom: 3px;
}

.sidebar__button-mission img {
  max-width: 90px;
  left: 0;
  bottom: 3px;
}

.sidebar__menu {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px 0 #130404;
  -moz-box-shadow: 0 0 20px 0 #130404;
  box-shadow: 0 0 20px 0 #130404;
  background: #2d0d0d;
  padding: 0 5px 20px 5px;
  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.25;
  color: #d8d3d3;
  padding: 16px 16px 16px 52px;
}

.sidebar__menu li:nth-child(3) a {
  padding-right: 51px;
}

.sidebar__menu li a:hover,
.sidebar__menu li a:hover span {
  color: #fff72e;
}

.sidebar__menu li a img {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  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 small {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28571;
  text-align: center;
  color: #130404;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  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: #4cb63a;
}

.application__button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 74px;
  -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 3px 1px 0 #342525;
  -moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 3px 1px 0 #342525;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 3px 1px 0 #342525;
  background: #412f2f;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  padding: 16px 90px 16px 12px;
  margin-top: 10px;
}

.application__button:hover {
  background: rgba(65, 47, 47, 0.7);
}

.application__button span {
  display: block;
}

.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.2;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.application__button img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 81px;
}

.sidebar__links {
  background: #2d0d0d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  padding: 17px 16px;
  margin-top: 16px;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding-right: 28px;
  overflow: hidden;
}

.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: 2px;
  right: 0px;
  width: 20px;
  height: 20px;
}

.sidebar__links-button:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.sidebar__links-button.active:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sidebar__links-list {
  margin-top: 10px;
}

.sidebar__links-list li + li {
  margin-top: 5px;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.71429;
  color: #fff;
}

.sidebar__links-list a:hover {
  color: #fff72e;
  text-shadow: 0 0.2px #fff72e, 0.2px 0 #fff72e;
}

/* Prime */
.prime {
  min-height: 445px;
  background: #130404;
  -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%;
  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;
  text-align: left;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.prime__wrap {
  max-width: 760px;
  margin-left: 40px;
}

.prime__rating {
  text-transform: uppercase;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.prime__rating-value {
  font-weight: 600;
  margin-left: 18px;
}

.prime__text {
  margin-top: 20px;
}

.prime__button {
  margin-top: 20px;
}

/* Double */
.double,
.frame.double {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
}

.double > *,
.frame.double > * {
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}

.double > *:last-child,
.frame.double > *:last-child {
  margin: 0 0 0 20px;
}

.double__item > * + *,
.frame.double > * + * {
  margin-top: 16px;
}

/* Table */
.table {
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#130404), to(#2d0d0d)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d)) border-box;
  background: -webkit-linear-gradient(right, #130404 0%, #2d0d0d 100%) padding-box, -webkit-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -moz-linear-gradient(right, #130404 0%, #2d0d0d 100%) padding-box, -moz-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -o-linear-gradient(right, #130404 0%, #2d0d0d 100%) padding-box, -o-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: linear-gradient(270deg, #130404 0%, #2d0d0d 100%) padding-box, linear-gradient(180deg, #fff72e, #b22a1d) border-box;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.table a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}

.table a:hover {
  color: #fff72e;
  text-shadow: 0 0.3px #fff72e, 0.3px 0 #fff72e;
}

.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: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  background: #fff72e;
}

.table tbody tr:nth-child(2n + 1) {
  background: rgba(255, 247, 46, 0.05);
}

.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.35;
  color: #13151b;
  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;
}

/* Intro__table */
.intro__table tr > *:first-child {
  max-width: 240px;
  font-weight: 700;
}

/* Intro__compare*/
.intro__compare > * {
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#42340c), to(#42340c)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d)) border-box;
  background: -webkit-linear-gradient(#42340c, #42340c) padding-box, -webkit-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -moz-linear-gradient(#42340c, #42340c) padding-box, -moz-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -o-linear-gradient(#42340c, #42340c) padding-box, -o-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: linear-gradient(#42340c, #42340c) padding-box, linear-gradient(180deg, #fff72e, #b22a1d) border-box;
  border: 2px solid transparent;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 20px;
}

.compare__heading {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 0.8;
  text-transform: uppercase;
  color: #fff;
  min-height: 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;
  padding-left: 64px;
}

.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: 0;
  left: 0;
  width: 48px;
  height: 48px;
}

.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 {
  margin-top: 16px;
  padding-left: 60px;
}

.intro__compare ul li + li {
  margin-top: 14px;
}

.intro__compare ul li::before {
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 4px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #fff72e;
  margin: auto;
}

/* Upto */
.content.upto__content {
  min-height: 450px;
  background: #130404;
  -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;
  width: auto;
  max-width: 673px;
  text-align: left;
}

.upto__content-left .upto__wrap {
  margin-left: 30px;
}

.upto__content-right .upto__wrap {
  margin-right: 30px;
}

.upto__title {
  text-align: left;
  text-transform: uppercase;
}

.upto__text {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.19;
  color: #fff;
  margin-top: 10px;
}

.upto__button {
  margin-top: 24px;
}

/* List */
ul.list > li,
ol.list > li {
  min-height: 48px;
  padding-left: 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;
}

ul.list > li + li,
ol.list > li + li {
  margin-top: 8px;
}

ul.list > li::before,
ol.list > li::before {
  top: 0;
  left: 0;
  background: #fff72e;
  width: 48px;
  height: 100%;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  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: 26px 26px;
  -moz-background-size: 26px 26px;
  background-size: 26px 26px;
}

/* 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: 15px;
  line-height: 1.35;
  text-transform: uppercase;
  color: #1f2038;
}

/* Download__content */
.content.download__content {
  min-height: 224px;
  -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__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.download__image1 img {
  max-width: 334px;
}

.download__image2 img {
  max-width: 368px;
}

.download__buttons {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1056px;
  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;
  gap: 16px;
}

.button.download__button {
  display: block;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.28;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 258px;
  max-width: 258px;
  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;
}

.download__buttons .download__button {
  margin: 0;
}

.download__button span {
  text-align: center;
  min-width: 128px;
}

/* Frame */
.frame,
li.frame {
  position: relative;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#42340c), to(#42340c)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d)) border-box;
  background: -webkit-linear-gradient(#42340c, #42340c) padding-box, -webkit-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -moz-linear-gradient(#42340c, #42340c) padding-box, -moz-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -o-linear-gradient(#42340c, #42340c) padding-box, -o-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: linear-gradient(#42340c, #42340c) padding-box, linear-gradient(180deg, #fff72e, #b22a1d) border-box;
  border: 2px solid transparent;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.frame-blur,
li.frame-blur {
  background: rgba(66, 52, 12, 0.94);
  border: none;
}

.article .frame-blur::before,
.article li.frame-blur::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 2px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d));
  background: -webkit-linear-gradient(top, #fff72e, #b22a1d);
  background: -moz-linear-gradient(top, #fff72e, #b22a1d);
  background: -o-linear-gradient(top, #fff72e, #b22a1d);
  background: linear-gradient(180deg, #fff72e, #b22a1d);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.frame > * + * {
  margin-top: 16px;
}

.frame > * {
  position: relative;
}

.frame > .image + h3,
.frame > .background + h3 {
  margin-top: 0;
}

.frame__image {
  position: absolute;
  bottom: 0;
  right: 3%;
}

.frame__image img {
  max-width: 240px;
}

.frame__text {
  width: 70%;
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.frame__text > * {
  position: relative;
}

.frame__text > * + * {
  margin-top: 16px;
}

/* Games */
ul.games__list > li + li {
  margin-top: 20px;
}

/* Bonuses */
ul.bonuses__list > li.frame::before {
  display: none;
}

ul.bonuses__list > li.frame.frame-blur::before {
  display: block;
}

ul.bonuses__list > li + li {
  margin-top: 20px;
}

/* Double frame */
.frame.double__frame {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
}

.frame.double__frame > *:last-child {
  margin: 0 0 0 20px;
}

.double__image {
  position: relative;
  width: 325px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.double__text {
  width: -webkit-calc(100% - 325px - 20px);
  width: -moz-calc(100% - 325px - 20px);
  width: calc(100% - 325px - 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;
}

.double__text > * + * {
  margin-top: 16px;
}

/* Deposits */
.deposit__image {
  width: 283px;
}

.deposit__text {
  width: -webkit-calc(100% - 283px - 20px);
  width: -moz-calc(100% - 283px - 20px);
  width: calc(100% - 283px - 20px);
}

/* VIP */
.vip__table {
  max-height: 500px;
  overflow-y: auto;
}

.vip__table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.vip__table tr > td + td,
.slots__table tr > td + td {
  border-left: 1px solid #fff72e;
}

/* Slots table */
.slots__table tr > *:first-child,
.slots__table tr > *:nth-child(2) {
  min-width: 170px;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__list > li {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.faq__list > li::before {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 2px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d));
  background: -webkit-linear-gradient(top, #fff72e, #b22a1d);
  background: -moz-linear-gradient(top, #fff72e, #b22a1d);
  background: -o-linear-gradient(top, #fff72e, #b22a1d);
  background: linear-gradient(180deg, #fff72e, #b22a1d);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.faq__list > li + li {
  margin-top: 20px;
}

.title.faq-item__title {
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  color: #fff72e;
  background: #42340c;
  padding: 15px 54px 15px 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: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  -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.4px #fff72e, 0.4px 0 #fff72e;
}

.faq-item__desc {
  position: relative;
  -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);
  padding: 12px 16px;
}

.faq-item__desc ul li {
  border: none;
  padding: 0;
}

.faq-item__desc ul li:before {
  content: '•';
  display: inline-block;
  margin-right: 8px;
}

.faq-item__desc p + p {
  margin-top: 10px;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Reviews */
.reviews__content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews__content ul li {
  width: -webkit-calc((100% - 40px) / 3);
  width: -moz-calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 20px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#42340c), to(#42340c)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d)) border-box;
  background: -webkit-linear-gradient(#42340c, #42340c) padding-box, -webkit-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -moz-linear-gradient(#42340c, #42340c) padding-box, -moz-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: -o-linear-gradient(#42340c, #42340c) padding-box, -o-linear-gradient(top, #fff72e, #b22a1d) border-box;
  background: linear-gradient(#42340c, #42340c) padding-box, linear-gradient(180deg, #fff72e, #b22a1d) border-box;
  border: 2px solid transparent;
  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;
}

.reviews__content ul li > * {
  position: relative;
}

.reviews__content ul li::before {
  display: none;
}

.review__title {
  width: 100%;
  background: #703c1c;
  border-bottom: 2px solid #fff72e;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 8px 16px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 16px;
  color: #fff72e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.review__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;
  gap: 2px;
  margin-left: 20px;
}

.review__rating img {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 17px;
  -moz-box-flex: 0;
  flex: 0 1 17px;
}

/* Summary */
.content.summary {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.summary__wrap {
  -webkit-align-self: flex-end;
  align-self: flex-end;
  background: rgba(66, 52, 12, 0.88);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 20px;
  max-width: 928px;
  width: -webkit-calc(100% - 200px);
  width: -moz-calc(100% - 200px);
  width: calc(100% - 200px);
  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-top: 0;
}

.summary__wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 2px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff72e), to(#b22a1d));
  background: -webkit-linear-gradient(top, #fff72e, #b22a1d);
  background: -moz-linear-gradient(top, #fff72e, #b22a1d);
  background: -o-linear-gradient(top, #fff72e, #b22a1d);
  background: linear-gradient(180deg, #fff72e, #b22a1d);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.summary__wrap > * + * {
  margin-top: 20px;
}

.summary__wrap > p {
  margin-top: 20px;
}

.summary__wrap .button {
  margin-left: auto;
  margin-right: auto;
}

/* 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 {
  padding: 82px 20px 40px 280px;
}

.footer__countries {
  width: 100%;
}

.footer__countries ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer__countries li a {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  background: #2d0d0d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__countries li a:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 247, 46, 0.8);
  -moz-box-shadow: 0 0 5px 0 rgba(255, 247, 46, 0.8);
  box-shadow: 0 0 5px 0 rgba(255, 247, 46, 0.8);
}

.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__countries:after {
  content: '';
  display: block;
  width: 100%;
  height: 30px;
  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;
  margin-top: 20px;
  margin-bottom: 32px;
}

.footer__menu {
  margin-bottom: 60px;
}

.footer__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 0;
}

.footer__menu li {
  position: relative;
}

.footer__menu li + li {
  padding-left: 33px;
}

.footer__menu li + li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  display: block;
  width: 1px;
  height: 22px;
  background: #fff72e;
}

.footer__menu li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #d8d3d3;
}

.footer__menu li a:hover {
  color: #fff72e;
}

.footer__age {
  width: 100%;
  text-align: center;
}

.footer__age .image {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.footer__age .image img {
  max-width: 40px;
}

.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #d8d3d3;
  text-align: center;
  margin-top: 40px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  width: auto;
  margin-bottom: 16px;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.breadcrumbs > li:not(:last-child) a {
  opacity: 1;
  text-transform: uppercase;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-shadow: 0 0.4px #fff, 0.4px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 700;
}

.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 20px;
}

/* BONUS PAGE */
.bonus .prime__wrap {
  max-width: 680px;
}

.spins__image {
  width: 35%;
}

.spins__text {
  width: -webkit-calc(65% - 20px);
  width: -moz-calc(65% - 20px);
  width: calc(65% - 20px);
}

/* Summary */
.summary__wrap-bonus {
  width: -webkit-calc(100% - 300px);
  width: -moz-calc(100% - 300px);
  width: calc(100% - 300px);
}

/* APP PAGE */
.app .prime__wrap {
  max-width: 620px;
}

.frame__image-android {
  bottom: 36px;
}

.summary__wrap-app {
  width: -webkit-calc(100% - 280px);
  width: -moz-calc(100% - 280px);
  width: calc(100% - 280px);
}
