* {
  margin: 0;
  padding: 0;
  font: inherit;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-focus-ring-color: rgba(255,255,255,0);
  cursor: default;
}
body {
  font-size: 100%;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
a {
  background: transparent;
}
*:focus,
*:active,
*:hover {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
}
ol,
ul {
  list-style: none;
}
pre {
  -moz-tab-size: 4;
       tab-size: 4;
  white-space: pre-wrap;
}
q {
  quotes: '\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'] {
  box-sizing: border-box;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}
input[type='search'] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: none;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
button,
input,
select[multiple],
textarea {
  background-image: none;
}
input,
select,
textarea {
  border-radius: 0;
  box-shadow: none;
}
input,
textarea {
  resize: none;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}
[placeholder]:focus::-moz-placeholder {
  color: transparent;
}
[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}
[placeholder]:focus::placeholder {
  color: transparent;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
}
::-moz-selection {
  background-color: #36b118;
  color: #fff;
}
::selection {
  background-color: #36b118;
  color: #fff;
}
.alert {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  height: 80px;
  position: fixed;
  top: -80px;
  left: 0;
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
}
.alert_success {
  background-color: rgba(106,183,0,0.8);
}
.alert_error {
  background-color: rgba(223,74,50,0.8);
}
.alert.active {
  top: 0;
}
.btn-wrapper {
  display: block;
  text-align: center;
}
.btn {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  background-color: #36b118;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 70px;
  padding-right: 30px;
  transition: 0.3s;
}
.btn:hover {
  background-color: #3e82f7;
}
.btn:active {
  background-color: #7b7c82;
  color: rgba(255,255,255,0.5);
}
.btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-10px);
  left: 20px;
  background-image: url("../images/sprites/icons.png");
  background-position: -64px 0px;
  transition: 0.3s;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn::before {
    background-image: url("../images/sprites/icons@2x.png");
    background-size: 84px 77px;
  }
}
.btn:active::before {
  opacity: 0.5;
}
.btn strong {
  font-weight: bold;
}
@media only screen and (max-width: 660px) {
    .btn {
        padding-left: 50px;
    }
    .btn::before {
        left: 15px;
    }
}
.btn_default {
  width: 220px;
  height: 50px;
  text-align: center;
  padding: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 50px;
  background-color: #3e82f7;
  border: none;
  border-radius: 2px;
}
.btn_default:hover {
  background-color: #27bd82;
}
.btn_default::before {
  display: none;
}
.btn_default:active {
  background-color: #7b7c82;
  color: rgba(255,255,255,0.5);
}
.btn_social {
  display: block;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  width: 202px;
  text-align: left;
  border-radius: 3px;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
}
@media only screen and (max-width: 870px) {
  .btn_social {
    margin-bottom: 14px;
  }
}
.btn_social:last-child {
  margin-right: 0;
}
.btn_social:before {
  content: '';
  display: block;
}
.btn_social:active {
  color: rgba(255,255,255,0.7);
}
.btn_social_fb {
  background-color: #4861a3;
  padding-left: 74px;
}
.btn_social_fb:before {
  background-image: url("../images/sprites/icons.png");
  background-position: 0px -53px;
  width: 13px;
  height: 24px;
  top: 10px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_social_fb:before {
    background-image: url("../images/sprites/icons@2x.png");
    background-size: 84px 77px;
  }
}
.btn_social_fb:hover {
  background-color: #4868bd;
}
.btn_social_fb:active {
  background-color: #3b5088;
}
.btn_social_tw {
  background-color: #1da1f2;
  padding-left: 85px;
}
.btn_social_tw:before {
  background-image: url("../images/sprites/icons.png");
  background-position: 0px -26px;
  width: 23px;
  height: 19px;
  top: 13px;
  left: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_social_tw:before {
    background-image: url("../images/sprites/icons@2x.png");
    background-size: 84px 77px;
  }
}
.btn_social_tw:hover {
  background-color: #31b1ff;
}
.btn_social_tw:active {
  background-color: #1d87c8;
}
.btn_social_google {
  background-color: #dd5044;
  padding-left: 84px;
}
.btn_social_google:before {
  background-image: url("../images/sprites/icons.png");
  background-position: 0px 0px;
  width: 28px;
  height: 18px;
  top: 13px;
  left: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_social_google:before {
    background-image: url("../images/sprites/icons@2x.png");
    background-size: 84px 77px;
  }
}
.btn_social_google:hover {
  background-color: #f06154;
}
.btn_social_google:active {
  background-color: #c44a3f;
}
.btn_social_email {
  background-color: #27bd82;
  padding-left: 87px;
}
.btn_social_email:before {
  background-image: url("../images/sprites/icons.png");
  background-position: -36px 0px;
  width: 20px;
  height: 20px;
  top: 13px;
  left: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn_social_email:before {
    background-image: url("../images/sprites/icons@2x.png");
    background-size: 84px 77px;
  }
}
.btn_social_email:hover {
  background-color: #33d495;
}
.btn_social_email:active {
  background-color: #229467;
}
.btn_simple {
    height: auto;
    padding-left: 25px;
    padding-right: 25px;
    border: 1px solid #3E82F7;
    border-radius: 2px;
    padding-top: 15px;
    padding-bottom: 16px;
    font-size: 16px;
    line-height: 17px;
    color: #3E82F7;
    background-color: #fff;
    margin-left: 0;
    margin-right: 0;
}
.btn_simple::before {
    display: none;
}
.btn_simple strong {
    font-weight: bold;
}
.btn_simple:hover {
    background-color: #3E82F7;
    color: #fff;
}
.btn_simple:active {
    background-color: #D0D0D0;
    color: #fff;
    border-color: #D0D0D0;
}
.card {
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.5);
  border-radius: 4px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.card__title {
  font-size: 34px;
  line-height: 38px;
  color: #323232;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.card__desc {
  display: block;
  color: #7b8287;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.card_status {
  display: none;
  background-image: url("../images/popup_money_01@2x.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 289px;
  background-size: 600px 259px;
}
.checkbox {
  display: block;
}
.countdown {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  font-size: 14px;
  line-height: 16px;
  margin-top: 8px;
  max-width: 400px;
}
@media only screen and (max-width: 840px) {
  .countdown {
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin-top: 15px;
  }
}
.countdown__label {
  font-weight: bold;
}
.description {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #7b7c82;
}
.error {
  display: block;
  padding-left: 60px;
  font-size: 18px;
  line-height: 20px;
  color: #323232;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 44px 38px;
  background-image: url("../images/error.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .error {
    background-image: url("../images/error@2x.png");
  }
}
.first {
  display: block;
  width: 100%;
  height: 800px;
  background-image: url("../images/back_first.jpg");
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 660px) {
  .first {
    height: 350px;
    background-image: none;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }
}
.first__screen {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 660px) {
  .first__screen {
    display: none;
  }
}
.footer {
  display: block;
  width: 100%;
  height: auto;
  background-color: #000;
}
.footer__left-side {
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 850px) {
  .footer__left-side {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 660px) {
  .footer__left-side {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
  }
}
.footer__right-side {
  padding-right: 260px;
}
@media only screen and (max-width: 1100px) {
  .footer__right-side {
    padding-right: 0;
  }
}
.footer__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  height: 90px;
  max-width: 1280px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 850px) {
  .footer__body {
    -ms-flex-direction: column;
        flex-direction: column;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__copyright {
  color: #777;
  font-size: 14px;
}
@media only screen and (max-width: 660px) {
  .footer__copyright {
    margin-bottom: 30px;
  }
}
.footer__screen {
  display: block;
  position: absolute;
  bottom: 0;
  right: 50px;
}
@media only screen and (max-width: 1100px) {
  .footer__screen {
    display: none;
  }
}
.form {
  display: block;
}
.form__row {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -ms-flex-align: center;
      align-items: center;
}
.form__row:last-child {
  margin-bottom: 0;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.form__row:last-child .form__col {
  text-align: right;
}
.form__row_no-radio {
  padding-left: 30px;
}
.form__col {
  display: block;
  width: 100%;
}
.form__col + .form__col {
  margin-left: 20px;
}
.form__label-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 8px;
  padding-left: 30px;
}
.form__error {
  display: none;
  font-size: 14px;
  line-height: 16px;
  color: #f41400;
}
.form__error.show {
  display: block;
}
.form__label {
  display: block;
  color: #323232;
  line-height: 12px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.form input[type='text'],
.form input[type='email'],
.form input[type='url'] {
  display: block;
  height: 44px;
  border: 1px solid #d0d0d0;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
.form input[type='text']:focus,
.form input[type='email']:focus,
.form input[type='url']:focus {
  border-color: #3e82f7;
}
.form input[type='text'].error,
.form input[type='email'].error,
.form input[type='url'].error {
  border-color: #df4a32;
  background-image: none;
}
.form_insidecard input[type='text'],
.form_insidecard input[type='email'],
.form_insidecard input[type='url'] {
  height: 40px;
  border-radius: 3px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
}
.form_insidecard .form__label {
  text-transform: none;
  font-size: 14px;
  text-align: left;
  margin-bottom: 0;
  line-height: 16px;
}
.form textarea {
  border: 1px solid #d0d0d0;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 84px;
  width: 100%;
}
.form textarea:focus {
  border-color: #3e82f7;
}
.form textarea.error {
  border-color: #df4a32;
  background-image: none;
}
.form fieldset {
  border: none;
  border-top: 1px solid #d0d0d0;
  padding-left: 85px;
  padding-right: 85px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.form fieldset:first-child {
  padding-top: 30px;
}
@media only screen and (max-width: 600px) {
  .form fieldset {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.form__desc {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
}
.form input[type='submit']:not(.btn_default) {
  display: inline-block;
  width: auto;
  height: 44px;
  min-width: 150px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 44px;
  text-transform: uppercase;
  border: none;
  background-color: #3e82f7;
  transition: 0.3s;
  margin-top: 10px;
}
.form input[type='submit']:not(.btn_default):hover {
  background-color: #3b99fc;
}
.form input[type='submit']:not(.btn_default):active,
.form input[type='submit']:not(.btn_default):disabled {
  background-color: #7b8287;
  color: rgba(255,255,255,0.5);
}
.header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 60px;
  max-width: 1280px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
.header__title {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 36px;
  color: #fff;
  max-width: 400px;
  text-align: center;
}
.header__title:before,
.header__title:after {
  content: '';
  display: block;
  width: 2px;
  height: 30px;
  position: absolute;
  background-color: #fff;
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
}
.header__title:before {
  left: 0;
}
.header__title:after {
  right: 0;
}
@media only screen and (max-width: 1040px) {
  .header__title {
    display: none;
  }
}
@media only screen and (max-width: 660px) {
  .header {
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 550px) {
  .header .store {
    display: none;
  }
}
.info {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #323232;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  background-image: url("../images/info.png");
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 36px;
  background-size: 20px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .info {
    background-image: url("../images/info@2x.png");
  }
}
.info strong {
  font-weight: bold;
}
@media only screen and (max-width: 840px) {
  .info {
    max-width: 610px;
  }
}
.input {
  display: block;
  height: 44px;
  border: 1px solid #d0d0d0;
  padding-left: 10px;
  padding-right: 10px;
}
.input:focus {
  border-color: #3e82f7;
}
.instructions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  counter-reset: instr;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 760px) {
  .instructions {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
  }
}
.instructions__item {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #323232;
  width: 200px;
  counter-increment: instr;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .instructions__item {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 760px) {
  .instructions__item:last-child {
    margin-bottom: 0;
  }
}
.instructions__item:before {
  content: counter(instr) ".";
  display: block;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 15px;
}
.instructions__icon {
  display: block;
  border: 1px solid #d0d0d0;
  width: 140px;
  height: 140px;
  border-radius: 70px;
  margin: 0 auto 15px;
  background-repeat: no-repeat;
  background-position: center;
}
.instructions__icon_1 {
  background-image: url("../images/instruction-01.png");
  background-size: 60px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .instructions__icon_1 {
    background-image: url("../images/instruction-01@2x.png");
  }
}
.instructions__icon_2 {
  background-image: url("../images/instruction-02.png");
  background-size: 58px 65px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .instructions__icon_2 {
    background-image: url("../images/instruction-02@2x.png");
  }
}
.instructions__icon_3 {
  background-image: url("../images/instruction-03.png");
  background-size: 62px 35px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .instructions__icon_3 {
    background-image: url("../images/instruction-03@2x.png");
  }
}
.instructions__icon_4 {
  background-image: url("../images/instruction-04.png");
  background-size: 75px 65px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .instructions__icon_4 {
    background-image: url("../images/instruction-04@2x.png");
  }
}
.invite-block {
  display: block;
  max-width: 850px;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
  padding-bottom: 26px;
  background-color: #fafafa;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  text-align: left;
  margin: 0 auto 30px;
}
.invite-block_error {
  border-color: #f11a1a;
  padding-left: 25px;
  padding-right: 30px;
  padding-bottom: 37px;
  padding-top: 29px;
}
@media only screen and (max-width: 840px) {
  .invite-block_error .error {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 840px) {
  .invite-block {
    max-width: 610px;
  }
}
.invite-block__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 8px;
}
@media only screen and (max-width: 840px) {
  .invite-block__body {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
  }
}
.invite-block__form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media only screen and (max-width: 840px) {
  .invite-block__form {
    margin-bottom: 10px;
  }
}
.invite-block__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #323232;
  font-weight: bold;
}
.invite-block__label span {
  font-weight: normal;
}
.invite-block input[type='text'] {
  display: block;
  height: 40px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  color: #323232;
  min-width: 400px;
}
@media only screen and (max-width: 630px) {
  .invite-block input[type='text'] {
    width: 100%;
    min-width: 0;
  }
}
.invite-block__btn {
  width: 100px;
  height: 40px;
  text-align: center;
  padding: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  background-color: #3e82f7;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 2px;
  transition: all 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.invite-block__btn:hover {
  background-color: #27bd82;
}
.invite-block__btn::before {
  display: none;
}
.invite-block__btn:active {
  background-color: #7b7c82;
  color: rgba(255,255,255,0.5);
}
.invite-block__warning {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 14px;
  color: #f11a1a;
  max-width: 600px;
}
.link {
  display: inline-block;
  color: #3e82f7;
  text-decoration: none;
  font-size: 15px;
  line-height: 17px;
  cursor: pointer;
}
.link:hover {
  color: #df4a32;
  transition: all 0.3s;
}
.link_copy {
  position: relative;
}
.logo {
  display: block;
}
@media only screen and (max-width: 660px) {
  .logo {
    width: 200px;
  }
  .logo img {
    width: 100%;
    height: auto;
  }
}
.menu {
  display: block;
}
.menu:after {
  display: table;
  clear: both;
  content: '';
}
.menu__item {
  margin-left: 40px;
  float: left;
}
.menu__item a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.menu__item a:hover {
  color: #3e82f7;
}
@media only screen and (max-width: 660px) {
  .menu__item {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 470px) {
  .menu__item {
    float: none;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.page-promo {
  display: block;
  background-color: #fff;
  background-image: url("../images/landing_money_01.jpg");
  background-repeat: repeat-x;
  background-size: auto 230px;
  background-position: top center;
}
.page-promo__container {
  display: block;
  width: 100%;
  max-width: 1020px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  text-align: center;
}
.page-promo__container .title {
  margin-bottom: 30px;
}
.page-promo__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 90px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.page-promo__footer {
  display: block;
  padding-top: 60px;
  padding-bottom: 260px;
  text-align: center;
  background-image: url("../images/landing_money_02.jpg");
  background-repeat: repeat-x;
  background-size: auto 250px;
  background-position: bottom center;
}
.page-promo__wish {
  display: block;
  font-size: 24px;
  line-height: 24px;
  color: #27bd82;
  margin-bottom: 20px;
}
.page {
  display: block;
  min-width: 320px;
}
.page_second .wrapper {
  margin-top: 165px;
}
.page_second .section {
  margin-bottom: 0;
}
.page_second .section p {
  font-size: 16px;
  line-height: 24px;
  color: #545454;
  margin-bottom: 20px;
}
.page_second .section .title + p {
  margin-top: 30px;
}
.page_second .section .subtitle {
  margin-top: 50px;
}
.page_second .section .section__body {
  padding: 60px 100px 80px 100px;
  margin: 0;
}
@media only screen and (max-width: 700px) {
  .page_second .section .section__body {
    text-align: left;
    padding: 30px;
  }
}
.page_contacts .first {
  position: static;
  height: calc(100vh - 90px);
  min-height: 800px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page_contacts .first:after {
  content: '';
  display: block;
}
.page_contacts .section {
  max-width: 600px;
  display: block;
}
.page_contacts .section__body {
  margin: 0;
  padding: 25px 30px 0 30px;
}
.page_contacts .section__body:last-child {
  padding-bottom: 40px;
}
.page_contacts .section__body + .section__body {
  border-top: 1px solid #d0d0d0;
}
.page_contacts .section__body .subtitle {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 25px;
}
.page_contacts .section__body p {
  font-size: 16px;
  line-height: 24px;
  color: #323232;
  margin-bottom: 20px;
}
.page_contacts .section__body a {
  text-decoration: none;
  color: #3e82f7;
  transition: 0.3s;
}
.page_contacts .section__body a:hover {
  color: #df4a32;
}
.page_uninstall {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100vh;
  width: 100%;
}
.page_uninstall .logo {
  text-align: center;
}
.page_uninstall .title {
  margin-top: 50px;
  color: #fff;
}
.prize {
  display: inline-block;
  background-color: #27bd82;
  padding-top: 5px;
  padding-bottom: 3px;
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
  font-weight: bold;
  border-radius: 2px;
}
.promo {
  display: block;
  width: 100%;
  min-height: 200px;
  position: absolute;
  top: 0;
  background-color: #fff;
  background-image: url("../images/landing-promo_money_01.jpg");
  background-repeat: repeat-x;
  background-position: center bottom -35px;
  background-size: auto 138px;
}
@media only screen and (max-width: 960px) {
  .promo {
    padding-bottom: 40px;
    min-height: 280px;
  }
}
@media only screen and (max-width: 660px) {
  .promo {
    display: none;
  }
}
.promo__left-side {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media only screen and (max-width: 960px) {
  .promo__left-side {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.promo__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-width: 1100px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  padding-top: 40px;
}
@media only screen and (max-width: 960px) {
  .promo__container {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.promo__title {
  display: block;
  font-size: 24px;
  line-height: 27px;
  color: #000;
}
.promo__title strong {
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  .promo__title {
    margin-bottom: 20px;
  }
}
.promo__time {
  display: block;
  font-size: 14px;
  color: #7b8287;
  margin-left: 30px;
}
@media only screen and (max-width: 960px) {
  .promo__time {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.promo__icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #27bd82;
  margin-right: 15px;
  background-image: url("../images/dollar.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 26px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .promo__icon {
    background-image: url("../images/dollar@2x.png");
  }
}
@media only screen and (max-width: 960px) {
  .promo__icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.promo + .first {
  top: 200px;
}
@media only screen and (max-width: 960px) {
  .promo + .first {
    top: 280px;
  }
}
@media only screen and (max-width: 660px) {
  .promo + .first {
    top: 0;
  }
}
.promotion {
  display: block;
  border-top: 1px solid #d0d0d0;
  padding-top: 50px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}
.promotion__materials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 80px;
  text-align: left;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
}
.promotion__item {
  display: block;
  max-width: 400px;
  width: 100%;
  margin-right: 20px;
}
.promotion__item:last-child {
  margin-right: 0;
}
.promotion__img {
  margin-bottom: 40px;
}
.promotion__img img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.promotion__title {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #323232;
  margin-bottom: 30px;
}
.promotion__btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 870px) {
  .promotion__btns {
    max-width: 418px;
  }
}
@media only screen and (max-width: 452px) {
  .promotion__btns {
    max-width: 202px;
  }
}
.radio + .radio {
  display: block;
  margin-top: 15px;
}
.radio + input[type='text'],
.radio + input[type='email'] {
  margin-left: 6px;
}
.radio input[type='radio'] {
  display: none;
}
.radio input[type='radio']:checked + label:before {
  background-color: #4793f5;
  border: 2px solid #4793f5;
  box-shadow: inset 0 0 0 3px #fff;
}
.radio label {
  font-size: 14px;
  position: relative;
}
.radio label:before {
  content: '';
  box-sizing: border-box;
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: 1px solid #c6c6c6;
  margin-right: 8px;
}
.section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
}
.section_max-width_600 {
  max-width: 600px;
}
.section_center {
  -ms-flex-direction: column;
      flex-direction: column;
}
.section__screen {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 700px) {
  .section__screen {
    display: none;
  }
}
.section_center .section__screen {
  -ms-flex-order: 2;
      order: 2;
  margin-top: 20px;
}

.section__body {
  display: block;
  margin-left: 30px;
  margin-right: 90px;
  width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.section_center .section__body {
  -ms-flex-order: 1;
      order: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .section__body {
    -ms-flex-order: 1;
        order: 1;
    margin-left: auto;
    margin-right: auto;
    max-width: 740px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    text-align: center;
  }
}
.section__icon {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
}
.section_center .section__icon {
  position: static;
  margin-top: 50px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 700px) {
  .section__icon {
    position: static;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.section_right {
    flex-direction: row-reverse;
}
.section_right .section__icon {
    left: 30px;
    right: auto;
}
.section_right .section__screen {
    order: 1;
}
.section_right .section__body {
    order: 2;
    margin-left: 120px;
    margin-right: 30px;
}
.section_right .title {
    line-height: 52px;
}
@media only screen and (max-width: 700px) {
    .section_right .title {
        line-height: 32px;
    }
}
.section_right .description {
    margin-bottom: 30px;
}
.section_default-search .section__body {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section_default-search .section__screen {
  align-self: flex-end;
  position: relative;
}
@media only screen and (max-width: 860px) {
    .section_default-search .section__icon {
        position: static;
    }
    .section_default-search .section__body {
        margin-left: 30px;
    }
    .section_default-search .btn_simple {
        width: auto;
        max-width: 318px;
    }
}
@media only screen and (max-width: 700px) {
    .section_default-search .section__body {
        margin-left: 10px;
        margin-right: 10px;
    }
    .section_default-search .btn_simple {
        margin-left: auto;
        margin-right: auto;
    }
    .section_default-search .section__body {
      padding-top: 0;
      padding-bottom: 30px;
    }
}
.special {
  display: block;
  width: 215px;
  height: 32px;
  background-color: #27bd82;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  text-transform: uppercase;
  line-height: 32px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  top: 45px;
  right: -45px;
  transform: rotate(45deg);
}
.store {
  display: block;
  padding-left: 31px;
  background-image: url("../images/chrome.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  text-decoration: none;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .store {
    background-image: url("../images/chrome@2x.png");
  }
}
.store__first-line {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  opacity: 0.7;
  transition: 0.3s;
}
.store:hover .store__first-line {
  opacity: 1;
}
.store__second-line {
  display: block;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  transition: 0.3s;
}
.store:hover .store__second-line {
  color: #3e82f7;
}
.subtitle {
  display: block;
  font-size: 36px;
  line-height: 41px;
  color: #323232;
  margin-bottom: 20px;
}
.textarea {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  font-size: 16px;
  line-height: 16px;
  color: #323232;
  height: 160px;
  width: 100%;
  margin-bottom: 10px;
}
.title {
  display: block;
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 700px) {
    .title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 15px;
    }
}
.tooltipped {
  position: relative;
}
.tooltipped:after {
  content: 'Copied!';
  display: block;
  padding: 3px 5px;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  border-radius: 2px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(calc(-50% - 2px));
  transition: opacity 0.3s;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  position: absolute;
}
.tooltipped:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0,0,0,0.7);
}
.wrapper {
  display: block;
  background-color: #e8e8e8;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 680px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 660px) {
  .wrapper {
    margin-top: 230px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.wrapper_transparent {
  background: none;
}
.wrapper_blue {
  background-color: #3e82f7;
  margin-top: 0;
  padding-bottom: 0;
}
.wrapper_blue > * {
  position: relative;
  top: -90px;
}
@media only screen and (max-width: 660px) {
    .wrapper_blue > * {
      top: -40px;
    }
}
.wrapper__text {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 30px;
}
.howto-img {
    display: block;
}
.howto-img img {
    display: block;
    width: 100%;
    height: auto;
}
.howto-img + p {
    margin-top: 60px;
}
.h-notification {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    width: 100%;
    height: auto;
    background-color: #fff;
    font-size: 15px;
    line-height: 17px;
    color: #494949;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 15px;
    padding-right: 37px;
    position: relative;
    z-index: 102;
}
.h-notification:not(.hidden) + .first {
    top: 50px;
}
.h-notification.hidden {
    display: none;
}
.h-notification a {
    text-decoration: none;
    color: #3E82F7;
}
.h-notification a:hover {
    color: #36B118;
}
.h-notification__close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-image: url("../images/close@2x.png");
}
.h-notification__close:hover {
    background-image: url("../images/close-hover@2x.png");
}
.h-notification__close:active {
    background-image: url("../images/close-active@2x.png");
}
.h-notification__image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.h-notification__image img {
    display: block;
}
.h-notification__text b {
    font-weight: bold;
    color: #4285F4;
}
.h-notification__text strong {
    font-weight: bold;
}

.lang {
  display: block;
  width: 60px;
  position: relative;
  z-index: 100;
  text-align: left;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .lang__current {
    display: block;
    width: 100%;
    height: 30px;
    position: relative;
    line-height: 30px;
    padding-left: 30px;
    background: transparent;
    border-radius: 2px;
    font-size: 12px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.4);
    overflow: hidden; }
  .lang__list {
    display: none;
    list-style-type: none;
    padding-top: 7px;
    padding-bottom: 5px;
    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__item {
    display: block;
    width: 100%;
    height: 28px;
    padding-left: 9px;
    line-height: 28px;
    color: #323232;
    font-size: 12px;
    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; }

.lang__current:hover {
  border-color: #fff; }

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

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

.footer .lang__list {
  transform: translateY(-100%);
  margin-top: 0;
  top: -5px;
}
.header__col {
  display: flex;
  display: -ms-flexbox;
}
.header__lang {
  margin-right: 30px;
}
@media only screen and (max-width: 550px) {
  .header__lang {
    margin-right: 0;
  }
}
.footer__lang {
  margin-right: 30px;
}
.footer__right-side {
  display: flex;
}