@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  background: #102a2e;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  margin-top: 16px;
  width: 100%;
}

.title + p,
p:first-child {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* Title */
h1,
h2,
h3,
h4 {
  display: block;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-size: 40px;
  margin-bottom: 0;
}

h2,
.title.high {
  font-size: 24px;
}

h3,
.title.middle {
  font-size: 18px;
  text-align: left;
}

h4,
.title.mini {
  font-size: 18px;
  text-align: left;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 16px;
}

article li,
.article li {
  position: relative;
  padding-left: 24px;
}

article ol > li,
.article ol > li {
  counter-increment: ol;
}

article ul > li:before,
article ol > li:before,
.article ul > li:before,
.article ol > li:before {
  display: inline-block;
  position: absolute;
  font: inherit;
  color: inherit;
  z-index: 1;
  top: 0;
  left: 8px;
}

article ul > li:before,
.article ul > li:before {
  content: '•';
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a {
  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: #41b15b;
  text-shadow: 0 0.3px #41b15b, 0.3px 0 #41b15b;
}

/* Button */
.button {
  -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: #41b15b;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 11px 23px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 180px;
  min-height: 40px;
  position: relative;
}

.button:hover {
  background: #185a61;
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 10px;
}

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  background: #185a61;
}
.button.inverse:hover {
  background: #41b15b;
}

/* 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;
  background: #054146;
  padding: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -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);
}

.content.clear {
  padding: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.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,
.content .background + p,
.scroll + .double {
  margin-top: 0;
}

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: #004146;
  -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;
  min-height: 70px;
  margin-top: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: visible;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

.header__logo {
  margin-left: 20px;
}

.header__logo img {
  max-width: 128px;
}

.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 112px;
}

.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;
  background: #0c4e54;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  padding: 8px 16px;
}

.header__menu ul li + li {
  margin-left: 32px;
}

.header__menu ul a {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.header__menu ul a:hover {
  color: #41b15b;
  text-shadow: 0 0.3px #41b15b, 0.3px 0 #41b15b;
}

.header__button {
  min-width: 90px;
  padding: 10px 22px;
  font-size: 16px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  text-transform: initial;
  margin-top: 0;
}

.header__signup {
  margin-left: 8px;
}

.header__lang {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 16px;
}

.header__lang img {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 8px;
}

/* Main */
.main {
  position: relative;
  margin: 0 auto;
  padding: 70px 20px 69px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.main__content {
  position: relative;
  overflow: hidden;
  margin-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 -webkit-calc(100% - 20px - 234px);
  -moz-box-flex: 1;
  flex: 1 1 calc(100% - 20px - 234px);
}

/* Sidebar */
.sidebar {
  width: 234px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 234px;
  -moz-box-flex: 0;
  flex: 0 0 234px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 65px;
  max-height: -webkit-calc(100vh - 65px);
  max-height: -moz-calc(100vh - 65px);
  max-height: calc(100vh - 65px);
  padding-top: 20px;
  overflow-y: auto;
}

.sidebar__wrap::-webkit-scrollbar {
  display: none;
}

.sidebar__wrap {
  scrollbar-width: none;
}

.sidebar__item {
  position: relative;
}

/* Sidebar__left */
.sidebar__slots {
  margin-bottom: 24px;
}

.sidebar__slots ul li + li {
  margin-top: 8px;
}

.sidebar__slots ul li a {
  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-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
  background: #054146;
}

.slots__image {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.slots__image img {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__slots ul li a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.slots__text {
  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;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  margin-top: 10px;
}

.slots__text span:last-child {
  opacity: 0.5;
  font-size: 12px;
  margin-top: 4px;
}

.sidebar__links {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  background: #054146;
}

.sidebar__links-button {
  font-family: 'Roboto', sans-serif;
  background: -webkit-gradient(linear, left top, right top, color-stop(36.54%, #416064), to(#054146));
  background: -webkit-linear-gradient(left, #416064 36.54%, #054146 100%);
  background: -moz-linear-gradient(left, #416064 36.54%, #054146 100%);
  background: -o-linear-gradient(left, #416064 36.54%, #054146 100%);
  background: linear-gradient(90deg, #416064 36.54%, #054146 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.16;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 12px 40px 12px 16px;
}

.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: 15px;
  right: 16px;
  width: 16px;
  height: 16px;
}

.sidebar__links-button:hover {
  text-shadow: 0 0.4px #fff, 0.4px 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 {
  padding: 8px 0;
}

.sidebar__links-list a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  position: relative;
  padding: 8px 16px;
}

.sidebar__links-list a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

/* Sidebar-main */
.sidebar__links-main {
  display: none;
}

/* Border gradient */
.gradient {
  position: relative;
}

.gradient::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.04)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* Prime */
.prime {
  min-height: 480px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  -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;
}

.banner__wrap {
  position: relative;
  text-align: center;
  max-width: 584px;
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 24px;
  background: -webkit-linear-gradient(272deg, rgba(65, 96, 100, 0.3) 0%, rgba(5, 65, 70, 0.3) 100%);
  background: -moz-linear-gradient(272deg, rgba(65, 96, 100, 0.3) 0%, rgba(5, 65, 70, 0.3) 100%);
  background: -o-linear-gradient(272deg, rgba(65, 96, 100, 0.3) 0%, rgba(5, 65, 70, 0.3) 100%);
  background: linear-gradient(178deg, rgba(65, 96, 100, 0.3) 0%, rgba(5, 65, 70, 0.3) 100%);
  -webkit-backdrop-filter: blur(19px);
  backdrop-filter: blur(19px);
  -webkit-box-shadow: 0 -2px 10px #102a2e;
  -moz-box-shadow: 0 -2px 10px #102a2e;
  box-shadow: 0 -2px 10px #102a2e;
  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;
}

.prime__wrap {
  margin-left: 40px;
}

.prime__rating {
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.prime__rating-value {
  margin-left: 18px;
}

.prime__rating-value span:first-child {
  font-weight: 700;
}

.prime__title {
  margin-bottom: 0;
}

.prime__text {
  font-weight: 700;
  margin-top: 8px;
}

.prime__button {
  min-width: 160px;
  min-height: 45px;
  padding-top: 13px;
  padding-bottom: 13px;
  margin-top: 30px;
}

/* Double */
.double {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.double > * {
  position: relative;
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}

.double > *:last-child {
  margin-left: 20px;
}

.double__item > * + * {
  margin-top: 16px;
}

/* Table */
.table {
  width: 100%;
  border: 1px solid #0c7254;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}

.table a {
  text-decoration: underline;
  color: #fff;
}

.table a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.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 16px;
}

.table thead tr {
  min-height: 38px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#0c7254), to(#054146));
  background: -webkit-linear-gradient(left, #0c7254 0%, #054146 100%);
  background: -moz-linear-gradient(left, #0c7254 0%, #054146 100%);
  background: -o-linear-gradient(left, #0c7254 0%, #054146 100%);
  background: linear-gradient(90deg, #0c7254 0%, #054146 100%);
}

.table tbody tr + tr {
  border-top: 1px solid #0c7254;
}

.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: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
}

/* Upto */
.upto__content {
  min-height: 480px;
  -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;
}

.content.upto__content-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.upto__wrap {
  max-width: 584px;
}

.upto__content-left .upto__wrap {
  margin-left: 55px;
}

.upto__content-right .upto__wrap {
  margin-right: 55px;
}

.upto__text {
  font-weight: 700;
  font-size: 24px;
  margin-top: 8px;
}

/* List */
.list {
  -webkit-align-self: stretch;
  align-self: stretch;
  max-width: 1100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#03b281), to(#054e4d));
  background: -webkit-linear-gradient(top, #03b281 0%, #054e4d 100%);
  background: -moz-linear-gradient(top, #03b281 0%, #054e4d 100%);
  background: -o-linear-gradient(top, #03b281 0%, #054e4d 100%);
  background: linear-gradient(180deg, #03b281 0%, #054e4d 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  padding: 20px;
  margin-left: 50px;
  margin-right: 50px;
}

.list__background {
  background: #000;
}

.list li + li {
  margin-top: 2px;
}

/* Download__content */
.content.download__content {
  min-height: 480px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.download__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.download__buttons {
  position: relative;
  z-index: 1;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: -4px;
}

.download__button {
  display: block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 18px 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 245px;
  max-width: 245px;
  min-height: 74px;
  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-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 1px 1px 26px 4px #9af8c4;
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 1px 1px 26px 4px #9af8c4;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 1px 1px 26px 4px #9af8c4;
  background: -webkit-gradient(linear, right top, left top, from(#03c28a), to(#0c7254));
  background: -webkit-linear-gradient(right, #03c28a 0%, #0c7254 100%);
  background: -moz-linear-gradient(right, #03c28a 0%, #0c7254 100%);
  background: -o-linear-gradient(right, #03c28a 0%, #0c7254 100%);
  background: linear-gradient(270deg, #03c28a 0%, #0c7254 100%);
}

.download__buttons .download__button {
  margin: 4px;
}

.download__button:hover {
  background: -webkit-gradient(linear, right top, left top, from(#03c28a), to(#0c7254));
  background: -webkit-linear-gradient(right, #03c28a 0%, #0c7254 100%);
  background: -moz-linear-gradient(right, #03c28a 0%, #0c7254 100%);
  background: -o-linear-gradient(right, #03c28a 0%, #0c7254 100%);
  background: linear-gradient(270deg, #03c28a 0%, #0c7254 100%);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.download__button span {
  text-align: left;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

/* Bonuses */
.promo__list {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  -webkit-align-self: center;
  align-self: center;
  overflow: visible;
}

.promo__list ol {
  width: -webkit-calc(100% - 220px);
  width: -moz-calc(100% - 220px);
  width: calc(100% - 220px);
}

.promo__image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.promo__image img {
  max-width: 293px;
}

.bonus__item {
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  padding: 40px 20px;
}

.bonus__background {
  background: #102a2e;
}

.bonus__text {
  width: -webkit-calc(100% - 50px);
  width: -moz-calc(100% - 50px);
  width: calc(100% - 50px);
  max-width: 779px;
  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;
}

.bonus__text > * {
  position: relative;
}

.bonus__subtitle {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  margin: 4px 0 14px 0;
}

/* Slots */
.slots__table tr > *:first-child {
  min-width: 170px;
}

/* Games */
.games__table tr td:nth-child(2) ul li::before {
  content: '–';
}

/* Live */
.live__table tr > *:last-child {
  min-width: 292px;
}

.live__table tr > *:first-child {
  min-width: 130px;
}

/* FAQ */
.faq h2,
.reviews h2,
.rating h2 {
  text-align: left;
}

.faq__list {
  margin-top: 20px;
}

.faq__list li + li {
  margin-top: 16px;
}

.title.faq-item__title {
  z-index: 2;
  margin-bottom: 0;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, from(#0c7254), to(#054146));
  background: -webkit-linear-gradient(left, #0c7254 0%, #054146 100%);
  background: -moz-linear-gradient(left, #0c7254 0%, #054146 100%);
  background: -o-linear-gradient(left, #0c7254 0%, #054146 100%);
  background: linear-gradient(90deg, #0c7254 0%, #054146 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 16px 50px 16px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.faq-item__title:after {
  content: '';
  background-image: url('../images/icon-faq.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: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq__item.active .faq-item__title::after {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.faq-item__title:hover {
  text-shadow: 0 0.4px #fff, 0.4px 0 #fff;
}

.faq-item__desc {
  position: relative;
  padding: 16px 20px;
}

/* Reviews */
.review__list {
  width: 100%;
  margin-top: 20px;
}

.review__list ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -6px;
}

.review__list ul li {
  width: -webkit-calc((100% - 24px) / 2);
  width: -moz-calc((100% - 24px) / 2);
  width: calc((100% - 24px) / 2);
  background: -webkit-gradient(linear, left top, right top, from(#0c7254), to(#03c28a));
  background: -webkit-linear-gradient(left, #0c7254 0%, #03c28a 100%);
  background: -moz-linear-gradient(left, #0c7254 0%, #03c28a 100%);
  background: -o-linear-gradient(left, #0c7254 0%, #03c28a 100%);
  background: linear-gradient(90deg, #0c7254 0%, #03c28a 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 16px 20px;
  margin: 6px;
}

.review__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-top: 8px;
}

.review__rating img + img {
  margin-left: 4px;
}

.review__rating img {
  width: 20px;
}

.review__list ul li p {
  margin-top: 8px;
}

/* Rating */
.rating__table {
  width: 100%;
  margin-top: 16px;
}

.rating__table tbody {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: -10px;
}

.rating__table tr {
  width: -webkit-calc((100% - 100px) / 5);
  width: -moz-calc((100% - 100px) / 5);
  width: calc((100% - 100px) / 5);
  background: -webkit-gradient(linear, left top, left bottom, from(#03c28a), to(#0c7254));
  background: -webkit-linear-gradient(top, #03c28a 0%, #0c7254 100%);
  background: -moz-linear-gradient(top, #03c28a 0%, #0c7254 100%);
  background: -o-linear-gradient(top, #03c28a 0%, #0c7254 100%);
  background: linear-gradient(180deg, #03c28a 0%, #0c7254 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 32px 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  margin: 10px;
}

.rating__table table tr td:nth-child(1) img {
  max-width: 36px;
}

.rating__table table tr td:nth-child(2) {
  margin: 16px 0;
}

/* Summary */
.content.summary {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.summary__wrap {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  width: -webkit-calc(100% - 200px);
  width: -moz-calc(100% - 200px);
  width: calc(100% - 200px);
  max-width: 642px;
  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;
}

.summary__wrap h2 {
  text-align: left;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: 5px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.main .main__arrowtop {
  height: 72%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 20px;
  right: 0;
  width: 59px;
  height: 59px;
}

.main__arrowtop a img {
  max-width: 59px;
}

.main__arrowtop a:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* Footer */
.cover.footer__cover {
  padding: 0 5px 5px 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  width: auto;
  overflow: hidden;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
}

.footer__countries {
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 45px;
  background: #054146;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.footer__countries ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: -5px -12px;
}

.footer__countries li {
  margin: 5px 12px;
}

.footer__countries li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71429;
  color: #fff;
  text-transform: uppercase;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  padding: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__countries li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.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__top {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  padding: 0 10px;
}

.top__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 200px;
  -moz-box-flex: 0;
  flex: 0 1 200px;
  min-width: 128px;
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
}

.footer__logo:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  margin: -8px;
}

.footer__links-item {
  margin: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc((100% - 125px - 80px) / 5);
  -moz-box-flex: 0;
  flex: 0 1 calc((100% - 125px - 80px) / 5);
}

.footer__links p {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.footer__links ul li + li {
  margin-top: 6px;
}

.footer__links ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.14286;
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__links ul li a:hover,
.footer__links ul li a:hover span {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #41b15b;
}

.footer__app {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 200px;
  -moz-box-flex: 0;
  flex: 0 1 200px;
  min-width: 125px;
}

.footer__app ul li a {
  width: 125px;
  border: 1px solid #41b15b;
  background: #41b15b;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 7px 15px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.18182;
  color: #fff;
}

.footer__app ul li a:hover {
  text-decoration: none;
  background: none;
  -webkit-box-shadow: rgba(65, 177, 91, 0.9) 0px 0px 10px 0px;
  -moz-box-shadow: rgba(65, 177, 91, 0.9) 0px 0px 10px 0px;
  box-shadow: rgba(65, 177, 91, 0.9) 0px 0px 10px 0px;
}

.footer__app ul li a:hover span {
  color: #fff;
  background: none;
  text-decoration: none;
}

.footer__app ul li a img {
  display: block;
  margin-right: 10px;
  max-width: 16px;
}

.footer__app ul li a span > span:last-child {
  font-weight: 700;
}

.footer__info {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  padding: 0 10px;
  margin-top: 32px;
}

.footer__info > * {
  background: #054146;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__text {
  width: -webkit-calc(100% - 24px - 137px);
  width: -moz-calc(100% - 24px - 137px);
  width: calc(100% - 24px - 137px);
}

.footer__image {
  width: 137px;
  margin-left: 24px;
}

.footer__bottom {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 0 10px 30px 10px;
  margin-top: 32px;
}

.footer__copy {
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: -webkit-calc(100% - 40px - 16px);
  width: -moz-calc(100% - 40px - 16px);
  width: calc(100% - 40px - 16px);
}

.footer__age {
  width: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  margin-left: 16px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  margin-bottom: 8px;
  width: auto;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
}

.breadcrumbs > li:not(:last-child) a {
  font-weight: 400;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.breadcrumbs > li a:not([href]),
.breadcrumbs > li a:not([href]) span {
  cursor: default;
}

.breadcrumbs > li:not(:last-child):after {
  content: '|';
  display: inline-block;
  position: relative;
  font: inherit;
  color: #fff;
  margin: 0px 10px;
}

/* BONUS PAGE */
.responsibly .list {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 194, 138, 0.2)), to(rgba(5, 65, 70, 0.2)));
  background: -webkit-linear-gradient(top, rgba(3, 194, 138, 0.2) 0%, rgba(5, 65, 70, 0.2) 100%);
  background: -moz-linear-gradient(top, rgba(3, 194, 138, 0.2) 0%, rgba(5, 65, 70, 0.2) 100%);
  background: -o-linear-gradient(top, rgba(3, 194, 138, 0.2) 0%, rgba(5, 65, 70, 0.2) 100%);
  background: linear-gradient(180deg, rgba(3, 194, 138, 0.2) 0%, rgba(5, 65, 70, 0.2) 100%);
}

/* APP PAGE */
.app .content.prime,
.betting .content.prime {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.app .prime__wrap {
  margin: 0 60px 0 0;
  max-width: 615px;
}

/* BETTING PAGE */
.betting .prime__wrap {
  margin: 0 60px 0 0;
}

.bets__table {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 65, 70, 0.8)), to(rgba(3, 194, 138, 0.8)));
  background: -webkit-linear-gradient(left, rgba(5, 65, 70, 0.8) 0%, rgba(3, 194, 138, 0.8) 100%);
  background: -moz-linear-gradient(left, rgba(5, 65, 70, 0.8) 0%, rgba(3, 194, 138, 0.8) 100%);
  background: -o-linear-gradient(left, rgba(5, 65, 70, 0.8) 0%, rgba(3, 194, 138, 0.8) 100%);
  background: linear-gradient(90deg, rgba(5, 65, 70, 0.8) 0%, rgba(3, 194, 138, 0.8) 100%);
  font-weight: 700px;
}

.bets__table tr > *:first-child {
  max-width: 120px;
}
@media screen and (min-width: 1600px) {
  .cover.footer__cover {
    padding-left: -webkit-calc(50% - ((1600px - 10px) / 2));
    padding-left: -moz-calc(50% - ((1600px - 10px) / 2));
    padding-left: calc(50% - ((1600px - 10px) / 2));
    padding-right: -webkit-calc(50% - ((1600px - 10px) / 2));
    padding-right: -moz-calc(50% - ((1600px - 10px) / 2));
    padding-right: calc(50% - ((1600px - 10px) / 2));
  }
}

@media screen and (min-width: 1580px) {
  .cover {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main__arrowtop {
    right: -webkit-calc(50% - ((1580px - 40px) / 2));
    right: -moz-calc(50% - ((1580px - 40px) / 2));
    right: calc(50% - ((1580px - 40px) / 2));
  }
}

@media screen and (max-width: 1400px) {
  .list__background img {
    opacity: 0.4;
  }

  .bonus__background img {
    opacity: 0.6;
    -o-object-position: 60%;
    object-position: 60%;
  }

  .bg1 img {
    -o-object-position: 90%;
    object-position: 90%;
  }
}

@media screen and (max-width: 1280px) {
  .content {
    padding: 20px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 60%;
    object-position: 60%;
  }

  .app .prime__background img,
  .betting .prime__background img {
    -o-object-position: 40%;
    object-position: 40%;
  }

  /* Summary */
  .summary__wrap {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 20px;
    background: -webkit-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    background: -moz-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    background: -o-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    background: linear-gradient(178deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-box-shadow: 0 -2px 10px #102a2e;
    -moz-box-shadow: 0 -2px 10px #102a2e;
    box-shadow: 0 -2px 10px #102a2e;
  }
}

@media screen and (max-width: 1100px) {
  .header__logo {
    margin-left: 0px;
  }

  .sidebar__left {
    display: none;
  }

  .main__content {
    margin-left: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    flex: 1 1 100%;
  }

  .sidebar__links-main {
    display: block;
    margin-top: 20px;
  }

  .sidebar__links-button:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sidebar__links-button.active:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .sidebar__links-list {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  h1,
  .title.general {
    font-size: 36px;
  }

  /* HEADER */
  .header__logo {
    margin-right: auto;
  }

  .menu-button {
    display: block;
    background-color: transparent;
    padding: 8px;
    width: 32px;
    height: 32px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    flex: none;
    margin-left: 10px;
  }

  .menu-button svg {
    display: block;
    margin: auto;
  }

  .menu-button svg rect {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    fill: #fff;
  }

  .menu-button.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .menu-button.active svg rect:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 2);
    -moz-transform: scale(0, 2);
    -o-transform: scale(0, 2);
    transform: scale(0, 2);
  }

  .menu-button.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: -webkit-calc(100vh - 70px);
    max-height: -moz-calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: #004146;
    z-index: 100;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: none;
    padding: 25px;
    text-align: center;
  }

  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    text-align: center;
    padding: 0;
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .header__menu ul li + li {
    margin-left: 0;
    margin-top: 16px;
  }

  .header__menu ul a {
    padding: 7px 22px;
    min-height: 40px;
    font-weight: 700;
    min-width: 200px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    border: 1px solid #fff;
  }

  .header__menu ul a:hover {
    -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    text-shadow: none;
    text-decoration: none;
    border-color: #41b15b;
  }

  /* FOOTER */
  .footer__links {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 48px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 48px) / 3);
  }

  /* Upto */
  .content .upto__wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 850px) {
  h1,
  .title.general {
    font-size: 30px;
  }

  h2,
  .title.high {
    font-size: 24px;
  }

  h3,
  .title.middle {
    font-size: 18px;
  }

  .content {
    padding: 15px;
  }

  .cover,
  .main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main__arrowtop {
    right: 15px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 75%;
    object-position: 75%;
  }

  .app .prime__background img,
  .betting .prime__background img {
    -o-object-position: 30%;
    object-position: 30%;
  }

  .banner__wrap {
    padding: 20px 16px;
    background: -webkit-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    background: -moz-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    background: -o-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    background: linear-gradient(178deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .prime__wrap,
  .app .prime__wrap,
  .betting .prime__wrap {
    margin: 0;
  }

  /* Table */
  .table tr {
    padding-left: 12px;
    padding-right: 12px;
  }

  .table tr > * + * {
    padding-left: 8px;
  }

  /* List */
  .list {
    margin-left: 0;
    margin-right: 0;
  }

  /* List bg */
  .bg2 img {
    -o-object-position: 65%;
    object-position: 65%;
  }

  .bg3 img {
    -o-object-position: 55%;
    object-position: 55%;
  }

  /* Bonuses */
  .promo__list {
    width: 100%;
  }

  /* Upto */
  .upto__content-left .upto__background img {
    -o-object-position: 70%;
    object-position: 70%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 30%;
    object-position: 30%;
  }

  .upto__wrap {
    max-width: 450px;
  }

  /* Download__content */
  .download__background img {
    -o-object-position: 5%;
    object-position: 5%;
  }

  /* Ratings */
  .rating__table tr {
    width: -webkit-calc((100% - 60px) / 3);
    width: -moz-calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
  }

  /* Summary */
  .summary__wrap {
    padding: 15px 10px;
  }

  /* FOOTER */
  .footer__countries ul {
    margin-left: -5px;
    margin-right: -5px;
  }

  .footer__countries li {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 768px) {
  /* HEADER */
  .header > .header__button {
    display: none;
  }

  .header__menu .header__signup,
  .header__menu .header__login {
    display: inline-block;
    min-width: 200px;
    margin: 0 5px 16px;
  }

  /* Table-wide */
  .table-wide {
    overflow: auto;
  }

  .table-wide table {
    width: 820px;
  }

  /* Intro__table */
  .intro__table td:first-child,
  .intro__table th:first-child {
    max-width: 200px;
  }

  /* Vip */
  .vip__table tr > *:first-child {
    max-width: 120px;
  }

  /* Games */
  .games__table tr > *:first-child {
    max-width: 150px;
  }

  /* Double */
  .double {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .double > * {
    width: 100%;
  }

  .double > *:last-child {
    margin: 20px 0 0 0;
  }

  /* Bonus */
  .bonus__text {
    width: 100%;
  }

  .bonus__background {
    opacity: 0.5;
  }

  .bonus__background img {
    -o-object-position: 77%;
    object-position: 77%;
    opacity: 0.5;
  }

  /* Summary */
  .summary__background img {
    -o-object-position: 70%;
    object-position: 70%;
  }

  /* FOOTER */
  .footer__countries {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 650px) {
  h1,
  .title.general {
    font-size: 26px;
  }

  h2,
  .title.high {
    font-size: 22px;
  }

  .main__buttons {
    background: rgba(5, 66, 71, 0.6);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 16px;
  }

  .main__buttons .button {
    width: -webkit-calc(50% - 4px);
    width: -moz-calc(50% - 4px);
    width: calc(50% - 4px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    min-width: 0;
  }

  .main {
    padding-bottom: 50px;
  }

  .main__arrowtop a {
    bottom: 80px;
    width: 40px;
    height: 40px;
  }

  .main__arrowtop a img {
    max-width: 40px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 83%;
    object-position: 83%;
  }

  .app .prime__background img,
  .betting .prime__background img {
    -o-object-position: 20%;
    object-position: 20%;
  }

  /* Table */
  .table-small {
    overflow: auto;
  }

  .table-small table {
    width: 620px;
  }

  /* Upto */
  .content.upto__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  .upto__content-left .upto__background img {
    -o-object-position: 85%;
    object-position: 85%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 20%;
    object-position: 20%;
  }

  /* Bonuses */
  .list.promo__list {
    padding-bottom: 204px;
    overflow: hidden;
  }

  .promo__list ol {
    width: 100%;
  }

  .promo__image {
    right: 50%;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
  }

  /* Review */
  .review__list ul li {
    width: 100%;
  }

  /* Summary */
  .summary__wrap {
    width: 100%;
  }

  .summary__background img {
    -o-object-position: 80%;
    object-position: 80%;
  }

  /* FOOTER */
  .cover.footer__cover {
    padding-bottom: 75px;
  }

  .footer__top {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .top__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-box-flex: 0;
    flex: 0 1 100%;
    margin: 0 0 20px 0;
  }
}

@media screen and (max-width: 550px) {
  /* Ratings */
  .rating__table tbody {
    margin: -6px;
  }

  .rating__table tr {
    width: -webkit-calc((100% - 24px) / 2);
    width: -moz-calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    font-size: 16px;
    margin: 6px;
  }

  /* FOOTER */
  .footer__top {
    padding: 0 5px;
  }

  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    flex-direction: column-reverse;
    padding: 0 5px;
  }

  .footer__info > * {
    padding: 10px;
  }

  .footer__image {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .footer__text {
    width: 100%;
  }

  .footer__bottom {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 450px) {
  h1,
  .title.general {
    font-size: 24px;
  }

  h2,
  .title.high {
    font-size: 20px;
  }

  h3,
  .title.middle {
    font-size: 16px;
  }

  .content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main__arrowtop {
    right: 10px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .cover,
  .main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .banner__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Upto */
  .upto__text {
    font-size: 20px;
  }

  /* List */
  .list {
    padding: 15px 8px;
  }

  /* Download__content */
  .download__background img {
    -o-object-position: 10%;
    object-position: 10%;
  }

  /* Bonuses */
  .bonus__item {
    padding: 20px 10px;
  }

  .bonus__text {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  /* Review */
  .review__list ul li {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* FAQ */
  .title.faq-item__title {
    font-size: 16px;
    padding: 10px 32px 10px 10px;
  }

  .faq-item__title:after {
    right: 8px;
    top: 8px;
  }

  .faq-item__desc {
    font-size: 14px;
    padding: 5px 10px;
  }

  /* Summary */
  .summary__wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  .summary__wrap h2 {
    text-align: center;
  }

  /* FOOTER */
  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 32px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 32px) / 2);
  }
}
