@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;
}

/* 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: #416064;
}

.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: #416064;
}
.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;
}

.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: #054146;
  -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: 65px;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

.header__logo img {
  max-width: 113px;
}

.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 171px;
}

.header__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.header__menu ul li + li {
  margin-left: 24px;
}

.header__menu ul a {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
}

.header__menu ul a:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.header__button {
  min-width: 147px;
  min-height: 45px;
  padding: 13px 24px;
  margin-top: 0;
}

.header__login {
  margin-left: auto;
}

.header__signup {
  margin-left: 10px;
}

.header__time {
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-left: 10px;
}

.header__lang {
  font-weight: 400;
  font-size: 15px;
  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;
}

.header__lang::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 32px;
  background: #fff;
  opacity: 0.2;
  margin: 0 10px;
}

/* Main */
.main {
  position: relative;
  margin: 0 auto;
  padding: 65px 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: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  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-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  background: -webkit-gradient(linear, left top, right top, color-stop(37%, #416064), to(#054146));
  background: -webkit-linear-gradient(left, #416064 37%, #054146 100%);
  background: -moz-linear-gradient(left, #416064 37%, #054146 100%);
  background: -o-linear-gradient(left, #416064 37%, #054146 100%);
  background: linear-gradient(90deg, #416064 37%, #054146 100%);
  padding: 4px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
}

.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.7) 0%, rgba(5, 65, 70, 0.7) 100%), -webkit-radial-gradient(circle, rgba(50, 144, 157, 0.5) 0%, rgba(50, 144, 157, 0) 100%);
  background: -moz-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%), -moz-radial-gradient(circle, rgba(50, 144, 157, 0.5) 0%, rgba(50, 144, 157, 0) 100%);
  background: -o-linear-gradient(272deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%), -o-radial-gradient(circle, rgba(50, 144, 157, 0.5) 0%, rgba(50, 144, 157, 0) 100%);
  background: linear-gradient(178deg, rgba(65, 96, 100, 0.7) 0%, rgba(5, 65, 70, 0.7) 100%), radial-gradient(circle, rgba(50, 144, 157, 0.5) 0%, rgba(50, 144, 157, 0) 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;
  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: 60px;
}

.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 > * {
  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;
}

/* Intro */
.intro__content {
  padding: 20px;
}

/* Table */
.table {
  width: 100%;
  border: 1px solid #1e5d65;
  -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(#416064), to(#054146));
  background: -webkit-linear-gradient(left, #416064 0%, #054146 100%);
  background: -moz-linear-gradient(left, #416064 0%, #054146 100%);
  background: -o-linear-gradient(left, #416064 0%, #054146 100%);
  background: linear-gradient(90deg, #416064 0%, #054146 100%);
}

.table tbody tr + tr {
  border-top: 1px solid #1e5d65;
}

.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;
}

/* Compare*/
.intro__compare > * {
  background: -webkit-gradient(linear, left top, right top, from(#416064), to(#054146));
  background: -webkit-linear-gradient(left, #416064 0%, #054146 100%);
  background: -moz-linear-gradient(left, #416064 0%, #054146 100%);
  background: -o-linear-gradient(left, #416064 0%, #054146 100%);
  background: linear-gradient(90deg, #416064 0%, #054146 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 40px;
  overflow: hidden;
}

.compare__item-wrap {
  height: 100%;
  border: 1px solid #1e5d65;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.compare__heading {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 8px 12px;
}

.compare__item ul li {
  position: relative;
  padding: 12px 10px 12px 48px;
}

.compare__item ul li:before {
  content: '';
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 12px;
  width: 24px;
  height: 24px;
}

.compare__plus ul li::before {
  background-image: url('../images/icon-plus.svg');
}

.compare__minus ul li::before {
  background-image: url('../images/icon-minus.svg');
}

.compare__item ul li + li {
  border-top: 1px solid #1e5d65;
}

/* 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: 550px;
}

.upto__content-left .upto__wrap {
  margin-left: 60px;
}

.upto__content-right .upto__wrap {
  margin-right: 60px;
}

.upto__text {
  font-weight: 700;
  margin-top: 8px;
}

/* List */
.list {
  -webkit-align-self: stretch;
  align-self: stretch;
  max-width: 1100px;
  background-image: url('../images/list-bg.webp');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 40px 40px 40px 50px;
  margin-left: 50px;
  margin-right: 50px;
}

.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: 17px 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: 274px;
  max-width: 274px;
  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;
  background: -webkit-gradient(linear, right top, left top, from(#416064), to(#054146));
  background: -webkit-linear-gradient(right, #416064 0%, #054146 100%);
  background: -moz-linear-gradient(right, #416064 0%, #054146 100%);
  background: -o-linear-gradient(right, #416064 0%, #054146 100%);
  background: linear-gradient(270deg, #416064 0%, #054146 100%);
}

.download__buttons .download__button {
  margin: 4px;
}

.download__button:hover {
  background: -webkit-gradient(linear, right top, left top, from(#416064), to(#054146));
  background: -webkit-linear-gradient(right, #416064 0%, #054146 100%);
  background: -moz-linear-gradient(right, #416064 0%, #054146 100%);
  background: -o-linear-gradient(right, #416064 0%, #054146 100%);
  background: linear-gradient(270deg, #416064 0%, #054146 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: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

/* Vip */
.content.vip__content {
  background: none;
  padding-left: 0;
  padding-right: 0;
}

.vip__list {
  width: 100%;
  margin-top: 20px;
}

.vip__list ul {
  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;
}

.vip__list ul li {
  width: -webkit-calc((100% - 80px) / 4);
  width: -moz-calc((100% - 80px) / 4);
  width: calc((100% - 80px) / 4);
  background: #054146;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 32px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: 10px;
}

.vip__image {
  height: 51px;
}

.vip__image img {
  -webkit-filter: drop-shadow(1px 9px 12px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(1px 9px 12px rgba(0, 0, 0, 0.25));
}

.vip__title {
  text-align: center;
  margin-top: 16px;
}

.vip__subtitle {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
}

/* Tournaments */
.tournaments__table tr > *:first-child {
  max-width: 230px;
}

/* Live */
.live__table tr > *:first-child {
  max-width: 180px;
}

/* 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: #416064;
  -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: #416064;
  -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 {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
}
.rating__table tbody tr {
  min-height: 112px;
  background: #416064;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.rating__table tbody tr td {
  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;
}

.rating__table tr + tr {
  margin-top: 12px;
  border-top: none;
}

.rating__table tr > td + td {
  padding-left: 12px;
}

.rating__table tr td:nth-child(1) {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.rating__table tr td:nth-child(2) img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 20px;
  -moz-box-flex: 0;
  flex: 0 1 20px;
}

.rating__table tr td:nth-child(2) img + img {
  margin-left: 5px;
}

/* 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: 130%;
  color: #9398a0;
  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__cover > * {
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 5px;
}

.footer__countries {
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 19px;
}

.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: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 12px;
  background: #054146;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__countries li a:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  background: rgba(5, 65, 70, 0.9);
}

.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__links {
  width: 100%;
  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;
  padding: 15px 30px;
}

.footer__links > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 4);
  -moz-box-flex: 0;
  flex: 0 1 calc((100% - 50px) / 5);
  margin: 5px;
}

.footer__links p {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #373c47;
  margin: 0 0 12px 0;
}

.footer__links ul li + li {
  margin-top: 4px;
}

.footer__links ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #3a3f47;
  -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 {
  color: #373c47;
  text-shadow: 0 0.4px #373c47, 0.4px 0 #373c47;
}

.footer__payments {
  padding: 14px 17px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 276px;
  -moz-box-flex: 0;
  flex: 0 0 276px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.footer__payments a + a {
  margin-left: 10px;
}

.footer__payments img {
  max-height: 50px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer__payments a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__text {
  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;
  padding: 15px 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 276px - 10px - 10px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 276px - 10px - 10px);
}

.footer__text,
.footer__copyright {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #3a3f47;
}

.footer__copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 434px - 10px - 10px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 434px - 10px - 10px);
  padding: 15px 30px;
}

.footer__copyright p + p {
  margin-top: 10px;
}

.footer__info {
  background: transparent;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 434px;
  -moz-box-flex: 0;
  flex: 0 1 434px;
  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;
}

.footer__age {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #373c47;
  padding: 15px 30px;
  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__button {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: initial;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #799496;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-top: 10px;
  width: 100%;
  min-height: 32px;
}

.footer__button:hover {
  background: #41b15b;
}

/* 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 */
.bonus .content.prime {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.bonus .prime__wrap {
  margin: 0 60px 0 0;
}
