.countdownHolder{
  width:450px;
  margin:0 auto;
  font: 40px/1.5 'Open Sans Condensed',sans-serif;
  text-align:center;
  letter-spacing:-3px;
}

.position{
  display: inline-block;
  height: 1.6em;
  overflow: hidden;
  position: relative;
  width: 1.05em;
}

.digit{
  position:absolute;
  display:block;
  width:1em;
  background-color:#444;
  border-radius:0.2em;
  text-align:center;
  color:#fff;
  letter-spacing:-1px;
}

.digit.static{
  box-shadow:1px 1px 1px rgba(4, 4, 4, 0.35);
  
  background-image: linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
  background-image: -o-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
  background-image: -moz-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
  background-image: -webkit-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
  background-image: -ms-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
  
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.5, #3A3A3A),
    color-stop(0.5, #444444)
  );
}

/**
 * You can use these classes to hide parts
 * of the countdown that you don't need.
 */

.countDays{ /* display:none !important;*/ }
.countDiv0{ /* display:none !important;*/ }
.countHours{}
.countDiv1{}
.countMinutes{}
.countDiv2{}
.countSeconds{}


.countDiv{
  display:inline-block;
  width:16px;
  height:1.6em;
  position:relative;
}

.countDiv:before,
.countDiv:after{
  position:absolute;
  width:5px;
  height:5px;
  background-color:#444;
  border-radius:50%;
  left:50%;
  margin-left:-3px;
  top:0.5em;
  box-shadow:1px 1px 1px rgba(4, 4, 4, 0.5);
  content:'';
}

.countDiv:after{
  top:0.9em;
}
* {
  margin: 0;
  padding: 0;
  letter-spacing: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus {
  outline: 0;
}

.wf_wrapper img {
  border: none;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer !important;
}
html{
  min-height: 100%;

}

body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, #d100ff, #ff8825);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 80px 0 0 16px;
  height: 100%;
  min-height: 100vh;
}


.group {
  display: inline-block;
}

.wf_header_bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
}

.wf_header_bar_image {
  width: 100%;
  height: auto;

}

/* =========================================================================
  Header
=========================================================================== */
.header {
  position: relative;
  padding: 12px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
.header .logo img {
  max-width: 127px;
}
.header .geo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #22AA46;
  border-radius: 4px;
  padding: 8px 16px;
  gap: 8px;
  background-color: #ffffff;
}
.header .geo-wrap .geo-pin {
  max-width: 15px;
}
.header .geo-wrap .geo-city {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
   background: linear-gradient(45deg, #ff5f00, #be2affdb);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

/* Steps Style */
.wf_wrapper {
  width: 100%;
  max-width: 524px;
  min-height: 800px;
  padding: 4px;
  background: #00000059;
}

.wrapper {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.steps-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow-x: hidden;
}
.steps-wrap .step {
  display: none !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-around;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  padding:0 7px 10px;
}
.steps-wrap .step .avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
}
.steps-wrap .step .avatar-wrap img {
  position: relative;
}
.steps-wrap .step .avatar-wrap.avatar-1 {
  background: linear-gradient(147deg, #FE9101 10.55%, #FFC702 86.86%);
}
.steps-wrap .step .avatar-wrap.avatar-1 img {
  width: 120px;
  height: 120px;
}
.steps-wrap .step .avatar-wrap.avatar-2 {
  background: linear-gradient(147deg, #9C19E8 10.55%, #BF01DC 86.86%);
}
.steps-wrap .step .avatar-wrap.avatar-2 img {
  width: 100px;
  height: 100px;
}
.steps-wrap .step .avatar-wrap.avatar-3 {
  background: linear-gradient(147deg, #B1D502 10.55%, #02B1BB 86.86%);
}
.steps-wrap .step .avatar-wrap.avatar-3 img {
  width: 100px;
  height: 100px;
}
.steps-wrap .step .avatar-wrap.avatar-4 {
  background: linear-gradient(147deg, #FB00A0 10.55%, #FF0084 86.86%);
}
.steps-wrap .step .avatar-wrap.avatar-4 img {
  width: 120px;
  height: 120px;
}
.steps-wrap .step .avatar-wrap.avatar-5 {
  width: 150px;
  height: auto;
  overflow: visible;
  margin: 0 auto 15px;
}
.steps-wrap .step .avatar-wrap.avatar-5 img {
  width: 68px;
  height: 68px;
}
.steps-wrap .step .count-down-wrap {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.steps-wrap .step .count-down-wrap .timer-title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.steps-wrap .step .count-down-wrap .countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps-wrap .step .count-down-wrap .countdown .time-text {
  font-size: 11px;
  color: #333333;
  font-weight: 700;
  margin: 4px 0 0;
  background-color: transparent;
  text-transform: none;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  letter-spacing: 0;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder {
  width: 100%;
  max-width: 100%;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countSeconds,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countMinutes,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countHours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 40px;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countSeconds .position,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countMinutes .position,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countHours .position {
  margin-right: 2px;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countSeconds .position:nth-child(2),
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countMinutes .position:nth-child(2),
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countHours .position:nth-child(2) {
  margin-right: 0;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countDiv {
  width: auto;
  height: auto;
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: -10px;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countDiv:before {
  margin-bottom: 5px;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countDiv:before,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countDiv:after {
  background-color: #333333;
  width: 2px;
  height: 2px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: auto;
  margin-left: auto;
  top: auto;
  position: relative;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .digit,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .digit.static {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: #333333;
  background: #EFEFEF;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 19px;
  height: 100%;
  padding: 3px 0;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .position {
  width: 19px;
  height: 31px;
}
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countDays,
.steps-wrap .step .count-down-wrap .countdown.countdownHolder .countDiv0 {
  display: none;
}

.steps-wrap .step .step-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps-wrap .step .step-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps-wrap .step .text-group {
  display: inline-block;
  margin: 2px 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
.steps-wrap .step.step-final .step-content-wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.steps-wrap .step.step-final .final-title {
  font-weight: 700;
  display: inline-block;
  margin: 0 auto 20px;
  text-transform: uppercase;
}
.steps-wrap .step.step-final .btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Buttons */
.btns-wrap,
.btn-wrap {
  width: 100%;
  max-width: 452px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  margin: 0 auto;
}
.wf_mini_img {
  width: 100%;
  margin: 8px 0px;
}
.btn {
  font-size: 20px !important;
  line-height: 1;
  font-weight: 500 !important;
  width: 100%;
  height: 50px;
  border-radius: 8px !important;
  border: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
  padding: 0 10px !important;
  position: relative;
  overflow: hidden;
  border: 1px solid white;
}
.btn > * {
  position: relative;
  z-index: 5;
}
.btn:last-child {
  margin-bottom: 0;
}
.btn.btn-1 {
  color: #fff;
  background: linear-gradient(100.54deg, #ffae629c 2.46%, #880db6 107.43%);
}
.btn.btn-2 {
  color: #fff;
  background: linear-gradient(100.54deg, #ffae629c 2.46%, #880db6 107.43%);
  font-size: 24px !important;
  line-height: 1.1 !important;
  height: auto;
  padding: 16px !important;
}
.btn .btn-icon {
  margin-left: 4px;
  pointer-events: none;
  font-style: normal;
}
.btn .btn-icon.icon-img img {
  max-width: 26px;
}
.btn .btn-icon.icon-img.icon-med img {
  max-width: 44px;
}
.btn .btn-icon.icon-img.icon-big img {
  max-width: 70px;
}
.btn .btn-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  z-index: 1;
  background-color: #1a1a1a;
}
.btn .btn-percent {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.btn.btn-active.btn-1 {
  color: #ffffff;
}
.btn.btn-active .btn-percent {
  opacity: 1;
}
.btn.btn-animation {
  -webkit-animation: btnBounce linear 4s infinite;
          animation: btnBounce linear 4s infinite;
}

@-webkit-keyframes btnBounce {
  5%,45% {
    -webkit-transform: translate3d(0, -1px, 0);
            transform: translate3d(0, -1px, 0);
  }
  10%,40% {
    -webkit-transform: translate3d(0, 2px, 0);
            transform: translate3d(0, 2px, 0);
  }
  15%,25%,35% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
  20%,30% {
    -webkit-transform: translate3d(0, 4px, 0);
            transform: translate3d(0, 4px, 0);
  }
}

@keyframes btnBounce {
  5%,45% {
    -webkit-transform: translate3d(0, -1px, 0);
            transform: translate3d(0, -1px, 0);
  }
  10%,40% {
    -webkit-transform: translate3d(0, 2px, 0);
            transform: translate3d(0, 2px, 0);
  }
  15%,25%,35% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
  20%,30% {
    -webkit-transform: translate3d(0, 4px, 0);
            transform: translate3d(0, 4px, 0);
  }
}
/* Preload */
.preload,
.preload-img:after,
.preload-img:before {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



/* Unsubscribe */
.unsubscribe {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 5px;
  z-index: 100;
}

.unsubscribe a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
}

/* RTL */
.lang-he {
  direction: rtl;
}
.lang-he .header,
.lang-he .steps-wrap .step .step-content-top {
  direction: ltr;
}
.lang-he .btn .btn-icon {
  margin-left: 0;
  margin-right: 4px;
}
.lang-he .btn .btn-progress {
  left: auto;
  right: 0;
  border-radius: 0 12px 12px 0;
}
.lang-he .btn .btn-percent {
  right: auto;
  left: 16px;
}

/* Responsive */
.isMobile.has-push .step {
  padding-bottom: 110px;
}

/* Screen 568px */
@media (max-width: 600px) {
  .isMobile.multilang {
    font-size: 20px;
  }
  .isMobile.multilang.has-push {
    font-size: 19px;
  }
  .isMobile.multilang.has-push .steps-wrap .step .avatar-wrap.avatar-5 {
    width: 120px;
  }
  .isMobile.multilang.has-push .steps-wrap .step {
    padding-left: 15px;
    padding-right: 15px;
  }
  .isMobile.multilang.lang-de, .isMobile.multilang.lang-bg {
    font-size: 18px;
  }
  body {
    padding: 32px 16px;
  }
  .wf_wrapper {
  margin-top: 40px;
}
}
/* Large height mobile size: Iphone XS/8 Plus/7 Plus/6s Plus, Gallaxy S8/S9 */
@media (max-width: 479px) and (max-height: 650px) {
  .isMobile.has-push {
    font-size: 20px;
  }
  .isMobile.has-push .steps-wrap .step.step-final .final-title {
    margin-bottom: 10px;
  }
  .isMobile.has-push .steps-wrap .step .avatar-wrap.avatar-5 {
    width: 100px;
  }
}
/* Iphone 8/7/6S, Galaxy S5/S6/S7 */
@media (max-width: 400px) and (max-height: 570px) {
  .steps-wrap .step .avatar-wrap.avatar-5 {
    width: 100px;
  }

  .isMobile.multilang {
    font-size: 18px;
  }
}
/* Iphone SE */
.rpx {
  position: fixed;
  top: 0;
  left: 0;
}

#mailing {
  display:none;
  margin-top:30px;
  padding:20px;
  width:100%;
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
}

.email_under_title > p {
  font-size: 20px;
  color: black;
}

.textbox-email {
  width: 80%;
  padding: 5px;
  font-size: 18px;
}

.step.active {
  display: flex !important;
}

.btn > span {
  text-transform: capitalize;
}