@charset "UTF-8";
body.active-download:not(.page_uninstall) > .container {
  background-color: #f7f7f7;
}
body.active-download:not(.page_uninstall) > .container > *:not(.header--download, .page_download .header, .finish-installing-hint, #connect-second) {
  display: none;
}
body.active-download:not(.page_uninstall) > .container .header__menu a.active {
  pointer-events: auto;
  color: #f7931a;
}
body.active-download:not(.page_uninstall) > .container .finish-installing-hint, body.active-download:not(.page_uninstall) > .container #connect-second {
  opacity: 1;
  visibility: visible;
}
body.active-download:not(.page_uninstall) > .container #connect-second {
  background-color: #f7f7f7;
}
body.active-download:not(.page_uninstall) > .container .connect__item-text {
  font-size: 20px;
  line-height: 30px;
}
body.active-download:not(.page_uninstall) > .container .connect--second {
  position: static;
}
body.active-download:not(.page_uninstall) > .container .connect--second .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body.active-download:not(.page_uninstall) > .container .header--download {
  opacity: 1;
  visibility: visible;
  position: relative !important;
}

body.page_download_locale.active-download #connect-second {
  background-color: #fff !important;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Swiper 6.5.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:not(svg *) {
  font: inherit;
}

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: "Inter", Helvetica, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-focus-ring-color: rgba(255, 255, 255, 0);
  cursor: default;
}

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

a {
  background: transparent;
}

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

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

ol,
ul {
  list-style: none;
}

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

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

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

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

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button {
  overflow: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a, span[likelink] {
  color: #4285f4;
  text-decoration: none;
}

span[likelink] {
  cursor: pointer;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

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

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

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

.bg-gradient {
  background: linear-gradient(-180deg, #000000 0%, #494949 100%);
}

.border-main {
  border-bottom: 8px solid #f7931a;
}

.bg-white {
  background-color: #fff;
}

.bg-orange {
  background-color: #f7931a;
}

.tac {
  text-align: center;
}

.blocked {
  overflow: hidden;
}

.errorlist {
  font-weight: bold;
  color: #ff383d;
  margin-top: 20px;
}

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

.title {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}
.title--second {
  color: #ffffff;
}
.title--bold {
  font-weight: bold;
}
.title--center {
  text-align: center;
}
.title mark {
  color: #f7931a;
  background: none;
}

.text {
  font-size: 18px;
  line-height: 1.6666666667;
  color: #494949;
}
@media (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 1.4;
  }
}
.text--second {
  color: #d6d6d6;
}
.text--third {
  color: #757575;
}
.text--danger {
  color: #000;
  opacity: 0.5;
}
.text--bold {
  font-weight: bold;
}
.text--center {
  text-align: center;
}
.text a {
  transition: color 0.3s;
}
.text a:hover {
  color: #f7931a;
}

.app-store-btn, .mac-os-btn {
  position: relative;
}
.app-store-btn:after, .mac-os-btn:after {
  content: "PRO";
  display: block;
  position: absolute;
  width: max-content;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #f7931a;
  border-radius: 6px;
  color: #f7931a;
  background-color: #000;
  text-transform: uppercase;
  right: -1px;
  top: -9px;
  text-align: center;
}

.app-store-btn, .web-version-btn, .google-play-btn {
  color: #fff !important;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  text-align: center;
  height: 60px;
  background-color: #4285f4;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn__icon {
  margin-right: 10px;
  margin-top: -4px;
}
.btn_small {
  height: 50px;
}
.btn_win, .btn_mac, .btn_android {
  display: none;
}
.btn_more {
  height: auto;
  min-height: 60px;
  line-height: normal;
  font-weight: bold;
  padding-top: 22px;
  padding-bottom: 21px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.btn_spinner .spinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 250ms ease;
  opacity: 0;
}
.btn_spinner .spinner > div {
  background-color: #fff;
}
.btn_spinner span {
  transition: opacity 250ms ease;
  opacity: 1;
}
.btn_spinner.loading .spinner {
  opacity: 1;
}
.btn_spinner.loading span {
  opacity: 0;
}
.btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  background: #d6d6d6;
}
.btn[disabled]:hover {
  background-color: #d6d6d6;
}
.btn.download:not(.download-mac, .download-win, .dw-win) {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn.download:not(.download-mac, .download-win, .dw-win) span {
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 14px;
  margin-right: 10px;
}
.btn.confirm {
  position: relative;
}
.btn.confirm:after {
  content: attr(data-content);
}
.btn.confirm span {
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  margin-right: 10px;
}

.btn strong {
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn_link.gray {
  color: #757575;
}

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

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

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

.btn_simple span {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn_social_gplus {
  background-color: #dd5044;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page {
  font-family: "Inter", Helvetica, sans-serif;
  background-color: #000;
  min-width: 320px;
}
.page_download .header {
  display: block !important;
}
@media (max-width: 768px) {
  .page-farm .bg-white.article {
    padding-bottom: 0;
  }
  .page-farm .use--img-right:last-child {
    padding-bottom: 0;
    margin: 0;
  }
}
.page-content {
  min-height: 100%;
  background-color: #000;
}
.page-content > .container {
  padding-top: 0;
}
.page-content > .container #header {
  position: relative;
}
.page-content--white {
  background-color: #fff;
}
@media (min-width: 1200px) {
  .page-content--cp .header {
    margin-bottom: 0;
  }
}
.page_black .coins {
  background-color: #000;
}
.page_faq .container, .page_news .container {
  background-color: #f7f7f7;
  position: relative;
  align-items: flex-start;
}
.page_relative .contianer {
  position: relative;
}
.page_white .container,
.page_white .header {
  background-color: #fff;
}
.page_white .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 360px);
  padding-top: 0;
}
.page_newbie .container,
.page_newbie .header {
  background-color: #fff;
}
.page_newbie .container {
  width: 100%;
}
.page_gray .container,
.page_gray .header {
  background: #f7f7f7;
}
.page_error {
  background: #f7f7f7;
}
.page_error .container,
.page_error .header,
.page_error .header__logo {
  background: #f7f7f7;
}
@media (min-width: 1200px) {
  .page_error .header.fixed:not(.header--not-fixed) .header__logo {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .page_error .header {
    position: relative !important;
  }
}
.page_error .card_error {
  margin: 80px auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .page_error .card_error {
    margin: 0 auto;
  }
}
.page_affiliate .container {
  align-items: stretch;
}
.page_affiliate .container .header {
  position: relative;
}
.page_tutorial .container {
  background-color: #f7f7f7;
}
.page_tutorial .container.dark {
  background-color: #25272a;
}
.page.mac .btn_mac {
  display: inline-flex;
}
.page.win .btn_win {
  display: inline-flex;
}
.page_news .header {
  background-color: #f7f7f7;
}
.page_uninstall .container {
  display: block;
}
.page_uninstall button.download-outside {
  display: none;
}
.page_uninstall button.download-outside.active {
  display: inline-flex;
}
.page_uninstall .web-version-btn {
  border: none;
  opacity: 0.4;
}
.page_uninstall .video-block {
  padding-bottom: 100px;
}
.page_uninstall .video-block .title {
  margin-top: 80px;
}

.page_blocked {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-center {
  text-align: center;
}

.medium-stack > * + * {
  margin-top: 20px;
}
.medium-stack_browser h1,
.medium-stack_browser h2 {
  font-weight: 900;
}

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

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

.spinner .spinner__item1 {
  animation-delay: -0.6s;
}

.spinner .spinner__item2 {
  animation-delay: -0.4s;
}

.spinner .spinner__item3 {
  animation-delay: -0.2s;
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.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: auto;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  justify-content: center;
}
.popup--video .popup__handler {
  max-width: 800px;
}
@media (max-width: 500px) {
  .popup--video .popup__handler {
    background-color: rgba(0, 0, 0, 0) !important;
  }
}
.popup--video .popup__cancel {
  position: absolute;
  cursor: pointer;
  top: 15px;
  right: 15px;
}
.popup--video .popup__cancel:hover svg {
  fill: #fff;
}
.popup--video .popup__cancel svg {
  pointer-events: none;
  fill: #757575;
  transition: fill 300ms;
}
.popup_transparent {
  background-color: transparent;
}
.popup_alert .popup__handler {
  padding-top: 30px;
}
.popup_alert .popup__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
}
.popup_alert h2 {
  font-size: 24px;
  display: block;
  color: #000;
  line-height: 24px;
}
.popup__handler {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  width: 100%;
  max-width: 700px;
  margin: 80px auto;
}
@media only screen and (max-width: 500px) {
  .popup__handler {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    max-width: none;
    border-radius: 0;
  }
}
.popup.active {
  display: flex;
}
@media only screen and (max-width: 500px) {
  .popup {
    padding: 0;
    height: 100%;
  }
}
.popup__header {
  display: flex;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
  position: relative;
}
.popup__header img {
  display: block;
  margin-right: 10px;
}
.popup__body {
  padding: 30px;
  font-size: 14px;
  line-height: 16px;
  color: #494949;
  max-height: 350px;
  overflow-y: scroll;
  border-top: 1px solid #D6D6D6;
}
.popup__body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #494949;
}
.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: flex;
  justify-content: center;
  border-top: 1px solid #D6D6D6;
  padding: 20px 30px;
  background-color: #F7F7F7;
}
.popup__cancel--second {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  cursor: pointer;
  z-index: 2;
}
.popup__cancel--second svg {
  fill: #9D9D9D;
  pointer-events: none;
}
.popup__cancel--second:hover svg {
  fill: #4285F4;
}
.popup__label {
  display: block;
  color: #f7931a;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px;
  font-weight: bold;
}
.popup_theme_confirm .popup__body {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  max-height: none;
}
.popup_theme_confirm .title {
  font-size: 32px;
  color: #000;
  margin-bottom: 20px;
  line-height: 24px;
}
.popup_theme_confirm .icon {
  margin-bottom: 30px;
}
.popup_theme_confirm p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 40px;
}
.popup_theme_confirm form {
  margin-bottom: 20px;
}

#termsPopup .popup__handler {
  max-width: 700px;
}
#termsPopup .popup__header {
  padding-top: 25px;
  padding-bottom: 25px;
}
#termsPopup .popup__header .logo {
  margin-bottom: 0;
}
#termsPopup .popup__body {
  overflow: hidden;
  max-height: 350px;
}
#termsPopup .popup__body iframe {
  display: block;
  border: 1px solid #d6d6d6;
  width: 100%;
  height: 220px;
}
#termsPopup .popup__footer {
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 30px;
}
#termsPopup .popup__footer .btn_default {
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-left: 0;
  margin-right: 0;
  max-width: 280px;
}
#termsPopup .popup__footer .btn_link {
  color: #000;
}
#termsPopup .popup__footer .btn_link:hover {
  color: #4285f4;
}
@media screen and (max-width: 550px) {
  #termsPopup .popup__footer {
    flex-direction: column;
    align-items: center;
  }
  #termsPopup .popup__footer .btn_default {
    margin-bottom: 30px;
  }
}
#termsPopup .terms-text {
  display: block;
  border: 1px solid #d6d6d6;
  width: 100%;
  height: 350px;
  font-family: "Inter", Helvetica, sans-serif;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  overflow-y: auto;
}
#termsPopup .terms-text h1 {
  display: block;
  color: #000;
  font-size: 22px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
#termsPopup .terms-text h2 {
  display: block;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #000;
}
#termsPopup .terms-text ul,
#termsPopup .terms-text p {
  color: #494949;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 25px;
}
#termsPopup .terms-text a {
  color: #4285f4;
  text-decoration: none;
}
#termsPopup .terms-text a:hover {
  color: #f7931a;
}

.popup__promo-modal {
  padding: 20px;
  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: auto;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  justify-content: center;
}
.popup__promo-modal.active {
  display: flex;
}
.popup__promo-modal .popup-promo__handler {
  text-align: left;
  margin: 0;
  max-width: 600px;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
}
.popup__promo-modal .popup-promo__img {
  max-width: 100%;
  width: 100%;
  border-radius: 8px 8px 0px 0px;
}
.popup__promo-modal .popup-promo__content {
  padding: 20px 30px 30px;
}
.popup__promo-modal .popup-promo__title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}
.popup__promo-modal .popup-promo__title:hover {
  color: #4285F4;
}
.popup__promo-modal .popup-promo__title--mob {
  display: none;
}
.popup__promo-modal .popup-promo__text {
  font-size: 16px;
  line-height: 26px;
  color: #494949;
  margin-bottom: 30px;
}
.popup__promo-modal .popup-promo__text b {
  font-weight: bold;
}
.popup__promo-modal .popup-promo__text--mob {
  display: none;
}
.popup__promo-modal .popup-promo__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup__promo-modal .popup-promo__btns .btn {
  border-radius: 6px;
}
.popup__promo-modal .cancel {
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  line-height: 15px;
  color: #494949;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.popup__promo-modal .cancel:hover {
  color: #F7931A;
}
.popup__promo-modal .cancel--mob {
  display: none;
}
@media (max-height: 800px) {
  .popup__promo-modal {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .popup__promo-modal .popup-promo__title, .popup__promo-modal .popup-promo__text {
    display: none;
  }
  .popup__promo-modal .popup-promo__title--mob, .popup__promo-modal .popup-promo__text--mob {
    display: block;
  }
  .popup__promo-modal .popup-promo__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .popup__promo-modal .popup-promo__text {
    font-size: 14px;
    line-height: 24px;
  }
  .popup__promo-modal .popup-promo__content {
    padding: 20px 15px 15px;
  }
  .popup__promo-modal .popup-promo__btns .btn {
    max-width: none;
  }
  .popup__promo-modal .cancel {
    display: none;
  }
  .popup__promo-modal .cancel--mob {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -36px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
  }
}

ul.pagination {
  display: block;
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
ul.pagination li {
  display: inline-block;
  margin-bottom: 0;
}
ul.pagination a,
ul.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  width: 40px;
  text-decoration: none;
  transition: all 0.2s;
}
ul.pagination span {
  width: fit-content;
}
ul.pagination a:hover {
  color: #4285f4;
  border-color: #4285f4;
}
ul.pagination a.active {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}
ul.pagination li + li {
  margin-left: 5px;
}
ul.pagination a.pagination__prev,
ul.pagination a.pagination__next {
  min-width: 70px;
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.form__header {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .form__header {
    padding: 0 15px;
  }
}
.form__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F7F7F7;
  padding: 20px;
  border-top: 1px solid #D6D6D6;
}
.form__footer .btn {
  width: auto;
  line-height: normal;
}
.form__footer .btn + .btn {
  margin-left: 30px;
}
.form__footer_fullwidth {
  justify-content: space-between;
}
.form__btn {
  min-width: 300px;
}
.form .card__error-input {
  color: #ff383d;
  font-size: 12px;
  margin-top: 15px;
  font-weight: bold;
}

.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: "Inter", Helvetica, sans-serif;
}
.input input.error {
  border-color: red;
}
.input input:focus {
  border-color: #4285f4;
}
.input input::placeholder {
  color: #757575;
}
.input--file label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.input--file .btn {
  background: transparent;
  border: 1px solid #c9c9d0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 36px;
  max-width: 160px;
  text-transform: uppercase;
  transition: all 0.3s;
  width: 100%;
  color: #222;
  height: auto !important;
  padding: 0;
}
.input--file .btn:hover {
  background-color: #4285f4;
  transition: background-color 0.2s ease-in-out;
  border-color: #4285f4;
  color: #fff;
}
.input--file input[disabled] + .btn {
  background-color: #d6d6d6;
  border: 1px solid #d6d6d6;
  color: #fff;
}
.input--file .file-name {
  font-size: 12px;
  margin-top: 15px;
}
.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: "Inter", Helvetica, sans-serif;
  outline: none;
}
.input textarea.error {
  border-color: red;
}
.input textarea:focus {
  border-color: #4285f4;
}
.input__desc {
  color: #757575;
  font-size: 12px;
  line-height: 14px;
  margin-top: 15px;
}
.input__tip {
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 11px;
  line-height: 12px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
.input__tip:hover {
  color: #4285f4;
}
.input select {
  cursor: pointer;
  width: 100%;
  border: none;
  border-bottom: 1px solid #cecece;
  background-color: #fff;
  padding-left: 0;
  padding-right: 25px;
  padding-bottom: 16px;
  font-size: 16px;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: url("../images/triangle.png");
  background-size: 8px 4px;
  background-position: right top 9px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .input select {
    background-image: url("../images/triangle@2x.png");
  }
}
.input select:hover {
  border-bottom-color: #4285f4;
}
.input select:invalid {
  color: #757575;
}

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

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

@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;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 85px;
  margin: 0 auto;
}

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

.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 p + h3 {
  margin-top: 15px;
}

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

.container__text h3 {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #1f232c;
  font-weight: 600;
}

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

.container__text .table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.container__text table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.container__text table thead {
  text-align: center;
  font-weight: bold;
}
.container__text table td {
  padding: 20px;
}
.container__text table td:first-of-type {
  width: 40%;
}

.link {
  display: inline;
  color: #4285f4;
  text-decoration: none;
  cursor: pointer;
}
.link:hover {
  color: #f7931a;
}
.link_info {
  display: inline-block;
  font-size: 14px;
  color: #A4A4A4;
  position: relative;
  padding: 12px 15px;
  padding-left: 36px;
  text-decoration: none;
  border: 1px dashed #A4A4A4;
  border-radius: 2px;
  cursor: pointer;
}
.link_info:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  background-image: url("../images/sprites/sprite.png");
  background-position: -193px -95px;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}
@media (-webkit-min-device-pixel-ratio: 2), (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;
  display: inline-flex;
  align-items: center;
}
.link_more svg {
  margin-left: 7px;
}

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

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 40px;
  margin: 0 auto;
}
.header__menu .js-detect-os {
  cursor: pointer;
}
.header--download {
  opacity: 0;
  visibility: hidden;
  position: absolute !important;
}
@media (min-width: 1249px) {
  .header.fixed:not(.header--not-fixed) .header__wrapper {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, background-color 0.2s;
  }
  .header.fixed:not(.header--not-fixed) .header__wrapper .header__container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .header.fixed:not(.header--not-fixed) .header__wrapper .logo {
    height: auto;
    width: 262px;
    display: flex;
  }
  .header.fixed:not(.header--not-fixed) .header__wrapper .logo img {
    max-height: 100%;
  }
}
.header__selects {
  position: absolute;
  display: none;
  justify-content: space-between;
  padding: 15px;
  background: #F7F7F7;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  top: calc(50% + 20px);
  left: calc(50% - 60px);
  z-index: 101;
}
.header__selects.active {
  display: flex;
}
.header__selects .select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 3px;
  height: 48px;
  width: 77px;
  margin: 0;
  transition: background 0.3s;
}
.header__selects .select--gpay::before {
  content: url("../images/gplay-select.svg");
}
.header__selects .select--app {
  margin: 0 10px;
}
.header__selects .select--app:before {
  content: url("../images/app-select.svg");
}
.header__selects .select--mac:before {
  content: url("../images/macos-icon.svg");
}
.header__selects .select--app, .header__selects .select--mac {
  position: relative;
}
.header__selects .select--app:after, .header__selects .select--mac:after {
  content: "PRO";
  display: block;
  position: absolute;
  width: max-content;
  padding: 2px 4px;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #f7931a;
  border-radius: 6px;
  color: #f7931a;
  background-color: #000;
  text-transform: uppercase;
  right: -1px;
  top: -9px;
  text-align: center;
}
.header__selects .select--web {
  margin-right: 10px;
}
.header__selects .select--web:before {
  content: url("../images/webversion-logo.svg");
}
.header__selects .select--web:hover:before {
  content: url("../images/web-white.svg");
}
.header__selects .select:hover {
  background: #f7931a;
}
.header#header.hide {
  display: none;
}
.header__logo {
  position: relative;
  display: block;
  z-index: 1;
}
.header__logo svg {
  transform: none !important;
}
.header__wrapper {
  width: 100%;
  transition: background-color 0.2s;
}
.header__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 1200px) {
  .header__container {
    min-height: 80px;
  }
}
.header__navbar {
  display: flex;
  align-items: center;
  z-index: 10;
}
@media (max-width: 1024px) {
  .header__navbar {
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .header__navbar {
    row-gap: 0px;
  }
}
.header__menu {
  margin-right: 30px;
  position: relative;
}
.header__menu a, .header__menu span {
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.header__menu a:hover:not(.btn_primary), .header__menu span:hover:not(.btn_primary) {
  color: #f7931a;
}
.header__menu a + a, .header__menu a + span, .header__menu span + a, .header__menu span + span {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header__menu a + a, .header__menu a + span, .header__menu span + a, .header__menu span + span {
    margin-left: 0;
    margin-top: 10px;
  }
}
.header__menu a.active, .header__menu span.active {
  color: #000;
  pointer-events: none;
  position: relative;
}
.header--inverse:not(.fixed) .header__menu a.active, .header--inverse:not(.fixed) .header__menu span.active {
  color: #fff;
}

.header__menu a.active:after, .header__menu span.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f7931a;
  position: absolute;
  bottom: -13px;
  border-radius: 6px;
  left: 0;
}
@media (max-width: 767px) {
  .header__menu a.active:after, .header__menu span.active:after {
    content: none;
  }
}
@media (max-width: 768px) {
  .header__menu--mobile-center {
    text-align: center;
  }
}
.header__menu--white a {
  color: #fff;
}
.header__menu--second {
  margin-right: 0;
}
.header__btnWrap {
  display: none;
}
@media (max-width: 768px) {
  .header__btnWrap {
    display: block;
    flex-basis: 100%;
    padding: 10px 65px 30px 65px;
  }
}
.header__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #757575;
  margin-right: 30px;
  text-transform: capitalize;
}
.header__socials a {
  text-decoration: none;
}
.header__socials a svg #getcryptotab--chat-icons {
  fill: #494949;
}
.header__socials a:hover svg #getcryptotab--chat-icons {
  fill: #f7931a;
}
.header__socials a + a {
  margin-left: 20px;
}
.header__socials span i {
  margin-left: 10px;
}
.header__lang_black .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
.header__lang_black .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
}
.header__lang_black .lang.opened .lang__current:before {
  top: 13px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d0d0d0;
  border-bottom: none;
}
.header__lang_transparent .lang__current {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.header__lang_transparent .lang__current:hover {
  background-color: #fff;
  color: #4285f4;
  box-shadow: 0 0 0 1px #fff;
}
.header__lang_transparent .lang.opened .lang__current {
  color: #3e82f7;
  background-color: #fff;
  box-shadow: 0 0 0 1px #fff;
}
.header--white {
  background-color: #fff;
}
.header__block-mob {
  display: none;
}
@media (min-width: 1200px) {
  .header {
    min-height: 120px;
  }
}
@media only screen and (max-width: 1249px) {
  .header {
    flex-direction: column;
  }
  .header__container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    align-items: flex-start;
    padding: 0;
    margin-bottom: 50px;
    background-color: #fff;
    min-height: 61px;
  }
  .tutorial .header {
    margin-bottom: 0;
  }

  .header.fixed .header__wrapper {
    position: fixed;
    top: -60px;
    max-width: 100vw;
    left: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, background-color 0.2s;
  }
  .header__container {
    align-items: flex-start;
  }
  .header__navbar {
    position: absolute;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    flex-wrap: wrap;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
    background: #ffffff;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
  }
  .header__navbar.active {
    transform: translateY(60px);
    opacity: 1;
  }
  .header__navbar .store-links {
    display: none;
  }
  .header__navbar .lang {
    display: block;
  }
  .header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 100%;
    background-color: #fff;
    z-index: 100;
  }
  .header__logo .logo {
    left: 0;
    right: 0;
    top: auto;
    max-width: 210px;
    margin: 0 auto;
  }
  .header__lang {
    margin-right: 15px;
    margin-top: 13px;
    margin-bottom: 14px;
  }
  .header__menu {
    display: block;
    justify-content: flex-start;
    width: 100%;
    margin-right: 0;
    padding: 20px;
    border-bottom: 1px solid #d6d6d6;
    margin-right: 0 !important;
    overflow-x: scroll;
    white-space: nowrap;
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu:after {
    content: "";
    display: block;
    width: 20px;
  }
  .header__menu a, .header__menu span[likelink] {
    display: block;
    padding: 14px 45px;
    border-radius: 2px;
  }
  .header__menu a.active, .header__menu span[likelink].active {
    color: #ffffff;
    background: #4285f4;
  }
  .header__menu a.active:after, .header__menu span[likelink].active:after {
    bottom: -18px;
  }
  .header__menu--second {
    flex-direction: column;
    display: flex;
    border-bottom: none;
    padding: 30px 65px;
  }
  .header__menu--second a, .header__menu--second span[likelink] {
    margin-bottom: 35px;
    margin-left: 0;
  }
  .header__menu--second a + a, .header__menu--second span[likelink] + a {
    margin-left: 0;
  }
  .header__menu--second .btn_primary {
    margin-bottom: 0;
  }
  .header__block-mob {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 20px;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
  }
  .header__block-mob a {
    min-width: auto;
    font-size: 9px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
  }
  .header__block-mob a:last-child {
    margin-bottom: 0;
  }
  .header__block-mob a:hover {
    color: #f7931a;
  }
  .header__block-mob a > span > b {
    font-size: 15px;
  }
  .header__block-mob .google-play-btn {
    margin: 0;
    height: 50px;
    width: 245px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 767px) {
  .header__block-mob .google-play-btn {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .header__block-mob-text {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03px;
  }
}
@media only screen and (max-width: 768px) {
  .header__socials {
    margin-right: 0;
    margin-left: 15px;
  }
  .header__socials span {
    display: block;
    margin-right: 10px;
  }
}

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

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

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

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

/*
* Burger
*/
.burger {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 200;
  padding: 4px;
  box-sizing: content-box;
}
.burger.active {
  transform: translateY(-50%) 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: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.burger:before, .burger:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  position: absolute;
  background-color: #757575;
  left: 50%;
  transform: translateX(-50%);
}
.burger:before {
  top: 8px;
}
.burger:after {
  bottom: 8px;
}

.header .js-detect-os.active {
  color: #f7931a !important;
}
.header .js-detect-os.active:after {
  display: none;
}

.social-links-new {
  display: flex;
  gap: 10px;
  margin-right: 10px;
}

.social-link-new {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  margin: 0 !important;
  transition: background-color 0.3s ease;
}
.social-link-new svg path {
  transition: fill 0.3s ease;
}
.social-link-new:hover {
  background-color: #F7931A;
}
.social-link-new:hover:not(.not-hover) svg path {
  fill: #ffffff !important;
}

.header--new {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 70px;
  position: relative;
  z-index: 100;
  min-height: 70px;
  background: #ffffff;
  z-index: 10;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}
.header--new.fixed:not(.header--not-fixed) .header__wrapper {
  top: -70px;
}
@media (max-width: 1400px) {
  .header--new.fixed:not(.header--not-fixed) .header__wrapper {
    top: -121px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .header--new.fixed:not(.header--not-fixed) .header__wrapper {
    padding-bottom: 0;
    top: -61px;
  }
  .header--new.fixed:not(.header--not-fixed) .header__wrapper .header__navbar {
    margin-top: -4px;
  }
}
@media (max-width: 1400px) {
  .header--new {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .header--new {
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
    min-height: 60px;
  }
}
.header--new .header__navbar {
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .header--new .header__navbar {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .header--new .header__navbar {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .header--new .header__menu {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header--new .header__menu {
    flex-direction: column;
  }
}
.header--new .header__btn {
  border-radius: 6px;
  background: #4285f4;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  margin-right: 10px;
  flex-shrink: 0;
}
.header--new .header__btn:hover {
  background: #f7931a;
}
.header--new .header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header--new .header__logo .logo {
  opacity: 1;
  visibility: visible;
  height: auto;
  width: 262px;
}
.header--new .header__logo .logo svg path[fill="rgb(0,0,0)"] {
  fill: #000;
}
@media (max-width: 768px) {
  .header--new .header__logo svg {
    width: 230px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .header--new .social-links-new {
    margin: 10px 10px 10px 20px;
  }
}
.header--new .header__container {
  min-height: 70px;
}
@media (max-width: 1400px) {
  .header--new .header__container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .header--new .header__container {
    min-height: 60px;
  }
}
@media (max-width: 768px) {
  .header--new .lang {
    margin: 10px 20px 10px 0;
  }
}
.header--new .lang.opened .lang__current:before {
  top: 17px;
}
.header--new .header__lang {
  height: 40px;
}
.header--new .lang__current {
  height: 40px;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header--new .lang__current img {
  top: 14px;
}
.header--new .lang__current::before {
  top: 18px;
}

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

.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;
  line-height: initial;
}
.bonus_orange {
  background-color: #f7931a !important;
}
.bonus_red {
  background-color: #f74249;
}
.bonus_lightblue {
  background-color: #1ab9e5;
}

.logo {
  display: block;
  height: auto;
  width: 315px;
  transition: opacity 250ms ease, visibility 250ms ease;
}
@media (max-width: 767px) {
  .logo {
    opacity: 0;
    visibility: hidden;
  }
}
.fixed .logo {
  opacity: 0;
  visibility: hidden;
}

.logo svg {
  height: 100%;
}
.logo svg path[fill="rgb(0,0,0)"] {
  fill: #fff;
}
@media (max-width: 767px) {
  .logo svg path[fill="rgb(0,0,0)"] {
    fill: #000;
  }
}
.fixed .logo svg path[fill="rgb(0,0,0)"] {
  fill: #000;
}

.page_white .logo svg path[fill="rgb(0,0,0)"] {
  fill: #000;
}

.page_faq .logo svg path[fill="rgb(0,0,0)"] {
  fill: #000;
}

.logo--second {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .logo--second {
    top: 10px;
    opacity: 1;
    visibility: visible;
  }
}
.fixed .logo--second {
  opacity: 1;
  visibility: visible;
}

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

.logo__text--second {
  fill: #000;
}
.logo__part-one {
  fill: #f7931a;
}
@media only screen and (max-width: 768px) {
  .logo__part-one {
    fill: #000;
  }
}
.fixed .logo__part-one {
  fill: #000;
}

.logo__part-two {
  fill: #fff;
}
@media only screen and (max-width: 768px) {
  .logo__part-two {
    fill: #f7931a;
  }
}
.fixed .logo__part-two {
  fill: #f7931a;
}

.logo__part-three {
  fill: #f7931a;
}
@media only screen and (max-width: 768px) {
  .logo__part-three {
    fill: #000;
  }
}
.fixed .logo__part-three {
  fill: #000;
}

@media only screen and (max-width: 1200px) {
  .logo {
    margin-bottom: 30px;
  }
}
.footer .google-play {
  width: 165px;
}

@media only screen and (max-width: 850px) {
  .page_promo .container-new {
    display: block;
    padding-top: 0;
  }

  .page_promo .header {
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
    margin-bottom: 30px;
  }

  .page_promo .logo {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1250px) {
  .page_v2 .first {
    overflow-x: hidden;
  }

  .page_v2 .header__socials span {
    display: none;
  }

  .page_v2 .header .logo {
    margin-right: 20px;
  }
}
.scroll2top {
  display: flex;
  align-items: center;
  justify-content: center;
  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-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 24px;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}

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

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

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

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

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

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

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

.footer .social-links a + a {
  margin-left: 15px;
}
@media only screen and (max-width: 1200px) {
  .footer .social-links + span {
    display: none;
  }
}
.footer .social-link:hover {
  background: #f7931a;
  color: #fff;
}
.footer .social-link:hover #social-link_fb-icon {
  fill: #f7931a;
}

.header .social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .social-links--christmas {
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 15px;
}
.header .social-links a,
.header .social-links svg {
  border: none;
}
.header .social-links {
  margin-right: 30px;
}
.header .social-link_fb i {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/fb-small.svg");
  background-size: 20px;
  position: relative;
  top: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header .social-link_fb i {
    background-image: url("../images/fb-small.svg");
  }
}
.header .social-link_fb:hover i {
  background-image: url("../images/fb-small-hover.svg");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header .social-link_fb:hover i {
    background-image: url("../images/fb-small-hover.svg");
  }
}
.header .social-link_fb svg {
  display: none;
}
.header .social-link_telegram svg path {
  fill: #31A5E0;
}
.header .social-link_vk svg path {
  fill: #577CA4;
}
.header .social-link_youtube svg path {
  fill: #e12a21;
}
.header .social-link_twitter svg path {
  fill: #1DA1F2;
}
.header .social-link:hover svg path {
  fill: #F7931A;
}
@media only screen and (max-width: 1235px) {
  .header .social-links {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .header .social-links {
    margin: 30px auto 30px;
  }
}
.header .social-link:not(:last-child) {
  margin-right: 20px;
}
.social-links--christmas .header .social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 7.5px 15px;
}
.social-links--christmas .header .social-link:hover {
  background: #f7931a;
}
.social-links--christmas .header .social-link_fb {
  background-color: #4861A3;
}
.social-links--christmas .header .social-link_telegram {
  background-color: #31A5E0;
}
.social-links--christmas .header .social-link_instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-links--christmas .header .social-link_twitter {
  background-color: #1DA1F2;
}
.social-links--christmas .header .social-link_youtube {
  background-color: #FF2500;
}
.social-links--christmas .header .social-link_vk {
  background-color: #577CA4;
}

.header .menu__item_join .social-links {
  margin-right: 15px;
}
@media only screen and (max-width: 480px) {
  .header .menu__item_join .social-links {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .header .menu__item_join .social-links + span {
    margin-left: 10px;
  }
}
.header .page_theme_black .social-link_instagram:not(:hover) svg path {
  fill: #fff;
}
.header .footer .social-links a svg path {
  fill: #fff;
}
.header .footer .social-link_instagram svg path {
  fill: #fff;
}
.header .footer .social-link_instagram:hover svg path {
  fill: #F7931A;
}
.header .footer .social-link_youtube:hover svg path {
  fill: #F7931A;
}
.header .footer .social-links a:hover svg path {
  fill: #F7931A;
}
.header .footer .social-links a + a {
  margin-left: 15px;
}
@media only screen and (max-width: 1200px) {
  .header .footer .social-links + span {
    display: none;
  }
}

@media (max-width: 1280px) {
  .page_affiliate .header .social-links {
    display: none;
  }
}
@media (max-width: 1200px) {
  .page_affiliate .header .social-links {
    display: flex;
  }
}
@media (max-width: 768px) {
  .page_affiliate .header .social-links {
    margin-top: 30px;
  }
}
.feedback-link {
  color: #fff;
  font-size: 13px;
  line-height: 15px;
}
.feedback-link a {
  color: #4285f4;
}
.feedback-link a:hover {
  color: #f7931a;
}

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

.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: 768px) {
  .header .lang {
    order: 3;
    margin: 20px auto;
  }
}
.lang__current {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 30px;
  position: relative;
  line-height: 30px;
  padding-left: 30px;
  background: #ffffff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  font-family: "Inter", Helvetica, sans-serif;
  color: #323232;
  text-transform: uppercase;
  overflow: hidden;
}
.header--inverse:not(.fixed) .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .header--inverse:not(.fixed) .lang__current {
    background-color: #fff;
    color: #323232;
    border: none;
  }
}
.header--inverse:not(.fixed) .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
  color: #4285f4;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .lang__list {
    transform: translateY(calc(-100% - 40px));
  }
}
.app-store-btn,
.google-play-btn,
.web-version-btn,
.mac-os-btn,
.mobile-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 62px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 157px 37px;
  border: 1px solid #494949;
  border-radius: 10px;
  transition: background-color 0.15s;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}
.app-store-btn::before,
.google-play-btn::before,
.web-version-btn::before,
.mac-os-btn::before,
.mobile-app-btn::before {
  display: block;
  margin-right: 15px;
}
.app-store-btn > span,
.google-play-btn > span,
.web-version-btn > span,
.mac-os-btn > span,
.mobile-app-btn > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: uppercase;
  font-weight: 400;
}
.app-store-btn > span > b,
.google-play-btn > span > b,
.web-version-btn > span > b,
.mac-os-btn > span > b,
.mobile-app-btn > span > b {
  margin-top: 2px;
  text-transform: initial;
  font-weight: 700;
  font-size: 20px;
}
.app-store-btn:active,
.google-play-btn:active,
.web-version-btn:active,
.mac-os-btn:active,
.mobile-app-btn:active {
  background-color: #255199;
}
@media (max-width: 768px) {
  .app-store-btn,
.google-play-btn,
.web-version-btn,
.mac-os-btn,
.mobile-app-btn {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.app-store-btn.first,
.google-play-btn.first,
.web-version-btn.first,
.mac-os-btn.first,
.mobile-app-btn.first {
  border: 1px solid #494944;
}
.app-store-btn.first.disable,
.google-play-btn.first.disable,
.web-version-btn.first.disable,
.mac-os-btn.first.disable,
.mobile-app-btn.first.disable {
  border: none;
}
.app-store-btn.first.disable:before,
.google-play-btn.first.disable:before,
.web-version-btn.first.disable:before,
.mac-os-btn.first.disable:before,
.mobile-app-btn.first.disable:before {
  border: 1px solid #494944;
  background: #000;
  top: -1px;
  left: -1px;
  opacity: 0.3;
}
.app-store-btn.second,
.google-play-btn.second,
.web-version-btn.second,
.mac-os-btn.second,
.mobile-app-btn.second {
  min-width: 250px;
  margin-right: 20px;
}
.app-store-btn.second:last-of-type,
.google-play-btn.second:last-of-type,
.web-version-btn.second:last-of-type,
.mac-os-btn.second:last-of-type,
.mobile-app-btn.second:last-of-type {
  margin-right: 0;
}
@media (max-width: 767px) {
  .app-store-btn.second,
.google-play-btn.second,
.web-version-btn.second,
.mac-os-btn.second,
.mobile-app-btn.second {
    margin-bottom: 20px;
    margin-right: auto;
  }
  .app-store-btn.second:last-of-type,
.google-play-btn.second:last-of-type,
.web-version-btn.second:last-of-type,
.mac-os-btn.second:last-of-type,
.mobile-app-btn.second:last-of-type {
    margin-bottom: 0;
    margin-right: auto;
  }
}
.app-store-btn.disable,
.google-play-btn.disable,
.web-version-btn.disable,
.mac-os-btn.disable,
.mobile-app-btn.disable {
  pointer-events: none;
  position: relative;
  border: none;
  opacity: 0.3;
}
.app-store-btn.border,
.google-play-btn.border,
.web-version-btn.border,
.mac-os-btn.border,
.mobile-app-btn.border {
  border: 1px solid #494944;
}
.app-store-btn.btn_android,
.google-play-btn.btn_android,
.web-version-btn.btn_android,
.mac-os-btn.btn_android,
.mobile-app-btn.btn_android {
  display: none;
}

.app-store-btn:hover,
.google-play-btn:hover, .web-version-btn:hover, .mobile-app-btn:hover, .mac-os-btn:hover {
  background-color: #f7931a;
  border-color: #f7931a;
}
.app-store-btn:hover span,
.google-play-btn:hover span, .web-version-btn:hover span, .mobile-app-btn:hover span, .mac-os-btn:hover span {
  color: #fff;
}

.google-play-btn::before {
  content: url(../images/gplay.svg);
}

.app-store-btn::before {
  content: url(../images/appstore-logo.svg);
}

.mac-os-btn::before {
  content: url("../images/macos-icon.svg");
}

.mobile-app-btn {
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.mobile-app-btn:after, .mobile-app-btn:before {
  display: none;
}

.web-version-btn {
  position: relative;
}
.web-version-btn:before {
  content: url(../images/webversion-logo.svg);
}
.web-version-btn:hover:before {
  content: url("../images/web-white.svg");
}

.btn-soon {
  display: inline-flex;
  position: relative;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .btn-soon {
    width: 100%;
    margin: 0px;
  }
}
.btn-soon > span {
  position: absolute;
  background: #494949;
  border-radius: 10px;
  padding: 3px 8px 4px;
  right: 0;
  white-space: nowrap;
  bottom: calc(100% - 9px);
  color: #a4a4a4;
  font-size: 10px;
  font-weight: bold;
  line-height: 11px;
}

.news-page .app-store-btn {
  color: #fff;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
.news-page .app-store-btn:hover {
  color: #fff;
}

.btn__container {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .btn__container {
    display: block;
  }
}

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

.ct-farm {
  position: relative;
  background-image: linear-gradient(to bottom, #000 0%, #363636 100%);
  border-bottom: 5px solid #f7931a;
  overflow: hidden;
  /*.home-robot4 {
    @include respondTo(mobile) {
      left: 20px;
    }
  }*/
}
@media (max-width: 1024px) {
  .ct-farm {
    box-shadow: 0 1px 0 #979797;
  }
}
@media (max-width: 767px) {
  .ct-farm {
    box-shadow: none;
  }
}
.ct-farm__block {
  text-align: center;
}
@media (max-width: 1024px) {
  .ct-farm__block {
    margin: 0 auto 52px;
  }
}
@media (max-width: 767px) {
  .ct-farm__block {
    margin: 0 auto;
  }
}
.ct-farm__text {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 767px) {
  .ct-farm__text {
    margin-bottom: 30px;
    text-align: left;
  }
}
.ct-farm__banner {
  text-align: center;
  margin: 0px auto 30px;
  max-width: max-content;
  background: #362209;
  border: 2px solid #F7931A;
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 20px;
  line-height: 32px;
  color: #F7931A;
}
.ct-farm__download-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ct-farm__download-btns {
    flex-direction: column;
  }
}
.ct-farm__download-btns .btn--small-mobile {
  margin-left: 10px;
}
.ct-farm__download-btns .btn--download {
  max-width: 320px;
}
@media (max-width: 767px) {
  .ct-farm__download-btns .btn--download {
    max-width: 100%;
    width: 100%;
  }
}
.ct-farm__download-btns .btn--download:hover {
  color: #ffffff;
}
.ct-farm__btn {
  max-width: 320px;
  width: 100%;
}
@media (max-width: 767px) {
  .ct-farm__btn {
    display: flex;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .ct-farm__btn--second {
    display: none;
  }
}
.ct-farm__signin {
  min-width: 160px;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .ct-farm__signin {
    max-width: 245px;
    width: 100%;
    height: auto;
    line-height: 1;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.ct-farm a.ct-farm__signin {
  color: #fff;
}
.ct-farm__main-img {
  /*position: absolute;*/
  margin: -40px auto -3px auto;
  position: relative;
  z-index: -1;
  max-width: 900px;
  width: 100%;
  transform: translateX(20px);
}
@media (max-width: 1024px) {
  .ct-farm__main-img {
    position: relative;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 767px) {
  .ct-farm__main-img {
    width: 70%;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    transform: scale(1.4);
    padding-bottom: 8vw;
  }
  .ct-farm__main-img.home-robot4 {
    width: 140%;
    max-width: 550px;
    margin: 0;
    transform: scale(1) translateX(-50%);
    padding-bottom: 0;
    position: relative;
    left: 50%;
    margin-bottom: -4px;
  }
}
.ct-farm .container-new {
  position: relative;
  z-index: 2;
  padding: 60px 20px 0px 20px;
  margin: 0 auto;
  min-height: auto;
}
@media (max-width: 1024px) {
  .ct-farm .container-new {
    padding-bottom: 0;
    overflow: hidden;
    border-bottom: 1px solid #979797;
  }
}
@media (max-width: 767px) {
  .ct-farm .container-new {
    padding-top: 0;
  }
}
@media (max-width: 1024px) {
  .ct-farm__scroll {
    display: none;
  }
}
.ct-farm__download-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ct-farm__download-btns {
    flex-direction: column;
  }
}
.ct-farm__download-btns .btn--small-mobile {
  margin-left: 10px;
}
.ct-farm__download-btns .btn--download {
  max-width: 320px;
}
@media (max-width: 767px) {
  .ct-farm__download-btns .btn--download {
    max-width: 100%;
    width: 100%;
  }
}
.ct-farm__download-btns .btn--download:hover {
  color: #ffffff;
}
.ct-farm__play {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  transition: color 250ms ease;
  font-weight: bold;
  margin: 0 auto;
}
.ct-farm__play--second {
  margin: 30px auto 10px;
}
.ct-farm__play svg {
  fill: #f7931a;
  margin-right: 10px;
  transition: fill 250ms ease;
}
.ct-farm__play:hover {
  color: #f7931a;
}
.ct-farm__play:hover svg {
  fill: #f7931a;
}
@media (max-width: 767px) {
  .ct-farm__play {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
  }
}

.qr-code .ct-farm__main-img {
  position: absolute;
  bottom: 20px;
  left: calc(50% + 50px);
}
@media (max-width: 1024px) {
  .qr-code .ct-farm__main-img {
    position: static;
  }
}
.qr-code .title--second {
  font-size: 48px;
}
@media (max-width: 767px) {
  .qr-code .title--second {
    font-size: 28px;
  }
}
.qr-code .ct-farm__text {
  font-size: 18px;
}
.qr-code .container-new {
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .qr-code .container-new {
    padding-bottom: 0;
  }
}
.qr-code .ct-farm__play {
  margin: 0;
  margin-top: 10px;
}

.page_ru .ct-farm__text {
  font-size: 19px;
}

.home-robot4.ct-farm__main-img {
  margin-top: -50px;
}

.ct-farm .title {
  font-size: 64px;
}

.qr-code .title--second {
  font-size: 48px;
}

#news-section {
  padding-top: 80px;
}

.ct-farm__download-btns .btn-soon, .ct-farm__download-btns a {
  display: inline-flex !important;
}

.store-button-group .btn-soon, .store-button-group a, .ct-farm__download-btns .btn-soon, .ct-farm__download-btns a {
  display: inline-flex !important;
}

@media (max-width: 991px) {
  .store-button-group:not(.header__block-mob > .store-button-group), .ct-farm__download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .store-button-group:not(.header__block-mob > .store-button-group) a, .store-button-group:not(.header__block-mob > .store-button-group) button, .store-button-group:not(.header__block-mob > .store-button-group) .btn-soon, .ct-farm__download-btns a, .ct-farm__download-btns button, .ct-farm__download-btns .btn-soon {
    width: 100%;
    margin: 0 !important;
    max-width: none;
  }
}
.steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  counter-reset: steps;
}
@media only screen and (max-width: 820px) {
  .steps {
    max-width: 400px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .steps {
    max-width: none;
    margin-bottom: 0;
  }
}
.steps__arrow {
  position: absolute;
  top: 8px;
  left: 100%;
  display: block;
  width: 80px;
  height: 14px;
}
@media (max-width: 900px) {
  .steps__arrow {
    display: none;
  }
}
.steps__arrowMobile {
  display: none;
}
@media (max-width: 820px) {
  .steps__arrowMobile {
    position: absolute;
    left: 5px;
    display: block;
    width: 14px;
    height: 80px;
    bottom: -106px;
  }
}
.steps__item {
  position: relative;
  display: block;
  width: 180px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  counter-increment: steps;
  padding-top: 51px;
}
.steps__item:before {
  content: counter(steps);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  line-height: 22px;
  border: 2px solid #f7931a;
  border-radius: 50%;
  font-size: 17px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  color: #f7931a;
}
@media (max-width: 767px) {
  .steps__item:before {
    content: none;
  }
}
@media only screen and (max-width: 820px) {
  .steps__item {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .steps__item {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
  .steps__item:last-child {
    margin-bottom: 50px;
  }
}
.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 16px;
}
.steps__text {
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .steps__text {
    padding-left: 45px;
    position: relative;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .steps__text:before {
    content: counter(steps);
    box-sizing: border-box;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 22px;
    border: 2px solid #f7931a;
    border-radius: 13px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    left: 0;
    top: -4px;
    color: #f7931a;
  }
}

.news-page .ct-farm {
  padding-bottom: 695px;
}
.news-page .webview-container {
  margin-top: -695px;
}
.news-page li {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 768px) {
  .news-page li {
    font-size: 16px;
    line-height: 24px;
  }
}

.news {
  width: 100%;
  background-color: #f7f7f7;
  padding-bottom: 80px;
  border-top: 1px solid #d6d6d6;
}
@media (max-width: 768px) {
  .news {
    border-top: none;
  }
  .news#news-section {
    padding-bottom: 40px;
    padding-top: 50px;
  }
  .news#news-section .news-link-more {
    padding-top: 20px;
  }
}
.news__tag {
  max-width: 640px;
  margin: 0 auto 50px;
  padding: 30px 30px;
  border-radius: 4px;
  border: 1px solid #d6d6d6;
  background: #ffffff;
  text-align: center;
  font-size: 48px;
  line-height: 55px;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  .news__tag {
    font-size: 32px;
  }
}
@media screen and (max-width: 380px) {
  .news__tag {
    font-size: 24px;
    padding: 15px;
  }
}
.news--second {
  padding-top: 120px;
}
@media screen and (max-width: 1249px) {
  .news--second {
    padding-top: 180px;
  }
}
@media screen and (max-width: 1040px) {
  .news--second {
    padding-top: 60px;
  }
}
.news .container {
  display: block;
  min-height: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: inherit;
}
.news__title-link {
  text-decoration: none;
  color: inherit;
}
.news__title-link:hover .title {
  color: #f7931a;
}
.news .tac {
  text-align: center;
}
.news .title {
  display: block;
  margin: 0 auto 15px;
  font-size: 48px;
  line-height: 60px;
  min-width: 640px;
  text-align: center;
  transition: color 0.2s;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .news .title {
    min-width: auto;
    padding: 15px;
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
.news .title b {
  font-weight: bold;
}
.news .title span {
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .news .title span {
    display: none;
  }
}
.news .title--mid {
  font-size: 40px;
  line-height: 56px;
}
@media only screen and (max-width: 767px) {
  .news .title--mid {
    font-size: 32px;
    line-height: 36px;
  }
}
.news .title--size_s {
  padding: 11px 31px;
  min-width: 500px;
}
@media (max-width: 767px) {
  .news .title--size_s {
    min-width: auto;
  }
}
@media (max-width: 420px) {
  .news .title {
    display: block;
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 320px) {
  .news .title {
    font-size: 22px;
    line-height: 26px;
  }
}
.news .desc {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #494949;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .news .desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.news-block {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.news-block__category {
  border: 1px solid #A033CC;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  color: #A033CC;
  padding: 5px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.news-block__category--blue {
  color: #4285F4 !important;
  border-color: #4285F4;
}
@media (max-width: 1120px) {
  .news-block {
    justify-content: center;
  }
}
.news-block__item {
  border-radius: 6px;
  max-width: 340px;
  width: 100%;
  min-width: 280px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}
@media only screen and (max-width: 767px) {
  .news-block__item {
    margin: 10px 5px;
  }
}
.news-block__item:hover {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
.news-block__item:hover .news-block__img:after,
.news-block__item:hover .news-block__info,
.news-block__item:hover .news-block__footer {
  border-color: transparent;
}
.news-block__item:hover .news-block__title {
  color: #4285f4;
}
.news-block__item > a > div:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top: 1px solid #d6d6d6;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
}
.news-block__item a {
  text-decoration: none;
  color: inherit;
}
.news-block__img {
  position: relative;
  padding-bottom: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.news-block__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  max-width: 100%;
  vertical-align: top;
}
.news-block__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  border-width: 1px 1px 0px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: border-color 0.3s;
}
.news-block__info {
  position: relative;
  height: 208px;
  max-height: 208px;
  overflow: hidden;
  background-color: #fff;
  border-width: 0px 1px;
  border-style: solid;
  border-color: #d6d6d6;
  padding: 20px 20px 25px;
  transition: border-color 0.3s;
}
.news-block__info:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, #fff 20%, rgba(255, 255, 255, 0));
}
@media (max-width: 370px) {
  .news-block__info {
    max-height: 180px;
  }
  .news-block__info:after {
    height: 35px;
  }
}
.news-block__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  transition: color 0.3s;
}
@media (max-width: 370px) {
  .news-block__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.news-block__desc {
  font-size: 16px;
  line-height: 28px;
  color: #494949;
}
.news-block__desc a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.news-block__desc a:hover {
  color: #f7931a;
}
@media (max-width: 370px) {
  .news-block__desc {
    font-size: 14px;
    line-height: 22px;
  }
}
.news-block__footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-width: 0px 1px 1px;
  border-style: solid;
  border-color: #d6d6d6;
  transition: border-color 0.3s;
  color: #494949;
  padding-top: 15px;
}
.news-block__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px 15px;
}
.news-block__tags > a {
  color: #4285f4;
  margin-right: 10px;
  line-height: 28px;
  white-space: nowrap;
}
.news-block__tags > a:visited {
  color: #4285f4;
}
.news-block__tags > a:hover {
  color: #f7931a;
}
.news-block__date {
  padding: 0 20px 25px;
  font-size: 12px;
}
.news .pagination {
  margin-top: 30px;
  margin-bottom: 30px;
}
.news-link-more {
  padding-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .news .container {
    padding-top: 0;
  }
}
.news--recently-added {
  padding-bottom: 20px;
}
.news--recently-added .container {
  padding-top: 20px;
}
.news--recently-added .title {
  border: none;
  background-color: inherit;
  padding: 0;
  padding-top: 40px;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .news--recently-added .title {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .news--amp .container {
    padding-top: 40px;
  }
}
.news--block-page:not(.news--amp) .container {
  padding-top: 80px;
  padding-bottom: 50px;
}
.news--block-page:not(.news--amp) .news-block--main .news-block__item:nth-of-type(n + 7) {
  display: none;
}
@media (max-width: 768px) {
  .news--block-page:not(.news--amp) .container {
    padding-top: 40px;
  }
  .news--block-page:not(.news--amp) .title {
    font-size: 28px;
    line-height: 32px;
  }
  .news--block-page:not(.news--amp) .desc {
    font-size: 16px;
    line-height: 20px;
  }
}
.news__tabs {
  text-align: center;
}
@media (max-width: 760px) {
  .news__tabs {
    margin: 0 -10px;
  }
}
.news__tabs .news__tab-link {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .news__tabs .news__tab-link {
    margin-bottom: 20px;
  }
}
.news__tabs .news__tab-link:hover {
  cursor: pointer;
}
.news__tabs--second .news__tab-link {
  margin-bottom: 30px;
  font-size: 17px;
}
@media (max-width: 420px) {
  .news__tabs--second .news__tab-link {
    font-size: 14px;
  }
}
.news__tab-link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.1;
  color: #4285f4;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 40px;
  padding-bottom: 8px;
}
.news__tab-link:last-of-type {
  margin-right: 0;
}
.news__tab-link:hover {
  color: #f7931a;
}
.news__tab-link.active {
  color: #000;
  border-bottom: 4px solid #f7931a;
}
.news__tab-link.active span {
  color: #000;
  position: relative;
}
.news__tab-link.active span:before {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: #f7931a;
  left: 0;
  right: 0;
  bottom: -12px;
  border-radius: 6px;
}
@media (max-width: 480px) {
  .news__tab-link.active {
    border-bottom: 3px solid #f7931a;
  }
}
@media only screen and (max-width: 767px) {
  .news__tab-link {
    margin-right: 20px;
    margin-left: 10px;
  }
  .news__tab-link:last-of-type {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .news__tab-link {
    font-size: 14px;
  }
}
.news__tab-link span {
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #4285F4;
}
.news__tab-link:after {
  content: attr(data-total);
  position: absolute;
  font-size: 14px;
  line-height: 1;
  color: #757575;
  bottom: 12px;
  left: calc(100% + 7px);
}
@media only screen and (max-width: 767px) {
  .news__tab-link:after {
    bottom: 9px;
  }
}
@media (max-width: 768px) {
  .news-block__info {
    padding-top: 15px;
  }
  .news-block__date {
    padding-bottom: 20px;
    line-height: 14px;
  }
  .news-block__title {
    font-size: 18px;
    line-height: 28px;
  }
  .news-block__desc {
    font-size: 15px;
    line-height: 25px;
  }
  .news-block__tags > a {
    font-size: 15px;
    line-height: 25px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  #news-section .title {
    padding: 0;
    margin: 0 0 15px;
  }

  .page_news .header {
    margin-bottom: 0;
  }
  .page_news .news--second {
    padding-top: 50px;
  }
  .page_news .title {
    padding: 0;
    margin: 0 0 15px;
  }
}
.page .news {
  border-top: none;
}

.news-block__link {
  display: flex;
}
.news-block__link span {
  font-family: "Inter";
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0px;
  text-align: left;
}

.news-link-more a {
  font-weight: 700;
}

.news__tag {
  font-weight: 700;
}

.news-card {
  padding-top: 1px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 70px;
}
.news-card img {
  max-width: 100%;
  vertical-align: top;
}
.news-card .content {
  position: relative;
  margin-top: -563px;
  max-width: 620px;
  min-height: 563px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .news-card .content {
    margin-top: 0;
  }
}
.news-card .heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 4px;
  border-bottom: 1px solid #757575;
}
.news-card .heading .title {
  color: #d6d6d6;
  font-size: 24px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  margin: 0 15px 0 0;
}
.news-card .heading span {
  color: #4285f4;
  font-size: 13px;
  line-height: 15px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.news-card .heading:hover span {
  color: #f7931a;
}
@media (max-width: 768px) {
  .news-card .heading {
    padding-top: 20px;
    border: none;
  }
  .news-card .heading .title {
    color: #000;
  }
}
@media (max-width: 620px) {
  .news-card .heading {
    margin: 0;
  }
  .news-card .heading .title,
.news-card .heading span {
    margin-bottom: 10px;
  }
}
.news-card__container {
  border-radius: 3px;
  background-color: #fff;
  padding: 50px 40px 60px;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
  border-bottom: 15px solid #f7931a;
}
.news-card__container b {
  font-weight: bold;
}
.news-card__container p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .news-card__container p {
    font-size: 16px;
    line-height: 24px;
  }
}
.news-card__container p:last-child {
  margin-bottom: 0;
}
.news-card__container hr {
  margin: 0 -40px 40px;
  background-color: #D6D6D6;
  border: none;
  height: 1px;
}
.news-card__container .news__orange {
  background: #FFFDFD;
  border: 4px solid #F7931A;
  padding: 25px;
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
}
.news-card__container a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.news-card__container a:hover {
  color: #f7931a;
}
.news-card__container img {
  display: block;
  max-width: 60%;
  margin: 0 auto 30px;
}
.news-card__container .action-button {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  max-width: 280px;
  width: 100%;
  margin-top: 40px;
  padding: 20px 0;
  border-radius: 3px;
  background-color: #4285f4;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  transition-property: border-color, background-color, color;
  transition: 0.2s ease-in-out;
}
.news-card__container .action-button:hover {
  background-color: #f7931a;
  color: #fff;
  border-color: #f7931a;
}
@media (max-width: 600px) {
  .news-card__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-card__label {
  text-align: center;
  font-size: 16px;
  line-height: 17px;
  color: #f7931a;
  margin-bottom: 15px;
}
.news-card__title {
  color: #000;
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .news-card__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.news-card__subtitle {
  color: #000;
  font-size: 26px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .news-card__subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}
.news-card__img {
  margin: 0 -40px 30px;
}
.news-card__img:last-child {
  margin-bottom: 0;
}
.news-card__img img {
  max-width: 100%;
  vertical-align: top;
}
@media (max-width: 600px) {
  .news-card__img {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.news-card__text {
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .news-card__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.news-card__text:last-child {
  margin-bottom: 0;
}
.news-card__text--high {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 30px;
}
.news-card__text--medium {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.22px;
}
@media (max-width: 600px) {
  .news-card__text--medium {
    font-size: 15px;
    line-height: 26px;
  }
}
.news-card__text--small {
  color: #494949;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.19px;
}
@media (max-width: 600px) {
  .news-card__text--small {
    font-size: 14px;
    line-height: 24px;
  }
}
.news-card__quote {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 32px;
  color: #000;
  padding: 15px 20px;
  border-left: 6px solid #f7931a;
  background-color: #f7f7f7;
}
.news-card__separator {
  border-top: 1px solid #d6d6d6;
  margin: 40px -40px;
}
@media (max-width: 600px) {
  .news-card__separator {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.news-card__line {
  border-top: 1px solid #d6d6d6;
  margin: 40px -40px 40px 0;
}
@media (max-width: 600px) {
  .news-card__line {
    margin-right: -20px;
  }
}

.news-card .icon-circle img {
  max-width: 60px;
}

.news-card-steps__item {
  margin-bottom: 40px;
}
.news-card-steps__img {
  padding-left: 54px;
}

.card {
  display: block;
  width: 340px;
  background-color: #fff;
  padding: 25px;
  border-radius: 4px;
  border: 1px solid #d6d6d6;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  text-align: left;
  transition: all 0.3s;
}
.card:hover:not(.card_form) {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  border-color: transparent;
}
.card:hover:not(.card_form) .card__title {
  color: #4285f4;
}
.card:before {
  content: "";
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #fff 65%);
}
.card__header {
  padding: 30px;
}
.card__header-text {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #494949;
  margin-bottom: 40px;
  width: 100%;
}
.card__footer {
  background-color: #F7F7F7;
  padding: 20px;
  border-top: 1px solid #D6D6D6;
}
.card__title {
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s;
}
.card .title {
  font-size: 32px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}
.card__body {
  font-size: 16px;
  line-height: 1.75;
  color: #494949;
}
.card--second {
  text-align: center;
}
.card--second .title {
  text-align: center;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 30px;
}

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

/*
* Modificators
*/
.card_form {
  width: 100%;
  max-width: 500px;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  background-color: #fff;
  padding: 0;
  height: auto;
  margin-bottom: 80px;
}
.card_form .form {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.card_form h1 {
  display: block;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 24px;
  font-weight: bold;
  color: #000;
}
.card_form > p {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #494949;
  margin-bottom: 40px;
  width: 100%;
}

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

.card_error {
  text-align: center;
  max-width: 600px;
  padding: 40px 30px 30px;
  margin: 0 auto;
}
.card_error .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 290px;
}
.card_error .icon {
  margin-bottom: 20px;
}
.card_error .error-label {
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: #f7931a;
  margin-bottom: 20px;
}
.card_error .error-title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.1px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .card_error .error-title {
    font-size: 28px;
    line-height: 32px;
  }
}
.card_error .error-title--second {
  margin-bottom: 20px;
}
.card_error .btn {
  margin-top: auto;
  max-width: 300px;
  height: 50px;
  display: inline-flex;
  font-size: 15px;
  line-height: 17ex;
  text-align: center;
}

.free-farm {
  padding-bottom: 0;
  overflow: hidden;
}
.free-farm__icon {
  display: block;
  margin: 0 auto 20px;
}
.free-farm__text {
  margin-bottom: 40px;
  color: #9d9d9d;
}
.free-farm__btn {
  margin-bottom: 10px;
}
.free-farm__img {
  max-width: 1009px;
  margin: 0 auto;
  position: relative;
  left: 15px;
  margin-bottom: -3px;
}
@media (max-width: 767px) {
  .free-farm__img {
    left: 0;
    margin-bottom: -4px;
    width: 180%;
    max-width: 700px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .free-farm .title {
    text-align: center;
  }
}

.qr-code .free-farm .app-store-btn {
  display: none;
}

@media (max-width: 1024px) {
  .qr-code.android .free-farm .mac-link, .qr-code.android .free-farm .win-link, .qr-code.android .free-farm .dw-win, .qr-code.android .free-farm .dw-mac, .qr-code.ios .free-farm .mac-link, .qr-code.ios .free-farm .win-link, .qr-code.ios .free-farm .dw-win, .qr-code.ios .free-farm .dw-mac {
    display: none !important;
  }

  .qr-code.ios .free-farm .app-store-btn {
    display: inline-flex;
    max-width: none;
    width: 100%;
  }

  .qr-code.android .free-farm .google-play-btn {
    display: inline-flex;
  }
}
.faq {
  display: block;
  padding: 80px 20px 70px;
  background-color: #f7f7f7;
  text-align: center;
}
.faq__title-link {
  color: #000;
  transition: all 0.3s;
}
.faq__title-link:hover {
  color: #4285f4;
}
.faq--border-top {
  border-top: 1px solid #d6d6d6;
  border-bottom: none;
}
.faq--page {
  padding: 0 20px;
  border-bottom: none;
}

.faq__description {
  font-size: 18px;
  line-height: 24px;
  color: #494949;
  margin-bottom: 50px;
}

.page_ru.page_faq .faq-hide-list {
  display: none;
}

.faq__cards {
  display: flex;
  max-width: 1060px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.faq__cards .card__title {
  font-weight: 700;
}
.faq__cards .card {
  max-height: 300px;
  padding: 20px;
}
@media (max-width: 768px) {
  .faq__cards .card {
    padding: 20px;
  }
  .faq__cards .card.wow {
    visibility: visible !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
  .faq__cards .card__title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .faq__cards .card__body {
    font-size: 15px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 1100px) {
  .faq__cards {
    max-width: 700px;
  }
}
@media only screen and (max-width: 740px) {
  .faq__cards {
    max-width: 340px;
  }
}
.faq__all {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: #4285f4;
  text-decoration: none;
  font-weight: 700;
}
.faq__all svg {
  margin-left: 10px;
}

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

/*
* Style config 
*/
/*
* Layout
*/
.renewed-faq {
  font-family: Arial, sans-serif;
  width: 100%;
  min-height: 100%;
  background-color: #f7f7f7;
  color: #494949;
}
.renewed-faq,
.renewed-faq * {
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: inherit;
  font-family: Arial, sans-serif;
  line-height: normal;
  box-sizing: border-box;
}
.renewed-faq {
  padding-bottom: 50px;
}
.renewed-faq__theme-link {
  font-size: 16px;
  line-height: 18px;
  margin-left: 15px;
}
.renewed-faq__theme-link:before {
  content: url("../images/icon-faq-arrow.svg");
  margin-right: 15px;
  line-height: 18px;
}
.renewed-faq__theme-link b {
  font-weight: normal;
}
.renewed-faq-head {
  padding-bottom: 50px;
  max-width: 1170px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.renewed-faq-head h1 {
  color: #000;
  font-size: 48px;
  line-height: 53px;
  margin-bottom: 20px;
  font-weight: bold;
}
.renewed-faq-head .renewed-faq-subtitle {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 700px) {
  .renewed-faq-head {
    padding-bottom: 20px;
  }
  .renewed-faq-head h1 {
    font-size: 30px;
    line-height: normal;
  }
}
.renewed-faq-container {
  display: flex;
  max-width: 1210px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.renewed-faq-sidebar {
  flex: 0 0 auto;
  position: relative;
  width: 320px;
}
@media (max-width: 850px) {
  .renewed-faq-sidebar {
    width: 260px;
  }
}
@media (max-width: 700px) {
  .renewed-faq-sidebar {
    display: none;
  }
}
.renewed-faq-content, .renewed-faq-card__content {
  background-color: #fff;
  padding: 40px;
  width: 100%;
  border-radius: 2px;
}
@media (max-width: 700px) {
  .renewed-faq-content, .renewed-faq-card__content {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    border-radius: 0;
  }
}
.renewed-faq-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.renewed-faq-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.renewed-faq-section {
  padding-top: 1px;
}
.renewed-faq-section > h1:first-child {
  margin-bottom: -5px;
}
.renewed-faq-block {
  padding-top: 1px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}
.renewed-faq-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.renewed-faq-block div[itemprop=acceptedAnswer] {
  border: 1px solid #d6d6d6;
  padding: 20px;
  position: relative;
  margin-top: 20px;
}
.renewed-faq-block div[itemprop=acceptedAnswer]:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-left: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
  top: -7px;
  left: 60px;
  background-color: #fff;
  transform: rotate(45deg);
}

/*
* Text styles
*/
.renewed-faq-section:first-child h1 {
  margin-top: 40px;
}

.renewed-faq-content, .renewed-faq-card__content {
  /*
  * Titles
  */
  /*
  * Texts
  */
  /*
  * Lists
  */
  /*
  * Levels
  */
}
.renewed-faq-content h1, .renewed-faq-card__content h1,
.renewed-faq-content h2,
.renewed-faq-card__content h2,
.renewed-faq-content h3,
.renewed-faq-card__content h3 {
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}
.renewed-faq-content h1 a, .renewed-faq-card__content h1 a,
.renewed-faq-content h2 a,
.renewed-faq-card__content h2 a,
.renewed-faq-content h3 a,
.renewed-faq-card__content h3 a {
  word-break: normal;
  color: #000;
  transition: color 0.3s;
}
.renewed-faq-content h1 a:hover, .renewed-faq-card__content h1 a:hover,
.renewed-faq-content h2 a:hover,
.renewed-faq-card__content h2 a:hover,
.renewed-faq-content h3 a:hover,
.renewed-faq-card__content h3 a:hover {
  color: #4285f4;
}
.renewed-faq-content h1, .renewed-faq-card__content h1 {
  font-weight: bold;
  color: #f7931a;
  border-bottom: 5px solid #f7931a;
  padding-bottom: 4px;
}
.renewed-faq-content h1, .renewed-faq-card__content h1,
.renewed-faq-content .h1,
.renewed-faq-card__content .h1 {
  font-size: 36px;
}
.renewed-faq-content h2, .renewed-faq-card__content h2,
.renewed-faq-content .h2,
.renewed-faq-card__content .h2 {
  font-size: 32px;
}
.renewed-faq-content h3, .renewed-faq-card__content h3,
.renewed-faq-content .h3,
.renewed-faq-card__content .h3 {
  font-size: 28px;
}
.renewed-faq-content h4, .renewed-faq-card__content h4,
.renewed-faq-content .h4,
.renewed-faq-card__content .h4 {
  font-size: 21px;
}
.renewed-faq-content h5, .renewed-faq-card__content h5,
.renewed-faq-content .h5,
.renewed-faq-card__content .h5 {
  font-size: 14px;
}
.renewed-faq-content h6, .renewed-faq-card__content h6,
.renewed-faq-content .h6,
.renewed-faq-card__content .h6 {
  font-size: 12px;
}
@media (max-width: 700px) {
  .renewed-faq-content h1, .renewed-faq-card__content h1,
.renewed-faq-content .h1,
.renewed-faq-card__content .h1 {
    font-size: 30px;
  }
  .renewed-faq-content h2, .renewed-faq-card__content h2,
.renewed-faq-content .h2,
.renewed-faq-card__content .h2 {
    font-size: 26px;
  }
  .renewed-faq-content h3, .renewed-faq-card__content h3,
.renewed-faq-content .h3,
.renewed-faq-card__content .h3 {
    font-size: 22px;
  }
  .renewed-faq-content h4, .renewed-faq-card__content h4,
.renewed-faq-content .h4,
.renewed-faq-card__content .h4 {
    font-size: 18px;
  }
}
.renewed-faq-content p, .renewed-faq-card__content p {
  font-size: 16px;
  line-height: 22px;
  margin: 10px 0 20px;
}
.renewed-faq-content b, .renewed-faq-card__content b {
  font-weight: bold;
}
.renewed-faq-content a, .renewed-faq-card__content a {
  display: inline-block;
  color: #4285f4;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s;
}
.renewed-faq-content a:hover, .renewed-faq-card__content a:hover {
  color: #f7931a;
}
.renewed-faq-content ul, .renewed-faq-card__content ul {
  list-style: disc;
}
.renewed-faq-content ol, .renewed-faq-card__content ol {
  list-style: decimal;
}
.renewed-faq-content ul, .renewed-faq-card__content ul,
.renewed-faq-content ol,
.renewed-faq-card__content ol {
  margin-top: 0;
  margin-bottom: 20px;
  list-style-position: inside;
}
.renewed-faq-content ul li, .renewed-faq-card__content ul li,
.renewed-faq-content ol li,
.renewed-faq-card__content ol li {
  font-size: 14px;
  line-height: 1.42857143;
  margin-bottom: 5px;
}
.renewed-faq-content ul ul, .renewed-faq-card__content ul ul,
.renewed-faq-content ul ol,
.renewed-faq-card__content ul ol,
.renewed-faq-content ol ul,
.renewed-faq-card__content ol ul,
.renewed-faq-content ol ol,
.renewed-faq-card__content ol ol {
  margin-top: 10px;
  margin-bottom: 15px;
  padding-left: 20px;
}
.renewed-faq-content .renewed-faq-referral-levels tr, .renewed-faq-card__content .renewed-faq-referral-levels tr {
  margin: 0;
}
.renewed-faq-content .renewed-faq-referral-levels tr th, .renewed-faq-card__content .renewed-faq-referral-levels tr th {
  font-weight: bold;
  color: #000;
  padding: 10px 0;
  font-size: 14px;
}
.renewed-faq-content .renewed-faq-referral-levels tr th:first-child, .renewed-faq-card__content .renewed-faq-referral-levels tr th:first-child {
  text-align: left;
}
.renewed-faq-content .renewed-faq-referral-levels tr td, .renewed-faq-card__content .renewed-faq-referral-levels tr td {
  vertical-align: middle;
  font-size: 16px;
  line-height: 22px;
  min-width: 100px;
}
.renewed-faq-content .renewed-faq-referral-levels tr td:first-child, .renewed-faq-card__content .renewed-faq-referral-levels tr td:first-child {
  padding-right: 15px;
}
.renewed-faq-content .renewed-faq-referral-levels tr td:last-child, .renewed-faq-card__content .renewed-faq-referral-levels tr td:last-child {
  font-weight: bold;
  color: #f7931a;
  text-align: center;
}

/*
* Navigation
*/
.renewed-faq-navigation {
  position: sticky;
  top: 0;
  width: 320px;
  height: auto;
  max-height: 100vh;
  overflow: auto;
  padding-right: 15px;
  background-color: #f7f7f7;
}
@media (max-width: 850px) {
  .renewed-faq-navigation {
    width: 260px;
  }
}
.renewed-faq-navigation.renewed-faq-navigation-normal {
  position: sticky;
}
.renewed-faq-navigation.renewed-faq-navigation-fixed {
  position: sticky;
  z-index: 2;
}
.renewed-faq-navigation .renewed-faq-sidenavigation {
  border-top: 5px solid #f7931a;
  padding-bottom: 20px;
}
.renewed-faq-navigation .renewed-faq-sidenavigation > li {
  border-bottom: 1px solid #d6d6d6;
}
.renewed-faq-navigation .renewed-faq-sidenavigation > li.active {
  padding-bottom: 15px;
}
.renewed-faq-navigation .renewed-faq-sidenavigation > li > a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 4px;
  background-color: #f7931a;
}
.renewed-faq-navigation ul {
  list-style: none;
}
.renewed-faq-navigation ul li {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.renewed-faq-navigation ul li ul {
  height: 0;
  overflow: hidden;
}
.renewed-faq-navigation ul li ul a {
  padding: 8px 15px;
  font-size: 78%;
  color: #494949;
  font-weight: normal;
}
.renewed-faq-navigation ul li ul a:hover {
  background-color: #4285f4;
  color: #fff;
}
.renewed-faq-navigation ul li.active > a svg {
  stroke: #f7931a;
  transform: rotate(90deg);
}
.renewed-faq-navigation ul li.active ul {
  height: auto;
  overflow: visible;
}
.renewed-faq-navigation ul li.active ul .active a {
  color: #f7931a;
}
.renewed-faq-navigation ul li.active ul .active a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 4px;
  background-color: #f7931a;
}
.renewed-faq-navigation ul a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 15px 0;
  color: inherit;
  border-radius: 2px;
  transition: color 0.15s, background-color 0.15s;
}
.renewed-faq-navigation ul a:hover {
  color: #f7931a;
}
.renewed-faq-navigation ul a:hover svg {
  stroke: #f7931a;
}
.renewed-faq-navigation ul a svg {
  flex: 0 0 7px;
  max-width: 7px;
  width: 100%;
  margin-right: 9px;
  stroke: #a4a4a4;
  transition: stroke 250ms ease, transform 250ms ease;
}

/*
* Popup
*/
.renewed-faq-overlay {
  font-family: "Inter", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s 0.3s, opacity 0.3s 0s;
}
.renewed-faq-overlay.show {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s 0s, opacity 0.3s 0s;
}
.renewed-faq-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  border: none;
  background: none;
  outline: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 720px) {
  .renewed-faq-overlay__close {
    top: 10px;
    color: #494949;
  }
}

.renewed-faq-popup {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 700px;
  background-color: #fff;
  color: #494949;
  border-radius: 4px;
}
@media (max-width: 720px) {
  .renewed-faq-popup {
    padding-top: 50px;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.renewed-faq-popup__head {
  padding: 0 20px;
  margin-bottom: 20px;
}
.renewed-faq-popup__title {
  font-size: 24px;
  font-weight: bold;
}
.renewed-faq-popup__content {
  padding: 0 20px;
}
.renewed-faq-popup__text {
  font-size: 14px;
  line-height: 21px;
}
.renewed-faq-popup__popular-question {
  padding-top: 20px;
  padding-left: 40px;
  padding-bottom: 20px;
  list-style: none;
}
.renewed-faq-popup__popular-question li {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 3px;
}
.renewed-faq-popup__popular-question li:last-child {
  margin-bottom: 0;
}
.renewed-faq-popup__popular-question li.last {
  padding-top: 7px;
}
.renewed-faq-popup__popular-question li.last span {
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.renewed-faq-popup__popular-question li.last span:hover {
  color: #f7931a;
}
.renewed-faq-popup__popular-question a {
  color: #f7931a;
  transition: color 0.2s;
}
.renewed-faq-popup__popular-question a:hover {
  color: #494949;
}
.renewed-faq-popup__contact {
  margin-top: 20px;
  display: inline-block;
  color: #4285f4;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.renewed-faq-popup__contact:hover {
  color: #f7931a;
}
.renewed-faq-popup__actions {
  padding: 40px 20px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .renewed-faq-popup__actions {
    display: block;
    text-align: center;
  }
}
.renewed-faq-popup__action {
  cursor: pointer;
  outline: none;
  padding: 7px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  font-size: 14px;
  color: inherit;
  border-radius: 4px;
  border: 1px solid #494949;
  transition: all 0.2s;
}
.renewed-faq-popup__action:hover {
  background-color: #f7931a;
  color: #fff;
  border-color: #f7931a;
}
.renewed-faq-popup__action:active {
  opacity: 0.7;
}
@media (max-width: 600px) {
  .renewed-faq-popup__action {
    margin-bottom: 20px;
  }
}

/*
* One question page
*/
.renewed-faq-one {
  width: 100%;
  max-width: 1080px;
  margin: -25px auto 0px;
  padding-top: 0px;
  padding-bottom: 60px;
}
@media (max-width: 1080px) {
  .renewed-faq-one {
    margin: 20px 0px 0px;
  }
}
.renewed-faq-one .renewed-faq-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  list-style: none;
  margin-bottom: 10px;
}
.renewed-faq-one .renewed-faq-breadcrumbs li {
  margin-bottom: 10px;
}
.renewed-faq-one .renewed-faq-breadcrumbs .separator {
  margin: 0 15px;
  width: 4px;
  height: 18px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAUCAYAAAC58NwRAAAAAXNSR0IArs4c6QAAAKhJREFUKBWlkw0KhCAQhXfsFB5pO0YEepgOoBDdIjqezYuSdDUndkD8e9/4ZJRCCOS9/344jDEbEQWMa6EgZmhFc87NSFATY11lm0MLUrDB0HIDH6HjeNhAZoaGG7hYa8f8TtGvFIoAMkugBJBAP0ATgqAUNXt5HUpssva/pZqVqybJCS0xvEVAIo6AVHwAb8QAOq11z/2EyRnFR3dt5nV4FAMiWHrzRXf3Spv/DBCPbwAAAABJRU5ErkJggg==");
  background-size: 4px 8px;
  background-repeat: no-repeat;
  background-position: center center;
}
.renewed-faq-one .renewed-faq-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.renewed-faq-one .renewed-faq-breadcrumbs a:hover {
  color: #4285f4;
}
.renewed-faq-one .renewed-faq-breadcrumbs span {
  font-weight: normal;
}
@media (max-width: 1100px) {
  .renewed-faq-one .renewed-faq-breadcrumbs {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
* Card
*/
.renewed-faq-card {
  width: 100%;
  max-width: 1080px;
  background-color: #fff;
  border-radius: 4px;
  margin: 0 auto;
  border-top: none;
}
.renewed-faq-card__text-block {
  padding: 50px 0 40px;
  border-right: 1px solid #D6D6D6;
  border-left: 1px solid #D6D6D6;
}
.renewed-faq-card__content {
  padding: 0px;
}
.renewed-faq-card__content h1 {
  margin: 0;
  padding: 50px 70px;
  background-color: #4285f4;
  color: #fff;
  font-size: 48px;
  line-height: var(--font-line-hight-5xl, 60px);
  font-weight: 800;
  border-radius: 20px 20px 0 0;
  border: none;
}
.renewed-faq-card__content p {
  padding: 0 100px;
  font-size: 18px;
  line-height: 32px;
}
.renewed-faq-card__content table {
  margin-left: 100px;
  margin-right: 100px;
}
.renewed-faq-card__content ul,
.renewed-faq-card__content ol {
  padding: 0 100px;
}
.renewed-faq-card__content ul li,
.renewed-faq-card__content ol li {
  font-size: 18px;
  margin-bottom: 10px;
}
.renewed-faq-card__sharing {
  border: 1px solid #d6d6d6;
  padding: 50px 100px 60px;
  border-radius: 0px 0px 4px 4px;
  text-align: center;
}
.renewed-faq-card__sharing > p {
  font-size: 14px;
  line-height: 14px;
  color: #494949;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 20px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .renewed-faq-card__sharing {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }
  .renewed-faq-card__content {
    margin-left: 0;
    margin-right: 0;
  }
  .renewed-faq-card__content h1 {
    font-size: 28px;
    line-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .renewed-faq-card__content table {
    margin-left: 20px;
    margin-right: 20px;
  }
  .renewed-faq-card__content p,
.renewed-faq-card__content ul,
.renewed-faq-card__content ol {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
* FAQ Search
*/
.renewed-faq .gsc-results-wrapper-overlay {
  position: static !important;
  width: auto;
  height: auto;
  box-shadow: none;
  padding: 10px 0 30px;
}
.renewed-faq .gsc-results-close-btn,
.renewed-faq .gsc-results-close-btn-visible,
.renewed-faq .gsc-modal-background-image {
  display: none;
}
.renewed-faq .gsc-search-box-tools .gsc-search-box .gsc-input {
  padding-right: 0;
}
.renewed-faq .gsc-search-box-tools .gsc-search-box .gsc-input::placeholder {
  color: transparent;
}
.renewed-faq .gsc-input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
  height: 40px;
  border: 1px solid #cecece;
  border-right: none;
  border-radius: 2px 0 0 2px;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}
.renewed-faq .gsc-input-box-hover, .renewed-faq .gsc-input-box-focus {
  box-shadow: none;
}
.renewed-faq .gsc-input-box-focus {
  border-color: #4285f4;
}
.renewed-faq form.gsc-search-box {
  margin-bottom: 8px;
}
.renewed-faq .gsst_a {
  padding-top: 5px;
}
.renewed-faq .gsst_b {
  width: 28px;
}
.renewed-faq td.gsc-search-button {
  margin-left: 0;
}
.renewed-faq .gsc-search-button-v2 {
  height: 40px;
  border-radius: 0;
  outline: 0;
  margin-left: 0;
  background-color: #4285f4;
  border-color: #4285f4;
  border-radius: 0 2px 2px 0;
  transition: background-color 0.3s, border-color 0.3s;
}
.renewed-faq .gsc-search-button-v2:hover {
  background-color: #f7931a;
  border-color: #f7931a;
}
.renewed-faq .gsc-search-button-v2:focus {
  box-shadow: none;
}
.renewed-faq .gsib_a {
  padding-left: 15px;
}
.renewed-faq .gsc-selected-option-container {
  display: inline-flex;
  align-items: center;
}
.renewed-faq .gsc-control-cse {
  padding: 0;
  border: none;
}
.renewed-faq .gs-snippet {
  padding-left: 8px;
}
.renewed-faq .si22,
.renewed-faq .si15 {
  color: #4285f4;
}
.renewed-faq a.styleable-title,
.renewed-faq a.gs-title {
  color: #4285f4;
  transition: color 0.3s;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 2px;
}
.renewed-faq a.styleable-title b,
.renewed-faq a.gs-title b {
  transition: color 0.3s;
  text-decoration: none;
}
.renewed-faq a.styleable-title:visited,
.renewed-faq a.gs-title:visited {
  color: #1800ae;
}
.renewed-faq a.styleable-title:hover,
.renewed-faq a.gs-title:hover {
  color: #f7931a;
}
.renewed-faq.show-results .renewed-faq-section,
.renewed-faq.show-results .renewed-faq-video {
  display: none;
}
.renewed-faq.show-results .renewed-faq-search {
  display: block;
}

.renewed-faq-search-field {
  text-align: right;
  padding-bottom: 20px;
}

.renewed-faq-search {
  margin-top: -10px;
  display: none;
}
.renewed-faq-search h2 {
  margin: 0 0 25px;
  font-size: 36px;
  line-height: 40px;
}

.page_faq.gsc-overflow-hidden {
  overflow: auto;
}

.video-block {
  text-align: center;
  background-color: #fff;
  padding: 80px 20px 0 20px;
}
.video-block .tripple-arrow {
  max-width: 50px;
  margin-top: 35px;
  margin-right: auto;
  margin-left: auto;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .video-block .tripple-arrow {
    display: none;
  }
}
.video-block .web-version-btn {
  border: none;
}
@media (max-width: 767px) {
  .video-block .web-version-btn {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .video-block {
    padding: 40px 0;
    border-bottom: 1px solid #d6d6d6;
  }
}
.video-block__text {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .video-block__text {
    margin-bottom: 40px;
  }
}
.video-block__content {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .video-block__content {
    margin-bottom: 30px;
  }
}
.video-block .subtitle {
  color: #fff;
  margin-bottom: 25px;
}
.video-block__text {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #494949;
  text-align: center;
}
@media (max-width: 768px) {
  .video-block__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.video-block__video {
  display: block;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .video-block__video {
    margin-bottom: 0;
  }
}
.video-block__video-wrap {
  position: relative;
  padding-bottom: 56.37%;
  height: 0;
  overflow: hidden;
}
.video-block__video-wrap amp-iframe,
.video-block__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 500px) {
  .video-block__video-wrap {
    width: 100%;
  }
}

.sticky-sharing {
  display: block;
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .sticky-sharing {
    display: none;
  }
}
.sticky-sharing .social-btns {
  max-width: 40px;
}
.sticky-sharing .social-btns > .social-btn {
  margin-right: 0;
  margin-bottom: 5px;
}
.sticky-sharing .social-btns__list {
  transform: none;
  left: -2px;
  top: auto;
  bottom: 44px;
}

.use {
  overflow: hidden;
}
.use .container {
  max-width: 1140px;
}
.use .container-new {
  padding-bottom: 0;
}
.use__block {
  max-width: 600px;
  position: relative;
  min-height: 479px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .use__block {
    margin: 0 auto;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .use__block {
    padding-top: 40px;
  }
}
.use__block--second {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .use__block--second {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.use__block--qr {
  min-height: 370px !important;
}
.use__title {
  font-size: 40px;
  line-height: 56px;
}
.use__title a {
  transition: color 0.3s;
}
.use__title a:hover {
  color: #f7931a;
}
.use__wrap-btn {
  display: flex;
}
@media (max-width: 767px) {
  .use__wrap-btn {
    flex-direction: column;
  }
}
.use__wrap-btn .use__btn {
  margin-right: 10px;
}
.use__wrap-btn .use__btn:last-of-type {
  margin-right: 0;
}
.use__wrap-btn--second {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .use__wrap-btn--second {
    flex-direction: column;
  }
}
.use__img {
  position: absolute;
  right: calc(-100% - 306px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 816px;
}
@media (max-width: 1024px) {
  .use__img {
    position: relative;
    top: 0;
    transform: translateY(85px);
    left: 0;
  }
}
@media (max-width: 767px) {
  .use__img {
    transform: translateY(0);
    max-width: 375px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.use__text {
  margin-bottom: 30px;
  line-height: 26px;
}
.use__text--light {
  color: #AACAFF;
}
@media (max-width: 767px) {
  .use__list {
    margin-bottom: 30px;
  }
}
.use__item {
  display: flex;
  align-items: flex-start;
}
.use__item:not(:last-child) {
  margin-bottom: 20px;
}
.use__subtitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 5px;
  padding-top: 3px;
}
.use__icon {
  flex: 0 0 auto;
  margin-right: 15px;
}
.use__item-text {
  font-size: 14px;
  line-height: 1.5;
  color: #494949;
}
.use__arrow {
  display: none;
}
@media (max-width: 767px) {
  .use__arrow {
    display: block;
    width: 60px;
    margin: 0 auto 40px;
  }
}
.use__btn {
  min-width: 240px;
  width: auto;
}
.use--danger {
  background-color: #4285f4;
}
.use--danger .app-store-btn,
.use--danger .google-play-btn,
.use--danger .web-version-btn {
  border: none;
}
.use--danger .text_opacity {
  color: rgba(0, 0, 0, 0.5);
}
.use--danger .use__wrap-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .use--danger {
    background-color: #fff;
    border-bottom: 50px solid #f7931a;
    border-top: 1px solid #d6d6d6;
  }
}
.use--danger .use__block {
  max-width: 1080px;
  min-height: 580px;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
}
@media (max-width: 1024px) {
  .use--danger .use__block {
    margin: 0 auto;
    padding: 40px 20px 0;
  }
}
@media (max-width: 767px) {
  .use--danger .use__block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .use--danger .use__block .title {
    color: #000;
  }
  .use--danger .use__block .text {
    color: inherit;
    opacity: 1;
    text-align: left;
  }
}
.use--danger .use__img {
  right: calc(100% + 120px);
  width: 100%;
  max-width: 400px;
  position: static;
  transform: translateY(0);
  margin: 45px auto -3px;
}
@media (max-width: 1024px) {
  .use--danger .use__img {
    right: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .use--danger .use__img {
    max-width: 300px;
    margin-top: 40px;
  }
}

.use--img-left, .use--img-right {
  padding-bottom: 60px;
}
@media (max-width: 1024px) {
  .use--img-left, .use--img-right {
    padding-top: 0;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .use--img-left, .use--img-right {
    padding-bottom: 0;
  }
}
.use--img-left:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .use--img-left:last-of-type {
    margin-bottom: -40px;
  }
}
.use--img-left .use__block {
  max-width: 520px;
  margin-left: auto;
  min-height: 479px;
}
@media (max-width: 1024px) {
  .use--img-left .use__block {
    margin-left: auto;
    padding-bottom: 40px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .use--img-left .use__block {
    padding-left: 0;
    padding-right: 0;
  }
  .use--img-left .use__block .use__wrap-btn--second {
    margin-bottom: 30px;
  }
}
.use--img-left .use__img {
  right: calc(100% + 120px);
}
@media (max-width: 1024px) {
  .use--img-left .use__img {
    right: 0;
    max-width: 100%;
    transform: none;
  }
}
@media (max-width: 767px) {
  .use--img-left .use__img {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .use--img-left .use__img--second {
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .use--img-left .use__text {
    margin-bottom: 30px;
  }
}

.use--img-right .use__block {
  max-width: 520px;
}
@media (max-width: 1024px) {
  .use--img-right .use__block {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.use--img-right .use__img {
  left: calc(100% + 120px);
  right: auto;
}
@media (max-width: 1024px) {
  .use--img-right .use__img {
    left: 0;
    transform: none;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .use--img-right .use__img {
    max-width: 300px;
  }
}

.connect {
  max-width: 100%;
  width: 100%;
  transition: all 250ms ease-in-out;
  padding-bottom: 20px;
}
.connect .steps {
  margin-top: 20px;
  margin-bottom: 60px;
}
.connect--install {
  padding-bottom: 60px;
}
.connect.hide {
  opacity: 0;
  visibility: hidden;
  max-height: 757px;
}
@media (max-width: 1024px) {
  .connect.hide {
    max-height: 1000px;
  }
}
.connect .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.connect .title {
  text-align: center;
  margin-bottom: 20px;
}
.connect__danger {
  padding: 20px 15px 30px;
  background-color: #ffeeef;
  border: 2px solid #f74249;
  border-radius: 4px;
  margin-bottom: 20px;
  margin-top: -50px;
  display: none;
}
@media (max-width: 767px) {
  .connect__danger {
    display: block;
    margin-top: 0;
  }
}
.connect__danger-img {
  display: block;
  margin: 0 auto;
}
.connect__danger-text {
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 30px;
}
.connect__danger-text strong {
  color: #f74249;
  font-weight: bold;
}
.connect__block {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  padding-top: 40px;
}
.connect__text {
  margin-bottom: 40px;
  max-width: 900px;
  text-align: center;
}
.connect__text--second {
  margin-bottom: 40px;
}
.connect__text a {
  font-weight: bold;
}
.connect__text a:hover {
  color: #f7931a;
}
.connect__btn {
  margin-bottom: 60px;
}
.connect__btn.btn_simple {
  font-size: 15px;
  text-transform: uppercase;
  color: #4285f4;
  max-width: 300px;
  height: 50px;
  margin-right: 20px;
  transition: all 250ms;
}
.connect__btn.btn_simple:last-of-type {
  margin-right: 0;
}
.connect__btn.btn_simple:hover {
  background-color: #4285f4;
  color: #fff;
}
.connect__btn.btn_simple:hover svg {
  fill: #fff;
}
.connect__btn svg {
  margin-right: 10px;
  fill: #4285f4;
  transition: fill 300ms;
}
.connect__subtitle {
  color: #f7931a;
  font-size: 18px;
  line-height: 20px;
  margin: 20px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .connect__subtitle {
    font-size: 18px;
    line-height: 20px;
  }
}
.connect__help {
  font-size: 32px;
  line-height: 1.375;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}
.connect__btn-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .connect__btn-wrap {
    flex-wrap: wrap;
  }
  .connect__btn-wrap .connect__btn {
    margin-right: 0;
  }
}
.connect__btn-wrap .connect__btn {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .connect__btn-wrap .connect__btn {
    margin-bottom: 20px;
  }
}
.connect-items-holder {
  min-height: 350px;
}
.connect__items {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .connect__items {
    flex-direction: column;
    align-items: center;
  }
}
.mac .connect__items.mac {
  display: flex;
}

.win .connect__items.win {
  display: flex;
}

.connect__item {
  position: relative;
  max-width: calc(33% - 10px);
  flex: 0 0 calc(33% - 10px);
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  min-height: 260px;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}
@media only screen and (max-width: 1023px) {
  .connect__item {
    max-width: 340px;
    flex: 0 0 340px;
    min-height: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .connect__item {
    margin-right: 0;
    max-width: 260px;
    flex: 0 0 260px;
  }
}
.connect__item:last-of-type {
  margin-right: 0;
}
.connect__item-text {
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .connect__item-text {
    font-size: 18px;
  }
}
.connect__number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f7931a;
  border-radius: 50%;
  color: #f7931a;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
}
.connect__number--second {
  background-color: #fff;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.connect__wrap-img {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.connect__blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1108px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .connect__blocks {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    align-items: center;
  }
}
.connect__option {
  flex: 0 0 342px;
  max-width: 342px;
  width: 100%;
  position: relative;
  padding: 20px;
  padding-bottom: 40px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  margin-left: 20px;
  background-color: #fff;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .connect__option {
    flex: 0 0 330px;
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .connect__option {
    flex: 0 0 280px;
    max-width: 280px;
    margin-left: 0;
  }
}
.connect__option:first-of-type {
  margin-left: 0;
}
.connect__option-title {
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin-top: 20px;
}
.connect__option-text {
  font-size: 16px;
  line-height: 30px;
  color: #494949;
  word-break: break-word;
  margin-top: 10px;
}
.connect__option-text a:hover {
  color: #f7931a;
}
.connect__option-image-holder {
  position: relative;
  display: block;
  padding-top: 120%;
}
.connect__option-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.connect__alert {
  font-size: 18px;
  line-height: 30px;
  color: #494949;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
}
.connect__alert b {
  color: #f74249;
}

.finish-installing-hint {
  position: fixed;
  bottom: auto;
  left: auto;
  top: 90px;
  right: 15px;
  z-index: 99;
  max-width: 700px;
  width: calc(100% - 30px);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 40px 10px 15px;
  color: #d6d6d6;
  font-size: 20px;
  line-height: 28px;
  transition: opactiy 250ms ease;
  display: flex;
  align-items: center;
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .finish-installing-hint {
    display: none;
  }
}
.finish-installing-hint--second {
  opacity: 0;
  visibility: hidden;
}
.finish-installing-hint--second.active {
  visibility: visible;
  animation: fadeIn 1s linear 250ms forwards;
}
.finish-installing-hint b {
  font-weight: bold;
}
.finish-installing-hint span,
.finish-installing-hint b,
.finish-installing-hint strong {
  color: #fff;
}
.finish-installing-hint:before {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../images/logo-farm.svg");
  background-size: 100% 100%;
  margin-right: 15px;
}
.finish-installing-hint__close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.571 5L0 1.429 1.429 0 5 3.571 8.571 0 10 1.429 6.429 5 10 8.571 8.571 10 5 6.429 1.429 10 0 8.571z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E");
  transition: 0.2s;
}
.finish-installing-hint__close:hover {
  opacity: 1;
}
.finish-installing-hint__arrow {
  position: absolute;
  bottom: auto;
  left: auto;
  right: 120px;
  top: -85px;
  transform: none;
  transform-origin: center;
}

.firefox .finish-installing-hint,
.safari .finish-installing-hint,
.opera .finish-installing-hint {
  bottom: auto;
  left: auto;
  top: 90px;
  right: 15px;
}
.firefox .finish-installing-hint__arrow,
.safari .finish-installing-hint__arrow,
.opera .finish-installing-hint__arrow {
  bottom: auto;
  left: auto;
  right: 120px;
  top: -85px;
  transform: none;
}

.safari .finish-installing-hint__arrow {
  right: 105px;
}

.opera .finish-installing-hint__arrow {
  right: 8px;
}

.firefox .finish-installing-hint ._below,
.safari .finish-installing-hint ._below,
.opera .finish-installing-hint ._below {
  display: none;
}

.chrome .finish-installing-hint ._above,
.ie .finish-installing-hint ._above,
.edge .finish-installing-hint ._above {
  display: none;
}

.ie .finish-installing-hint__arrow,
.edge .finish-installing-hint__arrow {
  display: none;
}

.block-connect {
  margin-bottom: 60px;
}
.block-connect--second {
  padding-bottom: 30px;
  text-align: center;
}
.block-connect--qr {
  padding-top: 0;
  border: none;
}
.block-connect--qr .block-connect__btn-wrap {
  padding-bottom: 0;
}
.block-connect__title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.block-connect__text {
  padding-left: 40px;
  padding-right: 40px;
  font-family: "Inter";
  font-size: 16px;
  color: #494949;
  letter-spacing: 0.16px;
  text-align: center;
  line-height: 26px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .block-connect__text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.block-connect__text b,
.block-connect__text strong {
  font-weight: bold;
  color: #000;
}
.block-connect__text p {
  font-family: "Arial", sans-serif;
}
.block-connect__text-check-id {
  transition: display 0.3s ease-in-out;
}
.block-connect__text-check-id.hide {
  display: none;
}
.block-connect__text .error {
  position: absolute;
  width: 100%;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #f74249;
  letter-spacing: 0.05px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 300ms ease;
}
.block-connect__text .error.active {
  opacity: 1;
  visibility: visible;
}
.block-connect__text .error.active:last-child {
  bottom: -20px;
}
.block-connect__icon {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 20px;
}
.block-connect__title-form {
  font-size: 12px;
  color: #757575;
  letter-spacing: 0.05px;
  text-align: center;
  margin-bottom: 15px;
}
.block-connect__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 29px;
  margin-bottom: 30px;
}
.block-connect__input-wrap .error {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #f74249;
  letter-spacing: 0.05px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 300ms ease;
}
.active .block-connect__input-wrap .error:not(.error--second) {
  opacity: 1;
  visibility: visible;
}

.block-connect__recapcha {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.block-connect__recapcha .error {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #f74249;
  letter-spacing: 0.05px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 300ms ease;
}
.block-connect__recapcha.error .error {
  opacity: 1;
  visibility: visible;
}
.block-connect__input {
  border: none;
  width: 40px;
  color: #000;
  font-size: 24px;
  letter-spacing: 0.07px;
  text-align: center;
  border-bottom: 1px solid #cdcdcd;
  margin-right: 15px;
  padding-bottom: 12px;
  transition: border 300ms ease;
}
.block-connect__input:focus {
  border-color: #4285f4;
}
.block-connect__input:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .block-connect__input {
    width: 30px;
  }
}
.block-connect__btn-wrap {
  border-top: 1px solid #d6d6d6;
  padding-top: 21px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
}
.block-connect__btn-wrap.active {
  flex-direction: column-reverse;
}
@media only screen and (max-width: 767px) {
  .block-connect__btn-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.block-connect--qr .block-connect__btn-wrap {
  border-top: none;
  padding-top: 0;
}

.block-connect__btn {
  height: 60px;
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  .block-connect__btn {
    max-width: 260px;
  }
}
.block-connect__wrapper {
  transition: all 250ms ease-out;
}
.block-connect__wrapper.no-active {
  max-height: 0;
  overflow: hidden;
}
.block-connect__wrapper.error .error--second {
  opacity: 1;
  visibility: visible;
}

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

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

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

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

@media screen and (max-width: 800px) {
  .social-btn {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    flex-shrink: 0;
  }
  .social-btn_vk:before {
    width: 22px;
    height: 12px;
  }
  .social-btn_fb:before {
    width: 9px;
    height: 16px;
  }
  .social-btn_tw:before {
    width: 16px;
    height: 13px;
  }
  .social-btn_wa:before {
    width: 18px;
    height: 18px;
  }
  .social-btn_tg:before {
    width: 19px;
    height: 16px;
  }
  .social-btn_gplus:before {
    width: 19px;
    height: 12px;
  }
  .social-btn_mail, .social-btn_eml {
    background-size: 23px 18px;
  }
  .social-btn_vb:before {
    width: 21px;
    height: 22px;
  }
  .social-btn_wa:before {
    width: 20px;
    height: 20px;
  }
  .social-btn_th:before {
    width: 16px;
    height: 22px;
  }
  .social-btn_pt {
    background-size: 22px;
  }
  .social-btn_ln:before {
    width: 22px;
    height: 21px;
  }
  .social-btn_li:before {
    width: 22px;
    height: 22px;
  }
  .social-btn_flb:before {
    width: 22px;
    height: 22px;
  }
  .social-btn_rd:before {
    width: 24px;
    height: 22px;
  }
  .social-btn_ok:before {
    width: 14px;
    height: 24px;
  }

  .social-btns {
    max-width: 400px;
  }
  .social-btns .social-btn {
    margin-right: 5px;
  }
  .social-btns__more {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    left: 0;
  }
  .social-btns__list {
    width: 130px;
  }
  .social-btns__list .social-btn {
    margin-right: 0;
  }
}
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.list__item {
  flex: 0 0 auto;
  max-width: 340px;
  width: 100%;
  display: block;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  padding: 20px;
  padding-top: 90px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin: 10px;
}

.list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/checkmark-white.svg");
  width: 60px;
  height: 60px;
  background-size: 60px;
}

.howto {
  display: block;
  background-color: #f7931a;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
.first--second {
  padding-bottom: 30px;
}
.first .wrapper {
  max-width: 1100px;
  padding-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .first .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.first .title {
  display: block;
  font-size: 48px;
  line-height: 53px;
  margin-bottom: 15px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .first .title {
    font-size: 36px;
    line-height: 38px;
  }
}
.first .description {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
  color: #494949;
}
.first__icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: -1;
  width: 140px;
}
.first__icon--second {
  margin-bottom: 0;
}
.first_invite {
  background-image: linear-gradient(-180deg, #000000 0%, #494949 100%);
}
.first_invite .wrapper {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 100px;
  padding-top: 40px;
  min-height: 590px;
  padding-left: 20px;
  padding-right: 20px;
}
.first_invite .wrapper .content {
  max-width: 600px;
  text-align: left;
  position: relative;
}
.first_invite .wrapper .content:before {
  content: "";
  display: block;
  position: absolute;
  left: -611px;
  bottom: -100px;
  width: 561px;
  height: 590px;
  background-image: url("../images/woman-megaphone.png");
  background-size: 561px 590px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .first_invite .wrapper .content:before {
    background-image: url("../images/woman-megaphone@2x.png");
  }
}
@media screen and (max-width: 1000px) {
  .first_invite .wrapper {
    justify-content: center;
  }
}
.first_invite .title {
  color: #fff;
  font-size: 54px;
  line-height: 72px;
}
.first_invite .description {
  color: #d6d6d6;
}
.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;
}

.getaccess {
  display: block;
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 250px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url("../images/promo-materials.png");
  background-size: 820px 200px;
  border-top: 1px solid #d6d6d6;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .getaccess {
    background-image: url("../images/promo-materials@2x.png");
  }
}
.getaccess_no-border {
  border-top: none;
}
.getaccess__icon {
  display: block;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.getaccess .title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 40px;
  line-height: 44px;
}
.getaccess .description {
  margin-bottom: 50px;
  color: #494949;
  font-size: 18px;
  line-height: 26px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.getaccess .btn {
  margin-bottom: 15px;
  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;
}
.getaccess .btn + .note {
  margin-top: 0;
}
.getaccess .note {
  font-size: 11px;
  line-height: 12px;
}

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

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

.results {
  display: none;
  background-color: #fff;
  position: relative;
  text-align: center;
}
.results .wrapper {
  max-width: 1060px;
  margin: 0 auto;
  background-color: #494949;
  padding-top: 30px;
  padding-bottom: 30px;
}

.results.active {
  display: block;
}

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

.results__table {
  width: 100%;
  margin: 0 auto 40px;
}
.results__table .percent {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #F7931A;
  text-align: center;
  margin-top: -10px;
}
.results__table .percent span {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.176326px;
  color: #A4A4A4;
  margin-right: 3px;
  font-weight: 400;
}

.results__table td {
  height: 57px;
}

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

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

.results__table thead th .small {
  font-size: 11px;
  color: #A4A4A4;
  font-weight: 400;
}

.results__table thead th.results__friends-h {
  width: 305px;
}
.results__table thead th.results__friends-h:before {
  content: url("../images/calc-man.svg");
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

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

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

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

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

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

.startearning {
  display: block;
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 65px;
  text-align: center;
}
.startearning .title {
  margin-bottom: 15px;
}
.startearning .description {
  margin-bottom: 65px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 26px;
  color: #494949;
}
.startearning--second .description {
  max-width: 900px;
}
.startearning--second .steps {
  margin-bottom: 60px;
}
.startearning__img {
  margin-bottom: 35px;
}
.startearning__anim-arrow {
  display: flex;
  flex-wrap: wrap;
  max-width: 55px;
  width: 100%;
  margin: 0 auto 50px;
}

.total {
  margin-bottom: 30px;
  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 {
  margin-bottom: 40px;
}

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

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

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

.total__value_friends {
  display: block;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  margin-top: 10px;
}
.total__value_friends:before {
  content: url("../images/calc-man.svg");
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.total__value_income {
  display: inline-block;
  padding: 8px 18px;
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  background-color: #f7931a;
  border-radius: 4px;
  margin-bottom: 0;
}

.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), (min-resolution: 192dpi) {
  .total__btc:before {
    background-image: url("../images/sprites/sprite@2x.png");
    background-size: 223px 121px;
  }
}
.features {
  display: flex;
  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 {
    flex-direction: column;
    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: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-bottom: 10px;
}

.calc {
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
  padding-bottom: 60px;
  border-bottom: 1px solid #d6d6d6;
}
.calc__btn {
  background-color: #F7F7F7;
}
.calc__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.calc__item {
  position: relative;
  display: block;
  width: 100%;
  max-width: 420px;
  padding-right: 40px;
}
.calc__item + .calc__item {
  margin-top: 40px;
}
.calc__label {
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  color: #494949;
  min-height: 40px;
  margin-bottom: 15px;
}
.calc__label b {
  position: relative;
  top: 5px;
  font-size: 36px;
  color: #000;
  font-weight: 700;
}
.calc__label-text {
  font-size: 18px;
  line-height: 20px;
}
.calc__label-num {
  position: absolute;
  left: 100%;
  top: 4px;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #000;
  width: 84px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid #D6D6D6;
  background-color: #F7F7F7;
}
@media (max-width: 768px) {
  .calc__label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .calc__label-num {
    position: static;
    line-height: 1;
    margin-top: -4px;
    margin-left: 10px;
  }
}
.calc input[type=range] {
  -webkit-appearance: none;
  margin: 0;
  width: 100%;
  max-width: 320px;
}
.calc input[type=range]:focus {
  outline: none;
}
.calc input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background-color: #d6d6d6;
  border-radius: 3px;
}
.calc input[type=range]::-webkit-slider-thumb {
  height: 30px;
  width: 30px;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #fff;
  border: 6px solid #4285f4;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;
}

.screen-img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  max-width: 100%;
  height: auto;
}

.calc input[type=range]:focus::-webkit-slider-runnable-track {
  background-color: #d6d6d6;
}

.calc input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  background-color: #D6D6D6;
  border-radius: 3px;
}

.calc input[type=range]::-moz-range-thumb {
  height: 30px;
  width: 30px;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #fff;
  border: 6px solid #4285f4;
}

.calc input[type=range]::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background-color: #d6d6d6;
  border-radius: 3px;
}

.calc input[type=range]::-ms-fill-lower {
  background-color: #d6d6d6;
  height: 6px;
  border-radius: 3px;
}

.calc input[type=range]::-ms-fill-upper {
  background-color: #d6d6d6;
  height: 6px;
  border-radius: 3px;
}

.calc input[type=range]::-ms-thumb {
  height: 30px;
  width: 30px;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #fff;
  border: 6px solid #4285f4;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;
}

.calc input[type=range]:focus::-ms-fill-lower {
  background-color: #d6d6d6;
}

.calc input[type=range]:focus::-ms-fill-upper {
  background-color: #d6d6d6;
}

.calculate {
  display: block;
  background-color: #fff;
  padding-top: 50px;
  text-align: center;
}
.calculate .wrapper {
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid #D6D6D6;
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .calculate .wrapper {
    border-radius: 0;
  }
}
.calculate .btn_calc {
  margin: 30px 0;
}

.calculate .subtitle {
  margin-bottom: 50px;
  padding: 30px 0;
  border-bottom: 1px solid #D6D6D6;
}

.levels-scheme {
  display: block;
  background-color: #fff;
  border-top: 8px solid #F7931A;
  padding-top: 70px;
  text-align: center;
}
.levels-scheme .subtitle {
  margin-bottom: 20px;
}
.levels-scheme .description {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  font-size: 18px;
  line-height: 26px;
  color: #494949;
}
.levels-scheme__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
.levels-scheme__footer {
  font-size: 28px;
  line-height: 31px;
  color: #f7931a;
}
.levels-scheme__arrow {
  max-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
}
.levels-scheme .link:hover {
  text-decoration: none;
  color: #f7931a;
}
.levels-scheme_with-border {
  border-bottom: 1px solid #d6d6d6;
}

.mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .mobile-only {
    display: block;
    margin-bottom: 40px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .swiper-container {
    height: auto;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 20px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 9px;
  display: flex;
  background: #fff;
}
@media (min-width: 769px) {
  .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 110px;
    box-shadow: none;
    left: calc(300px + 25%);
    transform: translateX(-25%);
  }
}

.swiper-pagination {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms ease, visibility 250ms ease;
}
.swiper-pagination.hide {
  opacity: 0;
  visibility: hidden;
}

.tutorial {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .tutorial {
    max-width: 820px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .tutorial__container--end {
    overflow: visible;
  }
  .tutorial__container--end .swiper-slide-prev {
    visibility: hidden;
    opacity: 0;
  }
}
.tutorial__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}
.dark .tutorial__title {
  color: #fff;
}

@media (min-width: 769px) {
  .tutorial__title {
    font-size: 30px;
    line-height: 44px;
  }
}
.tutorial__title--head {
  margin-top: 0px;
}
@media (min-width: 769px) {
  .tutorial__title--head {
    margin-top: 0;
  }
}
.tutorial__title--second {
  font-size: 17px;
  line-height: 28px;
  text-align: center;
  color: #fff;
}
@media (min-width: 769px) {
  .tutorial__title--second {
    color: #000;
    font-size: 32px;
    line-height: 44px;
    font-weight: bold;
  }
}
.tutorial__header {
  margin: auto 0;
}
@media (min-width: 769px) {
  .tutorial__header {
    padding: 0 50px;
    margin-top: -85px;
    margin-bottom: 0;
    min-height: auto;
    display: block;
  }
}
.tutorial__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
}
.tutorial__btns a.tutorial__btn {
  margin: 0;
  width: 100%;
  max-width: 250px;
  border-radius: 6px;
}
.tutorial__btns a.tutorial__btn:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 768px) {
  .tutorial__btns {
    flex-direction: column;
  }
  .tutorial__btns a.tutorial__btn {
    max-width: none;
  }
  .tutorial__btns a.tutorial__btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.tutorial__slide {
  position: relative;
  background-color: #f89826;
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 11;
}
.dark .tutorial__slide {
  background-color: #000;
}

@media (min-width: 769px) {
  .tutorial__slide {
    flex-direction: row-reverse;
    justify-content: center;
    padding: 0;
    height: auto;
    background-color: #fff;
    text-align: left;
  }
}
.tutorial__slide video {
  width: 100%;
  max-width: 430px;
  height: auto;
  margin-bottom: auto;
}
@media (min-width: 769px) {
  .tutorial__slide video {
    width: 300px;
    height: 100%;
    object-fit: cover;
  }
}
.tutorial__slide .tutorial__footer {
  display: none;
}
@media (min-width: 769px) {
  .tutorial__slide .tutorial__footer {
    display: flex;
  }
}
.tutorial__slide--first {
  background-color: #f7f7f7;
  justify-content: space-between;
}
.dark .tutorial__slide--first {
  background-color: #000;
}

@media (min-width: 769px) {
  .tutorial__slide--first {
    background-color: #fff;
  }
}
.tutorial__slide--first .tutorial__footer {
  display: flex;
}
.tutorial__slide--first .tutorial__header {
  display: block;
  margin: auto 0;
}
.tutorial__slide--last {
  background-color: #f7f7f7;
  justify-content: flex-start;
}
.tutorial__slide--last .tutorial__svg {
  display: block;
  margin: 0 auto 0;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .tutorial__slide--last {
    background-color: #fff;
    flex-direction: column;
    padding: 40px 50px 120px;
    text-align: center;
  }
}
.tutorial__slide--last .tutorial__footer,
.tutorial__slide--last .tutorial__header {
  display: flex;
}
@media (max-width: 768px) {
  .tutorial__slide--last-container {
    overflow-y: scroll;
    padding-bottom: 113px;
    scrollbar-width: none;
  }
  .tutorial__slide--last-container::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .tutorial__slide--last-container::-moz-scrollbar {
    width: 0px;
    height: 0px;
  }
  .tutorial__slide--last .tutorial__footer--last {
    position: fixed;
    right: auto;
    left: auto;
    width: 100vw;
  }
  .tutorial__slide--last .tutorial__footer--last:not(.clear) {
    transform: translateX(-20px);
  }
}
.tutorial__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
}
@media (min-width: 769px) {
  .tutorial__close {
    display: block;
  }
}
.tutorial__close svg {
  fill: #9d9d9d;
}
.tutorial__close svg:hover {
  fill: #4285f4;
}
.tutorial__close svg:active {
  fill: #d6d6d6;
}
@media (min-width: 769px) {
  .tutorial picture {
    height: 100%;
  }
}
@media (min-width: 769px) {
  .tutorial__image {
    max-width: 300px;
    height: 100%;
  }
}
.tutorial__img {
  margin-top: auto;
  margin-bottom: 64px;
}
@media (min-width: 769px) {
  .tutorial__img {
    max-width: 300px;
    margin-bottom: 0;
    margin-top: 0;
    height: 100%;
  }
}
.tutorial__img--second {
  margin-bottom: 104px;
}
@media (min-width: 769px) {
  .tutorial__img--second {
    margin-bottom: 60px;
    margin-top: auto;
  }
}
.tutorial__svg {
  margin-top: 30px;
  margin-bottom: 20px;
}
.tutorial__text {
  font-size: 14px;
  line-height: 22px;
  color: #494949;
  margin-top: 10px;
  margin-bottom: 10px;
}
.dark .tutorial__text {
  color: #a4a4a4;
}

@media (min-width: 769px) {
  .tutorial__text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 0;
  }
}
.tutorial__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 15px;
  font-weight: bold;
}
.dark .tutorial__footer {
  background: #212121;
}
.dark .tutorial__footer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  border-top: 1px solid #494949;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
  .tutorial__footer {
    box-shadow: none;
    width: calc(100% - 300px);
    left: auto;
    right: 0;
    background: #f7f7f7;
    border-top: 1px solid #d6d6d6;
  }
  .dark .tutorial__footer {
    border-top: none;
  }
}
.tutorial__footer--last {
  right: auto;
  left: 0;
  width: 100%;
}
.tutorial__footer.hide-web {
  justify-content: center;
}
.tutorial__footer.hide-web > a {
  display: none;
}
.tutorial__footer.hide-web .tutorial__btn-wrap {
  display: flex;
  align-items: center;
}
.tutorial__footer.hide-web .tutorial__btn-wrap > a {
  margin: 0 7.5px;
}
@media (max-width: 767px) {
  .tutorial__footer.hide-web .tutorial__btn-wrap > a {
    margin: 7.5px;
  }
}
.tutorial__footer .tutorial__btn-wrap {
  display: none;
}
.tutorial__link {
  color: #494949;
}
.dark .tutorial__link {
  color: #a4a4a4;
}

.tutorial__link:hover {
  color: #f7931a;
}
.tutorial__btn-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 769px) {
  .tutorial__btn-wrap {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
}
.tutorial__btn-wrap.hide-web > a {
  display: none;
}
.tutorial__btn {
  color: #fff;
  font-size: 13px;
  line-height: 15px;
  font-weight: bold;
  min-width: 180px;
  text-align: center;
  padding-top: 17px;
  padding-bottom: 16px;
  background: #4285f4;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
}
.tutorial__btn:hover {
  background: #f7931a;
}
.tutorial__btn--second {
  max-width: 333px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .tutorial__btn--second {
    max-width: 300px;
    display: block;
  }
}
.tutorial__btn--simple {
  background-color: #fff;
  color: #4285f4;
  border: 1px solid #d6d6d6;
  margin-top: 15px;
}
.tutorial__btn--simple:hover {
  border-color: #4285f4;
  background: inherit;
}
@media (min-width: 769px) {
  .tutorial__btn--simple {
    margin: 0;
  }
}
.tutorial__btn--simple:first-of-type {
  margin-top: 27px;
}
@media (min-width: 769px) {
  .tutorial__btn--simple:first-of-type {
    margin-right: 15px;
  }
}

.dw-win, .dw-mac {
  display: none;
  position: relative;
  z-index: 2;
}
.dw-win.black, .dw-mac.black {
  background-color: #000;
  margin-bottom: 20px;
}
.dw-win.black:hover, .dw-mac.black:hover {
  background-color: #f7931a;
}
.dw-win.active, .dw-mac.active {
  display: inline-flex;
}

.qr-code .header--download.fixed .header__logo {
  max-height: 60px;
}
.qr-code .news {
  border-top: 1px solid #D6D6D6;
}
@media (min-width: 769px) {
  .qr-code .header--download .logo.js-anim-logo-white-fly {
    display: none;
  }
}
@media (max-width: 1024px) {
  .qr-code-adv .use:last-child {
    margin-bottom: 0;
  }
}

.mac-link, .win-link {
  display: none;
  color: #757575;
  margin-top: 15px;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  font-family: "Inter";
  font-weight: 400;
}
.mac-link.active, .win-link.active {
  display: block;
}
.mac-link a, .win-link a {
  text-decoration: none;
  color: #4285f4;
}
.mac-link b, .win-link b {
  font-weight: bold;
}

.qr-code__btn-center {
  display: flex;
  margin: 40px auto 0;
  color: #4285f4;
}
.qr-code__btn-center:hover {
  background-color: #4285f4;
  color: #fff;
}
.qr-code__block {
  max-width: 620px;
}
.qr-code__block .title {
  max-width: 600px;
}
@media (max-width: 767px) {
  .qr-code__block .title {
    max-width: 100%;
  }
}
.qr-code__btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.qr-code__btns.active {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .qr-code__btns {
    flex-direction: column;
  }
}
.qr-code__btns .btn {
  background-color: #000;
  border: 1px solid #494949;
}
.qr-code__btns .btn:hover {
  background-color: #f7931a;
  border: 1px solid #f7931a !important;
}
.qr-code__btns .btn--download {
  max-width: 300px;
}
.qr-code__btns .btn--download.active.download-outside {
  background-color: #4285F4;
  border: none;
}
.qr-code__btns .btn--download.active.download-outside:hover {
  background-color: #f7931a;
}
.qr-code__btns .btn--download.download-mac {
  overflow: visible;
  background-color: #000;
  border: 1px solid #494949;
  margin: 0;
}
.qr-code__btns .btn--download.download-mac:hover {
  background-color: #f7931a;
}
.qr-code__btns .btn--download.download-mac[disabled] {
  position: relative;
  opacity: 0.3;
}
.qr-code__btns .btn--download.download-mac > .soon-label {
  position: absolute;
  background: #494949;
  border-radius: 10px;
  padding: 3px 8px 4px;
  right: 0;
  white-space: nowrap;
  bottom: calc(100% - 9px);
  color: #a4a4a4;
  font-size: 10px;
  font-weight: bold;
  line-height: 11px;
}
.qr-code__btns .ct-farm__play {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .qr-code__btns .ct-farm__play {
    margin-top: 30px;
  }
}
.qr-code__heading .title {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .qr-code__heading .title {
    max-width: 100%;
  }
}
.qr-code__heading-icon {
  display: flex;
  align-items: center;
  width: 90px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.qr-code .use__text .btn-soon {
  margin-left: 10px;
}
.qr-code .use__text .app-store-btn, .qr-code .use__text .google-play-btn, .qr-code .use__text .web-version {
  min-width: 220px;
}
.qr-code .use__text .web-version-btn {
  min-width: auto;
  padding: 0 13px;
  border: none;
}
.qr-code .use__text .web-version-btn:before {
  margin-right: 0;
}
@media (max-width: 1025px) {
  .qr-code .use__text .web-version-btn:before {
    margin-right: 15px;
  }
}
.qr-code .use__text .web-version-btn span {
  display: none;
}
@media (max-width: 1025px) {
  .qr-code .use__text .web-version-btn span {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .qr-code .use__text .web-version-btn {
    margin-left: auto;
    margin-top: 0;
  }
}
.qr-code .use__wrap-btn--second {
  display: flex;
}
@media (max-width: 1024px) {
  .qr-code .use__wrap-btn--second {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .qr-code .use__block .btn-soon {
    margin-left: 0;
  }
}
.qr-code .use__block .app-store-btn, .qr-code .use__block .google-play-btn, .qr-code .use__block .web-version-btn {
  border: none;
}
@media (max-width: 1024px) {
  .qr-code .use__block .app-store-btn, .qr-code .use__block .google-play-btn, .qr-code .use__block .web-version-btn {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .qr-code .use__block .app-store-btn, .qr-code .use__block .web-version-btn {
    width: 100%;
  }
}
.qr-code .use__article .container-new {
  padding-bottom: 40px;
}
.qr-code .use--img-right:nth-child(5) {
  padding-bottom: 0;
}
.qr-code .use--img-right:nth-child(5) .container-new {
  padding-bottom: 0;
}
.qr-code .use--img-right:nth-child(5) .use__text {
  margin-bottom: 0;
}
.qr-code .free-farm__img {
  margin-top: -50px;
  margin-bottom: -4px;
  max-width: 900px;
}
.qr-code .video-block .container-new, .qr-code .tac .container-new, .qr-code .news .container-new {
  padding-bottom: 0;
}
.qr-code .video-block {
  padding-top: 0;
  padding-bottom: 80px;
}
.qr-code .video-block .dw-mac, .qr-code .video-block .dw-win {
  margin-top: 70px;
}
.qr-code .video-block .app-store-btn {
  display: none;
}
@media (max-width: 1024px) {
  .qr-code .video-block {
    padding-top: 40px;
  }
  .qr-code .video-block .dw-mac, .qr-code .video-block .dw-win {
    margin-top: 0px;
  }
}
.qr-code .video-block__video {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .qr-code .video-block {
    margin-top: -41px;
    padding-bottom: 40px;
  }
}
.qr-code .video-block .tripple-arrow {
  margin-top: 0;
  margin-bottom: 0;
}
.qr-code .video-block .btn {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .qr-code .video-block .btn {
    margin-bottom: 0;
    display: none;
  }
}
.qr-code .video-block .title {
  margin-top: 80px;
}
.qr-code .video-block .steps {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .qr-code .js-anim-robot5 {
    transform: scale(1) translateX(-50%);
    padding-top: 30px;
    padding-bottom: 0px;
    margin: 0;
    margin-bottom: -4px;
    width: 140%;
    position: relative;
    left: 50%;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .qr-code .free-farm__img {
    width: 140%;
    max-width: 550px;
    margin: 0;
    transform: scale(1) translateX(-50%);
    padding-bottom: 0;
    position: relative;
    left: 50%;
    margin-bottom: -4px;
  }
}

@media (max-width: 768px) {
  .qr-code__heading {
    margin-bottom: 30px;
  }
  .qr-code.mac .video-block .app-store-btn {
    display: inline-flex;
  }
  .qr-code .header--miner {
    display: none;
  }
  .qr-code .header--download {
    visibility: visible;
    opacity: 1;
  }
  .qr-code .ct-farm {
    margin-top: 61px;
    padding-top: 50px;
  }
}
@media (max-width: 1024px) {
  .qr-code .store-button-group:not(.header__block-mob > .store-button-group) {
    flex-direction: column;
    gap: 10px;
  }
  .qr-code .store-button-group:not(.header__block-mob > .store-button-group) > * {
    max-width: none !important;
    width: 100% !important;
  }
  .qr-code .store-button-group:not(.header__block-mob > .store-button-group) > * a {
    max-width: none !important;
    width: 100% !important;
  }
}
.tripple-arrow--center {
  display: block;
  max-width: 50px;
  margin: 40px auto 0;
}

.webview-container {
  padding-top: 1px;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 767px) {
  .webview-container {
    background-image: linear-gradient(to bottom, #000 0%, #494949 20%, #fff 20% 100%);
  }
}
.webview-container:last-child {
  border-bottom: none;
}
.webview-container .content {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.webview-container .content td {
  padding-right: 0px;
  padding-left: 0px;
}
.webview-container .content > table > tbody > tr > td {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
@media (max-width: 768px) {
  .webview-container .content {
    margin-top: 0;
  }
}
@media (max-width: 664px) {
  .webview-container .content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.webview-container .content > table {
  background-color: transparent !important;
}
.webview-container .content > table b {
  font-weight: bold;
}
.webview-container .content > table table table {
  border: none !important;
  border-radius: 3px !important;
  overflow: hidden;
}
.webview-container .content > table > tbody > tr > td > table > tbody > tr > td > table {
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
}
.webview-container .heading {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 10px;
  border-bottom: 1px solid #757575;
  margin-bottom: -10px;
}
.webview-container .heading .title {
  color: #d6d6d6;
  font-size: 24px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  margin: 0;
  margin-right: 15px;
}
.webview-container .heading span {
  font-size: 13px;
  line-height: 15px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.webview-container .heading span:hover {
  color: #f7931a;
}
@media (max-width: 768px) {
  .webview-container .heading {
    padding-top: 20px;
  }
  .webview-container .heading .title {
    color: #d6d6d6;
    font-size: 18px;
    line-height: 21px;
  }
}
@media (max-width: 600px) {
  .webview-container .heading {
    margin-bottom: -10px;
  }
  .webview-container .heading .title,
.webview-container .heading span {
    margin-bottom: 10px;
  }
}
.webview-container .navigation {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.webview-container .navigation .btn-container {
  width: 100px;
}
.webview-container .navigation .btn-container--next {
  text-align: right;
}
.webview-container .navigation .btn-container a {
  display: inline-block;
  min-width: 70px;
  max-width: 100%;
  text-align: center;
  padding: 11px 10px;
  background-color: #fff;
  border-radius: 2px;
  color: #494949;
  border: 1px solid #d6d6d6;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.2s, border-color 0.2s;
}
.webview-container .navigation .btn-container a:hover {
  border-color: #4285f4;
  background-color: #4285f4;
  color: #fff !important;
}
.webview-container .navigation .nav-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  color: #494949;
  text-transform: uppercase;
}
@media (max-width: 420px) {
  .webview-container .navigation .nav-container {
    font-size: 16px;
    text-align: center;
  }
}
.webview-container .navigation .nav-container span {
  margin-bottom: 6px;
}
.webview-container .navigation .link {
  font-size: 14px;
  line-height: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
.webview-container .navigation a.link {
  cursor: pointer;
}
.webview-container .tags-block {
  padding: 30px 40px 25px;
  background-color: #ffffff;
  border-bottom: 1px solid #d6d6d6;
}
.webview-container .tags-block__publish {
  font-size: 15px;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 10px;
  color: #494949;
}
.webview-container .tags-block__publish strong {
  font-weight: 700;
}
.webview-container .tags-block__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.5;
}
.webview-container .tags-block__list a {
  margin-right: 20px;
}
.webview-container .tags-block__list a:hover {
  color: #f7931a;
}
.webview-container .wrap-block {
  margin: 0;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.15);
}
.webview-container .share-block {
  background-color: #ffffff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.webview-container .share-block:last-child {
  border-bottom: none;
}
.webview-container .share-block > p {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: #494949;
  margin-bottom: 20px;
}
.webview-container .share-block .social-btns {
  justify-content: center;
}
@media (max-width: 420px) {
  .webview-container .share-block {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 420px) {
  .webview-container table [itemprop=headline] {
    font-size: 28px !important;
    line-height: 36px !important;
  }
}

.webview-container--digest .heading {
  margin-bottom: 20px;
}
.webview-container--digest .content {
  max-width: 600px;
}
.webview-container--digest .wrap-block {
  margin-left: 0;
  margin-right: 0;
  margin-top: 30px;
}

.page_email-webview .first {
  z-index: auto;
  background-color: #000;
  background-image: linear-gradient(to bottom, #000 0%, #494949 100%);
  min-height: 0;
  padding-bottom: 577px;
}
.page_email-webview .first .header {
  margin: 0;
}
@media (max-width: 768px) {
  .page_email-webview .first {
    padding-bottom: 0;
    min-height: 0;
    background-color: transparent;
  }
}

.uninstall-hero {
  padding: 160px 20px 0;
  background-image: url(../images/uninstall/uninstall-guy.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 400px;
}
@media screen and (max-width: 1080px) {
  .uninstall-hero {
    padding-top: 200px;
    background-size: 390px;
    padding-bottom: 265px;
  }
}
@media screen and (max-width: 1040px) {
  .uninstall-hero {
    padding-top: 0;
  }
}
.uninstall-hero__title {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  color: #1f232c;
}
.uninstall-hero__text {
  font-size: 18px;
  line-height: 1.4;
  color: #494949;
  letter-spacing: 0.05px;
  max-width: 1000px;
  margin: 20px auto 0;
}
.uninstall-hero__action {
  margin: 40px;
}
.uninstall-hero__action > svg {
  margin-right: 10px;
  margin-top: -2px;
}

.uninstall-steps {
  margin-top: 50px;
}

.qr-code__heading-uninstall {
  margin-bottom: 60px;
}

.uninstall-arrow {
  width: 70px;
}

.uninstall-generate-code {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  .tripple-arrow {
    display: none;
  }
}
.tripple-arrow__left {
  transform: rotateZ(-90deg);
}
.tripple-arrow__right {
  transform: rotateZ(90deg);
}

@media (min-width: 1436px) {
  .page-pool-miners.chrome.page_ru .why-pool, .page-pool-miners.firefox.page_ru .why-pool {
    background: url("../images/why-bkg@2x.png") no-repeat top/100% 660px, #fff;
  }
  .page-pool-miners.chrome.page_en .why-pool, .page-pool-miners.firefox.page_en .why-pool {
    background: url("../images/why-bkg@2x.png") no-repeat top/100% 613px, #fff;
  }
  .page-pool-miners.chrome.page_fr .why-pool, .page-pool-miners.chrome.page_de .why-pool, .page-pool-miners.firefox.page_fr .why-pool, .page-pool-miners.firefox.page_de .why-pool {
    background: url("../images/why-bkg@2x.png") no-repeat top/100% 802px, #fff;
  }
  .page-pool-miners.chrome.page_es .why-pool, .page-pool-miners.firefox.page_es .why-pool {
    background: url("../images/why-bkg@2x.png") no-repeat top/100% 700px, #fff;
  }
  .page-pool-miners.chrome .why-pool, .page-pool-miners.firefox .why-pool {
    background: url("../images/why-bkg@2x.png") no-repeat top/100% 660px, #fff;
  }
  .page-pool-miners.chrome .mobile-app, .page-pool-miners.firefox .mobile-app {
    background: url("../images/promo-bkg@2x.png") no-repeat top/100% 450px, #fff;
  }
}
.page-pool-miners .ct-farm__text {
  margin-bottom: 30px;
}
.page-pool-miners .ct-farm__main-img {
  margin: 70px 0px -3px;
  left: 50%;
  max-width: 1300px;
  display: block;
  transform: translateX(-50%);
  width: 1300px;
}
.page-pool-miners .why-pool {
  background: url("../images/why-bkg.svg") no-repeat center/cover, #fff;
  position: relative;
  padding: 80px 0px 170px;
}
.page-pool-miners .why-pool .container-new {
  max-width: 1100px;
  position: relative;
}
.page-pool-miners .why-pool .title {
  color: #fff;
  line-height: 60px;
  text-align: center;
  margin-bottom: 40px;
}
.page-pool-miners .why-pool__decoration {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 150px;
}
.page-pool-miners .why-pool__cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
.page-pool-miners .why-pool__card {
  background: #FFFFFF;
  border-radius: 4px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 35px 20px;
  width: 100%;
  position: relative;
}
.page-pool-miners .why-pool__card:before {
  content: "";
  display: block;
  height: 12px;
  border: 12px solid transparent;
  border-bottom: 12px solid #fff;
  position: absolute;
  top: -36px;
  left: calc(50% - 12px);
}
.page-pool-miners .why-pool__card p {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
}
.page-pool-miners .why-pool__card p b {
  font-weight: bold;
}
.page-pool-miners .mob-arrow {
  display: none;
}
.page-pool-miners .tripple-arrow img {
  width: auto;
  height: 74px;
  display: block;
  margin: 80px auto 0px;
}
.page-pool-miners .reason {
  background-color: #fff;
  padding: 80px 0;
}
.page-pool-miners .reason .title {
  text-align: center;
  margin-bottom: 40px;
}
.page-pool-miners .reason__cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
.page-pool-miners .reason__card {
  text-align: center;
  border: 1px solid #D6D6D6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 30px 20px;
  width: 100%;
}
.page-pool-miners .reason__card-title {
  margin: 20px 0 10px;
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
}
.page-pool-miners .reason__card-text {
  font-size: 16px;
  line-height: 26px;
  color: #494949;
}
.page-pool-miners .steps-section {
  background-color: #fff;
  padding-bottom: 80px;
}
.page-pool-miners .steps-section .title {
  margin-bottom: 15px;
  text-align: center;
}
.page-pool-miners .steps-section .text {
  text-align: center;
  margin-bottom: 40px;
}
.page-pool-miners .steps-section .steps {
  margin-bottom: 0px;
  max-width: 765px;
}
.page-pool-miners .steps-section .steps__text {
  font-weight: bold;
}
.page-pool-miners .baner {
  max-width: 1000px;
  margin: 40px auto 0px;
  background: #ECFFEC;
  border: 2px solid #37CC33;
  border-radius: 10px;
  padding: 21px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.page-pool-miners .baner__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 5px;
}
.page-pool-miners .baner__text {
  font-size: 16px;
  line-height: 26px;
  color: #494949;
}
.page-pool-miners .baner--orange {
  background: #FFFAF3;
  border: 2px solid #F7931A;
}
.page-pool-miners .mobile-app {
  background: url("../images/mobile-app-bkg.svg") no-repeat center/cover, #fff;
  padding: 120px 0 176px;
}
.page-pool-miners .mobile-app .container-new {
  max-width: 1140px;
}
.page-pool-miners .mobile-app .btn__container {
  gap: 10px;
}
.page-pool-miners .mobile-app .title {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-size: 40px;
  line-height: 54px;
}
.page-pool-miners .mobile-app a {
  border: none;
  min-width: 250px;
  border-radius: 4px;
}
.page-pool-miners .mobile-app a:hover {
  background-color: #4285F4;
}
.page-pool-miners .mobile-app .btn-soon {
  margin-left: 10px;
}
.page-pool-miners .use-header {
  padding-top: 80px;
  text-align: center;
  background-color: #fff;
}
.page-pool-miners .use-header + .article {
  padding-top: 50px;
}
.page-pool-miners .use-header .title {
  margin-top: 30px;
}
.page-pool-miners .use-header .container-new {
  max-width: 1040px;
}
.page-pool-miners .free-farm .title span {
  color: #F7931A;
}
.page-pool-miners .news {
  border-top: 1px solid #D6D6D6;
}
@media (max-width: 1201px) {
  .page-pool-miners .ct-farm__main-img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .page-pool-miners .mobile-app .google-play-btn, .page-pool-miners .mobile-app .app-store-btn {
    display: none;
  }
  .page-pool-miners.ios .mobile-app .btn__container .app-store-btn, .page-pool-miners.mac .mobile-app .btn__container .app-store-btn {
    display: inline-flex;
  }
  .page-pool-miners.android .mobile-app .btn__container .google-play-btn, .page-pool-miners.win .mobile-app .btn__container .google-play-btn {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  .page-pool-miners .mob-arrow {
    display: block;
    background-color: #fff;
  }
  .page-pool-miners .ct-farm__main-img {
    padding-bottom: 0;
    margin-top: 40px;
    max-width: 616px;
    width: 616px;
  }
  .page-pool-miners .ct-farm__block .title, .page-pool-miners .ct-farm__block .text {
    text-align: center;
  }
  .page-pool-miners .why-pool {
    padding: 60px 0;
    background-color: #4285F4;
  }
  .page-pool-miners .why-pool .title {
    line-height: 38px;
  }
  .page-pool-miners .why-pool__cards {
    flex-direction: column;
    gap: 42px;
  }
  .page-pool-miners .why-pool__card {
    height: auto;
    padding: 40px 20px;
  }
  .page-pool-miners .why-pool__decoration {
    top: -90px;
  }
  .page-pool-miners .tripple-arrow img {
    margin-top: 40px;
  }
  .page-pool-miners .baner {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }
  .page-pool-miners .reason {
    padding: 40px 0;
  }
  .page-pool-miners .reason .title {
    margin-bottom: 30px;
  }
  .page-pool-miners .reason__cards {
    flex-direction: column;
    gap: 30px;
  }
  .page-pool-miners .bg-white.article .title, .page-pool-miners .bg-white.article .text {
    text-align: center;
  }
  .page-pool-miners .steps-section {
    padding-bottom: 60px;
  }
  .page-pool-miners .steps-section .steps__item:first-child {
    padding-top: 0;
  }
  .page-pool-miners .steps-section .steps__item:last-child {
    margin-bottom: 0;
  }
  .page-pool-miners .steps-section .steps__icon {
    height: auto;
  }
  .page-pool-miners .mobile-app {
    padding: 60px 0px 120px;
  }
  .page-pool-miners .mobile-app .title {
    line-height: 40px;
    text-align: center;
  }
  .page-pool-miners .use-header {
    padding-top: 40px;
  }
  .page-pool-miners .use-header__icon {
    width: 70px;
    height: 70px;
  }
}

.notification {
  background: #212121;
  border-bottom: 4px solid #F7931A;
  position: relative;
  transition: all 0.7s;
}
.notification.hide {
  display: none;
}
.notification__container {
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 10px;
}
.notification__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.notification__close {
  border: none;
  outline: none;
  background: #171717;
  border-radius: 100%;
  min-width: 36px;
  height: 36px;
  flex-shrink: 0px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification__close svg path {
  transition: fill 0.3s ease;
}
.notification__close:hover svg path {
  fill: #F7931A;
}
.notification__btn {
  max-width: 160px;
  padding: 0;
  height: auto;
  line-height: 40px;
  font-size: 12px;
  border-radius: 6px;
  transition: all 0.3s;
}
.notification__btn:hover {
  background: #F7931A;
}
.notification__content {
  width: 100%;
  margin: 0 20px;
}
.notification__title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
}
.notification__text {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .notification__container {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .notification__link {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .notification__img {
    margin-bottom: 10px;
  }
  .notification__btn {
    max-width: none;
    margin-top: 15px;
  }
  .notification__close {
    margin: 0;
    position: absolute;
    right: 20px;
    transform: none;
    top: 10px;
  }
}

.banner {
  text-align: center;
  margin: 0px auto 30px;
  max-width: max-content;
  background: #362209;
  border: 2px solid #F7931A;
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 20px;
  line-height: 32px;
  color: #F7931A;
}
.banner--green {
  background: #ECFFEC;
  border-color: #37CC33;
  color: #000000;
}
.banner--green-dark {
  background: #0D340D;
  border-color: #37CC33;
  color: #37CC33;
}
.banner--blue {
  background: #F0F6FF;
  border-color: #4285F4;
  color: #000000;
}
.banner.mt-3 {
  margin-top: 30px;
}
.banner--light-orange {
  background: #FFFAF3;
  color: #000000;
}
.banner--light-color {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
.banner--big {
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 770px;
  margin: 40px auto 0;
}
.banner--big b {
  font-weight: bold;
}
.banner--small-icon {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 13px 20px;
  margin: 0px;
  max-width: none;
}
.banner--small-icon p {
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  margin-left: 18px;
}
.banner--icon {
  display: flex;
  align-items: center;
  text-align: left;
}
.banner--icon p {
  width: 100%;
  margin-left: 30px;
}
.banner--shadow {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15), 0px 3px 4px rgba(0, 0, 0, 0.2);
  border: none;
  background: #B9FFB7;
}
@media (max-width: 768px) {
  .banner {
    font-size: 16px;
    line-height: 1.4;
  }
  .banner--icon {
    flex-direction: column;
  }
  .banner--icon p {
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
  }
  .banner--small-icon {
    margin-bottom: 20px;
  }
}

.qr-code__block .banner {
  margin-left: 0;
}

.tac .banner--green-dark {
  margin-top: 30px;
}

.discount {
  background-color: #fff;
  text-align: center;
}
.discount .container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.discount__icon {
  display: block;
  margin: 0 auto 20px;
}
.discount__title {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 20px;
  font-weight: bold;
}
.discount__text {
  font-size: 20px;
  line-height: 32px;
  color: #494949;
  margin-bottom: 40px;
}
.discount__text b {
  font-weight: bold;
}
.discount .steps {
  margin: 50px auto;
}
.discount__img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.discount__btn {
  text-decoration: none;
  max-width: 320px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 60px;
  font-size: 16px;
  background: #4285F4;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 6px;
  transition: background 0.3s;
}
.discount__btn svg {
  margin-right: 10px;
}
.discount__btn:hover {
  background: #f7931a;
}
@media (max-width: 768px) {
  .discount {
    padding: 40px 0;
  }
  .discount__icon {
    height: 70px;
    width: auto;
  }
  .discount__title {
    font-size: 28px !important;
    line-height: 38px;
  }
  .discount__text {
    font-size: 16px;
    line-height: 1.4;
  }
  .discount .steps {
    margin: 0 auto;
  }
  .discount .steps__icon {
    height: 80px;
    width: auto;
  }
}

.doubt {
  padding-top: 155px;
  background-color: none;
  background: url("../images/doubt-bkg.svg") no-repeat center/100% 100%, #fff;
}
.doubt__icon {
  height: 90px;
  width: 90px;
  display: block;
  margin: 0 auto 20px;
}
.doubt .banner {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .doubt {
    padding-top: 0px;
    border-top: none;
    background: #4285f4;
  }
  .doubt .title, .doubt .text {
    color: #fff !important;
  }
}

.miners-video {
  background-color: #fff;
  padding-bottom: 78px;
}
@media (max-width: 767px) {
  .miners-video {
    padding-bottom: 35px;
  }
}
.miners-video .title {
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .miners-video .title {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
  }
}
.miners-video__video {
  position: relative;
  padding-bottom: 41.5%;
  height: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .miners-video__video {
    padding-bottom: 54%;
  }
}
.miners-video iframe {
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
  height: 100%;
}
.miners-video .miners-video__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  color: #494949;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .miners-video .miners-video__text {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 30px;
  }
}

.tutorial-banner {
  padding-right: 16px;
  border: 2px solid #000;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  gap: 14px;
  margin-top: 30px;
  height: 134px;
  width: 100%;
}
.tutorial-banner.padding-left {
  padding-left: 16px;
}
.tutorial-banner--blue {
  border-color: #4285f4;
  background-color: #F0F6FF;
}
.tutorial-banner--blue .tutorial-banner__icon circle {
  fill: #4285f4;
}
.tutorial-banner--blue .tutorial-banner__button svg path {
  stroke: #4285f4;
}
.tutorial-banner--green {
  border-color: #37cc33;
  background-color: #ECFFEC;
}
.tutorial-banner--green .tutorial-banner__icon circle {
  fill: #37cc33;
}
.tutorial-banner--green .tutorial-banner__button svg path {
  stroke: #37cc33;
}
.tutorial-banner--purple {
  border-color: #A033CC;
  background-color: #FBF2FF;
}
.tutorial-banner--purple .tutorial-banner__icon circle {
  fill: #A033CC;
}
.tutorial-banner--purple .tutorial-banner__button svg path {
  stroke: #A033CC;
}
.tutorial-banner--orange {
  border-color: #f7931a;
  background-color: #FFF5E9;
}
.tutorial-banner--orange .tutorial-banner__icon circle {
  fill: #f7931a;
}
.tutorial-banner--orange .tutorial-banner__button svg path {
  stroke: #f7931a;
}
.tutorial-banner--dark.tutorial-banner--blue {
  border-color: #4285f4;
  background-color: #0A162C;
}
.tutorial-banner--dark.tutorial-banner--blue .tutorial-banner__icon circle {
  fill: #4285f4;
}
.tutorial-banner--dark.tutorial-banner--blue .tutorial-banner__button svg path {
  stroke: #4285f4;
}
.tutorial-banner--dark.tutorial-banner--green {
  border-color: #37cc33;
  background-color: #0D340D;
}
.tutorial-banner--dark.tutorial-banner--green .tutorial-banner__icon circle {
  fill: #37cc33;
}
.tutorial-banner--dark.tutorial-banner--green .tutorial-banner__button svg path {
  stroke: #37cc33;
}
.tutorial-banner--dark.tutorial-banner--purple {
  border-color: #A033CC;
  background-color: #2C0B3A;
}
.tutorial-banner--dark.tutorial-banner--purple .tutorial-banner__icon circle {
  fill: #A033CC;
}
.tutorial-banner--dark.tutorial-banner--purple .tutorial-banner__button svg path {
  stroke: #A033CC;
}
.tutorial-banner--dark.tutorial-banner--orange {
  border-color: #f7931a;
  background-color: #362209;
}
.tutorial-banner--dark.tutorial-banner--orange .tutorial-banner__icon circle {
  fill: #f7931a;
}
.tutorial-banner--dark.tutorial-banner--orange .tutorial-banner__button svg path {
  stroke: #f7931a;
}
.tutorial-banner--dark .tutorial-banner__text {
  color: #fff;
}
.tutorial-banner--dark .tutorial-banner__button {
  background: #25272A;
  border: 1px solid #3F4045;
}
.tutorial-banner--with-img {
  position: relative;
  padding-left: 119px;
  min-height: 86px;
}
.tutorial-banner--with-img .tutorial-banner__icon {
  display: none;
}
.tutorial-banner--with-img .tutorial-banner__img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tutorial-banner__img {
  max-height: 100%;
  display: none;
}
.tutorial-banner__icon {
  display: none;
  flex-shrink: 1;
  height: 60px;
  margin-left: 16px;
}
.tutorial-banner__text {
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tutorial-banner__text b {
  font-weight: bold;
}
.tutorial-banner__text--mob {
  display: none;
}
.tutorial-banner__title {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tutorial-banner__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.tutorial-banner__button {
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  height: 32px;
  width: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}
@media (max-width: 768px) {
  .tutorial-banner {
    margin: 30px 0;
    gap: 4px;
    height: 103px;
  }
  .tutorial-banner__icon {
    height: 48px;
  }
  .tutorial-banner--with-img {
    padding-left: 108px;
  }
  .tutorial-banner__title {
    font-weight: normal;
    -webkit-line-clamp: 3;
    margin-left: 4px;
  }
  .tutorial-banner__text {
    display: none;
  }
}

.dark .tutorial-banner__title, .dark .tutorial-banner__text {
  color: #fff;
}

#qrPopup {
  display: none;
  padding: 20px;
}
#qrPopup.active {
  display: flex;
}
#qrPopup .popup__card {
  position: relative;
  max-width: 700px;
  margin: auto;
  background: #FFFFFF;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
#qrPopup .popup__img-mob {
  display: none;
}
#qrPopup .popup__header {
  padding: 20px 30px;
  border-bottom: 1px solid #D6D6D6;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: left;
}
#qrPopup .popup__header--mob {
  display: none !important;
}
#qrPopup .popup__header--farm {
  display: none;
}
#qrPopup .popup__hide {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
#qrPopup .popup__hide path {
  transition: fill 0.3s;
}
@media (min-width: 768px) {
  #qrPopup .popup__hide:hover path {
    fill: #f7931a;
  }
}
#qrPopup .popup__body {
  padding: 20px 30px 30px;
  max-height: none;
  overflow: auto;
  border: none;
}
#qrPopup .popup__text {
  text-align: left;
  margin: 0px 0px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #494949;
}
#qrPopup .popup__text--mob {
  display: none !important;
}
#qrPopup .popup__text--farm {
  display: none;
}
#qrPopup .popup__text b {
  font-weight: bold;
}
#qrPopup .popup__text a {
  font-weight: bold;
  text-decoration: none;
  color: #4285F4;
  transition: color 0.3s;
}
#qrPopup .popup__text a:hover {
  color: #F7931A;
}
#qrPopup .popup__qr {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  padding: 15px;
  background: #FFFFFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
#qrPopup .popup__qr-tab {
  max-width: 300px;
  margin: 0 auto 20px;
  display: flex;
}
#qrPopup .popup__qr-tab-item {
  width: 100%;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #4285F4;
  border: 1px solid #D6D6D6;
  transition: all 0.3s;
  cursor: pointer;
}
#qrPopup .popup__qr-tab-item:nth-child(1) {
  border-right: none;
  border-radius: 10px 0px 0px 10px;
}
#qrPopup .popup__qr-tab-item:nth-child(2) {
  border-left: none;
  border-radius: 0px 10px 10px 0px;
}
#qrPopup .popup__qr-tab-item:hover, #qrPopup .popup__qr-tab-item.active {
  color: #fff;
  border-color: #4285F4;
  background-color: #4285F4;
}
#qrPopup .popup__qr-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
#qrPopup .popup__qr-subtitle span {
  font-weight: 700;
  font-size: 13px;
  line-height: 22px;
  color: #757575;
  text-align: left;
}
#qrPopup .popup__footer {
  background: #FFFFFF;
  border-radius: 0px 0px 10px 10px;
  position: relative;
  padding: 37px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#qrPopup .popup__footer .pro {
  display: none !important;
}
#qrPopup .popup__footer > a {
  width: 100%;
  max-width: 250px;
  text-align: left;
  display: inline-flex !important;
  border: none;
}
#qrPopup .popup__footer > a:not(.app-store-btn.farm):after {
  display: none;
}
#qrPopup .popup__footer > a.app-store-btn.farm {
  position: relative;
}
#qrPopup .popup__footer > a.app-store-btn.farm:after {
  display: block !important;
  content: "PRO";
  position: absolute;
  width: max-content;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #f7931a;
  border-radius: 6px;
  color: #f7931a;
  background-color: #000;
  text-transform: uppercase;
  right: -1px;
  top: -9px;
  text-align: center;
}
#qrPopup .popup__footer--farm > a.farm {
  display: none !important;
}
#qrPopup .popup__footer--farm > a.pro {
  display: inline-flex !important;
}
#qrPopup .popup__footer-decoration {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  padding: 2px 7px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 9px;
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
}
#qrPopup.farm .popup__header, #qrPopup.farm .popup__text {
  display: none;
}
#qrPopup.farm .popup__header--farm, #qrPopup.farm .popup__text--farm {
  display: block;
}
@media (max-width: 768px) {
  #qrPopup .popup__header, #qrPopup .popup__body {
    padding: 20px;
  }
  #qrPopup .popup__footer {
    flex-direction: column;
    padding: 27px 20px 20px;
  }
  #qrPopup .popup__footer > a {
    max-width: none;
  }
}

.android #qrPopup .popup__body, .ios #qrPopup .popup__body {
  padding-bottom: 0;
}
.android #qrPopup .popup__mobile-img--farm, .ios #qrPopup .popup__mobile-img--farm {
  display: none;
}
.android #qrPopup .popup__text, .android #qrPopup .popup__header, .ios #qrPopup .popup__text, .ios #qrPopup .popup__header {
  display: none !important;
}
.android #qrPopup .popup__text--mob, .android #qrPopup .popup__header--mob, .ios #qrPopup .popup__text--mob, .ios #qrPopup .popup__header--mob {
  display: block !important;
}
.android #qrPopup .popup__text--farm, .android #qrPopup .popup__header--farm, .ios #qrPopup .popup__text--farm, .ios #qrPopup .popup__header--farm {
  display: none !important;
}
.android #qrPopup .popup__footer-decoration, .ios #qrPopup .popup__footer-decoration {
  display: none;
}
.android #qrPopup .popup__img-mob, .ios #qrPopup .popup__img-mob {
  display: block;
}
.android #qrPopup .popup__img-mob img, .ios #qrPopup .popup__img-mob img {
  margin: 0 auto;
}
.android #qrPopup .popup__qr, .ios #qrPopup .popup__qr {
  display: none;
}
.android #qrPopup .popup__qr-subtitle, .ios #qrPopup .popup__qr-subtitle {
  display: none;
}
.android #qrPopup.farm .popup__mobile-img, .ios #qrPopup.farm .popup__mobile-img {
  display: none;
}
.android #qrPopup.farm .popup__mobile-img--farm, .ios #qrPopup.farm .popup__mobile-img--farm {
  display: block;
}
.android #qrPopup.farm .popup__text--mob, .android #qrPopup.farm .popup__header--mob, .ios #qrPopup.farm .popup__text--mob, .ios #qrPopup.farm .popup__header--mob {
  display: none !important;
}
.android #qrPopup.farm .popup__text--mob.popup__text--farm, .ios #qrPopup.farm .popup__text--mob.popup__text--farm {
  display: block !important;
}
.android #qrPopup.farm .popup__header--mob.popup__header--farm, .ios #qrPopup.farm .popup__header--mob.popup__header--farm {
  display: block !important;
}

.notificationPopup-body {
  background: #FFFFFF;
  box-shadow: 0px 27px 114px rgba(0, 0, 0, 0.05), 0px 17.5px 66.7639px rgba(0, 0, 0, 0.037963), 0px 10.4px 36.3111px rgba(0, 0, 0, 0.0303704), 0px 5.4px 18.525px rgba(0, 0, 0, 0.025), 0px 2.2px 9.28889px rgba(0, 0, 0, 0.0196296), 0px 0.5px 4.48611px rgba(0, 0, 0, 0.012037);
  border-radius: 6px;
  max-width: 680px;
  width: 100%;
  padding: 30px;
}
.notificationPopup-body__icon {
  display: block;
  margin-bottom: 20px;
}
.notificationPopup-body__title {
  font-weight: 700;
  font-size: 32px;
  text-align-last: left;
  line-height: 40px;
  margin-bottom: 10px;
}
.notificationPopup-body__text {
  font-size: 20px;
  line-height: 32px;
  text-align: left;
  color: #757575;
  margin-bottom: 30px;
}
.notificationPopup-body__btn {
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  height: 60px;
  max-width: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #4285F4;
  transition: all 0.3s;
  outline: none;
  background: transparent;
}
.notificationPopup-body__btn svg path {
  transition: fill 0.3s;
}
.notificationPopup-body__btn:hover {
  color: #F7931A;
  border-color: #F7931A;
}
.notificationPopup-body__btn:hover svg path {
  fill: #F7931A;
}
@media (max-width: 768px) {
  .notificationPopup-body__btn {
    max-width: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.7);
}

.notification-overlay {
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.5s 0s;
}
@media (max-width: 500px) {
  .notification-overlay {
    display: none;
  }
}
.notification-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.5s 0s;
}
.notification-overlay__content {
  position: absolute;
  top: 340px;
  left: 100px;
}
.notification-overlay__content p {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  color: #212121;
  font-size: 18px;
  line-height: 32px;
  padding: 10px 25px;
}
.notification-overlay__content p b {
  font-weight: bold;
}
.notification-overlay__arrow {
  position: absolute;
  top: -107px;
  left: 166px;
}
.notification-overlay__arrow img {
  vertical-align: top;
}
.notification-overlay .card-notify {
  background: #FFFFFF;
  border-radius: 6px;
  position: absolute;
  width: 375px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.2));
  top: 17px;
  left: 19px;
}
.notification-overlay .card-notify:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: -8px;
  left: 100px;
  transform: rotate(45deg);
}
.notification-overlay .card-notify-error {
  display: none;
}
.notification-overlay .card-notify--error .card-notify-default {
  display: none;
}
.notification-overlay .card-notify--error .card-notify-error {
  display: block;
}
.notification-overlay .card-notify--error .card-notify-error .card-notify__footer-btn--outline {
  border-radius: 0px 0px 6px 6px;
}
.notification-overlay .card-notify--error + .notification-overlay__content {
  display: none;
}
.notification-overlay .card-notify__body {
  padding: 15px 20px;
}
.notification-overlay .card-notify__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}
.notification-overlay .card-notify__text {
  font-size: 13px;
  line-height: 23px;
  color: #757575;
}
.notification-overlay .card-notify__content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification-overlay .card-notify__content img {
  width: 20px;
  min-width: 20px;
}
.notification-overlay .card-notify__footer {
  display: flex;
}
.notification-overlay .card-notify__footer-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  outline: none;
  border: none;
  font-weight: bold;
  transition: all 0.3s;
}
.notification-overlay .card-notify__footer-btn--outline {
  color: #4285F4;
  border-top: 1px solid #D6D6D6;
  border-radius: 0px 0px 0px 5px;
  background-color: #fff;
}
.notification-overlay .card-notify__footer-btn--outline:hover {
  color: #F7931A;
}
.notification-overlay .card-notify__footer-btn--primary {
  background: #4285F4;
  color: #fff;
  border-radius: 0px 0px 5px 0px;
}
.notification-overlay .card-notify__footer-btn--primary:hover {
  color: #fff;
  background-color: #F7931A;
  border-color: #F7931A;
}

.cookies {
  position: fixed;
  left: 10px;
  bottom: 10px;
  padding: 20px;
  border-radius: 10px;
  background: #25272A;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 31;
  margin-right: 10px;
  display: none;
}

.cookies__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .cookies__inner {
    flex-direction: column;
  }
}
.cookies__text {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  flex-grow: 1;
}

.cookies__text a {
  color: #4285F4;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
}

.cookies__text a:hover {
  color: #f7931a;
}

.cookies .btn {
  min-width: 135px;
  gap: 10px;
  width: fit-content !important;
  border-radius: 6px;
  color: #FFF;
  padding: 10px 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  height: 40px !important;
  max-height: 40px;
  border: none;
  outline: none;
  background-color: #4285F4 !important;
  cursor: pointer;
}

.cookies .btn::before {
  display: none;
}

.cookies .btn::after {
  display: none;
}

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

@media (max-width: 768px) {
  .cookies .btn {
    width: 100% !important;
    height: 50px;
    max-height: 50px;
    max-width: none !important;
  }
}
.cookies-show {
  display: block;
}

.page-newbie-welcome {
  background: #f7f7f7;
  --base: #000;
  --white: #fff;
  --orange: #f7931a;
  --gray: #494949;
  overflow-x: hidden;
}
.page-newbie-welcome .animate__animated {
  opacity: 1 !important;
}
.page-newbie-welcome .logo {
  width: 215px;
  min-height: 52px;
}
.page-newbie-welcome .logo svg {
  transform: none !important;
}
.page-newbie-welcome .header {
  min-height: 74px;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 11;
}
.page-newbie-welcome .header .notification__btn {
  border-radius: 6px;
  background-color: #4285f4;
  height: 40px;
  color: #fff;
  padding: 0 30px;
  max-width: none;
  text-align: center;
}
.page-newbie-welcome .header .notification__btn--desktop {
  display: none;
}
@media (min-width: 769px) {
  .page-newbie-welcome .header .notification__btn--desktop {
    display: block;
  }
}
.page-newbie-welcome .header .notification__btn--mob {
  display: none;
}
@media (max-width: 768px) {
  .page-newbie-welcome .header .notification__btn--mob {
    display: block;
    margin-top: 0;
    padding: 0 27px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    height: 40px;
    text-transform: uppercase;
  }
}
.page-newbie-welcome .header .notification__btn:hover {
  background-color: #f7931a;
  color: #fff;
}
@media (min-width: 769px) {
  .page-newbie-welcome .header__menu {
    display: flex;
    align-items: center;
  }
}
.page-newbie-welcome .header__menu a {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-newbie-welcome .header {
    min-height: auto;
    padding: 0;
    margin-bottom: 0;
  }
  .page-newbie-welcome .header .header__block-mob {
    display: none;
  }
  .page-newbie-welcome .header .lang {
    margin: 10px 0 10px 10px;
    width: 83px;
  }
  .page-newbie-welcome .header .lang__current {
    height: 40px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 41px;
    padding-left: 37px;
  }
  .page-newbie-welcome .header .lang__current:before {
    top: 18px;
    right: 11px;
  }
  .page-newbie-welcome .header .lang__current img {
    top: 14px;
    left: 15px;
  }
  .page-newbie-welcome .header .lang__item {
    padding-left: 15px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
  }
  .page-newbie-welcome .header .lang__list {
    transform: translateY(calc(22% - 40px));
  }
  .page-newbie-welcome .header__menu {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 19px !important;
    gap: 20px;
    text-align: center;
  }
  .page-newbie-welcome .header__menu a {
    margin: 0 13px;
    padding: 0;
    display: inline-block;
  }
  .page-newbie-welcome .header__menu a:first-child {
    margin: 0 13px 0 0;
  }
  .page-newbie-welcome .header__menu a:nth-child(4) {
    margin: 0 20px 0 0;
  }
  .page-newbie-welcome .header__menu a.active {
    background-color: #fff;
    color: #4285f4;
    margin-top: inherit;
  }
  .page-newbie-welcome .header__menu a.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f7931a;
    position: absolute;
    bottom: -17px;
    border-radius: 6px;
    left: 0;
  }
  .page-newbie-welcome .header .burger {
    right: 13px;
    left: auto;
  }
}
.page-newbie-welcome .header.fixed .header__wrapper {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  max-width: none;
  z-index: 11;
}
.page-newbie-welcome .header:not(.fixed) .header__container {
  min-height: fit-content;
}
.page-newbie-welcome .btn {
  border-radius: 8px;
}
@media (max-width: 870px) {
  .page-newbie-welcome .btn {
    max-width: none;
  }
}
.page-newbie-welcome .btn--left-icon svg {
  margin-right: 10px;
  margin-left: 0;
}
.page-newbie-welcome .btn--right-icon svg {
  margin-left: 10px;
  margin-right: 0;
}
.page-newbie-welcome .btn_white {
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  color: #4285f4;
  margin-top: 20px;
}
.page-newbie-welcome .btn_white svg path {
  fill: #4285f4;
}
.page-newbie-welcome .btn_white:hover {
  background-color: #f7931a;
  color: #fff;
  border: 1px solid #f7931a;
}
.page-newbie-welcome .btn_white:hover svg path {
  fill: #fff;
}
.page-newbie-welcome section .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  min-height: auto;
  background-color: transparent !important;
}
.page-newbie-welcome .header__navbar {
  z-index: 100;
}
@media (max-width: 768px) {
  .page-newbie-welcome .header__navbar {
    justify-content: center;
  }
}
.page-newbie-welcome .first {
  width: 100%;
  background-color: #F7F7F7;
  overflow: hidden;
}
.page-newbie-welcome .first .row {
  display: flex;
  gap: 95px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.page-newbie-welcome .first .row__img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 570px;
  max-width: none;
}
.page-newbie-welcome .first .row__img-container {
  max-width: 531.211px;
  height: 527.666px;
  margin-left: -65px;
  margin-top: -20px;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .first .row__img-container {
    margin-left: 0;
    margin-top: 0;
  }
}
.page-newbie-welcome .first .row__content {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .first .row__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
  }
}
.page-newbie-welcome .first .row__num {
  border-radius: 31px;
  border: 4px solid var(--orange);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.952px;
  margin-bottom: 20px;
}
.page-newbie-welcome .first .row__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 15px;
  color: var(--base);
}
.page-newbie-welcome .first .row__text {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.216px;
}
.page-newbie-welcome .first .advantages {
  display: flex;
  align-items: stretch;
  gap: 55px;
  width: 100%;
}
.page-newbie-welcome .first .advantages__item {
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #D6D6D6;
  background: #fff;
  text-align: center;
  width: 100%;
  position: relative;
}
.page-newbie-welcome .first .advantages__item .arrow {
  position: absolute;
  top: 44%;
  left: 106%;
  display: block;
  height: 34px;
  width: 20px;
}
.page-newbie-welcome .first .advantages__item-icon {
  display: block;
  margin: 0 auto 20px;
}
.page-newbie-welcome .first .advantages__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  color: var(--base);
}
.page-newbie-welcome .first .advantages__item-text {
  color: #212121;
  font-size: 16px;
  line-height: 26px;
}
.page-newbie-welcome .first .container {
  padding: 120px 20px;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .first .container {
    padding: 80px 20px;
  }
  .page-newbie-welcome .first .row {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .page-newbie-welcome .first .row__content {
    text-align: center;
  }
  .page-newbie-welcome .first .row__content .btn-land {
    max-width: none;
  }
}
@media (max-width: 870px) {
  .page-newbie-welcome .first .row {
    margin-bottom: 0;
  }
  .page-newbie-welcome .first .row__num {
    margin: 0 auto 20px;
  }
  .page-newbie-welcome .first .row__title {
    font-size: 32px;
    line-height: 40px;
  }
  .page-newbie-welcome .first .row__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .page-newbie-welcome .first .row__img {
    width: 468px;
    position: absolute;
    left: 46%;
  }
  .page-newbie-welcome .first .advantages {
    flex-direction: column;
    margin-top: -30px;
    width: 100%;
  }
  .page-newbie-welcome .first .advantages .arrow {
    position: absolute;
    top: 105%;
    left: 48.5%;
    display: block;
    height: 34px;
    width: 20px;
    transform: rotate(90deg);
  }
}
@media (max-width: 768px) {
  .page-newbie-welcome .first .container {
    padding-top: 80px;
  }
}
.page-newbie-welcome .limits {
  width: 100%;
  background-color: #F7F7F7;
  position: relative;
  overflow: hidden;
}
.page-newbie-welcome .limits .container {
  padding: 120px 20px 0;
}
.page-newbie-welcome .limits .row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
}
.page-newbie-welcome .limits .row__img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: none;
}
.page-newbie-welcome .limits .row__img-container {
  max-width: 581.97px;
  height: 584.386px;
  margin-top: -60px;
  margin-left: -30px;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .limits .row__img-container {
    margin-left: 0;
    height: 520.386px;
  }
}
.page-newbie-welcome .limits .row__content {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .limits .row__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
  }
}
.page-newbie-welcome .limits .row__num {
  border-radius: 31px;
  border: 4px solid var(--orange);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.952px;
  margin-bottom: 20px;
}
.page-newbie-welcome .limits .row__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 15px;
  color: var(--base);
}
.page-newbie-welcome .limits .row__text {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.216px;
}
.page-newbie-welcome .limits .advantages {
  display: flex;
  align-items: stretch;
  gap: 55px;
  width: 100%;
}
.page-newbie-welcome .limits .advantages__item {
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #D6D6D6;
  background: #fff;
  text-align: center;
  width: 100%;
  position: relative;
}
.page-newbie-welcome .limits .advantages__item .arrow {
  position: absolute;
  top: 44%;
  left: 106%;
  display: block;
  height: 34px;
  width: 20px;
}
.page-newbie-welcome .limits .advantages__item-icon {
  display: block;
  margin: 0 auto 20px;
}
.page-newbie-welcome .limits .advantages__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  color: var(--base);
}
.page-newbie-welcome .limits .advantages__item-text {
  color: #212121;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .limits .container {
    padding: 80px 20px 0;
  }
  .page-newbie-welcome .limits .row {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .page-newbie-welcome .limits .row__content {
    text-align: center;
  }
  .page-newbie-welcome .limits .row__content .btn-land {
    max-width: none;
  }
}
@media (max-width: 870px) {
  .page-newbie-welcome .limits .row {
    margin-bottom: 0;
  }
  .page-newbie-welcome .limits .row__num {
    margin: 0 auto 20px;
  }
  .page-newbie-welcome .limits .row__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .page-newbie-welcome .limits .row__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .page-newbie-welcome .limits .row__img {
    width: 620px;
    position: absolute;
    left: 55%;
  }
  .page-newbie-welcome .limits .advantages {
    flex-direction: column;
  }
  .page-newbie-welcome .limits .advantages .arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    height: 34px;
    width: 20px;
    transform: rotate(90deg);
  }
}
.page-newbie-welcome .info {
  width: 100%;
  overflow: hidden;
}
.page-newbie-welcome .info .container {
  padding: 120px 20px;
  display: flex;
  align-items: center;
}
.page-newbie-welcome .info .row {
  display: flex;
  gap: 95px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .info .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }
}
.page-newbie-welcome .info.invert .container {
  flex-direction: row-reverse;
}
.page-newbie-welcome .info.invert .info__img-img {
  width: 700px;
}
.page-newbie-welcome .info.white {
  background: var(--white);
}
.page-newbie-welcome .info__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .info__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.page-newbie-welcome .info__content, .page-newbie-welcome .info__img {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .info__content, .page-newbie-welcome .info__img {
    max-width: none;
    text-align: center;
    width: 100%;
  }
}
.page-newbie-welcome .info__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  color: var(--base);
  margin-bottom: 15px;
}
.page-newbie-welcome .info__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
  color: var(--gray);
}
.page-newbie-welcome .info__num {
  border-radius: 31px;
  border: 4px solid var(--orange);
  display: flex;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--orange);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.952px;
  margin-bottom: 20px;
}
.page-newbie-welcome .info__img {
  height: 479px;
  position: relative;
}
.page-newbie-welcome .info__img-img {
  max-width: none;
  z-index: 1;
  width: 560px;
  display: block;
  position: absolute;
  left: 65%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 1000px) {
  .page-newbie-welcome .info__img-img {
    left: 50%;
  }
}
@media (max-width: 870px) {
  .page-newbie-welcome .info .container {
    padding: 80px 20px;
    flex-direction: column !important;
  }
  .page-newbie-welcome .info .row {
    gap: 25px;
    margin-bottom: 20px;
  }
  .page-newbie-welcome .info__num {
    margin: 0 auto 20px;
  }
  .page-newbie-welcome .info .btn-land {
    max-width: none;
  }
  .page-newbie-welcome .info__content, .page-newbie-welcome .info__img {
    max-width: none;
    width: 100%;
  }
  .page-newbie-welcome .info__title {
    line-height: 40px;
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
  }
  .page-newbie-welcome .info__img {
    height: 470px;
  }
  .page-newbie-welcome .info__img-img {
    width: 415px;
  }
  .page-newbie-welcome .info__text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
  }
  .page-newbie-welcome .info .advantages {
    flex-direction: column;
    width: 100%;
  }
}
.page-newbie-welcome .info .advantages {
  display: flex;
  align-items: stretch;
  gap: 55px;
  width: 100%;
}
.page-newbie-welcome .info .advantages__item {
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid #D6D6D6;
  background: #F7F7F7;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  position: relative;
}
.page-newbie-welcome .info .advantages__item .arrow {
  position: absolute;
  top: 44%;
  left: 106%;
  display: block;
  height: 34px;
  width: 20px;
}
@media (max-width: 870px) {
  .page-newbie-welcome .info .advantages__item .arrow {
    position: absolute;
    top: 105%;
    left: 48.5%;
    display: block;
    height: 34px;
    width: 20px;
    transform: rotate(90deg);
  }
}
.page-newbie-welcome .info .advantages__item-icon {
  display: block;
  margin: 0 auto 20px;
}
.page-newbie-welcome .info .advantages__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  color: var(--base);
}
.page-newbie-welcome .info .advantages__item-text {
  color: #212121;
  font-size: 16px;
  line-height: 26px;
}
.page-newbie-welcome .info .advantages__item-text a {
  font-weight: 700;
}
.page-newbie-welcome .video {
  width: 100%;
  background: #f7f7f7;
  padding: 60px 20px 30px;
}
.page-newbie-welcome .video__inner {
  border-radius: 50px;
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  overflow: hidden;
  background: #fff;
  padding-top: 60px;
}
.page-newbie-welcome .video .container {
  height: auto;
  max-width: 1040px;
  padding: 0 20px;
}
.page-newbie-welcome .video__title {
  color: #141721;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 20px;
}
.page-newbie-welcome .video__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 32px;
  margin-bottom: 15px;
  color: #42485D;
}
.page-newbie-welcome .video__img {
  cursor: pointer;
  position: relative;
  left: 48.7%;
  max-width: none;
  width: 1440px;
  transform: translateX(-50%);
}
@media (max-width: 870px) {
  .page-newbie-welcome .video {
    padding: 35px 0 30px;
  }
  .page-newbie-welcome .video__inner {
    border-radius: 20px;
  }
  .page-newbie-welcome .video__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .page-newbie-welcome .video__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .page-newbie-welcome .video__img {
    width: 466px;
    left: 50%;
  }
}
.page-newbie-welcome .turn {
  width: 100%;
  overflow: hidden;
  background: #f7f7f7;
}
.page-newbie-welcome .turn .container {
  padding: 90px 20px;
  display: flex;
  align-items: center;
}
.page-newbie-welcome .turn .row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .turn .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }
}
.page-newbie-welcome .turn__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .turn__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.page-newbie-welcome .turn__content, .page-newbie-welcome .turn__img {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1000px) {
  .page-newbie-welcome .turn__content, .page-newbie-welcome .turn__img {
    max-width: none;
    text-align: center;
    width: 100%;
  }
}
.page-newbie-welcome .turn__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  color: var(--base);
  margin-bottom: 15px;
}
.page-newbie-welcome .turn__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
  color: var(--gray);
}
.page-newbie-welcome .turn__num {
  border-radius: 31px;
  border: 4px solid var(--orange);
  display: flex;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--orange);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.952px;
  margin-bottom: 20px;
}
.page-newbie-welcome .turn__img {
  position: relative;
  width: 577.088px;
  height: 531.654px;
}
.page-newbie-welcome .turn__img-img {
  max-width: none;
  z-index: 1;
  width: 590px;
  display: block;
  position: absolute;
  left: 55%;
  top: 55%;
  transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 1000px) {
  .page-newbie-welcome .turn__img-img {
    left: 50%;
  }
}
@media (max-width: 870px) {
  .page-newbie-welcome .turn .container {
    padding: 50px 20px;
    flex-direction: column !important;
  }
  .page-newbie-welcome .turn .row {
    gap: 25px;
    margin-bottom: 20px;
  }
  .page-newbie-welcome .turn__num {
    margin: 0 auto 20px;
  }
  .page-newbie-welcome .turn .btn-land {
    max-width: none;
  }
  .page-newbie-welcome .turn__content, .page-newbie-welcome .turn__img {
    max-width: none;
    width: 100%;
  }
  .page-newbie-welcome .turn__title {
    line-height: 40px;
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
  }
  .page-newbie-welcome .turn__img {
    height: 470px;
    margin-top: -30px;
  }
  .page-newbie-welcome .turn__img-img {
    width: 435px;
  }
  .page-newbie-welcome .turn__text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
  }
  .page-newbie-welcome .turn .advantages {
    flex-direction: column;
    width: 100%;
  }
}
.page-newbie-welcome .video-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  padding: 20px;
}
.page-newbie-welcome .video-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.page-newbie-welcome .video-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 22px;
  height: 22px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}
.page-newbie-welcome .video-modal__close::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  right: 0;
  mask: url("../images/newbie/content.svg");
  -webkit-mask-image: url("../images/newbie/content.svg");
  background-color: #bec0c8;
  transition: background-color 0.3s ease;
  opacity: 0.5;
}
.page-newbie-welcome .video-modal__close:hover::before {
  background-color: #f7931a;
  opacity: 1;
}
.page-newbie-welcome .video-modal__wrapper {
  width: 720px;
  height: 405px;
}
@media (max-width: 768px) {
  .page-newbie-welcome .video-modal__wrapper {
    width: 100%;
    height: calc(56vw - 20px);
  }
}
.page-newbie-welcome .video-modal__wrapper iframe {
  object-fit: cover;
  border: none;
  width: 100%;
  height: 100%;
}

.page-increase {
  background-color: #fff;
  position: relative;
}
.page-increase.android .ios {
  display: none;
}
.page-increase.mac .android {
  display: none;
}
.page-increase .mac,
.page-increase .win {
  display: none;
}
.page-increase .download {
  display: none !important;
}
.page-increase.mac .download {
  display: flex !important;
}
.page-increase.mac .mac {
  display: block;
}
.page-increase.win .download {
  display: flex !important;
}
.page-increase.win .win {
  display: block;
}
.page-increase .popup__handler {
  background-color: transparent;
}
.page-increase .popup--video {
  padding: 20px;
}
.page-increase .animate__animated {
  opacity: 0;
}
.page-increase .animate__animated--finish {
  opacity: 1;
}
.page-increase .delay--one {
  animation-delay: 0.25s;
}
.page-increase .delay--two {
  animation-delay: 0.5s;
}
.page-increase .delay--three {
  animation-delay: 0.75s;
}
.page-increase .delay--four {
  animation-delay: 1s;
}
.page-increase .delay--five {
  animation-delay: 1.25s;
}
.page-increase .delay--six {
  animation-delay: 1.5s;
}
.page-increase .delay--seven {
  animation-delay: 1.75s;
}
.page-increase .container-new {
  max-width: 1280px;
}
.page-increase .js-parts {
  position: absolute;
}
@media (max-width: 768px) {
  .page-increase .js-parts {
    display: none;
  }
}
.page-increase .js-parts-wrapper {
  max-width: 1280px;
  width: 100%;
  left: 50%;
  right: 0;
  position: absolute;
  transform: translate(-50%);
}
.page-increase .js-parts--left {
  left: -80px;
}
.page-increase .js-parts--right {
  right: -80px;
}
.page-increase .js-parts .js-item--first {
  left: -70px !important;
  top: -20px !important;
  width: 195px;
  height: 195px;
}
.page-increase .js-parts .js-item--second {
  left: 140px !important;
  top: -116px !important;
  width: 200px;
  height: 200px;
}
.page-increase .js-parts .js-item--third {
  left: auto !important;
  right: 140px !important;
  top: -116px !important;
  width: 200px;
  height: 200px;
}
.page-increase .js-parts .js-item--fourth {
  left: auto !important;
  right: -115px !important;
  top: -40px !important;
  width: 278px;
  height: 278px;
}
.page-increase .icon {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .page-increase .icon {
    width: 70px;
    height: 70px;
  }
}
.page-increase .title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .page-increase .title {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
}
.page-increase .text {
  color: #494949;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-increase .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }
}
.page-increase .social-btn_eml {
  background-color: #fff !important;
}
.page-increase .social-btn_eml:before {
  background-image: none;
}
.page-increase .social-btn_fb:before {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.page-increase .social-btn_tw {
  background-color: #000;
}
.page-increase .social-btn_tw:hover {
  background-color: #252525;
}
.page-increase .social-btn_tw:active {
  opacity: 0.7;
}
.page-increase .social-btn_tw:before {
  background-image: url("../images/sharing/icon-x.svg");
}
.page-increase .social-btn_fb {
  background: #1877F2;
}
.page-increase .social-btn_fb:hover {
  background: #388CF9;
}
.page-increase .social-btn_fb:active {
  opacity: 0.7;
}
.page-increase .scroll2top {
  border-radius: 10px 0 0 10px;
}
.page-increase #qrPopup .popup__qr-tab-item:hover {
  background-color: #388CF9;
  border-color: #388CF9;
}
.page-increase #qrPopup .popup__qr-tab-item.active {
  border-color: #388CF9;
  background-color: #388CF9;
}
.page-increase .header {
  width: 100%;
  padding: 0px 40px;
  margin: 0 auto;
  background-color: #fff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-animation-fill-mode: inherit;
}
@media (min-width: 1200px) {
  .page-increase .header {
    min-height: auto;
  }
  .page-increase .header.fixed .header__wrapper {
    top: -70px;
    padding: 0;
  }
}
@media (max-width: 1249px) {
  .page-increase .header {
    flex-direction: row;
  }
  .page-increase .header__container {
    flex-direction: row;
  }
}
@media (max-width: 1200px) {
  .page-increase .header {
    padding: 10px 40px;
    flex-direction: column;
  }
  .page-increase .header__container {
    flex-direction: column;
  }
}
.page-increase .header .social-links {
  margin-right: 0;
}
.page-increase .header .social-link {
  border-radius: 6px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  height: 40px;
  display: flex;
  align-items: center;
  width: 40px;
  justify-content: center;
  margin-right: 0;
}
.page-increase .header .social-link_twitter svg path {
  fill: #000 !important;
}
.page-increase .header .social-link:hover {
  background-color: #f7931a;
}
.page-increase .header .social-link:hover svg path {
  fill: #fff !important;
}
.page-increase .header.fixed .logo {
  visibility: visible;
  opacity: 1;
}
.page-increase .header .logo {
  visibility: visible;
  opacity: 1;
  width: auto;
}
@media (max-width: 1200px) {
  .page-increase .header .logo {
    margin-bottom: 0;
  }
}
.page-increase .header__wrapper {
  width: 100%;
  transition: background-color 0.2s;
}
.page-increase .header__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
@media (max-width: 768px) {
  .page-increase .header__container {
    min-height: auto;
  }
}
.page-increase .header__navbar {
  display: flex;
  align-items: center;
  z-index: 20;
  gap: 10px;
}
.page-increase .header__menu {
  margin-right: 20px;
}
.page-increase .header__menu > a {
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  color: #4285f4;
  text-transform: uppercase;
}
.page-increase .header__menu > a:hover {
  color: #f7931a;
}
.page-increase .header__menu > a + a {
  margin-left: 25px;
}
.page-increase .header__menu > a.active {
  color: #000;
  pointer-events: none;
  position: relative;
  background: none;
}
.page-increase .header__menu > a.active:after {
  content: "";
  display: block;
  width: 100%;
  border-radius: 3px;
  height: 3px;
  background-color: #f7931a;
  position: absolute;
  bottom: -13px;
  left: 0;
}
@media (max-width: 768px) {
  .page-increase .header__menu + .header__social-item {
    margin-left: 15px;
  }
}
.page-increase .header__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #757575;
  margin-right: 30px;
  text-transform: capitalize;
}
.page-increase .header__socials a {
  text-decoration: none;
}
.page-increase .header__socials a:hover svg path {
  fill: #f7931a;
}
.page-increase .header__socials a + a {
  margin-left: 20px;
}
.page-increase .header__socials span i {
  margin-left: 10px;
}
.page-increase .header .lang__current {
  height: 40px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0.186px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
.page-increase .header .lang__current:hover {
  cursor: pointer;
}
.page-increase .header .lang__current:before {
  top: 17px;
}
.page-increase .header .lang__current img {
  top: 14px;
}
.page-increase .header__lang .lang__current,
.page-increase .header__lang .lang__list {
  border-radius: 6px;
}
.page-increase .header__lang_black .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
}
.page-increase .header__lang_black .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
}
.page-increase .header__lang_black .lang.opened .lang__current:before {
  top: 13px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d0d0d0;
  border-bottom: none;
}
@media only screen and (max-width: 768px) {
  .page-increase .header {
    padding: 0;
    position: relative;
    z-index: 100;
    height: 61px;
  }
  .page-increase .header .lang__list {
    transform: translateY(calc(21% - 40px));
  }
  .page-increase .header .logo img {
    height: 50px;
  }
  .page-increase .header.fixed .header__wrapper {
    position: fixed;
    top: -61px;
    left: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, background-color 0.2s;
  }
  .page-increase .header__container {
    background-color: #fff;
  }
  .page-increase .header__navbar {
    position: absolute;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    padding-bottom: 15px;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    top: 0;
    opacity: 0;
    transform: translateY(-100%);
  }
  .page-increase .header__navbar.active {
    opacity: 1;
    transform: translateY(61px);
  }
  .page-increase .header__navbar .store-links {
    display: none;
  }
  .page-increase .header__navbar .lang {
    display: block;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .page-increase .header__navbar {
    justify-content: center;
  }
  .page-increase .header__navbar .header__social-item:first-of-type {
    margin-left: 0;
  }
  .page-increase .header__navbar .lang {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;
    width: 100%;
    height: 61px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    background-color: #fff;
    z-index: 100;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .page-increase .header__logo {
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header__logo .logo-animated {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header__logo svg {
    height: 48px !important;
    width: 206px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header__lang {
    margin-right: 15px;
    margin-top: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header__menu {
    display: block;
    justify-content: flex-start;
    width: 100%;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid #d6d6d6;
    margin-right: 0 !important;
    overflow-x: scroll;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;
    margin-bottom: 5px !important;
    text-align: center;
  }
  .page-increase .header__menu::-webkit-scrollbar {
    display: none;
  }
  .page-increase .header__menu:after {
    content: "";
    display: block;
    width: 20px;
  }
  .page-increase .header__menu > a {
    display: inline-block;
    padding: 0;
    margin-top: 0;
  }
  .page-increase .header__menu > a:last-child {
    margin-right: 20px;
  }
  .page-increase .header__menu a.active:after {
    bottom: -18px;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header__socials {
    margin-right: 0;
    margin-left: 15px;
    margin-bottom: 15px;
  }
  .page-increase .header__socials span {
    display: block;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .page-increase .header .lang,
.page-increase .header .social-links {
    margin: 0 !important;
  }
}
@media (max-width: 700px) {
  .page-increase .header {
    z-index: 121;
  }
}
@media only screen and (max-width: 720px) {
  .page-increase .header .header .lang {
    display: none;
  }
}
.page-increase .header .logo-top svg {
  width: auto !important;
  margin-left: -8px;
}
@media (max-width: 1130px) {
  .page-increase .header .logo-top svg {
    margin-left: 0;
  }
}
.page-increase .burger {
  display: none;
  width: 60px;
  height: 61px;
  position: absolute;
  right: 0;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: -21px;
  padding: 0;
}
.page-increase .burger.active {
  left: 15px;
  top: 48%;
}
.page-increase .burger.active span, .page-increase .burger.active:before, .page-increase .burger.active:after {
  background-color: #3e82f7;
}
.page-increase .burger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #757575;
  margin: 3px 0;
  border-radius: 2px;
}
.page-increase .burger:before, .page-increase .burger:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background-color: #757575;
}
.page-increase .burger::before {
  top: 20px;
}
.page-increase .burger::after {
  bottom: 29px;
}
.page-increase .burger span {
  top: 38%;
}
@media (max-width: 768px) {
  .page-increase .burger {
    display: flex;
  }
}
.page-increase .top {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
  margin-bottom: -145px;
}
.page-increase .top .title {
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  margin: 0 auto 20px;
  max-width: 1100px;
}
@media (max-width: 768px) {
  .page-increase .top .title {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
    margin: 0 auto 10px;
  }
}
@media (max-width: 768px) {
  .page-increase .top .icon {
    margin: 0 auto 15px;
  }
}
.page-increase .top__inner {
  overflow: hidden;
}
@media (max-width: 500px) {
  .page-increase .top {
    padding-top: 40px;
    margin-bottom: -16%;
  }
}
.page-increase .top__mob-decoration {
  display: none;
}
@media (max-width: 768px) {
  .page-increase .top__mob-decoration {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    min-width: 480px;
    top: 0;
  }
}
.page-increase .top__picture {
  width: 1480px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-height: 594px;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .page-increase .top__picture {
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 40px;
    margin-bottom: -3px;
    left: auto;
    transform: none;
    min-height: 300px;
  }
}
.page-increase .top__picture img {
  width: 100%;
}
.page-increase .choose {
  border-radius: 50px 50px 0 0;
  border-top: 8px solid #F7931A;
  border-bottom: 8px solid #F7931A;
  background: #25272A;
  padding: 110px 0 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-increase .choose {
    border-radius: 20px 20px 0 0;
    padding: 50px 0;
  }
}
.page-increase .choose .js-anim-arrow {
  width: 60px;
  height: 90px;
  margin: 70px auto;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .page-increase .choose .js-anim-arrow {
    margin: 50px auto;
  }
}
.page-increase .choose .title {
  color: #fff;
  max-width: 1000px;
}
.page-increase .choose .text {
  color: #D1D2D6;
  margin-bottom: 40px;
  max-width: 1000px;
}
.page-increase .choose .download {
  display: flex;
  max-width: 320px;
  width: 100%;
  height: 60px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: #4285F4;
  transition: all 0.3s;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
.page-increase .choose .download:hover {
  background: #f7931a;
}
.page-increase .choose .btn {
  border-radius: 10px;
}
.page-increase .choose .download-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-increase .choose .download-btns {
    display: none;
  }
}
.page-increase .browser {
  position: relative;
}
.page-increase .browser__mob-decoration {
  display: none;
}
@media (max-width: 768px) {
  .page-increase .browser__mob-decoration {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    top: 260px;
  }
}
@media (max-width: 768px) {
  .page-increase .browser .js-anim-arrow {
    margin: 40px auto;
  }
}
.page-increase .browser__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .page-increase .browser__items {
    flex-direction: column;
  }
}
.page-increase .browser__decoration {
  position: relative;
  margin: 0 -300px;
}
@media (max-width: 768px) {
  .page-increase .browser__decoration {
    display: none;
  }
}
.page-increase .browser__decoration img {
  position: absolute;
  top: -834px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page-increase .browser__picture {
  position: relative;
  margin: 0 -290px;
}
@media (max-width: 768px) {
  .page-increase .browser__picture {
    display: none;
  }
}
.page-increase .browser__picture img {
  position: absolute;
  width: 100%;
  bottom: 40px;
  left: 0;
  right: 0;
  top: -535px;
  margin: auto;
}
.page-increase .browser__item {
  border-radius: 10px;
  background: #303137;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .page-increase .browser__item {
    width: 100%;
    max-width: 335px;
  }
}
.page-increase .browser__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-increase .browser__item-picture {
  padding: 13px 40px 0;
  border-top: 1px solid #3F4045;
  border-bottom: 1px solid #3F4045;
}
@media (max-width: 768px) {
  .page-increase .browser__item-picture {
    padding: 13px 48px 0;
  }
}
.page-increase .browser__item-head {
  padding: 15px 0;
}
.page-increase .browser__item-footer {
  padding: 15px;
  width: 100%;
}
.page-increase .browser__item .google-play {
  border-radius: 10px;
  background: #000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  color: #25272A;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
.page-increase .browser__item .google-play:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .page-increase .browser__item .google-play {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    height: 50px;
  }
}
.page-increase .browser__item .google-play.lite svg {
  transition: all 0.3s;
}
.page-increase .browser__item .google-play.lite svg rect {
  stroke: #1AB9E5;
}
.page-increase .browser__item .google-play.lite svg path {
  fill: #1AB9E5;
}
.page-increase .browser__item .google-play.lite:hover {
  background: #1AB9E5;
}
.page-increase .browser__item .google-play.lite:hover svg rect {
  stroke: #fff;
}
.page-increase .browser__item .google-play.lite:hover svg path {
  fill: #fff;
}
.page-increase .browser__item .google-play.pro svg {
  transition: all 0.3s;
}
.page-increase .browser__item .google-play.pro svg rect {
  stroke: #F7931A;
}
.page-increase .browser__item .google-play.pro svg path {
  fill: #F7931A;
}
.page-increase .browser__item .google-play.pro:hover {
  background: #F7931A;
}
.page-increase .browser__item .google-play.pro:hover svg rect {
  stroke: #fff;
}
.page-increase .browser__item .google-play.pro:hover svg path {
  fill: #fff;
}
.page-increase .browser__item .google-play.max svg {
  transition: all 0.3s;
}
.page-increase .browser__item .google-play.max svg rect {
  stroke: #A033CC;
}
.page-increase .browser__item .google-play.max svg path {
  fill: #A033CC;
}
.page-increase .browser__item .google-play.max:hover {
  background: #A033CC;
}
.page-increase .browser__item .google-play.max:hover svg rect {
  stroke: #fff;
}
.page-increase .browser__item .google-play.max:hover svg path {
  fill: #fff;
}
.page-increase .ctfarm {
  position: relative;
}
@media (max-width: 768px) {
  .page-increase .ctfarm .icon {
    width: 60px;
    height: 60px;
  }
}
.page-increase .ctfarm .ct-farm__play {
  position: relative;
  z-index: 2;
  border-radius: 110px;
  background: #FFF;
  color: #000;
  padding: 7px 20px;
  transition: all 0.3s;
}
.page-increase .ctfarm .ct-farm__play svg {
  fill: #4285F4;
}
.page-increase .ctfarm .ct-farm__play:hover {
  background: #F7931A;
  color: #fff;
}
.page-increase .ctfarm .ct-farm__play:hover svg {
  fill: #fff;
}
.page-increase .ctfarm .ct-farm__play span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-left: 8px;
}
.page-increase .ctfarm .ct-farm__download-btns {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.page-increase .ctfarm .ct-farm__download-btns b {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  white-space: pre-wrap;
}
.page-increase .ctfarm .ct-farm__download-btns a,
.page-increase .ctfarm .ct-farm__download-btns button {
  padding: 15px;
  width: 100%;
  min-width: 243px;
  transition: background 0.3s ease, border 0.3s ease;
}
.page-increase .ctfarm .ct-farm__download-btns a:hover,
.page-increase .ctfarm .ct-farm__download-btns button:hover {
  background: #F7931A;
  border: 1px solid #F7931A;
}
.page-increase .ctfarm .ct-farm__download-btns a > span,
.page-increase .ctfarm .ct-farm__download-btns button > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  background: no-repeat;
  padding: 0;
  white-space: nowrap;
  color: #fff;
  bottom: 0;
  text-align: left;
}
.page-increase .ctfarm .ct-farm__download-btns .btn-soon {
  margin-left: 0;
  border-radius: 10px;
  background: #4285F4;
  border: 1px solid #4285F4;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.page-increase .ctfarm .ct-farm__download-btns a,
.page-increase .ctfarm .ct-farm__download-btns .mobile-app-btn,
.page-increase .ctfarm .ct-farm__download-btns .btn-soon {
  border-radius: 10px;
  background: #4285F4;
  border: 1px solid #4285F4;
  display: flex;
  gap: 10px;
}
.page-increase .ctfarm .ct-farm__download-btns a:before, .page-increase .ctfarm .ct-farm__download-btns a:after,
.page-increase .ctfarm .ct-farm__download-btns .mobile-app-btn:before,
.page-increase .ctfarm .ct-farm__download-btns .mobile-app-btn:after,
.page-increase .ctfarm .ct-farm__download-btns .btn-soon:before,
.page-increase .ctfarm .ct-farm__download-btns .btn-soon:after {
  display: none;
}
@media (max-width: 991px) {
  .page-increase .ctfarm .ct-farm__download-btns a,
.page-increase .ctfarm .ct-farm__download-btns button {
    min-width: 320px;
  }
}
@media (max-width: 768px) {
  .page-increase .ctfarm .ct-farm__download-btns {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .page-increase .ctfarm .ct-farm__download-btns a,
.page-increase .ctfarm .ct-farm__download-btns button {
    min-width: none;
  }
  .page-increase .ctfarm .ct-farm__download-btns .btn-soon {
    display: none !important;
  }
  .page-increase .ctfarm .ct-farm__download-btns .mobile-app-btn {
    height: 50px;
  }
}
.page-increase .ctfarm__picture {
  width: 1340px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-top: -278px;
}
.page-increase .ctfarm__picture img {
  width: 100%;
}
@media (max-width: 768px) {
  .page-increase .ctfarm__picture {
    margin: 10px -90px;
    width: auto;
    left: auto;
    transform: translateX(0%);
    position: relative;
  }
}
.page-increase .ctfarm__decorations {
  position: relative;
  width: 1515px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-increase .ctfarm__decorations {
    display: none !important;
  }
}
.page-increase .ctfarm__decorations .ctfarm__decoration {
  position: relative;
  margin-top: -240px;
  margin-left: -88px;
  margin-right: -88px;
}
.page-increase .ctfarm__decorations .ctfarm__decoration--left {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 0;
}
.page-increase .ctfarm__decorations .ctfarm__decoration--right {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 0;
}
.page-increase .pool {
  margin-top: -170px;
  position: relative;
}
.page-increase .pool__mob-decoration {
  display: none;
}
@media (max-width: 768px) {
  .page-increase .pool__mob-decoration {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    min-width: 460px;
    top: 65px;
  }
}
@media (max-width: 768px) {
  .page-increase .pool {
    margin-top: -40px;
  }
}
.page-increase .pool__picture {
  width: 1186px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-top: -160px;
}
.page-increase .pool__picture img {
  width: 100%;
}
@media (max-width: 768px) {
  .page-increase .pool__picture {
    width: auto;
    left: auto;
    transform: translateX(0);
    position: relative;
    margin: 40px -210px 0 -140px;
  }
}
.page-increase .pool .btns__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.page-increase .pool .btn {
  display: flex;
  max-width: 320px;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: #4285F4;
  transition: all 0.3s;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-increase .pool .btn {
    height: 50px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
  }
}
.page-increase .pool .btn:hover {
  background: #F7931A;
  border: 1px solid #F7931A;
}
.page-increase .pool .btn--white {
  border-radius: 10px;
  background: #FFF;
  color: #4285F4;
}
.page-increase .pool .btn--white:hover {
  color: #fff;
}
.page-increase .pool .btn--white:hover svg path {
  fill: #fff;
}
@media (max-width: 768px) {
  .page-increase .pool .btn {
    max-width: none;
  }
}
.page-increase .pool__decorations {
  position: relative;
  width: 1515px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-increase .pool__decorations {
    display: none;
  }
}
.page-increase .pool__decorations .pool__decoration {
  position: relative;
  margin-top: -240px;
  margin-left: -88px;
  margin-right: -88px;
}
.page-increase .pool__decorations .pool__decoration--left {
  position: absolute;
  bottom: -70px;
  left: 130px;
  z-index: 0;
}
.page-increase .pool__decorations .pool__decoration--right {
  position: absolute;
  bottom: -120px;
  right: 70px;
  z-index: 0;
}
.page-increase .wallet {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-increase .wallet {
    margin: 0 -20px;
  }
  .page-increase .wallet .container {
    padding: 0;
  }
}
.page-increase .wallet .title {
  color: #fff;
  position: relative;
  z-index: 1;
}
.page-increase .wallet .text {
  color: #FFDFB8;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-increase .wallet .text {
    margin: 0 auto 15px;
    color: #FFF;
  }
}
.page-increase .wallet .devices {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
}
@media (max-width: 499px) {
  .page-increase .wallet .devices {
    position: relative;
    margin: -345px -20px 0;
  }
}
.page-increase .wallet .devices img {
  width: 100%;
}
.page-increase .wallet .btn {
  margin: 0 auto;
  gap: 10px;
  display: flex;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-increase .wallet .btn {
    height: 50px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    max-width: none;
  }
}
.page-increase .wallet .btn svg path {
  fill: #fff;
  transition: all 0.3s;
}
.page-increase .wallet .btn:hover {
  background: #fff;
  color: #F7931A;
}
.page-increase .wallet .btn:hover svg path {
  fill: #F7931A;
}
.page-increase .wallet__inner {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  min-height: 1280px;
  margin: 0 auto;
  padding: 80px 30px 0 30px;
  border-radius: 40px;
  background: #F7931A;
  box-shadow: 0px 1.037px 2.007px 0px rgba(247, 147, 26, 0.02), 0px 4.563px 4.156px 0px rgba(247, 147, 26, 0.04), 0px 11.2px 8.288px 0px rgba(247, 147, 26, 0.05), 0px 21.57px 16.244px 0px rgba(247, 147, 26, 0.05), 0px 36.296px 29.868px 0px rgba(247, 147, 26, 0.07), 0px 56px 51px 0px rgba(247, 147, 26, 0.09);
}
@media (max-width: 768px) {
  .page-increase .wallet__inner {
    min-height: 900px;
  }
}
@media (max-width: 499px) {
  .page-increase .wallet__inner {
    padding: 50px 20px 0 20px;
    min-height: auto;
    border-radius: 20px;
  }
}
.page-increase .affiliate {
  margin: 80px 0 0;
}
.page-increase .affiliate .btns__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.page-increase .affiliate .btn {
  display: flex;
  max-width: 320px;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: #4285F4;
  transition: all 0.3s;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-increase .affiliate .btn {
    height: 50px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
  }
}
.page-increase .affiliate .btn:hover {
  background: #F7931A;
  border: 1px solid #F7931A;
}
.page-increase .affiliate .btn--white {
  border-radius: 10px;
  background: #FFF;
  color: #4285F4;
}
.page-increase .affiliate .btn--white:hover {
  background: #4285F4;
  border: 1px solid #4285F4;
  color: #fff;
}
.page-increase .affiliate .btn--white:hover svg path {
  fill: #fff;
}
@media (max-width: 768px) {
  .page-increase .affiliate .btn {
    max-width: none;
  }
}
.page-increase .affiliate__content {
  min-height: 100px;
}
.page-increase .affiliate .title b {
  color: #F7931A;
}
.page-increase .affiliate__title b {
  color: #F7931A;
}
@media (max-width: 768px) {
  .page-increase .affiliate .text {
    margin-bottom: 20px;
  }
}
.page-increase .affiliate .js-anim-arrow {
  margin: 30px auto;
  transform: rotate(0);
}
.page-increase .affiliate__video {
  position: relative;
  margin-top: -234px;
  margin-bottom: -60px;
}
.page-increase .affiliate__video .circles__img {
  cursor: pointer;
  position: absolute;
  left: 50%;
  max-width: none;
  width: 1187px;
  transform: translate(-50%, -105px);
}
@media (max-width: 768px) {
  .page-increase .affiliate__video .circles__img {
    display: none;
  }
}
.page-increase .affiliate__img {
  cursor: pointer;
  position: relative;
  left: 50%;
  max-width: none;
  width: 1280px;
  transform: translateX(-50%);
}
.page-increase .affiliate__ready-block {
  width: auto;
  margin-bottom: -40px;
  min-height: auto;
}
.page-increase .affiliate__ready-img {
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .page-increase .affiliate__ready-img {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .page-increase .affiliate {
    padding: 35px 0 30px;
  }
  .page-increase .affiliate .js-anim-arrow {
    margin: 40px auto;
    transform: rotate(180deg);
  }
  .page-increase .affiliate__ready-block {
    margin: 25px -20px -90px;
  }
  .page-increase .affiliate__ready-img {
    cursor: pointer;
    position: relative;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
  .page-increase .affiliate__video {
    width: auto;
    left: auto;
    transform: translateX(0);
    position: relative;
    margin: -47px -80px 0;
  }
  .page-increase .affiliate__img {
    width: 100%;
    left: 54%;
  }
  .page-increase .affiliate__inner {
    border-radius: 20px;
  }
  .page-increase .affiliate__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .page-increase .affiliate__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }
}
.page-increase .share {
  padding: 80px 0 110px;
  position: relative;
  background-color: #fff;
  margin-top: 0;
  border-bottom: 8px solid #F7931A;
}
.page-increase .share .line {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 80px 0 0;
}
.page-increase .share .shape-bottom {
  height: 169px;
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .page-increase .share .shape-bottom {
    height: 49px;
  }
}
.page-increase .share .preview {
  max-width: 390px;
  margin: 50px auto 0px;
  position: relative;
}
.page-increase .share .preview__share {
  width: 120px;
  height: 62px;
  border-radius: 4px;
}
.page-increase .share .preview__arrow {
  width: 20px;
  height: 20px;
  background: #F7F7F7;
  border-top: 1px solid #D6D6D6;
  border-right: 1px solid #D6D6D6;
  transform: rotate(-45deg);
  position: absolute;
  top: -10px;
  left: 30px;
  z-index: 4;
}
.page-increase .share .preview:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  background: #fff;
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: 1;
}
.page-increase .share .preview:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  background: #F7F7F7;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
}
.page-increase .share .preview__item {
  padding: 15px;
  background: #F7F7F7;
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  position: relative;
  z-index: 3;
}
.page-increase .share .preview__description {
  font-size: 11px;
  line-height: 155%;
  margin-bottom: 15px;
  color: #494949;
}
.page-increase .share .preview__row {
  display: flex;
  align-items: flex-start;
}
.page-increase .share .preview__content {
  margin-right: 10px;
  padding-left: 10px;
  border-left: 2px solid #F7931A;
}
.page-increase .share .preview__title {
  font-weight: 700;
  font-size: 11px;
  line-height: 155%;
}
.page-increase .share .preview__title br {
  display: none;
}
.page-increase .share .preview__subtitle {
  font-weight: 600;
  font-size: 11px;
  line-height: 155%;
  color: #494949;
}
.page-increase .share .preview__text {
  font-size: 11px;
  line-height: 155%;
  color: #494949;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-increase .share .preview__text a {
  text-decoration: none;
  color: #494949;
  font-weight: bold;
  pointer-events: none;
}
.page-increase .share .preview__text--clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.page-increase .share__decoration {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -200px;
  width: 100%;
  max-height: 413px;
}
.page-increase .share .container {
  position: relative;
  z-index: 3;
}
.page-increase .share .text {
  margin-bottom: 0;
}
.page-increase .share-buttons {
  max-width: 687px;
  position: relative;
  margin: 60px auto 0px;
  border-radius: 0 65px 65px 65px;
  background: rgba(0, 0, 0, 0.8);
  padding: 29px 30px;
}
@media (max-width: 768px) {
  .page-increase .share-buttons {
    border-radius: 0 65px 65px 65px;
    padding: 33px 30px;
  }
}
.page-increase .share-buttons__msg {
  position: absolute;
  background: #F7931A;
  border-radius: 6px;
  padding: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  left: 0;
  top: -20px;
}
.page-increase .share-buttons .social-btns {
  max-width: none;
  width: 100%;
  justify-content: space-between;
}
.page-increase .share-buttons .social-btns__list {
  width: 200px;
}
.page-increase .share-buttons .social-btns__list.active {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
}
.page-increase .share-buttons .social-btns__list .social-btn {
  width: 72px;
}
.page-increase .share-buttons .social-btns__more {
  border: 2px solid #8E8E8E;
  border-radius: 36px;
  width: 72px;
  height: 72px;
  background: none;
  box-shadow: none;
  transition: all 0.3s;
}
.page-increase .share-buttons .social-btns__more:after, .page-increase .share-buttons .social-btns__more:before {
  background: #8E8E8E;
  border-radius: 2px;
}
.page-increase .share-buttons .social-btns__more:after {
  width: 20px;
}
.page-increase .share-buttons .social-btns__more:before {
  height: 20px;
}
.page-increase .share-buttons .social-btns__more:hover {
  background: #F7931A;
  border-color: #F7931A;
  box-shadow: none;
}
.page-increase .share-buttons .social-btns__more:hover:after, .page-increase .share-buttons .social-btns__more:hover:before {
  background: #fff;
}
.page-increase .share-buttons .social-btns__more:active {
  opacity: 0.8;
}
.page-increase .share-buttons .social-btn {
  width: 96px;
  height: 72px;
  border-radius: 36px;
}
.page-increase .share-buttons .social-btn_fb {
  background: #1877F2;
}
.page-increase .share-buttons .social-btn_fb:before {
  height: 43px;
  width: 23px;
  background: url('data:image/svg+xml,<svg width="23" height="44" viewBox="0 0 23 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.4929 24.834L22.6849 17.0623H15.2283V12.0189C15.2283 9.89273 16.2699 7.82026 19.6098 7.82026H23V1.20383C23 1.20383 19.9232 0.678711 16.9817 0.678711C10.8404 0.678711 6.82648 4.40072 6.82648 11.139V17.0623H0V24.834H6.82648V43.6215C8.1953 43.8363 9.59825 43.9481 11.0274 43.9481C12.4565 43.9481 13.8595 43.8363 15.2283 43.6215V24.834H21.4929Z" fill="white"/></svg>');
}
.page-increase .share-buttons .social-btn_fb:hover {
  background: #388CF9;
}
.page-increase .share-buttons .social-btn_tw:before {
  width: 40px;
  height: 40px;
  background: url("../images/sharing/icon-x.svg");
}
.page-increase .share-buttons .social-btn_pt:before {
  width: 40px;
  height: 36px;
}
.page-increase .share-buttons .social-btn_wa:before {
  height: 50px;
  width: 50px;
}
.page-increase .share-buttons .social-btn_tg:before {
  width: 40px;
  height: 34px;
  transform: translateX(calc(-50% - 4px)) translateY(-50%);
  background: url('data:image/svg+xml,<svg width="40" height="34" viewBox="0 0 40 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M33.8157 31.863L39.8528 3.1688C40.1472 1.97941 40 1.08736 39.411 0.492664C38.822 -0.102034 38.2331 -0.102034 37.3496 0.195315L1.86365 14.022C1.12743 14.3194 0.538452 14.6167 0.243963 15.0628C-0.0505264 15.5088 -0.0505263 15.8061 0.0967182 16.1035C0.243963 16.4008 0.685697 16.6982 1.42192 16.8469L10.5511 19.6717L31.6071 6.29097C32.196 5.84494 32.6378 5.84494 32.9323 5.99362C33.0795 6.14229 33.0795 6.29097 32.785 6.58832L15.7046 22.3478L14.9684 31.863C15.5574 31.863 16.1464 31.5656 16.8826 30.9709L21.2999 26.6594L30.4291 33.4984C32.3433 34.5391 33.374 33.9444 33.8157 31.863Z" fill="white"/></svg>');
}
.page-increase .share-buttons .social-btn_rd:before {
  width: 45px;
  height: 45px;
}
.page-increase .share .title b {
  display: block;
  color: #F7931A;
}
@media (max-width: 768px) {
  .page-increase .share {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .page-increase .share .title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .page-increase .share .text {
    font-size: 16px;
    line-height: 26px;
  }
  .page-increase .share-buttons {
    max-width: 335px;
    margin-top: 65px;
  }
  .page-increase .share__decoration {
    bottom: -85px;
    max-height: 85px;
  }
  .page-increase .share .social-btns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
  .page-increase .share .social-btns__more {
    height: 70px;
    width: auto;
    margin: 0;
  }
  .page-increase .share .social-btns__list .social-btn::before {
    width: 33px;
    height: 33px;
  }
  .page-increase .share .social-btn {
    width: 100%;
    height: 70px;
    border-radius: 36px;
    margin: 0;
  }
  .page-increase .share .preview {
    display: none;
  }
}
.page-increase .video-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  padding: 20px;
}
.page-increase .video-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.page-increase .video-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 22px;
  height: 22px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}
.page-increase .video-modal__close::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  right: 0;
  mask: url("../images/newbie/content.svg");
  -webkit-mask-image: url("../images/newbie/content.svg");
  background-color: #bec0c8;
  transition: background-color 0.3s ease;
  opacity: 0.5;
}
.page-increase .video-modal__close:hover::before {
  background-color: #f7931a;
  opacity: 1;
}
.page-increase .video-modal__wrapper {
  width: 720px;
  height: 405px;
}
@media (max-width: 768px) {
  .page-increase .video-modal__wrapper {
    width: 100%;
    height: calc(56vw - 20px);
  }
}
.page-increase .video-modal__wrapper iframe {
  object-fit: cover;
  border: none;
  width: 100%;
  height: 100%;
}
.page-increase .footer {
  display: block;
  background-color: #000;
  min-height: 100px;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}
.page-increase .footer .social-link {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  border: 1px solid #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.page-increase .footer .social-link:hover {
  background-color: #f7931a;
  border-color: #f7931a;
}
.page-increase .footer .menu__item a {
  white-space: normal;
}
.page-increase .footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 35px;
}
.page-increase .footer__left-side {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.page-increase .footer .lang__current {
  background-color: #282828;
  border: 1px solid #757575;
  color: #fff;
  border-radius: 6px;
}
.page-increase .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;
}
.page-increase .footer .lang__current:hover {
  background-color: #fff;
  border-color: #fff;
  color: #4285f4;
}
.page-increase .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;
}
.page-increase .footer .lang__list {
  transform: translateY(calc(-100% - 40px));
  position: absolute;
  width: 100%;
  border-radius: 6px;
}
.page-increase .footer__right-side {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.page-increase .footer__logo {
  display: block;
  width: 235px;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .page-increase .footer__logo {
    width: 220px;
  }
}
.page-increase .footer__logo img {
  display: block;
}
.page-increase .footer__bottom {
  display: block;
  width: 100%;
  border-top: 1px solid #212121;
  padding-top: 15px;
  padding-bottom: 15px;
}
.page-increase .footer__bottom .footer__content {
  padding-bottom: 0;
  align-items: center;
}
.page-increase .footer__copyright {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #757575;
}
.page-increase .footer__btns {
  margin-right: 20px;
  padding-top: 13px;
}
.page-increase .footer__btns .fb-like {
  margin-bottom: 20px;
}
.page-increase .footer__menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 1000px) {
  .page-increase .footer__menu {
    padding-right: 0;
    width: 100%;
  }
}
.page-increase .footer__store-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-increase .store-links {
  display: flex;
  max-width: 118px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-increase .footer .store {
  border-color: #757575;
  background-color: #282828;
}
.page-increase .footer .store:hover {
  border-color: #4285f4;
  background-color: #4285f4;
}
.page-increase .footer .store:active {
  background-color: #494949;
  border-color: #494949;
}
.page-increase .footer .store__first-line,
.page-increase .footer .store__second-line {
  display: none !important;
}
.page-increase .footer .google-play {
  width: 165px;
}
.page-increase .footer .store_cryptosearch:before {
  left: 14px;
}
.page-increase .page_withcoins .footer {
  position: relative;
  z-index: 10;
}
.page-increase .bonus {
  display: inline-block;
  padding: 3px 4px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #4285f4;
  color: #fff;
}
.page-increase .bonus_orange {
  background-color: #f7931a;
}
.page-increase .bonus_red {
  background-color: #F74249;
}
.page-increase .bonus_turq {
  background-color: #1AB9E5;
}
.page-increase .bonus_purple {
  background-color: #A033CC;
}
.page-increase .bonus_green {
  background-color: #1DC886;
}
@media only screen and (max-width: 1040px) {
  .page-increase .page_ru .footer .footer__store-links {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .page-increase .footer .footer__store-links {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 900px) {
  .page-increase .page_ru .footer .menu__col {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 800px) {
  .page-increase .footer {
    padding-top: 0;
    position: relative;
  }
  .page-increase .footer__content {
    padding: 20px 20px 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .page-increase .footer__bottom .footer__content {
    padding-top: 0;
  }
  .page-increase .footer .lang {
    position: absolute;
    top: 25px;
    right: 20px;
  }
  .page-increase .footer__btns {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 4;
  }
  .page-increase .footer__btns .fb-like {
    margin-bottom: 0;
  }
  .page-increase .footer__store-links {
    order: 2;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-increase .footer .menu {
    margin-bottom: 20px;
    margin-right: 0;
    text-align: center;
  }
  .page-increase .footer .menu__item, .page-increase .footer .menu__label {
    text-align: left;
  }
  .page-increase .footer .menu__item_join {
    justify-content: flex-start;
  }
  .page-increase .footer__social-links {
    display: flex;
    order: 3;
    color: #757575;
    white-space: nowrap;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 12px;
  }
  .page-increase .footer__menu {
    flex-direction: column;
    width: auto;
  }
}
@media screen and (max-width: 800px) {
  .page-increase .footer__logo {
    align-self: flex-start;
  }
}
.page-increase #webPopup {
  display: none;
  padding: 20px;
}
.page-increase #webPopup.active {
  display: flex;
}
@media (max-width: 768px) {
  .page-increase #webPopup.active {
    width: auto;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow-y: auto;
    text-align: center;
    padding: 0;
    align-items: flex-start;
    background: #FFFFFF;
  }
}
.page-increase #webPopup .popup__card {
  position: relative;
  max-width: 700px;
  margin: auto;
  background: #FFFFFF;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__card {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
.page-increase #webPopup .popup__header {
  padding: 20px 30px;
  border-bottom: 1px solid #D6D6D6;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: left;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__header {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
}
.page-increase #webPopup .popup__items {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__items {
    flex-direction: column;
  }
}
.page-increase #webPopup .popup__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #D6D6D6;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__item {
    align-items: stretch;
  }
}
.page-increase #webPopup .popup__item .btn {
  border-radius: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  transition: 0.3s all;
  margin: 0 auto;
  max-width: 270px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__item .btn {
    max-width: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    height: 50px;
  }
}
.page-increase #webPopup .popup__item .btn svg {
  margin-left: 10px;
}
.page-increase #webPopup .popup__item-body {
  padding: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: none;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__item-body {
    gap: 15px;
  }
}
.page-increase #webPopup .popup__item-body picture {
  margin: 10px -10px 0;
}
.page-increase #webPopup .popup__item-body img {
  width: fit-content;
}
.page-increase #webPopup .popup__hide {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.page-increase #webPopup .popup__hide path {
  transition: fill 0.3s;
}
@media (min-width: 768px) {
  .page-increase #webPopup .popup__hide:hover path {
    fill: #f7931a;
  }
}
.page-increase #webPopup .popup__body {
  padding: 20px 30px 30px;
  max-height: none;
  overflow: auto;
  border: none;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__body {
    padding: 20px 15px;
  }
}
.page-increase #webPopup .popup__text {
  text-align: left;
  margin: 0px 0px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #494949;
}
@media (max-width: 768px) {
  .page-increase #webPopup .popup__header {
    padding: 20px;
  }
  .page-increase #webPopup .popup__footer {
    flex-direction: column;
    padding: 27px 20px 20px;
  }
  .page-increase #webPopup .popup__footer > a {
    max-width: none;
  }
}

.page_download_locale, .page_finish_download {
  background: #fff;
}
.page_download_locale.active-download, .page_finish_download.active-download {
  background: #fff;
}
.page_download_locale.active-download > .container, .page_finish_download.active-download > .container {
  background: none !important;
}
.page_download_locale.active-download .connect--second, .page_finish_download.active-download .connect--second {
  display: block;
  position: relative !important;
}
.page_download_locale.active-download .bg_bottom, .page_finish_download.active-download .bg_bottom {
  display: block !important;
}
@media (max-width: 1024px) {
  .page_download_locale.active-download .bg_bottom, .page_finish_download.active-download .bg_bottom {
    display: none !important;
  }
}
.page_download_locale .container, .page_finish_download .container {
  background: none;
}
.page_download_locale #connect-first .title, .page_finish_download #connect-first .title {
  margin-top: 60px;
}
.page_download_locale .connect.hide, .page_finish_download .connect.hide {
  padding: 0;
}
.page_download_locale .connect__text, .page_finish_download .connect__text {
  margin: 0 auto;
  margin-bottom: 40px;
}
.page_download_locale .connect .block-connect, .page_finish_download .connect .block-connect {
  position: relative;
}
.page_download_locale .connect .block-connect .bg__shape, .page_finish_download .connect .block-connect .bg__shape {
  width: 100%;
  height: 300px;
  background: #F7931A;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 0;
}
.page_download_locale .connect .block-connect__btn-wrap, .page_finish_download .connect .block-connect__btn-wrap {
  flex-direction: row-reverse;
  gap: 20px;
}
.page_download_locale .connect .block-connect__btn-wrap .btn, .page_finish_download .connect .block-connect__btn-wrap .btn {
  border-radius: 10px;
  margin: 0;
}
.page_download_locale .connect .block-connect__btn-wrap .btn__text, .page_finish_download .connect .block-connect__btn-wrap .btn__text {
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page_download_locale .connect .block-connect__btn-wrap .btn__text strong, .page_finish_download .connect .block-connect__btn-wrap .btn__text strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.page_download_locale .connect__block, .page_finish_download .connect__block {
  all: revert;
  display: flex;
  justify-content: center;
}
.page_download_locale .connect__block-content, .page_finish_download .connect__block-content {
  z-index: 5;
  position: relative;
  background: #fff;
  max-width: 700px;
  box-sizing: border-box;
  border-radius: 15px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}
.page_download_locale .connect .block-connect__text, .page_finish_download .connect .block-connect__text {
  margin-top: 40px;
}
.page_download_locale .connect--second, .page_finish_download .connect--second {
  display: none;
  position: relative;
  padding: 0;
  z-index: 1;
}
.page_download_locale .connect--second > .container, .page_finish_download .connect--second > .container {
  margin-top: 20px;
  display: block !important;
  min-height: auto;
}
.page_download_locale .connect--second > .container .title, .page_finish_download .connect--second > .container .title {
  margin-top: 40px;
}
.page_download_locale .connect--second .connect__item, .page_finish_download .connect--second .connect__item {
  border: none;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.page_download_locale .connect--second .connect__item-text, .page_finish_download .connect--second .connect__item-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.page_download_locale .connect__btn svg g path, .page_finish_download .connect__btn svg g path {
  transition: 0.2s;
}
.page_download_locale .connect__btn:hover svg g path, .page_finish_download .connect__btn:hover svg g path {
  fill: #fff;
}
.page_download_locale .steps, .page_finish_download .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 820px) {
  .page_download_locale .steps, .page_finish_download .steps {
    display: flex;
  }
}
.page_download_locale .steps__item, .page_finish_download .steps__item {
  border-radius: 20px;
  border: 1px solid #D6D6D6;
  padding: 20px;
  padding-top: 30px;
  width: auto;
}
.page_download_locale .steps__item:before, .page_finish_download .steps__item:before {
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
}
.page_download_locale .steps__icon, .page_finish_download .steps__icon {
  height: auto;
  margin-bottom: 20px;
}
.page_download_locale .steps__text, .page_finish_download .steps__text {
  max-width: 200px;
  font-size: 18px;
  line-height: 28px;
}
.page_download_locale .steps__arrow, .page_finish_download .steps__arrow {
  top: 50%;
  left: 105%;
  width: 10px;
  height: 20px;
}
.page_download_locale .bg_bottom, .page_finish_download .bg_bottom {
  position: relative;
  display: none;
  z-index: 1;
  width: 100%;
  top: 10px;
}
.page_download_locale .bg_bottom picture, .page_finish_download .bg_bottom picture {
  width: 100%;
}
.page_download_locale .bg_bottom picture img, .page_finish_download .bg_bottom picture img {
  width: 100%;
}
@media (max-width: 1600px) {
  .page_download_locale .bg_bottom, .page_finish_download .bg_bottom {
    margin-top: auto;
  }
}
.page_download_locale .bg_bottom.active, .page_finish_download .bg_bottom.active {
  display: block !important;
}
.page_download_locale .bg_bitcoins_left, .page_download_locale .bg_bitcoins_right, .page_finish_download .bg_bitcoins_left, .page_finish_download .bg_bitcoins_right {
  top: 0;
  position: absolute;
  z-index: -1;
}
.page_download_locale .bg_bitcoins_left, .page_finish_download .bg_bitcoins_left {
  left: 0;
}
.page_download_locale .bg_bitcoins_right, .page_finish_download .bg_bitcoins_right {
  top: 150px;
  right: 0;
}
.page_download_locale .footer, .page_finish_download .footer {
  border-top: 8px solid #F7931A;
}

@media only screen and (max-width: 540px) {
  .why__item_browser .browser-icon {
    width: 48px;
    height: 48px;
    background-size: contain;
    left: -2px;
  }
  .why__item_browser .why__label {
    left: 62px;
    font-size: 8px;
    line-height: 9px;
  }
  .why__item_browser .why__img {
    width: 276px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-end;
  }
  .why__item_browser .why__img img {
    width: 228px;
    height: 153px;
  }

  .why__item {
    padding-top: 65px;
  }
  .why__img_exp img {
    width: 247px;
    height: 145px;
  }
  .why__img_earn img {
    width: 184px;
    height: 174px;
  }
  .why__img_speed {
    padding-top: 0;
  }
  .why__img_speed img {
    width: 184px;
    height: 104px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page_browser .first .title {
    line-height: 38px;
  }
  .page_browser .first__screen {
    padding-bottom: 20px;
  }

  .mobile-only {
    display: block;
  }

  .page_second .container {
    min-height: 0;
  }

  .page_second .container--error {
    padding: 10px 30px;
    padding-bottom: 70px;
  }

  .page_second .header,
.page_payments .header {
    margin-bottom: 20px;
  }

  .page_second .header .logo,
.page_payments .header .logo {
    margin-bottom: 0;
  }

  .page_second .container__text {
    padding-top: 30px;
    padding-bottom: 35px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .page_second .container__text h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .page_second .container__text h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }

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

  .page_second .container__text p {
    font-size: 12px;
    line-height: 14px;
  }

  .page_second .container__text li {
    font-size: 12px;
    line-height: 14px;
  }

  .page_second .questions {
    margin-top: 30px;
  }

  .page_second .questions__header {
    font-size: 18px;
    line-height: 21px;
    min-height: 0;
  }

  .page_second .questions__body {
    font-size: 14px;
    line-height: 24px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .page_second .scroll2top.show {
    display: none;
  }

  .page_theme_black .header {
    background-color: transparent;
    margin-bottom: 20px;
  }
  .page_theme_black .header .logo {
    margin-bottom: 0;
  }
  .page_theme_black .header__navbar {
    border-color: #494949;
  }
  .page_theme_black .wrapper {
    border-radius: 0;
    width: calc(100% - 40px);
  }
  .page_theme_black .top,
.page_theme_black .last {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page_theme_black .title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .page_theme_black .subtitle {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 40px;
    font-weight: normal;
  }
  .page_theme_black .desc {
    font-size: 13px;
    line-height: 15px;
  }
  .page_theme_black .desc_big {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 30px;
  }
  .page_theme_black .referred {
    font-size: 12px;
    line-height: 14px;
  }
  .page_theme_black .social-btns {
    max-width: 310px;
    justify-content: center;
  }
  .page_theme_black .social-btn,
.page_theme_black .btn_social {
    width: 50px;
    height: 40px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 12px;
  }
  .page_theme_black .refurl input[type=text] {
    width: 100%;
    height: 34px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 212px;
  }
  .page_theme_black .btn_copy {
    height: 34px;
    line-height: 34px;
    padding-bottom: 0;
    padding-top: 0;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }

  .calc {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .calc__row {
    display: block;
  }
  .calc__item {
    margin-bottom: 50px;
  }
  .calc__item + .calc__item {
    margin-left: 0;
  }
  .calc__label {
    font-size: 18px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 25px;
  }
  .calc__label b {
    font-size: 28px;
    top: 3px;
  }

  .rangeSlider__horizontal {
    max-width: 300px;
  }

  .rangeSlider__handle {
    width: 25px;
    height: 25px;
    border: 5px solid #4285f4;
    top: -10px;
  }

  .section_last {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0;
  }
  .section_last .desc_big {
    margin-bottom: 20px;
  }

  .speedbox {
    margin: 30px auto 10px;
    height: 120px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .speedbox.animated .speedbox-sm__score {
    animation-duration: 2s;
    animation-name: score_anim;
    animation-iteration-count: 1;
  }
  .speedbox.animated .speedbox-sm__pointer {
    animation-duration: 2s;
    animation-name: pointer_anim;
    animation-iteration-count: 1;
  }
  .speedbox__groove {
    height: 100px;
    width: 200px;
    background: transparent;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border: 10px solid #d6d6d6;
    border-bottom: 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
  }
  .speedbox__score {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-45deg);
    height: 200px;
    width: 200px;
    background: transparent;
    border-radius: 50%;
    border: 10px solid #4285f4;
    border-color: transparent transparent #4285f4 #4285f4;
    box-sizing: border-box;
    z-index: 1;
    transition: 1s ease-in;
  }
  .speedbox__score_rookie {
    border-color: transparent transparent #4285f4 #4285f4;
  }
  .speedbox__score_pro {
    border-color: transparent transparent #2abb40 #2abb40;
  }
  .speedbox__score_veteran {
    border-color: transparent transparent #f7931a #f7931a;
  }
  .speedbox__score_expert {
    border-color: transparent transparent #9e31c7 #9e31c7;
  }
  .speedbox__score_master {
    border-color: transparent transparent #e11282 #e11282;
  }
  .speedbox__score_legend {
    border-color: transparent transparent #ff5718 #ff5718;
  }
  .speedbox__score_bigboss {
    border-color: transparent transparent #000 #000;
  }
  .speedbox__base {
    width: 240px;
    height: 100px;
    background: white;
    position: relative;
    top: 100px;
    z-index: 20;
  }
  .speedbox__odo {
    text-align: center;
    position: absolute;
    color: #5c6f7b;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .speedbox__odo i {
    font-size: 13px;
    opacity: 0.6;
  }
  .speedbox__odo > div {
    margin-bottom: 0;
  }
  .speedbox__odo span {
    font-size: 0.7em;
  }
  .speedbox__pointer {
    display: block;
    width: 148px;
    height: 148px;
    position: absolute;
    bottom: -45px;
    left: 50%;
    margin-left: -74px;
    margin-top: -74px;
    background-image: url("../images/pointer-sm.png");
    background-position: 15px;
    background-repeat: no-repeat;
    background-size: 74px 29px;
    z-index: 100;
    transform: rotate(0deg);
    transition: 1s ease-in;
  }
  .speedbox + .referred {
    text-align: center;
    margin-bottom: 25px;
  }

  .btn_social {
    display: block;
    height: 40px;
    line-height: 40px;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    outline: none;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .btn_social:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: contain;
  }
  .btn_social_vk {
    background-color: #597da2;
  }
  .btn_social_vk:hover {
    background-color: #678eb6;
  }
  .btn_social_vk:active {
    background-color: #446a91;
  }
  .btn_social_vk:before {
    width: 22px;
    height: 12px;
  }
  .btn_social_fb {
    background-color: #4861a3;
  }
  .btn_social_fb:hover {
    background-color: #5777cc;
  }
  .btn_social_fb:active {
    background-color: #374c82;
  }
  .btn_social_fb:before {
    width: 9px;
    height: 16px;
  }
  .btn_social_tw {
    background-color: #1da1f2;
  }
  .btn_social_tw:before {
    width: 16px;
    height: 13px;
  }
  .btn_social_gplus {
    background-color: #dd5044;
  }
  .btn_social_gplus:hover {
    background-color: #fb5446;
  }
  .btn_social_gplus:active {
    background-color: #bf4339;
  }
  .btn_social_gplus:before {
    width: 19px;
    height: 12px;
  }
  .btn_social_mail {
    text-indent: -9999px;
    background-color: #fff;
    border: 1px solid #cdcdcd;
    background-size: 23px 18px;
  }
  .btn_social_mail:hover {
    border: 2px solid #4285f4;
  }
  .btn_social_mail:active {
    background-color: #d6d6d6;
    border-color: #d6d6d6;
  }
  .btn_social_mail:active:before {
    opacity: 0.7;
  }

  .burger {
    display: block;
  }

  .container_promo .header {
    padding-top: 0;
    margin-bottom: 70px;
  }

  .container_promo .promo {
    width: 100%;
    position: static;
    transform: rotate(0);
    margin-bottom: 10px;
  }

  .countdown {
    margin-right: 0;
  }

  .container_promo .header__navbar .countdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 160px;
  }

  .container__text h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .page_promo .countdown {
    display: inline-block;
  }

  .page_promo .header__navbar .lang {
    margin-left: auto;
    margin-right: auto;
  }

  .page_promo .header__navbar {
    display: block;
    text-align: center;
  }

  .page_promo .header__lang {
    margin-top: 10px;
  }

  .logo {
    height: 51px;
    width: auto;
  }

  .logo svg {
    width: 231px;
    height: 42px;
  }

  .fullheight .header .logo {
    margin-bottom: 0;
  }
  .fullheight .scroll-icon {
    display: none;
  }

  .container_promo .logo {
    margin-bottom: 0;
  }

  .first {
    min-height: 0;
  }
  .first .header .logo {
    margin-bottom: 0;
  }
  .first__icon {
    display: none;
    width: 70px;
    height: 70px;
  }
  .first__description {
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  .first__description p {
    font-size: 16px;
    line-height: 22px;
  }
  .first__screen {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .first__screen p {
    display: none;
  }
  .first__group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .first__group .btn {
    margin-bottom: 15px;
  }
  .first__screen-img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .first__screen-store {
    display: block;
    width: 100%;
    background-color: #f7f7f7;
    margin-bottom: 30px;
    border: 1px solid #d6d6d6;
    font-size: 16px;
    line-height: 17px;
    color: #494949;
    padding: 20px;
    border-radius: 2px;
  }
  .first__screen-store .store-links {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    justify-content: center;
  }
  .first__screen-store .store-links .store_android {
    display: none;
  }
  .first__group .btn,
.first__group .more-link {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .first__group .btn_plus {
    display: none;
  }
  .first__screen .trust {
    order: 2;
    margin-bottom: 0;
    text-align: center;
  }
  .first__screen .more-link {
    order: 1;
  }
  .first__img {
    margin-bottom: 30px;
  }
  .first__img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
  }
  .first .more-link {
    padding-top: 22px;
    padding-bottom: 22px;
    line-height: 16px;
    min-height: 60px;
    height: auto;
    margin-bottom: 20px;
    background-color: #fff;
  }

  .logo img {
    width: auto;
    height: 40px;
  }

  .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .title--second {
    text-align: left;
  }

  .note {
    display: none;
  }

  .testimonials {
    padding-bottom: 0;
  }
  .testimonials__list {
    max-width: 280px;
    padding-left: 0;
    padding-right: 0;
  }
  .testimonials__title {
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    line-height: 20px;
  }
  .testimonials__item {
    margin-bottom: 25px;
    width: 120px;
    min-width: 0;
    min-height: 125px;
  }
  .testimonials__item i {
    width: 80px;
    height: 80px;
    border-radius: 15px;
  }
  .testimonials__item_youtube i {
    background-size: 51px 36px;
  }
  .testimonials__item_chrome i {
    background-size: 46px;
  }
  .testimonials__item_fb i {
    background-size: 46px;
  }
  .testimonials__item_twitter i {
    background-size: 46px;
  }
  .testimonials__item_journal i {
    background-size: 45px 53px;
  }
  .testimonials__item span {
    font-size: 14px;
    line-height: 16px;
  }

  .second {
    padding-top: 40px;
    background-attachment: scroll;
  }

  .second .subtitle {
    font-size: 32px;
    line-height: 36px;
  }

  .third {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 38px;
    padding-right: 38px;
  }

  .third__referral {
    margin-bottom: 30px;
  }

  .third__scheme {
    display: none;
  }

  .third__scheme-m {
    margin-bottom: 40px;
  }

  .third__scheme-m img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .third__pool {
    font-size: 22px;
    line-height: 36px;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .third__referral {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .third__levels {
    font-size: 22px;
    line-height: 36px;
  }

  .fourth {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .fourth:after {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }

  .fourth__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 45px;
  }

  .fourth__description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 23px;
  }

  .fourth .store-links {
    justify-content: center;
  }

  .fourth .store {
    border-color: #fff;
  }

  .fourth .store_android {
    display: none;
  }

  .fourth .btn {
    display: none;
  }

  .calculate {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 44px;
  }
  .calculate .subtitle {
    margin-bottom: 40px;
  }

  .subtitle {
    font-size: 28px;
    line-height: 31px;
  }

  .calc__label {
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    margin-bottom: 27px;
  }

  .calc__label b {
    font-size: 28px;
    line-height: 31px;
    top: 3px;
  }

  .rangeSlider__horizontal {
    height: 5px;
    max-width: 300px;
  }

  .rangeSlider__handle {
    width: 25px;
    height: 25px;
    border-width: 5px;
    top: -10px;
  }

  .calc__item {
    margin-bottom: 50px;
  }

  .calc__item + .calc__item {
    margin-top: 0;
  }

  .results {
    padding-top: 40px;
  }

  .results__table thead th {
    font-size: 18px;
    line-height: 20px;
  }

  .results__table tbody td {
    font-size: 20px;
    line-height: 22px;
    height: 50px;
  }

  .results__table tbody tr {
    border-bottom: none;
    box-shadow: 0px 8px 1px -8px #eee;
  }

  .results__table td.results__round {
    font-size: 12px;
    line-height: 14px;
  }

  .results__table thead th .small {
    font-size: 10px;
    line-height: 11px;
  }

  .percent {
    display: block;
    text-align: center;
  }

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

  .graph {
    display: block;
    height: auto;
    padding-top: 120px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 38px;
  }

  .graph__img {
    height: 305px;
    background-size: 712px 305px;
  }

  .graph__title {
    display: block;
    font-size: 17px;
    font-weight: normal;
  }

  .graph__text {
    margin-left: 38px;
    position: static;
    max-width: none;
  }

  .bucks {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    text-align: center;
  }

  .fifth {
    padding-bottom: 20px;
    padding-left: 38px;
    padding-right: 38px;
  }

  .fifth__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 15px;
    max-width: none;
  }

  .fifth__description {
    font-size: 16px;
    line-height: 22px;
    max-width: none;
  }

  .fifth__row {
    min-height: 0;
  }

  .fifth__row_monero2btc:before {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 300px;
    height: 239px;
    margin-top: 0;
    margin-bottom: 30px;
    transform: translateX(-30px);
  }

  .fifth__row_hardware {
    padding-top: 180px;
    background-size: 120px;
    background-position: center 30px;
    height: auto;
  }

  .fifth__row_monero2btc .fifth__title,
.fifth__row_monero2btc .fifth__description {
    margin-left: 0;
  }

  .fifth__row_hardware .fifth__title,
.fifth__row_hardware .fifth__description {
    margin-right: 0;
  }

  .sixth {
    padding-top: 40px;
    padding-bottom: 45px;
    padding-left: 38px;
    padding-right: 38px;
  }

  .sixth__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 15px;
  }

  .sixth__description {
    font-size: 16px;
    line-height: 22px;
  }

  .sixth__hurry {
    line-height: 36px;
  }

  .howto {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
  }

  .list__item {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
  }

  .faq {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .faq__description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }

  .card:nth-child(n+3) {
    display: none;
  }
  .faq__cards--second .card:nth-child(n+3) {
    display: block;
  }

  .card__title {
    line-height: 25px;
    margin-bottom: 15px;
  }

  .card__body {
    font-size: 14px;
    line-height: 16px;
  }

  .faq__cards {
    margin-bottom: 10px;
  }

  .faq__all {
    font-size: 16px;
    line-height: 17px;
  }

  .join {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .join .store_android {
    display: none;
  }
  .join__content {
    max-width: none;
    text-align: center;
    margin-left: 0;
  }
  .join__content:before {
    display: none;
  }
  .join__icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  .join__description {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .join__img {
    margin-bottom: 40px;
  }
  .join__img img {
    position: relative;
    left: 25px;
    max-width: 100%;
    height: auto;
  }

  .participation {
    padding-top: 0;
    margin-bottom: 0;
  }

  .participation__tip {
    display: none;
  }

  .participation__title {
    padding-left: 0;
    padding-top: 60px;
    background-position: top;
  }

  .page_promo .logo {
    margin-bottom: 0;
  }

  .page_promo .header__menu {
    display: none;
  }

  .page_promo .countdown__users {
    display: none;
  }

  .join_asian .join__content,
.join_hindu .join__content,
.join_beardie .join__content {
    align-items: center;
  }

  .why {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .why__upto {
    display: none;
  }
  .why__list {
    margin-bottom: 30px;
  }
  .why__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 20px;
  }
  .why__text {
    font-size: 15px;
    line-height: 20px;
    text-align: left;
  }
  .why__text p {
    margin-bottom: 10px;
  }
  .why__item:before {
    font-size: 28px;
    line-height: 31px;
    width: 54px;
  }
  .why__item:last-child {
    margin-bottom: 40px;
  }
  .why__item:nth-child(even) {
    padding-left: 20px;
  }
  .why__btn {
    text-align: center;
    margin-top: 30px;
  }
  .why__subtitle {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 10px;
    text-align: left;
  }
  .why_cryptotab .why__item:nth-child(1) .why__img img {
    width: 255px;
    height: 123px;
  }
  .why_cryptotab .why__item:nth-child(2) .why__img img {
    width: 147px;
    height: 147px;
  }

  .why-speed {
    max-width: 288px;
  }
  .why-speed__item {
    margin-bottom: 10px;
  }
  .why-speed__item:last-child {
    margin-bottom: 0;
  }
  .why-speed__label {
    font-size: 10px;
  }
  .why-speed__line {
    height: 4px;
  }

  .startearning {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 27px;
    padding-right: 27px;
  }
  .startearning .subtitle {
    margin-bottom: 20px;
  }
  .startearning .description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .levels-scheme {
    padding-top: 50px;
    padding-left: 27px;
    padding-right: 27px;
  }
  .levels-scheme .description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }
  .levels-scheme__img {
    display: none;
  }
  .levels-scheme__scheme-m {
    margin-bottom: 40px;
  }
  .levels-scheme__footer {
    font-size: 20px;
    line-height: 22px;
  }

  .getaccess {
    padding-top: 50px;
    background-image: url("../images/affiliate_cover_mobile.png");
    background-size: 400px 180px;
    background-position: bottom -3px center;
  }
}
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), screen and (max-width: 768px) and (min-resolution: 192dpi) {
  .getaccess {
    background-image: url("../images/affiliate_cover_mobile@2x.png");
  }
}
@media screen and (max-width: 768px) {
  .getaccess .title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .getaccess .description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .getaccess .btn {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .getaccess .note {
    display: block;
  }
}
@media screen and (max-width: 850px) {
  .store_cryptosearch span,
.store_cryptotab span {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .extensions {
    background-size: 320px auto;
    background-position: center bottom;
  }
  .extensions .wrapper {
    height: auto;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 348px;
  }
  .extensions__text {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .extensions__text p {
    font-size: 24px;
    line-height: 32px;
  }
  .extensions__warning {
    font-size: 13px;
    line-height: 15px;
  }
  .extensions__btn {
    text-align: center;
  }
  .extensions__store-btns {
    justify-content: center;
  }

  .join_girl .join__content,
.join_man .join__content {
    margin-left: 0;
    max-width: none;
    text-align: center;
    align-items: center;
  }
  .join_girl .join__content:before,
.join_man .join__content:before {
    display: none;
  }

  .bform {
    width: 100%;
  }

  .bform__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page_generator .container__text {
    padding-left: 28px;
    padding-right: 28px;
  }

  .bform__col + .bform__col {
    margin-top: 15px;
  }

  .footer {
    padding-top: 0;
    position: relative;
  }
  .footer__content {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer__bottom .footer__content {
    padding-top: 0;
  }
  .footer .lang {
    position: absolute;
    top: 25px;
    right: 20px;
  }
  .footer__btns {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 4;
  }
  .footer__btns .fb-like {
    margin-bottom: 0;
  }
  .footer__store-links {
    order: 2;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .footer .menu {
    margin-bottom: 20px;
    margin-right: 0;
    text-align: center;
  }
  .footer .menu__item, .footer .menu__label {
    text-align: left;
  }
  .footer .menu__item_join {
    justify-content: flex-start;
  }
  .footer__social-links {
    display: flex;
    order: 3;
    color: #757575;
    white-space: nowrap;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 12px;
  }
  .footer__menu {
    flex-direction: column;
    width: auto;
  }
  .footer .store-links {
    max-width: 182px;
  }
  .footer .store-links + span {
    display: block;
  }

  .page_ru .menu__item_join {
    margin-left: 0;
  }

  .fourth .store-btns {
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
  }

  .fourth .store-btn {
    max-width: 350px;
  }

  .features {
    margin-bottom: 30px;
  }
  .features__item:after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background-color: #d8d8d8;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .why {
    padding-top: 50px;
  }
  .why__title {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 20px;
  }
  .why__text {
    font-size: 15px;
    line-height: 20px;
  }
  .why__subtitle {
    font-size: 24px;
    line-height: 27px;
    text-align: left;
  }
  .why__body .why__text {
    text-align: left;
  }
  .why__btn {
    text-align: center;
  }
  .why__img_earn img {
    width: 184px;
    height: 174px;
  }
  .why__img_speed img {
    width: 184px;
    height: 104px;
    margin-bottom: 20px;
  }
  .why__img_boost img {
    width: 248px;
    height: auto;
  }
}
@media screen and (max-width: 380px) {
  .footer__logo {
    align-self: flex-start;
  }

  .footer__logo img {
    width: 190px;
    height: auto;
  }

  .header__lang {
    top: 13px;
  }
}
@media screen and (max-width: 330px) {
  .page_en .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .page_tr .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .page_hi .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .page_it .header__socials span,
.page_fr .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 410px) {
  .page_es .header__socials span,
.page_ru .header__socials span,
.page_de .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .page_bn .header__socials span {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .third__scheme-m img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 344px) {
  .first__screen-img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  body.page .header__block-mob .store-button-group, .page.qr-code .header__block-mob .store-button-group {
    display: flex !important;
    gap: 10px;
  }
  body.page .header__block-mob .store-button-group a, .page.qr-code .header__block-mob .store-button-group a {
    height: 50px !important;
  }
  body.page .header__block-mob .store-button-group a span, .page.qr-code .header__block-mob .store-button-group a span {
    display: none !important;
  }
  body.page .header__block-mob .store-button-group a:before, .page.qr-code .header__block-mob .store-button-group a:before {
    margin: 0 !important;
  }
}

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