* {
  margin: 0;
  padding: 0;
  font: inherit;
  -webkit-box-sizing: border-box;
  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 {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

ol,
ul {
  list-style: none; }

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

q {
  quotes: '\201C' '\201D' '\2018' '\2019'; }

img {
  border: none; }

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'] {
  -webkit-box-sizing: border-box;
  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;
  -webkit-box-sizing: content-box;
  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;
  -webkit-box-shadow: none;
  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::-ms-input-placeholder {
  color: transparent; }

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

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

html {
  background-color: #000; }

.btn {
  display: inline-block;
  height: 60px;
  background-color: #4285f4;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 60px;
  text-transform: uppercase;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  border: none;
  font-weight: bold; }
  .btn strong {
    font-weight: 700; }
  .btn:hover {
    background-color: #f7931a; }
  .btn:active {
    background-color: #d6d6d6; }
  .btn_simple {
    padding-top: 17px;
    border: 1px solid #CECECE;
    background-color: #fff;
    height: 50px;
    color: #4285f4;
    font-size: 15px;
    line-height: 15px;
    text-align: center; }
    .btn_simple:hover {
      color: #fff;
      background-color: #4285f4;
      border-color: #4285f4; }
    .btn_simple:active {
      background-color: #d6d6d6;
      border-color: #D6D6D6; }
  .btn_sm {
    display: inline-block;
    height: auto;
    font-size: 11px;
    line-height: 11px;
    padding-top: 7px;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px; }
  .btn_withdraw {
    min-width: 260px; }
    .btn_withdraw span {
      padding-left: 27px;
      background-image: url("../images/withdraw-btn-icon.png");
      background-size: 16px;
      background-repeat: no-repeat;
      background-position: left center; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .btn_withdraw span {
          background-image: url("../images/withdraw-btn-icon@2x.png"); } }
  .btn_link {
    display: inline-block;
    padding: 0;
    color: #4285f4;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    height: auto;
    background: none; }
    .btn_link span {
      display: inline-block;
      margin-left: 5px;
      color: #757575; }
    .btn_link.gray {
      color: #757575; }
    .btn_link.darkgray {
      color: #494949; }
    .btn_link:hover, .btn_link.gray:hover, .btn_link.darkgray:hover {
      color: #F7931A;
      background-color: transparent; }
    .btn_link:active {
      background-color: transparent; }
  .btn_plus {
    padding-left: 18px;
    position: relative; }
    .btn_plus:before, .btn_plus:after {
      content: '';
      display: block;
      background-color: #4285f4;
      position: absolute; }
    .btn_plus:before {
      width: 2px;
      height: 12px;
      left: 5px;
      top: 0; }
    .btn_plus:after {
      width: 12px;
      height: 2px;
      left: 0;
      top: 5px; }
    .btn_plus:hover:before, .btn_plus:hover:after {
      background-color: #F7931A; }
  .btn_subid {
    text-align: center;
    min-width: 300px;
    height: 50px;
    padding-top: 12px;
    font-size: 15px;
    line-height: 15px; }
    .btn_subid i {
      display: inline-block;
      width: 18px;
      height: 18px;
      margin-right: 10px;
      position: relative;
      top: 3px;
      background-size: 18px;
      background-image: url("../images/add-subid-icon.png"); }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .btn_subid i {
          background-image: url("../images/add-subid-icon@2x.png"); } }
    .btn_subid.btn_simple i {
      background-image: url("../images/add-subid-icon-blue.png"); }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .btn_subid.btn_simple i {
          background-image: url("../images/add-subid-icon-blue@2x.png"); } }
    .btn_subid.btn_simple:hover i {
      background-image: url("../images/add-subid-icon.png"); }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .btn_subid.btn_simple:hover i {
          background-image: url("../images/add-subid-icon@2x.png"); } }
  .btn_secondary {
    height: 40px;
    background-color: transparent;
    font-size: 13px;
    line-height: 40px;
    color: #494949;
    font-weight: bold;
    padding: 0; }
    .btn_secondary:hover {
      background-color: transparent;
      color: #000; }
  .btn_primary {
    min-width: 120px;
    font-size: 13px;
    line-height: 40px;
    height: 40px; }
  .btn_activate {
    min-width: 380px; }
  .btn_download {
    height: auto;
    min-height: 60px;
    line-height: normal;
    font-weight: bold;
    padding-top: 22px;
    padding-bottom: 21px;
    position: relative;
    padding-left: 61px; }
    .btn_download:before {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 26px;
      background-image: url("../images/btn-download.png");
      width: 12px;
      height: 14px;
      background-size: 12px 14px; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .btn_download:before {
          background-image: url("../images/btn-download@2x.png"); } }
    .btn_download:hover {
      background-color: #F7931A; }
    .btn_download:active {
      background-color: #d6d6d6; }

.btn_calc {
  padding-left: 91px;
  text-align: left;
  font-size: 18px;
  padding-right: 68px; }

.btn_calc:before {
  content: '';
  display: block;
  position: absolute;
  top: 23px;
  left: 68px;
  background-image: url("../images/sprites/sprite.png");
  background-position: -172px -95px;
  width: 13px;
  height: 14px; }

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

.btn_default {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  padding-left: 34px; }

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

.card {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #D6D6D6;
  border-radius: 3px;
  margin-bottom: 40px; }
  .card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .card__header h1 {
      margin-bottom: 0 !important; }
    .card__header .btn_link {
      font-size: 13px; }
  .card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 220px; }
    .card__body h2 {
      display: block;
      font-size: 18px;
      line-height: 20px;
      color: #000;
      margin-bottom: 5px; }
    .card__body p {
      margin-bottom: 30px !important; }
    .card__body_top {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
  .card__footer .btn_secondary {
    height: auto;
    line-height: 13px; }
  .card_xl {
    max-width: 1080px; }
    .card_xl .wrapper {
      position: relative; }
  .card__title {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #fff;
    border-bottom: 1px solid #D6D6D6; }
    .card__title .title {
      text-decoration: none;
      color: #000; }
    .card__title a.title {
      display: inline-block; }
      .card__title a.title:hover {
        color: #4285f4; }
  .card:last-child {
    margin-bottom: 0; }
  .card_form {
    max-width: 450px;
    margin-left: 0;
    margin-right: 0;
    background-color: #fff;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px; }
    .card_form h1 {
      display: block;
      margin-bottom: 20px;
      font-size: 32px;
      line-height: 24px;
      font-weight: bold;
      color: #000; }
    .card_form p {
      font-size: 14px;
      line-height: 22px;
      color: #494949;
      margin-bottom: 40px; }
  .card_withdraw {
    margin-bottom: 20px; }
    .card_withdraw .form {
      margin-top: 60px; }
  .card_payments {
    background-color: #fff;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
    max-width: 750px; }
    .card_payments .title {
      font-size: 32px; }
    .card_payments .card__header {
      margin-bottom: 30px; }
    .card_payments .card__footer {
      text-align: right;
      font-size: 0; }
    .card_payments .balance_sm {
      padding: 0;
      text-align: left;
      border: none; }
      .card_payments .balance_sm .balance__btc {
        margin-bottom: 2px; }
    .card_payments .card__body h2 {
      margin-bottom: 30px; }
  .card_balance .section__header {
    margin-bottom: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .card_settings {
    padding-bottom: 30px; }
    .card_settings .card__footer {
      padding-top: 10px;
      text-align: right;
      font-size: 0; }
      .card_settings .card__footer .btn_link {
        font-size: 13px;
        line-height: 13px; }
        .card_settings .card__footer .btn_link.hidden {
          display: none; }
        .card_settings .card__footer .btn_link.gray {
          color: #494949; }
          .card_settings .card__footer .btn_link.gray:hover {
            color: #000; }
        .card_settings .card__footer .btn_link + .btn_link {
          margin-left: 30px; }

.section {
  display: block;
  background-color: #fff; }
  .section__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 50px; }
    .section__header .label {
      font-size: 12px;
      text-transform: uppercase; }
  .section_subid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F7F7F7; }
    .section_subid .col {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .section_subid .col_subid {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; }
    .section_subid .tooltip {
      margin-left: 0; }
    .section_subid .btn_link {
      display: block; }
    .section_subid .label {
      margin-right: 15px; }
    .section_subid .select {
      margin-right: 20px; }
  .section_links {
    padding-top: 60px;
    background-color: #F7F7F7;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px; }
    .section_links .desc {
      text-align: center; }
    .section_links .social-btns {
      margin-bottom: 30px; }
  .section_referrals {
    padding-top: 40px;
    padding-bottom: 40px; }
  .section_promo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 190px;
    padding-right: 40px;
    background-image: url("../images/promo-bg.png");
    background-size: 160px 107px;
    background-repeat: no-repeat;
    background-position: left bottom; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .section_promo {
        background-image: url("../images/promo-bg@2x.png"); } }
    .section_promo p {
      display: block;
      color: #000;
      font-size: 20px;
      line-height: 26px;
      margin-right: 30px; }
    .section_promo .btn {
      width: 200px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      height: auto;
      padding-bottom: 16px; }
  .section_promo-xl {
    border-top: none !important;
    position: relative; }
    .section_promo-xl .num {
      top: 40px; }
    .section_promo-xl .getaccess {
      padding-top: 90px; }
  .section_personal-id {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center; }
  .section_subid-view {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    text-align: center; }
    .section_subid-view .section__header {
      margin-bottom: 15px;
      padding: 0;
      display: block;
      text-align: right;
      font-size: 0; }
    .section_subid-view .link-id {
      margin-bottom: 30px; }
    .section_subid-view p {
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 17px;
      color: #757575; }
    .section_subid-view .desc_big {
      margin-bottom: 10px; }
  .section_traffic {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center; }
    .section_traffic .title {
      font-size: 32px;
      line-height: 32px;
      margin-bottom: 15px; }
    .section_traffic p {
      width: 100%;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-size: 18px;
      line-height: 28px;
      margin-bottom: 30px; }
  .section_additional-links {
    padding-bottom: 30px; }
    .section_additional-links .card__title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 40px; }
      .section_additional-links .card__title sup {
        font-size: 14px;
        line-height: 16px;
        font-weight: bold;
        color: #757575;
        position: relative;
        top: -7px;
        left: 2px; }
    .section_additional-links .btn_subid {
      min-width: 240px; }
  .section_simple {
    text-align: center;
    background-color: transparent;
    padding-top: 60px;
    padding-bottom: 60px; }
    .section_simple .title {
      margin-bottom: 15px; }
    .section_simple .description {
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px; }
    .section_simple#banners {
      padding-bottom: 0; }
  .section_keep {
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center; }
    .section_keep img {
      display: block;
      margin-bottom: 50px;
      margin-left: auto;
      margin-right: auto; }
    .section_keep .description {
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px; }
    .section_keep .subtitle {
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-size: 24px;
      line-height: 27px;
      color: #000;
      margin-bottom: 20px; }
  .section_features {
    padding-top: 287px;
    padding-bottom: 60px; }
    .section_features .features {
      margin-bottom: 0; }
  .section + .section {
    border-top: 1px solid #D6D6D6; }
  .section.calculate {
    border-top: none;
    padding-bottom: 60px; }
  .section.howto {
    border-top: none; }
    .section.howto::after, .section.howto::before {
      display: none; }
  .section.results {
    border-top: none; }
    .section.results.active + .section.startearning {
      border-top: none; }
  .section.top {
    padding-left: 0;
    padding-right: 0; }
    .section.top .title {
      font-weight: normal;
      font-size: 48px;
      line-height: 53px;
      margin-bottom: 20px; }
      .section.top .title b, .section.top .title strong {
        font-weight: bold; }
    .section.top .content {
      padding-left: 70px;
      padding-right: 70px; }
    .section.top .subtitle {
      font-size: 32px;
      line-height: 36px;
      color: #000;
      margin-bottom: 15px;
      font-weight: normal; }
    .section.top .why {
      margin-top: 60px; }
      .section.top .why__item {
        margin-bottom: 60px;
        padding-left: 70px;
        padding-right: 70px; }
  .section.startearning {
    position: relative;
    padding-bottom: 30px;
    padding-top: 95px;
    border-bottom: none; }
    .section.startearning .num {
      top: 40px; }
    .section.startearning .description {
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto; }
    .section.startearning .steps {
      max-width: 900px; }

.num {
  display: block;
  width: 50px;
  border-bottom: 2px solid #D6D6D6;
  font-size: 36px;
  line-height: 41px;
  color: #D6D6D6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center; }

.link-id {
  display: block;
  margin-bottom: 50px; }
  .link-id__title {
    text-align: center;
    color: #757575;
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 10px; }
    .link-id__title b {
      font-weight: bold; }
  .link-id__id {
    font-size: 64px;
    line-height: 72px;
    font-weight: bold; }

.label {
  display: block;
  font-size: 14px;
  font-weight: bold; }

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #D6D6D6; }
  .info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
    border-right: 1px solid #D6D6D6;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 60px;
    padding-right: 60px; }
    .info__item:last-child {
      margin-right: 0;
      border-right: none; }
    .info__item_affiliate .col:first-child {
      margin-right: 15px; }
    .info__item .row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
  .info__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    color: #757575;
    line-height: 14px;
    font-weight: bold;
    margin-bottom: 5px; }
  .info__btc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 8px;
    white-space: nowrap; }
  .info__usd {
    display: block;
    font-size: 10px;
    line-height: 11px;
    color: #757575;
    font-weight: bold; }
  .info__link {
    display: block;
    color: #4285f4;
    font-size: 11px;
    line-height: 12px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap; }
    .info__link:hover {
      color: #F7931A; }
  .info .btn {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }

.people {
  display: inline-block;
  height: 11px;
  color: #757575;
  font-size: 10px;
  line-height: 11px;
  font-weight: bold;
  white-space: nowrap; }
  .people i {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url("../images/people.png");
    background-size: 8px;
    position: relative;
    top: 1px;
    margin-right: 4px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .people i {
        background-image: url("../images/people@2x.png"); } }

.dropdown {
  display: none;
  width: 220px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  right: 0;
  top: 20px;
  z-index: 100; }
  .dropdown.active {
    display: block; }
  .dropdown__item {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 17px;
    padding-bottom: 16px;
    font-size: 16px;
    line-height: 17px;
    color: #494949;
    border-top: 1px solid #D6D6D6;
    text-decoration: none; }
    .dropdown__item:hover {
      background-color: #4285f4;
      border-top-color: #4285f4;
      color: #fff; }
      .dropdown__item:hover + .dropdown__item {
        border-top-color: #4285f4; }
    .dropdown__item:first-child {
      border-top: none; }
  .dropdown_subids {
    width: 100%;
    max-width: 400px;
    max-height: 200px;
    overflow-y: scroll; }
    .dropdown_subids .dropdown__item {
      padding-top: 10px;
      padding-bottom: 10px; }
      .dropdown_subids .dropdown__item:hover .dd-subid__link,
      .dropdown_subids .dropdown__item:hover .dd-subid__name,
      .dropdown_subids .dropdown__item:hover .dd-subid__btc {
        color: #fff; }
      .dropdown_subids .dropdown__item:hover .dd-subid__comment,
      .dropdown_subids .dropdown__item:hover .people {
        color: #97BEFF; }
      .dropdown_subids .dropdown__item:hover .people i {
        background-image: url("../images/people-light-blue.png"); }
        @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
          .dropdown_subids .dropdown__item:hover .people i {
            background-image: url("../images/people-light-blue@2x.png"); } }
      .dropdown_subids .dropdown__item_all {
        padding-top: 16px;
        padding-bottom: 16px; }

.dd-subid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .dd-subid__link {
    width: 80px;
    font-size: 16px;
    line-height: 17px;
    color: #494949;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    text-align: left; }
    .dd-subid__link_main {
      font-weight: bold; }
  .dd-subid__name {
    font-size: 11px;
    line-height: 12px;
    color: #494949;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 25px; }
  .dd-subid__comment {
    font-size: 11px;
    line-height: 12px;
    color: #757575;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 10px;
    text-align: left; }
  .dd-subid__btc {
    font-size: 10px;
    line-height: 11px;
    font-weight: bold;
    color: #000;
    white-space: nowrap; }

.subids {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto; }
  .subids th {
    font-size: 16px;
    color: #000;
    text-align: left;
    font-weight: bold; }
  .subids tfoot td {
    padding-top: 15px; }
  .subids tbody tr {
    border-bottom: 1px solid #D6D6D6; }
  .subids tbody td {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px; }
    .subids tbody td:first-child {
      padding-left: 0;
      width: 320px; }
    .subids tbody td:last-child {
      padding-right: 0; }
  .subids__link {
    font-size: 16px;
    line-height: 17px;
    color: #494949; }
    .subids__link_main {
      font-weight: bold;
      position: relative; }
      .subids__link_main:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background-color: #F7931A;
        position: absolute;
        left: -24px; }
  .subids__name {
    font-size: 12px;
    line-height: 14px;
    color: #494949;
    font-weight: bold; }
  .subids__comment {
    font-size: 12px;
    line-height: 14px;
    color: #757575; }
  .subids__people {
    text-align: right; }
    .subids__people a.people {
      font-size: 14px;
      line-height: 16px;
      height: 16px;
      color: #4285f4;
      text-decoration: none; }
      .subids__people a.people i {
        top: -1px; }
      .subids__people a.people.disabled {
        color: #757575;
        pointer-events: none; }
  .subids__earnings {
    min-width: 150px; }
    .subids__earnings .balance_sm {
      border: none;
      background-color: transparent;
      text-align: left;
      padding: 0; }
    .subids__earnings .balance__btc {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      font-size: 14px;
      line-height: 16px;
      margin-bottom: 2px;
      color: #000;
      white-space: nowrap; }
    .subids__earnings .balance__usd {
      padding-left: 20px;
      font-weight: bold;
      white-space: nowrap; }
  .subids__action {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 0; }
  .subids_full {
    max-width: none; }
    .subids_full .subids__name {
      -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
      flex: 1.5;
      font-size: 14px;
      line-height: 16px; }
    .subids_full .subids__comment {
      -webkit-box-flex: 2;
      -ms-flex: 2;
      flex: 2;
      font-size: 13px;
      line-height: 15px; }
    .subids_full .subids__people {
      text-align: left; }
  .subids__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 40px; }
    .subids__head > div {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      color: #000;
      font-size: 14px;
      line-height: 16px;
      font-weight: bold;
      padding-left: 10px;
      padding-right: 10px; }
      .subids__head > div:first-child {
        padding-left: 0; }
      .subids__head > div:last-child {
        padding-right: 0; }
      .subids__head > div:nth-child(2) {
        -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
        flex: 1.5; }
      .subids__head > div:nth-child(3) {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2; }
      .subids__head > div:nth-child(5) {
        min-width: 150px; }
  .subids__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
    padding-left: 40px;
    padding-right: 40px;
    position: relative; }
    .subids__item .people {
      font-size: 14px;
      color: #4285f4; }
      .subids__item .people i {
        top: 0; }
      .subids__item .people.disabled {
        color: #757575; }
    .subids__item > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      border-top: 1px solid #D6D6D6; }
      .subids__item > div:first-child {
        padding-left: 0; }
      .subids__item > div:last-child {
        padding-right: 0; }
    .subids__item:last-child > div {
      border-bottom: 1px solid #D6D6D6; }
    .subids__item:hover {
      background-color: #4285f4;
      border-top-color: #4285f4;
      border-bottom-color: #4285f4;
      color: #fff; }
      .subids__item:hover .btn {
        border-color: #fff; }
        .subids__item:hover .btn:active {
          border-color: #d6d6d6;
          color: #fff; }
      .subids__item:hover .people {
        color: #fff; }
        .subids__item:hover .people i {
          background-image: url("../images/people-light-blue.png"); }
          @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
            .subids__item:hover .people i {
              background-image: url("../images/people-light-blue@2x.png"); } }
      .subids__item:hover > div {
        border-top-color: #4285f4; }
      .subids__item:hover + .subids__item > div {
        border-top-color: transparent; }
      .subids__item:hover .subids__link,
      .subids__item:hover .subids__name,
      .subids__item:hover .balance__btc {
        color: #fff; }
      .subids__item:hover .subids__comment,
      .subids__item:hover .balance__usd {
        color: #97BEFF; }
      .subids__item:hover + .subids__item {
        border-top-color: #4285f4; }
      .subids__item:hover:last-child > div {
        border-bottom-color: #4285f4; }
    .subids__item td.subids__earnings {
      padding-bottom: 0; }
  .subids__footer {
    text-align: center;
    padding-top: 30px; }

.coins {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  z-index: -1;
  height: 100%; }

.coins_black {
  background-color: #000; }

.coins:before {
  content: '';
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  position: absolute;
  z-index: 990; }

.coin {
  position: absolute;
  opacity: 0.7;
  -webkit-animation: cascade-down cubic-bezier(0.33333, 0, 0.66667, 0.33333);
  animation: cascade-down cubic-bezier(0.33333, 0, 0.66667, 0.33333);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url("../images/coin.svg");
  display: block;
  background-size: contain;
  min-width: 25px;
  min-height: 25px; }

.coin:nth-child(1) {
  left: 8.33%;
  top: -100px;
  -webkit-animation-delay: 900ms;
  animation-delay: 900ms;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  width: 36px;
  height: 36px; }

.coin:nth-child(2) {
  left: 16.66%;
  top: -100px;
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms;
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  width: 30px;
  height: 30px; }

.coin:nth-child(3) {
  left: 24.990000000000002%;
  top: -100px;
  -webkit-animation-delay: 3000ms;
  animation-delay: 3000ms;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  width: 6px;
  height: 6px; }

.coin:nth-child(4) {
  left: 33.32%;
  top: -100px;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  width: 48px;
  height: 48px; }

.coin:nth-child(5) {
  left: 41.65%;
  top: -100px;
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms;
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  width: 48px;
  height: 48px; }

.coin:nth-child(6) {
  left: 49.980000000000004%;
  top: -100px;
  -webkit-animation-delay: 2100ms;
  animation-delay: 2100ms;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  width: 18px;
  height: 18px; }

.coin:nth-child(7) {
  left: 58.31%;
  top: -100px;
  -webkit-animation-delay: 2700ms;
  animation-delay: 2700ms;
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  width: 30px;
  height: 30px; }

.coin:nth-child(8) {
  left: 66.64%;
  top: -100px;
  -webkit-animation-delay: 2400ms;
  animation-delay: 2400ms;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  width: 60px;
  height: 60px; }

.coin:nth-child(9) {
  left: 74.97%;
  top: -100px;
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  width: 54px;
  height: 54px; }

.coin:nth-child(10) {
  left: 83.3%;
  top: -100px;
  -webkit-animation-delay: 2700ms;
  animation-delay: 2700ms;
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  width: 54px;
  height: 54px; }

.coin:nth-child(11) {
  left: 91.63%;
  top: -100px;
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  width: 30px;
  height: 30px; }

.coin:nth-child(12) {
  left: 99.96000000000001%;
  top: -100px;
  -webkit-animation-delay: 3000ms;
  animation-delay: 3000ms;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  width: 48px;
  height: 48px; }

@-webkit-keyframes cascade-down {
  0% {
    -webkit-transform: translateY(0, -8px);
    transform: translateY(0, -8px); }
  25% {
    -webkit-transform: translateY(0, 2vh);
    transform: translateY(0, 2vh); }
  50% {
    -webkit-transform: translateY(0, 4vh);
    transform: translateY(0, 4vh); }
  75% {
    -webkit-transform: translateY(0, 16vh);
    transform: translateY(0, 16vh); }
  100% {
    -webkit-transform: translate(0, 103vh);
    transform: translate(0, 103vh);
    opacity: 0; } }

@keyframes cascade-down {
  0% {
    -webkit-transform: translateY(0, -8px);
    transform: translateY(0, -8px); }
  25% {
    -webkit-transform: translateY(0, 2vh);
    transform: translateY(0, 2vh); }
  50% {
    -webkit-transform: translateY(0, 4vh);
    transform: translateY(0, 4vh); }
  75% {
    -webkit-transform: translateY(0, 16vh);
    transform: translateY(0, 16vh); }
  100% {
    -webkit-transform: translate(0, 103vh);
    transform: translate(0, 103vh);
    opacity: 0; } }

.container {
  display: block;
  min-height: calc(100vh - 266px); }

@media only screen and (max-width: 880px) {
  .container {
    min-height: calc(100vh - 150px); } }

.container .header {
  position: absolute;
  top: 0;
  left: 0; }

@media only screen and (max-width: 1040px) {
  .container {
    display: block;
    padding-top: 0; }
  .container .header {
    position: static; }
  .container__text {
    margin-left: auto;
    margin-right: auto; } }

.container__text {
  display: block;
  max-width: 840px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 85px; }

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

.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: 25px; }

.container__text h2 {
  display: block;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #1f232c; }

@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 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; }

.description {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #494949; }
  .description b, .description strong {
    font-weight: bold; }

.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10; }
  .first .wrapper {
    max-width: 1000px;
    padding-top: 20px;
    padding-bottom: 50px;
    text-align: center; }
  .first .title {
    display: block;
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 20px;
    font-weight: normal; }
  .first .description {
    margin-bottom: 50px; }
  .first__icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; }
  .first_invite {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#494949));
    background-image: -webkit-linear-gradient(top, #000000 0%, #494949 100%);
    background-image: -o-linear-gradient(top, #000000 0%, #494949 100%);
    background-image: linear-gradient(-180deg, #000000 0%, #494949 100%);
    position: relative; }
    .first_invite .wrapper {
      display: block;
      max-width: 1120px;
      width: 100%;
      padding-top: 50px;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 336px; }
      .first_invite .wrapper .btn {
        width: 100%;
        max-width: 280px; }
    .first_invite .title {
      color: #fff;
      font-size: 54px;
      line-height: 72px; }
    .first_invite .description {
      color: #D6D6D6;
      width: 100%;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto; }
      .first_invite .description a {
        color: #F7931A;
        text-decoration: none; }
        .first_invite .description a:hover {
          color: #4285f4; }
    .first_invite .social-btns-title {
      text-align: left; }
    .first_invite .social-btns {
      margin-left: 0; }
    .first_invite .lang__current {
      background-color: #282828;
      border: 1px solid #757575;
      color: #fff; }
      .first_invite .lang__current:hover {
        background-color: #fff;
        border-color: #fff; }
    .first_invite .img-8x {
      display: block;
      position: absolute;
      bottom: -214px; }
      @media screen and (max-width: 960px) {
        .first_invite .img-8x {
          padding-left: 20px;
          padding-right: 20px; } }
      .first_invite .img-8x img {
        display: block; }
        @media screen and (max-width: 960px) {
          .first_invite .img-8x img {
            max-width: 100%;
            height: auto; } }
      .first_invite .img-8x:after {
        content: '';
        display: block;
        width: 333px;
        height: 350px;
        position: absolute;
        left: -237px;
        bottom: 214px;
        background-image: url("../images/woman-megaphone.png");
        background-size: 333px 350px; }
        @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
          .first_invite .img-8x:after {
            background-image: url("../images/woman-megaphone@2x.png"); } }
        @media screen and (max-width: 1200px) {
          .first_invite .img-8x:after {
            display: none; } }
      .first_invite .img-8x__os {
        position: absolute;
        left: 0;
        bottom: -15px; }
        @media screen and (max-width: 960px) {
          .first_invite .img-8x__os {
            left: 20px; } }
      .first_invite .img-8x--no-bg:after {
        display: none; }
    @media only screen and (max-width: 1395px) {
      .first_invite .header__socials span {
        display: none; } }
    @media only screen and (max-width: 1260px) {
      .first_invite .header {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .first_invite .header .logo {
          margin-bottom: 30px; } }

.second {
  display: block;
  background-color: #fff;
  border-top: 1px solid #D6D6D6;
  padding-top: 70px;
  padding-bottom: 80px;
  text-align: center; }
  .second .title {
    margin-bottom: 20px; }
  .second .description {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px; }
  .second__scheme {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto; }
  .second__footer {
    font-size: 28px;
    line-height: 31px;
    color: #F7931A; }

.startearning {
  display: block;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 65px;
  border-bottom: 1px solid #D6D6D6;
  text-align: center; }
  .startearning .title {
    margin-bottom: 15px; }
  .startearning .description {
    margin-bottom: 65px; }

.getaccess {
  display: block;
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 250px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url("../images/promo-materials.png");
  background-size: 820px 200px;
  padding-left: 20px;
  padding-right: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    .getaccess {
      background-image: url("../images/promo-materials@2x.png"); } }
  .getaccess_with-border {
    border-top: 1px solid #D6D6D6; }
  .getaccess__icon {
    display: block;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto; }
  .getaccess .title {
    margin-bottom: 15px; }
  .getaccess .description {
    margin-bottom: 50px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }
  .getaccess .btn {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 380px;
    font-weight: bold;
    height: auto;
    line-height: 17px;
    padding-top: 22px;
    padding-bottom: 21px; }

.materials {
  display: block;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 230px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url("../images/promo-materials.png");
  background-size: 817px 169px;
  border-bottom: 1px solid #D6D6D6; }
  @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    .materials {
      background-image: url("../images/promo-materials@2x.png"); } }
  .materials .title {
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 40px;
    font-weight: normal; }
  .materials .btns .btn {
    font-size: 14px; }

.resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto; }
  .resources__item {
    display: block;
    width: 100%;
    max-width: 340px;
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    border: 1px solid #D6D6D6;
    border-radius: 2px;
    margin-right: 20px; }
    .resources__item:nth-child(3n) {
      margin-right: 0; }
  .resources__label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: bold;
    text-align: left; }
  .resources__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 130px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .resources__img_icon {
      padding-bottom: 10px; }
    .resources__img img {
      max-width: 100%; }
  .resources__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 13px;
    line-height: 24px;
    color: #757575; }
    .resources__links li {
      padding-left: 15px;
      padding-right: 15px;
      border-right: 1px solid #D6D6D6; }
      .resources__links li:first-child {
        padding-left: 0; }
      .resources__links li:last-child {
        border-right: none;
        padding-right: 0; }
    .resources__links a {
      color: #4285f4;
      text-decoration: none; }
      .resources__links a:hover {
        color: #F7931A; }

.btns {
  font-size: 0; }
  .btns .btn {
    height: 40px;
    padding-top: 12px;
    margin-right: 7px;
    margin-bottom: 10px; }
    .btns .btn:last-child {
      margin-right: 0; }

.footer {
  display: block;
  background-color: #000;
  min-height: 100px;
  padding-top: 30px;
  position: relative;
  z-index: 2; }
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35px; }
  .footer__left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    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 {
    -webkit-transform: translateY(calc(-100% - 40px));
    -ms-transform: translateY(calc(-100% - 40px));
    transform: translateY(calc(-100% - 40px));
    position: absolute;
    width: 100%; }
  .footer__right-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    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;
      -webkit-box-align: center;
      -ms-flex-align: center;
      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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (max-width: 1000px) {
      .footer__menu {
        padding-right: 0;
        width: 100%; } }
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #494949;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .footer__links .menu__item {
      margin: 5px 0 10px; }
    .footer__links .menu__item + .menu__item {
      margin: 5px 0 10px 20px; }
    @media (max-width: 800px) {
      .footer__links {
        margin-top: 10px; } }
  .footer--s .footer__bottom {
    padding-bottom: 20px; }
  @media (max-width: 800px) {
    .footer--s .lang {
      margin-top: 20px;
      margin-bottom: 0px;
      position: relative !important;
      top: auto !important;
      right: auto !important; } }

.bucks {
  display: block;
  font-size: 48px;
  line-height: 40px;
  font-weight: bold;
  color: #34D044;
  margin-bottom: 15px; }

.burger {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 19px;
  top: 50%;
  margin-top: -10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  z-index: 200; }
  .burger.active {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    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; }

.header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 40px;
  margin: 0 auto; }
  .header__navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10; }
  .header__menu {
    margin-right: 30px; }
    .header__menu a {
      font-weight: bold;
      font-size: 14px;
      text-decoration: none;
      color: #4285F4;
      text-transform: uppercase; }
      .header__menu a:hover {
        color: #f7931a; }
      .header__menu a + a {
        margin-left: 25px; }
      .header__menu a.active {
        color: #000;
        pointer-events: none;
        position: relative; }
        .header__menu a.active:after {
          content: '';
          display: block;
          width: 100%;
          height: 3px;
          background-color: #F7931A;
          position: absolute;
          bottom: -13px;
          left: 0; }
  .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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--inverse .header__menu a.active {
    color: #fff; }
  .header--inverse .lang__current {
    background-color: #282828;
    border: 1px solid #757575;
    color: #fff; }
    .header--inverse .lang__current:hover {
      background-color: #fff;
      border-color: #fff; }
  @media (max-width: 768px) {
    .header--inverse .header__navbar {
      background-color: #000; }
    .header--inverse .header__menu {
      border-color: #757575; }
    .header--inverse .header__lang {
      position: static !important;
      margin-right: 15px !important; }
    .header--inverse .header__logo {
      background-color: #000;
      border-bottom-color: rgba(255, 255, 255, 0.3); } }

@media only screen and (max-width: 1130px) {
  .header__socials span {
    display: none; } }

@media only screen and (max-width: 910px) {
  .first .header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .first .header .logo {
    margin-bottom: 30px; } }

.hr {
  display: block;
  width: 100%;
  height: 1px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background-color: #D6D6D6;
  margin-bottom: 50px;
  position: relative;
  margin-top: 60px; }

.hr_btc {
  margin-top: 90px;
  margin-bottom: 55px; }

.hr_btc::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  width: 90px;
  height: 55px;
  background-image: url("../images/hr-btc.png"); }

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .hr_btc::before {
    background-image: url("../images/hr-btc@2x.png");
    background-size: 90px 55px; } }

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  counter-reset: steps;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (max-width: 820px) {
    .steps {
      max-width: 400px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: auto;
      margin-right: auto; } }
  @media only screen and (max-width: 820px) {
    .steps {
      max-width: 400px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: auto;
      margin-right: auto; } }
  @media only screen and (max-width: 440px) {
    .steps {
      max-width: 180px; } }
  .steps__arrow {
    display: block;
    width: 43px;
    height: 14px;
    background-image: url("../images/steps-arrow.png");
    margin-top: 55px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-size: 43px 14px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .steps__arrow {
        background-image: url("../images/steps-arrow@2x.png"); } }
    @media only screen and (max-width: 900px) {
      .steps__arrow {
        display: none; } }
  .steps__item {
    display: block;
    width: 180px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    counter-increment: steps; }
    .steps__item:before {
      content: counter(steps);
      -webkit-box-sizing: border-box;
      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; }
    @media only screen and (max-width: 820px) {
      .steps__item {
        margin-bottom: 30px; } }
  .steps__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 125px; }
  .steps__text {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #000; }

.howto {
  display: block;
  background-color: #F7931A;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative; }
  .howto:before, .howto:after {
    content: '';
    display: block;
    width: 260px;
    height: 75px;
    position: absolute;
    top: -75px;
    background-size: 260px 75px; }
    @media (max-width: 820px) {
      .howto:before, .howto:after {
        display: none; } }
  .howto:before {
    left: 140px;
    background-image: url("../images/btc-icons-left.png"); }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .howto:before {
        background-image: url("../images/btc-icons-left@2x.png"); } }
    @media (min-width: 1280px) {
      .howto:before {
        left: calc(50% - 500px); } }
  .howto:after {
    right: 140px;
    background-image: url("../images/btc-icons-right.png"); }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .howto:after {
        background-image: url("../images/btc-icons-right@2x.png"); } }
    @media (min-width: 1280px) {
      .howto:after {
        left: calc(50% + 240px); } }
  .howto--no-coins:after, .howto--no-coins:before {
    display: none; }

.join-title {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px; }
  .join-title .wrapper {
    display: block;
    width: 100%;
    max-width: 960px;
    font-size: 32px;
    line-height: 54px;
    padding-top: 76px;
    color: #000;
    margin-left: auto;
    margin-right: auto; }
  .join-title strong {
    font-weight: bold; }

.join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 600px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative; }
  .join__content {
    display: block;
    max-width: 500px;
    margin-left: 50%;
    position: relative;
    z-index: 1; }
    .join__content:before {
      content: '';
      display: block;
      width: 450px;
      height: 439px;
      background-image: url("../images/join-bg.png");
      background-size: 450px 439px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: -518px; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .join__content:before {
          background-image: url("../images/join-bg@2x.png"); } }
  .join__description {
    display: block;
    color: #000;
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 40px; }
    .join__description strong {
      font-weight: bold; }
  .join__icon {
    display: block;
    margin-bottom: 20px; }
  .join_black {
    background-color: #000;
    border-bottom: 1px solid #494949; }
    .join_black .join__description {
      color: #fff; }
    .join_black .coins {
      background-color: #000;
      z-index: 1; }
  .join_man {
    background-color: #fff;
    height: 572px; }
    .join_man .join__content {
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .join_man .join__content:before {
        width: 680px;
        height: 530px;
        top: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        left: -730px;
        bottom: 0;
        background-image: url("../images/man.jpg");
        background-size: 680px 530px; }
        @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
          .join_man .join__content:before {
            background-image: url("../images/man@2x.jpg"); } }
    .join_man .join__description {
      width: 100%; }

@media only screen and (max-width: 450px) {
  .join {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px; }
  .join .subtitle {
    font-size: 30px;
    line-height: 36px; } }

.link {
  display: inline;
  color: #4285f4;
  text-decoration: none;
  cursor: pointer; }
  .link:hover {
    color: #F7931A; }
  .link_info {
    display: inline-block;
    font-size: 14px;
    color: #d6d6d6;
    position: relative;
    padding-left: 24px;
    text-decoration: none;
    cursor: pointer; }
    .link_info:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      background-image: url("../images/sprites/sprite.png");
      background-position: -193px -95px;
      width: 12px;
      height: 12px; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .link_info:before {
          background-image: url("../images/sprites/sprite@2x.png");
          background-size: 223px 121px; } }
    .link_info:hover {
      text-decoration: underline; }
  .link_more {
    font-size: 18px;
    line-height: 20px;
    padding-right: 21px;
    background-image: url("../images/arrow-bottom.png");
    background-size: 11px 7px;
    background-position: right center;
    background-repeat: no-repeat; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .link_more {
        background-image: url("../images/arrow-bottom@2x.png"); } }

.show-all + .link_more {
  background-image: url("../images/arrow-top.png"); }
  @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    .show-all + .link_more {
      background-image: url("../images/arrow-top@2x.png"); } }

.images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px; }
  .images.show-all .image:nth-child(n+4) {
    display: block; }

.image {
  display: block;
  text-align: right;
  margin-right: 20px;
  margin-bottom: 30px; }
  .image:nth-child(3n) {
    margin-right: 0; }
  .image:nth-child(n+10) {
    display: none; }
  .image img {
    display: block;
    margin-bottom: 10px; }
  .image .btn_link {
    font-size: 13px;
    line-height: 15px; }

.list {
  display: block;
  width: 100%;
  max-width: 835px;
  margin: 0 auto;
  text-align: left;
  color: #fff; }

.list__item {
  display: block;
  margin-bottom: 30px;
  padding-left: 39px;
  position: relative;
  font-size: 18px;
  line-height: 24px; }

.list__item:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 0;
  background-image: url("../images/checkmark.svg");
  width: 24px;
  height: 24px;
  background-size: 24px; }

.list__item:last-child {
  margin-bottom: 0; }

.logo {
  display: block; }

.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;
        -webkit-box-pack: center;
        -ms-flex-pack: 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__label {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #757575;
    margin-bottom: 18px; }

.menu__item_join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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; }

.note {
  display: block;
  font-size: 11px;
  line-height: 12px;
  color: #757575;
  width: 100%; }

.page {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  min-width: 320px; }
  .page_second .container,
  .page_second .header {
    background-color: #F7F7F7; }
  .page_second .container {
    padding-bottom: 60px; }
  .page_white .container,
  .page_white .header {
    background-color: #fff; }
  .page_white .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: calc(100vh - 530px); }
  .page_simple {
    background-color: #F7F7F7; }
    .page_simple .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      height: calc(100vh - 133px);
      min-height: 650px;
      padding-bottom: 120px; }
  .page_payments .container {
    height: auto;
    min-height: calc(100vh - 133px); }

.page_blocked {
  overflow: hidden; }

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

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

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

.form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }
  .form__footer .btn + .btn {
    margin-left: 30px; }
  .form__footer_fullwidth {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }

.line {
  display: block;
  height: 4px;
  position: relative;
  top: 0;
  left: 0;
  margin-top: 3px;
  border-radius: 2px;
  background-color: #4285F4;
  min-width: 5px; }

.percent {
  display: inline-block;
  font-size: 12px;
  color: #f7931a;
  font-weight: 700; }

.popup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: scroll;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px; }
  .popup_transparent {
    background-color: transparent; }
  .popup_alert .popup__handler {
    padding-top: 30px; }
  .popup_alert .popup__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 210px; }
  .popup_alert h2 {
    font-size: 24px;
    display: block;
    color: #000;
    line-height: 24px; }

.popup.active {
  display: block; }

@media only screen and (max-width: 500px) {
  .popup {
    padding: 0;
    height: 100%; } }

.popup:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

@media only screen and (max-width: 500px) {
  .popup:before {
    display: none; } }

.popup__handler {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  width: 100%;
  max-width: 450px;
  margin: 80px auto; }

@media only screen and (max-width: 500px) {
  .popup__handler {
    display: block;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    max-width: none;
    border-radius: 0; } }

.popup__header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 24px;
  line-height: 24px;
  position: relative; }

.popup__header img {
  display: block;
  margin-right: 10px; }

.popup__body {
  padding: 0 30px;
  font-size: 14px;
  line-height: 16px;
  color: #494949;
  max-height: 350px;
  overflow-y: scroll; }

.popup__body p {
  margin-bottom: 20px; }

.popup__body ul {
  margin-bottom: 20px; }

.popup__body li {
  margin-bottom: 10px; }

.popup__body b,
.popup__body strong {
  font-weight: 700; }

@media only screen and (max-width: 500px) {
  .popup__body {
    padding: 30px 20px; } }

.popup__footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 20px 30px; }

.popup__label {
  display: block;
  color: #F7931A;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px;
  font-weight: bold; }

#howPopup h3 {
  position: relative;
  padding-left: 36px; }

#howPopup h3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/sprites/sprite.png");
  background-position: 0px -95px;
  width: 26px;
  height: 26px; }

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  #howPopup h3:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px; } }

.errorlist {
  color: #EC1B1B;
  font-size: 12px;
  line-height: 14px;
  margin-top: 5px; }

.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 #c9c9d0;
    font-family: Arial, Helvetica, sans-serif; }
    .input input.error {
      border-color: red; }
    .input input:focus {
      border-color: #4285f4; }
    .input input::-webkit-input-placeholder {
      color: #757575; }
    .input input:-ms-input-placeholder {
      color: #757575; }
    .input input::-ms-input-placeholder {
      color: #757575; }
    .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: none;
    border: 1px solid #c9c9d0;
    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: 5px; }
  .input__tip {
    display: block;
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 11px;
    line-height: 12px;
    font-weight: bold;
    color: #000;
    cursor: pointer; }
  .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; }
    .input select:hover {
      border-bottom-color: #4285f4; }
    .input select:invalid {
      color: #757575; }

.tooltip {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #A4A4A4;
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 5px;
  z-index: 100; }
  .tooltip:hover {
    background-color: #000; }
    .tooltip:hover .tooltip__text {
      display: block; }
  .tooltip_question {
    background-image: url("../images/question.svg"); }
  .tooltip__text {
    display: none;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 3px;
    padding: 10px;
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 12px;
    font-weight: normal;
    text-align: left; }

.arrow {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  background-image: url("../images/sprites/sprite.png");
  background-position: -213px -95px;
  width: 7px;
  height: 11px; }
  @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    .arrow {
      background-image: url("../images/sprites/sprite@2x.png");
      background-size: 223px 121px; } }

.results {
  display: none;
  background-color: #494949;
  position: relative;
  padding-top: 68px;
  padding-bottom: 40px;
  text-align: center; }

.results.active {
  display: block; }

.results:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff; }

.results__table {
  width: 100%;
  max-width: 840px;
  margin: 0 auto 40px; }

.results__table td {
  height: 57px; }

.results__table thead tr {
  border-bottom: 3px solid #f7931a; }

.results__table thead th {
  color: #fff;
  font-size: 24px;
  line-height: 27px;
  vertical-align: middle;
  padding-bottom: 5px; }

.results__table thead th .small {
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 300; }

.results__table thead th.results__friends-h {
  width: 305px; }

.results__table thead th b {
  font-weight: 700; }

.results__table tbody tr {
  border-bottom: 1px solid #757575; }

.results__table tbody td {
  text-align: center;
  vertical-align: middle;
  font-size: 32px;
  line-height: 36px;
  color: #fff;
  width: 40%; }

@media only screen and (max-width: 790px) {
  .results__table tbody td {
    font-size: 18px; } }

.results__table tbody td:nth-child(1) {
  font-weight: 600; }

.results__table tbody td:nth-child(3) {
  font-weight: 300; }

.results__table tbody td:nth-child(3) span {
  font-weight: 600; }

.results__table td.results__round {
  color: #fff;
  font-size: 14px;
  text-align: left;
  max-width: 150px;
  width: 10%;
  white-space: nowrap; }

.results__table td.results__round b {
  font-weight: 700; }

.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.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 24px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  pointer-events: none; }

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

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .scroll2top {
    background-image: url("../images/scroll2top@2x.png"); } }

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

.top {
  display: block;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 50px;
  padding-left: 90px;
  padding-right: 90px; }

.desc {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #494949; }
  .desc_big {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 36px;
    color: #000;
    position: relative;
    z-index: 100; }
  .desc_xl {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    z-index: 100;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .desc a {
    color: #4285f4;
    text-decoration: none; }
    .desc a:hover {
      color: #F7931A; }
  .desc b, .desc strong {
    font-weight: bold; }

.speedbox {
  margin: 40px auto 40px;
  height: 180px;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }
  .speedbox.animated .speedbox__score {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: score_anim;
    animation-name: score_anim;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition: 1s ease-in;
    -o-transition: 1s ease-in;
    transition: 1s ease-in; }
  .speedbox.animated .speedbox__pointer {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: pointer_anim;
    animation-name: pointer_anim;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition: 1s ease-in;
    -o-transition: 1s ease-in;
    transition: 1s ease-in; }
  .speedbox__groove {
    height: 200px;
    width: 300px;
    background: transparent;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border: 18px solid #D6D6D6;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0; }
  .speedbox__score {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 300px;
    width: 300px;
    background: transparent;
    border-radius: 50%;
    border: 18px solid #4285f4;
    border-color: transparent transparent #4285f4 #4285f4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1; }
    .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: 300px;
    height: 150px;
    background: white;
    position: relative;
    top: 150px;
    z-index: 20; }
  .speedbox__odo {
    text-align: center;
    position: absolute;
    color: #5c6f7b;
    bottom: 150px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    .speedbox__odo i {
      font-size: 13px;
      opacity: .6; }
    .speedbox__odo > div {
      margin-bottom: 0; }
    .speedbox__odo span {
      font-size: .7em; }
  .speedbox__pointer {
    display: block;
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: -120px;
    left: 50%;
    margin-left: -150px;
    margin-top: -150px;
    background-image: url("../images/pointer.png");
    background-position: 43px;
    background-repeat: no-repeat;
    background-size: 133px 54px;
    z-index: 100;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .speedbox__pointer {
        background-image: url("../images/pointer@2x.png"); } }
  .speedbox + .referred {
    position: relative;
    z-index: 100;
    margin-bottom: 40px; }

@-webkit-keyframes score_anim {
  25% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); } }

@keyframes score_anim {
  25% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); } }

@-webkit-keyframes pointer_anim {
  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); } }

@keyframes pointer_anim {
  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); } }

.rank {
  display: inline-block;
  height: 15px;
  line-height: 15px;
  color: #fff;
  text-transform: uppercase;
  padding-left: 3px;
  padding-right: 3px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: bold;
  margin-left: 8px;
  position: relative;
  top: -1px; }
  .rank_newbie {
    background-color: #757575; }
  .rank_rookie {
    background-color: #4285F4; }
  .rank_pro {
    background-color: #2ABB40; }
  .rank_veteran {
    background-color: #F7931A; }
  .rank_expert {
    background-color: #9E31C7; }
  .rank_master {
    background-color: #E11282; }
  .rank_legend {
    background-color: #FF5718; }
  .rank_bigboss {
    background-color: #000; }

.referred {
  font-size: 14px;
  line-height: 16px; }
  .referred__label {
    color: #494949; }
  .referred__value {
    color: #4285f4;
    font-weight: bold;
    text-decoration: none; }
    .referred__value:hover {
      color: #F7931A; }
    .referred__value:before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-left: 5px;
      margin-right: 2px;
      background-image: url("../images/people.png");
      background-size: 8px; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .referred__value:before {
          background-image: url("../images/people@2x.png"); } }

.footer__store-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.store-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 118px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

@media only screen and (max-width: 1040px) {
  .page_ru .footer .footer__store-links {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px; } }

@media only screen and (max-width: 980px) {
  .footer .footer__store-links {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px; } }

@media only screen and (max-width: 900px) {
  .page_ru .footer .menu__col {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px; }
  .page_ru .menu__item_join {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px; } }

.store {
  display: block;
  width: auto;
  min-width: 54px;
  height: 52px;
  position: relative;
  border: 1px solid #d6d6d6;
  border-radius: 3px;
  padding-left: 47px;
  text-decoration: none;
  padding-top: 10px;
  background-color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: left;
  margin-bottom: 10px; }
  .store:before {
    content: '';
    display: block;
    position: absolute; }
  .store_chrome:before {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    left: 14px;
    background-image: url("../images/sprites/sprite.png");
    background-position: -34px -95px;
    width: 24px;
    height: 24px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .store_chrome:before {
        background-image: url("../images/sprites/sprite@2x.png");
        background-size: 223px 121px; } }
  .store_ff:before {
    background-image: url("../images/logo-ff.png");
    width: 25px;
    height: 26px;
    background-position: center;
    top: 12px;
    left: 15px;
    background-size: 25px 26px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .store_ff:before {
        background-image: url("../images/logo-ff@2x.png"); } }
  .store_ff .store__first-line,
  .store_ff .store__second-line {
    display: none; }
  .store_android:before {
    background-image: url("../images/android.png");
    width: 24px;
    height: 28px;
    background-position: center;
    left: 15px;
    top: 10px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .store_android:before {
        background-image: url("../images/android@2x.png");
        background-size: 24px 28px; } }
  .store_cryptosearch:before {
    background-image: url("../images/cryptosearch-logo.svg");
    width: 24px;
    height: 24px;
    background-position: center;
    left: 12px;
    top: 13px;
    background-size: 24px 24px; }
  .store_edge:before {
    background-image: url("../images/browser-icon_edge.png");
    width: 24px;
    height: 26px;
    background-position: center;
    top: 12px;
    left: 14px;
    background-size: 24px 26px; }
  .store_edge:hover:before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1); }
  .store_opera:before {
    background-image: url("../images/browser-icon_opera.png");
    width: 26px;
    height: 26px;
    background-position: center;
    top: 12px;
    left: 14px;
    background-size: 26px 26px; }
  .store_safari:before {
    background-image: url("../images/browser-icon_safari.png");
    width: 26px;
    height: 26px;
    background-position: center;
    top: 12px;
    left: 14px;
    background-size: 26px 26px; }
  .store__first-line {
    display: block;
    font-size: 11px;
    line-height: 15px;
    color: #757575;
    font-weight: 300; }
  .store__second-line {
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #000;
    font-weight: 600;
    position: relative;
    top: -3px;
    padding-right: 15px; }
  .store:hover {
    background-color: #4285f4;
    border-color: #4285f4; }
    .store:hover .store__first-line {
      color: #d6d6d6; }
    .store:hover .store__second-line {
      color: #fff; }
  .store:active {
    background-color: #d6d6d6;
    border-color: #d6d6d6; }
    .store:active .store__first-line {
      color: #757575; }
    .store:active .store__second-line {
      color: #fff; }
    .store:active:before {
      opacity: 0.7; }
  .store_cryptotab:before {
    background-image: url("../images/cryptotab-logo.svg");
    width: 24px;
    height: 24px;
    background-position: center;
    left: 12px;
    top: 13px;
    background-size: 24px 24px; }
  .store_browser:before {
    background-position: center;
    background-image: url("../images/browser-icon-footer.png");
    width: 26px;
    height: 26px;
    background-size: 26px;
    left: 13px;
    top: 13px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .store_browser:before {
        background-image: url("../images/browser-icon-footer@2x.png"); } }

.footer .store_cryptosearch:before {
  left: 14px; }

.store_cryptotab .store__first-line,
.store_cryptosearch .store__first-line {
  font-size: 13px;
  line-height: 15px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 2px; }

.store_cryptotab .store__second-line,
.store_cryptosearch .store__second-line {
  color: #757575;
  font-size: 11px;
  line-height: 12px;
  font-weight: normal;
  top: 0; }

.store_cryptotab:hover .store__first-line,
.store_cryptosearch:hover .store__first-line {
  color: #fff; }

.store_cryptotab:active .store__first-line,
.store_cryptosearch:active .store__first-line {
  color: #000;
  opacity: 0.7; }

.store_cryptotab:hover .store__second-line,
.store_cryptosearch:hover .store__second-line {
  color: #9FC3FF; }

.store_cryptotab:active .store__second-line,
.store_cryptosearch:active .store__second-line {
  color: #757575;
  opacity: 0.7; }

.store_cryptotab:active::before,
.store_cryptosearch:active::before {
  opacity: 0.7; }

.store_cryptotab:active,
.store_cryptosearch:active {
  background-color: #D6D6D6; }

.page_ff .store_chrome {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.page_ff .store_ff {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.page_ff.page_v2 .store_ff {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0; }

.page_ff .store_chrome .store__first-line,
.page_ff .store_chrome .store__second-line {
  display: none; }

.page_ff .store_ff .store__first-line,
.page_ff .store_ff .store__second-line {
  display: block; }

.footer .store {
  border-color: #757575;
  background-color: #282828; }

.footer .store:hover {
  border-color: #4285f4;
  background-color: #4285f4; }

.footer .store:active {
  background-color: #494949;
  border-color: #494949; }

.footer .store__first-line,
.footer .store__second-line {
  display: none !important; }

.subtitle {
  display: block;
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #000;
  text-align: center; }

.subtitle_white {
  color: #fff; }

.screen {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.pre-title {
  display: block;
  font-size: 20px;
  line-height: 22px;
  color: #F7931A;
  margin-bottom: 10px; }

.title {
  display: block;
  font-weight: bold;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 0; }
  .title_icon_btc {
    padding-left: 42px;
    line-height: 32px !important;
    background-image: url("../images/coin.svg");
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: left center; }

.total {
  margin-bottom: 60px;
  text-align: center; }

.total__title {
  display: block;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 20px;
  color: #f7931a;
  font-weight: bold;
  text-transform: uppercase; }

.total__friends {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 25px; }

.total__friends .total__label,
.total__friends .total__value {
  margin-bottom: 0; }

.total__label {
  font-size: 16px;
  line-height: 17px;
  color: #d6d6d6;
  margin-bottom: 10px; }

.total__value {
  display: block;
  color: #fff;
  margin-bottom: 14px; }

.total__value_friends {
  display: inline-block;
  font-size: 32px;
  line-height: 36px;
  margin-left: 8px;
  font-weight: 600; }

.total__value_income {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  background-color: #f7931a;
  border-radius: 4px; }

.total__value_income span {
  font-weight: 700; }

.total__value_income:after {
  content: '';
  display: block; }

.total__btc {
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  position: relative;
  padding-left: 30px;
  font-weight: 700; }

.total__btc:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/sprites/sprite.png");
  background-position: -66px -95px;
  width: 22px;
  height: 22px; }

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .total__btc:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px; } }

.wrapper {
  display: block; }

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

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

.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;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #323232;
  cursor: default;
  text-transform: uppercase;
  overflow: hidden; }

.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;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  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; }

.rangeSlider, .rangeSlider__fill {
  display: block;
  border-radius: 10px; }

.rangeSlider {
  position: relative;
  background: #D6D6D6; }

.rangeSlider__horizontal {
  height: 6px;
  width: 100%;
  max-width: 380px;
  position: relative;
  margin-left: auto;
  margin-right: auto; }

.rangeSlider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeSlider__fill {
  background: #D6D6D6;
  position: absolute;
  z-index: 2; }

.rangeSlider__fill__horizontal {
  height: 100%;
  top: 0;
  background-color: #4285f4;
  left: 0; }

.rangeSlider__handle {
  height: 30px;
  width: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #fff;
  border: 6px solid #4285F4;
  cursor: pointer;
  -webkit-appearance: none;
  position: relative;
  top: -12px;
  z-index: 5; }

input[type="range"]:focus + .rangeSlider .rangeSlider__handle {
  -webkit-box-shadow: 0 0 8px rgba(142, 68, 173, 0.9);
  box-shadow: 0 0 8px rgba(142, 68, 173, 0.9); }

.rangeSlider__buffer {
  z-index: 1;
  position: absolute;
  top: -10px;
  height: 26px;
  background: transparent;
  width: 100%; }

.notice {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #494949;
  margin-top: 40px; }

.bform {
  display: block;
  width: 100%;
  max-width: 1020px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 25px;
  padding-bottom: 40px;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  margin-top: 40px; }
  .bform__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: left; }
  .bform__col {
    width: 100%;
    margin-right: 20px; }
    .bform__col:last-child {
      margin-right: 0; }
    .bform__col--col-1, .bform__col--col-2 {
      max-width: 190px; }
    .bform__col--col-3 {
      max-width: 160px; }
    .bform__col--col-4 {
      max-width: 100px; }
    .bform__col--col-5 {
      max-width: 220px; }
  .bform .label {
    display: block;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
    font-weight: bold; }
  .bform input[type="number"] {
    height: 50px;
    border: 1px solid #CECECE;
    border-radius: 2px;
    min-width: 170px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px; }
  .bform .btn_default {
    padding-left: 20px;
    height: 50px;
    line-height: 50px; }
  .bform select {
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    width: 100%;
    height: 50px;
    border: 1px solid #CECECE;
    border-radius: 2px;
    background-color: #fff;
    min-width: 90px;
    padding-left: 15px;
    padding-right: 25px;
    background-image: url(../images/icon-select-arrows.png);
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 6px 11px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .bform select {
        background-image: url("../images/icon-select-arrows@2x.png"); } }

.group {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }
  .group + .group {
    border-top: 1px solid #C8C8C8;
    margin-top: 50px;
    padding-top: 50px; }
  .group .subtitle {
    margin-bottom: 30px;
    font-weight: normal;
    font-size: 32px; }
  .group .btn_default {
    padding-left: 20px;
    text-align: center;
    height: 44px;
    line-height: 42px;
    max-width: 200px; }

.group_1, .group_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.group_1 .subtitle, .group_2 .subtitle {
  width: 100%; }

.group_1 .row_code, .group_2 .row_code {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.group_1 .row_code,
.group_2 .row_code {
  width: 100%;
  position: relative; }
  .group_1 .row_code .textarea,
  .group_2 .row_code .textarea {
    width: 100%; }
  .group_1 .row_code .textarea_js,
  .group_2 .row_code .textarea_js {
    min-height: 200px; }
  .group_1 .row_code .col,
  .group_2 .row_code .col {
    text-align: right; }
    .group_1 .row_code .col + .col,
    .group_2 .row_code .col + .col {
      margin-left: 0;
      margin-top: 30px; }
  .group_1 .row_code .btn_default,
  .group_2 .row_code .btn_default {
    position: absolute;
    left: 0;
    bottom: 0; }

.group_1 .row_preview,
.group_2 .row_preview {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 0;
  margin-right: 30px; }

.group_1 .row_code {
  max-width: 600px; }

.group_2 .row_code {
  max-width: 560px; }

.group_3,
.group_4,
.group_8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .group_3 .row_code,
  .group_4 .row_code,
  .group_8 .row_code {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    position: relative; }
    .group_3 .row_code .col,
    .group_4 .row_code .col,
    .group_8 .row_code .col {
      width: 300px;
      margin-right: 30px;
      text-align: right; }
      .group_3 .row_code .col:last-child,
      .group_4 .row_code .col:last-child,
      .group_8 .row_code .col:last-child {
        margin-right: 0; }
    .group_3 .row_code .textarea_html,
    .group_4 .row_code .textarea_html,
    .group_8 .row_code .textarea_html {
      min-height: 110px; }
      .group_3 .row_code .textarea_html + .btn_link,
      .group_4 .row_code .textarea_html + .btn_link,
      .group_8 .row_code .textarea_html + .btn_link {
        margin-bottom: 40px; }
    .group_3 .row_code .textarea_js,
    .group_4 .row_code .textarea_js,
    .group_8 .row_code .textarea_js {
      min-height: 250px; }
    .group_3 .row_code .btn_default,
    .group_4 .row_code .btn_default,
    .group_8 .row_code .btn_default {
      margin-left: 0; }
  .group_3 .row_preview,
  .group_4 .row_preview,
  .group_8 .row_preview {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0;
    margin-right: 30px; }
  .group_3 .subtitle,
  .group_4 .subtitle,
  .group_8 .subtitle {
    width: 100%; }

.group_5,
.group_6,
.group_7,
.group_9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .group_5 .row_preview,
  .group_6 .row_preview,
  .group_7 .row_preview,
  .group_9 .row_preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 40px;
    margin-top: 0; }
  .group_5 .row_code,
  .group_6 .row_code,
  .group_7 .row_code,
  .group_9 .row_code {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    .group_5 .row_code .textarea_html,
    .group_6 .row_code .textarea_html,
    .group_7 .row_code .textarea_html,
    .group_9 .row_code .textarea_html {
      min-height: 100px; }
      .group_5 .row_code .textarea_html + .btn_link,
      .group_6 .row_code .textarea_html + .btn_link,
      .group_7 .row_code .textarea_html + .btn_link,
      .group_9 .row_code .textarea_html + .btn_link {
        margin-bottom: 48px; }
    .group_5 .row_code .textarea_js,
    .group_6 .row_code .textarea_js,
    .group_7 .row_code .textarea_js,
    .group_9 .row_code .textarea_js {
      min-height: 220px; }
    .group_5 .row_code .col,
    .group_6 .row_code .col,
    .group_7 .row_code .col,
    .group_9 .row_code .col {
      width: 50%;
      text-align: right;
      margin-right: 30px; }
      .group_5 .row_code .col:first-child,
      .group_6 .row_code .col:first-child,
      .group_7 .row_code .col:first-child,
      .group_9 .row_code .col:first-child {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-right: 0; }
      .group_5 .row_code .col:last-child,
      .group_6 .row_code .col:last-child,
      .group_7 .row_code .col:last-child,
      .group_9 .row_code .col:last-child {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1; }
    .group_5 .row_code .btn_default,
    .group_6 .row_code .btn_default,
    .group_7 .row_code .btn_default,
    .group_9 .row_code .btn_default {
      margin-left: 0; }

.page_generator .container__text {
  max-width: 970px;
  padding-left: 0;
  padding-right: 0; }

.row {
  display: block; }

.row_preview {
  margin-top: 40px; }

.row_code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.col__title {
  display: block;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px; }

.result {
  display: none;
  width: 100%; }

.variant {
  text-transform: uppercase; }

#preview iframe {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.textarea {
  border: 1px solid #D6D6D6;
  border-radius: 2px;
  padding: 15px;
  margin-bottom: 10px;
  min-height: 120px;
  width: 100%; }

.textarea_js {
  min-height: 180px; }

.no-results {
  font-size: 36px;
  line-height: 41px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 100px; }

.mobile-only {
  display: none; }

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

.store-btn {
  display: block;
  min-width: 290px;
  padding-top: 15px;
  padding-bottom: 14px;
  min-height: 60px;
  background-color: #4285F4;
  padding-left: 80px;
  position: relative;
  border-radius: 5px 3px 3px 5px;
  border: none;
  margin-bottom: 10px; }

.store-btn:hover {
  background-color: #F7931A; }

.store-btn:active {
  background-color: #D6D6D6; }

.store-btn span {
  display: block;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  padding-right: 20px; }

.store-btn span:first-child {
  font-size: 16px;
  line-height: 17px;
  margin-bottom: 2px;
  color: #fff; }

.store-btn span:last-child {
  font-size: 11px;
  line-height: 12px;
  color: #9FC3FF; }

.store-btn:hover span:last-child,
.store-btn:active span:last-child {
  color: #fff; }

.store-btn::before {
  content: '';
  display: block;
  width: 60px;
  height: calc(100% - 2px);
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #D6D6D6;
  border-right: none;
  border-radius: 3px 0 0 3px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px; }

.store-btn_cryptosearch::before {
  background-image: url("../images/cryptosearch-logo.svg"); }

.store-btn_cryptotab::before {
  background-image: url("../images/cryptotab-logo.svg"); }

.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 80px;
  max-width: 965px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }
  @media only screen and (max-width: 800px) {
    .features {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .features__item {
    display: block;
    max-width: 240px;
    font-size: 16px;
    line-height: 19px;
    color: #1D1D1B;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    position: relative; }
    @media only screen and (max-width: 800px) {
      .features__item {
        margin-bottom: 30px; } }
    .features__item a {
      color: #4285F4;
      text-decoration: none; }
      .features__item a:hover {
        color: #F7931A; }
    .features__item::before, .features__item:last-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 10px;
      left: 0;
      width: 1px;
      height: 80px;
      background-color: #D8D8D8; }
      @media only screen and (max-width: 800px) {
        .features__item::before, .features__item:last-child::after {
          display: none; } }
    .features__item:last-child::after {
      right: 0;
      left: auto; }
    .features__item img {
      display: block; }
  .features__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 10px; }

.referrals {
  display: block;
  max-width: 550px;
  margin: 0 auto; }
  .referrals__label {
    display: block;
    text-align: left;
    color: #000;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
    font-weight: bold; }
  .referrals__total {
    display: block;
    text-align: center;
    height: 80px;
    line-height: 80px;
    font-size: 36px;
    font-weight: bold;
    color: #757575;
    border: 1px solid #D6D6D6;
    border-radius: 2px; }
    .referrals__total span:before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 20px;
      background-image: url("../images/people_gray.png");
      background-size: 18px 20px;
      margin-right: 6px;
      position: relative;
      top: -2px; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .referrals__total span:before {
          background-image: url("../images/people_gray@2x.png"); } }
  .referrals__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
    .referrals__row_labels {
      visibility: hidden;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .referrals__row_labels .referrals__label:first-child {
        -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
        flex: 1.5; }
      .referrals__row_labels .referrals__label:nth-child(2) {
        text-align: right;
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        padding-right: 40px; }
      .referrals__row_labels .referrals__label:last-child {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        padding-right: 40px;
        text-align: right; }
  .referrals__col {
    width: 100%; }
    .referrals__col_all .referrals__total {
      border-right: none;
      border-radius: 2px 0 0 0; }
    .referrals__col_day .referrals__total {
      border-color: #F7931A;
      border-radius: 0 2px 0 0;
      color: #000; }
      .referrals__col_day .referrals__total span:before {
        background-image: url("../images/people_orange.png"); }
        @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
          .referrals__col_day .referrals__total span:before {
            background-image: url("../images/people_orange@2x.png"); } }
    .referrals__col_earnings {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      border: 1px solid #D6D6D6;
      border-top: none;
      margin-bottom: 40px;
      border-radius: 2px;
      padding: 17px 20px;
      color: #757575;
      font-size: 14px; }
      .referrals__col_earnings div {
        display: block; }
      .referrals__col_earnings .approx {
        font-size: 10px; }
        .referrals__col_earnings .approx b {
          font-weight: bold; }
      .referrals__col_earnings .earnings {
        font-weight: bold;
        font-size: 16px;
        color: #000;
        margin-left: 10px;
        margin-right: 5px;
        padding-left: 21px;
        background-image: url("../images/coin.svg");
        background-size: 16px;
        background-repeat: no-repeat;
        background-position: center left; }
        .referrals__col_earnings .earnings span {
          position: relative;
          top: 1px; }
  .referrals_our {
    max-width: 90%; }
    .referrals_our .level__title {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      text-align: left; }
    .referrals_our .level__value {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }

.level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #D6D6D6;
  height: 80px; }
  .level__title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #F7931A;
    text-transform: uppercase;
    text-align: left;
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5; }
  .level__value {
    display: block;
    font-size: 48px;
    font-weight: bold;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    text-align: right; }
    .level__value:nth-child(2) {
      color: #757575;
      font-size: 24px;
      padding-right: 40px; }
    .level__value:last-child {
      padding-right: 40px; }

.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; }

.btn + .note {
  margin-top: 15px; }

@media only screen and (max-width: 800px) {
  .features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .features__item {
    margin-bottom: 30px; }
  .features__item::before,
  .features__item:last-child::after {
    display: none; } }

.promo-fixed {
  display: block;
  width: 100%;
  max-width: 1080px;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none; }
  .promo-fixed.hidden {
    display: none; }

.close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  opacity: 1; }
  .close:hover:before, .close:hover:after {
    background-color: #F7931A; }
  .close:before, .close:after {
    position: absolute;
    top: 5px;
    left: 10px;
    content: ' ';
    height: 10px;
    width: 2px;
    background-color: #727272; }
  .close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.b-num {
  display: block;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  border: 1px solid #D6D6D6;
  border-left: none;
  border-right: none; }
  .b-num_no-border {
    border-bottom: none; }
  .b-num .wrapper {
    max-width: 940px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 40px; }
  .b-num__title {
    display: block;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center; }
  .b-num__subtitle {
    display: block;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px; }
  .b-num__list {
    counter-reset: why; }
  .b-num__text {
    font-size: 18px;
    line-height: 26px;
    color: #494949; }
    .b-num__text p {
      margin-bottom: 20px; }
      .b-num__text p.small {
        font-size: 13px;
        line-height: 18px;
        color: #757575;
        margin-bottom: 0; }
    .b-num__text strong, .b-num__text b {
      font-weight: bold; }
  .b-num__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    counter-increment: why;
    margin-bottom: 50px; }
    .b-num__item:before {
      content: counter(why);
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      font-size: 36px;
      line-height: 48px;
      color: #D6D6D6;
      border-bottom: 2px solid #D6D6D6;
      width: 75px;
      font-weight: bold;
      text-align: center; }
    .b-num__item:nth-child(even) .b-num__row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
    .b-num__item:nth-child(even) .b-num__img {
      margin-right: 20px;
      margin-left: 70px; }
    .b-num__item:nth-child(odd) .b-num__body {
      position: relative;
      top: 15px; }
  .b-num__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 460px;
    height: 320px;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    background-color: #fff;
    margin-right: 90px; }
    .b-num__img:after {
      content: '';
      display: block;
      width: 460px;
      height: 320px;
      position: absolute;
      top: 15px;
      left: 15px;
      border: 1px solid #D6D6D6;
      background-color: #fff;
      border-radius: 3px; }
    .b-num__img img {
      display: block;
      position: relative;
      z-index: 1;
      top: 15px;
      left: 15px; }
  .b-num__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1050px; }
  .b-num__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 500px;
    width: 100%; }

.more-link {
  display: inline-block;
  height: auto;
  min-height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  border: 1px solid #D6D6D6;
  border-radius: 2px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #4285F4;
  font-size: 14px; }
  .more-link b {
    color: #000; }
  .more-link:hover {
    border-color: #4285F4; }
  .more-link 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), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
      .more-link span:after {
        background-image: url("../images/sprites/sprite@2x.png");
        background-size: 223px 121px; } }

@media screen and (max-width: 1080px) {
  .page_second .logo,
  .page_about .logo,
  .page_simple .logo {
    margin-bottom: 0; }
  .page_second .header,
  .page_about .header,
  .page_simple .header {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .page_second .header__navbar,
    .page_about .header__navbar,
    .page_simple .header__navbar {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    .page_second .header__menu,
    .page_about .header__menu,
    .page_simple .header__menu {
      margin-right: 10px; }
      .page_second .header__menu a + a,
      .page_about .header__menu a + a,
      .page_simple .header__menu a + a {
        margin-left: 20px; }
  .page_second .container,
  .page_about .container,
  .page_simple .container {
    padding-left: 20px;
    padding-right: 20px; }
  .landings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .landing {
    margin-bottom: 30px;
    margin-right: 0; }
  .images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .image {
    margin-bottom: 30px;
    margin-right: 0; }
  .materials {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px; }
  .info__item {
    padding-left: 20px;
    padding-right: 20px; } }

@media screen and (max-width: 900px) {
  .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .info__item {
      border: none;
      width: 100%;
      border-bottom: 1px solid #D6D6D6;
      padding-left: 0;
      padding-right: 0; }
      .info__item:last-child {
        border-bottom: none; }
      .info__item_affiliate .col:first-child {
        margin-right: 0; }
      .info__item .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
    .info__link {
      margin-top: 10px; }
  .bform {
    padding-top: 40px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto; }
    .bform__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .bform__col {
      width: 100%;
      max-width: 300px;
      margin-right: 0; }
      .bform__col + .bform__col {
        margin-top: 15px; } }

@media screen and (max-width: 850px) {
  .store_cryptosearch span,
  .store_cryptotab span {
    display: none; } }

@media screen and (max-width: 800px) {
  .join {
    height: auto;
    padding-top: 90px;
    padding-bottom: 90px; }
    .join__content {
      max-width: none;
      text-align: center;
      margin-left: 0; }
      .join__content:before {
        display: none; }
    .join__icon {
      margin-left: auto;
      margin-right: auto; }
    .join__description {
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 50px; }
    .join .btn_download {
      margin-left: auto;
      margin-right: auto; }
  .b-num {
    padding-top: 50px;
    padding-bottom: 0; }
    .b-num__item {
      padding-top: 80px; }
    .b-num__title {
      font-size: 28px;
      line-height: 31px;
      margin-bottom: 20px; }
    .b-num__text {
      font-size: 15px;
      line-height: 20px; }
    .b-num__subtitle {
      font-size: 24px;
      line-height: 27px;
      text-align: left; }
    .b-num__body .b-num__text {
      text-align: left; }
    .b-num__btn {
      text-align: center; }
    .b-num__img {
      width: auto;
      height: auto;
      margin-right: 0;
      border: none;
      margin-bottom: 30px; }
      .b-num__img img {
        position: static;
        max-width: 100%;
        height: auto; }
      .b-num__img:after {
        display: none; }
    .b-num__row,
    .b-num__item:nth-child(even) .b-num__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center; }
    .b-num__item:nth-child(even) .b-num__img {
      margin-left: 0;
      margin-right: 0; }
    .b-num__item:nth-child(odd) .b-num__body {
      position: static; }
  .balance_l .balance__btc {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 15px; }
    .balance_l .balance__btc img {
      width: 40px;
      height: 40px;
      margin-right: 15px; }
  .store-links {
    max-width: 182px; }
    .store-links + span {
      display: block; }
  .page_generator .container__text {
    padding-left: 28px;
    padding-right: 28px; }
  .header__navbar {
    min-height: 57px; }
  .header .balance {
    display: none; }
  .footer {
    padding-top: 0;
    position: relative; }
    .footer__content {
      padding-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 40px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      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: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4; }
      .footer__btns .fb-like {
        margin-bottom: 0; }
    .footer__store-links {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      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 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 0; }
        .footer .menu__item_join span {
          display: block; }
    .footer__social-links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
      color: #757575;
      white-space: nowrap;
      font-size: 13px;
      line-height: 18px;
      margin-bottom: 12px; }
    .footer__menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      width: auto; }
  .select {
    max-width: 200px; }
  .bform .select {
    max-width: 100%; }
  .card__title {
    padding-left: 20px;
    padding-right: 20px; }
  .section_subid {
    padding-left: 20px;
    padding-right: 20px; }
  .subids__head {
    padding-left: 20px;
    padding-right: 20px; }
  .subids__link_main:before {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    left: -13px; }
  .subids__item {
    padding-left: 20px;
    padding-right: 20px; }
  .subids tbody td:first-child {
    width: auto; }
  .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__item {
    padding-top: 80px; }
  .why__img {
    width: auto;
    height: auto;
    margin-right: 0;
    border: none;
    margin-bottom: 30px; }
    .why__img img {
      position: static;
      max-width: 100%;
      height: auto; }
    .why__img:after {
      display: none; }
  .why__row,
  .why__item:nth-child(even) .why__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }
  .why__item:nth-child(even) .why__img {
    margin-left: 0;
    margin-right: 0; }
  .why__img_exp img {
    margin-right: 0; }
  .why__img_speed {
    padding-left: 0;
    padding-right: 0; }
  .why__item:nth-child(odd) .why__body {
    position: static; }
  .why__label {
    top: -25px;
    left: 127px; }
  .section_features {
    padding-top: 60px; }
  .first_invite .wrapper {
    padding-bottom: 50px; }
  .first_invite .img-8x {
    position: static;
    left: 0;
    bottom: 0;
    padding-bottom: 30px; }
    .first_invite .img-8x__os {
      position: static;
      margin-left: auto;
      margin-right: auto;
      margin-top: 30px; }
    .first_invite .img-8x img {
      max-width: 320px; }
  .btn_social {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    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%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-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_wa:before {
      width: 18px;
      height: 18px; }
    .btn_social_tg:before {
      width: 19px;
      height: 16px; }
    .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: .7; }
    .btn_social_vb:before {
      width: 21px;
      height: 22px; }
    .btn_social_wa:before {
      width: 20px;
      height: 20px; }
    .btn_social_th:before {
      width: 16px;
      height: 22px; }
    .btn_social_pt {
      background-size: 22px; }
    .btn_social_ln:before {
      width: 22px;
      height: 21px; }
    .btn_social_li:before {
      width: 22px;
      height: 22px; }
    .btn_social_flb:before {
      width: 22px;
      height: 22px; }
    .btn_social_rd:before {
      width: 24px;
      height: 22px; }
    .btn_social_ok:before {
      width: 14px;
      height: 24px; }
  .social-btns {
    max-width: 400px; }
    .social-btns .btn_social {
      margin-right: 5px; }
    .social-btns__more {
      width: 40px;
      height: 40px;
      border-radius: 20px;
      left: 0; }
    .social-btns__list {
      width: 130px; }
      .social-btns__list .btn_social {
        margin-right: 0; } }

@media screen and (max-width: 750px) {
  .section_additional-links .card__title {
    margin-bottom: 0; }
  .subids__head {
    display: none; }
  .subids__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
    padding-bottom: 20px; }
    .subids__item > div {
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;
      border: none; }
    .subids__item:first-child {
      border-top: none; }
    .subids__item:hover + .subids__item {
      border-top-color: #4285f4; }
    .subids__item:hover:last-child {
      border-bottom-color: #4285f4; }
    .subids__item:last-child {
      border-bottom: 1px solid #D6D6D6; }
      .subids__item:last-child > div {
        border: none; }
  .subids__people {
    margin-bottom: 10px; }
  .subids__comment {
    margin-bottom: 10px; }
  .subids__action {
    position: absolute;
    right: 20px;
    bottom: 20px; } }

@media screen and (max-width: 630px) {
  .referrals {
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 768px) {
  .mobile-only {
    display: block; }
  .page_second .container {
    min-height: 0;
    padding-top: 40px; }
  .page_second .header .logo,
  .page_payments .header .logo {
    margin-bottom: 0; }
  .page_second .scroll2top.show {
    display: none; }
  .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; }
  .btn_calc {
    height: auto;
    min-height: 50px;
    line-height: 50px;
    font-size: 16px;
    line-height: 18px;
    background-position: 47px center;
    padding-left: 72px;
    padding-right: 47px;
    padding-top: 17px;
    padding-bottom: 15px; }
  .input__tip {
    position: static;
    margin-top: 10px;
    margin-bottom: 10px; }
  .speedbox {
    margin: 30px auto 10px;
    height: 120px;
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden; }
    .speedbox.animated .speedbox-sm__score {
      -webkit-animation-duration: 2s;
      animation-duration: 2s;
      -webkit-animation-name: score_anim;
      animation-name: score_anim;
      -webkit-animation-iteration-count: 1;
      animation-iteration-count: 1; }
    .speedbox.animated .speedbox-sm__pointer {
      -webkit-animation-duration: 2s;
      animation-duration: 2s;
      -webkit-animation-name: pointer_anim;
      animation-name: pointer_anim;
      -webkit-animation-iteration-count: 1;
      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;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      left: 0;
      top: 0; }
    .speedbox__score {
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      height: 200px;
      width: 200px;
      background: transparent;
      border-radius: 50%;
      border: 10px solid #4285f4;
      border-color: transparent transparent #4285f4 #4285f4;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      z-index: 1;
      -webkit-transition: 1s ease-in;
      -o-transition: 1s ease-in;
      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%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
      .speedbox__odo i {
        font-size: 13px;
        opacity: .6; }
      .speedbox__odo > div {
        margin-bottom: 0; }
      .speedbox__odo span {
        font-size: .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;
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 1s ease-in;
      -o-transition: 1s ease-in;
      transition: 1s ease-in; }
    .speedbox + .referred {
      text-align: center;
      margin-bottom: 25px; }
  .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; }
  .burger {
    display: block; }
  .header {
    position: relative;
    padding-top: 0;
    padding-bottom: 0 !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px; }
    .header__navbar {
      position: absolute;
      width: 100%;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
      box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      background: #F7F7F7;
      top: 0;
      -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      transform: translateY(-100%);
      padding-left: 0 !important;
      padding-right: 0 !important; }
      .header__navbar.active {
        -webkit-transform: translateY(63px);
        -ms-transform: translateY(63px);
        transform: translateY(63px); }
      .header__navbar .store-links {
        display: none; }
      .header__navbar .lang {
        display: block; }
    .header__logo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding-top: 10px;
      padding-bottom: 10px;
      width: 100%;
      border-bottom: 1px solid #D6D6D6;
      background-color: #F7F7F7;
      z-index: 100; }
    .header__menu {
      display: block;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      width: 100%;
      margin-right: 0;
      padding-top: 20px;
      padding-bottom: 19px;
      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: -8px; }
    .header__lang {
      margin-right: 15px;
      margin-top: 13px;
      margin-bottom: 14px; }
    .header__socials {
      margin-right: 0;
      margin-left: 15px; }
      .header__socials span {
        display: block;
        margin-right: 10px; }
  .page_promo .header__navbar {
    display: block;
    text-align: center; }
  .page_promo .header__lang {
    margin-top: 10px; }
  .logo {
    height: 40px; }
  .page_second .logo,
  .page_about .logo,
  .page_simple .logo {
    margin-bottom: 0; }
  .page_simple .container {
    height: auto;
    min-height: 0;
    padding-top: 40px; }
  .logo svg {
    width: 168px;
    height: auto; }
  .container_promo .logo {
    margin-bottom: 0; }
  .btn_subid {
    height: auto;
    padding-bottom: 18px; }
  .first {
    min-height: 0; }
    .first .wrapper {
      padding-top: 30px;
      padding-left: 30px;
      padding-right: 30px; }
    .first .title {
      font-size: 36px;
      line-height: 38px;
      margin-bottom: 15px; }
    .first .btn {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
      max-width: 380px;
      font-weight: bold;
      height: auto;
      line-height: 17px;
      padding-top: 22px;
      padding-bottom: 21px; }
    .first .header .logo {
      margin-bottom: 0; }
    .first .header__lang {
      position: absolute;
      top: 67px;
      right: 20px;
      margin-right: 0; }
    .first__icon {
      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__screen .trust {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 0;
        text-align: center; }
      .first__screen .more-link {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1; }
    .first__group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .first__group .btn {
        margin-bottom: 15px; }
      .first__group .btn,
      .first__group .more-link {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto; }
      .first__group .btn_plus {
        display: none; }
    .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;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .first__screen-store .store-links .store_android {
          display: none; }
    .first_invite .header {
      border-bottom: 1px solid #757575; }
      .first_invite .header__menu {
        border-color: #757575; }
      .first_invite .header__lang {
        position: static;
        margin-right: 15px; }
  .logo img {
    width: 100%;
    height: 100%; }
  .title {
    font-size: 36px;
    line-height: 41px;
    margin-bottom: 15px; }
  .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; }
  .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; }
  .calculate {
    padding-top: 50px;
    padding-left: 38px;
    padding-right: 38px;
    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; }
  .btn_calc {
    height: auto;
    min-height: 50px;
    font-size: 16px;
    line-height: 17px;
    padding-left: 65px;
    padding-top: 17px;
    padding-bottom: 16px;
    padding-right: 40px;
    text-align: center; }
  .btn_calc:before {
    left: 45px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .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;
    -webkit-box-shadow: 0px 8px 1px -8px #eee;
    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 {
    margin-bottom: 50px; }
  .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; }
  .bucks {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    text-align: center; }
  .howto {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden; }
  .list__item {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px; }
  .section_promo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 40px;
    background-position: center bottom;
    padding-bottom: 137px; }
    .section_promo p {
      text-align: center;
      margin-right: 0;
      margin-bottom: 30px; }
  .section_personal-id {
    padding-left: 20px;
    padding-right: 20px; }
  .refurl {
    margin-bottom: 20px; }
    .refurl__value {
      height: 40px;
      padding-left: 10px;
      padding-right: 10px;
      width: calc(100% - 40px); }
    .refurl__link {
      font-size: 12px;
      margin-right: 10px;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .refurl__subid {
      font-size: 12px; }
    .refurl .btn {
      height: 40px;
      width: 40px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      line-height: 40px;
      font-size: 12px;
      min-width: 0;
      text-indent: -9999px;
      background-image: url("../images/clipboard-icon.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px; }
    .refurl .dropdown_subids {
      width: 100%;
      top: 38px;
      right: 0; }
  .dropdown_subids {
    max-width: none; }
  .subids tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px; }
  .subids tbody td {
    display: block;
    padding: 0; }
  .subids__link {
    font-size: 14px; }
  .subids__people {
    text-align: left; }
  .card__title .title {
    margin-bottom: 0;
    font-size: 28px; }
  .section_subid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative; }
    .section_subid .col {
      width: 100%; }
    .section_subid .col_subid {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .section_subid .col_subid .label {
        margin-bottom: 5px; }
      .section_subid .col_subid .select {
        margin-bottom: 10px;
        max-width: none; }
    .section_subid .btn_plus {
      position: absolute;
      right: 20px;
      bottom: 10px; }
  .referrals__label {
    font-size: 12px; }
  .referrals__total {
    font-size: 26px; }
    .referrals__total span:before {
      top: 1px; }
  .referrals__row_labels .referrals__label:nth-child(2) {
    padding-right: 10px; }
  .referrals__row_labels .referrals__label:last-child {
    padding-right: 0; }
  .level__title {
    font-size: 12px; }
  .level__value {
    font-size: 20px; }
    .level__value:last-child {
      padding-right: 0; }
    .level__value:nth-child(2) {
      padding-right: 10px;
      font-size: 16px; }
  .tooltip__text {
    width: 150px; }
  .section_additional-links .card__title .btn_subid {
    min-width: 0; }
  .resources {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .resources__item {
      margin-bottom: 30px;
      margin-right: 0; }
      .resources__item:last-child {
        margin-bottom: 0; }
  .section_traffic {
    padding-left: 20px;
    padding-right: 20px; }
    .section_traffic .btn_subid {
      min-width: 0; }
  .materials {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    background-image: url("../images/affiliate_cover_mobile.png");
    background-size: 400px 192px;
    background-position: bottom -3px center; } }
  @media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2/1), screen and (max-width: 768px) and (min-resolution: 192dpi) {
    .materials {
      background-image: url("../images/affiliate_cover_mobile@2x.png"); } }

@media screen and (max-width: 768px) {
    .materials .title {
      font-size: 28px;
      line-height: 31px; }
  .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; }
  .why {
    padding-top: 50px;
    padding-bottom: 50px; }
    .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__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; }
  .section.top {
    padding-top: 50px; }
    .section.top .title {
      font-size: 36px;
      line-height: 42px; }
    .section.top .description {
      font-size: 15px;
      line-height: 20px; }
    .section.top .desc_xl {
      font-size: 18px;
      line-height: 22px; }
    .section.top .content {
      padding-left: 20px;
      padding-right: 20px; }
    .section.top .why {
      margin-top: 0;
      padding-bottom: 0; }
      .section.top .why__item {
        padding-left: 20px;
        padding-right: 20px; }
        .section.top .why__item:last-child {
          margin-bottom: 0; }
        .section.top .why__item .subtitle {
          font-size: 24px;
          line-height: 27px; }
  .steps {
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 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; }
      .steps__text:before {
        content: counter(steps);
        -webkit-box-sizing: border-box;
        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; }
  .getaccess {
    padding-top: 50px;
    background-image: url("../images/affiliate_cover_mobile.png");
    background-size: 400px 192px;
    background-position: bottom -3px center; } }
  @media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2/1), 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; }
  .join {
    padding-top: 30px; }
    .join .btn_download {
      display: none; }
    .join .btn {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      max-width: 280px; }
  .join-title .wrapper {
    font-size: 32px;
    line-height: 38px; } }

@media screen and (max-width: 550px) {
  .referrals__col_earnings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .referrals__col_earnings .earnings {
      margin-top: 10px;
      margin-bottom: 10px; } }

@media screen and (max-width: 440px) {
  .btn_activate {
    min-width: 0; }
  .balance_l .balance__btc {
    font-size: 26px; }
    .balance_l .balance__btc img {
      width: 30px;
      height: 30px;
      margin-right: 10px; }
  .balance_sm {
    padding-left: 10px;
    padding-right: 10px; }
    .balance_sm .balance__btc {
      font-size: 14px; }
    .balance_sm .balance__usd {
      font-size: 9px; }
  .section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .section__header .label {
      margin-bottom: 10px; }
    .section__header .dropdown {
      left: 50%;
      margin-left: -110px; }
  .btn_withdraw {
    min-width: 0; }
  .section_additional-links .card__title .btn_subid {
    height: 40px;
    padding-top: 8px;
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px; }
    .section_additional-links .card__title .btn_subid i {
      width: 15px;
      height: 15px;
      background-size: 15px; } }

@media screen and (max-width: 380px) {
  .footer__logo {
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .footer__logo img {
    width: 190px;
    height: auto; }
  .landing {
    width: 280px;
    padding-top: 173px;
    margin-bottom: 30px; }
    .landing img {
      width: 280px;
      height: auto; }
    .landing:last-child {
      margin-bottom: 0; }
    .landing_with-border {
      padding-top: 0; }
      .landing_with-border img {
        position: static;
        width: 278px;
        height: auto; }
    .landing__url {
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
      .landing__url a {
        font-size: 16px; }
  .image img {
    max-width: 100%;
    height: auto; } }

@media screen and (max-width: 370px) {
  .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px; } }

@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; }
  .landing__link .btn_link {
    display: block;
    margin-bottom: 10px; }
    .landing__link .btn_link:last-child {
      margin-bottom: 0; }
    .landing__link .btn_link + .btn_link {
      margin-left: auto; } }

@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; } }

.page_ct-start {
  background-color: #000; }
  .page_ct-start .first:not(.first--ct-start) {
    background-color: #fff; }
  .page_ct-start .content {
    background-color: #fff; }
  .page_ct-start .btn {
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out; }
    .page_ct-start .btn i.plus {
      margin-top: -1px;
      position: relative;
      display: block;
      margin-right: 10px;
      width: 17px;
      height: 17px; }
      .page_ct-start .btn i.plus:after, .page_ct-start .btn i.plus:before {
        content: '';
        position: absolute;
        background-color: #fff; }
      .page_ct-start .btn i.plus:after {
        top: 0;
        left: 50%;
        margin-left: -1.5px;
        width: 3px;
        height: 100%; }
      .page_ct-start .btn i.plus:before {
        top: 50%;
        left: 0;
        margin-top: -1.5px;
        height: 3px;
        width: 100%; }
    .page_ct-start .btn--add {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      min-width: 300px; }
      @media (max-width: 600px) {
        .page_ct-start .btn--add {
          min-width: 280px; } }
      @media (max-width: 416px) {
        .page_ct-start .btn--add {
          width: 100%; } }
    .page_ct-start .btn--more {
      background-color: #fff;
      color: #000;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      line-height: normal;
      border: 1px solid #D6D6D6; }
      .page_ct-start .btn--more:after {
        content: '';
        display: block;
        width: 6px;
        height: 12px;
        margin-left: 10px;
        background-image: url(../images/icon-arrow-right.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 6px 12px; }
      .page_ct-start .btn--more:hover {
        border-color: #4285f4;
        color: #4285f4; }
      .page_ct-start .btn--more:active {
        border-color: #D6D6D6;
        color: #757575; }
  .page_ct-start .howto:before, .page_ct-start .howto:after {
    display: none; }
  .page_ct-start .section_features {
    padding-bottom: 91px;
    padding-top: 0; }
  .page_ct-start .first .header:last-child {
    margin-bottom: 0; }

@media (max-width: 1150px) {
  .header .logo img {
    max-width: 300px; } }

@media (max-width: 1000px) {
  .header .logo img {
    max-width: 200px; } }

@media (max-width: 910px) {
  .header .logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto; } }

@media (max-width: 768px) {
  .header .header__lang {
    position: static;
    display: block;
    margin-right: 15px; }
  .header .header__navbar {
    top: 100%;
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .header .header__navbar.active {
      -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
      transform: translateY(0%); } }

.first--ct-start {
  position: relative;
  background-color: #000;
  color: #fff;
  height: 100vh;
  max-height: 1000px;
  min-height: 700px;
  overflow-x: hidden; }
  .first--ct-start:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/back.jpg);
    background-size: cover;
    background-position: left center;
    opacity: .6; }
  @media (max-width: 900px) {
    .first--ct-start {
      max-height: 100%;
      min-height: 0;
      height: auto; } }
  .first--ct-start > * {
    z-index: 3; }
  .first--ct-start .header {
    z-index: 9; }
    .first--ct-start .header__logo img {
      vertical-align: top; }
    @media (max-width: 768px) {
      .first--ct-start .header__logo {
        background-color: rgba(0, 0, 0, 0.3);
        -webkit-transition: background-color .3s .15s;
        -o-transition: background-color .3s .15s;
        transition: background-color .3s .15s; }
      .first--ct-start .header .burger.active + .header__logo {
        background-color: #000;
        -webkit-transition: background-color .3s 0s;
        -o-transition: background-color .3s 0s;
        transition: background-color .3s 0s; } }
  .first--ct-start .container {
    position: relative;
    width: 100%;
    max-width: 1380px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 0; }
    @media (max-width: 900px) {
      .first--ct-start .container {
        padding-bottom: 40px;
        text-align: center; } }
    @media (max-width: 800px) {
      .first--ct-start .container {
        padding-left: 20px;
        padding-right: 20px; } }
  .first--ct-start .screen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 50%;
    height: 0;
    left: 800px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
    .first--ct-start .screen img {
      vertical-align: top; }
    @media (max-width: 900px) {
      .first--ct-start .screen {
        display: none; } }
    @media (max-width: 767px) {
      .first--ct-start .screen {
        position: static;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 20px; }
        .first--ct-start .screen img {
          max-width: 100%; } }
  .first--ct-start .info {
    display: block;
    max-width: 750px;
    border: none; }
    @media (max-width: 900px) {
      .first--ct-start .info {
        margin: 0 auto; } }
    .first--ct-start .info .title {
      font-weight: bold;
      font-size: 64px;
      line-height: 80px;
      margin-bottom: 15px; }
      @media (max-width: 767px) {
        .first--ct-start .info .title {
          font-size: 36px;
          line-height: 38px; } }
    .first--ct-start .info .desc {
      color: #D6D6D6;
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 50px; }
      .first--ct-start .info .desc a {
        color: #F7931A; }
    .first--ct-start .info .buttons {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media (max-width: 768px) {
        .first--ct-start .info .buttons {
          width: 100%; } }
    .first--ct-start .info .btn {
      text-align: center;
      margin-right: 20px; }
      .first--ct-start .info .btn--chrome {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: left;
        position: relative;
        background-color: #fff;
        min-width: 200px;
        padding-left: 53px;
        color: #000;
        font-weight: bold;
        font-size: 14px;
        line-height: 16px;
        text-transform: none;
        -webkit-transition: background-color .2s, color .2s;
        -o-transition: background-color .2s, color .2s;
        transition: background-color .2s, color .2s; }
        .first--ct-start .info .btn--chrome span {
          display: block;
          color: #757575;
          font-size: 11px;
          line-height: 12px;
          margin-bottom: 1px;
          -webkit-transition: color .2s;
          -o-transition: color .2s;
          transition: color .2s; }
        .first--ct-start .info .btn--chrome i {
          position: absolute;
          top: 50%;
          left: 20px;
          margin-top: -12px;
          display: block;
          background-repeat: no-repeat;
          background-position: center center;
          background-image: url(../images/browser-icon_chrome.png);
          background-size: 24px 24px;
          width: 24px;
          height: 24px; }
        .first--ct-start .info .btn--chrome:hover span {
          color: #4285f4; }
        .first--ct-start .info .btn--chrome:active {
          background-color: #F7F7F7;
          color: #494949; }
          .first--ct-start .info .btn--chrome:active span {
            color: #757575; }
      @media (max-width: 768px) {
        .first--ct-start .info .btn {
          margin: 0 auto; }
          .first--ct-start .info .btn--chrome {
            display: none; } }
  .first--ct-start .scroll-line {
    margin-top: 20px;
    height: 73px;
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .first--ct-start .scroll-line-btn {
      cursor: pointer;
      display: block;
      width: 41px;
      height: 33px;
      background-image: url(../images/scroll-icon.svg);
      background-size: 41px 33px; }

.add-to {
  padding-top: 100px;
  background-color: #fff;
  text-align: center;
  padding-bottom: 100px;
  overflow: hidden; }
  @media (max-width: 767px) {
    .add-to {
      padding-top: 50px;
      padding-bottom: 60px; } }
  .add-to .container {
    max-width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    min-height: 0; }
  .add-to .title {
    font-size: 28px;
    line-height: 31px;
    letter-spacing: 0.34px;
    font-weight: normal;
    margin-bottom: 40px; }
    .add-to .title b {
      font-weight: bold; }
  .add-to .man {
    display: none;
    padding-top: 30px;
    text-align: left;
    margin-bottom: -100px; }
    .add-to .man img {
      max-width: 550px;
      vertical-align: top; }

.container--center {
  margin: 0 auto;
  display: block;
  max-width: 840px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 85px; }
  .container--center h1 {
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 20px; }
    @media only screen and (max-width: 768px) {
      .container--center h1 {
        font-size: 34px;
        line-height: 44px; } }
  .container--center 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--center p {
      font-size: 14px;
      line-height: 20px; } }
  .container--center ol + h2,
  .container--center ul + h2,
  .container--center p + h2 {
    margin-top: 45px; }
  .container--center h2 {
    display: block;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15px;
    color: #1f232c; }
  @media only screen and (max-width: 768px) {
    .container--center h2 {
      font-size: 18px;
      line-height: 20px;
      margin-bottom: 15px; } }
  .container--center p a,
  .container--center .questions a,
  .container--center .steps a {
    color: #4285f4;
    text-decoration: none; }
  .container--center p a:hover,
  .container--center .questions a:hover,
  .container--center .steps a:hover {
    color: #f7931a; }
  .container--center strong,
  .container--center b {
    font-weight: bold; }
  .container--center ul {
    color: #494952;
    margin-bottom: 20px;
    list-style-type: circle;
    list-style-position: outside;
    padding-left: 20px; }
  .container--center li {
    margin-bottom: 10px;
    line-height: 24px; }

.features-present {
  padding-top: 115px;
  background-color: #fff;
  overflow-x: hidden;
  padding-left: 20px;
  padding-right: 20px; }
  @media (max-width: 767px) {
    .features-present {
      padding-top: 50px; } }
  .features-present__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto 110px; }
    @media (max-width: 1000px) {
      .features-present__row {
        display: block; } }
    @media (max-width: 767px) {
      .features-present__row {
        margin-bottom: 50px; } }
    .features-present__row--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
      .features-present__row--reverse .features-present__screen {
        margin-left: 70px;
        margin-right: -190px; }
        @media (max-width: 1200px) {
          .features-present__row--reverse .features-present__screen {
            margin-right: -100px;
            margin-left: 50px; } }
        @media (max-width: 1000px) {
          .features-present__row--reverse .features-present__screen {
            margin: 0 auto 40px; } }
        @media (max-width: 767px) {
          .features-present__row--reverse .features-present__screen {
            margin-bottom: 10px; } }
        @media (max-width: 520px) {
          .features-present__row--reverse .features-present__screen {
            margin-left: -10px;
            margin-right: -10px; } }
  .features-present__screen {
    margin-left: -190px;
    margin-right: 70px; }
    @media (max-width: 1200px) {
      .features-present__screen {
        margin-left: -100px;
        margin-right: 50px; } }
    @media (max-width: 1000px) {
      .features-present__screen {
        margin: 0 auto 20px;
        max-width: 600px; }
        .features-present__screen img {
          max-width: 100%; } }
    @media (max-width: 767px) {
      .features-present__screen {
        margin-bottom: 10px;
        max-width: 500px; } }
    @media (max-width: 520px) {
      .features-present__screen {
        margin-left: -10px;
        margin-right: -10px; } }
  .features-present__content {
    max-width: 540px;
    width: 100%; }
    .features-present__content .title {
      font-size: 40px;
      line-height: 56px;
      margin-bottom: 10px; }
    .features-present__content p {
      font-size: 18px;
      line-height: 26px;
      color: #494949; }
      .features-present__content p a {
        color: #4285f4;
        text-decoration: none;
        -webkit-transition: color .3s;
        -o-transition: color .3s;
        transition: color .3s; }
        .features-present__content p a:hover {
          color: #F7931A; }
    @media (max-width: 1200px) {
      .features-present__content {
        max-width: 460px; }
        .features-present__content .title {
          font-size: 34px;
          line-height: 44px;
          margin-bottom: 20px; } }
    @media (max-width: 1000px) {
      .features-present__content {
        margin: 0 auto; } }
    @media (max-width: 767px) {
      .features-present__content .title {
        font-weight: 400;
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 10px; }
      .features-present__content p {
        font-size: 15px;
        line-height: 20px; } }
  .features-present__bottom {
    font-size: 18px;
    line-height: 20px;
    color: #F7931A;
    text-align: center; }

.about-browser {
  border-top: 1px dashed #D6D6D6;
  padding-top: 109px;
  padding-bottom: 81px;
  min-height: 450px;
  overflow-x: hidden;
  background-color: #fff; }
  @media (max-width: 767px) {
    .about-browser {
      min-height: 0; } }
  .about-browser .container {
    position: relative;
    width: 100%;
    max-width: 1120px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 0;
    margin: 0 auto; }
    @media (max-width: 900px) {
      .about-browser .container {
        text-align: center; } }
  .about-browser .screen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 50%;
    height: 0;
    left: 720px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
    .about-browser .screen img {
      vertical-align: top; }
    @media (max-width: 900px) {
      .about-browser .screen {
        position: static;
        height: auto;
        max-width: 450px;
        margin: 0 auto 40px; }
        .about-browser .screen img {
          max-width: 100%; } }
  .about-browser .info {
    display: block;
    max-width: 700px;
    border: none; }
    @media (max-width: 900px) {
      .about-browser .info {
        margin: 0 auto; }
        .about-browser .info .gif-coin {
          display: none; } }
    .about-browser .info .gif-coin {
      max-width: 90px;
      margin-bottom: 30px;
      vertical-align: top; }
    .about-browser .info .title {
      font-size: 48px;
      line-height: 53px;
      margin-bottom: 20px;
      font-weight: normal; }
      @media (max-width: 767px) {
        .about-browser .info .title {
          font-size: 30px;
          line-height: 34px; } }
    .about-browser .info .desc {
      color: #494949;
      font-size: 20px;
      line-height: 30px;
      margin-bottom: 50px;
      max-width: 700px; }
      .about-browser .info .desc a {
        color: #F7931A; }
      @media (max-width: 900px) {
        .about-browser .info .desc {
          margin-left: auto;
          margin-right: auto; } }
      @media (max-width: 768px) {
        .about-browser .info .desc {
          font-size: 18px;
          line-height: 26px; } }
    .about-browser .info .buttons {
      max-width: 500px; }
      @media (max-width: 900px) {
        .about-browser .info .buttons {
          margin: 0 auto;
          text-align: center; } }
      @media (max-width: 768px) {
        .about-browser .info .buttons {
          width: 100%; } }
    .about-browser .info .btn {
      text-align: center;
      margin-bottom: 20px;
      min-width: 300px; }
      @media (max-width: 600px) {
        .about-browser .info .btn {
          min-width: 280px; } }
      @media (max-width: 416px) {
        .about-browser .info .btn {
          width: 100%; } }

.how-remove h1 {
  margin-bottom: 30px; }

.how-remove__row {
  margin-bottom: 50px; }
  .how-remove__row:last-child {
    margin-bottom: 0; }
  @media (max-width: 850px) {
    .how-remove__row {
      margin-bottom: 100px; } }

.how-remove__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #F7931A;
  font-size: 14px;
  line-height: 1;
  color: #F7931A;
  margin-bottom: 10px;
  font-weight: bold; }
  @media (max-width: 850px) {
    .how-remove__num {
      font-weight: bold; } }

.how-remove p, .how-remove__desc {
  font-size: 16px;
  line-height: 24px;
  color: #494949;
  margin-bottom: 20px; }
  @media (max-width: 850px) {
    .how-remove p, .how-remove__desc {
      font-size: 16px;
      line-height: 24px; } }

.how-remove__screens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 850px) {
    .how-remove__screens {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .how-remove__screens img {
        max-width: 100%; } }

.how-remove__arrow {
  margin-right: 20px;
  margin-left: -30px; }
  @media (max-width: 850px) {
    .how-remove__arrow {
      margin: 0px 0 30px;
      -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
      transform-origin: center center;
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); } }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0; }

.welcome-card-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  min-height: 620px;
  height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 100;
  background-color: #F0F0F0; }

.welcome-card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  z-index: 200; }
  .welcome-card-wrapper .welcome-card {
    display: block;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 35px;
    padding-bottom: 30px;
    width: 100%;
    margin-bottom: 80px; }
    .welcome-card-wrapper .welcome-card .welcome-card__body {
      padding-bottom: 30px; }
    .welcome-card-wrapper .welcome-card .welcome-card__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      @media only screen and (max-width: 570px) {
        .welcome-card-wrapper .welcome-card .welcome-card__footer {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; } }
    .welcome-card-wrapper .welcome-card .welcome-card__footer-right-side {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      @media only screen and (max-width: 570px) {
        .welcome-card-wrapper .welcome-card .welcome-card__footer-right-side {
          margin-top: 30px; } }
      @media only screen and (max-width: 430px) {
        .welcome-card-wrapper .welcome-card .welcome-card__footer-right-side {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
      .welcome-card-wrapper .welcome-card .welcome-card__footer-right-side .btn {
        margin-left: 20px; }
        @media only screen and (max-width: 430px) {
          .welcome-card-wrapper .welcome-card .welcome-card__footer-right-side .btn {
            margin-left: 0;
            margin-top: 30px; } }
  .welcome-card-wrapper .description {
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #494949;
    margin-bottom: 30px; }
    .welcome-card-wrapper .description strong {
      font-weight: bold; }
  .welcome-card-wrapper .title {
    display: block;
    font-size: 36px;
    line-height: 41px;
    color: #000;
    font-weight: 300;
    margin: 0 0 38px; }
    .welcome-card-wrapper .title:before {
      content: '';
      display: block;
      width: 48px;
      height: 48px;
      float: left;
      margin-right: 12px;
      background-image: url("../images/icon-btc.png");
      background-repeat: no-repeat;
      background-position: left center;
      background-size: 48px; }
      @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
        .welcome-card-wrapper .title:before {
          background-image: url("../images/icon-btc@2x.png"); } }
    .welcome-card-wrapper .title b {
      font-weight: bold; }
  .welcome-card-wrapper .link {
    color: #18b8dd;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .welcome-card-wrapper .link:hover {
      color: #19A15F; }
  .welcome-card-wrapper .message {
    display: block;
    padding-right: 20px;
    padding-left: 44px;
    border: 1px solid #F7931A;
    color: #F7931A;
    border-radius: 3px;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    position: relative; }
    .welcome-card-wrapper .message p {
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100%;
      border-left: 1px solid #F7931A;
      padding-left: 15px;
      padding-top: 13px;
      padding-bottom: 13px; }
    .welcome-card-wrapper .message:before {
      display: block;
      content: '';
      background-image: url("../images/icon-inform.svg");
      background-size: 14px 14px;
      background-position: center center;
      background-repeat: no-repeat;
      width: 14px;
      height: 14px;
      position: absolute;
      top: 15px;
      left: 15px; }
  .welcome-card-wrapper .progress-bar {
    display: block;
    width: 100%;
    height: 25px;
    background-color: #EBEBEB;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    margin-bottom: 30px;
    position: relative; }
    .welcome-card-wrapper .progress-bar__indicator {
      display: block;
      height: 25px;
      position: absolute;
      left: -1px;
      top: -1px;
      border-radius: 3px 0 0 3px;
      background-color: #1FDC2B;
      -webkit-animation-name: progressBar;
      animation-name: progressBar;
      -webkit-animation-duration: 3s;
      animation-duration: 3s;
      -webkit-transition: background-color 1s;
      -o-transition: background-color 1s;
      transition: background-color 1s; }
      .welcome-card-wrapper .progress-bar__indicator.low {
        background-color: #FF1F39; }
    .welcome-card-wrapper .progress-bar__value {
      font-weight: 700;
      font-size: 16px;
      line-height: 25px;
      color: #fff;
      padding-left: 10px; }
  .welcome-card-wrapper .store {
    display: block;
    width: 160px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif; }
    .welcome-card-wrapper .store:before {
      content: '';
      display: block;
      float: left;
      margin-top: 4px;
      margin-right: 7px;
      background-repeat: no-repeat;
      background-position: center center;
      background-image: url("../images/browser-icon_chrome.png");
      background-size: 24px 24px;
      width: 24px;
      height: 24px; }
    .welcome-card-wrapper .store__first-line {
      display: block;
      font-size: 12px;
      line-height: 14px;
      color: #757575; }
    .welcome-card-wrapper .store__second-line {
      display: block;
      font-size: 14px;
      line-height: 16px;
      color: #494949;
      font-weight: bold; }
  .welcome-card-wrapper .btn {
    display: block;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    font-size: 15px;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif; }
    .welcome-card-wrapper .btn_primary {
      position: relative;
      text-align: left;
      padding-left: 52px;
      min-width: 210px;
      background-color: #4285F4;
      color: #fff;
      font-weight: bold;
      -webkit-animation-name: blink;
      animation-name: blink;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-timing-function: linear;
      animation-timing-function: linear;
      -webkit-animation-duration: 2s;
      animation-duration: 2s; }
      .welcome-card-wrapper .btn_primary:before {
        content: '';
        display: block;
        position: absolute;
        left: 28px;
        top: 50%;
        margin-top: -7px;
        background-image: url("../images/icon-plus.svg");
        background-size: 14px 14px;
        background-repeat: no-repeat;
        background-position: center center;
        width: 14px;
        height: 14px; }
      .welcome-card-wrapper .btn_primary:hover {
        background-color: #000;
        -webkit-animation: none;
        animation: none; }
      .welcome-card-wrapper .btn_primary:active {
        background-color: #D6D6D6; }
    .welcome-card-wrapper .btn_default {
      min-width: 120px;
      background-color: #fff;
      color: #494949;
      font-weight: normal;
      border: 1px solid #CACACA;
      text-transform: none; }
      .welcome-card-wrapper .btn_default:hover {
        border-color: #4285F4;
        color: #4285F4; }
      .welcome-card-wrapper .btn_default:active {
        border-color: #EDEDED;
        background-color: #EDEDED;
        color: #757575; }

@-webkit-keyframes progressBar {
  0% {
    width: 0%; } }

@keyframes progressBar {
  0% {
    width: 0%; } }

@-webkit-keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    opacity: 1; } }

@keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    opacity: 1; } }

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

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

.header__socials .social-links {
  margin-left: 10px; }
  .header__socials .social-links a + a {
    margin-left: 20px; }
  .header__socials .social-links a:hover svg #getcryptotab--chat-icons {
    fill: #F7931A; }

.header__socials .social-link_fb i {
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACNUExURQAAAEhfpkdfpf///0hfpkhgpUlfpUdfpkplqEhfpmZ5tLa/2190sejr9L/H35qnzcfO452qz/7+/vz8/Vhurff4+4mYxeXp8s/V50pipn2Ov22AuLzF3uzv9uLl8Kiz1HqMvoGRwU5lqH+PwIiYxdDW6GF2srjB3Pb3+m2At6Cs0MjP5HaIvNne7PX2+lIooDUAAAAKdFJOUwCj///2olv+JtlMX+NIAAAAxElEQVQ4y+XUSRLCIBAF0BaCBIU4JM7zPHv/40k6CzV0Ais3/hWEV1QXVfkAEAslWUWkEjHYNCNWm6hp7/EYq2JoMG8EKD9SQM88uQw7eWY4PZBmM+JFergl0b7PvSgbcD9a8QC0xPP0kCTJrgptcaL0/v5CoCNeNGa1qIUo+QXKtNZrRDedh0Rd/pVnCHqEoHkIupLoZIxZ4PnZrszU8wTtkHf6IyT9SBK/uYMUURgOEkT1lJGtHrfESigvMbcOP1FRhy/xWRHJ/IB+pAAAAABJRU5ErkJggg==");
  background-size: 18px;
  position: relative;
  top: -1px; }

.header__socials .social-link_fb:hover i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACNUExURQAAAMmGP/eTGv////iUGsiGP7R/UOGNLfKSH6h8W/ilQPvUpPihOP7x4/zZr/rEgvzeufrFhf7+/v79+/edL/758/759Pzjw/m5bPvMk/iiO/mzXvm0YPzeuvipSv769vipSfm5a/m1YvrHifmuVf3o0PeVHv3u2/mxWveXI/zjxf706PvVpv3w3/zYrEoIJrkAAAAKdFJOUwDd///+3ZX5/kZZY0AOAAAAxElEQVQ4y+XUxxLCIBAG4JUiiUIsib337vs/nmRzUMMmcPLif4LwDbPDTH4AiKUSrCJCyRhsmhGrTdS093iMVTE0mDcSlB8poGc+rsedPEucHkizffAiPdySaNPnXpStuB9NeAA64Xl6TZJkXoUuOFG6f38h0BQvGrFa1EKU/AJlWuszooXOQ6Iu/8ogBB1C0DME7Uh0N8bc8HxoV2bmeYJ2yDv9ERJ+JIjf3EGKKAwHSaJ6yshWj1tiJZSXmFuHn6iowxcinBHJ5VbkBAAAAABJRU5ErkJggg=="); }

.header__socials .social-link_fb svg {
  display: none; }

.header__socials .social-link_telegram svg #getcryptotab--chat-icons {
  fill: #31A5E0; }

.header__socials .social-link_vk {
  display: none; }
  .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; } }

.page_webversion .social-link_instagram:not(:hover) svg #instagram_up,
.page_ct-start .social-link_instagram:not(:hover) svg #instagram_up {
  fill: #fff; }

.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; } }

.uninstall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  margin-bottom: 75px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }
  .uninstall__icon {
    display: block;
    margin-bottom: 30px; }
    .uninstall__icon img {
      display: block;
      margin-left: auto;
      margin-right: auto; }
  .uninstall__title {
    display: block;
    font-size: 48px;
    line-height: 53px;
    color: #1F232C;
    margin-bottom: 20px; }
  .uninstall__text {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #494949; }
    .uninstall__text a {
      text-decoration: none;
      color: #4285F4; }
      .uninstall__text a:hover {
        color: #F7931A; }

.sad-man {
  display: block; }
  .sad-man img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto; }

.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; }

._ct-browser .about-browser,
._ct-browser .section_features,
._ct-browser .howto {
  display: none; }

._ct-browser .add-to .man {
  display: block; }

.page_uninstall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 80px;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px; }
