@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:wght@800&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #95aeb4;
  text-align: left;
  background: #2f3d46;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
  list-style: none;
}
ul > li:last-child,
ol > li:last-child {
  margin-bottom: 0;
}

ol > li {
  counter-increment: ol;
}

ul > li {
  padding-left: 14px;
}

ul > li::before,
ol > li::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  font: inherit;
  text-align: center;
  padding-top: 0;
}

ul > li::before {
  content: '';
  width: 6px;
  height: 6px;
  left: 22px;
  top: -webkit-calc(50% - 10px / 2);
  top: calc(50% - 10px / 2);
  border: 2px solid #37c59e;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: inherit;
  text-align: left;
}

ol > li::before {
  content: counter(ol);
  color: inherit;
  font-size: inherit;
}

a:hover {
  text-decoration: underline;
}

/* Title */
h1,
h2,
h3,
h4,
.title {
  margin-bottom: 16px;
  display: block;
  position: relative;
  width: 100%;
  font-family: 'Inter', serif;
  font-weight: 900;
  text-transform: inherit;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
}

h1,
.title.general {
  font-weight: 900;
  font-size: 32px;
}

h2,
.title.high {
  padding: 15.5px 30px;
  font-size: 24px;
  border-bottom: 1px solid #37c59e;
}

h3,
.title.middle {
  padding: 13px 30px;
  font-size: 20px;
  border-left: 1px solid #37c59e;
}

h4,
.title.mini {
  font-size: 18px;
  color: #37c59e;
}

/* Button */
.button,
.text > a,
article > a,
.text__button {
  margin: 0;
  padding: 10px 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 8px;
  position: relative;
  width: auto;
  min-width: 150px;
  height: auto;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  background: #37c59e;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #37c59e;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.button:hover {
  color: #37c59e;
  text-decoration: none;
  background: transparent;
}

.button.button-contrast,
.button.button-transparent {
  background: transparent;
  color: #37c59e;
  border: 1px solid #37c59e;
}

.button.button-transparent:hover {
  color: #fff;
  background: #37c59e;
}

.button-box {
  text-align: center;
}

/* var */
.button > img,
.button > span {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font: inherit;
  line-height: 1;
  vertical-align: middle;
}
.button > img + span {
  margin-left: 10px;
}

/* Article */
article,
.text {
  overflow: hidden;
  text-align: left;
}

article > div,
.text > div,
article .text__image,
.text .text__image,
article iframe,
.text iframe {
  width: 100%;
}

article .text__image,
.text .text__image {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

article img,
.text img {
  display: block;
  width: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.text > div > a,
article > div > a {
  padding: 12px 32px;
  min-width: 156px;
  font-size: 14px;
  line-height: 1.15;
}

article > *,
.text > * {
  margin-bottom: 20px;
}
article > *:last-child,
.text > *:last-child {
  margin-bottom: 0;
}

article a:not(.button),
.text a:not(.button) {
  color: #37c59e;
  font-weight: 700;
}

article a:hover,
.text a:hover {
  color: #fff;
  text-decoration: none;
}

.text .text__wrap-half {
  margin-right: auto;
  max-width: 55%;
}

.text .text__wrap-right {
  margin-right: 0;
  margin-left: auto;
}

.text .text__wrap-wide {
  width: 100%;
  position: relative;
}

.text__wrap > * {
  margin-bottom: 20px;
}
.text__wrap > *:last-child {
  margin-bottom: 0;
}

.text__wrap-wide > * {
  margin-bottom: 10px;
}
.text__wrap-wide > *:last-child {
  margin-bottom: 0;
}

.text__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.text-wrapper__item {
  margin-right: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 20px / 2);
  -ms-flex: 0 0 calc(50% - 20px / 2);
  flex: 0 0 calc(50% - 20px / 2);
}

.text-wrapper__item-right {
  margin-right: 0;
  margin-left: auto;
}

.list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px 0;
}

.list-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
}

.list > li {
  padding: 20px 20px 20px 56px;
  position: relative;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: rgba(25, 35, 41, 0.8);
}

.list-horizontal > li {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 10px * 3) / 4);
  -ms-flex: 0 0 calc((100% - 10px * 3) / 4);
  flex: 0 0 calc((100% - 10px * 3) / 4);
  background: rgba(25, 35, 41, 0.8);
  border: 1px solid #37c59e;
}

ol.list-horizontal {
  margin-top: 30px;
  margin-bottom: 50px;
}

ol.list-horizontal > li {
  padding-top: 48px;
}

ol.list-horizontal > li::before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 60px;
  height: 60px;
  left: -webkit-calc(50% - 60px / 2);
  left: calc(50% - 60px / 2);
  top: -webkit-calc(-60px / 2);
  top: calc(-60px / 2);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  background: -o-radial-gradient(
    33.52% -15.63%,
    92.56% 151.44%,
    #37c59e 0%,
    #9820a9 85.15%
  );
  background: radial-gradient(
    92.56% 151.44% at 33.52% -15.63%,
    #37c59e 0%,
    #9820a9 85.15%
  );
  border: 1px solid #37c59e;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.list-contrast > li {
  background: rgba(47, 61, 70, 0.8);
}

.list-contrast-1 > li {
  background: #2f3d46;
}

.list-contrast-2 > li {
  background: #3a454d;
  color: #37c59e;
}

.list-backgr > li {
  color: #fff;
}

.list-backgr > li::before {
  display: none;
}
.list-backgr > li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(../images/list-backgr.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.list-backgr > li > * {
  z-index: 10;
}

.list-item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #37c59e;
}
.list-horizontal .list-item__title {
  margin-bottom: 24px;
  color: #ffffff;
}

.list li b,
.page-betting .list li p > b {
  font-weight: 700;
  color: #37c59e;
}

.list li p > b {
  color: inherit;
}

.list li > b {
  display: block;
}

.text footer,
article footer,
.text__footer {
  padding: 10px 30px;
  width: 100%;
}

.text__background {
  background: #192329;
}

.section-transparent .text__background,
.text__wrapper .text__background,
.text__wrap .text__background {
  background: transparent;
}

/* Table */
table {
  width: 100%;
  border: 1px solid #38b9bd;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  border-collapse: unset;
}

table thead {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

table td {
  padding: 20px;
  border-bottom: 1px solid #38b9bd;
  background: rgba(25, 35, 41, 0.7);
}

table tr:last-child td {
  border-bottom: none;
}

table thead td {
  padding: 18px 20px;
  background: #38b9bd;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-contrast {
  background: #3a454d;
}

.dummy {
  margin: 0 !important;
  position: absolute;
  top: -80px;
  width: 100%;
  height: 0;
}

/* Special */
.image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.image img,
.background img {
  display: block;
  position: relative;
}
.image {
  z-index: -1;
}
.background img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.background {
  margin: 0 !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: absolute !important;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background img {
  display: block;
}

.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;
  transition: all 0.5s;
}
.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* Content */
.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.cover {
  height: auto;
}

.content > *,
.cover > * {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* HEADER */
.header {
  padding: 20px -webkit-calc(50% - ((1540px) / 2));
  padding: 20px calc(50% - ((1540px) / 2));
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  background: #25313a;
  z-index: 1000;
}

.header > * {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
}

.header__logo {
  margin-left: 12px;
  margin-right: 134px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header__logo > img {
  height: 35px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__button-menu {
  display: none;
}

/* logo */
.logo > img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-width: 100%;
}

/* Menu */
.menu {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.menu li {
  margin-bottom: 0 !important;
  margin-right: 10px;
  display: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0;
}
.menu li::before {
  display: none;
}

.menu li > a {
  padding: 8px 10px;
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.menu li > a:hover {
  color: #37c59e;
  text-decoration: none;
}
.menu li > a:not([href]):hover {
  color: #fff;
}

/* hover */
.menu li:hover > a {
  text-decoration: none;
}

.header__buttons {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header__button {
  padding-top: 11px;
  padding-bottom: 11px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0 0 0 20px;
  min-width: 98px;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
}

.menu .header__button-signup,
.menu .header__button-signin {
  display: none;
}

/* Languages */
.header__language {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 58px;
  margin-left: auto;
}

.header__language img {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}

.header__language-bttn {
  padding: 8px 0 8px 34px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.header__language-bttn::before,
.header__language-menu a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: -webkit-calc(50% - 24px / 2);
  top: calc(50% - 24px / 2);
  background-image: url(../images/icons/lang-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__language-menu {
  padding: 10px;
  width: 160px;
  max-height: -webkit-calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  position: absolute;
  right: 0;
  top: 46px;
  background: #25313a;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  z-index: 101;
  display: none;
  overflow-y: scroll;
}

.header__language-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px 22px;
}

.header__language-menu li {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 22px / 2);
  -ms-flex: 0 0 calc(50% - 22px / 2);
  flex: 0 0 calc(50% - 22px / 2);
}
.header__language-menu li::before {
  display: none;
}

.header__language-menu a {
  padding-left: 34px;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  line-height: 24px;
}

.submenu a {
  display: block;
  font: inherit;
  color: inherit;
  font-size: 15px;
}

.menu .submenu {
  padding-top: 28px;
  position: absolute;
  left: -16px;
  top: -100vw;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  width: 202px;
  height: auto;
  max-height: -webkit-calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  background-color: #292526;
  overflow-y: scroll;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  opacity: 0;
}

.menu .submenu::-webkit-scrollbar {
  display: none;
}

.menu .submenu li {
  padding: 0;
}

.menu .submenu li::before {
  display: none;
}

.menu .submenu a {
  padding: 8px 16px;
  width: 100%;
  text-align: left;
}

/* MAIN */
.main {
  margin: 80px auto 0;
  max-width: 1540px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.main > * {
  position: relative;
}

.main__wrap {
  margin-top: 20px;
  margin-left: auto;
  padding-bottom: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(100% - 240px - 20px);
  -ms-flex: 0 0 calc(100% - 240px - 20px);
  flex: 0 0 calc(100% - 240px - 20px);
  max-width: -webkit-calc(100% - 240px - 20px);
  max-width: calc(100% - 240px - 20px);
  position: relative;
  background-color: #25313a;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.main__wrap > * {
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 10;
}
.main__wrap > *:last-child {
  margin-bottom: 0;
}

/* Prime */
.prime {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  min-height: 380px;
  background-color: #094d60;
  z-index: 0;
}

.prime__wrap {
  padding: 45px 50px;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
}

.prime__wrap > * {
  margin-bottom: 10px;
}
.prime__wrap > *:last-child {
  margin-bottom: 0;
}

.prime__button {
  margin-top: 10px;
  z-index: 1;
}

.prime__desc {
  color: #37c59e;
}

.prime__image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
}

.prime__image img {
  display: block;
  height: 100%;
  -o-object-position: center bottom;
  object-position: center bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

/* RATING */
.prime__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

.prime__rating p {
  margin: 0;
}

.prime-rating__numbers {
  margin-left: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2px;
  color: #fff;
}
.prime-rating__numbers span {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* About */
.about > * {
  margin-bottom: 20px;
}

.about > *:last-child {
  margin-bottom: 0;
}

.about__table {
  background: #2f3d46;
}

.about__table table,
tbody,
.about__benefits {
  width: 100%;
}
.about__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  width: 100%;
  color: #fff;
}

.about__table tr:last-child {
  border-bottom: none;
}

.about__table tr > *:first-child {
  border-right: 1px solid #38b9bd;
}

.about__table td {
  padding: 8px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  background: transparent;
}

.about__pros-cons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.about-pros-cons__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  background: rgba(25, 35, 41, 0.8);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #38b9bd;
  overflow: hidden;
}

.about-pros-cons__header {
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #ffffff;
  background: #38b9bd;
}

.about-pros-cons__header .icon img {
  display: block;
}

.about-pros-cons__list {
  width: 100%;
}

.about-pros-cons__list > li {
  margin: 0;
  padding: 8px 20px;
  border-bottom: 1px solid #38b9bd;
}

.about-pros-cons__list > li:last-child {
  border-bottom: none;
}

.about-pros-cons__list > li::before {
  display: none;
}

.about-pros-cons__image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 60%;
  max-height: 100%;
  opacity: 0.2;
  z-index: -1;
}

/* Bonus banner */
.bonus-banner {
  padding: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 450px;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(37, 49, 58, 0)),
    color-stop(60%, rgba(37, 49, 58, 0.9)),
    to(#25313a)
  );
  background: -o-linear-gradient(
    right,
    rgba(37, 49, 58, 0) 0%,
    rgba(37, 49, 58, 0.9) 60%,
    #25313a 100%
  );
  background: linear-gradient(
    270deg,
    rgba(37, 49, 58, 0) 0%,
    rgba(37, 49, 58, 0.9) 60%,
    #25313a 100%
  );
  z-index: -1;
}

.bonus-banner-contrast::before {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(37, 49, 58, 0)),
    to(#6b2582)
  );
  background: -o-linear-gradient(right, rgba(37, 49, 58, 0) 0%, #6b2582 100%);
  background: linear-gradient(270deg, rgba(37, 49, 58, 0) 0%, #6b2582 100%);
}
.bonus-banner-right::before {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.bonus-banner__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.bonus-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right center;
  object-position: right center;
}

.bonus-banner-right .bonus-banner__image img {
  -o-object-position: left center;
  object-position: left center;
}

.bonus-banner__wrap {
  margin-right: auto;
  padding: 20px;
  width: 100%;
  max-width: 702px;
  z-index: 10;
}

.bonus-banner-right .bonus-banner__wrap {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.bonus-banner__title {
  margin-bottom: 10px;
  padding: 0;
  font-size: 32px;
  color: #37c59e;
  border-bottom: none;
}

.bonus-banner-right .bonus-banner__title {
  text-align: right;
}

.bonus-banner__desc {
  margin-bottom: 40px;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
}

.bonus-banner-mini {
  padding: 14px 30px;
  min-height: unset;
}

.bonus-banner-mini .bonus-banner__wrap {
  max-width: 77%;
}

.bonus-banner-mini .bonus-banner__desc {
  margin-bottom: 24px;
  font-size: 16px;
}

.bonus-banner-mini .bonus-banner__desc > p {
  margin-bottom: 0;
  line-height: 1.5;
}

/* rating table */
.rating > *:not(:last-child) {
  margin-bottom: 20px;
}

.rating__background::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(16, 23, 29, 0.6)),
    to(rgba(16, 23, 29, 0.6))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(16, 23, 29, 0.6),
    rgba(16, 23, 29, 0.6)
  );
  background: linear-gradient(
    0deg,
    rgba(16, 23, 29, 0.6),
    rgba(16, 23, 29, 0.6)
  );
  z-index: 1;
}

.rating__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  position: relative;
}

.rating__list::before,
.rating__list::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  height: -webkit-calc((100% - 20px) / 2);
  height: calc((100% - 20px) / 2);
  background: rgba(37, 49, 58, 0.5);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  z-index: -1;
}
.rating__list::before {
  top: 0;
}
.rating__list::after {
  bottom: 0;
}

.rating__item {
  margin: 0;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 20px * 2) / 3);
  -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
  flex: 0 0 calc((100% - 20px * 2) / 3);
  gap: 20px;
  position: relative;
}

.rating__item::before {
  display: none;
}

.rating-item__title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  text-align: center;
}

.rating-item__scale {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 132px;
  -ms-flex: 0 0 132px;
  flex: 0 0 132px;
  position: relative;
}

.rating-item__scale > span {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 8px;
  height: 100%;
  overflow: hidden;
}

.rating-item-scale__back {
  opacity: 0.2;
}

.rating-item-scale__front {
  position: absolute;
  left: 0;
  top: 0;
}

.rating-item__scale img {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* F.A.Q. */
.faq__title {
  margin-bottom: 20px;
}

.faq__list > li::before {
  display: none;
}

.faq-item {
  margin-bottom: 20px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.faq-item::after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  top: 17px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/arrow-bottom.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item.active::after {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.faq-item__title {
  padding: 15.5px 70px 15.5px 20px;
  text-align: left;
  cursor: pointer;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #37c59e;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  cursor: pointer;
  overflow: hidden;
  border: none;
}

.faq-item__desc p {
  margin: 0;
  line-height: 1.5;
}
.faq-item__desc a {
  font-size: 16px;
  color: #fff;
}
.faq-item__desc .wrap {
  padding: 10px 20px;
}
.faq-item__desc .wrap > * {
  margin-bottom: 10px;
}
.faq-item__desc .wrap > *:last-child {
  margin-bottom: 0;
}

/* Reviews */
.reviews__list {
  padding: 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.reviews__item {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 30px * 2) / 3);
  -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
  flex: 0 0 calc((100% - 30px * 2) / 3);
  font-size: 15px;
  line-height: 1.35;
  background: rgba(25, 35, 41, 0.8);
  border: 1px solid #22c99d;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.reviews__item::before {
  display: none;
}

.reviews-item__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 18px;
  width: 100%;
}

.reviews-item__avatar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-right: 50%;
  overflow: hidden;
}

.reviews-item__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.reviews-item__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: 700;
}

.top {
  position: absolute;
  right: -webkit-calc(50% - 1582px / 2);
  right: calc(50% - 1582px / 2);
  bottom: 20px;
  height: 80%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  pointer-events: none;
  z-index: 999;
}

.top__button {
  z-index: 100;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #10171d;
  overflow: hidden;
  pointer-events: all;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: rgba(55, 197, 158, 0.2);
  border: 1px solid #ffffff;
}
.top__button:hover {
  background: #25313a;
}

.top__button img {
  display: block;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  width: 16px;
  height: 20px;
}

/* FOOTER */
.footer {
  margin-left: auto;
  margin-right: -webkit-calc(50% - 1540px / 2);
  margin-right: calc(50% - 1540px / 2);
  padding: 32px;
  max-width: 1280px;
  background: #10171d;
}

.footer > * {
  margin-bottom: 32px;
  width: 100%;
}

.footer > *:last-child {
  margin-bottom: 0;
}

.footer__links {
  padding: 0 64px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  gap: 32px;
}

.footer__links-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.footer__links-item li {
  margin-bottom: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__links li::before {
  display: none;
}

.footer__links a {
  padding: 6px 0;
  display: block;
  width: 100%;
  font-size: 14px;
  color: #95aeb4;
  font-weight: 400;
  line-height: 1.15;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__links-item > a {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.28;
  color: #ffffff;
  font-weight: 700;
}

.footer__links a:hover {
  color: #fff;
}

.footer__links a[href]:hover {
  color: #37c59e;
  text-decoration: none;
}

.footer__payment {
  padding: 20px 25px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 32px;
  background: #182027;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.footer-payment__title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 150px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-payment__list {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  gap: 20px;
  width: unset;
}

.footer-payment__list li {
  margin: 0;
  padding: 0;
  width: unset;
}

.footer-payment__list li::before {
  display: none;
}

.footer-payment__list img {
  display: block;
  height: 32px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 35px;
  width: 100%;
}

.footer-copy__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer-copy__logo img {
  height: 25px;
}

.footer-copy__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 12px;
  line-height: 1.2;
}

.footer-copy__text > p {
  margin-bottom: 12px;
}

.footer-copy__text > p:last-child {
  margin-bottom: 0;
}

.footer-copy__text a {
  color: inherit;
  font: inherit;
  text-decoration: underline;
}
.footer-copy__text a:hover {
  text-decoration: none;
}

.footer__countries {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.footer__countries li {
  margin: 0 !important;
  padding: 0 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 8px;
  text-transform: uppercase;
  background: #182027;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__countries li:hover {
  opacity: 0.75;
}

.footer__countries li::before {
  display: none;
}

.footer__countries a {
  text-decoration: none !important;
}

.footer__countries .icon {
  padding: 12px 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 24px;
  height: 48px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.footer__countries .icon img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__countries .text {
  padding: 12px 0;
  color: #95aeb4;
  line-height: 24px;
}

.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px 30px;
}

.footer__bottom img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  height: 49px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  position: relative;
  z-index: 1;
  text-align: left;
}

.breadcrumbs > li {
  margin-bottom: 0 !important;
  padding: 0;
  font-size: 16px;
}

.breadcrumbs > li::before {
  display: none;
}

.breadcrumbs > li a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 700;
  opacity: 1;
}

.breadcrumbs > li a[href]:hover {
  color: #37c59e;
  text-decoration: none;
}
.breadcrumbs > li a:not([href]):hover {
  color: #fff;
}

.breadcrumbs > li:not(:last-child):after {
  content: '|';
  display: inline-block;
  position: relative;
  font: inherit;
  color: #fff;
  margin: 0 20px;
}

/* App */
.app {
  padding: 65px 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.app.app-vertical {
  padding-top: 32px;
  padding-bottom: 32px;
}

.app.app-transparent {
  padding: 0 30px !important;
}

.app__bttns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  gap: 20px 32px;
  z-index: 100;
}

.app.app-vertical .app__bttns {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}

.app__bttn {
  padding: 13px 20px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  color: #37c59e !important;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  background: rgba(55, 197, 158, 0.1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid #37c59e;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.app__bttn:hover {
  text-decoration: none;
  background: #fff;
}

.app-right .app__bttn {
  margin-left: auto;
}

.app__bttn .app-bttn__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.app__bttn .app-bttn__icon {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.app__bttn .app-bttn__icon img {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.app__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.app__background img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}

/* Sidebar */
.sidebar {
  padding-top: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  width: 240px;
  height: -webkit-calc(100vh - 80px);
  height: calc(100vh - 80px);
  position: fixed;
  left: -webkit-calc(50% - 1540px / 2);
  left: calc(50% - 1540px / 2);
  top: 80px;
  z-index: 100;
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar > * {
  margin-bottom: 20px;
}

.sidebar > *:last-child {
  margin-bottom: 0;
}

.sidebar__nav {
  padding: 0 15px 10px 10px;
}

.sidebar__nav > * {
  margin-bottom: 20px;
}
.sidebar__nav > *:last-child {
  margin-bottom: 0;
}

.sidebar-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar-nav__list li {
  margin: 0 0 15px;
  padding: 0;
}
.sidebar-nav__list li:last-child {
  margin-bottom: 0;
}
.sidebar-nav__list li::before {
  display: none;
}
.sidebar-nav__list a {
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none !important;
}

.sidebar-nav__list a span {
  margin-right: 10px;
}
.sidebar-nav__list a span:last-child {
  margin-right: 0;
}
.sidebar-nav__list .sidebar-nav__icon {
  margin-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16px;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  height: 16px;
  display: block;
  position: relative;
}
.sidebar-nav__list a img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar-nav__list a img ~ img {
  opacity: 0;
}
.sidebar-nav__list a:hover img {
  opacity: 0;
}
.sidebar-nav__list a:hover img ~ img {
  opacity: 1;
}
.sidebar-nav__list a:hover {
  color: #37c59e;
}

.sidebar-nav__games li {
  padding: 0;
  margin-bottom: 8px;
}

.sidebar-nav__games li:last-child {
  margin-bottom: 0;
}

.sidebar-nav__games li::before {
  display: none;
}

.sidebar-nav__top:hover,
.sidebar-nav__games a:hover,
.sidebar-nav__top:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  text-decoration: none;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-nav__top {
  padding: 13px 62px 13px 12px;
  display: block;
  width: 100%;
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  background: #24474f;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.sidebar-nav__top .sidebar-nav__icon {
  position: absolute;
  right: 5px;
  bottom: 0;
  height: -webkit-calc(100% - 4px);
  height: calc(100% - 4px);
}

.sidebar-nav__top .sidebar-nav__text > span {
  display: block;
  font-weight: 400;
  font-size: 9px;
  line-height: 1.23;
}

.sidebar-nav__top .sidebar-nav__text > span:first-child {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 700;
}

.sidebar-nav__games a {
  padding: 11px 8px 11px 82px;
  display: block;
  width: 100%;
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  background: -o-linear-gradient(left, #2ccebb 0%, #5486c2 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#2ccebb),
    to(#5486c2)
  );
  background: linear-gradient(90deg, #2ccebb 0%, #5486c2 100%);
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.sidebar-nav__games .sidebar-nav__icon {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
}

.contents-table {
  padding: 12px;
}

.contents-table__head {
  margin: 0;
  padding: 15.5px 24px 15.5px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: none;
  position: relative;
  cursor: pointer;
}

.contents-table__head::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  bottom: -webkit-calc(50% - 16px / 2);
  bottom: calc(50% - 16px / 2);
  background-image: url(../images/icons/arrow-bottom.svg);
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.contents-table.active .contents-table__head + ul {
  display: block;
}
.contents-table.active .contents-table__head::before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.contents-table ul {
  display: none;
  position: relative;
}

.contents-table li {
  margin: 0 0 8px;
  padding: 0;
}
.contents-table li::before {
  display: none;
}
.contents-table li:last-child {
  margin-bottom: 0;
}

.contents-table a {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #95aeb4;
  display: block;
  position: relative;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  z-index: 10;
}

.contents-table a:hover {
  color: #37c59e;
}

.main__contents-table {
  display: none;
}
.section.main__contents-table {
  margin-bottom: 12px;
  padding: 0 !important;
}

/* Stores instructions */
.stores-instructions__header {
  padding: 14px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background: #38b9bd;
  -webkit-border-radius: 6px 6px 0px 0px;
  border-radius: 6px 6px 0px 0px;
}

.stores-instructions__header .icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.stores-instructions__header .icon img {
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}

.stores-instructions__list {
  gap: 0;
  -webkit-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
  overflow: hidden;
  border: 1px solid #38b9bd;
}

.stores-instructions__list li {
  padding: 18px 20px 18px 40px;
  border-bottom: 1px solid #38b9bd;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.stores-instructions__list li:last-child {
  border-bottom: none;
}

ol.stores-instructions__list > li::before {
  top: 18px;
  left: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #38b9bd;
}

.stores-instructions__list li b {
  color: #38b9bd;
}

/* Technical */
.technical-requirements > * {
  margin-bottom: 50px;
}
.technical-requirements > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1600px) {
  .header,
  .main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main {
    max-width: 100%;
  }

  .sidebar {
    left: 20px;
  }

  .top {
    padding: 0;
    position: absolute;
    right: 20px;
  }

  .footer {
    margin-right: 20px;
    max-width: -webkit-calc(100% - 20px * 3 - 240px);
    max-width: calc(100% - 20px * 3 - 240px);
  }

  .footer__links {
    padding: 0;
  }
}

@media screen and (max-width: 1300px) {
  .prime {
    padding: 32px;
  }
  .prime__wrap {
    padding: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 600px;
    background-color: rgba(37, 49, 58, 0.75);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .app,
  .app.app-vertical {
    padding: 32px !important;
  }

  .bonus-banner {
    min-height: 350px;
  }

  .reviews__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 30px) / 2);
    -ms-flex: 0 0 calc((100% - 30px) / 2);
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 1200px) {
  .menu li:not(:last-child)::after {
    margin: 0 4px;
  }

  .sidebar {
    position: -webkit-sticky;
    position: sticky;
    height: -webkit-calc(100vh - 80px);
    height: calc(100vh - 80px);
    top: 80px;
  }

  .list-horizontal {
    gap: 20px;
  }
  ol.list-horizontal {
    gap: 40px;
  }

  .list-horizontal > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 20px) / 2);
    -ms-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
    min-height: 160px;
  }

  ol.list-horizontal > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 40px) / 2);
    -ms-flex: 0 0 calc((100% - 40px) / 2);
    flex: 0 0 calc((100% - 40px) / 2);
  }

  table thead {
    font-size: 16px;
  }

  table thead td {
    padding: 12px;
  }

  table td {
    padding: 12px;
  }

  .footer {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .text .text__wrap-half {
    max-width: 100%;
  }

  .text-wrapper__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .stores-instructions__list li {
    background: rgba(25, 35, 41, 0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .stores-instructions .app__bttn {
    margin-left: auto;
    margin-right: auto;
  }

  .technical-requirements .text__wrap .text__background {
    width: 90%;
    right: 5%;
  }

  .technical-requirements .text__wrap .text__background img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
  }
}

@media screen and (min-width: 1025px) {
  .menu > ul > li:hover .submenu li {
    display: block;
  }

  .menu > ul > li:hover .submenu {
    top: 0;
    opacity: 1;
    z-index: 100;
  }

  .submenu li::after {
    display: none !important;
  }

  .menu > ul > li > span + a:hover {
    color: #fff;
    text-shadow: 0 0.5px #fff, 0.5px 0 #fff;
  }

  .menu > ul > li:hover > span + a {
    color: #fff;
    text-shadow: 0 0.5px #fff, 0.5px 0 #fff;
  }

  .menu > ul > li:hover > span img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .menu > ul > .header-nav__expander > a {
    padding-right: 24px;
  }

  .menu > ul > .header-nav__expander > a::before {
    content: '';
    position: absolute;
    width: 11px;
    height: 6px;
    bottom: -webkit-calc(50% - 6px / 2);
    bottom: calc(50% - 6px / 2);
    right: 4px;
    background-image: url(../images/icons/arrow-bottom.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .menu > ul > .header-nav__expander:hover > a::before {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}

@media screen and (max-width: 1024px) {
  .header__button-menu {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    min-width: 0;
    background: transparent;
    padding: 12px 13px;
    margin: 0 0 0 16px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    border: 1px solid #37c59e;
  }

  .header__button-menu svg {
    display: block;
    margin: 0;
    fill: #37c59e;
  }

  .header__button-menu svg rect {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .header__button-menu.active {
    background: #37c59e;
  }
  .header__button-menu.active ~ .menu {
    top: 100%;
    opacity: 1;
  }
  .header__button-menu.active svg,
  .header__button-menu:hover svg {
    fill: #10171d;
  }

  .header__button-menu:hover {
    background: #37c59e;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .header__button-menu.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .header__button-menu.active svg rect:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 2);
    -ms-transform: scale(0, 2);
    transform: scale(0, 2);
  }

  .header__button-menu.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .menu {
    display: block;
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: auto;
    max-height: -webkit-calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    overflow: auto;
    text-align: center;
    background: rgba(37, 49, 58, 0.9);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    padding: 10px 32px 80px 32px;
    margin: 0 !important;
    z-index: -1;
    -webkit-transition: all 0.75s;
    -o-transition: all 0.75s;
    transition: all 0.75s;
  }

  .menu ul {
    display: block;
    max-width: 320px;
  }

  .menu ul:last-child {
    display: block;
  }

  .menu > * {
    margin: 24px auto 0 auto !important;
  }

  .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 16px 0;
    background-color: transparent;
  }
  .menu li > a,
  .menu .submenu a {
    width: 100%;
    text-align: center;
    padding: 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #37c59e;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }

  .menu li:not(:last-child)::after {
    margin: 10px 0;
  }
  .menu li {
    margin: 0 auto 16px !important;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu li:last-child {
    margin-bottom: 0;
  }
  .menu li::after {
    margin: 5px 0;
  }
  .menu li:last-child::after {
    display: none;
  }

  .menu li > a:not([href]):hover {
    color: #fff;
  }

  .menu .submenu {
    margin: 0;
    padding: 0;
    position: static;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    max-height: unset;
    opacity: 1;
    background: transparent;
  }

  .menu .submenu li:first-child::before {
    content: url(../images/icons/menu-divider.svg);
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0;
    width: 35px;
    height: 20px;
  }

  .header__logo {
    margin-left: 0;
    margin-right: auto;
  }

  .sidebar {
    display: none;
  }

  .main__wrap > * {
    padding: 20px;
  }

  .prime {
    width: 100%;
    overflow: hidden;
  }

  .main__wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .main__contents-table {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: -webkit-calc(100% - 20px * 2);
    width: calc(100% - 20px * 2);
    background: #2f3d46;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .contents-table__head {
    padding: 12px 40px 12px 12px;
  }

  .contents-table ul {
    margin-bottom: 20px;
  }

  .contents-table a {
    padding: 8px 12px;
  }

  .contents-table__head::before {
    right: 16px;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
  .contents-table.active .contents-table__head::before {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}

@media screen and (max-width: 900px) {
  .cover {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main__wrap > * {
    padding: 16px;
  }

  .header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .app {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .app__background {
    opacity: 0.4;
  }

  .app__bttns {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 300px;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }

  .app__bttn {
    background: rgba(55, 197, 158, 0.2);
  }

  .footer__payment {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-payment__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .footer-payment__title br {
    display: none;
  }

  .footer-payment__list {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 768px) {
  .header__buttons {
    padding: 12px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px 10px;
    position: fixed;
    width: 100vw;
    bottom: 0;
    left: 0;
    background-color: #25313a;
  }
  .header__button {
    margin: 4px 0;
    padding: 9px 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    min-width: unset;
  }

  .header__button-menu {
    margin-left: 12px;
  }

  .menu {
    max-height: -webkit-calc(100vh - 64px);
    max-height: calc(100vh - 64px);
  }

  .prime__wrap {
    padding: 20px;
  }

  .bonus-banner {
    min-height: 260px;
  }

  .bonus-banner__wrap {
    max-width: 80%;
    background-color: rgba(37, 49, 58, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .bonus-banner__title {
    font-size: 24px;
  }

  .reviews__list {
    padding: 0;
    gap: 20px;
  }

  .reviews__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc(50% - 20px / 2);
    -ms-flex: 0 0 calc(50% - 20px / 2);
    flex: 0 0 calc(50% - 20px / 2);
  }

  .reviews-item__avatar {
    width: 48px;
    height: 48px;
  }

  .footer {
    padding-bottom: 90px;
  }

  .top__button {
    bottom: 88px;
  }

  .footer-payment__list {
    gap: 12px;
  }

  .footer-payment__list img {
    height: 26px;
  }

  .footer__links {
    padding: 0 64px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }

  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 40px) / 3);
    -ms-flex: 0 0 calc((100% - 40px) / 3);
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 605px) {
  h1,
  .title.general {
    font-size: 28px;
  }

  h2,
  .title.high {
    padding: 12px 16px;
    font-size: 20px;
  }
  h3,
  .title.middle {
    padding: 12px 16px;
    font-size: 18px;
  }

  h4,
  .title.mini {
    font-size: 16px;
  }

  .list-horizontal {
    gap: 16px;
  }

  ol.list-horizontal {
    gap: 40px 16px;
  }

  .list-horizontal > li,
  ol.list-horizontal > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 16px) / 2);
    -ms-flex: 0 0 calc((100% - 16px) / 2);
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .prime__wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .prime__title {
    text-align: center;
  }

  .bonus-banner .bonus-banner__wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: center;
  }

  .bonus-banner .bonus-banner__title {
    text-align: center;
  }

  .bonus-banner__desc {
    font-size: 20px;
  }

  .breadcrumbs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .header__button-menu {
    min-width: auto;
    padding: 12px;
  }

  .main__contents-table {
    width: -webkit-calc(100% - 16px * 2);
    width: calc(100% - 16px * 2);
  }

  .breadcrumbs {
    padding: 0;
  }

  .text__table {
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
    overflow-x: scroll;
    width: -webkit-calc(100% + 16px * 2) !important;
    width: calc(100% + 16px * 2) !important;
  }

  .text__table::-webkit-scrollbar {
    display: none;
  }

  .text__table table {
    width: 740px;
  }

  .text footer,
  article footer,
  .text__footer {
    padding: 0;
  }

  .list-horizontal > li {
    padding: 16px;
  }

  .list-horizontal .list-item__title {
    margin-bottom: 16px;
  }

  .about__pros-cons {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-pros-cons__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .about-pros-cons__list > li {
    padding: 8px 16px;
  }

  .about-pros-cons__header {
    padding: 10px 16px;
  }

  .rating__list::before,
  .rating__list::after {
    display: none;
  }

  .rating__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 20px) / 2);
    -ms-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
    background: rgba(37, 49, 58, 0.5);
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }

  .reviews__list {
    gap: 16px;
  }

  .reviews__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .app.app-transparent {
    padding: 0 16px !important;
  }

  .top {
    right: 16px;
    bottom: 16px;
  }

  .top__button {
    bottom: 84px;
  }

  .footer__links {
    padding: 0 32px;
  }

  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 20px) / 2);
    -ms-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .footer__links a {
    text-align: center;
  }

  .footer__countries {
    gap: 12px;
    font-size: 14px;
  }

  .footer__countries li {
    padding: 0 12px;
  }

  .footer__countries .icon {
    padding: 10px 0;
    height: 40px;
    width: 20px;
  }

  .footer__countries .text {
    padding: 10px 0;
  }
}

@media screen and (max-width: 550px) {
  .list-horizontal > li,
  ol.list-horizontal > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .list-horizontal > li {
    min-height: unset;
  }

  .footer-payment__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .footer-payment__list {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer-payments__button {
    margin-left: auto;
    margin-right: auto;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer-payment__title br {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  .main {
    padding-left: 0;
    padding-right: 0;
  }

  .list > li {
    padding: 16px 16px 16px 48px;
  }

  .text__table table {
    width: 640px;
  }

  .about__table {
    font-size: 14px;
  }

  .about__table td {
    padding: 8px 12px;
  }

  ul > li::before {
    left: 18px;
  }

  .footer__links {
    padding: 0;
  }
}

@media screen and (max-width: 375px) {
  h1,
  .title.general {
    font-size: 24px;
  }

  h2,
  .title.high {
    padding: 0 0 12px;
    font-size: 18px;
  }

  h3,
  .title.middle {
    padding: 0 0 0 12px;
    font-size: 16px;
  }

  h4,
  .title.mini {
    font-size: 14px;
  }

  .app__bttn {
    padding: 13px 16px !important;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 286px;
    -ms-flex: 0 0 286px;
    flex: 0 0 286px;
  }

  .app__bttn .app-bttn__icon {
    margin-right: 16px;
  }

  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
