@charset "utf-8";

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.eot');
  src: local('Roboto Bold'), local('Roboto-Bold'),
    url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.eot');
  src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

body {
  display: block;
  position: relative;
  font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 25px;
	text-align: center;
  word-break: break-word;
  color: rgba(255,255,255,1.00);
  background: url("../images/main-bg.png") no-repeat top center, #000000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

/* Header */
.header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2vh 3vh;
  z-index: 9999;
}
.header__logo {
  display: inline-block;
  position: relative;
  width: auto;
  margin: 0px auto;
}
.header__logo > img {
  width: auto;
  max-height: 10vh;
}

/* Main */
.wheel {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 13vh 6vw 10vh 6vw;
}
.wheel__content {
  display: inline-block;
  position: relative;
  width: auto;
}
.wheel__make-spin {
  height: auto;
  max-height: 12vh;
  margin: 0 auto;
}
.wheel__arrow-fg {
  position: absolute;
  top: -1%;
  left: -webkit-calc(50% - 34px);
  left: -moz-calc(50% - 34px);
  left: calc(50% - 34px);
  height: auto;
  max-height: 80px;
  z-index: 5;
}
.wheel__wheel {
  padding: 30px;
  margin: 0px auto;
  -webkit-animation: wheel-idle 90s linear infinite forwards;
  -moz-animation: wheel-idle 90s linear infinite forwards;
  -o-animation: wheel-idle 90s linear infinite forwards;
  animation: wheel-idle 90s linear infinite forwards;
}
.wheel__wheel.first-spin {
  -webkit-animation: wheel-spin 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
  -moz-animation: wheel-spin 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
  -o-animation: wheel-spin 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
  animation: wheel-spin 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
}
.wheel__wheel.last-spin {
  -webkit-animation: wheel-spin2 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
  -moz-animation: wheel-spin2 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
  -o-animation: wheel-spin2 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
  animation: wheel-spin2 5s cubic-bezier(0.13, 0.55, 0.24, 1) 1 forwards;
}
.wheel__wrap {
  position: relative;
  background: url('../images/wheel-bg.png') no-repeat center center;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
  max-width: 601px;
  margin: 0 auto;
}
.wheel__button {
  display: block;
  position: absolute;
  top: 38%;
  bottom: 38%;
  left: 38%;
  right: 38%;
  width: 24%;
  height: 24%;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  color: rgba(255,255,255,1.00);
  text-shadow: 0px 0px 15px rgba(0,0,0,0.50);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: url('../images/spin-btn.png') no-repeat center center;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100%;
  background-size: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-box-shadow: 0px 10px 20px rgba(0,0,0,0.50), 0px 0px 25px 0px rgba(250,0,50,1.00);
  -moz-box-shadow: 0px 10px 20px rgba(0,0,0,0.50), 0px 0px 25px 0px rgba(250,0,50,1.00);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.50), 0px 0px 25px 0px rgba(250,0,50,1.00);
  padding: 0px;
  margin: 0px;
  -webkit-animation: button-glow 2s ease-in-out infinite forwards;
  -moz-animation: button-glow 2s ease-in-out infinite forwards;
  -o-animation: button-glow 2s ease-in-out infinite forwards;
  animation: button-glow 2s ease-in-out infinite forwards;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.wheel__button:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0px 10px 30px rgba(0,0,0,1.00), 0px 0px 25px 0px rgba(250,0,50,1.00);
  -moz-box-shadow: 0px 10px 30px rgba(0,0,0,1.00), 0px 0px 25px 0px rgba(250,0,50,1.00);
  box-shadow: 0px 10px 30px rgba(0,0,0,1.00), 0px 0px 25px 0px rgba(250,0,50,1.00);
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 25px;
	text-align: center;
  word-break: break-word;
  text-transform: uppercase;
  color: rgba(255,255,255,1.00);
  background-color: rgba(0,0,0,0.80);
  overflow: hidden;
  -webkit-animation: popup-bg-birth 0.75s ease-in-out;
  -moz-animation: popup-bg-birth 0.75s ease-in-out;
  -o-animation: popup-bg-birth 0.75s ease-in-out;
  animation: popup-bg-birth 0.75s ease-in-out;
  z-index: 99999;
}
.popup.active {
  display: block;
}
.popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 580px;
  min-height: 400px;
  height: auto;
  vertical-align: middle;
  background: url('../images/modal-bg.png') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  overflow: visible;
  padding: 75px 75px 85px 75px;
  margin: auto;
  -webkit-animation: popup-birth 0.5s ease-in-out;
  -moz-animation: popup-birth 0.5s ease-in-out;
  -o-animation: popup-birth 0.5s ease-in-out;
  animation: popup-birth 0.5s ease-in-out;
  z-index: 1;
}
.popup.first-spin > .popup__content {
  top: 25vh;
}
.popup.last-spin > .popup__content {
  top: 23vh;
}
.popup__title {
  display: block;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFB903), to(#FF9E00));
  background: -webkit-linear-gradient(top, #FFB903 0%, #FF9E00 100%);
  background: -moz-linear-gradient(top, #FFB903 0%, #FF9E00 100%);
  background: -o-linear-gradient(top, #FFB903 0%, #FF9E00 100%);
  background: linear-gradient(180deg, #FFB903 0%, #FF9E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF9E00;
}
.popup__text {
  display: block;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  padding: 8px 0px;
  color: #DE80F3;
}
.popup__text > .you-won {
  color: #ffffff;
  font-size: 23px;
}
.popup__title > .you-won {
  color: #ffffff;
  font-size: 23px;
}
.popup__text > .up-to {
  color: #ffffff;
  font-size: 23px;
}
.popup__button {
  display: inline-block;
  position: relative;
  width: auto;
  height: 100%;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
  color: #322E2F;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  background: -webkit-gradient(linear, left top, left bottom, from(#BAFE50), to(#0DBA3B));
  background: -webkit-linear-gradient(top, #BAFE50 0%, #0DBA3B 100%);
  background: -moz-linear-gradient(top, #BAFE50 0%, #0DBA3B 100%);
  background: -o-linear-gradient(top, #BAFE50 0%, #0DBA3B 100%);
  background: linear-gradient(180deg, #BAFE50 0%, #0DBA3B 100%);
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding: 2px 25px 0px 25px;
  margin: 0px auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  min-width: 200px;
}

/* Footer */
.footer {
  padding: 0;
}
.footer__partners {
  display: block;
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 140px;
  padding-right: 140px;
}
.footer__partners > li {
  display: inline-block;
  position: relative;
  width: auto;
  height: 25px;
  margin: 0px 9px 17px 9px;
}
.footer__copyright {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  padding-bottom: 22px;
  padding-left: 140px;
  padding-right: 140px;
}
.copyright__img {
  max-height: 49px;
  min-width: 49px;
  margin-right: 12px;
}
.copyright__text {
  font-weight: normal;
  font-size: 12px;
  line-height: 160%;
  color: #94897A;
  padding: 0;
  text-align: left;
}
.copyright__logo {
  display: inline-block;
  position: relative;
  max-height: 50px;
  margin: 20px 15px 0px 15px;
  padding: 0px;
}
