body {
  overflow: hidden;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
    display: none;
  }
  10% {
    opacity: 0;
    display: block;
  }

  50% {
    opacity: 0.5;
    display: block;
  }

  100% {
    opacity: 1;
    display: block;
  }
}
.game-module__step {
  opacity: 0;
}

.stopwatch__button.lock {
  pointer-events: none;
}


.game-module__step.fade-in {
  display: block;

  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.0s;
  animation-fill-mode: forwards;
}
#screen-2.game-module__step.fade-in  {
  animation-duration: 0.4s;
}
#screen-0 .section-header__title {
  animation: tilt-shaking 0.8s infinite;
}
@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}
.wof-module__start-btn {
  animation: pulse 0.8s infinite;
}

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

.wof-module__popup.hidden {
  display: none;
  opacity: 0;
}
.confetti {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: none;
  margin-top: 45%;
}
.confetti.show {
  /* display: block; */
}

.confetti img {
  display: none;
  margin: 0 auto;
}
.confetti img.show {
  display: block;
}

.input-validation-failed,
.checkbox__label.checkbox-validation-failed::before,
.rewards-checkbox .checkmark.checkbox-validation-failed,
.personal-data .checkbox__label.checkbox-validation-failed::before,
.checkbox__label.agree-final.checkbox-validation-failed::before,
.checkbox__label.agreee-final.checkbox-validation-failed::before,
.input-validation-failed-radio::before {
  border: 1px solid #f62d27 !important;
  color: #f62d27;
}

.checkbox__label.checkbox-validation-failed::before {
  border: 3px solid #c93030 !important;
}

.input-validation-failed-label::before {
  background-color: #f62d27;
}
.agree-final.checkbox-validation-failed {
  color: #f62d27;
}

input.input-validation-failed,
.validation-failed .checkbox__label:before,
.raucher.validation-failed .radio-button__label::before,
.checkbox__label.checkbox-validation-failed:before,
.checkbox-validation-failed.agree-final:before,
.checkbox-validation-failed.agreee-final:before {
  border-color: #c93030;

  /*border-bottom: 2px solid #c93030;*/
  color: #c93030 !important;
}

.checkbox-validation-failed .validation-message.check-2,
.checkbox-validation-failed .validation-message.check-3 {
  display: block;
}

.modal__body h2 {
  color: #004288;
}

.modal .editor-text h1,
.modal .editor-text h2,
.modal .editor-text h3 {
  font-weight: 700;
  font-family: var(--font-camel);
  line-height: 1.7;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 30px;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .modal {
    padding: 20px;
  }
}
.modal.is-open-modal {
  visibility: visible;
  opacity: 1;
}
/*
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 100%;
  display: flex;
  
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-blue);
  z-index: 9;
  line-height: 24px;
  background-color: transparent;
  color: var(--color-blue);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
}
*/
.modal__close {
 position: absolute;
 right: 32px;
 top: 12px;
 width: 32px;
 height: 32px;
 opacity: 1;
 z-index: 1000;
}
.modal__close:hover {
  opacity: 1;
}
.modal__close:before, .modal__close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #004288;
}
.modal__close:before {
  transform: rotate(45deg);
}
.modal__close:after {
  transform: rotate(-45deg);
}


@media only screen and (max-width: 767px) {
  .modal__close {
    top: 22px;
    right: 16px;
  }
}
.modal__inner {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  position: relative;
  margin: auto;
  height: 510px;
  overflow: hidden;
  background-size: 500px;
}
.modal__body {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  top: 0;
  overflow: auto;
  padding: 50px 60px 40px 40px;
  scrollbar-track-color: rgba(0, 66, 136, 0.5);
  scrollbar-darkshadow-color: #004288;
  scrollbar-arrow-color: rgba(0, 66, 136, 0.5);
}
.modal__body::-webkit-scrollbar {
  width: 6px;
}
.modal__body::-webkit-scrollbar-track {
  background: rgba(0, 66, 136, 0.5);
}
.modal__body::-webkit-scrollbar-thumb {
  background: rgba(0, 66, 136, 0.5);
  width: 6px;
  border-radius: 0;
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: #004288;
}
@media only screen and (max-width: 767px) {
  .modal__body {
    border-radius: 10px;
    padding: 50px 30px 30px;
  }
}
@media (max-width: 360px) {
  .modal__body {
    padding: 50px 20px 20px;
  }
}
header {
  display: block;
}
.header-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 16px 30px;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .header-main {
    top: inherit;
    bottom: 0;
    padding: 30px 15px;
    /*display: none;*/
  }
}

.menu li {
  display: inline-block;
  margin: 5px 12px 0 14px;
}
@media (max-width: 380px) {
  .menu li {
    margin: 0 5px;
  }
}

.menu__link {
  display: block;
  color: #ffeb00 !important;
  font-weight: 700;

  font-size: 13px;

  transition: color 0.3s ease, opacity 0.3s ease;
}
.menu__link:hover {
  opacity: 0.8;
}

.slot-machine {
  box-shadow: none;
}

#admin-area {
  position: fixed;
  /*border: 1px solid red;*/
  width: 100px;
  height: 100px;
  z-index: 10000;
  bottom: 0px;
  right: 0px;
}

.modal2 {
  position: fixed;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 999;
  font-weight: 300;
  color: #030345;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  background: white;
  display: none;
}
.modal2.show {
  display: flex;
}
.modal2 .modal_body {
  width: 100%;
  max-width: 500px;
  min-height: 570px;
  box-shadow: 0 0 20px #030345;
  background-color: rgba(250, 250, 250, 0.95);
  border-radius: 32px;
  position: relative;
  margin: 100px auto 150px;
  height: 65vh;
  overflow: hidden;
}

.modal2 .modal__close {
  position: absolute;
  top: 35px;
  right: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #030345;
  color: white;
  z-index: 1000;
  font-size: 41px;
  text-align: center;
}

.modal2 .modal__body-inner {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  top: 0;
  padding: 80px 56px 40px;
  overflow: auto;
  font-size: 21px;
}
.modal2 .modal__body-inner table {
  width: 100%;
}
.modal2 .modal__body-inner table tr {
  border-bottom: 1px solid;
}
.modal2 .btn.selected {
  background-color: white !important;
  color: #244872 !important;
}
.modal2 .btn.users {
  margin-right: 10px;
}

.modal2 h2 {
  color: #244872 !important;
  text-shadow: 0 2px 0 rgb(0 66 136 / 26%);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 20px;
}
.modal2 .modal__body-inner.prizes {
  display: none;
}
#admin-area {
  font-size: 10px;
}
#admin-area span {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: 5px;
}
.modal2 td {
  padding: 10px 0px;
}

.fake-check {
  width: 30px;
  height: 30px;
  border: 3x solid #efefef;
  background: #efefef;
}

.fake-check.checked {
  background: #0e3087;
}

.game__button .btn.second {
  margin-top: 10px;
}

#neutral-video {
  position: absolute;
}
.wof-module__popup--thankyou {
  display: flex !important;
  opacity: 1 !important;
}


#screen-1 .bottom-text {
  position: fixed;
  width: 100%;
  text-align: center;
  bottom: 14px;
  font-size: 17px;
}

.text--112 {
  font-size: 100px;
}

.personal-info {
  padding: 40px 0 20px;
}

.personal-info__form-inner {
  grid-gap: 12px 40px;
}

.personal-info__header {
  margin-bottom: 15px;
}

.personal-info__form-submit {
  margin-top: 8px;
}

.personal-info__super-title {
  margin-bottom: 7px;
}
.personal-info__title {
  margin-bottom: 21px;
}

.modal .editor-text h2 {
  line-height: 1.1;
}