

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

p {
  line-height: 29px;
  margin: 0 0 1rem
}

p:last-child {
  margin-bottom: 0
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  background: url(../images/BG.png);
  z-index: 1
}

body::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background: rgb(0,0,0,.6);
  /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 252, 0, 0)), color-stop(0.01%, rgba(249, 161, 229, 0)), color-stop(56%, rgba(255, 252, 0, 0.4)), color-stop(89.38%, #FFFC00)); */
  /* background: linear-gradient(180deg, rgba(255, 252, 0, 0) 0, rgba(249, 161, 229, 0) .01%, rgba(255, 252, 0, 0.4) 56%, #FFFC00 89.38%); */
  z-index: 1
}

/* body.active-step-5::after {
  height: 100vh;
  background: rgba(255, 251, 0, 0.7)
} */

body,
html,
.steps-wrap {
  height: 100%
}

.header {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  background-color: #ffcd05;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10
}

.header .logo {
  width: calc(50% - 15px);
  background-color: #ffcd05;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
  position: relative
}

.header .logo img {
  max-width: 116px
}

/* .header .logo::before {
  content: '';
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  border-top: 28.5px solid transparent;
  border-left: 12px solid #171717;
  border-bottom: 28.5px solid transparent
} */

.header .header-geo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(50%+15px);
  padding: 7px 3px 7px 15px;
  min-height: 57px
}

.header .header-geo .geo-icon {
  margin-right: 8px
}

.header .header-geo .geo-location {
  color: #fff;
  font-size: 12px
}

.header .header-geo .geo-location .user-city {
  font-weight: 800;
  display: block
}

.header .header-geo .geo-location .user-country {
  font-weight: 300;
  text-transform: uppercase
}

.header.alt_header .geo-icon {
  position: relative
}

.header.alt_header .geo-flag {
  font-size: 15px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%
}

.header.alt_header .geo-flag .flag-icon {
  border-radius: 50%;
  margin: 0;
  top: auto
}

.steps-wrap {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0  0 16px 0;
}

.steps-wrap .step {
  text-align: center;
  position: relative;
  z-index: 10
}

.step-content {
  padding: 0 16px;
}

.steps-wrap .step .title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 800;
  /* text-shadow: 0 0 4px rgba(0, 0, 0, 0.7) */
}

.steps-wrap .step .title .title-group {
  display: inline-block
}

.steps-wrap .step.final-step .final-title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #ffcd05;
  text-align: center;
  text-transform: uppercase;
  margin: 0
}

/* .steps-wrap .step.final-step .separator {
  display: block;
  width: 100%;
  border: 2px dashed #000;
  margin: 10px auto
} */

.steps-wrap .step.final-step p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  color: #fff;
  margin-top: .5em
}

.steps-wrap .step.final-step .arrow-down-icon {
  width: 15px;
  height: 26px;
  background-color: #000;
  -webkit-mask-image: url("arrow-down.svg");
  mask-image: url("arrow-down.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  margin: 3vh auto 0;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite
}

.steps-wrap .step.final-step .block-btn {
  /* padding: 0 15px */
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
  }
}

.block-btns,
.block-btn {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; */
  margin-top: 5vh
}

.block-btns .button,
.block-btn .button {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  height: 65px;
  background-color: #4866c7;
  /* -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.13); */
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.13); */
  /* border-radius: 28px; */
  /* border: 4px solid #fff; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.block-btns .button:hover,
.block-btn .button:hover {
  background-color: #304587;
}

.block-btns .button.button--no,
.block-btn .button.button--no {
  color: #fff;
  background-color: #ac3b60;
}

.block-btns .button.button--no:hover,
.block-btn .button.button--no:hover {
  background-color: #7f2c47;
}

.block-btns .button.button--continue,
.block-btn .button.button--continue {
  color: #fff
}

.block-btns .button:hover,
.block-btn .button:hover {
  -webkit-box-shadow: none;
  box-shadow: none
}

.block-btns .button .btn-icon,
.block-btn .button .btn-icon {
  width: 15px;
  height: 17px;
  background-color: #fff;
  -webkit-mask-image: url("continue-icon.svg");
  mask-image: url("continue-icon.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: inline-block;
  margin-left: 15px
}

.block-btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.block-btn .button {
  width: 100%
}

.progress-bar-wrap {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 5vh;
  padding: 0 16px;
}

.progress-bar-wrap .progress-title {
  font-size: 12px;
  line-height: 15px;
  font-weight: 800;
  color: #222;
  margin: 0 auto 17px
}

.progress-bar-wrap .progress-bar {
  display: block;
  width: 100%;
  height: 13px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden
}

.progress-bar-wrap .progress-bar .progress {
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #ffcd05;
  /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0))), #000000; */
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%), #000000; */
  -webkit-transition: width .4s ease-in-out;
  transition: width .4s ease-in-out
}

.preload,
.preload-img:after,
.preload-img:before {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.active-step-1 .steps-wrap,
.preload-img.preload-img1 {
  background-image: url("../images/girl1.jpg")
}

.active-step-2 .steps-wrap,
.preload-img.preload-img2 {
  background-image: url("../images/girl2.jpg")
}

.active-step-3 .steps-wrap,
.preload-img.preload-img3 {
  background-image: url("../images/girl3.jpg")
}

.active-step-4 .steps-wrap,
.preload-img.preload-img4 {
  background-image: url("../images/girl4.jpg")
}

.active-step-5 .steps-wrap,
.preload-img.preload-img5 {
  background-image: url("../images/final-bg.jpg")
}

.has-push .steps-wrap {
  padding-bottom: 90px
}

.unsubscribe_unable .progress-bar-wrap {
  margin-bottom: 10px
}

.unsubscribe {
  font-size: 11px;
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 30px;
  z-index: 10
}

.unsubscribe a {
  display: inline-block;
  color: #000;
  text-decoration: none
}

.unsubscribe a:hover {
  text-decoration: underline
}

.style_bigofuck::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 221, 204, 0)), color-stop(0.01%, rgba(249, 161, 229, 0)), color-stop(56%, rgba(0, 221, 204, 0.4)), color-stop(89.38%, #00DDCC));
  background: linear-gradient(180deg, rgba(0, 221, 204, 0) 0, rgba(249, 161, 229, 0) .01%, rgba(0, 221, 204, 0.4) 56%, #00DDCC 89.38%)
}

.style_bigofuck.active-step-5::after {
  background: rgba(0, 221, 204, 0.7)
}

.style_bigofuck .header .header-geo {
  width: 53%;
  padding-left: 3px
}

.style_bigofuck .header .logo {
  width: 44%;
  background-color: transparent
}

.style_bigofuck .header .logo::before {
  display: none
}

.style_bigofuck .header .logo img {
  margin-right: 5px;
  max-width: 40px
}

.style_bigofuck .header .logo .logo-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #424242
}

.style_bigofuck .steps-wrap .step.final-step .final-title {
  color: #fff
}

.style_bigofuck .steps-wrap .step.final-step .separator {
  border: 2px dashed #fff
}

.style_bigofuck .steps-wrap .step.final-step p {
  color: #fff
}

.style_bigofuck .steps-wrap .step.final-step .arrow-down-icon {
  background-color: #fff
}

.style_bigofuck .block-btns .button,
.style_bigofuck .block-btn .button {
  color: #0dc;
  background-color: #fff
}

.style_bigofuck .block-btns .button.button--no,
.style_bigofuck .block-btn .button.button--no {
  background: 0;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none
}

.style_bigofuck .block-btns .button.button--continue,
.style_bigofuck .block-btn .button.button--continue {
  color: #0dc
}

.style_bigofuck .progress-bar-wrap .progress-title {
  color: #fff
}

.style_bigofuck .progress-bar-wrap .progress-bar {
  background-color: rgba(255, 255, 255, 0.4)
}

.style_bigofuck .progress-bar-wrap .progress-bar .progress {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0))), #E2E2E2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%), #E2E2E2
}

.style_bigofuck .unsubscribe a {
  color: #fff
}

@media(max-width:400px) and (max-height:570px) {
  .has-push .block-btn {
    margin-top: 1.5vh
  }

  .has-push .steps-wrap .step.final-step .arrow-down-icon {
    margin-top: 2vh
  }
}

@media(max-width:350px) and (max-height:460px) {
  .steps-wrap .step .title {
    font-size: 23px
  }

  .block-btn {
    margin-top: 2vh
  }

  .steps-wrap .step.final-step .arrow-down-icon {
    margin-top: 1vh
  }

  .steps-wrap .step.final-step .final-title {
    font-size: 21px;
    line-height: 26px
  }

  .steps-wrap .step.final-step p {
    font-size: 17px;
    margin-bottom: .5em
  }

  .progress-bar-wrap {
    margin-top: 3vh
  }
}