@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;
}

img {
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


body {
  height: 100vh;
  overflow-x: hidden;
  background: url("../images/main-bg.jpg") no-repeat center/cover;
  background-size: calc(95vw + 95vh);
}

.main-wrapper {
    height: 100vh;
    width: 100%;
    font-size: 11px;
    position: relative;
    overflow: hidden;
    font-family: "Termina", sans-serif;
    align-items: center;
    padding: 0px 100px;
}
@media (max-width: 1679px) {
  .main-wrapper {
    font-size: 10.5px;
  }
}
@media (max-width: 1279px) {
  .main-wrapper {
    font-size: 9px;
  }
}
@media screen and (max-width: 1023px) and (max-height: 430px) {
  .main-wrapper {
    font-size: 4.5px;
  }
}

.main-wrapper.show-modal .modal {
  opacity: 1;
  visibility: visible;
  filter: alpha(opacity=0);
}
.main-wrapper.show-result .slot-container__win-line {
  display: block;
  opacity: 1;
}

.logo {
    width: 30.875em;
    margin: 0;
    margin-top: 0;
    display: block;
    -webkit-animation: show_up 1 0.75s both ease;
    animation: show_up 1 0.75s both ease;
}

.logo img {
  max-width: 100%;
}

.main-content {
  position: relative;
  z-index: 50;
  width: 40%;
}

.main-title {
    text-align: left;
    margin: 0;
    font-weight: normal;
    font-size: inherit;
    text-transform: uppercase;
    color: #FFE810;
    line-height: 1.2;
    margin-top: 3.125em;
}

.main-title span {
  display: block;
}
.main-title__text {
    font-size: 8.625em;
    color: #fff;
    -webkit-animation: show_up 1 0.75s both ease;
    animation: show_up 1 0.75s both ease;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    color: rgba(255, 232, 16, 1);
    font-weight: bold;
}

.main-title__prize {
    font-size: 3.2em;
    -webkit-animation: show_up 1 0.75s both ease;
    animation: show_up 1 0.75s both ease;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin-top: 15px;
    color: #fde74e;
    font-weight: 600;
    line-height: 150%;
}

span.main-title__prize_new {
    font-weight: 600;
    color: #fff;
    font-size: 3.675em;
}

.main-title__free-spin {
    font-size: 3.2em;
    -webkit-animation: show_up 1 0.75s both ease;
    animation: show_up 1 0.75s both ease;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    color: #fff;
    line-height: 150%;
}


@keyframes blink {
  50% {
      transform: scale(1.02)
  }
}


.decor_item1 {
  position: absolute;
  right: 21vw;
  top: auto;
  bottom: -13vh;
  display: flex;
  align-items: center;
  z-index: 991;
  animation: cloud 2.5s infinite both alternate ease-in-out;
}

img.decor_item-image {
  max-height: 105vh;
}

.my-btn--prize {
  padding: 18px 40px;
  margin-top: 20px;
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 45px;
  background: #FFBB38;
  text-decoration: none;
  box-shadow: 0px 0px 10px 0px #FF5F15;
}

.my-btn[disabled] {
  -webkit-box-shadow: 0em 0.1904761905em 5.7142857143em #FFE810, inset -0.1428571429em -0.619047619em 1em rgba(0, 0, 0, 0.25);
          box-shadow: 0em 0.1904761905em 5.7142857143em #FFE810, inset -0.1428571429em -0.619047619em 1em rgba(0, 0, 0, 0.25);
}

.modal {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal__img {
  width: 80em;
}
.modal__img img {
  max-width: 100%;
}

button#game-start img {
    max-width: 4.8em;
}

.top-wrapper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3vh;
  margin-bottom: 1vh;
}

a.btn-sign {
  padding: 13px 25px;
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  border-radius: 45px;
  background: #E4672D;
  box-shadow: 0px 0px 10px 0px #FF5F15;
}

a.btn-sign:hover {
    background: #FF5F15;
    color: #fff;
}

.my-btn[disabled] {
  display: none;
}

.slot-content-wrapper {
  position: relative;
  z-index: 4;
  left: 14%;
  top: 10%;
}

.main-logo img {
  max-height: 130px;
}

.modal_toptitle {
  color: #FFBB38;
  text-align: center;
  font-family: Montserrat;
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.modal_toptitle span {
  font-size: 35px;
  display: block;
}

.modal_title {
  text-align: center;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 30px;
}

.modal_desc {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 420px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.modal {
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  left: -26%;
  right: 0;
  flex-direction: column;
  justify-content: center;
  transition: all 1s ease-in-out;
}

.main-wrapper:before {
  content: "";
  position: absolute;
  right: 26%;
  bottom: 0;
  top: 0;
  z-index: 999;
  transform: scale(0);
  left: 0;
  object-position: center;
  background-image: url(../images/modal_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 58%;
}

.main-wrapper.show-modal::before {
  transform: scale(1);
  transition: all 0.6s ease-in-out;
}

.modal_desc span {
  display: inline-block;
  background: #FFBC09;
  padding: 7px 20px 4px;
  text-align: center;
}

.modal_toptitle:nth-child(1) {
  margin-top: -1vh;
}

.bottom-paylogo {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1350px;
  margin: auto;
  z-index: 9991;
  display: flex;
  bottom: 4vh;
  justify-content: space-between;
}

.bottom-paylogo img {
  width: 85%;
}

.item-paylogo {
  display: flex;
  align-items: center;
  justify-content: center;
}


.modal {
  transform: scale(0);
}

.show-modal .modal {
  transform: scale(1);
}

.my-btn--prize:hover {
  background: #F69420;
  color: #000;
  transition: all 0.4s ease-in-out;
}



[data-modal] {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  min-width: 320px;
  text-align: center;
  font-size: 0;
  transform: translate3d(0, 0, 0);
  overflow: auto;
  transition: opacity .3s, visibility .3s, z-index .3s;
  background-color: rgba(0, 0, 0, .7);
  padding: 15px
}

[data-modal]:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%
}

[data-modal].is-open {
  opacity: 1;
  visibility: visible;
  z-index: 100
}

[data-modal-container] {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto
}

img.decor_item-image.decor_item-img-nak {
  position: absolute;
  right: 0;
  opacity: 0;
  max-height: 110vh !important;
}

.decor_item1 img {
  transition: all 1s ease-in-out;
  
}

.overlay-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 9992;
  background: rgba(19, 19, 28, 0.50);
}

.popup-wrapper {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99992;
}

.popup-inner-wrapper {
  border-radius: 25px;
  background: #1D1D2B;
  padding: 35px 55px;
  text-align: center;
}

.popup-inner-wrapper img {
  margin-bottom: 20px;
}

.modal-top-title {
  color: #fff;
  text-align: center;
/* h1 */
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
  margin-bottom: 10px;
}

.modal-top-desc {
  color: #AEAED2;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  max-width: 200px;
}

.popup_white-close {
  border-radius: 20px;
  background: #fff;
  border: none;
  font-family: 'Montserrat';
  color: #13131C;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-top: 20px;
  padding: 12px 50px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

button.popup_white-close:hover {
  background: transparent;
  color: #fff;
}

.top-popup-wrapper {
  transition: all 0.5s ease-in-out;
}

.popupClose .top-popup-wrapper {
  visibility: hidden;
  opacity: 0;
}

.popupClose img.decor_item-image.decor_item-img-nak {
  opacity: 1;
}

.popupClose img.decor_item-image {
  opacity: 0;
}

.animationGirl img.decor_item-image {
  max-height: 90vh;
}

.animationGirl .decor_item1 {
  bottom: 0;
  right: 14vw;
  transition: all 1.2s ease-in-out;
}

body {
  transition: all 1.2s ease-in-out;
}

body.popupClose.animationGirl {
  background-size: calc(85vw + 85vh);
}








@media (max-width: 1690px) {
  .slot-container__win-line {
    top: 48.5%;
}

.top-wrapper-row {
  margin-bottom: 2vh;
}
}

@media (max-width: 1440px) {

  .main-wrapper {
    padding: 0px 50px;
    font-size: 9.5px;
  }

  .main-logo img {
    max-height: 100px;
  }
    
  .main-wrapper:before {
    background-size: 43vw;
  }

  .top-wrapper-row {
    margin-bottom: 1vh;
  }

  a.btn-sign {
    font-size: 16px;
  }

  .main-wrapper {
    font-size: 1.2vh;
  }

  a#get-prizes {
      font-size: 18px;
  }
  
  .modal_toptitle {
    font-size: 46px;
  }

  .modal_title {
      font-size: 26px;
  }

  .modal_toptitle span {
      font-size: 30px;
  }

  .modal_desc {
      font-size: 18px;
      max-width: 380px;
      margin-bottom: 0px;
  }
}

@media (max-width: 1280px) {

  a#get-prizes {
      padding: 15px 35px;
      font-size: 16px;
      margin-top: 15px;
  }

  .modal_toptitle {
    font-size: 38px;
  }

  .modal_toptitle span {
      font-size: 26px;
  }

  .modal_title {
      font-size: 22px;
  }

  .modal_desc {
      margin-top: 5px;
      font-size: 16px;
      max-width: 330px;
  }


}

@media (max-width: 1140px) {
  .main-wrapper:before {
    background-size: 70%;
  }
}


@media (max-width: 991px) {
    .main-wrapper {
        padding: 0px 20px;
    }

    .logo {
        width: 25em;
    }

    .modal_toptitle {
      font-size: 30px;
    }
    
    .modal_toptitle span {
        font-size: 21px;
    }
    
    .modal_title {
        font-size: 17px;
    }
    
    .modal_desc {
        font-size: 12px;
        max-width: 250px;
    }
    
    a#get-prizes {
      font-size: 14px;
      padding: 10px 20px;
    }
    
    .main-logo img {
        max-height: 80px;
    }
    
    .top-wrapper-row {
        margin-top: 0vh;
    }

    .main-title__text {
        font-size: 5em;
    }

    span.main-title__prize_new {
        font-size: 2.1em;
    }
    
    span.main-title__prize {
        font-size: 1.87em;
    }
    
    span.main-title__free-spin {
        font-size: 1.85em;
    }

    .my-btn {
        font-size: 2.3em;
    }

}


@media (max-width: 860px) {
  .main-wrapper {
    display: block;
  }

  .main-wrapper:before {
    background-size: 75%;
  }

  .decor_item1 {
    position: absolute;
    right: 9vw;
  }

}


@media (max-width: 560px) {

  .slot-content-wrapper {
    position: relative;
    left: auto;
    z-index: 5;
}

.wheel-container {
  top: 38%;
  left: 50%;
  width: 100vw !important;
  height: 100vw !important;
}

.main-wrapper {
    font-size: 1.3vw;
    padding: 0px;
}

.decor_item2 {
  z-index: 1;
  bottom: auto;
  top: 12%;
  right: 6%;
}

img.decor_item-image {
  max-width: 110vw;
  width: auto;
  max-height: 100vh !important;
}

.decor_item1 {
  bottom: 0;
  top: auto;
  right: auto;
  left: 0;
}

.btn-row {
    display: none;
}

.top-wrapper-row {
  justify-content: center;
  margin-top: 5vh;
  margin-bottom: 17vh;
}

.modal {
  top: 0;
  bottom: 0;
  height: auto;
  overflow: visible;
}

.main-wrapper:before {
  background-size: 100%;
}

.modal_toptitle:nth-child(1) {
  margin: 0;
}

.my-btn {
  font-size: 16px;
}

.popup-inner-wrapper {
  padding: 20px 35px;
}

a#get-prizes {
  font-size: 15px;
  padding: 10px 18px;
  margin-top: 10px;
}

.bottom-paylogo {
  padding: 0px 20px 30px;
  flex-wrap: wrap;
  justify-content: center;
  bottom: 0;
}

.bottom-paylogo > div {
  flex-basis: 25%;
  margin: 8px 0px;
}

.modal_toptitle {
  font-size: 26px;
}

.modal_title {
  font-size: 15px;
  margin-top: 8px;
}

.modal_toptitle span {
  font-size: 18px;
}

.main-wrapper:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 68%;
  content: "";
  z-index: 999;
  background: linear-gradient(180deg, rgba(255, 50, 90, 0.00) 0%, #FF325A 100%);
}

body {
  background-size: cover;
}


body.popupClose.animationGirl {
  background-size: cover;
}

img.decor_item-image.decor_item-img-nak {
  right: auto;
}

.modal {
  left: 0;
  z-index: 9999;
}

.main-wrapper:before {
  right: 0;
  z-index: 9999;
}


}



@-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 show_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.25em);
            transform: translateY(1.25em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes show_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.25em);
            transform: translateY(1.25em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fly {
  0% {
    -webkit-transform: translateY(1.875em);
            transform: translateY(1.875em);
  }
  100% {
    -webkit-transform: translateY(-10, 16);
            transform: translateY(-10, 16);
  }
}
@keyframes fly {
  0% {
    -webkit-transform: translateY(1.875em);
            transform: translateY(1.875em);
  }
  100% {
    -webkit-transform: translateY(-10, 16);
            transform: translateY(-10, 16);
  }
}


@keyframes fly_reverse {
  0% {
    -webkit-transform: translateY(-10, 16);
    transform: translateY(-10, 16);
   
  }
  100% {
    -webkit-transform: translateY(1.875em);
    transform: translateY(1.875em);
  }
}


@keyframes cloud {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
   
  }
  100% {
    transform: translate(3vw, 0px);
  }
}

@keyframes cloud_reverse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
   
  }
  100% {
    -webkit-transform: translate(-10vw, 0px);
    transform: translate(-10vw, 0px);
  }
}


@media (max-width: 560px) {
  @keyframes cloud {
    0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
     
    }
    100% {
      -webkit-transform: translate(0vw, 4vh);
      transform: translate(0vw, 4vh);
    }
  }
  
}