﻿@charset "UTF-8";
@import url("../css");
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Regular.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*-- Абсолютное позиционирование  по центру*/
/*
 * Функция возвращающая null вместо error если значение в списке не найдено
 * @param {List} $list - список
 * @param {Number}$index - индекс эелемента
 */
/*
 * Функция возвращающая z-index елемента
 * @requiered  $z-layers список слоев;
 * @param {List, Map} $z-layers - массив со именами и значениями z-index;
 * @param {String} $name - елемент;
 * https://codepen.io/jakob-e/pen/KpdBzY
 */
/*
  Более короткая версия функции z-index;
  @param {String, List}
  @return {Number}
 */
/*
  Функция обрезающая единицы измерения и возвращающая число
  @param {Number}
  @return {Number}
 */
/*Функция замены чего-либо в строке
  @author Hugo Giraudel
  @param {String} $string - строка в которой ищем
  @param {String} $search - то что нужно заменить
  @param {String} $replace ('') - то на что нужно заменить
  @return {String} - обновленная строка
*/
/*
  Функция возвращающая значение в em
  **ВСЕГДА ДОЛЖНО БЫТЬ КАК МИНИМУМ 2 ВХОДНЫХ ПАРАМЕТРА**
  - сколько угодно значений может быть передано в функцию
  - последний параметр всегда указывает в каком контексте надо считать em'ы
  @list, @Number $values - значения
  @return EM

  Примеры :
    font-size: em($h1-font-size, 16);
    font-size: em($h1-font-size, $context); Указание контекста(шрифта родителя)
    border-bottom: em(1px solid black) => .0625em solid black) ;
    box-shadow: em(0 0 2px #ccc, inset 0 0 5px #eee, $h1-font-size) => 0 0 .125em #ccc, inset 0 0 .3125em #eee; // Множественные значения

  source: https://github.com/pierreburel/sass-em;
 */
/*
  Функция возвращающая факториал
  @param {Number} $number - число
  @return {Number} - число
 */
/*
  Pi
 */
/*
  Функция вычсисления радианы
  @param {Number} $angle - угол
  @return {Number} - радиан
 */
/*
  Функция возвразающая синус угла
  @param {Number} $angle - угол
  @return {Number} - синус угла
 */
/*
  Функция возвразающая косинус угла
  @param {Number} $angle - угол
  @return {Number} - синус угла
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea {
  -webkit-user-select: auto;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

img {
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Regular.ttf");
  font-weight: 400;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: url("bg_modal.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  body {
    background-position-x: 55%;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  body {
    background-position-x: 55%;
  }
}
@media (max-width: 860px) {
  body {
    background-position-x: 50%;
  }
}
@media (max-width: 560px) {
  body {
    background-image: url("bg_modal.webp");
    overflow: auto;
  }
}
body.show-result::after {
  opacity: 1;
}

.main-wrapper {
  height: 100vh;
  width: 100%;
  font-size: 1.1418269231vh;
  position: relative;
  overflow: hidden;
  font-family: Impact, sans-serif;
  padding-inline: 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1660px) {
  .main-wrapper {
    font-size: 1.0817307692vh;
    padding-inline: 80px 0;
  }
}
@media (max-width: 860px) {
  .main-wrapper {
    padding-top: 8vh;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 0.78125vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .main-wrapper {
    padding-top: 6vh;
  }
}
@media (max-width: 480px) {
  .main-wrapper {
    font-size: 1.3vw;
  }
}
@media (max-width: 430px) {
  .main-wrapper {
    font-size: 0.6610576923vh;
  }
}
@media (max-width: 350px) {
  .main-wrapper {
    font-size: 1.6vw;
  }
}

.main-wrapper.show-modal .modal {
  opacity: 1;
  visibility: visible;
}

.main-wrapper.show-result .slot-container__win-line {
  display: block;
  opacity: 1;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 20;
  position: relative;
  margin-top: -5vh;
}
@media (max-width: 1280px) {
  .main {
    gap: 0;
  }
}
@media (max-width: 991px) {
  .main {
    margin-top: -6vh;
  }
}
@media (max-width: 860px) {
  .main {
    -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;
    gap: 0;
    margin-top: 0;
  }
}

.main-wrapper.show-result .main {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.main-wrapper.show-result {
  padding: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 12;
  margin-top: -4vh;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1140px) {
  .content {
    margin-top: -4vh;
  }
}
@media (max-width: 991px) {
  .content {
    margin-top: 1vh;
  }
}
@media (max-width: 860px) {
  .content {
    margin-top: 0vh;
  }
}
.content__wrapper {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content__logo {
  margin-bottom: 10vh;
}
@media (max-width: 860px) {
  .content__logo {
    margin-bottom: 8vh;
  }
}
@media (max-width: 560px) {
  .content__logo {
    margin-bottom: 6vh;
  }
}
.content__logo img {
  max-height: 6.0096153846vh;
}
@media (max-width: 1440px) {
  .content__logo img {
    max-height: 4.8076923077vh;
  }
}
@media (max-width: 1280px) {
  .content__logo img {
    max-height: 4.3269230769vh;
  }
}
@media (max-width: 560px) {
  .content__logo img {
    max-height: 4.0865384615vh;
  }
}
.content__title {
  text-align: center;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Impact;
  font-size: 12.0192307692vh;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 1660px) {
  .content__title {
    font-size: 11.2980769231vh;
  }
}
@media (max-width: 1440px) {
  .content__title {
    font-size: 10.8173076923vh;
  }
}
@media (max-width: 1300px) {
  .content__title {
    font-size: 10.3365384615vh;
  }
}
@media (max-width: 1280px) {
  .content__title {
    font-size: 8.4134615385vh;
  }
}
@media (max-width: 991px) {
  .content__title {
    font-size: 6.9711538462vh;
  }
}
@media (max-width: 860px) {
  .content__title {
    font-size: 8.8942307692vh;
  }
}
@media (max-width: 560px) {
  .content__title {
    font-size: 7.4519230769vh;
  }
}
@media (max-width: 350px) {
  .content__title {
    font-size: 6.7307692308vh;
  }
}
.content__subtitle {
  text-align: center;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 5.0480769231vh;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .content__subtitle {
    font-size: 4.8076923077vh;
  }
}
@media (max-width: 1440px) {
  .content__subtitle {
    font-size: 4.3269230769vh;
  }
}
@media (max-width: 1280px) {
  .content__subtitle {
    font-size: 3.6057692308vh;
  }
}
@media (max-width: 991px) {
  .content__subtitle {
    font-size: 2.8846153846vh;
  }
}
@media (max-width: 860px) {
  .content__subtitle {
    letter-spacing: 1px;
    font-size: 3.8461538462vh;
  }
}
@media (max-width: 560px) {
  .content__subtitle {
    font-size: 3.125vh;
  }
}
@media (max-width: 350px) {
  .content__subtitle {
    font-size: 2.6442307692vh;
  }
}
.content__desc {
  color: #2a3471;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 4.3269230769vh;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 11px;
  text-transform: uppercase;
  background: #ffbc09;
  padding-top: 10px;
  padding-bottom: 4px;
  width: 100%;
}
@media (max-width: 1600px) {
  .content__desc {
    font-size: 4.0865384615vh;
  }
}
@media (max-width: 1440px) {
  .content__desc {
    font-size: 3.6057692308vh;
    padding-bottom: 6px;
  }
}
@media (max-width: 1280px) {
  .content__desc {
    font-size: 3.3653846154vh;
    letter-spacing: 9px;
  }
}
@media (max-width: 860px) {
  .content__desc {
    letter-spacing: 6px;
    padding-top: 8px;
    padding-bottom: 5px;
    font-size: 3.125vh;
  }
}
@media (max-width: 560px) {
  .content__desc {
    font-size: 2.8846153846vh;
  }
}
@media (max-width: 350px) {
  .content__desc {
    font-size: 2.4038461538vh;
  }
}
.content__btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  -webkit-box-shadow: 0px 0px 7.35736px 0px #fff;
          box-shadow: 0px 0px 7.35736px 0px #fff;
  color: #f69420;
  font-family: "Inter";
  font-size: 2.6442307692vh;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 1.9230769231vh 4.8076923077vh;
  border-radius: 15px;
  background: #fff;
  margin-top: 5vh;
}
@media (max-width: 1440px) {
  .content__btn {
    font-size: 2.4038461538vh;
    padding: 1.8028846154vh 4.5673076923vh;
  }
}
@media (max-width: 1140px) {
  .content__btn {
    font-size: 2.1634615385vh;
  }
}
@media (max-width: 1280px) {
  .content__btn {
    padding: 1.6826923077vh 4.3269230769vh;
    font-size: 1.9230769231vh;
  }
}
@media (max-width: 991px) {
  .content__btn {
    font-size: 1.6826923077vh;
  }
}
@media (max-width: 860px) {
  .content__btn {
    font-size: 2.1634615385vh;
    padding: 1.4423076923vh 4.0865384615vh;
  }
}
@media (max-width: 560px) {
  .content__btn {
    font-size: 1.9230769231vh;
  }
}

@-webkit-keyframes blink {
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@keyframes blink {
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.decor__girl1 {
  z-index: 10;
  position: absolute;
  bottom: -2vh;
  right: 7vw;
  opacity: 1;
  -webkit-animation: girl 2.5s ease-in-out infinite;
          animation: girl 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__girl1 {
    right: 12vw;
  }
}
@media (max-width: 1440px) {
  .decor__girl1 {
    right: 5vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__girl1 {
    right: 10vw;
  }
}
@media (max-width: 1280px) {
  .decor__girl1 {
    right: 1vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__girl1 {
    right: 8vw;
  }
}
@media (max-width: 1140px) {
  .decor__girl1 {
    right: -5vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__girl1 {
    right: 3vw;
  }
}
@media (max-width: 991px) {
  .decor__girl1 {
    right: -10vw;
  }
}
@media (max-width: 860px) {
  .decor__girl1 {
    right: -12vw;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__girl1 {
    right: -20vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__girl1 {
    right: -22vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__girl1 {
    right: -28vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__girl1 {
    right: -16vw;
    bottom: -10vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__girl1 {
    right: -12vw;
    bottom: -10vh;
  }
}
@media (max-width: 680px) {
  .decor__girl1 {
    right: -18vw;
  }
}
@media (max-width: 560px) {
  .decor__girl1 {
    display: none;
  }
}
.decor__girl1 img {
  max-height: 90vh;
}
@media (max-width: 860px) {
  .decor__girl1 img {
    max-height: 70vh;
  }
}
.decor__girl2 {
  display: none;
}
@media (max-width: 560px) {
  .decor__girl2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    z-index: 6;
    position: absolute;
    left: -1vw;
    bottom: -3vh;
    -webkit-animation: girl 2.5s ease-in-out infinite;
            animation: girl 2.5s ease-in-out infinite;
    opacity: 1;
  }
}
.decor__girl2 img {
  max-height: 55vh;
}
.decor__smoke-fon {
  position: absolute;
  right: 1vw;
  bottom: 12vh;
  z-index: 9;
  opacity: 1;
  -webkit-animation: decor1 2.5s ease-in-out infinite;
          animation: decor1 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__smoke-fon {
    right: 6vw;
  }
}
@media (max-width: 1440px) {
  .decor__smoke-fon {
    right: -3vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__smoke-fon {
    right: 2vw;
  }
}
@media (max-width: 1280px) {
  .decor__smoke-fon {
    right: -8vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__smoke-fon {
    right: -1vw;
  }
}
@media (max-width: 1140px) {
  .decor__smoke-fon {
    right: -15vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__smoke-fon {
    right: -8vw;
  }
}
@media (max-width: 991px) {
  .decor__smoke-fon {
    right: -24vw;
  }
}
@media (max-width: 860px) {
  .decor__smoke-fon {
    right: -34vw;
    bottom: 2vh;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__smoke-fon {
    right: -55vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__smoke-fon {
    right: -55vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__smoke-fon {
    right: -25vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__smoke-fon {
    right: -35vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__smoke-fon {
    right: -55vw;
  }
}
@media (max-width: 680px) {
  .decor__smoke-fon {
    right: -50vw;
  }
}
@media (max-width: 560px) {
  .decor__smoke-fon {
    display: none;
  }
}
.decor__smoke-fon img {
  max-height: 80vh;
}
@media (max-width: 860px) {
  .decor__smoke-fon img {
    max-height: 70vh;
  }
}
.decor__coins {
  z-index: 5;
  position: absolute;
  bottom: -14vh;
  right: -4vw;
  opacity: 1;
  -webkit-animation: decor2 2.5s ease-in-out infinite;
          animation: decor2 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__coins {
    right: 1vw;
  }
}
@media (max-width: 1440px) {
  .decor__coins {
    right: -8vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__coins {
    right: -1vw;
  }
}
@media (max-width: 1280px) {
  .decor__coins {
    right: -15vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__coins {
    right: -4vw;
  }
}
@media (max-width: 1140px) {
  .decor__coins {
    right: -25vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__coins {
    right: -12vw;
  }
}
@media (max-width: 991px) {
  .decor__coins {
    right: -35vw;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__coins {
    right: -56vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__coins {
    right: -58vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__coins {
    right: -68vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__coins {
    right: -45vw;
    bottom: -14vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__coins {
    right: -38vw;
    bottom: -14vh;
  }
}
@media (max-width: 680px) {
  .decor__coins {
    right: -50vw;
  }
}
@media (max-width: 560px) {
  .decor__coins {
    display: none;
  }
}
.decor__coins img {
  max-height: 85vh;
}
@media (max-width: 860px) {
  .decor__coins img {
    max-height: 70vh;
  }
}
.decor__smoke {
  position: absolute;
  z-index: 12;
  bottom: -10vh;
  right: -4vw;
  opacity: 1;
  -webkit-animation: gifts 2.5s ease-in-out infinite;
          animation: gifts 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__smoke {
    right: -1vw;
  }
}
@media (max-width: 1440px) {
  .decor__smoke {
    right: -8vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__smoke {
    right: -1vw;
  }
}
@media (max-width: 1280px) {
  .decor__smoke {
    right: -15vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__smoke {
    right: -5vw;
  }
}
@media (max-width: 1140px) {
  .decor__smoke {
    right: -25vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__smoke {
    right: -12vw;
  }
}
@media (max-width: 991px) {
  .decor__smoke {
    right: -30vw;
  }
}
@media (max-width: 560px) {
  .decor__smoke {
    display: none;
  }
}
.decor__smoke img {
  max-height: 48vh;
}
@media (max-width: 860px) {
  .decor__smoke img {
    max-height: 40vh;
  }
}
.decor__smoke-mobil-bottom {
  display: none;
}
@media (max-width: 560px) {
  .decor__smoke-mobil-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    z-index: 8;
    position: absolute;
    right: 0;
    bottom: -3vh;
    -webkit-animation: decor1 2.5s ease-in-out infinite;
            animation: decor1 2.5s ease-in-out infinite;
    opacity: 1;
  }
}
@media (max-width: 430px) {
  .decor__smoke-mobil-bottom {
    bottom: -2vh;
  }
}
.decor__smoke-mobil-bottom img {
  max-height: 90vh;
  width: 100%;
}
.decor__smoke-mobil-top {
  display: none;
}
@media (max-width: 560px) {
  .decor__smoke-mobil-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    z-index: 8;
    position: absolute;
    left: 0;
    top: -11vh;
    -webkit-animation: decor2 2.5s ease-in-out infinite;
            animation: decor2 2.5s ease-in-out infinite;
    opacity: 1;
  }
}
@media (max-width: 430px) {
  .decor__smoke-mobil-top {
    bottom: -13vh;
  }
}
.decor__smoke-mobil-top img {
  max-height: 50vh;
  width: 100%;
}
.decor__burning {
  position: absolute;
  z-index: 12;
  bottom: 1vh;
  right: 10vw;
  opacity: 1;
  -webkit-animation: decor2 2.5s ease-in-out infinite;
          animation: decor2 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__burning {
    right: 15vw;
  }
}
@media (max-width: 1140px) {
  .decor__burning {
    right: 2vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__burning {
    right: 9vw;
  }
}
@media (max-width: 860px) {
  .decor__burning {
    right: -1vw;
  }
}
@media (max-width: 560px) {
  .decor__burning {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    right: 0;
  }
}
.decor__burning img {
  max-height: 26vh;
}
@media (max-width: 860px) {
  .decor__burning img {
    max-height: 20vh;
  }
}
@media (max-width: 560px) {
  .decor__burning img {
    max-height: 15vh;
  }
}
.decor__girl1-modal {
  z-index: 4;
  position: absolute;
  bottom: -2vh;
  right: 4vw;
  opacity: 0;
  -webkit-animation: girl 2.5s ease-in-out infinite;
          animation: girl 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) {
  .decor__girl1-modal {
    right: 1vw;
  }
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__girl1-modal {
    right: 4vw;
  }
}
@media (max-width: 1440px) {
  .decor__girl1-modal {
    right: -3vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__girl1-modal {
    right: 2vw;
  }
}
@media (max-width: 1280px) {
  .decor__girl1-modal {
    right: -8vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__girl1-modal {
    right: -2vw;
  }
}
@media (max-width: 1140px) {
  .decor__girl1-modal {
    right: -12vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__girl1-modal {
    right: -6vw;
  }
}
@media (max-width: 991px) {
  .decor__girl1-modal {
    right: -18vw;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__girl1-modal {
    right: -24vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__girl1-modal {
    right: -30vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__girl1-modal {
    right: -32vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__girl1-modal {
    right: -35vw;
    bottom: -10vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__girl1-modal {
    right: -32vw;
    bottom: -10vh;
  }
}
@media (max-width: 680px) {
  .decor__girl1-modal {
    right: -24vw;
  }
}
@media (max-width: 560px) {
  .decor__girl1-modal {
    display: none;
  }
}
.decor__girl1-modal img {
  max-height: 85vh;
}
@media (max-width: 860px) {
  .decor__girl1-modal img {
    max-height: 70vh;
  }
}
.decor__smoke-modal {
  position: absolute;
  z-index: 12;
  bottom: -10vh;
  right: -4vw;
  opacity: 0;
  -webkit-animation: gifts 2.5s ease-in-out infinite;
          animation: gifts 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__smoke-modal {
    right: -1vw;
  }
}
@media (max-width: 1440px) {
  .decor__smoke-modal {
    right: -8vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__smoke-modal {
    right: -1vw;
  }
}
@media (max-width: 1280px) {
  .decor__smoke-modal {
    right: -15vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__smoke-modal {
    right: -5vw;
  }
}
@media (max-width: 1140px) {
  .decor__smoke-modal {
    right: -25vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__smoke-modal {
    right: -12vw;
  }
}
@media (max-width: 991px) {
  .decor__smoke-modal {
    right: -30vw;
  }
}
@media (max-width: 560px) {
  .decor__smoke-modal {
    display: none;
  }
}
.decor__smoke-modal img {
  max-height: 48vh;
}
@media (max-width: 860px) {
  .decor__smoke-modal img {
    max-height: 40vh;
  }
}
.decor__smoke-modal-mobil {
  display: none;
}
@media (max-width: 560px) {
  .decor__smoke-modal-mobil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    z-index: 8;
    position: absolute;
    right: 0;
    bottom: -5vh;
    -webkit-animation: decor1 2.5s ease-in-out infinite;
            animation: decor1 2.5s ease-in-out infinite;
    opacity: 0;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__smoke-modal-mobil {
    bottom: -15vh;
  }
}
@media (max-width: 430px) {
  .decor__smoke-modal-mobil {
    bottom: -4vh;
  }
}
.decor__smoke-modal-mobil img {
  max-height: 90vh;
  width: 100%;
}

.show-result .decor__girl1, .show-result .decor__smoke-fon, .show-result .decor__coins, .show-result .decor__smoke, .show-result .decor__smoke-mobil-bottom, .show-result .decor__smoke-mobil-top {
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  will-change: opacity;
}
.show-result .decor__burning {
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  will-change: opacity;
}
@media (max-width: 560px) {
  .show-result .decor__burning {
    opacity: 1;
  }
}
.show-result .decor__girl1-modal, .show-result .decor__smoke-modal, .show-result .decor__smoke-modal-mobil {
  -webkit-transition: all 1s ease-in-out 1s;
  transition: all 1s ease-in-out 1s;
  opacity: 1;
}

.modal {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Oswald;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal__wrapper {
  margin: 0 auto;
  z-index: 20;
}
.modal__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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@media (max-width: 860px) {
  .modal__content {
    top: 42%;
    width: 70%;
  }
}
@media (max-width: 680px) {
  .modal__content {
    width: 90%;
  }
}
@media (max-width: 560px) {
  .modal__content {
    top: 35%;
  }
}
.modal__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10vh 0px 20vh 0;
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
}
@media (max-width: 860px) {
  .modal__logo {
    margin: 8vh 0px 20vh 0;
  }
}
.modal__logo img {
  max-height: 50px;
}
@media (max-width: 1440px) {
  .modal__logo img {
    max-height: 40px;
  }
}
@media (max-width: 860px) {
  .modal__logo img {
    max-height: 36px;
  }
}
.modal__desc {
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
  font-family: "Impact";
  font-size: 8.4134615385vh;
  font-style: normal;
  font-weight: 400;
  line-height: 40%;
  letter-spacing: 2.455px;
  text-transform: uppercase;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  margin-bottom: 5vh;
}
@media (max-width: 1440px) {
  .modal__desc {
    font-size: 7.6923076923vh;
  }
}
@media (max-width: 1140px) {
  .modal__desc {
    font-size: 7.2115384615vh;
  }
}
@media (max-width: 860px) {
  .modal__desc {
    font-size: 6.7307692308vh;
    margin-bottom: 3vh;
  }
}
@media (max-width: 560px) {
  .modal__desc {
    font-size: 5.5288461538vh;
  }
}
@media (max-width: 340px) {
  .modal__desc {
    font-size: 4.0865384615vh;
  }
}
.modal__prize {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.modal__prize img {
  max-height: 22vh;
}
@media (max-width: 1280px) {
  .modal__prize img {
    max-height: 20vh;
  }
}
@media (max-width: 860px) {
  .modal__prize img {
    max-height: 18vh;
  }
}
@media (max-width: 560px) {
  .modal__prize img {
    max-height: 11vh;
  }
}

.show-modal .modal__desc,
.show-modal .modal__prize {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.confeti2,
.confeti {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

@-webkit-keyframes prize {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes prize {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#go-to-forma {
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  -webkit-box-shadow: 0px 0px 7.35736px 0px #fff;
          box-shadow: 0px 0px 7.35736px 0px #fff;
  color: #f69420;
  font-family: Inter;
  font-size: 3.125vh;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 2.4038461538vh 7.2115384615vh;
  border-radius: 15px;
  background: #fff;
  margin-top: 3.0048076923vh;
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
}
@media (max-width: 1440px) {
  #go-to-forma {
    font-size: 2.8846153846vh;
    padding: 2.1634615385vh 6.0096153846vh;
  }
}
@media (max-width: 1140px) {
  #go-to-forma {
    font-size: 2.4038461538vh;
  }
}
@media (max-width: 860px) {
  #go-to-forma {
    font-size: 2.6442307692vh;
    padding: 2.1634615385vh 5.5288461538vh;
  }
}
@media (max-width: 560px) {
  #go-to-forma {
    font-size: 2.1634615385vh;
    padding: 1.9230769231vh 3.6057692308vh;
  }
}

.modal.show-forma .modal__content {
  -webkit-transform: translateY(1000%);
      -ms-transform: translateY(1000%);
          transform: translateY(1000%);
  opacity: 0;
}

@-webkit-keyframes girl {
  0% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}

@keyframes girl {
  0% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}
@-webkit-keyframes gifts {
  0% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
}
@keyframes gifts {
  0% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
}
@-webkit-keyframes smoke {
  0% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
}
@keyframes smoke {
  0% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
}
@-webkit-keyframes lightning-up {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightning-up {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lightning-down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lightning-down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes decor2 {
  0% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
}
@keyframes decor2 {
  0% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
}
@-webkit-keyframes decor1 {
  0% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
}
@keyframes decor1 {
  0% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
}
@-webkit-keyframes lightning {
  0% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
    opacity: 1;
  }
}
@keyframes lightning {
  0% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
    opacity: 1;
  }
}
@-webkit-keyframes box {
  0% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
}
@keyframes box {
  0% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
}
@-webkit-keyframes box2 {
  0% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
}
@keyframes box2 {
  0% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
}
@-webkit-keyframes blink2 {
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes blink2 {
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}