@charset "UTF-8";
/*-- Абсолютное позиционирование  по центру*/
/*
 * Функция возвращающая 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;
}
body {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  body {
    background-position-x: 60%;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  body {
    background-position-x: 60%;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  body {
    background-position-x: 60%;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  body {
    background-position-x: 60%;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  body {
    background-position-x: 95%;
  }
}
@media (max-width: 560px) {
  body {
    background-image: url("../images/bg_mobil.jpg");
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  body {
    background-position-y: 16%;
  }
}
body::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url("../images/bg_modal.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 8;
  -webkit-transition: all 1.5s ease-in-out 1.5s;
  transition: all 1.5s ease-in-out 1.5s;
}
@media (max-width: 560px) {
  body::after {
    background-image: url("../images/bg_modal_mobil.png");
    z-index: 8;
  }
}
body.show-result::after {
  opacity: 1;
}
body.show-result::before {
  opacity: 1;
}

.main-wrapper {
  height: 100vh;
  font-size: 8.5px;
  position: relative;
  overflow: hidden;
  font-family: Impact, sans-serif;
  padding-left: 80px;
  padding-right: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
@media (max-width: 1660px) {
  .main-wrapper {
    font-size: 8px;
  }
}
@media (max-width: 1600px) {
  .main-wrapper {
    font-size: 0.9vh;
  }
}
@media (max-width: 1440px) {
  .main-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1140px) {
  .main-wrapper {
    font-size: 0.8vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .main-wrapper {
    font-size: 7.5px;
  }
}
@media (max-width: 991px) {
  .main-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 0.7vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .main-wrapper {
    font-size: 7.5px;
  }
}
@media (max-width: 860px) {
  .main-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 33px;
    padding-right: 33px;
    gap: 20px;
    font-size: 0.65vh;
  }
}
@media (max-width: 560px) {
  .main-wrapper {
    font-size: 1vw;
  }
}
@media (max-width: 480px) {
  .main-wrapper {
    font-size: 1.05vw;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 20;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 70px;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    width: auto;
    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 1.5s;
  transition: all 0.5s ease-in-out 1.5s;
}

.header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 5vh;
  z-index: 10;
  opacity: 1;
}
@media (max-height: 750px) {
  .header_box {
    margin-top: 2vh;
  }
}
@media (max-width: 1280px) and (max-height: 700px) {
  .header_box {
    margin-top: 3vh;
  }
}
@media (max-width: 860px) {
  .header_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10vh;
    margin-top: 3vh;
    padding: 0;
  }
}
@media (max-width: 560px) {
  .header_box {
    margin-top: 4vh;
    margin-bottom: 8vh;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .header_box {
    margin-bottom: 8vh;
  }
}
@media (max-width: 280px) and (max-height: 653px) {
  .header_box {
    margin-bottom: 6vh;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .header_box {
    margin-bottom: 7vh;
  }
}

.logo img {
  max-height: 31px;
}
@media (max-width: 1440px) {
  .logo img {
    max-height: 28px;
  }
}
@media (max-width: 1280px) {
  .logo img {
    max-height: 24px;
  }
}
@media (max-width: 860px) {
  .logo img {
    max-height: 20px;
  }
}
@media (max-width: 560px) {
  .logo img {
    max-height: 16px;
  }
}
@media (max-width: 370px) {
  .logo img {
    max-height: 14px;
  }
}

@media (max-width: 860px) {
  .logo2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 560px) {
  .logo2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.logo2 img {
  max-height: 200px;
}
@media (max-width: 1440px) {
  .logo2 img {
    max-height: 180px;
  }
}
@media (max-width: 1280px) {
  .logo2 img {
    max-height: 160px;
  }
}
@media (max-width: 1140px) {
  .logo2 img {
    max-height: 140px;
  }
}
@media (max-width: 860px) {
  .logo2 img {
    max-height: 120px;
  }
}
@media (max-width: 560px) {
  .logo2 img {
    max-height: 90px;
  }
}

.casino {
  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;
  gap: 20px;
  text-align: center;
  font-family: "Impact";
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 66px */
  text-transform: uppercase;
  text-decoration: none;
  -webkit-background-clip: text;
          background-clip: text;
  color: #fff;
  opacity: 1;
  padding-left: 4vw;
}
.casino span:last-child {
  color: #ffc91f;
}
@media (max-width: 1660px) {
  .casino {
    font-size: 64px;
  }
}
@media (max-width: 1440px) {
  .casino {
    font-size: 60px;
  }
}
@media (max-width: 1280px) {
  .casino {
    font-size: 55px;
  }
}
@media (max-width: 1140px) {
  .casino {
    font-size: 50px;
  }
}

.casino2 {
  text-align: center;
  font-family: "Impact";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 66px */
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 auto;
  color: #fff;
  opacity: 1;
  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;
  gap: 20px;
}
.casino2 span:last-child {
  color: #ffc91f;
}
@media (max-width: 560px) {
  .casino2 {
    font-size: 45px;
  }
}
@media (max-width: 365px) {
  .casino2 {
    font-size: 35px;
  }
}
@media (max-width: 300px) {
  .casino2 {
    font-size: 25px;
  }
}

.show-result .casino,
.show-result .casino2 {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

@media (max-width: 860px) {
  .desktop {
    display: none;
  }
}

.mobil {
  display: none;
}
@media (max-width: 860px) {
  .mobil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slot-content-wrapper {
  position: relative;
  z-index: 9;
  display: block;
  top: -7vh;
}
@media (max-width: 1440px) {
  .slot-content-wrapper {
    top: -9vh;
  }
}
@media (max-width: 1280px) {
  .slot-content-wrapper {
    top: -11vh;
  }
}

.slot-logo {
  text-align: center;
  margin-bottom: -9em;
  position: relative;
  z-index: 12;
}
.slot-logo img {
  width: 38em;
}

.slot-wrap {
  width: 94.5em;
  height: 60.375em;
  background: url(../images/slot_bg.png) no-repeat center/contain;
  margin: 0 auto;
  margin-top: 2.5em;
  padding-left: 0.6em;
  padding-right: 0.4em;
  padding-top: 1.5em;
  padding-bottom: 1.4em;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.slot-container {
  width: 100%;
  height: 100%;
  border-radius: 1.875em;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.slot-container__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.312em;
  background-position: center top;
  background-repeat: repeat-y;
  height: 100%;
  background-size: 16.5em;
}

.slot-container__item:not(:first-child) {
  border-left: 0.6em solid #7777e3;
}

.slot_btn {
  display: block;
  margin: -0.9em auto 0 auto;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  font-family: "Inter";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 46px;
  border-radius: 20px;
  background: #ffc920;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slot_btn:hover {
  background: #f8a933;
  -webkit-box-shadow: 2px 2px 0px 0px #474545;
          box-shadow: 2px 2px 0px 0px #474545;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1280px) {
  .slot_btn {
    font-size: 22px;
    padding: 16px 36px;
  }
}
@media (max-width: 860px) {
  .slot_btn {
    margin: 0.4em auto 0 auto;
    padding: 10px 30px;
    border-radius: 13px;
    font-size: 3.3em;
  }
}
@media (max-width: 560px) {
  .slot_btn {
    font-size: 4em;
  }
}

.slot-container__item--1 {
  background-image: url("../images/slot_col_1.png");
}

.slot-container__item--2 {
  background-image: url("../images/slot_col_2.png");
}

.slot-container__item--3 {
  background-image: url("../images/slot_col_3.png");
}

.slot-container__item--4 {
  background-image: url("../images/slot_col_4.png");
}

.slot-container__item--5 {
  background-image: url("../images/slot_col_5.png");
}

.slot-container__item--6 {
  background-image: url("../images/slot_col_6.png");
}

.slot-container__item--7 {
  background-image: url("../images/slot_col_7.png");
}

.slot-container__win-line {
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  height: 58em;
  width: 100%;
  position: absolute;
  -webkit-box-shadow: 0em 0em 1.5625em 0em gold inset;
  box-shadow: 0em 0.7em 1.6em 0.7em gold inset;
  margin-top: -3.4375em;
  display: none;
  opacity: 0;
  -webkit-animation: blinking 0.5s infinite ease alternate;
  animation: blinking 0.5s infinite ease alternate;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.slot-container__item--1,
.slot-container__item--3,
.slot-container__item--5,
.slot-container__item--7 {
  -webkit-animation: slots 2.5s infinite ease-in-out;
          animation: slots 2.5s infinite ease-in-out;
}

.slot-container__item--2,
.slot-container__item--4,
.slot-container__item--6 {
  -webkit-animation: slots-reverse 2.5s infinite ease-in-out;
          animation: slots-reverse 2.5s infinite ease-in-out;
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slots {
  0% {
    background-position-y: 3%;
  }
  50% {
    background-position-y: -3%;
  }
  100% {
    background-position-y: 3%;
  }
}
@keyframes slots {
  0% {
    background-position-y: 3%;
  }
  50% {
    background-position-y: -3%;
  }
  100% {
    background-position-y: 3%;
  }
}
@-webkit-keyframes slots-reverse {
  0% {
    background-position-y: -3%;
  }
  50% {
    background-position-y: 3%;
  }
  100% {
    background-position-y: -3%;
  }
}
@keyframes slots-reverse {
  0% {
    background-position-y: -3%;
  }
  50% {
    background-position-y: 3%;
  }
  100% {
    background-position-y: -3%;
  }
}
.decor__girl1 {
  z-index: 8;
  position: absolute;
  bottom: -6vh;
  left: -5vw;
  opacity: 1;
  -webkit-animation: girl 2.5s ease-in-out infinite;
          animation: girl 2.5s ease-in-out infinite;
}
@media (max-width: 1280px) {
  .decor__girl1 {
    left: -10vw;
  }
}
@media (max-width: 1140px) {
  .decor__girl1 {
    left: -20vw;
  }
}
@media (max-width: 1140px) and (max-height: 650px) {
  .decor__girl1 {
    left: -8vw;
  }
}
@media (max-width: 991px) {
  .decor__girl1 {
    left: -25vw;
  }
}
@media (max-width: 860px) {
  .decor__girl1 {
    left: -30vw;
  }
}
@media (max-width: 680px) {
  .decor__girl1 {
    left: -35vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__girl1 {
    bottom: -41vw;
    left: 13vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__girl1 {
    bottom: -32vh;
    left: 8vw;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__girl1 {
    left: 11vw;
    bottom: -41vh;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__girl1 {
    left: 3vw;
    bottom: -41vh;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__girl1 {
    left: 5vw;
    bottom: -38vh;
  }
}
@media (max-width: 560px) {
  .decor__girl1 {
    display: none;
  }
}
.decor__girl1 img {
  max-height: 80vh;
}
.decor__girl2 {
  display: none;
}
@media (max-width: 560px) {
  .decor__girl2 {
    display: block;
    z-index: 8;
    position: absolute;
    left: 17vw;
    bottom: -15vh;
    -webkit-animation: girl 2.5s ease-in-out infinite;
            animation: girl 2.5s ease-in-out infinite;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .decor__girl2 {
    left: 13vw;
    bottom: -12vh;
  }
}
@media (max-width: 430px) {
  .decor__girl2 {
    left: 5vw;
    bottom: -9vh;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__girl2 {
    bottom: -19vh;
    left: 13vw;
  }
}
@media (max-width: 360px) and (max-height: 740px) {
  .decor__girl2 {
    bottom: -12vh;
    left: 9vw;
  }
}
@media (max-width: 280px) and (max-height: 653px) {
  .decor__girl2 {
    left: 11vw;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__girl2 {
    bottom: -24vh;
    left: 23vw;
  }
}
.decor__girl2 img {
  max-height: 45vh;
}

.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: 40%;
    width: 70%;
  }
}
@media (max-width: 680px) {
  .modal__content {
    width: 90%;
  }
}
@media (max-width: 560px) {
  .modal__content {
    top: 45%;
  }
}
.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;
}
@media (max-width: 860px) {
  .modal__logo {
    margin-bottom: 90px;
  }
}
.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-shadow: 0px 2.349px 2.349px rgba(0, 0, 0, 0.25);
  font-family: "Impact";
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.562px; /* 51.417% */
  letter-spacing: 1.875px;
  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: 10px;
}
@media (max-width: 1440px) {
  .modal__desc {
    font-size: 64px;
  }
}
@media (max-width: 1320px) {
  .modal__desc {
    font-size: 60px;
  }
}
@media (max-width: 1180px) {
  .modal__desc {
    font-size: 50px;
  }
}
@media (max-width: 860px) {
  .modal__desc {
    font-size: 44px;
  }
}
@media (max-width: 560px) {
  .modal__desc {
    font-size: 30px;
  }
}
@media (max-width: 340px) {
  .modal__desc {
    font-size: 28px;
  }
}
.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;
    -webkit-transform: rotate(-1deg);
        -ms-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@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 1s;
  transition: all 0.8s ease-in-out 1s;
}

.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;
  color: #000;
  font-family: "Inter";
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 20px;
  background: #FFC920;
  margin-top: 25px;
  -webkit-transition: all 1s ease-in-out 1s;
  transition: all 1s ease-in-out 1s;
}
#go-to-forma:hover {
  background: #f8a933;
  -webkit-box-shadow: 2px 2px 0px 0px #474545;
          box-shadow: 2px 2px 0px 0px #474545;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  #go-to-forma {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media (max-width: 1140px) {
  #go-to-forma {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  #go-to-forma {
    padding: 15px 25px;
  }
}
@media (max-width: 860px) {
  #go-to-forma {
    font-size: 3.3em;
    padding: 10px 30px;
    border-radius: 13px;
  }
}
@media (max-width: 560px) {
  #go-to-forma {
    font-size: 3em;
  }
}

.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 smoke {
  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 smoke {
  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 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 fly {
  0% {
    -webkit-transform: translateX(1.875em);
    transform: translateX(1.875em);
  }
  100% {
    -webkit-transform: translateX(-10, 16);
    transform: translateX(-10, 16);
  }
}
@keyframes fly {
  0% {
    -webkit-transform: translateX(1.875em);
    transform: translateX(1.875em);
  }
  100% {
    -webkit-transform: translateX(-10, 16);
    transform: translateX(-10, 16);
  }
}
@-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 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 plane-left {
  0% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
  50% {
    -webkit-transform: translate(5px, 5px) scale(1.05);
            transform: translate(5px, 5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
}
@keyframes plane-left {
  0% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
  50% {
    -webkit-transform: translate(5px, 5px) scale(1.05);
            transform: translate(5px, 5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
}
@-webkit-keyframes plane-right {
  0% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
  50% {
    -webkit-transform: translate(-5px, -5px) scale(1.05);
            transform: translate(-5px, -5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
}
@keyframes plane-right {
  0% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
  50% {
    -webkit-transform: translate(-5px, -5px) scale(1.05);
            transform: translate(-5px, -5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
}
@-webkit-keyframes bg_top {
  0% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  50% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
}
@keyframes bg_top {
  0% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  50% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
}
@-webkit-keyframes donat_decor {
  0% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
  50% {
    -webkit-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
  }
  100% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
}
@keyframes donat_decor {
  0% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
  50% {
    -webkit-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
  }
  100% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
}
@-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);
  }
}
.modal.show-forma .wrapper_form {
  -webkit-transform: translate(-50%, -60%);
      -ms-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.wrapper_form {
  -webkit-transform: translate(-50%, -1000%);
      -ms-transform: translate(-50%, -1000%);
          transform: translate(-50%, -1000%);
  opacity: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  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;
}
@media (max-width: 1024px) and (max-height: 600px) {
  .wrapper_form {
    top: 60%;
  }
}
@media (max-width: 860px) {
  .wrapper_form {
    min-width: 400px;
    top: 50%;
  }
}
@media (max-width: 560px) {
  .wrapper_form {
    min-width: 330px;
    top: 50%;
  }
}
@media (max-width: 330px) {
  .wrapper_form {
    min-width: 90%;
  }
}

.title_form {
  color: #fff;
  font-family: "Impact";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .title_form {
    font-size: 50px;
  }
}
@media (max-width: 560px) {
  .title_form {
    margin-bottom: 28px;
    font-size: 46px;
  }
}
@media (max-width: 360px) {
  .title_form {
    font-size: 36px;
  }
}
@media (max-width: 320px) {
  .title_form {
    font-size: 30px;
  }
}

.form {
  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;
  gap: 12px;
  width: 100%;
}

.label-email,
.label-password {
  width: 100%;
}

.form__label-input input {
  color: rgba(42, 52, 113, 0.7);
  font-family: "DIN Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  background: #fff;
  border: none;
  width: 100%;
  padding: 20px 57px 18px 24px;
}
@media (max-width: 560px) {
  .form__label-input input {
    font-size: 15px;
    padding: 14px 40px 13px 18px;
  }
}

.form__label-input input:focus {
  outline: none;
}

.label-password {
  position: relative;
}
.label-password .btn_pass {
  position: absolute;
  right: 10px;
  bottom: 18px;
  border: none;
  background: transparent;
}
.label-password .btn_pass.active::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  right: 3px;
  height: 2px;
  background: #77959d;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media (max-width: 560px) {
  .label-password .btn_pass.active::after {
    top: 12px;
    left: 4px;
    right: 5px;
  }
}
@media (max-width: 560px) {
  .label-password .btn_pass {
    right: 8px;
    bottom: 9px;
  }
  .label-password .btn_pass img {
    width: 24px;
    height: 24px;
  }
}

.label-checkbox {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.label-checkbox input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.checkmark {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  top: 3px;
  left: 2px;
  height: 25px;
  width: 25px;
  padding: 3px;
  background: #FFC920;
  border-radius: 5px;
}
@media (max-width: 560px) {
  .checkmark {
    height: 20px;
    width: 20px;
  }
}

.label-checkbox input:checked + .checkmark::after {
  display: block;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.label-checkbox .checkmark::after {
  border: 2px solid #fff;
  left: 8px;
  top: 3px;
  border-width: 0 3px 3px 0;
  width: 6px;
  height: 11px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 560px) {
  .label-checkbox .checkmark::after {
    width: 5px;
    height: 7px;
    left: 6px;
  }
}

.checkbox-desc {
  color: #fff;
  font-family: "Inter";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 14px;
}
@media (max-width: 560px) {
  .checkbox-desc {
    font-size: 9px;
  }
}
.checkbox-desc button {
  font-weight: 800;
  border: none;
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.form__btn {
  color: #000;
  text-align: center;
  font-family: "Montserrat";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 20px;
  background: #FFC920;
  padding: 16px 40px;
  border: none;
  margin-top: 15px;
}
@media (max-width: 1140px) {
  .form__btn {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .form__btn {
    padding: 16px 36px;
  }
}
@media (max-width: 560px) {
  .form__btn {
    padding: 14px 40px;
    font-size: 20px;
  }
}

.sound_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}