:root {
  --background: #5E93A4;
  --footer: #000;
  --text: #fff;
  --text-btn: #006944;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@font-face {
  font-style: normal;
  font-family: "Poppins";
  font-weight: 400;
  src: url(../assets/fonts/Poppins-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Ubuntu";
  font-weight: 700;
  src: url(../assets/fonts/Ubuntu-Bold.ttf);
  font-display: swap;
}
body {
  background-color: var(--background);
  background-image: url(../assets/img/bg-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
@media (min-width: 640px) {
  body {
    background-image: url(../assets/img/bg.png);
  }
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.wheel-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.wheel-container .logo {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.wheel-container .logo__block {
  position: absolute;
  background-color: var(--footer);
  padding: 20px 25px;
  width: 215px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media (min-width: 1500px) {
  .wheel-container .logo__block {
    width: 398px;
    padding: 36px 45px;
  }
}
.wheel-container .wheel-block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wheel-container .wheel-block .wheel-block-content {
  position: relative;
  z-index: 9;
}
@media (min-width: 960px) {
  .wheel-container .wheel-block .wheel-block-content {
    margin-top: 70px;
  }
}
@media (min-width: 1280px) {
  .wheel-container .wheel-block .wheel-block-content {
    margin-top: 100px;
  }
}
@media (min-width: 1500px) {
  .wheel-container .wheel-block .wheel-block-content {
    margin-top: 150px;
  }
}
.wheel-container .wheel-block .wheel-block-content .wheel-circle {
  position: absolute;
  background: url(../assets/img/circle-mobile.svg) 50% 50%;
  background-repeat: no-repeat;
  z-index: 2;
  width: 392px;
  height: 392px;
  top: -23px;
  left: -23px;
}
@media (min-width: 960px) {
  .wheel-container .wheel-block .wheel-block-content .wheel-circle {
    background: url(../assets/img/circle.svg) 50% 50%;
    width: 989px;
    height: 989px;
    top: -30%;
    left: -30%;
  }
}
.wheel-container .wheel-block .wheel-block-content .wheel-arrow {
  width: 99px;
  height: 47px;
  position: absolute;
  z-index: 4;
  background: url(../assets/img/wheel-arrow.svg);
  background-size: 100% 100%;
  transform: translateX(-50%);
  left: 50%;
  top: -34px;
}
@media (min-width: 960px) {
  .wheel-container .wheel-block .wheel-block-content .wheel-arrow {
    width: 177px;
    height: 84px;
    top: -58px;
  }
}
.wheel-container .wheel-block .wheel-block-content .wheel-btn {
  width: 68px;
  height: 68px;
  position: absolute;
  border-radius: 50%;
  z-index: 4;
  left: 50%;
  top: 50%;
  border: none;
  transform: translate(-50%, -50%);
  background: url(../assets/img/wheel-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
@media (min-width: 960px) {
  .wheel-container .wheel-block .wheel-block-content .wheel-btn {
    width: 121px;
    height: 120px;
  }
}
.wheel-container .wheel-block .wheel-block-content .wheel-img {
  position: relative;
  z-index: 3;
  width: 346px;
  height: 346px;
}
@media (min-width: 960px) {
  .wheel-container .wheel-block .wheel-block-content .wheel-img {
    width: 617px;
    height: 616px;
  }
}
.wheel-container .wheel-img-animated {
  animation: 2s spinner ease-in-out infinite;
}
.wheel-container .wheel-img-animated-1 {
  animation: 4s spinToOne ease-in-out 1;
}
@keyframes spinToOne {
  0% {
    transform: rotate(-80deg);
  }
  70% {
    transform: rotate(1063deg);
  }
  80% {
    transform: rotate(1054deg);
  }
  100% {
    transform: rotate(1060deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
.wheel-container .img-back {
  position: absolute;
}
.wheel-container .tiger-one {
  top: 13.5%;
  left: -15%;
  width: 273px;
  height: 343px;
  z-index: 2;
}
@media (min-width: 640px) {
  .wheel-container .tiger-one {
    left: 4%;
  }
}
@media (min-width: 1280px) {
  .wheel-container .tiger-one {
    width: 621px;
    height: 781px;
    top: 4%;
  }
}
.wheel-container .tiger-two {
  width: 259px;
  height: 382px;
  bottom: 6%;
  right: 5%;
  transform: rotate(137deg);
  z-index: 2;
}
@media (min-width: 1280px) {
  .wheel-container .tiger-two {
    width: 501px;
    height: 738px;
    transform: rotate(0);
    bottom: 2%;
    right: 4.5%;
  }
}
.wheel-container .coins-top {
  width: 100%;
  top: 40px;
  right: 0;
}
@media (min-width: 1280px) {
  .wheel-container .coins-top {
    display: none;
  }
}
.wheel-container .coins-bottom {
  width: 100%;
  bottom: -60px;
  left: 0;
}
@media (min-width: 1280px) {
  .wheel-container .coins-bottom {
    display: none;
  }
}
.wheel-container .coins {
  display: none;
}
@media (min-width: 1280px) {
  .wheel-container .coins {
    display: block;
    width: 100%;
    top: 0;
  }
}

.footer {
  background: var(--footer);
  padding: 21px 17px;
}
@media (min-width: 1280px) {
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer__top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
@media (min-width: 1280px) {
  .footer__top {
    margin-bottom: 0;
    margin-right: 147px;
  }
}
.footer__top img {
  margin: 4px 7px;
}
.footer__top img:first-child {
  margin: 4px 7px 4px 0;
}
.footer__top img:last-child {
  margin: 4px 0 4px 7px;
}
.footer__top .mastercard {
  margin: 4px 0;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .footer__bottom {
    margin-bottom: 0;
    flex-direction: row;
  }
}
.footer__bottom span {
  display: block;
  color: var(--text);
  font-family: "Poppins";
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .footer__bottom span {
    margin-bottom: 0;
    margin-right: 21px;
  }
}
.footer__bottom span br {
  display: none;
}
@media (min-width: 1280px) {
  .footer__bottom span br {
    display: block;
  }
}
.footer__bottom-payments {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__bottom-payments img {
  margin: 0 8px;
}
.footer__bottom-payments img:first-child {
  margin: 0 8px 0 0;
}
.footer__bottom-payments img:last-child {
  margin: 0 0 0 8px;
}

.wheel-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.8);
}
.wheel-modal .wheel-modal-content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.wheel-modal .wheel-modal-content .popup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../assets/img/modal-back.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 370px;
  height: 214px;
}
@media (min-width: 960px) {
  .wheel-modal .wheel-modal-content .popup {
    width: 653px;
    height: 377px;
    background-image: url(../assets/img/modal-back.svg);
  }
}
.wheel-modal .wheel-modal-content .popup__win {
  text-align: center;
}
.wheel-modal .wheel-modal-content .popup__win span {
  display: block;
  text-transform: uppercase;
  font-family: "Ubuntu";
  font-weight: 700;
  color: var(--footer);
  font-size: 33px;
  line-height: 36px;
  margin-bottom: 21px;
}
@media (min-width: 960px) {
  .wheel-modal .wheel-modal-content .popup__win span {
    font-size: 60px;
    margin-bottom: 37px;
  }
}
.wheel-modal .wheel-modal-content .popup__win-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/img/btn-back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--text-btn);
  width: 148px;
  height: 49px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Ubuntu";
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  transition: 0.3s;
}
@media (min-width: 960px) {
  .wheel-modal .wheel-modal-content .popup__win-btn {
    width: 260px;
    height: 86px;
    font-size: 28px;
    line-height: 31px;
  }
}
.wheel-modal .wheel-modal-content .popup__win-btn:hover {
  transform: scale(1.1);
}/*# sourceMappingURL=styles.css.map */