@font-face {
  font-family: "Nunito";
  src: local("Muller Medium"), local("Muller-Medium"),
    url("../fonts/Nunito/Nunito-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: local("Impact Regular"), local("Impact-Regular"),
    url("../fonts/Nunito/Nunito-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  overflow-x: hidden;
  font-size: 0.5208333333vw;
}
@media (max-width: 1024px) {
  html {
    font-size: 0.7161458333vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 0.72vw;
  }
}
@media (max-width: 700px) {
  html {
    font-size: 1vw;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 1.1666666667vw;
  }
}
body {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  font-size: 3.4rem;
  min-width: 320px;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: url("../img/webp/bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  z-index: 1;
}
body:before {
  content: "";
  position: absolute;
  background-image: url("../img/webp/bg-candy.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20rem;
  height: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
button {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background: 0 0;
  cursor: pointer;
  outline: none;
  border: none;
}
.container {
  width: 142rem;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.logo {
  width: 20rem;
  height: 100%;
  margin: 5rem auto 0;
}
.p_prldr {
  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;
  min-height: 100vh;
  background-color: rgba(91, 84, 211, 0.995);
}
#p_prldr {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
}
.preloader {
  position: absolute;
  width: 250px;
  height: 250px;
  -webkit-filter: url(#gooey);
  filter: url(#gooey);
  -webkit-animation: animate 16s linear infinite;
  animation: animate 16s linear infinite;
}
.preloader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: rotate(calc(45deg * var(--i)));
  -ms-transform: rotate(calc(45deg * var(--i)));
  transform: rotate(calc(45deg * var(--i)));
}
.preloader span:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: -o-linear-gradient(45deg, #c7eeff, #03a9f4);
  background: linear-gradient(45deg, #c7eeff, #03a9f4);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px #00bcd4;
  box-shadow: 0 0 30px #00bcd4;
}
.rotate {
  -webkit-animation: animate 4s ease-in-out infinite;
  animation: animate 4s ease-in-out infinite;
  -webkit-animation-delay: calc(-0.2s * var(--j));
  animation-delay: calc(-0.2s * var(--j));
}
@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes animate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.game {
  position: relative;
}
.game .active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.game-cards.active {
  -webkit-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.game-cards.active .game-cards__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.game-wheel {
  margin-top: 7rem;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out,
    -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out,
    -webkit-transform 0.6s ease-in-out;
  position: relative;
}
.game-wheel:before {
  content: "";
  position: absolute;
  background-image: url("../img/webp/elements.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 55rem;
  width: 60rem;
  left: 50%;
  top: -2.6rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.game-wheel__inner {
  position: relative;
  height: 50rem;
  width: 50rem;
  margin: 0 auto;
}
.game-wheel__arrow {
  position: absolute;
  height: 8rem;
  width: 7rem;
  left: 50%;
  top: -3.7rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
.game-wheel__border,
.game-wheel__prizes {
  display: block;
}
.game-wheel__prizes {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  z-index: -1;
}
.game-wheel__prizes--active {
  -webkit-transform: translate(-50%, -50%) rotate(3690deg);
  -ms-transform: translate(-50%, -50%) rotate(3690deg);
  transform: translate(-50%, -50%) rotate(3690deg);
  -webkit-animation: spin-wheel 3.6s 1 ease-in-out;
  animation: spin-wheel 3.6s 1 ease-in-out;
}
.game-wheel__border {
  position: relative;
}
.game-wheel__border:before {
  content: "";
  position: absolute;
  background-image: url("../img/circle-animation-min.gif");
  background-size: 100% 100%;
  width: 134%;
  height: 130%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  bottom: -7rem;
}
.game-wheel__prizes-item {
  display: block;
  position: absolute;
  text-align: center;
  background: -o-linear-gradient(
    top,
    #45007b,
    #45007b,
    #db00ff,
    #45007b,
    #db00ff,
    #45007b,
    #45007b
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#45007b),
    color-stop(#45007b),
    color-stop(#db00ff),
    color-stop(#45007b),
    color-stop(#db00ff),
    color-stop(#45007b),
    to(#45007b)
  );
  background: linear-gradient(
    to bottom,
    #45007b,
    #45007b,
    #db00ff,
    #45007b,
    #db00ff,
    #45007b,
    #45007b
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.5rem transparent;
  color: #fff;
  font-size: 2.4rem;
  line-height: 3rem;
  z-index: 10;
}
.game-wheel__prizes-item:nth-child(1) {
  top: 9rem;
  left: 6rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.game-wheel__prizes-item:nth-child(2) {
  top: 4rem;
  left: 20.5rem;
}
.game-wheel__prizes-item:nth-child(3) {
  top: 8rem;
  right: 5.2rem;
  -webkit-transform: rotate(46deg);
  -ms-transform: rotate(46deg);
  transform: rotate(46deg);
}
.game-wheel__prizes-item:nth-child(4) {
  top: 22rem;
  right: 0.3rem;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.game-wheel__prizes-item:nth-child(5) {
  top: 22.5rem;
  left: 0.3rem;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.game-wheel__prizes-item:nth-child(6) {
  bottom: 9rem;
  right: 5.2rem;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.game-wheel__prizes-item:nth-child(7) {
  bottom: 3rem;
  left: 20.5rem;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.game-wheel__prizes-item:nth-child(8) {
  bottom: 8.5rem;
  left: 5rem;
  -webkit-transform: rotate(-132deg);
  -ms-transform: rotate(-132deg);
  transform: rotate(-132deg);
}
.game-wheel__btn {
  position: absolute;
  width: 17.5rem;
  height: 17.5rem;
  background: #33005b;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset 0px 2px 4px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset 0px 2px 4px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.game-wheel__btn:before {
  content: "";
  position: absolute;
  background-image: url("../img/webp/border-circle.webp");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}
.game-wheel__btn-text {
  font-weight: 500;
  font-size: 3.3rem;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
.game-wheel__btn-text:before {
  content: "";
  position: absolute;
  background: #fe0099;
  -webkit-filter: blur(7px);
  filter: blur(7px);
  width: 100%;
  height: 45%;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.game-cards {
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  margin-top: 4rem;
  -webkit-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease-in-out,
    -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.3s ease-in-out,
    -webkit-transform 0.6s ease-in-out;
  z-index: 20;
}
.game-cards__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13rem;
}
.game-cards__title {
  text-align: center;
  margin-bottom: 5rem;
}
.game-cards .frame--bg {
  width: 48.9rem;
  height: 9.5rem;
}
.game-cards__item {
  width: 35rem;
  height: 20rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.game-cards__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/webp/frame-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.game-cards__item-bg {
  background: -o-linear-gradient(top, #431c99 0%, #8b4acd 47.4%, #431c99 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#431c99),
    color-stop(47.4%, #8b4acd),
    to(#431c99)
  );
  background: linear-gradient(180deg, #431c99 0%, #8b4acd 47.4%, #431c99 100%);
  border-radius: 2rem;
  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;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.game-cards__item-logo {
  width: 20rem;
}
.game-cards__item-prize {
  position: absolute;
  background-image: url("../img/money.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  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;
  border-radius: 2rem;
  z-index: -1;
}
.game-cards__item-kf {
  font-size: 11rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  background: -o-linear-gradient(
    top,
    #45007b,
    #45007b,
    #db00ff,
    #45007b,
    #db00ff,
    #45007b,
    #45007b
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#45007b),
    color-stop(#45007b),
    color-stop(#db00ff),
    color-stop(#45007b),
    color-stop(#db00ff),
    color-stop(#45007b),
    to(#45007b)
  );
  background: linear-gradient(
    to bottom,
    #45007b,
    #45007b,
    #db00ff,
    #45007b,
    #db00ff,
    #45007b,
    #45007b
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.2rem transparent;
  color: #fff;
  width: 100%;
  text-align: center;
  text-transform: lowercase;
}
.game-cards__item-empty {
  position: absolute;
  background: -o-linear-gradient(
    top,
    rgba(224, 158, 255, 0.7) 0%,
    rgba(250, 239, 255, 0.7) 50%,
    rgba(224, 158, 255, 0.7) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(224, 158, 255, 0.7)),
    color-stop(50%, rgba(250, 239, 255, 0.7)),
    to(rgba(224, 158, 255, 0.7))
  );
  background: linear-gradient(
    180deg,
    rgba(224, 158, 255, 0.7) 0%,
    rgba(250, 239, 255, 0.7) 50%,
    rgba(224, 158, 255, 0.7) 100%
  );
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  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;
  border-radius: 2rem;
  z-index: -2;
}
.game-cards__item-empty span {
  font-size: 5rem;
  line-height: 6rem;
}
.frame--bg {
  width: 36.9rem;
  height: 8rem;
  background: -o-linear-gradient(top, #431c99 0%, #8b4acd 47.4%, #431c99 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#431c99),
    color-stop(47.4%, #8b4acd),
    to(#431c99)
  );
  background: linear-gradient(180deg, #431c99 0%, #8b4acd 47.4%, #431c99 100%);
  border-radius: 2rem;
  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;
  margin: 6rem auto 0;
  position: relative;
  z-index: -1;
}
.frame--bg:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/webp/frame-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.frame--bg:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/button-animation-min.gif");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 113%;
  height: 134%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.frame--bg span {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
.frame--bg span:before {
  content: "";
  position: absolute;
  background: #fe0099;
  -webkit-filter: blur(7px);
  filter: blur(7px);
  width: 100%;
  height: 45%;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.popup {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.65);
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: -1;
  visibility: hidden;
}
.popup--bg {
  height: 33rem;
  width: 50rem;
  background: -o-linear-gradient(top, #431c99 0%, #8b4acd 47.4%, #431c99 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#431c99),
    color-stop(47.4%, #8b4acd),
    to(#431c99)
  );
  background: linear-gradient(180deg, #431c99 0%, #8b4acd 47.4%, #431c99 100%);
  border-radius: 3rem;
  position: relative;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6rem 0;
  left: 50%;
  top: 30rem;
  -webkit-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  z-index: 2;
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  -o-transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  text-align: center;
}
.popup--bg:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 101%;
  background-image: url("../img/webp/frame-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
.popup--bg:after {
  content: "";
  position: absolute;
  background-image: url("../img/webp/popup-element.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10rem;
  height: 10rem;
  right: 0.5rem;
  bottom: 8rem;
  z-index: -1;
}
.popup-title {
  background: -o-linear-gradient(
    top,
    #cd0237 0%,
    #ff006b 51.56%,
    #cd0237 100%,
    #cd0237 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#cd0237),
    color-stop(51.56%, #ff006b),
    color-stop(100%, #cd0237),
    to(#cd0237)
  );
  background: linear-gradient(
    180deg,
    #cd0237 0%,
    #ff006b 51.56%,
    #cd0237 100%,
    #cd0237 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.popup#popup-2 .popup--bg {
  height: 42rem;
  background: -o-linear-gradient(top, #431c99 0%, #fff 47.4%, #431c99 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#431c99),
    color-stop(47.4%, #fff),
    to(#431c99)
  );
  background: linear-gradient(180deg, #431c99 0%, #fff 47.4%, #431c99 100%);
}
.popup.active {
  z-index: 20;
  visibility: visible;
}
.popup.active .popup--bg {
  -webkit-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}
.btn {
  font-family: inherit;
  font-weight: inherit;
  font-size: 3.5rem;
  padding: 1rem 6rem;
  text-transform: uppercase;
  margin-top: auto;
  background: -o-linear-gradient(top, #fb0c6e 0%, #ee6593 46.35%, #fb0c6e 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fb0c6e),
    color-stop(46.35%, #ee6593),
    to(#fb0c6e)
  );
  background: linear-gradient(180deg, #fb0c6e 0%, #ee6593 46.35%, #fb0c6e 100%);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.footer {
  min-width: 100vw;
  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;
  height: 4rem;
  background: #000;
  margin-top: auto;
  position: relative;
  z-index: 10;
}
.footer:before {
  content: "";
  position: absolute;
  background-image: url("../img/webp/element-bg-1.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40rem;
  height: 40rem;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer:after {
  content: "";
  position: absolute;
  background-image: url("../img/pers-animation-min.gif");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50rem;
  height: 50rem;
  bottom: -3.2rem;
  left: 85%;
  z-index: -1;
}
@-webkit-keyframes spin-wheel {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  85% {
    -webkit-transform: translate(-50%, -50%) rotate(3710deg);
    transform: translate(-50%, -50%) rotate(3710deg);
  }
  95% {
    -webkit-transform: translate(-50%, -50%) rotate(3684deg);
    transform: translate(-50%, -50%) rotate(3684deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(3690deg);
    transform: translate(-50%, -50%) rotate(3690deg) 3690deg;
  }
}
@keyframes spin-wheel {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  85% {
    -webkit-transform: translate(-50%, -50%) rotate(3710deg);
    transform: translate(-50%, -50%) rotate(3710deg);
  }
  95% {
    -webkit-transform: translate(-50%, -50%) rotate(3684deg);
    transform: translate(-50%, -50%) rotate(3684deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(3690deg);
    transform: translate(-50%, -50%) rotate(3690deg) 3690deg;
  }
}
@media (max-width: 1300px) {
  .game-wheel__border:before {
    bottom: -10rem;
  }
  .game-wheel__inner {
    height: 70rem;
    width: 70rem;
  }
  .logo {
    width: 27rem;
    margin: 9rem auto 0;
  }
  .game-wheel__btn {
    width: 20.5rem;
    height: 20.5rem;
  }
  .frame--bg {
    width: 39.9rem;
    height: 9.5rem;
  }
  .game-wheel__prizes-item {
    font-size: 3.5rem;
  }
  .game-wheel__prizes-item:nth-child(1) {
    top: 12rem;
    left: 8rem;
  }
  .game-wheel__prizes-item:nth-child(2) {
    top: 4rem;
    left: 28.5rem;
  }
  .game-wheel__prizes-item:nth-child(3) {
    top: 12rem;
    right: 6.2rem;
  }
  .game-wheel__prizes-item:nth-child(4) {
    top: 32rem;
  }
  .game-wheel__prizes-item:nth-child(5) {
    top: 32.5rem;
    left: -0.7rem;
  }
  .game-wheel__prizes-item:nth-child(6) {
    bottom: 13.5rem;
    right: 7.3rem;
  }
  .game-wheel__prizes-item:nth-child(7) {
    bottom: 4rem;
    left: 28.5rem;
  }
  .game-wheel__prizes-item:nth-child(8) {
    bottom: 12rem;
    left: 6.2rem;
  }
  .footer:after {
    left: auto;
    right: -30rem;
  }
  .game-wheel:before {
    height: 80rem;
    width: 85rem;
  }
  .popup--bg {
    height: 40rem;
    width: 65rem;
    top: 50rem;
  }
  .popup#popup-2 .popup--bg {
    height: 50rem;
  }
  .popup--bg span {
    font-size: 5rem;
    line-height: 5rem;
  }
  .popup-title {
    font-size: 5rem;
  }
  .btn {
    font-size: 4.5rem;
    padding: 1.5rem 7rem;
  }
  .popup--bg:after {
    width: 15rem;
    height: 15rem;
    bottom: 9rem;
    right: 0;
  }
}
@media (max-width: 700px) {
  .game-cards {
    width: 100%;
  }
  .game-cards__inner {
    -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;
    gap: 2rem;
    margin-bottom: 0;
  }
  .game-cards__title {
    margin-bottom: 3rem;
  }
  .game-wheel .frame--bg {
    width: 48.9rem;
  }
}
@media (max-width: 400px) {
  body {
    background-size: cover;
  }
  .footer {
    z-index: 30;
    height: 6rem;
  }
  .footer:before {
    width: 45rem;
    height: 45rem;
  }
  .footer:after {
    width: 55rem;
    height: 55rem;
  }
  .game-wheel:after {
    content: "";
    position: absolute;
    background-image: url("../img/webp/element.webp");
    background-repeat: no-repeat;
    background-size: contain;
    height: 35rem;
    width: 35rem;
    top: 45rem;
    right: -15rem;
    z-index: -2;
  }
  .game-cards__item {
    width: 43rem;
    height: 23rem;
  }
  .game-cards:before {
    content: "";
    position: absolute;
    background-image: url(../img/webp/elements.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60rem;
    width: 65rem;
    left: 50%;
    top: -1.6rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
  }
  .game-cards:after {
    content: "";
    position: absolute;
    background-image: url(../img/webp/element.webp);
    background-repeat: no-repeat;
    background-size: contain;
    height: 38rem;
    width: 38rem;
    top: 45rem;
    right: -12rem;
    z-index: -2;
  }
}
@media (min-width: 380px) and (max-width: 420px) and (max-height: 896px) {
  .footer:before {
    width: 55rem;
    height: 55rem;
  }
  .footer:after {
    width: 60rem;
    height: 60rem;
    bottom: -4.2rem;
  }
  .game-wheel .frame--bg {
    margin: 10rem auto 0;
  }
}
.footer-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000 url("../img/partners.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100vw;
  z-index: 999;
}
