* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-size-adjust: none; }

html {
  background-color: #2E0C02; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif; }

.zoomInDown {
  animation-name: zoomInDown; }

.zoomInLeft {
  animation-name: zoomInLeft; }

.slideInLeft {
  animation-name: slideInLeft; }

.tada {
  animation-name: tada; }

.pulse {
  animation-name: pulse; }

.fadeIn {
  animation-name: fadeIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  5%,
  10% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  15%,
  25%,
  35%,
  40% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  20%,
  30%,
  40% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  50%,
  to {
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  15% {
    transform: scale3d(1.05, 1.05, 1.05); }
  30%,
  to {
    transform: scale3d(1, 1, 1); } }

@keyframes flicker {
  from,
  50%,
  to {
    filter: brightness(1); }
  25%,
  75% {
    filter: brightness(1.5); } }

@keyframes flickerOpacity {
  50%,
  to {
    opacity: 0; }
  25%,
  75%,
  from {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeInOut {
  from,
  to {
    opacity: 0; }
  50% {
    opacity: 1; } }

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-image: url(public/img/bg_desktop.jpg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden; }
  .page__body {
    position: relative;
    width: 100%;
    z-index: 10; }
  .page__footer {
    padding: 20px;
    z-index: 30; }
  .page__back, .page__things, .page__person {
    pointer-events: none; }
  .page__back {
    position: absolute;
    top: -40px;
    left: -260px;
    width: calc(100% + 260px);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top; }
  .page__things {
    display: block;
    position: absolute;
    top: 220px;
    left: calc(50% - 680px);
    z-index: 20; }
  .page__person {
    display: block;
    position: fixed;
    bottom: 0;
    left: calc(50% + 250px);
    z-index: 20; }
  @media (max-width: 1400px) {
    .page__footer {
      position: absolute;
      bottom: 0;
      max-width: 780px; }
    .page__person {
      max-width: 400px;
      left: calc(50% + 280px); } }
  @media (max-width: 980px) {
    .page__things {
      left: calc(50% - 620px); }
    .page__back {
      background-size: 1200px; } }
  @media (max-width: 880px) {
    .page__things {
      top: 180px;
      left: calc(50% - 450px);
      max-width: 180px; }
    .page__person {
      max-width: 300px;
      left: calc(50% + 210px); }
    .page__back {
      background-size: 800px; } }
  @media (max-width: 640px) {
    .page {
      padding-bottom: 64%;
      background-size: 1100px auto; }
      .page__things {
        top: auto;
        bottom: 60px;
        left: auto;
        right: calc(50% + 20px);
        max-width: 37%; }
      .page__person {
        position: absolute;
        max-width: 55%;
        left: calc(50% - 20px); }
      .page__back {
        background-size: 800px; } }
  @media (max-width: 460px) {
    .page__person {
      max-width: 60%; }
    .page__footer {
      padding: 20px 10px; }
    .page__back {
      background-size: 600px; } }

@keyframes helloBgInLeft {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0; }
  .body__logo {
    margin-bottom: 15px; }
  .body__slot {
    margin-top: -10px;
    margin-bottom: 40px; }
  @media (max-width: 1400px) {
    .body__headline {
      max-width: 680px; } }
  @media (max-width: 460px) {
    .body {
      padding: 25px 0; } }

.button {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  background-color: transparent;
  border: none;
  color: transparent;
  outline: none;
  overflow: hidden; }
  .button[type=reset], .button[type=button], .button[type=submit] {
    -webkit-appearance: button; }
  .button:not(:disabled) {
    cursor: pointer; }
  .button__normal, .button__hover {
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    pointer-events: none; }
  .button__hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0; }
  .button:hover .button__hover,
  .button:active .button__hover {
    opacity: 1; }
  .button__hover {
    animation: 2s fadeInOut infinite; }
    .modal__close .button__hover {
      animation: none; }
  @media (max-width: 1400px) {
    .button__normal, .button__hover {
      max-width: calc(453px / 4 * 3.5); }
      .modal__close .button__normal, .modal__close .button__hover {
        max-width: calc(48px / 4 * 3.5); } }
  @media (max-width: 880px) {
    .button__normal, .button__hover {
      max-width: calc(453px / 4 * 3); }
      .modal__close .button__normal, .modal__close .button__hover {
        max-width: calc(48px / 4 * 3); } }
  @media (max-width: 640px) {
    .button__normal, .button__hover {
      max-width: calc(453px / 4 * 2.5); }
      .modal__close .button__normal, .modal__close .button__hover {
        max-width: calc(48px / 4 * 2.5); } }
  @media (max-width: 640px) {
    .modal__close .button__normal, .modal__close .button__hover {
      max-width: calc(48px / 4 * 2); } }

@media (max-width: 1400px) {
  .logo {
    max-height: 32px; } }

@media (max-width: 880px) {
  .logo {
    max-height: 30px; } }

@media (max-width: 460px) {
  .logo {
    max-height: 25px; } }

.headline {
  display: block;
  width: 100%;
  height: auto;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: pulse; }
  @media (max-width: 880px) {
    .headline {
      max-width: 600px;
      margin-bottom: 10px;
      padding: 0 20px; } }
  @media (max-width: 460px) {
    .headline {
      padding: 0 10px 2px; } }

.payments {
  display: block;
  width: 100%;
  height: auto; }

.modal {
  position: relative;
  z-index: 999; }
  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 12, 2, 0.9);
    display: flex;
    justify-content: center;
    align-items: flex-start; }
  .modal__container {
    position: relative; }
  .modal__close {
    position: absolute;
    top: -22px;
    right: -22px;
    z-index: 1; }
  @media (max-width: 880px) {
    .modal__close {
      top: -10px;
      right: -10px; } }
  @media (max-width: 640px) {
    .modal__close {
      top: -17px;
      right: 15px; } }

@keyframes mmslideIn {
  from {
    transform: scale(0); }
  70% {
    transform: scale(1.02); }
  to {
    transform: scale(1); } }

.micromodal-slide {
  display: none; }

.micromodal-slide.is-open {
  display: block; }

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.8s cubic-bezier(0, 0, 0.2, 1); }

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform; }

.sk-fading-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative; }

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #f8ecce;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; }

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg); }

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg); }

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg); }

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg); }

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg); }

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg); }

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg); }

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg); }

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s; }

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s; }

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s; }

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s; }

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s; }

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s; }

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s; }

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s; }

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

.slot-table {
  display: flex;
  flex-direction: column;
  justify-items: center;
  position: relative;
  left: -4px; }
  .slot-table__body {
    position: relative;
    width: 800px;
    height: 481px;
    background-image: url(public/img/slot_table_desktop.png); }
  .slot-table__button {
    display: flex;
    justify-content: center;
    margin-top: -96px; }
  .slot-table__spiner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .slot-table__spiner--hide {
      display: none; }
  @media (max-width: 1400px) {
    .slot-table__body {
      width: calc(800px / 4 * 3.5);
      height: calc(480px / 4 * 3.5);
      background-size: cover; }
    .slot-table__button {
      margin-top: calc(-96px / 4 * 3.5); } }
  @media (max-width: 880px) {
    .slot-table__body {
      width: calc(800px / 4 * 3);
      height: calc(480px / 4 * 3);
      background-size: cover; }
    .slot-table__button {
      margin-top: calc(-96px / 4 * 3); } }
  @media (max-width: 640px) {
    .slot-table__body {
      width: calc(800px / 4 * 2.5);
      height: calc(480px / 4 * 2.5);
      background-size: cover; }
    .slot-table__button {
      margin-top: calc(-96px / 4 * 2.5); } }
  @media (max-width: 460px) {
    .slot-table {
      left: -1px; }
      .slot-table__body {
        width: calc(800px / 4 * 2);
        height: calc(480px / 4 * 2);
        background-size: cover; }
      .slot-table__button {
        margin-top: calc(-96px / 4 * 2); } }
  @media (max-width: 370px) {
    .slot-table__body {
      width: calc(800px / 4 * 1.7);
      height: calc(480px / 4 * 1.7);
      background-size: cover; }
    .slot-table__button {
      margin-top: calc(-96px / 4 * 1.85); } }

.slot-table-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 10px; }
  .modal[aria-hidden="false"] .slot-table-body img {
    animation-duration: 1s;
    animation-delay: 1s;
    animation-name: pulse; }
  @media (max-width: 1400px) {
    .slot-table-body {
      padding-left: 60px;
      padding-right: 60px; } }

.slot-monitor {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 60px 40px 72px 50px; }
  .slot-monitor__column {
    position: relative;
    width: 100%;
    overflow: hidden; }
  .slot-monitor__highlighter {
    position: absolute;
    top: calc(50% - 59px);
    height: 114px;
    left: calc(50% - 348px);
    right: 0;
    background-repeat: no-repeat;
    background-image: url(public/img/win_line.png);
    opacity: 0; }
    .slot-monitor__highlighter--show {
      opacity: 1;
      transition: .3s ease; }
    .slot-monitor__highlighter--flicker {
      animation: 1s flickerOpacity; }
  @media (max-width: 1400px) {
    .slot-monitor {
      padding: 51px 36px 62px 45px; }
      .slot-monitor__highlighter {
        top: calc(50% - 59px / 4 * 3.5);
        height: calc(114px / 4 * 3.5);
        left: calc(50% - 348px / 4 * 3.5);
        background-size: calc(702px / 4 * 3.5); } }
  @media (max-width: 880px) {
    .slot-monitor {
      padding: 51px 31px 62px 38px; }
      .slot-monitor__highlighter {
        top: calc(50% - 59px / 4 * 3);
        height: calc(114px / 4 * 3);
        left: calc(50% - 348px / 4 * 3);
        background-size: calc(702px / 4 * 3); } }
  @media (max-width: 640px) {
    .slot-monitor {
      padding: 39px 26px 50px 32px; }
      .slot-monitor__highlighter {
        top: calc(50% - 59px / 4 * 2.5);
        height: calc(114px / 4 * 2.5);
        left: calc(50% - 348px / 4 * 2.5);
        background-size: calc(702px / 4 * 2.5); } }
  @media (max-width: 460px) {
    .slot-monitor {
      padding: 34px 21px 43px 26px; }
      .slot-monitor__highlighter {
        top: calc(50% - 59px / 4 * 2);
        height: calc(114px / 4 * 2);
        left: calc(50% - 348px / 4 * 2);
        background-size: calc(702px / 4 * 2); } }
  @media (max-width: 370px) {
    .slot-monitor {
      padding: 25px 18px 31px 21px; }
      .slot-monitor__highlighter {
        top: calc(50% - 59px / 4 * 1.7);
        height: calc(114px / 4 * 1.7);
        left: calc(50% - 348px / 4 * 1.7);
        background-size: calc(702px / 4 * 1.7); } }

.slot-monitor-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%; }
  .slot-monitor-column__item {
    width: 100%;
    height: 33.33333%;
    flex-shrink: 0; }
    .slot-monitor-column__item--offset {
      transform: translateY(-400px); }
    .slot-monitor-column__item--flicker {
      animation: 1s flicker; }

.slot-monitor-item {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center; }
  .slot-monitor-item--1 {
    background-image: url(public/img/slot-item-1.png); }
  .slot-monitor-item--2 {
    background-image: url(public/img/slot-item-2.png); }
  .slot-monitor-item--3 {
    background-image: url(public/img/slot-item-3.png); }
  .slot-monitor-item--4 {
    background-image: url(public/img/slot-item-4.png); }
  .slot-monitor-item--5 {
    background-image: url(public/img/slot-item-5.png); }
  .slot-monitor-item--6 {
    background-image: url(public/img/slot-item-6.png); }
  .slot-monitor-item--7 {
    background-image: url(public/img/slot-item-7.png); }
  .slot-monitor-item--8 {
    background-image: url(public/img/slot-item-8.png); }
  .slot-monitor-item--9 {
    background-image: url(public/img/slot-item-9.png); }
  .slot-monitor-item--10 {
    background-image: url(public/img/slot-item-10.png); }
  @media (max-width: 1400px) {
    .slot-monitor-item {
      background-size: 69%; } }
  @media (max-width: 880px) {
    .slot-monitor-item {
      background-size: 65%; } }
  @media (max-width: 640px) {
    .slot-monitor-item {
      background-size: 63%; } }
  @media (max-width: 460px) {
    .slot-monitor-item {
      background-size: 61%; } }


/*# sourceMappingURL=bundle.css.map*/