@font-face {
  font-family: 'Gotham Rounded Bold';
  src: url(..//fonts/gothamRounded-Bold.woff2) format('woff2'),
  url(..//fonts/gothamRounded-Bold.woff) format('woff');

}
@font-face {
  font-family: 'Gotham Rounded Book';
  src: url(..//fonts/gothamRounded-Book.woff2) format('woff2'),
  url(..//fonts/gothamRounded-Book.woff) format('woff');
}
@font-face {
  font-family: 'Digital';
  src: url(..//fonts/digital-7.woff2) format('woff2');
}


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  position: relative;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 18px;
  overflow-x: hidden;
  background: #070729;
  letter-spacing: -1px;
}
.link {
  text-decoration: underline ;
  font-family: 'Gotham Rounded book';
  font-size: 20px;
  

}
.main-wrapper-relative {
  position: relative;
}
.curve {
  position: absolute;
  transform: translateY(-99%) translateX(-50%);
  width: 100%;
  left: 50%;
}
.bcgg {
  background: #070728;
  position: relative;
  bottom: 0px;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .curve {
    display: none;
  }
  .bcgg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-100%);
    background: linear-gradient(to bottom, transparent, #070728);
    pointer-events: none;
    z-index: 1;
  }
}
.cherry {
  position: absolute;
  top: -11vw;
  left: 0;
  max-width: 11vw;
  z-index: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.zvon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, var(--parallax-y, 0px), 0);
  width: 15vw;
  max-width: 200px;
  z-index: 1;
  will-change: transform;
}
.cherry-mobile,
.zvon-mobile,
.hrozno-mobile,
.mobile-7 {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.rounded-bg {
  position: absolute;
  bottom: -1px;
  background-image: url("../images/top-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 30px;
  width: 100%;
  margin: 0 auto;
  height: 145px;
}

.balls {
  background-image: url("../images/balls.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  position: absolute;
  bottom: -50px;
  height: 100%;
  z-index: -1;
  background-position: -100px center;
  overflow: hidden;
}
a {
  color: #FFFFFF;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
.hover-a {
  transition: .3s all;
}
.hover-a:hover {
  transform: translateY(-6px);
}
p {
  margin: 0;
  padding: 0;
}
.block {
  display: block;
}
.contentCnt {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1100px;
}
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.lightViolet {
  background-color: #2d51c3;
}
.darkBlueBg {
  background-color: #14305f;
}
footer {
  width: 100%;
  background: linear-gradient(0deg, rgba(42, 32, 113, 1) 0%, rgba(17, 93, 169, 1) 100%);
  color: #ffffff;
  overflow: hidden;
  font-family: 'Gotham Rounded Bold';
  font-size: 12px;
  padding: 50px 0;
  bottom: 0;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1100px;
  padding: 0 20px;
}
footer .footer-content > div {
  flex-grow: 1;
  width: 33%;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
footer .logo-content img {
  height: 50px;
  margin-right: 10px;
  display: block;
}
footer .social-content {
  justify-content: center;
}
footer .social-content img {
  width: 30px;
  display: inline-block;
  position: relative;
  margin: 0 6px;
  transition: transform .2s ease-in;
}
footer .notice-content img {
  width: 40px;
  margin-right: 10px;
}
h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 40px;
}
.hero-change-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 67vw;
  height: auto;
}
.hero-section {
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 39vw;
  position: relative;
  background-position-y: 0vw;
  overflow: hidden;
  animation: hero-shake 0.5s linear 1.3s both;
}
.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 0;
  z-index: 1;
  animation: hero-layer-in 0.5s ease-out 1.8s both;
}
.hero-section:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, .1) 100%);
  z-index: -1;
  pointer-events: none;
}
@keyframes hero-shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  12% {
    transform: translate3d(-10px, 3px, 0);
  }
  24% {
    transform: translate3d(10px, -2px, 0);
  }
  36% {
    transform: translate3d(-8px, 2px, 0);
  }
  48% {
    transform: translate3d(7px, -2px, 0);
  }
  60% {
    transform: translate3d(-4px, 1px, 0);
  }
  75% {
    transform: translate3d(3px, 0, 0);
  }
  88% {
    transform: translate3d(-2px, 0, 0);
  }
}
@keyframes hero-layer-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (min-width: 600px) {
  .hero-section:before {
    top: 0.7vw;
    background-image: url("../images/hero-0.png");
    background-size: 64.5% auto;
    background-position: top right;
  }
  .hero-section[data-hero="0"]:before,
  html[data-trezor-hero="0"] .hero-section:before { background-image: url("../images/hero-0.png"); }
  .hero-section[data-hero="20"]:before,
  html[data-trezor-hero="20"] .hero-section:before { background-image: url("../images/hero-20.png"); }
  .hero-section[data-hero="40"]:before,
  html[data-trezor-hero="40"] .hero-section:before { background-image: url("../images/hero-40.png"); }
  .hero-section[data-hero="60"]:before,
  html[data-trezor-hero="60"] .hero-section:before { background-image: url("../images/hero-60.png"); }
  .hero-section[data-hero="80"]:before,
  html[data-trezor-hero="80"] .hero-section:before { background-image: url("../images/hero-80.png"); }
  .hero-section[data-hero="100"]:before,
  html[data-trezor-hero="100"] .hero-section:before { background-image: url("../images/hero-100.png"); }
}
.action-head p {
  font-family: 'Gotham Rounded Book';
  font-size: clamp(18px, 2vw, 24px);
  color: #FFFFFF;
  margin-bottom: 30px;
}
.hero-content {
  font-family: 'Gotham Rounded Bold';
  margin: 0 auto;
  text-align: center;
  margin-top: 7vw;
  padding: 0 20px;
  position: absolute;
  left: 10vw;
  z-index: 3;
}
.hero-title {
  width: 28vw;
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: 'Gotham Rounded Bold';
  font-size: calc(36vw * 0.168);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 50%;
  animation:
    hero-fade-jump 1s cubic-bezier(0.22, 1, 0.5, 1) 0.3s both,
    hero-text-pulse 1.1s ease-in-out 2.3s infinite;
}
.hero-kicker {
  position: relative;
  display: inline-block;
  margin: 0;
  margin-bottom: -0.4em;
  padding: 0.3em 0.72em 0.2em;
  font-family: 'Gotham Rounded Bold';
  font-style: italic;
  font-size: 0.28em;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 0.09em solid #E30613;
  border-radius: 0.25em;
  transform: skewX(-11deg);
}
.hero-kicker > span {
  display: block;
  transform: skewX(11deg);
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.05em;
  height: 0.09em;
  background: #E30613;
  transform: translateY(-50%);
}
.hero-kicker::before {
  right: 100%;
}
.hero-kicker::after {
  left: 100%;
}
.hero-name {
  display: block;
  font-family: 'Gotham Rounded Bold';
  font-size: 0.8em;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin: 0 0 0.28em;
}
.hero-offer {
  position: relative;
  display: inline-block;
  margin-top: 0.12em;
}
.hero-offer-prize {
  --hero-stroke: 0.045em;
  --hero-radius: 0.32em;
  position: relative;
  display: block;
  transform: skewX(-11deg);
  border: 0;
  border-radius: var(--hero-radius);
  padding: 0.22em 0.34em 0.18em;
  font-family: 'Gotham Rounded Bold';
  font-size: 0.72em;
  letter-spacing: -0.02em;
  line-height: 0.95;
  white-space: nowrap;
}
.hero-offer-amount {
  display: block;
  transform: skewX(11deg);
}
.hero-offer-prize::before {
  content: '';
  position: absolute;
  inset: 0;
  border: var(--hero-stroke) solid #E30613;
  border-radius: 0.22em;
  pointer-events: none;
  clip-path: polygon(
    0% 0%,
    calc(var(--hero-radius) + 0.08em) 0%,
    calc(var(--hero-radius) + 0.08em) calc(var(--hero-stroke) + 0.05em),
    calc(100% - var(--hero-radius) - 0.08em) calc(var(--hero-stroke) + 0.05em),
    calc(100% - var(--hero-radius) - 0.08em) 0%,
    100% 0%,
    100% 100%,
    0% 100%
  );
}
.hero-offer-head {
  position: absolute;
  left: var(--hero-radius);
  right: var(--hero-radius);
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 0.04em;
  overflow: visible;
  pointer-events: none;
}
.hero-offer-line {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  background: #E30613;
}
.hero-offer-label {
  display: flex;
  align-items: center;
  gap: 0.28em;
  flex: 0 0 auto;
  height: 100%;
  padding: 0 0.22em;
  overflow: visible;
  transform: skewX(11deg);
  font-family: 'Gotham Rounded Bold';
  font-size: calc(0.3em / 0.72);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #fff;
}
.hero-offer-dot {
  width: 0.15em;
  height: calc(0.045em * 0.72 / 0.3);
  background: #E30613;
  flex: 0 0 auto;
}
@keyframes hero-text-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
@keyframes hero-fade-jump {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-section,
  .hero-section:before {
    animation: none;
  }
  .hero-section:before {
    opacity: 1;
  }
  .cherry,
  .faq-decor img {
    transform: none;
    will-change: auto;
  }
  .zvon {
    transform: translateX(-50%);
    will-change: auto;
  }
  .cherry-mobile,
  .zvon-mobile,
  .hrozno-mobile,
  .mobile-7 {
    transform: none;
    will-change: auto;
  }
}
.faq-wrapper {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  min-height: min(1226px, calc(min(1440px, 100vw) * 1226 / 1440));
  box-sizing: border-box;
}
.faq-decor,
.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.faq-decor {
  z-index: 0;
}
.faq-decor img {
  filter: blur(4px);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.faq-bg {
  z-index: 1;
  background: url("../images/faq-bg.svg") no-repeat top center;
  background-size: 100% 110%;
  opacity: .5;
}
.faq-hrozno {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.faq-7 {
  position: absolute;
  top: -15%;
  right: 1%;
  width: 100%;
  max-width: 420px;
  height: auto;
}
.faq-cherry {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 100%;
  max-width: 200px;
  height: auto;
}
.faq-zvon {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 100%;
  max-width: 90px;
  height: auto;
}
.faq-content {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  max-width: 920px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.faq-wrapper h2 {
  font-family: 'Gotham Rounded Bold';
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 20px;
  margin-top: 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 2;
}
.faq-wrapper h3 {
  font-family: 'Gotham Rounded Bold';
  font-size: clamp(13px, 1.8vw, 18px);
  margin-bottom: 5px;
  margin-top: 0;
  z-index: 1;
}
.faq-wrapper p {
  font-family: 'Gotham Rounded Book';
  font-size: clamp(13px, 1.8vw, 18px);
  margin-bottom: 0;
}
.d-block {
  display: block;
}
.modal .red-badge {
  font-size: 20px;
  display: inline-block;
  position: relative;
  padding: 8px 16px;
  z-index: 1;
  margin-bottom: 10px;
}
.modal .red-badge:before {
  content: '';
  background: #E30613;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(-10deg);
  border-radius: 6px;
  left: 0;
  top: 0;
}
/* 1. Ensure this sits above everything when visible */
.modal {
  position: fixed;
  z-index: 9990000;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.modal.is-visible {
  visibility: visible;
  pointer-events: auto;
}
body.modal-open {
  overflow: hidden;
}
.modal-overlay {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.62);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
    backdrop-filter: blur(4px);
}
.prevent-default {
  pointer-events: none;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-date {
  font-size: 40px;
  margin-bottom: 0;
  color: #FFF600;
}
.modal-wrapper {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 520px;
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  padding: 48px 20px 20px;
  color: #FFFFFF;
  text-align: center;
  background: rgba(12, 10, 48, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.modal-wrapper p {
  margin-bottom: 10px;
}
.modal-wrapper .modal-link img {
  width: 100%;
  max-width: 160px;
}
.modal-title {
  margin-bottom: 0 !important;
}
.modal-line {
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.modal-description {
  color: #E30613;
}
.players-modal .modal-wrapper {
  text-align: left;
}
.players-modal-title {
  font-family: 'Gotham Rounded Bold';
  font-size: 22px;
  text-align: center;
  margin: 0 0 6px;
  color: #FFFFFF;
  flex: 0 0 auto;
}
.players-modal-period {
  margin: 0 0 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-family: 'Gotham Rounded Book';
}
.players-modal-list {
  flex: 1 1 auto;
  min-height: 0;
  max-height: min(62vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(20, 16, 70, 0.45);
}
.players-modal-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Gotham Rounded Book';
  font-size: 16px;
}
.players-modal-row:last-child {
  border-bottom: none;
}
.players-modal-row.is-you {
  border: 1px solid #E30613;
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.55);
  border-radius: 8px;
  background: rgba(227, 6, 19, 0.12);
}
.players-modal-prize {
  font-family: 'Gotham Rounded Bold';
  white-space: nowrap;
}
.special-modal .modal-wrapper {
  background-image: url("../images/bcg-modal.png");
  border: none;
  box-shadow: 0 0 12px 6px #f47575;
}
.special-modal .modal-wrapper:before {
  content: "";
  position: absolute;
  top: -3px;
  z-index: -1;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 10px;
  background-image: repeating-linear-gradient(90deg, #ef8a8a, #ef8a8a 17px, transparent 17px, transparent 27px), repeating-linear-gradient(180deg, #ef8a8a, #ef8a8a 17px, transparent 17px, transparent 27px), repeating-linear-gradient(90deg, #ef8a8a, #ef8a8a 17px, transparent 17px, transparent 27px), repeating-linear-gradient(180deg, #ef8a8a, #ef8a8a 17px, transparent 17px, transparent 27px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
}

.modal-transition {
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s;
}

.modal.is-visible .modal-transition {
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #FFFFFF;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  font-family: Arial, sans-serif;
}
.modal-close img {
  width: 15px;
  display: block;
}

.modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-content > *:first-child {
  margin-top: 0;
}

.modal-content > *:last-child {
  margin-bottom: 0;
}
.hero-eye {
  width: 100%;
  max-width: 235px;
  height: auto;
  /*animation: 1.5s ease 0s normal infinite both running zoomBcg !important;*/
}
@keyframes zoomBcg {
  0% {scale: 1}
  50% {scale: 1.07}
  100% {scale: 1}
}
.price-counter-block {
  color: white;
  position: relative;
  text-align: center;
  bottom: 80px;
}
.price-counter-block img {
  width: 297px;
}
.countdown-content {
  width: 100%;
  font-family: 'Gotham Rounded Bold';
  color: #2A2071;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 60px;
  position: relative;
  bottom: 80px;
}
.countdown-bcg {
  background: #FFFFFF;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  height: 160px;
}
.countdown-title {
  color: #E30613;
  font-size: 24px;
  padding: 20px 60px 0;
}
.stepper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  top: 8px;
}
.stepper > div {
  flex-grow: 1;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepper .cube {
  width: 93px;
  height: 93px;
  background: #2A2071;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
}
.stepper > div > div > span {
  color: #E30613;
}
.stepper .cube span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 50px;
  color: white;
  line-height: 1;
}
.stepper .days .cube:after,.stepper .hours .cube:after {
  content: ':';
  color: #E30613;
  position: absolute;
  right: -26px;
  top: 28px;
  font-size: 27px;
}
.svetla {
  width: 22.4vw;
  height: auto;
  position: absolute;
  bottom: 16.5%;
  left: 49.5vw;
  animation: carBlink 2s infinite;
}

@keyframes carBlink {
  0%, 60%   { opacity: 1; }
  61%, 65%  { opacity: 0; }
  66%, 70%  { opacity: 1; }
  71%, 75%  { opacity: 0; }
  76%, 100%  { opacity: 1; }
}

.loto-red-color {
  color: #E30613;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.actions-block {
  margin-top: 50px;
}
.actions-block a {
  display: inline-block;
  margin: 0 4px 10px;
}
.actions-block img {
  max-width: 250px;
  width: 100%;
  height: auto;
  /*animation: 1.5s ease 0s normal infinite both running zoomBcg !important;*/
}
.steps-content {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 0px;
  bottom: 10.5vw;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -6vw;
}
.steps-content .action-head h2 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: clamp(36px, 4vw, 50px);
  font-family: 'Gotham Rounded Book';
}
.strong {
  font-family: 'Gotham Rounded Bold';
}
.steps-content .action-head h2:first-child {
  margin-bottom: 30px;
}
.steps-content h2 {
  font-size: 40px;
}
.action-head {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 540px;
}
.mission-copy-done {
  display: none;
}
.action-head.is-filled .mission-copy-open,
html[data-trezor-hero="100"] .mission-copy-open {
  display: none;
}
.action-head.is-filled .mission-copy-done,
html[data-trezor-hero="100"] .mission-copy-done {
  display: block;
}
.mission-panel {
  width: 40vw;
  max-width: 500px;
  text-align: left;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission-bar {
  --progress: 0;
  position: relative;
  line-height: 0;
  z-index: 3;
  margin-bottom: -25px;
  transform-origin: 50% 50%;
}
@keyframes mission-bar-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}
.mission-bar img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.mission-bar-fill {
  position: absolute;
  left: 18.58%;
  top: 32.37%;
  width: calc(77.6% * (1 - var(--progress) / 100));
  max-width: 77.6%;
  height: 37.41%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(180deg, #ff5a5a 0%, #E30613 48%, #9b0009 100%);
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.85);
  transform-origin: left center;
  animation: mission-bar-draw 0.5s ease-out 1.8s both;
}
@keyframes mission-bar-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.mission-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 210, 0.55) 50%, transparent 100%);
  animation: mission-bar-sweep 2.6s ease-in-out infinite;
}
.mission-bar-percent {
  position: absolute;
  left: 18.58%;
  top: 32.37%;
  width: 77.6%;
  height: 37.41%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  font-family: 'Gotham Rounded Bold', sans-serif;
  font-size: clamp(14px, 3.1vw, 20px);
  line-height: 1;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 8px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: mission-bar-percent-in 0.35s ease-out 2.3s both;
}
@keyframes mission-bar-percent-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes mission-bar-sweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mission-bar {
    animation: none;
  }
  .mission-bar-fill {
    animation: none;
    transform: none;
  }
  .mission-bar-percent {
    animation: none;
    opacity: 0.7;
  }
  .mission-bar-fill::after {
    animation: none;
    display: none;
  }
}
.mission-card {
  background: rgba(18, 14, 62, 0.62);
  border: 1px solid rgba(186, 176, 255, 0.38);
  border-radius: 28px;
  padding: 36px 22px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: 100%;
  max-width: 365px;
}
.mission-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px 10px 16px;
  margin: 0 0 22px;
  border-radius: 8px;
  background: #16163d;
  border: 1px solid rgba(186, 196, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
}
.mission-timer-label {
  font-family: 'Gotham Rounded Book';
  font-size: clamp(14px, 2vw, 18px);
  white-space: nowrap;
  line-height: 1;
}
.mission-timer.is-soon {
  justify-content: center;
}
.mission-timer.is-soon .mission-timer-label {
  white-space: normal;
  text-align: center;
}
.mission-timer.is-soon .mission-countdown {
  display: none;
}
.mission-countdown {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}
.cd-unit {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
}
.cd-unit b {
  font-family: 'Digital', monospace;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 2px;
}
.cd-unit span {
  font-family: 'Gotham Rounded Book';
  font-size: clamp(8px, 1vw, 9px);
  margin: 0 0 2px 2px;
  line-height: 1;
}
.cd-sep {
  font-family: 'Digital', monospace;
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: -2px;
  margin: 0 2px;
}
.leaderboard-content {
  margin-bottom: 40px;
  position: relative;
}
.mission-card.is-ended .leaderboard-content {
  display: none;
}
.leaderboard-content h2,
.winners-content h2 {
  font-family: 'Gotham Rounded Bold';
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 14px;
  text-align: center;
}
.winners-content h2 {
  font-size: clamp(22px, 3vw, 32px);
}
.winners-period {
  margin: -6px 0 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-family: 'Gotham Rounded Book';
}
.leaderboard-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 15px;
  border-radius: 16px;
  background: rgba(20, 16, 70, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid #5C49E0;
  border-radius: 10px;
  background: rgba(20, 16, 70, 0.45);
  font-family: 'Gotham Rounded Book';
  font-size: clamp(12px, 2vw, 16px);
}
.leaderboard-show-all {
  text-align: center;
  border: none;
  padding: 0;
}
.leaderboard-show-all-button {
  background: none;
  border: none;
  color: #2A2071;
  font-family: 'Gotham Rounded Bold';
  width: 100%;
  border-radius: 10px;
  padding: 10px 16px;
  background: white;
  line-height: 1;
  cursor: pointer;
  margin-top: 10px;
}
.leaderboard-show-all-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.leaderboard-row.is-you {
  border-color: #E30613;
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.55);
}
.leaderboard-rank {
  font-family: 'Gotham Rounded Bold';
  min-width: 42px;
}
.leaderboard-content .link {
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 28px;
}
.link-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.winners-box {
  border: 1px solid #E30613;
  box-shadow: 0 0 18px rgba(227, 6, 19, 0.55);
  border-radius: 16px;
  padding: 14px 16px 10px;
  background: rgba(12, 8, 40, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.winners-labels,
.winners-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  font-family: 'Gotham Rounded Book';
  font-size: clamp(12px, 2vw, 16px);
}

.winners-labels .winners-name,
.winners-labels .winners-prize {
  font-family: 'Gotham Rounded Book';
  font-style: italic;
  font-size: 11px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 2px 12px;
  background: rgba(80, 80, 100, 0.35);
  width: fit-content;
  line-height: 1.3;
  text-align: center;
}
.winners-labels .winners-prize {
  justify-self: end;
}
.winners-rank {
  font-family: 'Gotham Rounded Bold';
}
.winners-prize {
  font-family: 'Gotham Rounded Bold';
  min-width: 64px;
  text-align: right;
}
.img-line {
  width: 100%;
}
.divider-text-block {
  font-family: 'Gotham Rounded Book';
  font-size: 25px;
  margin-bottom: 40px;
}
.bold {
  font-family: 'Gotham Rounded Bold';
}
.divider-text-block p {
  margin: 30px 0px;
}
.divider-text-block h2 {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 35px;
  line-height: 1.4;
}
.red-badge-2 {
  position: relative;
  padding: 7px 15px;
}
.red-badge-2:before {
  content: '';
  background: #E30613;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(-10deg);
  border-radius: 10px;
  left: 0;
  top: -1px;
}
.anchor {
  cursor: pointer;
}
.red-badge-a {
  position: relative;
  padding: 7px 15px;
  font-family: 'Gotham Rounded Bold';
  font-size: clamp(24px, 3vw, 36px);
  display: inline-block;
  animation: 1.5s ease 0s normal infinite both running zoomBcg !important;
}
.red-badge-a:before {
  content: '';
  background: #E30613;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(-10deg);
  border-radius: 6px;
  left: 0;
  top: -1px;
}

.red-badge-scroll {
  position: relative;
  padding: 7px 15px;
  font-family: 'Gotham Rounded Bold';
  cursor: pointer;
  font-size: 40px;
  display: inline-block;
  animation: 1.5s ease 0s normal infinite both running zoomBcg !important;
  color: white;
}
.wrapper-red-badge-scroll {
  text-align: center;
}
.red-badge-scroll:before {
  content: '';
  background: #E30613;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(-10deg);
  border-radius: 10px;
  left: 0;
  top: -1px;
}

.red-badge-h2 {
  position: relative;
  padding: 7px 15px;
  display: inline-block;
  margin-top: 5px;
}
.red-badge-h2:before {
  content: '';
  background: #E30613;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(-10deg);
  border-radius: 10px;
  left: 0;
  top: -1px;
}
.white-badge {
  position: relative;
  padding: 7px 15px;
  font-family: 'Gotham Rounded Bold';
  font-size: 40px;
  display: inline-block;
  margin-bottom: 70px;
  color: #2A2071;
}
.white-badge:before {
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(-10deg);
  border-radius: 10px;
  left: 0;
  top: -1px;
  box-shadow: 0px 0px 37px -1px #ffffffb5;
}
.divider-under-rules {
  margin-top: 60px;
  margin-bottom: 60px;
}
.conditions a {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
  font-family: 'Gotham Rounded Book';
}
.steps-block {
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 670px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  box-shadow: inset 0 0 8px 4px #ffffff40, 0px 0px 17px 8px #ffffff4a;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.1993391106442577) 49%, rgba(255, 255, 255, 1) 100%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.1993391106442577) 49%, rgba(255, 255, 255, 1) 100%);
  background-size: 5px 100%;
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat;
  position: relative;
  background: rgb(121,167,248);
  background: radial-gradient(circle, rgba(121,167,248,0.31418504901960786) 0%, rgba(0,34,91,0) 100%);
  border: 4px solid white;
}
.steps-block:before {
  content: '';
  background: url("../images/radial.png");
  position: absolute;
  width: 80px;
  height: 100%;
  z-index: 2;
  left: -42px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.steps-block:after {
  content: '';
  background: url("../images/radial.png");
  position: absolute;
  width: 80px;
  height: 100%;
  z-index: 2;
  right: -42px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.flex-step {
  display: flex;
  gap: 20px;
  font-family: 'Gotham Rounded Bold';
  align-items: center;
}
.flex-step img {
  max-width: 87px;
}
.hr-line-2 {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cherry-line {
  width: 100%;
}
.square-wrapper {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.square-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  width: 100%;
  padding: 0 12px;
  margin: 30px 0;
}
.square-grid > div {
  display: flex;
  grid-column: span 2;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 22px;
  /*background: #070729FF;
  background: radial-gradient(circle, rgb(61 45 175) 0%, rgb(7 7 41) 100%);
  border: 2px solid #afa3fe;*/
  /*box-shadow: 0px 0px 20px -7px #ffffff;*/
}
.square-grid .square-div:nth-child(1) { grid-column: 2 / span 2; } /* 28 */
.square-grid .square-div:nth-child(2) { grid-column: 4 / span 2; } /* 29 */
.square-grid .square-div:nth-child(3) { grid-column: 6 / span 2; } /* 30 */

.square-grid .square-div:nth-last-child(2) { grid-column: 3 / span 2; } /* 6 */
.square-grid .square-div:nth-last-child(1) { grid-column: 5 / span 2; } /* 7 */
.square-div {
  margin: 5px;
  position: relative;
}
.square-div-animation {
  animation: 1s ease 0s normal both running squareAnim !important;
  cursor: pointer;
}
.square-div .img-ball {
  height: auto;
  width: 100%;
  display: block;
  border-radius: 16px;
}
.vlocky {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 0;
}
.squre-content {
  padding: 5px;
  display: flex;
  position: absolute;
  transform: rotateY(-180deg);
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  opacity: 0;
  color: #8e8e8e;
  text-shadow: 0px 3px 2px #1f1f1f;
  font-family: 'Gotham Rounded Bold';
  flex-direction: column;
  text-align: center;
  background: rgb(75,81,110);
  background: radial-gradient(circle, rgba(75,81,110,1) 0%, rgba(26,29,43,1) 100%);
}
.square-div.showed-square {
  border: 2px solid #9a9a9a;
  box-shadow: 0px 0px 11px 0px #ffffffad;
  margin: 12px;
}
.square-div.square-div-animation {
  box-shadow: 0px 0px 20px 0px #e03333;
  transition: 1s all;
  /*border: 2px solid #e7aaaa;*/
  cursor: pointer;
}
.link-to-modal {
  display: none;
}
.text-to-login-modal {
  display: none;
}
.link-to-condition-modal {
  display: none;
}
.text-to-game-modal {
  display: none;
}
.link-to-game-modal {
  display: none;
}
.active-today {
  cursor: pointer;
  animation: 1.6s ease-in 0s normal infinite both running activeToday !important;
}

.squre-content-show.squre-content {
  color: white;
}
.square-div-animation .squre-content {
  background: rgb(167,50,50);
  background: radial-gradient(circle, rgba(167,50,50,1) 0%, rgba(26,29,43,1) 100%);
  border: 2px solid #ff9696;
}

.star {
  position: absolute;
  width: 40px;
  right: 4px;
  top: 4px;
}
.square-div-animation div:last-child .star {
  visibility: hidden;
  transition: .2s;
}
.sqare-date {
  font-size: 48px;
  margin-bottom: 15px;
}
.square-text {
  font-size: 22px;
}
.text-to-modal {
  display: none !important;
}
.bonus-square {
  font-size: 32px;
  display: block;
}
.squre-content-show {
  animation: 1s ease 0s normal both running squareShow !important;
}

.showed-square {
  transform: rotateY(180deg);
}
.showed-square .number-div {
  display: none;
}
.showed-square .squre-content {
  opacity: 1;
}
@keyframes squareShow {
  30% { opacity: 0;}
  40% { opacity: 1;}
  100% { opacity: 1;}
}
@keyframes squareAnim {
  0% {    transform: rotateY(0);}
  100% {transform: rotateY(180deg);}
}

@keyframes activeToday {
  0% {
    left: 0;
    transform: scale(1);
  }
  10% {
    left: -3px;
  }
  20% {
    left: 3px;
    transform: scale(1.08);
  }
  30% {
    left: -5px;
    transform: scale(1.08);
  }
  40% {
    left: 5px;
    transform: scale(1.08);
  }
  50% {
    left: -4px;
    transform: scale(1.08);
  }
  60% {
    left: 3px;
    transform: scale(1.08);
  }
  70% {
    left: 0;
    transform: scale(1);
  }
}
.steps-block h3 {
  color: #E30613;
  margin: 0;
  font-size: 22px;
}
.steps-block p {
  margin-bottom: 28px;
  font-size: 22px;
  line-height: 1.3;
}
.steps-block p:last-child {
  margin-bottom: 0;
}
.type-block {
  width: 100%;
  max-width: 792px;
  font-family: 'Gotham Rounded Bold';
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 100px;
  color: #2A2071;
}
.type-block h2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.two-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.item-block {
  margin-bottom: 20px;
  flex-grow: 1;
  width: 47%;
  text-align: center;
  font-size: 16px;
}
.item-block .item-img {
  position: relative;
  padding-bottom: 30px;
  display: block;
  transition: .3s all;
}
.item-block .item-img:hover {
  transform: translateY(-10px);
}
.item-block .item-img .item-bcg {
  width: 100%;
  max-width: 368px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.item-block .item-img .item-text {
  width: 100%;
  max-width: 228px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.headline-flex {
  align-items: end;
  display: flex;
  height: 57px;
  margin-bottom: 20px;
}
.item-block-headline {
  margin: 0 45px;
  line-height: 120%;
}
.item-block-headline a {
  color: #E30613;
  text-decoration: underline;
}



/*START HEADER MENU*/

.headWrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
}

#headWrapper-mobile {
  display: none;
}

.headMenu {
  width: auto;
  height: 85px;
  background: linear-gradient(180deg, #101C40 0%, #1B305C 100%);
}

.hdl-bck {
  position: relative;
  margin-bottom: -210px !important;
  top: 160px;
}

.headContent {
  position: relative;
  width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: auto;
  z-index: 100000;
}
.logo a {
  display: grid;
}
.buttonWrapper {
  width: auto;
  z-index: 1000000;
}
.phone {
  width: 16px;
  height: 30px;
  position: relative;
  top: 9px;
  left: -6px;
}

.thinLineGrey {
  background-color: #d1d8e6;
  width: auto;
  height: 4px;
}

.thinLineGrey2 {
  background-color: #d1d8e6;
  width: auto;
  height: px;
  margin-top: -44px;
}

.thinLineRed {
  background-color: #c10000;
  width: auto;
  height: 4px;
}

.headMenu-expand {
  width: 100%;
  height: 277px;
  padding-left: 50px;
  padding-right: 50px;
  transition: 0.5s ease;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(42, 32, 113, 1) 0%, rgba(17, 93, 169, 1) 100%);
}
.hero-expand {
  margin-top: 197px;
  transition: 0.5s ease;
}
.imageLogo {
  width: auto;
  height: 55px;
  position: relative;
}
.hamburger {
  border: 0;
  background-color: transparent;
  top: 47px;
  left: calc(100% - 43px);
  position: fixed;
  z-index: 100000;
  margin: 0 0% auto;
}

.hamburger .line {
  background-color: #fff;
  display: block;
  margin: 5px 0;
  height: 4px;
  width: 30px;
  will-change: transform;
}

.hamburger.open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger .line {
  /* ... */
  transition: all 0.5s ease;
}

.buttonContainer {
  right: 15px;
  margin-top: 21px;
}
.redButton {
  text-transform: uppercase;
  z-index: 1000;
  font-size: 14px;
  font-family: "Gotham Rounded Bold";
  color: #FFFFFF;
  background-color: #e20000;
  padding: 10px 20px;
  margin-right: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease-in;
  line-height: 1;
}
.lightVioletButton {
  text-transform: uppercase;
  font-family: "Gotham Rounded Bold";
  color: #FFFFFF;
  z-index: 1000;
  font-size: 14px;
  background-color: #3051c5;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease-in;
  line-height: 1;
}
.head-text {
  font-family: "Gotham Rounded Bold";
  width: 140px;
  height: 50px;
  margin-right: 20px;
  display: inline-block;
  top: 20px;
  position: relative;
  text-align: right;
  color: white;
}
.lightViolet {
  background-color: #2d51c3;
}
.darkBlueBg {
  background-color: #14305f;
}
.stripeThick {
  height: 8px;
}
.lightGreyBg {
  background-color: #d1d5e1;
}
.brightRedBg {
  background-color: #cc0003;
}
.stripeThin {
  height: 3px;
}
@media only screen and (max-width: 1600px) {
  .headContent {
    width: 90%;
  }
}

.show-tablet {
  display: none;
}
@media only screen and (max-width: 800px) {
  .hide-tablet {
    display: none;
  }
  .show-tablet {
    display: block;
  }
}
@media only screen and (max-width: 700px) {
  .gula {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .sane {
    width: 70%;
  }
}
@media only screen and (max-width: 550px) {
  .headMenu-expand {
    padding-left: 10px;
    padding-right: 10px;
  }
  .headMenu {
    padding-left: 10px;
    padding-right: 10px;
  }
  .imageLogo {
    height: 38px;
  }
  .redButton,.lightVioletButton {
    padding: 9px 12px;
    font-size: 10px;
  }
}

/*END HEADER MENU*/














@media only screen and (max-width: 1300px) {
  .faq-decor {
    opacity: .5;
  }
  .faq-hrozno {
    left: 1vw;
    top: 14%;
    max-width: 15vw;
  }
  .faq-7 {
    max-width: 25vw;
    top: -12vw;
  }
  .faq-cherry {
    bottom: 3%;
    right: 11%;
    max-width: 11vw;
  }
  .faq-zvon {
    bottom: 4%;
    left: 9%;
    max-width: 6vw;
}

}
@media only screen and (max-width: 1100px) {
}
@media only screen and (max-width: 1023px) {
  .faq-bg {
    background-size: 120% 110%;
  }

}
@media only screen and (max-width: 900px) {
  .divider-text-block {
    margin-bottom: 40px;
  }
  .square-text {
    font-size: 18px;
  }
  .bonus-square {
    font-size: 26px;
  }

}
@media only screen and (max-width: 868px) {
  .sqare-date {
    font-size: 40px;
  }
  .rounded-bg {
    bottom: -37px;
  }
  footer {
    position: relative;
    bottom: -1px;
  }
  footer .footer-content {
    display: block;
  }
  footer .footer-content > div {
    width: 100%;
    display: block;
    text-align: center;
  }
  footer .logo-content img {
    margin: 0 auto 10px;
  }
  footer .notice-content img {
    margin: 0 auto 10px;
  }
  footer .social-content a {
    display: inline-block;
    margin: 15px 0;
  }
  footer {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 769px) {
  .steps-block {
    overflow: hidden;
  }
  .bonus-square {
    font-size: 20px;
  }
  .sqare-date {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .square-text {
    font-size: 15px;
  }
  .flex-step img {
    max-width: 70px;
  }
  .steps-block p {
    font-size: 18px;
  }
  .square-div {
    margin: 8px !important;
  }
  .square-div.showed-square {
    margin: 12px !important;
  }
  .square-div.showed-square {
    box-shadow: 0px 0px 6px 0px #ffffffad;
  }
  .rounded-bg:before {
    border-radius: 350px 0 0 0;
  }
  .rounded-bg:after {
    border-radius: 0 350px 0 0;
  }
  .red-badge-2 {
    padding: 4px 15px;
  }
  .star {
    width: 4vw;
  }
}
.hide-desktop {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .hide-desktop {
    display: block !important;
  }
  .steps-content {
    flex-direction: column;
    align-items: end;
    max-width: 500px;
    margin-bottom: 0;
  }
  .mission-panel,
  .mission-card {
    display: contents;
  }
  .mission-bar {
    order: 1;
    width: 100%;
    max-width: 500px;
    margin-bottom: 12px;
  }
  .mission-timer {
    order: 2;
    width: unset;
    max-width: unset;
    margin: 0 10px 38px 0;
  }
  .steps-content {
    padding: 0;
  }
  .cherry-mobile {
    position: absolute;
    display: block;
    left: -30px;
    top: 0;
    max-width: 150px;
    z-index: -1;
  }

  .zvon-mobile {
    position: absolute;
    display: block;
    right: 0;
    bottom: -60px;
    max-width: 150px;
    z-index: -1;
  }
  .hrozno-mobile {
    position: absolute;
    display: block;
    left: 0;
    top: 100px;
    max-width: 90px;
    z-index: -1;
  }
  .mobile-7 {
    position: absolute;
    display: block;
    right: 0px;
    bottom: -90px;
    max-width: 150px;
    z-index: -1;
  }
  .leaderboard-content h2, .winners-content h2, .steps-content .action-head h2 {
    font-size: clamp(32px, 3vw, 36px);
  }
  .action-head {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .red-badge-a {
    font-size: clamp(24px, 9vw, 36px);
  }
  .zvon,.cherry {
    display: none;
  }
  .leaderboard-content {
    order: 4;
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
    padding: 28px 22px 22px;
    background: rgba(18, 14, 62, 0.62);
    border: 1px solid rgba(186, 176, 255, 0.38);
    border-radius: 28px;
  }
  .winners-content {
    order: 5;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    position: relative;
  }
  .leaderboard-content {
    border: none;
    background: none;
    margin-bottom: 0;
  }
  .leaderboard-table {
    padding: 20px 20px;
  }
}
.show-mobile {
  display: none;
}
@media only screen and (max-width: 599px) {
  .faq-bg {
    display: none;
  }
  .bcgg {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    bottom: 0px;
    background-position-x: right;
    background-position-y: 0vw;
  }
  .square-div {
    margin: 3px !important;
  }
  .mission-bar {
    animation: mission-bar-pulse 1.1s ease-in-out 2.3s infinite;
  }
  .square-div.showed-square {
    margin: 6px !important;
  }
  .yellow:before, .green:before, .pink:before,.blue:before {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  }
  .modal-date {
    font-size: 23px;
  }
  .modal-wrapper {
    font-size: 20px;
  }
  .modal-wrapper .modal-link img {
    max-width: 120px;
  }
  .sqare-date {
    font-size: 26px;
  }
  .square-text {
    font-size: 13px;
  }
  .bonus-square {
    font-size: 16px;
  }
  .vlocky {
    display: none;
  }
  .divider-text-block {
    margin-bottom: 20px;
  }
  .actions-block img {
    max-width: 150px;
  }
  .hero-title {
    width: 50vw;
    font-size: calc(80vw * 0.168);
  }
  .link-wrapper {
    margin-bottom: 0px;
  }
  .hero-content {
    margin-top: 7vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .square-grid {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .white-badge {
    margin-top: 0 !important;
  }
  .square-text {
    line-height: 1;
  }

  .red-badge-scroll {
    font-size: 23px;
  }
  .mobile-h1 {
    font-size: 35px !important;
    margin-bottom: 30px !important;
  }
  .steps-block p {
    font-size: 13px;
  }
  .hide-mobile {
    display: none;
  }
  .show-mobile {
    display: block;
  }
  .squre-content,.square-grid > div {
    border-radius: 10px;
  }
  .rounded-bg {
    height: 76px;
  }
  .sub-title-mobile {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    bottom: 47px;
    /*animation: 1.5s ease 0s normal infinite both running zoomBcg !important;*/
    z-index: 99;
  }
  .modal .red-badge {
    font-size: 18px;
  }
  .faq-wrapper p {
    font-size: clamp(12px, 3.5vw, 16px);
  }
  .faq-wrapper h3 {
    font-size: clamp(12px, 3.5vw, 16px);
  }
  .hero-section {
    height: 95vw;
    background-image: url(../images/hero-mobile.jpg);
    background-position: top center;
    background-size: cover;
  }
  .mission-bar {
    width: 90%;
    right: 5%;
  }
  .mission-bar-percent {
    font-size: clamp(12px, 6.2vw, 18px);
    top: 35.37%;
  }
  .mission-timer-label {
    position: relative;
    font-size: clamp(16px, 2vw, 18px);
    top: 1px;
  }
  .cd-unit b {
    font-size: clamp(24px, 2vw, 30px);
  }
  .mission-countdown {
    gap: 8px;
  }
  .cd-unit span {
    font-size: clamp(10px, 1vw, 9px);
  }
  .mission-timer {
    padding: 8px 16px 8px 16px;
  }
  .leaderboard-row ,.winners-labels, .winners-row,.leaderboard-show-all-button{
    font-size: clamp(14px, 2vw, 16px);
  }
  .mission-timer {
    margin: 0 30px 38px 0;
  }
  .hero-section:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero-mobile-0.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
  .hero-section[data-hero="0"]:before,
  html[data-trezor-hero="0"] .hero-section:before { background-image: url("../images/hero-mobile-0.jpg"); }
  .hero-section[data-hero="20"]:before,
  html[data-trezor-hero="20"] .hero-section:before { background-image: url("../images/hero-mobile-20.jpg"); }
  .hero-section[data-hero="40"]:before,
  html[data-trezor-hero="40"] .hero-section:before { background-image: url("../images/hero-mobile-40.jpg"); }
  .hero-section[data-hero="60"]:before,
  html[data-trezor-hero="60"] .hero-section:before { background-image: url("../images/hero-mobile-60.jpg"); }
  .hero-section[data-hero="80"]:before,
  html[data-trezor-hero="80"] .hero-section:before { background-image: url("../images/hero-mobile-80.jpg"); }
  .hero-section[data-hero="100"]:before,
  html[data-trezor-hero="100"] .hero-section:before { background-image: url("../images/hero-mobile-100.jpg"); }
  .leaderboard-content {
    padding: 28px 40px 22px;
  }
  .winners-content {
    padding: 0 40px;
  }
  h2 {
    font-size: 21px;
  }
  .divider-text-block p {
    font-size: 16px;
  }
  .steps-content {
    margin-bottom: 10px;
  }
  .divider-under-rules {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .white-badge {
    margin-bottom: 40px;
  }
 
}
@media only screen and (max-width: 550px) {
  .sqare-date {
    font-size: 22px;
  }
  .bonus-square {
    font-size: 14px;
  }
  .square-text {
    font-size: 11px;
  }
  .flex-step img {
    max-width: 45px;
  }
  .flex-step {
    gap: 10px;
  }
  .hr-line-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .steps-block {
    padding: 30px 20px;
  }
  .hero-eye {
    max-width: 150px;
  }
  .two-blocks {
    display: block;
  }
  .item-block {
    width: 100%;
  }
  .price-counter-block img {
    width: 245px;
  }
  .price-counter-block {
    bottom: 60px;
  }
  .balls {
    display: none;
  }
  .rounded-bg {
    border-radius: 25% 25% 0 0;
    width: 100%;
    background: #FFFFFF;
  }
  .rounded-bg:before,.rounded-bg:after {
    content: none;
  }
  .item-block .item-img {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 463px) {
  .svetla {
    width: 101px;
    bottom: 17%;
  }
  .square-text {
    font-size: 9px;
  }
  .sqare-date {
    font-size: 20px;
  }
  .bonus-square {
    font-size: 12px;
  }
  .steps-block p {
    font-size: 11px;
  }
  .red-badge-scroll {
    font-size: 20px;
  }
  .squre-content {
  }
  .youtube-iframe {
    height: 300px;
    position: relative;
    top: 50px;
  }
  .steps-block {
    padding: 30px 20px 30px;
  }
  .countdown-content {
    width: 375px;
  }
  .stepper .cube {
    width: 80px;
    height: 80px;
  }
  .stepper .cube span {
    font-size: 40px;
  }
  .stepper .days .cube:after, .stepper .hours .cube:after {
    right: -21px;
    top: 22px;
  }
}
@media only screen and (max-width: 424px) {

  .steps-block {
    padding: 25px 10px 25px 18px;
  }
  .flex-step img {
    max-width: 38px;
  }
}
@media only screen and (max-width: 400px) {
  .steps-block p {
    font-size: 10px;
  }
}
/*IPHONE SE PORTAIL*/
@media only screen and (max-width: 376px) {
}
/*IPHONE SE LANDSCAPE*/
@media (max-width: 930px) and (max-height: 500px) {
  .youtube-iframe {
    height: 300px;
    position: relative;
    top: 50px;
  }
}

/*IPHONE SE LANDSCAPE*/
@media (max-width: 700px) and (max-height: 400px) {
  .balls {
    display: none;
  }
  footer .footer-content {
    display: block;
  }
  footer .footer-content > div {
    width: 100%;
    display: block;
    text-align: center;
  }
  footer .logo-content img {
    margin: 0 auto 10px;
  }
  footer .notice-content img {
    margin: 0 auto 10px;
  }
  footer .social-content a {
    display: inline-block;
    margin: 15px 0;
  }
  footer {
    padding: 20px 0;
  }
}

@media only screen and (min-width: 1919px) {
}
@media only screen and (min-width: 2159px) {
  .steps-content {
    bottom: 10vw;
  }
}
@media only screen and (min-width: 3839px) {
}
.mt-0 {
  margin-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}