img {
  max-width: 100%;
}

.wrapper {
  background-color: #F7F7F7;
  padding-bottom: 70px;
  position: relative;
}
.wrapper--page-status {
  padding-bottom: 0;
}
.wrapper--second .parts__img--1 {
  top: 131px;
  left: 300px;
}
.wrapper--second .parts__img--2 {
  top: 114px;
  right: 392px;
}
.wrapper--second .parts__img--3 {
  bottom: 300px;
  right: 79px;
}
.wrapper--second .parts__img--4 {
  top: 343px;
  left: 30px;
  right: 78px;
  bottom: 94px;
}
.wrapper--second .parts__img--5 {
  left: 0;
  bottom: 200px;
}
.wrapper--second .parts__img--6 {
  left: 150px;
  bottom: 100px;
}
.wrapper--second .parts__img--7 {
  right: 0;
  top: 350px;
}
.wrapper--second .parts__img--8 {
  right: 150px;
  bottom: 85px;
}
@media (max-width: 768px) {
  .wrapper .header .promo {
    display: none;
  }
}

.container {
  background-color: transparent;
  display: block;
  height: auto;
  min-height: 0;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper--page-status .getaccess .title {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  margin-bottom: 20px;
}
.wrapper--page-status .getaccess .desc {
  font-size: 22px;
  line-height: 32px;
  color: #757575;
}
@media (max-width: 767px) {
  .wrapper--page-status .getaccess .desc {
    font-size: 16px;
    line-height: 22px;
  }
}
.wrapper--page-status .getaccess .btn {
  max-width: 340px;
}

.getaccess .sticky-block {
  margin-top: 40px;
}

/*!
 * 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 {
  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 {
  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 {
  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;
  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 {
  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;
}

.title {
  font-size: 54px;
  line-height: 60px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title {
    font-size: 30px;
    line-height: 36px;
  }
}

.desc {
  color: #494949;
  font-size: 22px;
  line-height: 32px;
}
.desc a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.desc a:hover {
  color: #F7931A;
}
@media (max-width: 767px) {
  .desc {
    font-size: 16px;
    line-height: 21px;
  }
}

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

.tripple-arrow {
  margin: 60px auto;
  width: 100px;
}
@media (max-width: 767px) {
  .tripple-arrow {
    width: 60px;
    margin: 30px auto;
  }
}

.flower-btc {
  width: 350px;
  height: 350px;
}

*:after,
*:before {
  box-sizing: border-box;
}

.header__menu-gumshoe {
  display: inline;
  list-style: none;
}
.header__menu-gumshoe + a {
  margin-left: 25px;
}
.header__menu-gumshoe li {
  display: inline;
}
.header__menu-gumshoe li + a, .header__menu-gumshoe li + li {
  margin-left: 25px;
}
.header__menu-gumshoe li a:last-child {
  margin-right: 0;
}
.header__menu-gumshoe li.active a {
  color: #000;
  pointer-events: none;
  position: relative;
}
.header__menu-gumshoe li.active a:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F7931A;
  position: absolute;
  bottom: -13px;
  left: 0;
}
@media (max-width: 768px) {
  .header__menu-gumshoe li:last-child {
    margin-right: 20px;
  }
}

.parts {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1280px;
  margin-left: -640px;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1296px) {
  .parts {
    width: 100%;
    margin-left: auto;
    left: 0;
    overflow: hidden;
  }
}
.parts__item {
  position: absolute;
  width: 100%;
  height: 100%;
}
.parts__img {
  position: absolute;
}

.promo-top {
  position: relative;
  background-image: url(../images/bg_01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 132px;
  border-bottom: 5px solid #F7931A;
  overflow: hidden;
}
@media (max-width: 767px) {
  .promo-top {
    padding-bottom: 277px;
  }
}
@media (max-width: 600px) {
  .promo-top {
    background-image: url(../images/bg_01-mobile.jpg);
  }
}
.promo-top .header {
  margin-bottom: 50px;
}
.promo-top .header .header__menu a {
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  color: #4285F4;
  text-transform: uppercase;
}
.promo-top .header .header__menu a:hover {
  color: #f7931a;
}
.promo-top .header .header__menu a + a {
  margin-left: 25px;
}
.promo-top .header .header__menu a.active {
  color: #000;
  pointer-events: none;
  position: relative;
}
.promo-top .header .header__menu a.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F7931A;
  position: absolute;
  bottom: -13px;
  left: 0;
}
.promo-top .header.fixed .promo {
  display: none;
}
@media (min-width: 768px) {
  .promo-top .header:not(.fixed) .header__menu a.active {
    color: #fff;
  }
  .promo-top .header:not(.fixed) .header__menu li.active a {
    color: #fff;
  }
  .promo-top .header:not(.fixed) .lang__current {
    background-color: #282828;
    border: 1px solid #757575;
    color: #fff;
  }
  .promo-top .header:not(.fixed) .lang__current:hover {
    border-color: #fff;
    background-color: #fff;
    color: #4285f4;
  }
  .promo-top .header:not(.fixed) .social-link_instagram path {
    fill: #fff;
  }
}
.promo-top .header .logo-dark {
  display: none;
}
.promo-top .header.fixed .logo-dark {
  display: block;
}
.promo-top .header.fixed .logo-white {
  display: none;
}
@media (max-width: 768px) {
  .promo-top .header .logo-dark {
    display: block;
  }
  .promo-top .header .logo-white {
    display: none;
  }
  .promo-top .header .promo {
    display: none;
  }
}
.promo-top .flower-btc {
  position: absolute;
  bottom: -132px;
  right: -150px;
  z-index: 1;
}
@media (max-width: 767px) {
  .promo-top .flower-btc {
    bottom: -277px;
    right: 50%;
    margin-right: -115px;
    width: 230px;
    height: 230px;
  }
}
.promo-top .content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 500px;
}
@media only screen and (max-width: 767px) {
  .promo-top .content {
    min-height: auto;
  }
}
.promo-top .slogan {
  font-size: 20px;
  color: #F7931A;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .promo-top .slogan {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.promo-top .title {
  font-weight: bold;
  font-size: 74px;
  line-height: 83px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .promo-top .title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.promo-top .desc {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.promo-top .desc b {
  font-weight: bold;
}
.promo-top .desc--min {
  font-size: 16px;
  line-height: 26px;
  max-width: 700px;
}
@media (max-width: 767px) {
  .promo-top .desc {
    margin-bottom: 30px;
  }
}
.promo-top .btn_primary {
  width: 100%;
  max-width: 340px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  height: auto;
  font-size: 16px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  transition: all 0.2s;
}
.promo-top .btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid #F7931A;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  max-width: 340px;
  min-height: 60px;
  font-size: 16px;
  line-height: 17px;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 20px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.2s;
}
.promo-top .btn-more + .or {
  margin-top: 30px;
}
.promo-top .btn-more:hover {
  background-color: #F7931A;
}
.promo-top .btn-more:active {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
  opacity: 0.5;
}
.promo-top .or {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: inherit;
  display: inline-block;
  margin-bottom: 30px;
}
.promo-top .btn_link {
  color: #fff;
}
.promo-top .btn_link:hover {
  color: #F7931A;
}
.promo-top .scroll-icon {
  position: absolute;
  bottom: 35px;
  left: 50%;
  margin-left: -20px;
}
@media (max-width: 767px) {
  .promo-top .scroll-icon {
    display: none;
  }
}
.promo-top .parts__img--1 {
  top: 131px;
  left: 300px;
}
.promo-top .parts__img--2 {
  top: 114px;
  right: 392px;
}
.promo-top .parts__img--3 {
  top: 154px;
  right: 79px;
}
.promo-top .parts__img--4 {
  top: 343px;
  left: 106px;
  right: 78px;
  bottom: 94px;
}
.promo-top .parts__img--5 {
  left: 106px;
  bottom: 140px;
}
.promo-top .parts__img--6 {
  left: 327px;
  bottom: 225px;
}
.promo-top .parts__img--7 {
  right: 203px;
  bottom: 248px;
}
.promo-top .parts__img--8 {
  right: 280px;
  bottom: 70px;
}
@media (max-width: 767px) {
  .promo-top .parts {
    display: none;
  }
}

.promo-top--results {
  background-image: url(../images/bg_results.jpg);
}
@media (max-width: 767px) {
  .promo-top--results {
    background-image: url(../images/bg_results-mobile.jpg);
  }
}

.promo-top--status {
  background-image: url(../images/bg_03.jpg);
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .promo-top--status {
    padding-bottom: 277px;
  }
}
.promo-top--status .flower-btc {
  bottom: 0;
  right: -85px;
}

.promo-top--winner {
  background-image: url(../images/back_winner.jpg);
  padding-bottom: 80px;
}
.promo-top--winner .header.fixed .logo-white {
  display: block;
}
@media (max-width: 767px) {
  .promo-top--winner {
    padding-bottom: 277px;
  }
}

.promo-top--review-bonus {
  background-image: url(../images/additional_bonus_bg.jpg);
  padding-bottom: 45px;
}
@media (max-width: 767px) {
  .promo-top--review-bonus {
    padding-bottom: 277px;
  }
}
@media (min-width: 768px) {
  .promo-top--review-bonus .content {
    padding-top: 45px;
  }
}
.promo-top--review-bonus .desc {
  margin-bottom: 50px;
}
.promo-top--review-bonus .desc--min {
  margin-bottom: 0;
}
.promo-top--review-bonus .btn {
  margin-bottom: 145px;
}
@media (max-width: 767px) {
  .promo-top--review-bonus .btn {
    margin-bottom: 50px;
  }
}
.promo-top--review-bonus .parts__img--1 {
  top: 131px;
  right: 30px;
}
.promo-top--review-bonus .parts__img--2 {
  left: 0;
  bottom: 166px;
}
.promo-top--review-bonus .parts__img--3 {
  left: 145px;
  bottom: -40px;
}
.promo-top--review-bonus .parts__img--4 {
  right: 78px;
  bottom: 94px;
}

.promo-status {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin-bottom: 50px;
}
.promo-status__col {
  width: 100%;
  max-width: 360px;
  margin: 0 30px;
}
.promo-status__col--approved .promo-status__count {
  position: relative;
  background-color: #37cc33;
  color: #fff;
}
.promo-status__col--approved .promo-status__count:after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 19px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon-checkmark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.promo-status__col--approved .promo-status__desc {
  background-color: rgba(0, 0, 0, 0.3);
}
.promo-status__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #d6d6d6;
  color: #494949;
  border-radius: 8px 8px 0 0;
  border-bottom: 5px solid #F7931A;
}
.promo-status__count b {
  font-size: 110px;
  line-height: 123px;
  font-weight: bold;
}
.promo-status__platforms {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 20px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-status__platforms div {
  position: relative;
  font-size: 16px;
  line-height: 17px;
  font-weight: bold;
  padding: 0 30px;
}
.promo-status__platforms div + div:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
}
.promo-status__desc {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(247, 247, 247, 0.2);
  border-radius: 0 0 8px 8px;
  color: #fff;
  padding: 20px;
  min-height: 110px;
  font-size: 22px;
  line-height: 32px;
}
@media (max-width: 850px) {
  .promo-status__count {
    font-size: 13vw;
  }
}
@media (max-width: 767px) {
  .promo-status__col {
    margin: 0 10px;
  }
  .promo-status__desc {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 550px) {
  .promo-status__col {
    margin: 0 5px;
  }
  .promo-status__col--approved .promo-status__count:after {
    width: 30px;
    height: 30px;
  }
  .promo-status__count {
    min-height: 0;
    line-height: 1;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .promo-status__desc {
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
  }
}

.card-accept {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  height: auto;
  background-color: #fff;
  padding: 0;
  text-decoration: none;
  border-color: #D6D6D6;
  overflow: auto;
  position: relative;
  margin-bottom: 70px;
}
.card-accept:before {
  display: none;
}
@media (max-width: 500px) {
  .card-accept {
    margin-bottom: 0;
  }
}
.card-accept .card__head {
  border-bottom: 1px solid #D6D6D6;
  padding: 30px 40px;
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .card-accept .card__head {
    padding: 30px 20px;
    font-size: 24px;
    line-height: 30px;
  }
}
.card-accept .card__flex {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .card-accept .card__flex {
    display: block;
    text-align: center;
  }
}
.card-accept .card__col {
  padding: 50px 40px 40px;
  width: 50%;
}
.card-accept .card__col + .card__col, .card-accept .card__col + .card__col-separator + .card__col {
  border-left: 1px solid #D6D6D6;
}
.card-accept .card__col-separator {
  position: absolute;
  top: 75px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #4285f4;
  color: #4285f4;
  border-radius: 9px;
  font-size: 10px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 7px;
}
.card-accept .card__col p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 40px;
}
.card-accept .card__col .notes {
  border-radius: 2px;
  border: 2px solid #F7931A;
  padding: 18px 20px;
  color: #494949;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}
.card-accept .card__col .notes b {
  font-weight: bold;
}
.card-accept .card__col .notes a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.card-accept .card__col .notes a:hover {
  color: #F7931A;
}
.card-accept .card__col .btn {
  width: 100%;
  margin-bottom: 23px;
}
.card-accept .card__col .img {
  text-align: center;
}
.card-accept .card__col .img img {
  max-width: 100%;
}
.card-accept .card__col .signin {
  margin-bottom: 40px;
}
.card-accept .card__col .signin__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  width: 100%;
  min-height: 140px;
  padding-bottom: 40px;
  transition: border-color 0.2s;
}
.card-accept .card__col .signin__item:hover {
  border-color: #F7931A;
}
.card-accept .card__col .signin__item:hover .signin__title {
  background-color: #F7931A;
}
.card-accept .card__col .signin__title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  border-radius: 0 0 4px 4px;
  background-color: #4285f4;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  min-height: 40px;
  padding: 7px 10px;
  text-align: center;
  transition: background-color 0.2s;
}
.card-accept .card__col .agreement {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .card-accept .card__col {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .card-accept .card__col + .card__col, .card-accept .card__col + .card__col-separator + .card__col {
    border-left: none;
    border-top: 1px solid #D6D6D6;
  }
  .card-accept .card__col-separator {
    position: relative;
    top: 10px;
    left: auto;
    transform: none;
    display: inline-block;
  }
}
@media (max-width: 500px) {
  .card-accept .card__col {
    padding: 30px 20px;
  }
  .card-accept .card__col .notes {
    padding: 10px;
  }
}
@media (max-width: 450px) {
  .card-accept .card__col .signin {
    flex-wrap: wrap;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .card-accept .card__col .signin__item {
    width: 90px;
    margin: 0 5px 10px;
  }
}

.prizes {
  position: relative;
  background-color: #fff;
}
.prizes .container {
  padding-top: 80px;
  position: relative;
  max-width: 1000px;
  text-align: center;
  z-index: 2;
}
.prizes .decor-line {
  position: absolute;
  top: -88px;
  left: -140px;
}
@media (max-width: 767px) {
  .prizes .decor-line {
    top: -92px;
    left: -38px;
  }
  .prizes .decor-line img {
    width: 120px;
  }
}
.prizes .img--clover, .prizes .img--gift {
  margin-bottom: 30px;
}
.prizes .img--gift {
  width: 76px;
  margin-left: auto;
  margin-right: auto;
}
.prizes .title {
  margin-bottom: 30px;
}
.prizes .desc {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.prizes .desc--random {
  max-width: 800px;
}
.prizes .desc--small {
  font-size: 16px;
  line-height: 26px;
  max-width: 700px;
}
@media (max-width: 500px) {
  .prizes .desc br {
    display: none;
  }
}
.prizes .more-members {
  margin-bottom: 50px;
}
.prizes .more-members .desc {
  max-width: 830px;
  color: #000;
  font-size: 40px;
  line-height: 50px;
}
.prizes .more-members .desc strong {
  display: inline-block;
  padding: 5px;
  border: 2px solid #37CC33;
  border-radius: 6px;
  font-weight: normal;
  font-weight: bold;
}
@media (max-width: 767px) {
  .prizes .more-members .desc {
    font-size: 25px;
    line-height: 34px;
  }
}
.prizes .line {
  height: 5px;
  background-color: #F7931A;
  max-width: 164px;
  border-radius: 0;
  margin: 50px auto;
}
.prizes .parts__img--1 {
  top: 714px;
  left: -20px;
}
.prizes .parts__img--2 {
  top: 1270px;
  left: -40px;
}
.prizes .parts__img--3 {
  top: 1869px;
  left: 30px;
}
.prizes .parts__img--4 {
  top: 2257px;
  left: 42px;
}
.prizes .parts__img--5 {
  top: 2762px;
  left: 37px;
}
@media (max-width: 767px) {
  .prizes .parts {
    display: none;
  }
}

.prizes--results {
  padding-bottom: 70px;
}

/*
* Prize block
*/
.prizes .prize {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 111px;
  /*
  * Modificators
  */
}
.prizes .prize__head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  margin-bottom: -6px;
}
@media (max-width: 767px) {
  .prizes .prize__head {
    margin-bottom: -3px;
  }
}
.prizes .prize__num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 72px;
  line-height: 1;
  font-weight: bold;
  padding: 20px;
  border-radius: 6px 6px 0 0;
  margin-right: 30px;
  flex: 0 0 auto;
}
.prizes .prize__t {
  padding: 20px 0;
  font-size: 60px;
  line-height: 67px;
  font-weight: bold;
}
.prizes .prize__body {
  position: relative;
}
.prizes .prize__body:after {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 6px solid #D6D6D6;
  border-radius: 0 19px 19px;
}
@media (max-width: 767px) {
  .prizes .prize__body:after {
    border-width: 3px;
  }
}
.prizes .prize__sum {
  position: relative;
  border: 6px solid #D6D6D6;
  border-radius: 0 10px 10px;
  background-color: #fff;
  z-index: 2;
  font-size: 240px;
  line-height: 1;
  padding-top: 26px;
  padding-bottom: 43px;
  padding-left: 80px;
}
.prizes .prize__sum b {
  font-weight: bold;
}
.prizes .prize__sum:after {
  content: "";
  position: absolute;
  height: 20px;
  bottom: 19px;
  left: -6px;
  right: -6px;
  background-color: #F7931A;
}
@media (max-width: 767px) {
  .prizes .prize__sum:after {
    left: -3px;
    right: -3px;
  }
}
.prizes .prize__sum .usd {
  position: relative;
  margin-left: -70px;
  color: #757575;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.prizes .prize__sum .prize-winner {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 20px;
  color: #494949;
  text-align: center;
}
.prizes .prize__sum .prize-winner__item {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .prizes .prize__sum .prize-winner {
    font-size: 16px;
    line-height: 21px;
  }
  .prizes .prize__sum .prize-winner__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 370px) {
  .prizes .prize__sum .prize-winner {
    font-size: 14px;
    line-height: 21px;
  }
  .prizes .prize__sum .prize-winner__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.prizes .prize--1 .prize__num {
  min-height: 127px;
  background-color: #F7931A;
}
.prizes .prize--2 .prize__num {
  min-height: 110px;
  font-size: 60px;
  background-color: #4285f4;
}
.prizes .prize--2 .prize__t {
  font-size: 50px;
  line-height: 56px;
}
.prizes .prize--2 .prize__sum {
  font-size: 200px;
}
.prizes .prize--2 .prize__sum:after {
  height: 18px;
  bottom: 17px;
  background-color: #4285f4;
}
.prizes .prize--2 .prize__sum .usd {
  margin-left: -57px;
  font-size: 18px;
}
.prizes .prize--3 .prize__num, .prizes .prize--4 .prize__num, .prizes .prize--5 .prize__num, .prizes .prize--others .prize__num {
  font-size: 50px;
  background-color: #1AB9E5;
}
.prizes .prize--3 .prize__t, .prizes .prize--4 .prize__t, .prizes .prize--5 .prize__t, .prizes .prize--others .prize__t {
  font-size: 40px;
  line-height: 44px;
}
.prizes .prize--3 .prize__sum, .prizes .prize--4 .prize__sum, .prizes .prize--5 .prize__sum, .prizes .prize--others .prize__sum {
  font-size: 160px;
}
.prizes .prize--3 .prize__sum:after, .prizes .prize--4 .prize__sum:after, .prizes .prize--5 .prize__sum:after, .prizes .prize--others .prize__sum:after {
  height: 16px;
  bottom: 15px;
  background-color: #1AB9E5;
}
.prizes .prize--3 .prize__sum .usd, .prizes .prize--4 .prize__sum .usd, .prizes .prize--5 .prize__sum .usd, .prizes .prize--others .prize__sum .usd {
  margin-left: -45px;
  font-size: 16px;
}
.prizes .prize--4 .prize__num {
  background-color: #961AF7;
}
.prizes .prize--4 .prize__sum:after {
  background-color: #961AF7;
}
.prizes .prize--5 .prize__num {
  background-color: #F71A6F;
}
.prizes .prize--5 .prize__sum:after {
  background-color: #F71A6F;
}
.prizes .prize--others {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.prizes .prize--others .prize__sum {
  border-top-left-radius: 10px;
  padding-top: 10px;
  padding-bottom: 25px;
  padding-left: 20px;
}
.prizes .prize--others .prize__sum:after {
  background-color: #37CC33;
  height: 14px;
  bottom: 10px;
}
@media (max-width: 940px) {
  .prizes .prize__num {
    font-size: 7vw;
  }
  .prizes .prize__t {
    font-size: 6.5vw;
    line-height: 1.1;
  }
  .prizes .prize__sum {
    padding-left: 20px;
    font-size: 25vw;
  }
  .prizes .prize__sum .usd {
    margin-left: -8%;
    font-size: 3vw !important;
  }
  .prizes .prize--1 .prize__num {
    min-height: 0;
  }
  .prizes .prize--2 .prize__sum {
    font-size: 21vw;
  }
  .prizes .prize--2 .prize__sum .usd {
    margin-left: -6.5%;
  }
  .prizes .prize--2 .prize__num {
    min-height: 0;
    font-size: 6.3vw;
  }
  .prizes .prize--2 .prize__t {
    font-size: 5.5vw;
    line-height: 1.1;
  }
  .prizes .prize--3 .prize__sum, .prizes .prize--4 .prize__sum, .prizes .prize--5 .prize__sum, .prizes .prize--others .prize__sum {
    font-size: 17vw;
  }
  .prizes .prize--3 .prize__sum .usd, .prizes .prize--4 .prize__sum .usd, .prizes .prize--5 .prize__sum .usd, .prizes .prize--others .prize__sum .usd {
    margin-left: -5%;
  }
  .prizes .prize--3 .prize__num, .prizes .prize--4 .prize__num, .prizes .prize--5 .prize__num, .prizes .prize--others .prize__num {
    font-size: 5.5vw;
  }
  .prizes .prize--3 .prize__t, .prizes .prize--4 .prize__t, .prizes .prize--5 .prize__t, .prizes .prize--others .prize__t {
    font-size: 5vw;
    line-height: 1.1;
  }
  .prizes .prize--others {
    width: 62%;
  }
}
@media (max-width: 767px) {
  .prizes .prize__sum {
    border-width: 3px;
  }
}
@media (max-width: 600px) {
  .prizes .prize {
    margin-bottom: 45px;
  }
  .prizes .prize__num {
    margin-right: 15px;
  }
  .prizes .prize__sum {
    padding-left: 0;
  }
}

.participates {
  position: relative;
  background-color: #fff;
  background-image: url(../images/participates_bg.svg);
  background-size: 100% 927px;
  background-repeat: no-repeat;
  background-position: top center;
  padding-bottom: 1px;
}
@media (max-width: 767px) {
  .participates {
    background-size: 1000px auto;
  }
}
.participates .container {
  position: relative;
  z-index: 3;
  padding-top: 216px;
  text-align: center;
}
@media (max-width: 767px) {
  .participates .container {
    padding-top: 140px;
  }
}
.participates .title {
  color: #fff;
  margin-bottom: 30px;
}
.participates .desc {
  color: #D6D6D6;
  max-width: 900px;
  margin: 0 auto 65px;
}
.participates .info {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}
.participates .info__head {
  border-bottom: 4px solid #F7931A;
  padding: 30px 40px;
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
}
.participates .info__flex {
  position: relative;
  display: flex;
}
.participates .info__col {
  position: relative;
  padding: 50px 40px 40px;
  width: 50%;
  text-align: center;
}
.participates .info__col + .info__col {
  border-left: 1px solid #D6D6D6;
}
.participates .info .num {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 22px;
  color: #F7931A;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #F7931A;
}
.participates .info .img {
  margin-bottom: 30px;
}
.participates .info__title {
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 20px;
}
.participates .info__text {
  color: #494949;
  font-size: 12px;
  line-height: 22px;
}
@media (max-width: 767px) {
  .participates .info__head {
    font-size: 24px;
    line-height: 30px;
  }
  .participates .info__flex {
    display: block;
  }
  .participates .info__col {
    width: 100%;
  }
  .participates .info__col + .info__col {
    border-left: none;
    border-top: 1px solid #D6D6D6;
  }
  .participates .info__title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 500px) {
  .participates .info__head {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .participates .info .num {
    background-color: #F7931A;
    color: #fff;
  }
  .participates .info__col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.participates .info__table {
  padding-top: 50px;
  padding-bottom: 50px;
}
.participates .info__table table {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.participates .info__table th,
.participates .info__table td {
  width: 33%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  border-bottom: 1px solid #D6D6D6;
}
.participates .info__table th:first-child,
.participates .info__table td:first-child {
  padding-left: 120px;
}
@media (max-width: 400px) {
  .participates .info__table th,
  .participates .info__table td {
    padding-right: 20px;
  }
  .participates .info__table th:first-child,
  .participates .info__table td:first-child {
    padding-left: 20px;
  }
}
.participates .info__table th {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
}
.participates .info__table td {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.07px;
}
@media (max-width: 400px) {
  .participates .info__table td {
    font-size: 16px;
  }
}
.participates .parts__img--1 {
  top: 130px;
  left: 41px;
}
.participates .parts__img--2 {
  top: 210px;
  left: 41px;
}
.participates .fair-rules {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.participates .fair-rules__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 5px solid #4285f4;
  border-radius: 6px;
  padding: 20px 40px;
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
}
.participates .fair-rules__head:after {
  flex: 0 0 auto;
  margin-left: 20px;
  content: "";
  display: block;
  background-image: url(../images/icon-shield.svg);
  background-position: center;
  background-size: 100% auto;
  width: 72px;
  height: 72px;
}
.participates .fair-rules__text {
  background-color: #F7F7F7;
  border: 1px solid #D6D6D6;
  border-radius: 0 0 6px 6px;
  margin-top: -5px;
  padding: 30px 50px;
  font-size: 18px;
  line-height: 28px;
  color: #494949;
}
@media (max-width: 767px) {
  .participates .fair-rules__head {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 500px) {
  .participates .fair-rules__head {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .participates .fair-rules__head:after {
    position: absolute;
    z-index: 2;
    top: -40px;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    background-size: 100% auto;
  }
  .participates .fair-rules__text {
    padding: 30px 20px;
  }
}

.timer-section {
  background-color: #fff;
  text-align: center;
}
.timer-section .container {
  position: relative;
  max-width: 1040px;
  padding-bottom: 162px;
}
.timer-section .container * {
  position: relative;
  z-index: 2;
}
.timer-section .title {
  margin-bottom: 30px;
}
.timer-section .desc {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.timer-section .label {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  color: #F7931A;
  margin-bottom: 20px;
}
.timer-section .timer {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  display: flex;
  justify-content: space-between;
}
.timer-section .timer__item {
  position: relative;
}
.timer-section .timer__separator {
  color: #757575;
  font-weight: normal;
  font-size: 180px;
  line-height: 1;
}
.timer-section .timer__separator.animated {
  animation: animPulse 1s cubic-bezier(1, 0.01, 1, 0.01) infinite;
}
.timer-section .timer__value {
  display: block;
  font-size: 180px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 25px;
}
.timer-section .timer__value.minutes {
  color: #4285f4;
}
.timer-section .timer .smalltext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid #D6D6D6;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1;
  color: #757575;
}
@media (max-width: 860px) {
  .timer-section .timer__value, .timer-section .timer__separator {
    font-size: 21vw;
  }
}
@media (max-width: 400px) {
  .timer-section .timer .smalltext {
    padding: 0px;
    border: none;
    min-height: 0;
    font-size: 16px;
  }
}
.timer-section .flower-btc {
  position: absolute;
  bottom: 0;
  left: -170px;
  z-index: 1;
}
@media (max-width: 1100px) {
  .timer-section .flower-btc {
    left: -120px;
  }
}
@media (max-width: 767px) {
  .timer-section .flower-btc {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
  }
}

@keyframes animPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.benefit {
  position: relative;
  border-top: 1px solid #D6D6D6;
  text-align: center;
  overflow: hidden;
}
.benefit .container {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 80px;
}
.benefit .img {
  margin-bottom: 30px;
}
.benefit .title {
  margin-bottom: 20px;
}
.benefit .desc {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.benefit__flex {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
.benefit__item {
  width: 100%;
  max-width: 470px;
  margin: 0 20px 20px;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  border-top: 6px solid #F7931A;
  border-radius: 5px;
  padding: 40px;
  text-align: left;
}
.benefit__item:nth-child(1) {
  border-top-color: #F7931A;
}
.benefit__item:nth-child(2) {
  border-top-color: #4285f4;
}
.benefit__subtitle {
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.benefit__text {
  font-size: 18px;
  line-height: 30px;
}
.benefit__text a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.benefit__text a:hover {
  color: #F7931A;
}
.benefit .parts__img--1 {
  top: 63px;
  left: 13px;
}
.benefit .parts__img--2 {
  top: 105px;
  left: 81px;
}
@media (max-width: 800px) {
  .benefit__flex {
    display: block;
  }
  .benefit__item {
    margin-left: auto;
    margin-right: auto;
  }
}

.every-year {
  background-color: #fff;
  border-top: 1px solid #D6D6D6;
  text-align: center;
}
.every-year .container {
  max-width: 900px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.every-year .img--year {
  margin-bottom: 34px;
}
.every-year .title {
  margin-bottom: 30px;
}
.every-year .desc {
  margin-bottom: 60px;
}
.every-year .places {
  display: flex;
  justify-content: center;
}
.every-year .places__item {
  width: 100%;
  max-width: 150px;
  margin: 0 40px;
}
.every-year .places__icon {
  margin-bottom: 20px;
}
.every-year .places__name {
  font-size: 22px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}
.every-year .places__content {
  background-color: #F7F7F7;
  border: 1px solid #D6D6D6;
  border-radius: 2px;
}
.every-year .places__value {
  background-color: #FFFDFD;
  padding: 15px 20px;
  border-bottom: 1px solid #D6D6D6;
  font-size: 24px;
  line-height: 27px;
  font-weight: bold;
}
.every-year .places__user-info {
  padding: 15px 20px;
}
.every-year .places__user-info span {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #757575;
  margin-bottom: 10px;
}
.every-year .places__user-info p {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
}
@media (max-width: 700px) {
  .every-year .places {
    display: block;
  }
  .every-year .places__item {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .every-year .places__item:last-child {
    margin-bottom: 0;
  }
}

.share-friend {
  position: relative;
  background-image: url(../images/subscribe-bg-02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.share-friend.--subscribe {
  background-image: url(../images/bg_subscribe.jpg);
  background-position: top;
}
.share-friend.--subscribe .container {
  padding-top: 215px;
}
@media (min-width: 768px) {
  .share-friend.--subscribe .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .share-friend.--subscribe .parts {
    display: none;
  }
}
@media (max-width: 450px) {
  .share-friend.--subscribe .social-btns-up {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
  .share-friend.--subscribe .social-btns-up > .social-btn-up:last-child {
    margin-right: 5px;
  }
}
.share-friend .container {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  padding-bottom: 150px;
  max-width: 940px;
}
@media (max-width: 767px) {
  .share-friend .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.share-friend .label {
  font-size: 20px;
  line-height: 22px;
  color: #F7931A;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .share-friend .label {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 420px) {
  .share-friend .label {
    font-size: 14px;
  }
}
.share-friend .title {
  font-weight: normal;
  margin-bottom: 30px;
}
.share-friend .title b {
  font-weight: bold;
}
@media (max-width: 767px) {
  .share-friend .title {
    margin-bottom: 20px;
  }
}
.share-friend .desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .share-friend .desc {
    margin-bottom: 50px;
  }
}
.share-friend-buttons {
  position: relative;
  width: 100%;
  max-width: 711px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  border-radius: 65px;
  min-height: 130px;
  padding: 30px 30px 20px;
}
.share-friend-buttons__msg {
  position: absolute;
  top: -33px;
  left: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F7931A;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 11px;
  z-index: 2;
}
.share-friend-buttons .social-btns,
.share-friend-buttons .social-btns-up {
  max-width: 100%;
}
.share-friend-buttons .social-btns > .social-btn, .share-friend-buttons .social-btns > .social-btn-up,
.share-friend-buttons .social-btns-up > .social-btn,
.share-friend-buttons .social-btns-up > .social-btn-up {
  width: 96px;
  height: 72px;
  border-radius: 36px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.share-friend-buttons .social-btns > .social-btn:last-child, .share-friend-buttons .social-btns > .social-btn-up:last-child,
.share-friend-buttons .social-btns-up > .social-btn:last-child,
.share-friend-buttons .social-btns-up > .social-btn-up:last-child {
  margin-right: 0;
}
.share-friend-buttons .social-btns__more,
.share-friend-buttons .social-btns-up__more {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .share-friend-buttons .social-btns,
  .share-friend-buttons .social-btns-up {
    justify-content: center;
  }
  .share-friend-buttons .social-btns > .social-btn, .share-friend-buttons .social-btns > .social-btn-up,
  .share-friend-buttons .social-btns-up > .social-btn,
  .share-friend-buttons .social-btns-up > .social-btn-up {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 5px;
  }
  .share-friend-buttons .social-btns__more,
  .share-friend-buttons .social-btns-up__more {
    width: 50px;
    height: 50px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .share-friend-buttons .social-btns__list,
  .share-friend-buttons .social-btns-up__list {
    top: -5px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .share-friend-buttons {
    min-height: 0;
    padding: 20px 20px 10px;
  }
  .share-friend-buttons__msg {
    min-height: 0;
    top: -25px;
  }
}
.share-friend .parts__img--1 {
  top: 25px;
  left: 75px;
}
.share-friend .parts__img--2 {
  top: 49px;
  left: 106px;
}

.why-b {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -20px -20px 0;
}
.why-b__item {
  padding: 20px;
  width: 50%;
  min-width: 400px;
}
@media (max-width: 800px) {
  .why-b__item {
    width: 100%;
    max-width: 640px;
  }
}
@media (max-width: 450px) {
  .why-b__item {
    min-width: 0;
  }
}
.why-b__card {
  display: flex;
  flex-direction: column;
  border: 1px solid #D6D6D6;
  border-radius: 3px;
  background-color: #fff;
  padding: 30px;
  height: 100%;
  text-align: left;
}
@media (max-width: 600px) {
  .why-b__card {
    padding: 30px 20px;
  }
}
.why-b__subtitle {
  font-weight: bold;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 8px;
}
@media (max-width: 800px) {
  .why-b__subtitle {
    font-size: 22px;
    line-height: 30px;
  }
}
.why-b__text {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
}
.why-b__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .why-b__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.why-b__btn {
  margin-top: auto;
}
.why-b__label {
  display: block;
  font-size: 10px;
  line-height: 11px;
  color: #494949;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  z-index: 1;
  position: absolute;
  top: -15px;
  left: 5px;
}
.why-b__img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 800px) {
  .why-b__img-container {
    min-height: 200px;
  }
}
.why-b__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-b__img img {
  position: relative;
}
@media (max-width: 800px) {
  .why-b__img img {
    width: 100%;
    max-width: 228px;
    height: auto;
  }
}
.why-b__img--bitcoins img {
  top: -30px;
}
@media (max-width: 800px) {
  .why-b__img--bitcoins img {
    top: -15px;
  }
}
.why-b__img--browser .browser-icon {
  left: -60px;
  top: 0px;
}
.why-b__img--browser img {
  top: 1px;
  left: 5px;
}
@media (max-width: 1100px) {
  .why-b__img--browser {
    width: 276px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .why-b__img--browser .browser-icon {
    width: 48px;
    height: 48px;
    background-size: contain;
    left: -2px;
  }
  .why-b__img--browser .why-b__label {
    left: 50px;
    font-size: 8px;
    line-height: 9px;
  }
  .why-b__img--browser img {
    width: 228px;
    height: 153px;
  }
}
@media (max-width: 400px) {
  .why-b__img--browser .browser-icon {
    width: 43px;
    height: 43px;
    left: auto;
    right: 200px;
  }
  .why-b__img--browser .why-b__label {
    left: auto;
    right: 165px;
  }
  .why-b__img--browser img {
    width: 200px;
    height: auto;
  }
}

.social-btn-up {
  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;
  transition: background-color 0.2s;
}
.social-btn-up: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-up_fb {
  background-color: #4861A3;
}
.social-btn-up_fb:hover {
  background-color: #5777CC;
}
.social-btn-up_fb:active {
  background-color: #374C82;
}
.social-btn-up_fb:before {
  width: 13px;
  height: 24px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-fb.svg");
}
.social-btn-up_vk {
  background-color: #597DA2;
}
.social-btn-up_vk:hover {
  background-color: #678EB6;
}
.social-btn-up_vk:active {
  background-color: #446A91;
}
.social-btn-up_vk:before {
  width: 34px;
  height: 19px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-vk.svg");
}
.social-btn-up_tw {
  background-color: #1DA1F2;
}
.social-btn-up_tw:hover {
  background-color: #3EB5FF;
}
.social-btn-up_tw:active {
  background-color: #1588CE;
}
.social-btn-up_tw:before {
  width: 23px;
  height: 19px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-tw.svg");
}
.social-btn-up_gplus {
  background-color: #DD5044;
}
.social-btn-up_gplus:hover {
  background-color: #FB5446;
}
.social-btn-up_gplus:active {
  background-color: #BF4339;
}
.social-btn-up_gplus:before {
  width: 28px;
  height: 18px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-gplus.svg");
}
.social-btn-up_mail, .social-btn-up_eml {
  background-color: #fff;
  border: 1px solid #CDCDCD;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-mail.svg");
  background-size: 33px 27px;
}
.social-btn-up_mail:hover, .social-btn-up_eml:hover {
  border: 2px solid #4285F4;
  background-color: #fff;
}
.social-btn-up_mail:active, .social-btn-up_eml:active {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
}
.social-btn-up_vb {
  background-color: #665CAC;
}
.social-btn-up_vb:hover {
  background-color: #776DBF;
}
.social-btn-up_vb:active {
  background-color: #554C93;
}
.social-btn-up_vb:before {
  width: 27px;
  height: 28px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-viber.svg");
}
.social-btn-up_wa {
  background-color: #1DC93B;
}
.social-btn-up_wa:hover {
  background-color: #29D046;
}
.social-btn-up_wa:active {
  background-color: #19A131;
}
.social-btn-up_wa:before {
  width: 28px;
  height: 26px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-whatsapp.svg");
}
.social-btn-up_yt {
  background-color: #FF2500;
}
.social-btn-up_yt:hover {
  background-color: #FF4324;
}
.social-btn-up_yt:active {
  background-color: #C92206;
}
.social-btn-up_yt:before {
  width: 34px;
  height: 24px;
  background-image: url("../images/icon-youtube.svg");
}
.social-btn-up_inst {
  background-color: #913BAF;
  background-image: url("../images/icon-subscribe-instagram.svg");
  background-size: cover;
}
.social-btn-up_inst:before {
  display: none;
}
.social-btn-up_tg {
  background-color: #31A5E0;
}
.social-btn-up_tg:hover {
  background-color: #46B9F3;
}
.social-btn-up_tg:active {
  background-color: #2D8BBB;
}
.social-btn-up_tg:before {
  width: 26px;
  height: 22px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-telegram.svg");
}
.social-btn-up_th {
  background-color: #36465D;
}
.social-btn-up_th:hover {
  background-color: #455772;
}
.social-btn-up_th:active {
  background-color: #242E3B;
}
.social-btn-up_th:before {
  width: 20px;
  height: 28px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-tumblr.svg");
}
.social-btn-up_pt {
  background-color: #fff;
  border: 1px solid #CDCDCD;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-pinterest.svg");
  background-size: 28px;
}
.social-btn-up_pt:hover {
  border: 2px solid #4285F4;
  background-color: #fff;
}
.social-btn-up_pt:active {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
}
.social-btn-up_ln {
  background-color: #3ACE01;
}
.social-btn-up_ln:hover {
  background-color: #4EDF16;
}
.social-btn-up_ln:active {
  background-color: #43BC15;
}
.social-btn-up_ln:before {
  width: 28px;
  height: 27px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-linechat.svg");
}
.social-btn-up_li {
  background-color: #017AB6;
}
.social-btn-up_li:hover {
  background-color: #0A8DCE;
}
.social-btn-up_li:active {
  background-color: #096B9C;
}
.social-btn-up_li:before {
  width: 28px;
  height: 28px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-linkedin.svg");
}
.social-btn-up_flb {
  background-color: #F01B23;
}
.social-btn-up_flb:hover {
  background-color: #F9343C;
}
.social-btn-up_flb:active {
  background-color: #DB171E;
}
.social-btn-up_flb:before {
  width: 28px;
  height: 28px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-flipboard.svg");
}
.social-btn-up_rd {
  background-color: #FF4500;
}
.social-btn-up_rd:hover {
  background-color: #FF642A;
}
.social-btn-up_rd:active {
  background-color: #E34206;
}
.social-btn-up_rd:before {
  width: 31px;
  height: 28px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-reddit.svg");
}
.social-btn-up_ok {
  background-color: #E27E35;
}
.social-btn-up_ok:hover {
  background-color: #EF9554;
}
.social-btn-up_ok:active {
  background-color: #F29C5D;
}
.social-btn-up_ok:before {
  width: 18px;
  height: 31px;
  background-image: url("/static/django-cryptotab-sharing/cryptotab_sharing/images/icon-ok.svg");
}
.social-btn-up:active:before {
  opacity: 0.7;
}

.social-btns-up-title {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 20px;
}
.social-btns-up-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-up {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 600px;
  position: relative;
}
.social-btns-up .social-btn-up {
  margin-right: 7px;
}
.social-btns-up_size_s .social-btn-up {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.social-btns-up_size_s .social-btn-up_vk:before {
  width: 22px;
  height: 12px;
}
.social-btns-up_size_s .social-btn-up_fb:before {
  width: 9px;
  height: 16px;
}
.social-btns-up_size_s .social-btn-up_tw:before {
  width: 16px;
  height: 13px;
}
.social-btns-up_size_s .social-btn-up_wa:before {
  width: 18px;
  height: 18px;
}
.social-btns-up_size_s .social-btn-up_tg:before {
  width: 19px;
  height: 16px;
}
.social-btns-up_size_s .social-btn-up_gplus:before {
  width: 19px;
  height: 12px;
}
.social-btns-up_size_s .social-btn-up_mail, .social-btns-up_size_s .social-btn-up_eml {
  background-size: 23px 18px;
}
.social-btns-up_size_s .social-btn-up_vb:before {
  width: 21px;
  height: 22px;
}
.social-btns-up_size_s .social-btn-up_wa:before {
  width: 20px;
  height: 20px;
}
.social-btns-up_size_s .social-btn-up_th:before {
  width: 16px;
  height: 22px;
}
.social-btns-up_size_s .social-btn-up_pt {
  background-size: 22px;
}
.social-btns-up_size_s .social-btn-up_ln:before {
  width: 22px;
  height: 21px;
}
.social-btns-up_size_s .social-btn-up_li:before {
  width: 22px;
  height: 22px;
}
.social-btns-up_size_s .social-btn-up_flb:before {
  width: 22px;
  height: 22px;
}
.social-btns-up_size_s .social-btn-up_rd:before {
  width: 24px;
  height: 22px;
}
.social-btns-up_size_s .social-btn-up_ok:before {
  width: 14px;
  height: 24px;
}
.social-btns-up_size_s .social-btns-up__list {
  width: 130px;
}
.social-btns-up_size_s .social-btns-up__more {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.social-btns-up_size_m .social-btn-up {
  width: 56px;
  height: 56px;
  margin-right: 8px;
  border-radius: 28px;
}
.social-btns-up_size_m .social-btns-up__list {
  width: 162px;
}
.social-btns-up_size_m .social-btns-up__list .social-btn-up {
  margin-right: 0;
}
.social-btns-up_size_m .social-btns-up__more {
  width: 56px;
  height: 56px;
  border-radius: 28px;
}
.social-btns-up__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-up__more:before, .social-btns-up__more::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #494949;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.social-btns-up__more:before {
  width: 2px;
  height: 16px;
  top: 50%;
}
.social-btns-up__more:after {
  width: 16px;
  height: 2px;
}
.social-btns-up__more:hover {
  box-shadow: inset 0px 0px 0px 2px #4285F4;
}
.social-btns-up__more:hover:after, .social-btns-up__more:hover:before {
  background-color: #4285F4;
}
.social-btns-up__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-up__list .social-btn-up {
  margin-bottom: 10px;
  margin-right: 0;
}
.social-btns-up__list.active {
  display: flex;
}
.social-btns-up__list_down {
  top: auto;
  bottom: 0;
  transform: translateX(46px) translateY(calc(100% - 5px));
}

@media screen and (max-width: 800px) {
  .social-btn-up {
    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-up_vk:before {
    width: 22px;
    height: 12px;
  }
  .social-btn-up_fb:before {
    width: 9px;
    height: 16px;
  }
  .social-btn-up_tw:before {
    width: 16px;
    height: 13px;
  }
  .social-btn-up_yt:before {
    width: 22px;
    height: 18px;
  }
  .social-btn-up_wa:before {
    width: 18px;
    height: 18px;
  }
  .social-btn-up_tg:before {
    width: 19px;
    height: 16px;
  }
  .social-btn-up_gplus:before {
    width: 19px;
    height: 12px;
  }
  .social-btn-up_mail, .social-btn-up_eml {
    background-size: 23px 18px;
  }
  .social-btn-up_vb:before {
    width: 21px;
    height: 22px;
  }
  .social-btn-up_wa:before {
    width: 20px;
    height: 20px;
  }
  .social-btn-up_th:before {
    width: 16px;
    height: 22px;
  }
  .social-btn-up_pt {
    background-size: 22px;
  }
  .social-btn-up_ln:before {
    width: 22px;
    height: 21px;
  }
  .social-btn-up_li:before {
    width: 22px;
    height: 22px;
  }
  .social-btn-up_flb:before {
    width: 22px;
    height: 22px;
  }
  .social-btn-up_rd:before {
    width: 24px;
    height: 22px;
  }
  .social-btn-up_ok:before {
    width: 14px;
    height: 24px;
  }
  .social-btns-up {
    max-width: 400px;
  }
  .social-btns-up .social-btn-up {
    margin-right: 5px;
  }
  .social-btns-up__more {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    left: 0;
  }
  .social-btns-up__list {
    width: 130px;
  }
  .social-btns-up__list .social-btn-up {
    margin-right: 0;
  }
}
.note-block {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
}
.note-block + script + .card {
  margin-top: 40px;
}
.note-block--border {
  border-bottom: 8px solid #FF2500;
}
.note-block__container {
  min-height: 110px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  height: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .note-block__container {
    display: block;
    text-align: center;
    padding: 100px 20px 30px;
  }
}
.note-block__img {
  flex: 0 0 auto;
  overflow: hidden;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-block__img img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .note-block__img {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 120px;
  }
  .note-block__img img {
    width: 60px;
    max-height: 100%;
  }
}
.note-block__text {
  text-align: left;
  padding: 40px 20px 40px 0;
  display: block;
  color: #494949;
  font-size: 22px;
  line-height: 32px;
}
.note-block__text b {
  font-weight: bold;
}
.note-block__text a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.note-block__text a:hover {
  color: #F7931A;
}
@media (max-width: 767px) {
  .note-block__text {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 21px;
    margin: 0;
    padding: 0;
  }
}
.note-block__right {
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .note-block__right {
    text-align: center;
  }
}
.note-block__btn {
  text-decoration: none;
  height: 50px;
  border: 1px solid #D6D6D6;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 15px 20px 15px 15px;
  color: #4285f4;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.2s;
}
.note-block__btn:before {
  content: "";
  display: block;
  margin-right: 10px;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.note-block__btn:hover {
  background-color: #4285f4;
  border-color: #4285f4;
  color: #fff;
}
.note-block__btn:active {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
  color: #fff;
}
.note-block__btn--ios:before {
  background-image: url(../images/icon-appstore-min.svg);
}
.note-block__btn--android:before {
  background-image: url(../images/icon-playstore-min.png);
}
.note-block .btn {
  width: 200px;
  flex-shrink: 0;
  height: auto;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .note-block .btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.note-block .close {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.note-block .close:hover:before, .note-block .close:hover:after {
  background-color: #F7931A;
}
.note-block .close:before, .note-block .close:after {
  position: absolute;
  top: 5px;
  left: 10px;
  content: " ";
  height: 10px;
  width: 2px;
  background-color: #727272;
}
.note-block .close:before {
  transform: rotate(45deg);
}
.note-block .close:after {
  transform: rotate(-45deg);
}
.note-block--mobile .note-block__img {
  padding-top: 5px;
}
.note-block--mobile .note-block__right {
  display: flex;
}
.note-block--mobile .note-block__btn {
  margin-right: 10px;
}
.note-block--mobile .note-block__btn:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .note-block--mobile {
    display: none;
  }
  .note-block--mobile .note-block__right {
    justify-content: center;
  }
}
.note-block--promo {
  text-align: left;
}
.note-block--promo .note-block__text {
  display: flex;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .note-block--promo .note-block__text {
    padding-left: 0;
  }
}

.top-users {
  padding-top: 100px;
  min-height: 500px;
}
.top-users table {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.top-users table th {
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #D6D6D6;
}
.top-users table th,
.top-users table td {
  padding: 10px;
  width: 20%;
  text-align: center;
}
.top-users .participants {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1px;
  padding-left: 1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.top-users .participants__label {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.top-users .participants div {
  margin-left: -1px;
  margin-top: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  min-height: 40px;
  border: 1px solid #D6D6D6;
  background-color: transparent;
}
.top-users .participants div:nth-child(2n) {
  color: #444;
  background-color: #fff;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: linear-gradient(to bottom, #000 0%, #494949 100%);
  z-index: 501;
}
.preloader > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.preloader .flower-btc {
  width: 100%;
  max-width: 400px;
  height: auto;
  transform-origin: 50% 48%;
}
.preloader .flower-btc svg {
  vertical-align: top;
}
.preloader .parts__img--1 {
  top: 131px;
  left: 300px;
}
.preloader .parts__img--2 {
  top: 114px;
  right: 392px;
}
.preloader .parts__img--3 {
  top: 154px;
  right: 79px;
}
.preloader .parts__img--4 {
  top: 343px;
  left: 106px;
  right: 78px;
  bottom: 94px;
}
.preloader .parts__img--5 {
  left: 106px;
  bottom: 140px;
}
.preloader .parts__img--6 {
  left: 327px;
  bottom: 225px;
}
.preloader .parts__img--7 {
  right: 203px;
  bottom: 248px;
}
.preloader .parts__img--8 {
  right: 280px;
  bottom: 70px;
}
@media (max-width: 767px) {
  .preloader .parts {
    display: none;
  }
}

@keyframes flowerZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(25);
  }
}
.promo-feedback {
  padding-top: 100px;
}
.promo-feedback .card_form {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  overflow: visible;
}
.promo-feedback .card_form .form__editor {
  display: none;
}
.promo-feedback .card_form .ck-editor__editable_inline {
  min-height: 500px;
}

.ck-editor h1, .ck-editor h2, .ck-editor h3, .ck-editor h4, .ck-editor h5 {
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}
.ck-editor h2 {
  font-size: 30px;
}
.ck-editor h3 {
  font-size: 24px;
}
.ck-editor h4 {
  font-size: 20px;
}
.ck-editor strong,
.ck-editor b {
  font-weight: bold;
}
.ck-editor i {
  font-style: italic;
}
.ck-editor ul {
  list-style: dics;
}
.ck-editor ul li {
  line-height: 1.2;
}
.ck-editor ol {
  list-style: decimal;
}
.ck-editor ol li {
  line-height: 1.2;
}

.sticky-block {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: inherit;
  /*
  * Modificators */
}
.sticky-block + script + .card {
  margin-top: 40px;
}
.sticky-block--border {
  border-top: 4px solid #F7931A;
}
.sticky-block--fixed {
  width: 100%;
  max-width: 1000px;
  position: fixed;
  bottom: 0;
  left: 50%;
  background-color: #fff;
  transform: translateX(-50%);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 501;
}
.sticky-block--fixed.hidden {
  display: none;
}
.sticky-block--fixed.in-content {
  position: relative;
  transform: none;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: auto;
}
@media (max-width: 767px) {
  .sticky-block--fixed {
    display: none;
  }
}
.sticky-block__container {
  min-height: 110px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 40px 0 0;
  height: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .sticky-block__container {
    display: block;
    text-align: center;
    padding: 30px 20px 140px;
  }
}
.sticky-block__img {
  align-self: flex-end;
  flex: 0 0 auto;
  overflow: hidden;
  width: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 768px) {
  .sticky-block__img.--left {
    justify-content: flex-start;
  }
}
.sticky-block__img img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .sticky-block__img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
  }
  .sticky-block__img img {
    max-height: 100%;
  }
}
.sticky-block__info {
  padding: 20px 30px;
  text-align: left;
}
.sticky-block__info p, .sticky-block__info b {
  font-size: 18px;
  line-height: 26px;
}
.sticky-block__info p + p, .sticky-block__info b + p {
  margin-top: 5px;
}
.sticky-block__info p {
  color: #494949;
}
.sticky-block__info b {
  font-weight: bold;
}
@media (max-width: 767px) {
  .sticky-block__info {
    padding-top: 0;
    text-align: center;
  }
  .sticky-block__info b {
    font-size: 16px;
    line-height: 20px;
  }
  .sticky-block__info p {
    font-size: 14px;
    line-height: 20px;
  }
}
.sticky-block__text {
  padding: 24px 20px;
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  margin-right: 30px;
}
.sticky-block__text b {
  font-weight: bold;
}
.sticky-block__text a {
  text-decoration: none;
  color: #4285f4;
  transition: color 0.2s;
}
.sticky-block__text a:hover {
  color: #F7931A;
}
@media (max-width: 767px) {
  .sticky-block__text {
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
  }
}
.sticky-block__right {
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .sticky-block__right {
    text-align: center;
  }
}
.sticky-block__btn {
  text-decoration: none;
  height: 50px;
  border: 1px solid #D6D6D6;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 15px 20px 15px 15px;
  color: #4285f4;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.2s;
}
.sticky-block__btn:before {
  content: "";
  display: block;
  margin-right: 10px;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.sticky-block__btn:hover {
  background-color: #4285f4;
  border-color: #4285f4;
  color: #fff;
}
.sticky-block__btn:active {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
  color: #fff;
}
.sticky-block__btn--ios:before {
  background-image: url(../images/icon-appstore-min.svg);
}
.sticky-block__btn--android:before {
  background-image: url(../images/icon-playstore-min.png);
}
.sticky-block .btn {
  width: 200px;
  flex-shrink: 0;
  height: auto;
  overflow: visible;
  color: #4285f4;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .sticky-block .btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.sticky-block .btn.label-new {
  position: relative;
}
.sticky-block .btn.label-new:after {
  content: "new";
  position: absolute;
  top: -8px;
  right: -15px;
  background-color: #F74249;
  border-radius: 8px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  padding: 3px 5px 2px;
}
.sticky-block .btn:hover {
  background-color: #4285f4;
  color: #fff;
}
.sticky-block .btn:active {
  background-color: #D6D6D6;
}
.sticky-block .close {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.sticky-block .close:hover:before, .sticky-block .close:hover:after {
  background-color: #F7931A;
}
.sticky-block .close:before, .sticky-block .close:after {
  position: absolute;
  top: 5px;
  left: 10px;
  content: " ";
  height: 10px;
  width: 2px;
  background-color: #727272;
}
.sticky-block .close:before {
  transform: rotate(45deg);
}
.sticky-block .close:after {
  transform: rotate(-45deg);
}
.sticky-block--mobile .sticky-block__img {
  padding-top: 5px;
}
.sticky-block--mobile .sticky-block__right {
  display: flex;
}
.sticky-block--mobile .sticky-block__btn {
  margin-right: 10px;
}
.sticky-block--mobile .sticky-block__btn:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .sticky-block--mobile {
    display: none;
  }
  .sticky-block--mobile .sticky-block__right {
    justify-content: center;
  }
}
.sticky-block--promo {
  text-align: left;
}
.sticky-block--promo .sticky-block__text {
  display: flex;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .sticky-block--promo .sticky-block__text {
    padding-left: 0;
  }
}
.sticky-block--shadow {
  background-color: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
}

.sticky-blocks-promo-wrapper .sticky-block {
  margin-bottom: 40px;
}

.card + .sticky-blocks-promo-wrapper,
.card-wrapper + .sticky-blocks-promo-wrapper {
  margin-top: 40px;
}

.story-form-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-image: linear-gradient(to bottom, #000 0%, #494949 100%);
  padding-bottom: 75px;
  border-bottom: 5px solid #F7931A;
}
.story-form-wrapper .header {
  margin-bottom: 50px;
}
.story-form-wrapper .content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.story-form-wrapper .label {
  font-size: 20px;
  line-height: 22px;
  color: #F7931A;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .story-form-wrapper .label {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.story-form-wrapper .title {
  color: #fff;
  font-size: 74px;
  line-height: 83px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .story-form-wrapper .title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.story-form-wrapper .desc {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .story-form-wrapper .desc {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 30px;
  }
}
.story-form-wrapper .flower-btc {
  position: absolute;
  bottom: 155px;
  right: -250px;
  z-index: 1;
}
@media (max-width: 767px) {
  .story-form-wrapper .flower-btc {
    display: none;
  }
}
.story-form-wrapper .parts__img--1 {
  top: 131px;
  left: 300px;
}
.story-form-wrapper .parts__img--2 {
  top: 114px;
  right: 392px;
}
.story-form-wrapper .parts__img--3 {
  top: 154px;
  right: 79px;
}
.story-form-wrapper .parts__img--4 {
  top: 343px;
  left: 106px;
  right: 78px;
  bottom: 94px;
}
.story-form-wrapper .parts__img--5 {
  left: 106px;
  bottom: 140px;
}
.story-form-wrapper .parts__img--6 {
  left: 327px;
  bottom: 225px;
}
.story-form-wrapper .parts__img--7 {
  right: 203px;
  bottom: 248px;
}
.story-form-wrapper .parts__img--8 {
  right: 280px;
  bottom: 70px;
}
@media (max-width: 767px) {
  .story-form-wrapper .parts {
    display: none;
  }
}

.story-form {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.5);
  text-align: left;
}
.story-form__row {
  position: relative;
  padding: 35px 40px 30px 70px;
  border-bottom: 1px solid #D6D6D6;
}
.story-form__row.done .num {
  border-color: #37CC33;
  background-color: #37CC33;
  color: transparent;
  background-image: url(../images/checkmark.svg);
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .story-form__row {
    padding: 30px 25px;
  }
}
.story-form .num {
  position: absolute;
  top: 36px;
  left: 25px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #F7931A;
  border-radius: 50%;
  font-weight: bold;
  border: 2px solid #F7931A;
  background-position: center;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .story-form .num {
    position: static;
    margin-bottom: 10px;
  }
}
.story-form__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.story-form__desc {
  color: #494949;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
}
.story-form__desc a {
  color: #4285f4;
  text-decoration: none;
  transition: 0.3s;
}
.story-form__desc a:hover {
  color: #F7931A;
}
@media (max-width: 600px) {
  .story-form__desc {
    font-size: 16px;
    line-height: 21px;
  }
}
.story-form__textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 295px;
  max-height: 400px;
  border-radius: 2px;
  border: 1px solid #D6D6D6;
  background-color: #F7F7F7;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 16px;
  line-height: 26px;
}
.story-form__bot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
}
@media (max-width: 600px) {
  .story-form__bot {
    padding: 30px 25px;
  }
}
.story-form .btn_primary {
  width: 100%;
  max-width: 280px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  height: auto;
  font-size: 16px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.2s;
}
.story-form .btn_primary[disabled] {
  cursor: not-allowed;
  background-color: #D6D6D6;
}
.story-form__file label {
  display: flex;
  align-items: center;
}
.story-form__file label input {
  display: none;
}
.story-form__file label p {
  color: #494949;
  font-size: 13px;
  line-height: 15px;
}
.story-form__file label .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: 1px solid #d6d6d6;
  border-radius: 2px;
  color: #000;
  background-color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 0;
  width: 160px;
  margin-right: 20px;
  transition: 0.3s;
}
.story-form__file label .btn:hover {
  background-color: #4285f4;
  border-color: #4285f4;
  color: #fff;
}
.story-form__file label .btn:active {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
}
.story-form__preview img {
  margin-top: 30px;
  max-width: 240px;
  vertical-align: top;
}

.story-form-success {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 390px;
}
@media (max-width: 600px) {
  .story-form-success {
    padding: 30px 20px;
    min-height: 300px;
  }
}
.story-form-success svg {
  margin-bottom: 20px;
}
.story-form-success .title {
  color: #000;
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .story-form-success .title {
    font-size: 28px;
    line-height: 36px;
  }
}
.story-form-success p {
  font-size: 18px;
  line-height: 26px;
}
.story-form-success p a {
  color: #4285f4;
  text-decoration: none;
  transition: 0.3s;
}
.story-form-success p a:hover {
  color: #F7931A;
}
@media (max-width: 600px) {
  .story-form-success p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* Winner Page */
.story-form-wrapper.--winner {
  padding-top: 100px;
}
.story-form-wrapper.--winner .story-form__row.done .num {
  border-color: #F7931A;
  background-color: transparent;
  color: #F7931A;
}
.story-form-wrapper.--winner .story-form__desc b {
  color: #000;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.story-form-wrapper.--winner .story-form__btn-wrapper {
  margin-left: -30px;
}
@media (max-width: 600px) {
  .story-form-wrapper.--winner .story-form__btn-wrapper {
    margin-left: 0;
  }
}
.story-form-wrapper.--winner .story-form__btn-wrapper .btn {
  border: 1px solid transparent;
}
.story-form-wrapper.--winner .story-form__btn-wrapper .btn:not(:hover):not(:active) {
  color: #4285f4;
  border-color: #D6D6D6;
  background-color: #fff;
}
.story-form-wrapper.--winner .story-form__bot + .story-form__bot {
  border-top: 1px solid #D6D6D6;
}
.story-form-wrapper.--winner .story-form__bot p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
.story-form-wrapper.--winner .story-form__bot p a {
  color: #4285f4;
  text-decoration: none;
  transition: 0.3s;
}
.story-form-wrapper.--winner .story-form__bot p a:hover {
  color: #F7931A;
}

.popup-promo-join {
  -webkit-overflow-scrolling: touch;
}
.popup-promo-join:before {
  display: none;
}
.popup-promo-join .popup__container {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-promo-join .content {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.5);
  padding: 30px 50px;
  text-align: left;
}
.popup-promo-join .content form {
  text-align: center;
}
.popup-promo-join .content p {
  font-size: 18px;
  line-height: 28px;
  color: #494949;
  margin-bottom: 30px;
}
.popup-promo-join .content p b {
  font-weight: bold;
}
.popup-promo-join .subtitle {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 25px;
}
.popup-promo-join .subtitle:before {
  content: "";
  display: block;
  background-image: url(../images/icon-arrow-circle.svg);
  width: 48px;
  height: 48px;
  margin-right: 15px;
  flex: 0 0 auto;
}
.popup-promo-join .note {
  margin-bottom: 50px;
}
.popup-promo-join .note a {
  color: #4285f4;
  text-decoration: none;
  transition: color 0.2s;
}
.popup-promo-join .note a:hover {
  color: #F7931A;
}
.popup-promo-join .btn_primary {
  width: 100%;
  max-width: 340px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  height: auto;
  font-size: 16px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .popup-promo-join .content {
    padding: 30px 20px;
  }
}
@media (max-width: 500px) {
  .popup-promo-join .content p {
    font-size: 16px;
    line-height: 20px;
  }
  .popup-promo-join .subtitle {
    font-size: 22px;
    line-height: 28px;
  }
  .popup-promo-join .subtitle:before {
    width: 35px;
    height: 35px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
  }
}/*# sourceMappingURL=style.css.map */