@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font: inherit;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-focus-ring-color: rgba(255, 255, 255, 0);
  cursor: default;
}

body {
  font-size: 100%;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a {
  background: transparent;
}

*:focus,
*:active,
*:hover {
  outline: none;
}

hr {
  box-sizing: content-box;
  height: 0;
}

ol,
ul {
  list-style: none;
}

pre {
  -moz-tab-size: 4;
  tab-size: 4;
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

img {
  max-width: 100%;
  border: none;
  vertical-align: top;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button {
  overflow: visible;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: none;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

button,
input,
select[multiple],
textarea {
  background-image: none;
}

input,
select,
textarea {
  border-radius: 0;
  box-shadow: none;
}

input,
textarea {
  resize: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-moz-placeholder {
  color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}

[placeholder]:focus::placeholder {
  color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
html {
  height: 100%;
}

[v-cloak] {
  display: none !important;
}

a {
  color: #4285f4;
  text-decoration: none;
}
a:hover {
  color: #f7931a;
}

.container {
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.article {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .article {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

::selection {
  background-color: #f7931a;
  color: #fff;
}

.gray {
  background-color: #f7f7f7;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 90000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s 0s, opacity 0.25s 0s;
  transition: visibility 0s 0s, opacity 0.25s 0s;
}

.loader__spinner {
  margin: 0 auto;
  width: 100px;
  text-align: center;
}

.loader__spinner > div {
  width: 16px;
  height: 16px;
  background-color: #F7931A;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.7s infinite ease-in-out both;
  animation: sk-bouncedelay 1.7s infinite ease-in-out both;
  margin-right: 5px;
}

.loader__spinner > div:first-child {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.loader__spinner > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.loader__spinner > div :nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.title {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}
.title--second {
  font-size: 58px;
  line-height: 72px;
  color: #ffffff;
}

.text {
  font-size: 18px;
  line-height: 1.6;
  color: #494949;
}
@media (max-width: 767px) {
  .text {
    font-size: 15px;
    line-height: 1.4;
  }
}
.text--second {
  color: #D6D6D6;
}
.text--third {
  color: #757575;
}
.text_second {
  text-align: center;
  margin-bottom: 40px;
}

.button {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: none;
  background-color: transparent;
  text-align: center;
}
.button_size_l {
  font-size: 16px;
  line-height: 17px;
  padding-top: 22px;
  padding-bottom: 21px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 6px;
}
.button_primary {
  background-color: #4285f4;
}
.button_primary:hover {
  background-color: #f7931a;
}
.button_primary:active {
  background-color: #d6d6d6;
}
.button_secondary {
  color: #494949;
  font-size: 13px;
  line-height: 15px;
}
.button_secondary:hover {
  color: #000;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  text-align: center;
  height: 60px;
  background-color: #4285f4;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn_more {
  height: auto;
  min-height: 60px;
  line-height: normal;
  font-weight: bold;
  padding-top: 22px;
  padding-bottom: 21px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.btn_with-icon {
  max-width: 300px;
}
.btn_with-icon:hover {
  color: #fff;
}
.btn_with-icon img {
  margin-right: 20px;
}

.btn strong {
  font-weight: 700;
}

.btn:hover {
  background-color: #f7931a;
}

.btn:active {
  background-color: #d6d6d6;
}

.btn_primary {
  display: inline-block;
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 10px center;
  cursor: pointer;
  position: relative;
  background-color: #4285f4;
  color: #fff;
  border: none;
  font-size: 12px;
  min-width: 90px;
  padding-left: 20px;
  padding-right: 20px;
}
.btn_primary:hover {
  background-color: #f7931a;
  color: #fff;
}
.btn_primary:active {
  background-color: #d6d6d6;
  color: #fff;
}

.btn_secondary {
  height: 40px;
  background-color: transparent;
  font-size: 13px;
  line-height: 40px;
  color: #494949;
  font-weight: bold;
  padding: 0;
}
.btn_secondary.blue {
  color: #4285f4;
}
.btn_secondary.blue:hover {
  color: #000;
}
.btn_secondary:hover {
  background-color: transparent;
  color: #4285f4;
}

.btn_compact {
  line-height: 40;
  height: 40px;
  min-width: 160px;
}

.btn_plus {
  height: auto;
  min-height: 60px;
  line-height: normal;
}

.btn_plus:before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 25px;
  background-image: url("../images/sprites/sprite.png");
  background-position: -148px -95px;
  width: 16px;
  height: 16px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_plus:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px;
  }
}
.btn_download:before {
  content: "";
  flex: 0 0 auto;
  margin-right: 10px;
  display: block;
  background-image: url("../images/btn-download.png");
  width: 12px;
  height: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_download:before {
    background-image: url("../images/btn-download@2x.png");
    background-size: 12px 14px;
  }
}
.btn_black {
  background-color: #000;
  min-width: 300px;
  padding-left: 91px;
  font-weight: 700;
  border: 1px solid #000;
  line-height: 58px;
  text-align: left;
}

.btn_black:hover {
  background-color: #fff;
  border-color: #fff;
  color: #4285f4;
}

.btn_black:hover:before {
  background-image: url("../images/sprites/sprite.png");
  background-position: -124px -95px;
  width: 16px;
  height: 16px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_black:hover:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px;
  }
}
.btn_black:active {
  background-color: #4285f4;
  border: 1px solid #fff;
  color: #fff;
}

.btn_black:active:before {
  background-image: url("../images/sprites/sprite.png");
  background-position: -148px -95px;
  width: 16px;
  height: 16px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_black:active:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px;
  }
}
.btn_calc {
  font-size: 18px;
  line-height: 24px;
}

.btn_calc:before {
  content: "";
  display: block;
  flex: 0 0 auto;
  margin-right: 10px;
  background-image: url("../images/sprites/sprite.png");
  background-position: -172px -95px;
  width: 13px;
  height: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_calc:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px;
  }
}
.btn_link {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 0;
  color: #4285f4;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  height: auto;
  background: none;
}

.btn_link:hover,
.btn_link.gray:hover {
  color: #000;
  background-color: transparent;
}

.btn_link:active {
  background-color: transparent;
}

.btn_link + .btn_link {
  margin-left: 20px;
}

.btn_link.gray {
  color: #757575;
}

.btn_default {
  width: 100%;
  max-width: 360px;
  height: 50px;
  font-size: 14px;
}

.btn_big {
  width: auto;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  font-weight: bold;
  min-width: 280px;
  border-radius: 6px;
}

.btn_simple {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  color: #000;
  font-weight: bold;
  text-align: center;
  padding-left: 20px;
  padding-right: 10px;
}

.btn_simple span {
  position: relative;
}

.btn_simple span::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  background-image: url("../images/sprites/sprite.png");
  background-position: -213px -95px;
  width: 7px;
  height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_simple span::after {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px;
  }
}
.btn_simple:hover {
  border-color: #4285f4;
  color: #4285f4;
  background-color: #fff;
}

.btn_simple:active {
  color: #757575;
  background-color: #fff;
  border-color: #d6d6d6;
}

.btn_social {
  width: 80px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 540px) {
  .btn_social {
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 15px;
  }
}
.btn_social:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.btn_social_fb {
  background-color: #4861a3;
}

.btn_social_fb:hover {
  background-color: #5777cc;
}

.btn_social_fb:active {
  background-color: #374c82;
}

.btn_social_fb:before {
  width: 13px;
  height: 24px;
  background-image: url("../images/icon-fb.svg");
}

.btn_social_vk {
  background-color: #597da2;
}

.btn_social_vk:hover {
  background-color: #678eb6;
}

.btn_social_vk:active {
  background-color: #446a91;
}

.btn_social_vk:before {
  width: 34px;
  height: 19px;
  background-image: url("../images/icon-vk.svg");
}

.btn_social_tw {
  background-color: #1da1f2;
}

.btn_social_tw:hover {
  background-color: #3eb5ff;
}

.btn_social_tw:active {
  background-color: #1588ce;
}

.btn_social_tw:before {
  width: 23px;
  height: 19px;
  background-image: url("../images/icon-tw.svg");
}

.btn_social_gplus {
  background-color: #dd5044;
}

.btn_social_gplus:hover {
  background-color: #fb5446;
}

.btn_social_gplus:active {
  background-color: #bf4339;
}

.btn_social_gplus:before {
  width: 28px;
  height: 18px;
  background-image: url("../images/icon-gplus.svg");
}

.btn_social_mail {
  background-color: #fff;
  border: 1px solid #cdcdcd;
  background-image: url("../images/icon-mail.svg");
  background-size: 33px 27px;
}

.btn_social_mail:hover {
  border: 2px solid #4285f4;
  background-color: #fff;
}

.btn_social_mail:active {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
}

.btn_social:active:before {
  opacity: 0.7;
}

.btn_web-version {
  background-color: #f7931a;
  font-weight: bold;
  padding-right: 38px;
  padding-left: 50px;
  padding-top: 19px;
  padding-bottom: 18px;
  width: 100%;
  max-width: 370px;
  background-image: url("../images/cryptotab-icon.svg");
  background-size: 18px 21px;
  background-repeat: no-repeat;
  background-position: left 20px center;
  height: auto;
  line-height: 23px;
  text-align: center;
}
.btn_web-version:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  right: 20px;
  margin-top: -8px;
  top: 50%;
}
.btn_web-version:hover {
  background-color: #4285f4;
}
.btn_web-version:active {
  background-color: #d6d6d6;
}

.btn_os:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 20px;
  top: 18px;
  background-size: auto 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.mac .btn_os {
  padding-left: 54px !important;
}
.mac .btn_os:before {
  background-image: url(../images/icon-mac.svg);
}

.win .btn_os {
  padding-left: 54px !important;
}
.win .btn_os:before {
  background-image: url(../images/icon-win.svg);
}

.btn_app-store,
.btn_google-play {
  background-color: #000;
  background-image: url(../images/get-it-on-google-play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 157px 37px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_app-store,
  .btn_google-play {
    background-image: url("../images/get-it-on-google-play@2x.png");
  }
}
.btn_app-store:hover,
.btn_google-play:hover {
  background-color: #f7931a;
}

.btn_app-store {
  background-image: url(../images/app-store-btn.png);
  background-size: 139px 37px;
  background-position: calc(50% - 9px) center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_app-store {
    background-image: url("../images/app-store-btn@2x.png");
  }
}

.btn--download {
  line-height: 1;
}
.btn--download::before {
  content: "";
  flex: 0 0 auto;
  position: relative;
  display: none;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto auto;
}

.page.os-desktop .btn--download::before {
  display: block;
}

.page.mac .btn--download::before {
  top: -2px;
  background-image: url(../images/icon-apple.svg);
}

.page.win .btn--download::before {
  top: -1px;
  background-image: url(../images/icon-windows.svg);
}

.btn--small-mobile {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 60px;
  height: 60px;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}
.btn--small-mobile.ios {
  background-image: url(../images/icon-appstore.svg);
}
.btn--small-mobile.android {
  background-image: url(../images/icon-google-play.png);
}
@media (max-width: 768px) {
  .btn--small-mobile {
    display: none;
  }
}

.page.mobile .btn--small-mobile {
  display: none;
}

.page {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  min-width: 320px;
}
.page-content {
  min-height: 100%;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
}
.page-content--white {
  background-color: #fff;
}
@media (min-width: 1200px) {
  .page-content--cp .header {
    margin-bottom: 0;
  }
}
.page_black .coins {
  background-color: #000;
}

.page_blocked {
  overflow: hidden;
}

.page_ru .btn_black {
  padding-left: 75px;
}

.page_es .trust {
  max-width: 380px;
}

.page_fr .trust {
  max-width: 430px;
}

.page_en .first__screen p,
.page_fr .first__screen p,
.page_es .first__screen p {
  margin-bottom: 35px;
}

.page_en .trust_top,
.page_fr .trust_top,
.page_es .trust_top {
  margin-bottom: 30px;
}

.page_inline .coins {
  z-index: 1;
  background-color: transparent;
}

.page_inline .header {
  z-index: 20;
}

.page_inline .container {
  position: relative;
  padding-bottom: 450px;
}

.page_inline .container__text {
  padding-bottom: 20px;
  z-index: 10;
}

.page_inline .container__text h1,
.page_inline .container__text p {
  text-align: center;
}

.page_withcoins .footer {
  position: relative;
  z-index: 10;
}

.page_withcoins .header {
  z-index: 10;
}

.page_withcoins .container__text {
  z-index: 1;
}

.page_payments .container__text,
.page_leaderboard .container__text,
.page_results .container__text {
  max-width: 790px;
}

.page_payments .container__text h1,
.page_leaderboard .container__text h1,
.page_results .container__text h1,
.page_uninstall .container__text h1,
.page_generator .container__text h1 {
  text-align: center;
}
.page_payments .container__text p,
.page_leaderboard .container__text p,
.page_results .container__text p,
.page_uninstall .container__text p,
.page_generator .container__text p {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #494949;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 40px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .header.fixed:not(.header--not-fixed) .header__wrapper {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, background-color 0.2s;
  }
  .header.fixed:not(.header--not-fixed) .header__wrapper .header__container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .header.fixed:not(.header--not-fixed) .header__wrapper .logo {
    height: 50px;
  }
  .header.fixed:not(.header--not-fixed) .header__wrapper .logo svg {
    max-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header--hide-mob {
    display: none;
  }
}
.header__logo {
  position: relative;
  display: block;
  z-index: 1;
}
.header__wrapper {
  width: 100%;
  transition: background-color 0.2s;
}
.header__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .header__container {
    min-height: 80px;
  }
}
.header__navbar {
  display: flex;
  align-items: center;
  z-index: 11;
}
.header__menu {
  margin-right: 30px;
}
.header__menu a {
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.header__menu a + a {
  margin-left: 25px;
}
.header__menu a.active {
  color: #000;
  pointer-events: none;
  position: relative;
}
.header--inverse:not(.fixed) .header__menu a.active {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .header--inverse:not(.fixed) .header__menu a.active {
    color: #000;
  }
}

.header__menu a.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f7931a;
  position: absolute;
  bottom: -13px;
  left: 0;
}
@media (max-width: 768px) {
  .header__menu--mobile-center {
    text-align: center;
  }
}
.header__menu--white a {
  color: #fff;
}
.header__menu--second {
  margin-right: 0;
}
.header__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #757575;
  margin-right: 30px;
  text-transform: capitalize;
}
.header__socials a {
  text-decoration: none;
}
.header__socials a svg #getcryptotab--chat-icons {
  fill: #494949;
}
.header__socials a:hover svg #getcryptotab--chat-icons {
  fill: #f7931a;
}
.header__socials a + a {
  margin-left: 20px;
}
.header__socials span i {
  margin-left: 10px;
}
.header__lang_black .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
.header__lang_black .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
}
.header__lang_black .lang.opened .lang__current:before {
  top: 13px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d0d0d0;
  border-bottom: none;
}
.header__lang_transparent .lang__current {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.header__lang_transparent .lang__current:hover {
  background-color: #fff;
  color: #4285f4;
  box-shadow: 0 0 0 1px #fff;
}
.header__lang_transparent .lang.opened .lang__current {
  color: #3e82f7;
  background-color: #fff;
  box-shadow: 0 0 0 1px #fff;
}
.header--white {
  background-color: #fff;
}
.header__block-mob {
  display: none;
}
@media (min-width: 1200px) {
  .header {
    min-height: 120px;
  }
}
@media only screen and (max-width: 1080px) {
  .header {
    flex-direction: column;
  }
  .header__container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    align-items: flex-start;
    padding: 0;
    margin-bottom: 70px;
    background-color: #fff;
    min-height: 61px;
  }
  .header.fixed .header__wrapper {
    position: fixed;
    top: -66px;
    left: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, background-color 0.2s;
  }
  .header__container {
    align-items: flex-start;
  }
  .header__navbar {
    position: absolute;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    background: #ffffff;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
  }
  .header__navbar.active {
    transform: translateY(60px);
    opacity: 1;
  }
  .header__navbar .store-links {
    display: none;
  }
  .header__navbar .lang {
    display: block;
  }
  .header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
    background-color: #fff;
    z-index: 100;
  }
  .header__logo .logo {
    margin-bottom: 0;
  }
  .header__lang {
    margin-right: 15px;
    margin-top: 13px;
    margin-bottom: 14px;
  }
  .header__menu {
    display: block;
    justify-content: flex-start;
    width: 100%;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid #d6d6d6;
    margin-right: 0 !important;
    overflow-x: scroll;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu:after {
    content: "";
    display: block;
    width: 20px;
  }
  .header__menu a {
    display: inline-block;
  }
  .header__menu a:last-child {
    margin-right: 20px;
  }
  .header__menu a.active:after {
    bottom: -18px;
  }
  .header__menu--second {
    flex-direction: column;
    display: flex;
    border-bottom: none;
    padding: 30px 65px;
  }
  .header__menu--second a {
    margin-bottom: 35px;
    margin-left: 0;
  }
  .header__menu--second a + a {
    margin-left: 0;
  }
  .header__menu--second .btn_primary {
    margin-bottom: 0;
  }
  .header__block-mob {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 65px;
    border-top: 1px solid #d6d6d6;
  }
  .header__block-mob a {
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: bold;
    color: #757575;
    margin-bottom: 25px;
  }
  .header__block-mob a:last-child {
    margin-bottom: 0;
  }
  .header__block-mob a:hover {
    color: #f7931a;
  }
  .header__block-mob .google-play-btn {
    margin: 0;
    height: 50px;
    width: 245px;
  }
  .header__block-mob-text {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03px;
  }
  .header__socials {
    margin-right: 0;
    margin-left: 15px;
  }
  .header__socials span {
    display: block;
    margin-right: 10px;
  }
}

.header.header--no-margin {
  margin-bottom: 0;
}

/*
*
* Modificators
*
*/
@media (max-width: 768px) {
  .header--not-menu {
    background: none;
    align-items: center;
    padding: 20px;
  }
  .header--not-menu .lang {
    display: block;
  }
}

.header--inverse .header__socials > span {
  color: #d6d6d6;
}
.header--inverse .header__socials .social-link_instagram:not(:hover) svg #instagram_up {
  fill: #fff;
}
.header--inverse .header__lang:not(.header__lang_transparent) .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
.header--inverse .header__lang:not(.header__lang_transparent) .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
  color: #4285f4;
}
@media (max-width: 768px) {
  .header--inverse .header__navbar {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .header--inverse .header__menu {
    border-color: rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 1200px) {
  .header--position-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
}

/*
* Burger
*/
.burger {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 19px;
  top: 22px;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 200;
}
.burger.active {
  transform: rotate(90deg);
}
.burger.active span, .burger.active:before, .burger.active:after {
  background-color: #4285f4;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #757575;
  position: absolute;
  top: 9px;
  left: 1px;
}
.burger:before, .burger:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  position: absolute;
  background-color: #757575;
  left: 1px;
}
.burger:before {
  top: 4px;
}
.burger:after {
  top: 14px;
}

.footer {
  display: block;
  background-color: #000;
  min-height: 100px;
  padding-top: 20px;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}
.footer__left-side {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.footer .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
.footer .lang__current:before {
  top: 12px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: none;
  border-bottom: 4px solid #d0d0d0;
}
.footer .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
}
.footer .lang.opened .lang__current:before {
  top: 13px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d0d0d0;
  border-bottom: none;
}
.footer .lang__list {
  transform: translateY(calc(-100% - 40px));
  position: absolute;
  width: 100%;
}
.footer__right-side {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.footer__logo {
  display: block;
  width: 100%;
  margin-bottom: 25px;
}
.footer__logo img {
  display: block;
}
.footer__bottom {
  display: block;
  width: 100%;
  border-top: 1px solid #494949;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer__bottom .footer__content {
  padding-bottom: 0;
  align-items: center;
}
.footer__copyright {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #757575;
}
.footer__btns {
  margin-right: 20px;
  padding-top: 13px;
}
.footer__btns .fb-like {
  margin-bottom: 20px;
}
.footer__menu {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .footer__menu {
    padding-right: 0;
    width: 100%;
  }
}

.bonus {
  display: inline-block;
  padding-top: 3px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  border-radius: 1px;
  margin-left: 8px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #4285f4;
  color: #fff;
}
.bonus_orange {
  background-color: #f7931a !important;
}

.logo {
  display: block;
}
@media only screen and (max-width: 1080px) {
  .logo {
    margin-bottom: 30px;
  }
}
.logo--second {
  margin-bottom: 0;
}
.logo img {
  vertical-align: top;
}
@media only screen and (max-width: 1280px) {
  .logo img {
    max-width: 300px;
    height: auto;
  }
}
@media only screen and (max-width: 1220px) {
  .logo img {
    max-width: 250px;
    height: auto;
  }
}
.logo__text {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  .logo__text {
    fill: #000;
  }
}
.fixed .logo__text {
  fill: #000;
}

.logo__text--second {
  fill: #000;
}

.form__logo {
  display: inline-flex;
  align-items: center;
}

.footer .google-play {
  width: 165px;
}

@media only screen and (max-width: 850px) {
  .page_promo .container {
    display: block;
    padding-top: 0;
  }
  .page_promo .header {
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
    margin-bottom: 30px;
  }
  .page_promo .logo {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1250px) {
  .page_v2 .first {
    overflow-x: hidden;
  }
  .page_v2 .header__socials span {
    display: none;
  }
  .page_v2 .header .logo {
    margin-right: 20px;
  }
}
.container--second {
  flex: 1 0 auto;
}

.container__text {
  display: block;
  max-width: 840px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 85px;
  margin: 30px auto;
}
.container__text i {
  font-style: italic;
}
.container__text table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 15px;
}
.container__text table thead {
  text-align: center;
}
.container__text table thead td:first-child {
  width: 10%;
}
.container__text table thead td:last-child {
  width: 45%;
}
.container__text table td {
  border: 1px solid black;
  padding: 30px 10px;
}

.table-wrap {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.container__text h1 {
  font-size: 48px;
  line-height: 53px;
  margin-bottom: 27px;
  font-weight: bold;
}

.container__text p {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #494949;
  margin-bottom: 15px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .container__text p {
    font-size: 14px;
    line-height: 20px;
  }
}

.container__text p + h2 {
  margin-top: 40px;
}

.container__text h2 {
  display: block;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #1f232c;
  text-transform: lowercase;
}
.container__text h2:first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .container__text h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
  }
}

.container__text p a,
.container__text .questions a,
.container__text .steps a {
  color: #4285f4;
  text-decoration: none;
}

.container__text p a:hover,
.container__text .questions a:hover,
.container__text .steps a:hover {
  color: #f7931a;
}

.container__text h2 a[name],
.container__text h2 a[name]:hover {
  color: #1f232c;
}

.container__text p a[name],
.container__text p a[name]:hover,
.container__text li a[name],
.container__text li a[name]:hover {
  color: #494949;
}

.container__text strong,
.container__text b {
  font-weight: bold;
}

.container__text ul {
  color: #494952;
  margin-bottom: 20px;
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 20px;
}

.container__text li {
  margin-bottom: 10px;
  line-height: 24px;
}

.scroll2top {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 10;
  border-radius: 4px 0 0 4px;
  background-color: #f7931a;
  cursor: pointer;
  background-image: url("../images/scroll2top.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 24px;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}

.scroll2top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll2top:hover {
  background-color: #4285f4;
}

.menu {
  display: block;
  margin-right: 20px;
  padding-top: 10px;
}
.menu__item {
  display: block;
}
.menu__item a {
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
  white-space: nowrap;
}
.menu__item a:hover {
  color: #f7931a;
}
@media only screen and (max-width: 480px) {
  .menu__item {
    text-align: center;
    justify-content: center;
  }
}
.menu__item + .menu__item {
  margin-top: 18px;
}
.menu__item span:not(.bonus) {
  color: #4285f4;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
}
.menu__item_email {
  margin-top: 20px;
  padding-left: 27px;
  background-image: url("../images/mail-icon.svg");
  background-size: 17px 14px;
  background-repeat: no-repeat;
  background-position: left center;
}
.menu__item_email a {
  color: #fff;
  border-bottom: 1px solid #f7931a;
}
.menu__item b {
  font-weight: bold;
}
.menu__item_join {
  display: flex;
  align-items: center;
  color: #757575;
  white-space: nowrap;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 20px;
}
.menu__item_join span:not(.bonus) {
  color: #757575;
}
.menu__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #757575;
  margin-bottom: 18px;
}
.menu:last-child {
  margin-right: 0;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links a,
.social-links svg {
  border: none;
}

.header__socials .social-links {
  margin-left: 10px;
}
.header__socials .social-link_fb i {
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../images/fb-small.png");
  background-size: 18px;
  position: relative;
  top: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header__socials .social-link_fb i {
    background-image: url("../images/fb-small@2x.png");
  }
}
.header__socials .social-link_fb:hover i {
  background-image: url("../images/fb-small-hover.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header__socials .social-link_fb:hover i {
    background-image: url("../images/fb-small-hover@2x.png");
  }
}
.header__socials .social-link_fb svg {
  display: none;
}
.header__socials .social-link_telegram svg #getcryptotab--chat-icons {
  fill: #31a5e0;
}
.header__socials .social-link_vk svg #getcryptotab--chat-icons {
  fill: #577ca4;
}
.header__socials .social-link_youtube {
  display: none;
}
.header__socials .social-link_twitter svg #getcryptotab--chat-icons {
  fill: #1da1f2;
}
.header__socials .social-link_instagram:hover svg #instagram_up {
  fill: #f7931a;
}
@media only screen and (max-width: 1220px) {
  .header__socials span {
    display: none;
  }
  .header__socials .social-links {
    margin-left: 0;
  }
}

.menu__item_join .social-links {
  margin-right: 15px;
}
@media only screen and (max-width: 480px) {
  .menu__item_join .social-links {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .menu__item_join .social-links + span {
    margin-left: 10px;
  }
}

.footer .social-links a svg #getcryptotab--chat-icons {
  fill: #fff;
}
.footer .social-link_instagram svg #instagram_up {
  fill: #fff;
}
.footer .social-link_instagram:hover svg #instagram_up {
  fill: #f7931a;
}
.footer .social-link_youtube:hover svg #youtube_icon {
  fill: #f7931a;
}
.footer .social-links a:hover svg #getcryptotab--chat-icons {
  fill: #f7931a;
}
.footer .social-links a + a {
  margin-left: 15px;
}
@media only screen and (max-width: 1200px) {
  .footer .social-links + span {
    display: none;
  }
}

.feedback-link {
  color: #fff;
  font-size: 13px;
  line-height: 15px;
}
.feedback-link a {
  color: #f7931a;
}
.feedback-link a:hover {
  color: #4285f4;
}

.other-inquiries {
  color: #757575;
  font-size: 13px;
  line-height: 15px;
}
.other-inquiries a {
  color: #f7931a;
}
.other-inquiries a:hover {
  color: #4285f4;
}

.lang {
  display: block;
  width: 70px;
  position: relative;
  z-index: 100;
  text-align: left;
  flex-shrink: 0;
  -ms-flex-negative: 0;
}

@media only screen and (max-width: 720px) {
  .header .lang {
    display: none;
  }
}
.lang__current {
  display: block;
  width: 100%;
  height: 30px;
  position: relative;
  line-height: 30px;
  padding-left: 30px;
  background: #ffffff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #323232;
  cursor: default;
  text-transform: uppercase;
  overflow: hidden;
}
.header--inverse:not(.fixed) .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
.header--inverse:not(.fixed) .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
  color: #4285f4;
}

.lang__current:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d0d0d0;
}

.lang.opened .lang__current:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 12px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: none;
  border-bottom: 4px solid #d0d0d0;
}

.lang__current:hover {
  color: #3e82f7;
}

.lang__current img {
  display: block;
  position: absolute;
  top: 9px;
  left: 9px;
}

.lang__list {
  display: none;
  list-style-type: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  position: absolute;
  width: 100%;
  margin-top: 5px;
}

.lang.opened .lang__list {
  display: block;
}

.lang__item {
  display: block;
  width: 100%;
  height: 28px;
  padding-left: 9px;
  line-height: 28px;
  color: #323232;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

.lang__item:hover {
  color: #fff;
  background-color: #3e82f7;
}

.lang__item img {
  margin-right: 6px;
  vertical-align: baseline;
}

.app-store-btn,
.google-play-btn {
  display: inline-block;
  width: 210px;
  height: 62px;
  background-color: #000;
  background-image: url("../images/gpay.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 157px 37px;
  border: none;
  border-radius: 6px;
  transition: background-color 0.15s;
}
.app-store-btn:hover,
.google-play-btn:hover {
  background-color: #f7931a;
}
.app-store-btn:active,
.google-play-btn:active {
  background-color: #255199;
}
@media (max-width: 768px) {
  .app-store-btn,
  .google-play-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.app-store-btn {
  background-image: url("../images/app-store.svg");
  background-size: 139px 37px;
}

.google-store-btn {
  max-width: 300px;
  width: 100%;
  background-image: url(../images/gstore.svg);
  background-size: 207px 35px;
  display: inline-block;
  height: 60px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #494949;
  border-radius: 6px;
  transition: background-color 0.15s, border-color 0.15s;
}
.google-store-btn:hover {
  background-color: #f7931a;
  border-color: #f7931a;
}
.google-store-btn:active {
  background-color: #255199;
}

.mouse-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.ct-vpn {
  position: relative;
  background-image: linear-gradient(to bottom, #000 0%, #494949 100%);
  box-shadow: inset 0 -8px 0 #f7931a;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .ct-vpn {
    box-shadow: inset 0 -8px 0 #f7931a;
  }
}
.ct-vpn__logo {
  margin-bottom: 100px;
}
.ct-vpn__block {
  max-width: 1002px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 160px;
}
@media (max-width: 1024px) {
  .ct-vpn__block {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .ct-vpn__block {
    padding-top: 0;
  }
}
.ct-vpn__text {
  margin-bottom: 45px;
  line-height: 32px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .ct-vpn__text {
    margin-bottom: 30px;
  }
}
.ct-vpn__btn {
  max-width: 320px;
  width: 100%;
}
@media (max-width: 767px) {
  .ct-vpn__btn {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .ct-vpn__btn--second {
    display: none;
  }
}
.ct-vpn__signin {
  width: 160px;
  text-align: center;
  color: #fff;
}
.ct-vpn a.ct-vpn__signin {
  color: #fff;
}
.ct-vpn__main-img {
  position: absolute;
  bottom: -30px;
  right: -90px;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1024px) {
  .ct-vpn__main-img {
    position: relative;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 767px) {
  .ct-vpn__main-img {
    max-width: 335px;
    width: 100%;
  }
}
.ct-vpn .container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  padding: 0 20px 220px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .ct-vpn .container {
    padding-bottom: 100px;
    overflow: hidden;
    border-bottom: 1px solid #979797;
  }
}
@media (max-width: 767px) {
  .ct-vpn .container {
    padding-top: 10px;
  }
}
@media (max-width: 1024px) {
  .ct-vpn__scroll {
    display: none;
  }
}
.ct-vpn__img-orange {
  position: absolute;
  left: 0;
  bottom: 0;
}
.ct-vpn__img-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-btn {
  display: inline-block;
  height: 60px;
  width: 60px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 30px;
  box-sizing: border-box;
}
.social-btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.social-btn_fb {
  background-color: #4861a3;
}
.social-btn_fb:hover {
  background-color: #5777cc;
}
.social-btn_fb:active {
  background-color: #374c82;
}
.social-btn_fb:before {
  width: 13px;
  height: 24px;
  background-image: url("../images/sharing/icon-fb.svg");
}
.social-btn_vk {
  background-color: #597da2;
}
.social-btn_vk:hover {
  background-color: #678eb6;
}
.social-btn_vk:active {
  background-color: #446a91;
}
.social-btn_vk:before {
  width: 34px;
  height: 19px;
  background-image: url("../images/sharing/icon-vk.svg");
}
.social-btn_tw {
  background-color: #1da1f2;
}
.social-btn_tw:hover {
  background-color: #3eb5ff;
}
.social-btn_tw:active {
  background-color: #1588ce;
}
.social-btn_tw:before {
  width: 23px;
  height: 19px;
  background-image: url("../images/sharing/icon-tw.svg");
}
.social-btn_gplus {
  background-color: #dd5044;
}
.social-btn_gplus:hover {
  background-color: #fb5446;
}
.social-btn_gplus:active {
  background-color: #bf4339;
}
.social-btn_gplus:before {
  width: 28px;
  height: 18px;
  background-image: url("../images/sharing/icon-gplus.svg");
}
.social-btn_mail, .social-btn_eml {
  background-color: #fff;
  border: 1px solid #cdcdcd;
  background-image: url("../images/sharing/icon-mail.svg");
  background-size: 33px 27px;
}
.social-btn_mail:hover, .social-btn_eml:hover {
  border: 2px solid #4285f4;
  background-color: #fff;
}
.social-btn_mail:active, .social-btn_eml:active {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
}
.social-btn_vb {
  background-color: #665cac;
}
.social-btn_vb:hover {
  background-color: #776dbf;
}
.social-btn_vb:active {
  background-color: #554c93;
}
.social-btn_vb:before {
  width: 27px;
  height: 28px;
  background-image: url("../images/sharing/icon-viber.svg");
}
.social-btn_wa {
  background-color: #1dc93b;
}
.social-btn_wa:hover {
  background-color: #29d046;
}
.social-btn_wa:active {
  background-color: #19a131;
}
.social-btn_wa:before {
  width: 28px;
  height: 26px;
  background-image: url("../images/sharing/icon-whatsapp.svg");
}
.social-btn_tg {
  background-color: #31a5e0;
}
.social-btn_tg:hover {
  background-color: #46b9f3;
}
.social-btn_tg:active {
  background-color: #2d8bbb;
}
.social-btn_tg:before {
  width: 26px;
  height: 22px;
  background-image: url("../images/sharing/icon-telegram.svg");
}
.social-btn_th {
  background-color: #36465d;
}
.social-btn_th:hover {
  background-color: #455772;
}
.social-btn_th:active {
  background-color: #242e3b;
}
.social-btn_th:before {
  width: 20px;
  height: 28px;
  background-image: url("../images/sharing/icon-tumblr.svg");
}
.social-btn_pt {
  background-color: #fff;
  border: 1px solid #cdcdcd;
  background-image: url("../images/sharing/icon-pinterest.svg");
  background-size: 28px;
}
.social-btn_pt:hover {
  border: 2px solid #4285f4;
  background-color: #fff;
}
.social-btn_pt:active {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
}
.social-btn_ln {
  background-color: #3ace01;
}
.social-btn_ln:hover {
  background-color: #4edf16;
}
.social-btn_ln:active {
  background-color: #43bc15;
}
.social-btn_ln:before {
  width: 28px;
  height: 27px;
  background-image: url("../images/sharing/icon-linechat.svg");
}
.social-btn_li {
  background-color: #017ab6;
}
.social-btn_li:hover {
  background-color: #0a8dce;
}
.social-btn_li:active {
  background-color: #096b9c;
}
.social-btn_li:before {
  width: 28px;
  height: 28px;
  background-image: url("../images/sharing/icon-linkedin.svg");
}
.social-btn_flb {
  background-color: #f01b23;
}
.social-btn_flb:hover {
  background-color: #f9343c;
}
.social-btn_flb:active {
  background-color: #db171e;
}
.social-btn_flb:before {
  width: 28px;
  height: 28px;
  background-image: url("../images/sharing/icon-flipboard.svg");
}
.social-btn_rd {
  background-color: #ff4500;
}
.social-btn_rd:hover {
  background-color: #ff642a;
}
.social-btn_rd:active {
  background-color: #e34206;
}
.social-btn_rd:before {
  width: 31px;
  height: 28px;
  background-image: url("../images/sharing/icon-reddit.svg");
}
.social-btn_ok {
  background-color: #e27e35;
}
.social-btn_ok:hover {
  background-color: #ef9554;
}
.social-btn_ok:active {
  background-color: #f29c5d;
}
.social-btn_ok:before {
  width: 18px;
  height: 31px;
  background-image: url("../images/sharing/icon-ok.svg");
}
.social-btn:active:before {
  opacity: 0.7;
}

.social-btns-title {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 20px;
}
.social-btns-title span {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 9px;
  font-size: 10px;
  text-transform: uppercase;
  color: #303030;
  font-weight: bold;
  margin-right: 3px;
  padding-left: 5px;
  padding-right: 5px;
}

.social-btns {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 600px;
  position: relative;
}
.social-btns .social-btn {
  margin-right: 7px;
}
.social-btns_size_s .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.social-btns_size_s .social-btn_vk:before {
  width: 22px;
  height: 12px;
}
.social-btns_size_s .social-btn_fb:before {
  width: 9px;
  height: 16px;
}
.social-btns_size_s .social-btn_tw:before {
  width: 16px;
  height: 13px;
}
.social-btns_size_s .social-btn_wa:before {
  width: 18px;
  height: 18px;
}
.social-btns_size_s .social-btn_tg:before {
  width: 19px;
  height: 16px;
}
.social-btns_size_s .social-btn_gplus:before {
  width: 19px;
  height: 12px;
}
.social-btns_size_s .social-btn_mail, .social-btns_size_s .social-btn_eml {
  background-size: 23px 18px;
}
.social-btns_size_s .social-btn_vb:before {
  width: 21px;
  height: 22px;
}
.social-btns_size_s .social-btn_wa:before {
  width: 20px;
  height: 20px;
}
.social-btns_size_s .social-btn_th:before {
  width: 16px;
  height: 22px;
}
.social-btns_size_s .social-btn_pt {
  background-size: 22px;
}
.social-btns_size_s .social-btn_ln:before {
  width: 22px;
  height: 21px;
}
.social-btns_size_s .social-btn_li:before {
  width: 22px;
  height: 22px;
}
.social-btns_size_s .social-btn_flb:before {
  width: 22px;
  height: 22px;
}
.social-btns_size_s .social-btn_rd:before {
  width: 24px;
  height: 22px;
}
.social-btns_size_s .social-btn_ok:before {
  width: 14px;
  height: 24px;
}
.social-btns_size_s .social-btns__list {
  width: 130px;
}
.social-btns_size_s .social-btns__more {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.social-btns_size_m .social-btn {
  width: 56px;
  height: 56px;
  margin-right: 8px;
  border-radius: 28px;
}
.social-btns_size_m .social-btns__list {
  width: 162px;
}
.social-btns_size_m .social-btns__list .social-btn {
  margin-right: 0;
}
.social-btns_size_m .social-btns__more {
  width: 56px;
  height: 56px;
  border-radius: 28px;
}
.social-btns__more {
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 320px;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  background-color: #ffffff;
  box-shadow: inset 0px 0px 0px 1px #cdcdcd;
}
.social-btns__more:before, .social-btns__more::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #494949;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.social-btns__more:before {
  width: 2px;
  height: 16px;
  top: 50%;
}
.social-btns__more:after {
  width: 16px;
  height: 2px;
}
.social-btns__more:hover {
  box-shadow: inset 0px 0px 0px 2px #4285f4;
}
.social-btns__more:hover:after, .social-btns__more:hover:before {
  background-color: #4285f4;
}
.social-btns__list {
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(46px) translateY(calc(-100% + 5px));
  z-index: 100;
  border-radius: 24px;
  width: 170px;
  box-sizing: border-box;
}
.social-btns__list .social-btn {
  margin-bottom: 10px;
  margin-right: 0;
}
.social-btns__list.active {
  display: flex;
}
.social-btns__list_down {
  top: auto;
  bottom: 0;
  transform: translateX(46px) translateY(calc(100% - 5px));
}

@media screen and (max-width: 800px) {
  .social-btn {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    flex-shrink: 0;
  }
  .social-btn_vk:before {
    width: 22px;
    height: 12px;
  }
  .social-btn_fb:before {
    width: 9px;
    height: 16px;
  }
  .social-btn_tw:before {
    width: 16px;
    height: 13px;
  }
  .social-btn_wa:before {
    width: 18px;
    height: 18px;
  }
  .social-btn_tg:before {
    width: 19px;
    height: 16px;
  }
  .social-btn_gplus:before {
    width: 19px;
    height: 12px;
  }
  .social-btn_mail, .social-btn_eml {
    background-size: 23px 18px;
  }
  .social-btn_vb:before {
    width: 21px;
    height: 22px;
  }
  .social-btn_wa:before {
    width: 20px;
    height: 20px;
  }
  .social-btn_th:before {
    width: 16px;
    height: 22px;
  }
  .social-btn_pt {
    background-size: 22px;
  }
  .social-btn_ln:before {
    width: 22px;
    height: 21px;
  }
  .social-btn_li:before {
    width: 22px;
    height: 22px;
  }
  .social-btn_flb:before {
    width: 22px;
    height: 22px;
  }
  .social-btn_rd:before {
    width: 24px;
    height: 22px;
  }
  .social-btn_ok:before {
    width: 14px;
    height: 24px;
  }
  .social-btns {
    max-width: 400px;
  }
  .social-btns .social-btn {
    margin-right: 5px;
  }
  .social-btns__more {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    left: 0;
  }
  .social-btns__list {
    width: 130px;
  }
  .social-btns__list .social-btn {
    margin-right: 0;
  }
}
.sticky-sharing {
  display: block;
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .sticky-sharing {
    display: none;
  }
}
.sticky-sharing .social-btns {
  max-width: 40px;
}
.sticky-sharing .social-btns > .social-btn {
  margin-right: 0;
  margin-bottom: 5px;
}
.sticky-sharing .social-btns__list {
  transform: none;
  left: -2px;
  top: auto;
  bottom: 44px;
}

.use {
  background-color: #fff;
  overflow: hidden;
}
.use__block {
  max-width: 600px;
  margin-left: 50%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .use__block {
    margin: 0 auto;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .use__block {
    padding-top: 40px;
  }
}
.use__img {
  position: absolute;
  max-width: 500px;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .use__img {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
  }
}
@media (max-width: 767px) {
  .use__img {
    max-width: 335px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.use__text {
  margin-bottom: 30px;
}
.use__list {
  width: 95%;
}
@media (max-width: 767px) {
  .use__list {
    width: 100%;
    margin-bottom: 30px;
  }
}
.use__item {
  display: flex;
  align-items: flex-start;
}
.use__item:not(:first-child) {
  margin-top: 20px;
}
.use__subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 5px;
}
.use__icon {
  margin-right: 15px;
  padding-top: 3px;
}
.use__item-text {
  font-size: 16px;
  line-height: 24px;
  color: #494949;
}

.why-choose {
  text-align: center;
  position: relative;
}
.why-choose__text {
  max-width: 900px;
  margin: 0 auto 30px;
}
.why-choose__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .why-choose__list {
    margin-bottom: 0;
  }
}
.why-choose__item {
  flex: 0 0 340px;
  max-width: 340px;
  width: 100%;
  margin: 10px;
}
@media (max-width: 767px) {
  .why-choose__item {
    flex: 0 0 auto;
  }
}
.why-choose__arrow {
  width: 60px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .why-choose__arrow {
    display: none;
  }
}
.why-choose__arrow--second {
  display: none;
}
@media (max-width: 767px) {
  .why-choose__arrow--second {
    display: block;
  }
}
.why-choose__img {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.item-why-choose {
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}
.item-why-choose__top {
  border-bottom: 1px solid #d6d6d6;
  padding: 20px 30px 15px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .item-why-choose__top {
    padding-bottom: 20px;
  }
}
.item-why-choose__bot {
  padding: 30px;
  color: #494949;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 767px) {
  .item-why-choose__bot {
    font-size: 15px;
    line-height: 1.4;
    padding: 20px 20px 30px;
  }
}
.item-why-choose__img {
  margin-bottom: 16px;
}
.item-why-choose__title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: bold;
}

.enjoy {
  background-color: #fff;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .enjoy {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .enjoy {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.enjoy .container {
  max-width: 1120px;
}
.enjoy__block {
  position: relative;
  max-width: 620px;
  width: 100%;
}
@media (max-width: 1024px) {
  .enjoy__block {
    margin: 0 auto;
    text-align: center;
  }
}
.enjoy__text {
  margin-bottom: 40px;
}
.enjoy__img {
  position: absolute;
  max-width: 500px;
  width: 100%;
  left: calc(100% + 80px);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .enjoy__img {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    display: block;
    margin: 30px auto 0;
  }
}
@media (max-width: 767px) {
  .enjoy__img {
    max-width: 322px;
  }
}

.card {
  display: block;
  width: 340px;
  background-color: #fff;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #D6D6D6;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  text-align: left;
}
.card:hover:not(.card_form) .card__title {
  color: #4285f4;
}
.card:before {
  content: "";
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #fff 65%);
}
.card__title {
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}
.card .title {
  font-size: 32px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}
.card__body {
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
.card--second {
  text-align: center;
}
.card--second svg {
  margin-bottom: 30px;
}
.card--second .title {
  text-align: center;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 60px;
}
.card--second .btn {
  max-width: 200px;
}
.card--second .btn:hover {
  color: #fff;
}

.card-container {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 530px);
}

/*
* Modificators
*/
.card_form {
  width: 100%;
  max-width: 500px;
  margin-left: 0;
  margin-right: 0;
  background-color: #fff;
  padding: 40px 30px 20px;
  height: auto;
}
.card_form.card--second {
  max-width: 500px;
  padding: 50px 30px 30px;
}
.card_form .form {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.card_form h1 {
  display: block;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 24px;
  font-weight: bold;
  color: #000;
}
.card_form > p {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #494949;
  margin-bottom: 15px;
  width: 100%;
}
.card_form > p.contacts {
  margin-bottom: 20px;
  background: #F7F7F7;
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  padding: 15px 20px;
  color: #212121;
}
.card_form > p.contacts strong {
  font-weight: bold;
}

.card_success {
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px 10px;
  width: 100%;
  max-width: 450px;
}
.card_success .card__body {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card_success .card__body h2 {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #000;
}

.card_error {
  text-align: center;
  max-width: 550px;
  padding: 40px 30px 30px;
  margin: 0 auto;
}
.card_error .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 290px;
}
.card_error .icon {
  margin-bottom: 20px;
}
.card_error .error-label {
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}
.card_error .error-title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.1px;
  font-weight: bold;
  margin-bottom: 40px;
}
.card_error .btn {
  margin-top: auto;
  width: 220px;
  text-align: center;
}

.form__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form__footer .btn {
  width: auto;
  line-height: normal;
  min-width: 200px;
  height: 50px;
  font-size: 15px;
}
.form__footer .btn + .btn {
  margin-left: 30px;
}
.form__footer_fullwidth {
  justify-content: space-between;
}
.form .errorlist {
  margin-top: 5px;
  line-height: 14px;
  font-size: 12px;
  font-weight: 400;
  color: #f74249;
  letter-spacing: 0.03px;
}

.input {
  display: block;
  margin-bottom: 25px;
  position: relative;
}
.input input {
  border: none;
  padding: 0px;
  outline: none;
  border-radius: 0px;
  font-size: 16px;
  color: #000;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #d6d6d6;
  font-family: Arial, Helvetica, sans-serif;
}
.input input.error {
  border-color: red;
}
.input input:focus {
  border-color: #4285f4;
}
.input input::placeholder {
  color: #757575;
}
.input textarea {
  font-size: 16px;
  color: #000;
  width: 100%;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
}
.input textarea.error {
  border-color: red;
}
.input textarea:focus {
  border-color: #4285f4;
}
.input__desc {
  color: #757575;
  font-size: 12px;
  line-height: 14px;
  margin-top: 15px;
}
.input__tip {
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 11px;
  line-height: 12px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
.input__tip:hover {
  color: #4285f4;
}
.input select {
  cursor: pointer;
  width: 100%;
  border: none;
  border-bottom: 1px solid #cecece;
  background-color: #fff;
  padding-left: 0;
  padding-right: 25px;
  padding-bottom: 16px;
  font-size: 16px;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: url("../images/triangle.png");
  background-size: 8px 4px;
  background-position: right top 9px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .input select {
    background-image: url("../images/triangle@2x.png");
  }
}
.input select:hover {
  border-bottom-color: #4285f4;
}
.input select:invalid {
  color: #757575;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.wrapper {
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.mini-block {
  padding: 30px;
  border-bottom: 1px solid #d6d6d6;
  background-color: #fff;
}
.mini-block:first-child {
  border-radius: 6px 6px 0 0;
}
.mini-block:last-child {
  border-radius: 0 0 6px 6px;
}
@media only screen and (max-width: 479px) {
  .mini-block {
    padding: 15px;
  }
}
.mini-block:last-of-type {
  border-bottom: none;
}
.mini-block--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.mini-block.tac {
  text-align: center;
}
.mini-block__wrapper {
  border: 1px solid #d6d6d6;
  border-radius: 6px;
}
.mini-block__wrapper.mb-40 {
  margin-bottom: 40px;
}
.mini-block__empty {
  font-size: 24px;
  color: #757575;
  letter-spacing: 0.07px;
  text-align: center;
  line-height: 36px;
}
.mini-block__title {
  font-size: 30px;
  color: #000000;
  letter-spacing: 0.09px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}
.mini-block__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  border: solid 2px var(--color-orange);
  margin-bottom: 30px;
}
.mini-block__tag.pro {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.mini-block__tag.ultra {
  border-color: var(--color-purple);
  color: var(--color-purple);
}
.mini-block__tag.basic {
  border-color: var(--color-green);
  color: var(--color-green);
}
.mini-block__tag.lite {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.mini-block__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .mini-block__wrap {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.mini-block__text {
  font-size: 14px;
  color: #494949;
  letter-spacing: 0.05px;
}
.mini-block__text:last-of-type {
  margin-bottom: 0;
}
.mini-block__text--second {
  color: #000;
  font-size: 16px;
  line-height: 17px;
  margin-bottom: 15px;
}
.mini-block__text--medium {
  font-size: 16px;
  line-height: 17px;
}
.mini-block__text.mb-10 {
  margin-bottom: 10px;
}
.mini-block__text.log-out {
  display: inline-block;
  border: 0 none;
  background-color: transparent;
  text-transform: uppercase;
  color: #f74249;
  font-weight: bold;
}
.mini-block__text.log-out:hover {
  color: #f7931a;
}
.mini-block__text b,
.mini-block__text strong {
  font-weight: bold;
}
.mini-block__bar {
  position: relative;
  height: 10px;
  margin-bottom: 30px;
}
.mini-block__bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 7px;
  background: #f7f7f7;
}
.mini-block__progress {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 7px;
  background-color: #e7e7e7;
}
.mini-block__progress.red {
  background-color: #f74249;
}
.mini-block__progress.green {
  background-color: #37cc33;
}
.mini-block__progress.orange {
  background-color: #f7931a;
}
.mini-block__email {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .mini-block__email {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .mini-block__email-wrap {
    margin: 0 auto;
    text-align: center;
  }
}
.mini-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  height: 50px;
  padding: 0;
}
.mini-block__btn:hover {
  color: #fff;
}
.mini-block__btn svg {
  margin-right: 10px;
}
.mini-block__btn span {
  line-height: 0.7;
}
.mini-block__btn-small {
  height: 40px;
  min-width: 120px;
  max-width: none;
  font-size: 12px;
  width: auto;
  padding: 0;
  color: #4285f4;
}
.mini-block__btn-small:hover {
  background-color: #4285f4;
  color: #fff;
}
.mini-block__icon {
  margin-right: 15px;
}
@media only screen and (max-width: 479px) {
  .mini-block__icon {
    margin: 0 auto 10px;
  }
}
.mini-block__link {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #4285f4;
  letter-spacing: 0.05px;
  cursor: pointer;
}
.mini-block__link:hover {
  color: #f7931a;
}
.mini-block.mini-block-inactive {
  background-color: #f7f7f7;
}
.mini-block.mini-block-inactive .mini-block__text-alert {
  color: #F74249;
}
.mini-block.mini-block-header {
  background-color: #f7f7f7;
  padding: 0px;
}
.mini-block.mini-block-header input {
  display: none;
}
.mini-block.mini-block-header label {
  display: block;
  padding-left: 55px;
  font-size: 14px;
  line-height: 54px;
  color: #000000;
  background-size: 14px 14px;
  background: transparent 30px 20px no-repeat url("data:image/svg+xml,<svg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0 3C0 1.34315 1.34315 0 3 0H11C12.6569 0 14 1.34315 14 3V11C14 12.6569 12.6569 14 11 14H3C1.34315 14 0 12.6569 0 11V3Z' fill='%23d6d6d6'/></svg> ");
  cursor: pointer;
}
.mini-block.mini-block-header input:checked + label {
  background-image: url("data:image/svg+xml,<svg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0 3C0 1.34315 1.34315 0 3 0H11C12.6569 0 14 1.34315 14 3V11C14 12.6569 12.6569 14 11 14H3C1.34315 14 0 12.6569 0 11V3Z' fill='%234285F4'/><path d='M3.8999 7.90865L6.00148 10.2941L10.2324 3.75967' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

@media only screen and (max-width: 540px) {
  .why__item_browser .browser-icon {
    width: 48px;
    height: 48px;
    background-size: contain;
    left: -2px;
  }
  .why__item_browser .why__label {
    left: 62px;
    font-size: 8px;
    line-height: 9px;
  }
  .why__item_browser .why__img {
    width: 276px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-end;
  }
  .why__item_browser .why__img img {
    width: 228px;
    height: 153px;
  }
  .why__item {
    padding-top: 65px;
  }
  .why__img_exp img {
    width: 247px;
    height: 145px;
  }
  .why__img_earn img {
    width: 184px;
    height: 174px;
  }
  .why__img_speed {
    padding-top: 0;
  }
  .why__img_speed img {
    width: 184px;
    height: 104px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page_browser .first .title {
    line-height: 38px;
  }
  .page_browser .first__screen {
    padding-bottom: 20px;
  }
  .mobile-only {
    display: block;
  }
  .page_second .container {
    min-height: 0;
  }
  .page_second .header,
  .page_payments .header {
    margin-bottom: 20px;
  }
  .page_second .header .logo,
  .page_payments .header .logo {
    margin-bottom: 0;
  }
  .page_second .container__text {
    padding-top: 30px;
    padding-bottom: 35px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .page_second .container__text h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .page_second .container__text h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .page_second .container__text p + h2 {
    margin-top: 30px;
  }
  .page_second .container__text p {
    font-size: 12px;
    line-height: 14px;
  }
  .page_second .container__text li {
    font-size: 12px;
    line-height: 14px;
  }
  .page_second .questions {
    margin-top: 30px;
  }
  .page_second .questions__header {
    font-size: 18px;
    line-height: 21px;
    min-height: 0;
  }
  .page_second .questions__body {
    font-size: 14px;
    line-height: 24px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }
  .page_second .scroll2top.show {
    display: none;
  }
  .page_theme_black .header {
    background-color: transparent;
    margin-bottom: 20px;
  }
  .page_theme_black .header .logo {
    margin-bottom: 0;
  }
  .page_theme_black .header__navbar {
    border-color: #494949;
  }
  .page_theme_black .wrapper {
    border-radius: 0;
    width: calc(100% - 40px);
  }
  .page_theme_black .top,
  .page_theme_black .last {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page_theme_black .title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .page_theme_black .subtitle {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 40px;
    font-weight: normal;
  }
  .page_theme_black .desc {
    font-size: 13px;
    line-height: 15px;
  }
  .page_theme_black .desc_big {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 30px;
  }
  .page_theme_black .referred {
    font-size: 12px;
    line-height: 14px;
  }
  .page_theme_black .social-btns {
    max-width: 310px;
    justify-content: center;
  }
  .page_theme_black .social-btn,
  .page_theme_black .btn_social {
    width: 50px;
    height: 40px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 12px;
  }
  .page_theme_black .refurl input[type=text] {
    width: 100%;
    height: 34px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 212px;
  }
  .page_theme_black .btn_copy {
    height: 34px;
    line-height: 34px;
    padding-bottom: 0;
    padding-top: 0;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }
  .calc {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .calc__row {
    display: block;
  }
  .calc__item {
    margin-bottom: 50px;
  }
  .calc__item + .calc__item {
    margin-left: 0;
  }
  .calc__label {
    font-size: 18px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 25px;
  }
  .calc__label b {
    font-size: 28px;
    top: 3px;
  }
  .rangeSlider__horizontal {
    max-width: 300px;
  }
  .rangeSlider__handle {
    width: 25px;
    height: 25px;
    border: 5px solid #4285f4;
    top: -10px;
  }
  .section_last {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0;
  }
  .section_last .desc_big {
    margin-bottom: 20px;
  }
  .speedbox {
    margin: 30px auto 10px;
    height: 120px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .speedbox.animated .speedbox-sm__score {
    animation-duration: 2s;
    animation-name: score_anim;
    animation-iteration-count: 1;
  }
  .speedbox.animated .speedbox-sm__pointer {
    animation-duration: 2s;
    animation-name: pointer_anim;
    animation-iteration-count: 1;
  }
  .speedbox__groove {
    height: 100px;
    width: 200px;
    background: transparent;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border: 10px solid #d6d6d6;
    border-bottom: 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
  }
  .speedbox__score {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-45deg);
    height: 200px;
    width: 200px;
    background: transparent;
    border-radius: 50%;
    border: 10px solid #4285f4;
    border-color: transparent transparent #4285f4 #4285f4;
    box-sizing: border-box;
    z-index: 1;
    transition: 1s ease-in;
  }
  .speedbox__score_rookie {
    border-color: transparent transparent #4285f4 #4285f4;
  }
  .speedbox__score_pro {
    border-color: transparent transparent #2abb40 #2abb40;
  }
  .speedbox__score_veteran {
    border-color: transparent transparent #f7931a #f7931a;
  }
  .speedbox__score_expert {
    border-color: transparent transparent #9e31c7 #9e31c7;
  }
  .speedbox__score_master {
    border-color: transparent transparent #e11282 #e11282;
  }
  .speedbox__score_legend {
    border-color: transparent transparent #ff5718 #ff5718;
  }
  .speedbox__score_bigboss {
    border-color: transparent transparent #000 #000;
  }
  .speedbox__base {
    width: 240px;
    height: 100px;
    background: white;
    position: relative;
    top: 100px;
    z-index: 20;
  }
  .speedbox__odo {
    text-align: center;
    position: absolute;
    color: #5c6f7b;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .speedbox__odo i {
    font-size: 13px;
    opacity: 0.6;
  }
  .speedbox__odo > div {
    margin-bottom: 0;
  }
  .speedbox__odo span {
    font-size: 0.7em;
  }
  .speedbox__pointer {
    display: block;
    width: 148px;
    height: 148px;
    position: absolute;
    bottom: -45px;
    left: 50%;
    margin-left: -74px;
    margin-top: -74px;
    background-image: url("../images/pointer-sm.png");
    background-position: 15px;
    background-repeat: no-repeat;
    background-size: 74px 29px;
    z-index: 100;
    transform: rotate(0deg);
    transition: 1s ease-in;
  }
  .speedbox + .referred {
    text-align: center;
    margin-bottom: 25px;
  }
  .btn_social {
    display: block;
    height: 40px;
    line-height: 40px;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    outline: none;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .btn_social:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: contain;
  }
  .btn_social_vk {
    background-color: #597da2;
  }
  .btn_social_vk:hover {
    background-color: #678eb6;
  }
  .btn_social_vk:active {
    background-color: #446a91;
  }
  .btn_social_vk:before {
    width: 22px;
    height: 12px;
  }
  .btn_social_fb {
    background-color: #4861a3;
  }
  .btn_social_fb:hover {
    background-color: #5777cc;
  }
  .btn_social_fb:active {
    background-color: #374c82;
  }
  .btn_social_fb:before {
    width: 9px;
    height: 16px;
  }
  .btn_social_tw {
    background-color: #1da1f2;
  }
  .btn_social_tw:hover {
    background-color: #3eb5ff;
  }
  .btn_social_tw:active {
    background-color: #1588ce;
  }
  .btn_social_tw:before {
    width: 16px;
    height: 13px;
  }
  .btn_social_gplus {
    background-color: #dd5044;
  }
  .btn_social_gplus:hover {
    background-color: #fb5446;
  }
  .btn_social_gplus:active {
    background-color: #bf4339;
  }
  .btn_social_gplus:before {
    width: 19px;
    height: 12px;
  }
  .btn_social_mail {
    text-indent: -9999px;
    background-color: #fff;
    border: 1px solid #cdcdcd;
    background-size: 23px 18px;
  }
  .btn_social_mail:hover {
    border: 2px solid #4285f4;
  }
  .btn_social_mail:active {
    background-color: #d6d6d6;
    border-color: #d6d6d6;
  }
  .btn_social_mail:active:before {
    opacity: 0.7;
  }
  .burger {
    display: block;
  }
  .container_promo .header {
    padding-top: 0;
    margin-bottom: 70px;
  }
  .container_promo .promo {
    width: 100%;
    position: static;
    transform: rotate(0);
    margin-bottom: 10px;
  }
  .countdown {
    margin-right: 0;
  }
  .container_promo .header__navbar .countdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 160px;
  }
  .container__text h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .page_promo .countdown {
    display: inline-block;
  }
  .page_promo .header__navbar .lang {
    margin-left: auto;
    margin-right: auto;
  }
  .page_promo .header__navbar {
    display: block;
    text-align: center;
  }
  .page_promo .header__lang {
    margin-top: 10px;
  }
  .logo {
    width: auto;
    height: auto;
  }
  .logo svg {
    width: 231px;
    height: 42px;
  }
  .fullheight .header .logo {
    margin-bottom: 0;
  }
  .fullheight .scroll-icon {
    display: none;
  }
  .container_promo .logo {
    margin-bottom: 0;
  }
  .first {
    min-height: 0;
  }
  .first .header .logo {
    margin-bottom: 0;
  }
  .first__icon {
    display: none;
    width: 70px;
    height: 70px;
  }
  .first__description {
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  .first__description p {
    font-size: 16px;
    line-height: 22px;
  }
  .first__screen {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .first__screen p {
    display: none;
  }
  .first__group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .first__group .btn {
    margin-bottom: 15px;
  }
  .first__screen-img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .first__screen-store {
    display: block;
    width: 100%;
    background-color: #f7f7f7;
    margin-bottom: 30px;
    border: 1px solid #d6d6d6;
    font-size: 16px;
    line-height: 17px;
    color: #494949;
    padding: 20px;
    border-radius: 2px;
  }
  .first__screen-store .store-links {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    justify-content: center;
  }
  .first__screen-store .store-links .store_android {
    display: none;
  }
  .first__group .btn,
  .first__group .more-link {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .first__group .btn_plus {
    display: none;
  }
  .first__screen .trust {
    order: 2;
    margin-bottom: 0;
    text-align: center;
  }
  .first__screen .more-link {
    order: 1;
  }
  .first__img {
    margin-bottom: 30px;
  }
  .first__img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
  }
  .first .more-link {
    padding-top: 22px;
    padding-bottom: 22px;
    line-height: 16px;
    min-height: 60px;
    height: auto;
    margin-bottom: 20px;
    background-color: #fff;
  }
  .logo img {
    width: auto;
    height: 40px;
  }
  .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .note {
    display: none;
  }
  .testimonials {
    padding-bottom: 0;
  }
  .testimonials__list {
    max-width: 280px;
    padding-left: 0;
    padding-right: 0;
  }
  .testimonials__title {
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    line-height: 20px;
  }
  .testimonials__item {
    margin-bottom: 25px;
    width: 120px;
    min-width: 0;
    min-height: 125px;
  }
  .testimonials__item i {
    width: 80px;
    height: 80px;
    border-radius: 15px;
  }
  .testimonials__item_youtube i {
    background-size: 51px 36px;
  }
  .testimonials__item_chrome i {
    background-size: 46px;
  }
  .testimonials__item_fb i {
    background-size: 46px;
  }
  .testimonials__item_twitter i {
    background-size: 46px;
  }
  .testimonials__item_journal i {
    background-size: 45px 53px;
  }
  .testimonials__item span {
    font-size: 14px;
    line-height: 16px;
  }
  .second {
    padding-top: 40px;
    background-attachment: scroll;
  }
  .second .subtitle {
    font-size: 32px;
    line-height: 36px;
  }
  .third {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 38px;
    padding-right: 38px;
  }
  .third__referral {
    margin-bottom: 30px;
  }
  .third__scheme {
    display: none;
  }
  .third__scheme-m {
    margin-bottom: 40px;
  }
  .third__scheme-m img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .third__pool {
    font-size: 22px;
    line-height: 36px;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .third__referral {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
  .third__levels {
    font-size: 22px;
    line-height: 36px;
  }
  .fourth {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .fourth:after {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
  .fourth__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 45px;
  }
  .fourth__description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 23px;
  }
  .fourth .store-links {
    justify-content: center;
  }
  .fourth .store {
    border-color: #fff;
  }
  .fourth .store_android {
    display: none;
  }
  .fourth .btn {
    display: none;
  }
  .calculate {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 44px;
  }
  .calculate .subtitle {
    margin-bottom: 40px;
  }
  .subtitle {
    font-size: 28px;
    line-height: 31px;
  }
  .calc__label {
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    margin-bottom: 27px;
  }
  .calc__label b {
    font-size: 28px;
    line-height: 31px;
    top: 3px;
  }
  .rangeSlider__horizontal {
    height: 5px;
    max-width: 300px;
  }
  .rangeSlider__handle {
    width: 25px;
    height: 25px;
    border-width: 5px;
    top: -10px;
  }
  .calc__item {
    margin-bottom: 50px;
  }
  .calc__item + .calc__item {
    margin-top: 0;
  }
  .results {
    padding-top: 40px;
  }
  .results__table thead th {
    font-size: 18px;
    line-height: 20px;
  }
  .results__table tbody td {
    font-size: 20px;
    line-height: 22px;
    height: 50px;
  }
  .results__table tbody tr {
    border-bottom: none;
    box-shadow: 0px 8px 1px -8px #eee;
  }
  .results__table td.results__round {
    font-size: 12px;
    line-height: 14px;
  }
  .results__table thead th .small {
    font-size: 10px;
    line-height: 11px;
  }
  .percent {
    display: block;
    text-align: center;
  }
  .total__friends {
    display: block;
    margin-left: 0;
  }
  .total__title {
    margin-bottom: 14px;
  }
  .total__label {
    display: block;
    font-size: 16px;
    line-height: 17px;
  }
  .total__value_income {
    font-size: 50px;
    margin-bottom: 0;
  }
  .graph {
    display: block;
    height: auto;
    padding-top: 120px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 38px;
  }
  .graph__img {
    height: 305px;
    background-size: 712px 305px;
  }
  .graph__title {
    display: block;
    font-size: 17px;
    font-weight: normal;
  }
  .graph__text {
    margin-left: 38px;
    position: static;
    max-width: none;
  }
  .bucks {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    text-align: center;
  }
  .fifth {
    padding-bottom: 20px;
    padding-left: 38px;
    padding-right: 38px;
  }
  .fifth__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 15px;
    max-width: none;
  }
  .fifth__description {
    font-size: 16px;
    line-height: 22px;
    max-width: none;
  }
  .fifth__row {
    min-height: 0;
  }
  .fifth__row_monero2btc:before {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 300px;
    height: 239px;
    margin-top: 0;
    margin-bottom: 30px;
    transform: translateX(-30px);
  }
  .fifth__row_hardware {
    padding-top: 180px;
    background-size: 120px;
    background-position: center 30px;
    height: auto;
  }
  .fifth__row_monero2btc .fifth__title,
  .fifth__row_monero2btc .fifth__description {
    margin-left: 0;
  }
  .fifth__row_hardware .fifth__title,
  .fifth__row_hardware .fifth__description {
    margin-right: 0;
  }
  .sixth {
    padding-top: 40px;
    padding-bottom: 45px;
    padding-left: 38px;
    padding-right: 38px;
  }
  .sixth__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 15px;
  }
  .sixth__description {
    font-size: 16px;
    line-height: 22px;
  }
  .sixth__hurry {
    line-height: 36px;
  }
  .howto {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
  }
  .list__item {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
  }
  .faq {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .faq__description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }
  .card:nth-child(n+3) {
    display: none;
  }
  .card__title {
    line-height: 25px;
    margin-bottom: 15px;
  }
  .card__body {
    font-size: 14px;
    line-height: 16px;
  }
  .faq__cards {
    margin-bottom: 10px;
  }
  .faq__all {
    font-size: 16px;
    line-height: 17px;
  }
  .join {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .join .store_android {
    display: none;
  }
  .join__content {
    max-width: none;
    text-align: center;
    margin-left: 0;
  }
  .join__content:before {
    display: none;
  }
  .join__icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  .join__description {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .join__img {
    margin-bottom: 40px;
  }
  .join__img img {
    position: relative;
    left: 25px;
    max-width: 100%;
    height: auto;
  }
  .participation {
    padding-top: 0;
    margin-bottom: 0;
  }
  .participation__tip {
    display: none;
  }
  .participation__title {
    padding-left: 0;
    padding-top: 60px;
    background-position: top;
  }
  .page_promo .logo {
    margin-bottom: 0;
  }
  .page_promo .header__menu {
    display: none;
  }
  .page_promo .countdown__users {
    display: none;
  }
  .join_asian .join__content,
  .join_hindu .join__content,
  .join_beardie .join__content {
    align-items: center;
  }
  .why {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .why__upto {
    display: none;
  }
  .why__list {
    margin-bottom: 30px;
  }
  .why__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 20px;
  }
  .why__text {
    font-size: 15px;
    line-height: 20px;
    text-align: left;
  }
  .why__text p {
    margin-bottom: 10px;
  }
  .why__item:before {
    font-size: 28px;
    line-height: 31px;
    width: 54px;
  }
  .why__item:last-child {
    margin-bottom: 40px;
  }
  .why__item:nth-child(even) {
    padding-left: 20px;
  }
  .why__btn {
    text-align: center;
    margin-top: 30px;
  }
  .why__subtitle {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 10px;
    text-align: left;
  }
  .why_cryptotab .why__item:nth-child(1) .why__img img {
    width: 255px;
    height: 123px;
  }
  .why_cryptotab .why__item:nth-child(2) .why__img img {
    width: 147px;
    height: 147px;
  }
  .why-speed {
    max-width: 288px;
  }
  .why-speed__item {
    margin-bottom: 10px;
  }
  .why-speed__item:last-child {
    margin-bottom: 0;
  }
  .why-speed__label {
    font-size: 10px;
  }
  .why-speed__line {
    height: 4px;
  }
  .startearning {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 27px;
    padding-right: 27px;
  }
  .startearning .subtitle {
    margin-bottom: 20px;
  }
  .startearning .description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }
  .steps {
    max-width: none;
    margin-bottom: 0;
  }
  .steps__item {
    width: 100%;
    text-align: left;
  }
  .steps__item:last-child {
    margin-bottom: 0;
  }
  .steps__item:before {
    display: none;
  }
  .steps__icon_1 img {
    width: 88px;
    height: 80px;
  }
  .steps__icon_2 img {
    width: 89px;
    height: 53px;
  }
  .steps__icon_3 img {
    width: 48px;
    height: 88px;
  }
  .steps__icon_4 img {
    width: 74px;
    height: 64px;
  }
  .steps__text {
    padding-left: 45px;
    position: relative;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .steps__text:before {
    content: counter(steps);
    box-sizing: border-box;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 22px;
    border: 2px solid #f7931a;
    border-radius: 13px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    color: #f7931a;
  }
  .levels-scheme {
    padding-top: 50px;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 50px;
  }
  .levels-scheme .description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }
  .levels-scheme__img {
    display: none;
  }
  .levels-scheme__scheme-m {
    margin-bottom: 40px;
  }
  .levels-scheme__footer {
    font-size: 20px;
    line-height: 22px;
  }
  .getaccess {
    padding-top: 50px;
    background-image: url("../images/affiliate_cover_mobile.png");
    background-size: 400px 180px;
    background-position: bottom -3px center;
  }
}
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (max-width: 768px) and (min-resolution: 192dpi) {
  .getaccess {
    background-image: url("../images/affiliate_cover_mobile@2x.png");
  }
}
@media screen and (max-width: 768px) {
  .getaccess .title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 12px;
  }
  .getaccess .description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }
  .getaccess .btn {
    margin-bottom: 10px;
  }
  .getaccess .note {
    display: block;
  }
}
@media screen and (max-width: 850px) {
  .store_cryptosearch span,
  .store_cryptotab span {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .extensions {
    background-size: 320px auto;
    background-position: center bottom;
  }
  .extensions .wrapper {
    height: auto;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 348px;
  }
  .extensions__text {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .extensions__text p {
    font-size: 24px;
    line-height: 32px;
  }
  .extensions__warning {
    font-size: 13px;
    line-height: 15px;
  }
  .extensions__btn {
    text-align: center;
  }
  .extensions__store-btns {
    justify-content: center;
  }
  .join_girl .join__content,
  .join_man .join__content {
    margin-left: 0;
    max-width: none;
    text-align: center;
    align-items: center;
  }
  .join_girl .join__content:before,
  .join_man .join__content:before {
    display: none;
  }
  .bform {
    width: 100%;
  }
  .bform__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .page_generator .container__text {
    padding-left: 28px;
    padding-right: 28px;
  }
  .bform__col + .bform__col {
    margin-top: 15px;
  }
  .footer {
    padding-top: 0;
    position: relative;
  }
  .footer__content {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer__bottom .footer__content {
    padding-top: 0;
  }
  .footer .lang {
    position: absolute;
    top: 25px;
    right: 20px;
  }
  .footer__btns {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 4;
  }
  .footer__btns .fb-like {
    margin-bottom: 0;
  }
  .footer__store-links {
    order: 2;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .footer .menu {
    margin-bottom: 20px;
    margin-right: 0;
    text-align: center;
  }
  .footer .menu__item, .footer .menu__label {
    text-align: left;
  }
  .footer .menu__item_join {
    justify-content: flex-start;
  }
  .footer__social-links {
    display: flex;
    order: 3;
    color: #757575;
    white-space: nowrap;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 12px;
  }
  .footer__menu {
    flex-direction: column;
    width: auto;
    align-items: center;
  }
  .footer .store-links {
    max-width: 182px;
  }
  .footer .store-links + span {
    display: block;
  }
  .page_ru .menu__item_join {
    margin-left: 0;
  }
  .fourth .store-btns {
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
  }
  .fourth .store-btn {
    max-width: 350px;
  }
  .features {
    margin-bottom: 30px;
  }
  .features__item:after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background-color: #d8d8d8;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .why {
    padding-top: 50px;
  }
  .why__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 20px;
  }
  .why__text {
    font-size: 15px;
    line-height: 20px;
  }
  .why__subtitle {
    font-size: 24px;
    line-height: 27px;
    text-align: left;
  }
  .why__body .why__text {
    text-align: left;
  }
  .why__btn {
    text-align: center;
  }
  .why__img_earn img {
    width: 184px;
    height: 174px;
  }
  .why__img_speed img {
    width: 184px;
    height: 104px;
    margin-bottom: 20px;
  }
  .why__img_boost img {
    width: 248px;
    height: auto;
  }
}
@media screen and (max-width: 380px) {
  .footer__logo {
    align-self: flex-start;
  }
  .footer__logo img {
    width: 190px;
    height: auto;
  }
  .header__lang {
    top: 13px;
  }
}
@media screen and (max-width: 330px) {
  .page_en .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .page_tr .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .page_hi .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .page_it .header__socials span,
  .page_fr .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 410px) {
  .page_es .header__socials span,
  .page_ru .header__socials span,
  .page_de .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .page_bn .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .third__scheme-m img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 344px) {
  .first__screen-img img {
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
