@charset "UTF-8";

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: hidden;
  position: relative;
  background-image: url("../public/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 560px) {
  body {
    background-image: url("../public/bg.webp");
    background-position: center top;
  }
}
body::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #000000;
  opacity: .3;
}
body::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url('/public/smokeBlue.png') no-repeat;
  background-position: 0 500px;
  background-size: cover;
  z-index: 2;
}
@media (max-width: 560px) {
  body::after {
    background: linear-gradient(178deg, #041A45 9.1%, rgba(255, 140, 223, 0) 35.54%);
  }
}
body.show-result::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 8;
  background-image: url("../public/bg_modal.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.7s ease-in-out 1.5s;
  transition: all 0.7s ease-in-out 1.5s;
}
@media (max-width: 860px) {
  body.show-result::after {
    background-image: url("../public/bg_modal_mobil.jpg");
  }
}
body.show-result::before {
 /* opacity: 0; */
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.main-wrapper {
  height: 100vh;
  font-size: 10px;
  position: relative;
  overflow: hidden;
  font-family: Impact, sans-serif;
  padding: 0 120px 0 120px;
  background: url("/public/smokeBlue.png") no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1750px) {
  .main-wrapper {
    padding-right: 10px;
    background: u;
  }
}
@media (max-width: 1500px) {
  .main-wrapper {
    font-size: 9px;
  }
}
@media (max-width: 1440px) {
  .main-wrapper {
    padding-left: 100px;
    padding-right: 0;
    font-size: 8.5px;
  }
}
@media (max-width: 1280px) {
  .main-wrapper {
    font-size: 8px;
  }
}
@media (max-width: 1140px) {
  .main-wrapper {
    padding-left: 90px;
    font-size: 7px;
  }
}
@media (max-width: 1024px) {
  .main-wrapper {
    font-size: 6.5px;
  }
}
@media (max-width: 991px) {
  .main-wrapper {
    font-size: 5.5px;
  }
}
@media (max-width: 860px) {
  .main-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 6px;
  }
}
@media (max-width: 560px) {
  .main-wrapper {
    font-size: 1.1vw;
    background-size: 1000px;
    background-position-y: 100%;
  }
}

.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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
}
@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;
    padding-top: 70px;
    width: auto;
    padding-top: 60px;
  }
}

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

.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;
  margin-right: 6vw;
  z-index: 12;
}
@media (max-width: 1440px) {
  .content {
    margin-left: 0;
  }
}
@media (max-width: 860px) {
  .content {
    margin-right: 0;
  }
}
.content__wrapper {
  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: 50px;
}
@media (max-width: 1600px) {
  .content__logo {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .content__logo {
    margin-bottom: 28px;
  }
}
@media (max-width: 860px) {
  .content__logo {
    margin-bottom: 17px;
  }
}
.content__logo img {
  max-height: 70px;
}
@media (max-width: 1440px) {
  .content__logo img {
    max-height: 60px;
  }
}
@media (max-width: 1280px) {
  .content__logo img {
    max-height: 55px;
  }
}
@media (max-width: 1140px) {
  .content__logo img {
    max-height: 52px;
  }
}
.content__title {
  color: #fff;
  text-align: center;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  font-family: "Oswald";
  font-size: 98px;
  font-style: normal;
  font-weight: 700;
  line-height: 129%; /* 161.7px */
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__title {
    font-size: 76px;
  }
}
@media (max-width: 1140px) {
  .content__title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .content__title {
    font-size: 62px;
  }
}
@media (max-width: 560px) {
  .content__title {
    font-size: 58px;
  }
}
.content__subtitle {
  color: #fff;
  font-family: "Oswald";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 129.36%;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__subtitle {
    font-size: 36px;
  }
}
@media (max-width: 1140px) {
  .content__subtitle {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .content__subtitle {
    font-size: 30px;
  }
}
@media (max-width: 560px) {
  .content__subtitle {
    font-size: 28px;
  }
}
.content__desc {
  color: #fff;
  text-align: center;
  font-family: "Montserrat";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 129%; /* 45.276px */
  text-transform: uppercase;
  margin: 34px 0px 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1440px) {
  .content__desc {
    font-size: 21px;
    margin: 15px 0px 40px 0px;
  }
}
@media (max-width: 1140px) {
  .content__desc {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .content__desc {
    font-size: 14px;
    margin: 10px 0px 15px 0px;
  }
}
@media (max-width: 860px) {
  .content__desc {
    margin: 10px 0px 10px 0px;
  }
}
@media (max-width: 560px) {
  .content__desc {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .content__desc {
    font-size: 16px;
  }
}
.content__btn {
  color: #ffffff;
  text-align: center;
  font-family: "Montserrat";
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 187px;
  background: -webkit-gradient(linear, left top, left bottom, from(#34BAFD), to(#1182FE));
  background: linear-gradient(180deg, #34BAFD 0%, #1182FE 100%);

  -webkit-box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -8.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
          box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -8.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
  padding: 26px 64px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}
.content__btn:hover {
  -webkit-box-shadow: 0 5px 10px #34BAFD, inset 2px 6px 10px rgba(0, 0, 0, 0.0);
          box-shadow: 0 5px 10px #34BAFD, inset 2px 6px 10px rgba(0, 0, 0, 0.0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .content__btn {
    font-size: 24px;
    padding: 20px 44px;
  }
}
@media (max-width: 1140px) {
  .content__btn {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .content__btn {
    font-size: 22px;
    padding: 12px 36px;
  }
}
@media (max-width: 860px) {
  .content__btn {
    display: none;
  }
}
.content_img {
  position: relative;
  height: 60px;
  width: 256px;
}
@media (max-width: 1280px) {
  .content_img {
    height: 56px;
    width: 246px;
  }
}
@media (max-width: 860px) {
  .content_img {
    height: 30px;
    width: 127px;
  }
}
.content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .desctop {
    display: none;
  }
}

.mobil {
  display: none;
}
@media (max-width: 991px) {
  .mobil {
    display: block;
  }
}

@-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);
  }
}
.slot-content-wrapper {
  position: relative;
  display: block;
}
@media (max-width: 860px) {
  .slot-content-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  .slot-content-wrapper {
    left: auto;
  }
}

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

.slot-wrap {
  position: relative;
  z-index: 10;
  width: 77.5em;
  height: 52.375em;
  background: url(../public/slot_bg.png) no-repeat center/contain;
  margin: 0 auto;
  margin-top: 2.5em;
  padding-left: 4.2em;
  padding-right: 4.2em;
  padding-top: 7.25em;
  padding-bottom: 1.4375em;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  transform: scale(0.75);
}

@media (max-width: 860px) {
  .slot-wrap {
    transform: scale(1);
  }
}

.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: 0em 0.312em;
  background-position: center top;
  background-repeat: repeat-y;
  height: 100%;
  background-size: 11.1875em;
}

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

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

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

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

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

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

.slot-container__win-line {
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  height: 11em;
  width: 100%;
  position: absolute;
  -webkit-box-shadow: 0em 0em 1.5625em 0em gold inset;
  box-shadow: 0em 0em 1.5625em 0em 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_btn {
  display: none;
}
@media (max-width: 860px) {
  .slot_btn {
    margin: 10px auto 0 auto;
    display: block;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat";
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 186px;
    background: -webkit-gradient(linear, left top, left bottom, from(#34BAFD), to(#1182FE));
    background: linear-gradient(180deg, #34BAFD 0%, #1182FE 100%);
    -webkit-box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -8.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
            box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -8.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
    padding: 16px 36px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: blink 1s infinite;
            animation: blink 1s infinite;
  }
  .slot_btn:hover {
    -webkit-box-shadow: 0 5px 10px #34BAFD, inset 2px 6px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 0 5px 10px #34BAFD, inset 2px 6px 10px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 340px) {
  .slot_btn {
    font-size: 16px;
  }
}

.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__sweet {
  z-index: 9;
  position: absolute;
  bottom: -14vh;
  left: 33vw;
  -webkit-animation: sweet 2.5s ease-in-out infinite;
          animation: sweet 2.5s ease-in-out infinite;
}
.decor__sweet.show-result {
  z-index: 9;
  left: 62vw;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}
@media (max-width: 860px) {
  .decor__sweet.show-result {
    left: 58vw;
    bottom: -20vh;
  }
}
@media (max-width: 768px) {
  .decor__sweet.show-result {
    left: 55vw;
    bottom: -22vh;
  }
}
@media (max-width: 680px) {
  .decor__sweet.show-result {
    left: 28vw;
    bottom: -24vh;
  }
}
@media (max-width: 560px) {
  .decor__sweet.show-result {
    left: auto;
    bottom: -16vh;
  }
}
@media (max-width: 480px) {
  .decor__sweet.show-result {
    bottom: -11vh;
  }
}
@media (max-width: 400px) {
  .decor__sweet.show-result {
    bottom: -6vh;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__sweet.show-result {
    bottom: -10vh;
  }
}
.decor__sweet.show-result img {
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  position: relative;
  max-height: 90vh;
  left: 10vw;
}
@media (max-width: 680px) {
  .decor__sweet.show-result img {
    left: 0;
    max-height: 70vh;
  }
}
@media (max-width: 560px) {
  .decor__sweet.show-result img {
    max-height: 55vh;
  }
}
@media (max-width: 480px) {
  .decor__sweet.show-result img {
    max-height: 50vh;
  }
}
@media (max-width: 400px) {
  .decor__sweet.show-result img {
    max-height: 44vh;
  }
}
@media (max-width: 1600px) {
  .decor__sweet {
    left: 30vw;
  }
}
@media (max-width: 1440px) {
  .decor__sweet {
    left: 32vw;
  }
}
@media (max-width: 1390px) {
  .decor__sweet {
    left: 30vw;
  }
}
@media (max-width: 1280px) {
  .decor__sweet {
    left: 28vw;
  }
}
@media (max-width: 1140px) {
  .decor__sweet {
    left: 26vw;
  }
}
@media (max-width: 991px) {
  .decor__sweet {
    left: 24vw;
  }
}
@media (max-width: 860px) {
  .decor__sweet {
    left: 64vw;
  }
}
@media (max-width: 680px) {
  .decor__sweet {
    left: 70vw;
    bottom: -11vh;
  }
}
@media (max-width: 560px) {
  .decor__sweet {
    left: 45vw;
    bottom: -33vh;
  }
}
@media (max-width: 480px) {
  .decor__sweet {
    left: 38vw;
    bottom: -10vh;
  }
}
@media (max-width: 430px) {
  .decor__sweet {
    left: 30vw;
    bottom: -8vh;
  }
}
@media (max-width: 400px) {
  .decor__sweet {
    bottom: -6vh;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__sweet {
    bottom: -19vh;
  }
}
@media (max-width: 360px) and (max-height: 740px) {
  .decor__sweet {
    bottom: -14vh;
  }
}
.decor__sweet img {
  max-height: 105vh;
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__sweet img {
    max-height: 60vh;
  }
}
@media (max-width: 680px) {
  .decor__sweet img {
    max-height: 60vh;
  }
}
@media (max-width: 480px) {
  .decor__sweet img {
    max-height: 34vh;
  }
}
@media (max-width: 430px) {
  .decor__sweet img {
    max-height: 36vh;
  }
}
.decor__smoke-left {
  z-index: 3;
  position: absolute;
  left: -2vw;
  bottom: -2vh;
  width: 100%;
  -webkit-animation: smoke-left 3s ease-in-out infinite;
          animation: smoke-left 3s ease-in-out infinite;
}
@media (max-width: 860px) {
  .decor__smoke-left {
    display: none;
  }
}
.decor__smoke-left img {
  max-height: 145vh;
}
@media (max-width: 1140px) {
  .decor__smoke-left img {
    max-height: 130vh;
  }
}
.decor__smoke-right {
  z-index: 3;
  position: absolute;
  right: -2vw;
  bottom: -2vh;
  -webkit-animation: smoke-right 3s ease-out infinite;
          animation: smoke-right 3s ease-out infinite;
}
@media (max-width: 560px) {
  .decor__smoke-right {
    display: none;
  }
}
.decor__smoke-right img {
  max-height: 96vh;
}
@media (max-width: 1140px) {
  .decor__smoke-right img {
    max-height: 80vh;
  }
}
.decor__smoke-up-mobil {
  display: none;
}
@media (max-width: 860px) {
  .decor__smoke-up-mobil {
    display: block;
    z-index: 10;
    position: absolute;
    left: -1vw;
    top: -2vh;
    width: 106vh;
    height: 76vh;
    -webkit-animation: smoke-left 2.5s ease-in-out infinite;
            animation: smoke-left 2.5s ease-in-out infinite;
  }
}
@media (max-width: 560px) {
  .decor__smoke-up-mobil {
    left: -20vw;
    width: 100vh;
    height: 90vh;
  }
}
@media (max-width: 425px) {
  .decor__smoke-up-mobil {
    left: -50vw;
  }
}
.decor__smoke-up-mobil img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 145vh;
}
.decor__smoke-right-mobil {
  display: none;
}
@media (max-width: 560px) {
  .decor__smoke-right-mobil {
    display: block;
    z-index: 3;
    position: absolute;
    right: -2vw;
    bottom: -2vh;
    -webkit-animation: smoke-right 2.5s ease-out infinite;
            animation: smoke-right 2.5s ease-out infinite;
  }
}
.decor__smoke-right-mobil img {
  max-height: 96vh;
}
.decor__donat {
  z-index: 7;
  position: absolute;
  left: -2vw;
  bottom: -3vh;
  -webkit-animation: donat-down 2.5s ease-in-out infinite;
          animation: donat-down 2.5s ease-in-out infinite;
}
@media (max-width: 860px) {
  .decor__donat {
    display: none;
  }
}
.decor__donat img {
  max-height: 18vh;
}
@media (max-width: 1140px) {
  .decor__donat img {
    max-height: 16vh;
  }
}
@media (max-width: 991px) {
  .decor__donat img {
    max-height: 14vh;
  }
}
.decor__donat-mobil {
  display: none;
  z-index: 7;
  position: absolute;
  right: -1vw;
  bottom: -1vh;
  -webkit-animation: donat-down 2.5s ease-in-out infinite;
          animation: donat-down 2.5s ease-in-out infinite;
}
@media (max-width: 860px) {
  .decor__donat-mobil {
    display: block;
    z-index: 7;
    position: absolute;
    right: -2vw;
    bottom: -2vh;
    -webkit-animation: donat-down 2.5s ease-in-out infinite;
            animation: donat-down 2.5s ease-in-out infinite;
  }
}
.decor__donat-mobil img {
  max-height: 18vh;
}
.decor__donats-left {
  z-index: 4;
  position: absolute;
  left: -1vw;
  top: 1vh;
  -webkit-animation: donats-left 2.5s ease-in-out infinite;
          animation: donats-left 2.5s ease-in-out infinite;
}
@media (max-width: 860px) {
  .decor__donats-left {
    display: none;
  }
}
.decor__donats-left img {
  max-height: 65vh;
}
@media (max-width: 860px) {
  .decor__donats-left img {
    max-height: 45vh;
  }
}
.decor__donats-down {
  display: none;
}
@media (max-width: 860px) {
  .decor__donats-down {
    display: block;
    z-index: 5;
    position: absolute;
    left: -1vw;
    bottom: -2vh;
    -webkit-animation: donats-down 2.5s ease-in-out infinite;
            animation: donats-down 2.5s ease-in-out infinite;
  }
}
@media (max-width: 860px) and (max-width: 480px) {
  .decor__donats-down {
    left: -2vw;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__donats-down {
    bottom: -8vh;
  }
}
.decor__donats-down img {
  max-height: 20vh;
  width: 28vw;
}
@media (max-width: 640px) {
  .decor__donats-down img {
    width: 40vw;
  }
}
@media (max-width: 480px) {
  .decor__donats-down img {
    width: 38vw;
  }
}
.decor__candy-up {
  z-index: 5;
  position: absolute;
  left: -10vw;
  top: -15vh;
  -webkit-animation: down 3s ease-out infinite;
          animation: down 3s ease-out infinite;
}
@media (max-width: 1140px) {
  .decor__candy-up {
    left: -15vw;
  }
}
@media (max-width: 860px) {
  .decor__candy-up {
    display: none;
  }
}
.decor__candy-up img {
  max-height: 30vh;
}
.decor__candy-left {
  z-index: 4;
  position: absolute;
  left: -15vw;
  top: 11vh;
  -webkit-animation: candy-left 2.5s ease-in-out infinite;
          animation: candy-left 2.5s ease-in-out infinite;
}
@media (max-width: 1140px) {
  .decor__candy-left {
    left: -20vw;
  }
}
@media (max-width: 860px) {
  .decor__candy-left {
    display: none;
  }
}
.decor__candy-left img {
  max-height: 26vh;
}
.decor__candy-down {
  z-index: 5;
  position: absolute;
  left: -8vw;
  bottom: -17vh;
  -webkit-animation: up 3s ease-out infinite;
          animation: up 3s ease-out infinite;
}
@media (max-width: 1440px) {
  .decor__candy-down {
    bottom: -15vh;
  }
}
@media (max-width: 991px) {
  .decor__candy-down {
    left: -9vw;
    bottom: -14vh;
  }
}
@media (max-width: 860px) {
  .decor__candy-down {
    display: none;
  }
}
.decor__candy-down img {
  max-height: 40vh;
}
@media (max-width: 991px) {
  .decor__candy-down img {
    max-height: 34vh;
  }
}
.decor__candy-right-mobil {
  display: none;
}
@media (max-width: 860px) {
  .decor__candy-right-mobil {
    display: block;
    z-index: 3;
    position: absolute;
    right: -12vw;
    bottom: -9vh;
    -webkit-animation: candy-right 2.5s ease-in-out infinite;
            animation: candy-right 2.5s ease-in-out infinite;
  }
}
@media (max-width: 560px) {
  .decor__candy-right-mobil {
    right: -14vw;
  }
}
@media (max-width: 480px) {
  .decor__candy-right-mobil {
    right: -17vw;
  }
}
.decor__candy-right-mobil img {
  max-height: 30vh;
}
.decor__candy-down-mobil {
  display: none;
}
@media (max-width: 860px) {
  .decor__candy-down-mobil {
    display: block;
    z-index: 5;
    position: absolute;
    left: 5vw;
    bottom: -21vh;
    -webkit-animation: down 3s ease-out infinite;
            animation: down 3s ease-out infinite;
  }
}
@media (max-width: 768px) {
  .decor__candy-down-mobil {
    bottom: -18vh;
  }
}
@media (max-width: 680px) {
  .decor__candy-down-mobil {
    bottom: -16vh;
    left: 10vw;
  }
}
@media (max-width: 480px) {
  .decor__candy-down-mobil {
    left: 11vw;
  }
}
@media (max-width: 400px) {
  .decor__candy-down-mobil {
    bottom: -12vh;
    left: 14vw;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__candy-down-mobil {
    bottom: -17vh;
  }
}
.decor__candy-down-mobil img {
  max-height: 40vh;
  width: 23vw;
}
@media (max-width: 640px) {
  .decor__candy-down-mobil img {
    width: 28vw;
  }
}
@media (max-width: 480px) {
  .decor__candy-down-mobil img {
    width: 35vw;
  }
}

.show-modal .decor__smoke-left, .show-modal .decor__smoke-right, .show-modal .decor__smoke-up-mobil, .show-modal .decor__smoke-right-mobil, .show-modal .decor__donat-mobil {
  opacity: 0;
  -webkit-animation: none;
          animation: none;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

@-webkit-keyframes sweet {
  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 sweet {
  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-left {
  0% {
    -webkit-transform: translate3d(5px, 2px, 0);
            transform: translate3d(5px, 2px, 0);
  }
  50% {
    -webkit-transform: translate3d(-5px, -2px, 0);
            transform: translate3d(-5px, -2px, 0);
  }
  100% {
    -webkit-transform: translate3d(5px, 2px, 0);
            transform: translate3d(5px, 2px, 0);
  }
}
@keyframes smoke-left {
  0% {
    -webkit-transform: translate3d(5px, 2px, 0);
            transform: translate3d(5px, 2px, 0);
  }
  50% {
    -webkit-transform: translate3d(-5px, -2px, 0);
            transform: translate3d(-5px, -2px, 0);
  }
  100% {
    -webkit-transform: translate3d(5px, 2px, 0);
            transform: translate3d(5px, 2px, 0);
  }
}
@-webkit-keyframes smoke-right {
  0% {
    -webkit-transform: translate3d(-5px, -2px, 0);
            transform: translate3d(-5px, -2px, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 2px, 0);
            transform: translate3d(5px, 2px, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, -2px, 0);
            transform: translate3d(-5px, -2px, 0);
  }
}
@keyframes smoke-right {
  0% {
    -webkit-transform: translate3d(-5px, -2px, 0);
            transform: translate3d(-5px, -2px, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 2px, 0);
            transform: translate3d(5px, 2px, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, -2px, 0);
            transform: translate3d(-5px, -2px, 0);
  }
}
@-webkit-keyframes donat-down {
  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 donat-down {
  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 candy-right {
  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 candy-right {
  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 donat-down-mobil {
  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 donat-down-mobil {
  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 donats-left {
  0% {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-7px, 0, 0);
            transform: translate3d(-7px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
}
@keyframes donats-left {
  0% {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-7px, 0, 0);
            transform: translate3d(-7px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
}
@-webkit-keyframes candy-left {
  0% {
    -webkit-transform: translate3d(-7px, 0, 0);
            transform: translate3d(-7px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-7px, 0, 0);
            transform: translate3d(-7px, 0, 0);
  }
}
@keyframes candy-left {
  0% {
    -webkit-transform: translate3d(-7px, 0, 0);
            transform: translate3d(-7px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-7px, 0, 0);
            transform: translate3d(-7px, 0, 0);
  }
}
@-webkit-keyframes donats-down {
  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 donats-down {
  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 up {
  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 up {
  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 down {
  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 down {
  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);
  }
}
.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}
@media (max-width: 860px) {
  .modal {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.modal__wrapper {
  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;
  margin-top: -8vh;
  -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  -webkit-transition: all 0.8s ease-in-out 1s;
  transition: all 0.8s ease-in-out 1s;
}
@media (max-width: 860px) {
  .modal__wrapper {
    margin-top: 10vh;
  }
}
.modal__logo {
  margin-bottom: 100px;
}
@media (max-width: 860px) {
  .modal__logo {
    margin-bottom: 90px;
  }
}
.modal__logo img {
  max-height: 90px;
}
@media (max-width: 1440px) {
  .modal__logo img {
    max-height: 80px;
  }
}
@media (max-width: 860px) {
  .modal__logo img {
    max-height: 52px;
  }
}
.modal__desc {
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
  font-family: "Oswald";
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 129%; /* 130.218px */
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .modal__desc {
    font-size: 80px;
  }
}
@media (max-width: 1320px) {
  .modal__desc {
    font-size: 78px;
  }
}
@media (max-width: 1180px) {
  .modal__desc {
    font-size: 76px;
  }
}
@media (max-width: 860px) {
  .modal__desc {
    font-size: 60px;
  }
}
@media (max-width: 560px) {
  .modal__desc {
    font-size: 46px;
  }
}
@media (max-width: 340px) {
  .modal__desc {
    font-size: 42px;
  }
}
.modal__prize img {
  max-height: 22vh;
}
@media (max-width: 1440px) {
  .modal__prize img {
    max-height: 18vh;
  }
}
@media (max-width: 1280px) {
  .modal__prize img {
    max-height: 16vh;
  }
}
@media (max-width: 860px) {
  .modal__prize img {
    max-height: 14vh;
  }
}
@media (max-width: 560px) {
  .modal__prize img {
    max-height: 12vh;
  }
}
@media (max-width: 400px) {
  .modal__prize img {
    max-height: 9vh;
  }
}
.modal__btn {
  text-decoration: none;
  cursor: pointer;
}

.show-modal .modal__wrapper {
  -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);
  }
}
#get-prizes {
  color: #ffffff;
  text-align: center;
  font-family: "Montserrat";
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 186px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc702), to(#ff8b20));
  background: linear-gradient(180deg, #34BAFD 0%, #1182FE 100%);
  -webkit-box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -8.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
          box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -8.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
  padding: 26px 64px;
  margin-top: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}
@media (max-width: 1440px) {
  #get-prizes {
    font-size: 24px;
    padding: 20px 44px;
  }
}
@media (max-width: 1140px) {
  #get-prizes {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  #get-prizes {
    padding: 16px 36px;
  }
}
@media (max-width: 860px) {
  #get-prizes {
    margin-top: 34px;
  }
}


@media (max-width: 450px) {
  main.main {
    padding-top: 40px;
}

.content__logo {
  margin-bottom: 7px;
}

.content__logo img {
  max-height: 42px;
}

.content__title {
  font-size: 56px;
}

.content__subtitle {
  font-size: 26px;
}

.slot_btn {
  font-size: 16px;
  padding: 14px 23px;
  box-shadow: 0px 22.276px 57.919px 0px rgba(0, 0, 0, 0.1), 0px -4.911px 0px 0px rgba(0, 0, 0, 0.25) inset, 0px 4.455px 0px 0px rgba(255, 255, 255, 0.4) inset;
}

.main-wrapper {
  font-size: 0.97vw;
}


.decor__sweet {
  left: auto;
  right: -14%;
  bottom: -6vh;
}
}

.rightBg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 1%, rgba(50, 183, 253, 0) 3.75%, #1385FE 43.07%);
  width:350px;
  transition: all linear 1s;
}

.rightBg__pattern {
  background: url("/public/bgPatternVert.png") no-repeat;
  background-size: cover;
  background-position: -38px 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 560px;
}

.desktopText {
  display: inline-block;
  color: #ffffff;
}

.mobText {
  display: none;
  color: #ffffff;
}

.mobBgSmoke {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("/public/mobSmokeRight.png") no-repeat;
  background-size: contain;
  background-position: 100% -160px;
  display: none;
}

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

  .desktopText {
    display: none;
  }
  
  .mobText {
    display: inline-block;
  }

  .mobBgSmoke {
    display: block;
  }
}