@import url(../../../css.css);
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-size-adjust: none; }

html {
  background-color: #0C0B10; }

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

.zoomInDown {
  animation-name: zoomInDown; }

.zoomInLeft {
  animation-name: zoomInLeft; }

.slideInLeft {
  animation-name: slideInLeft; }

.tada {
  animation-name: tada; }

@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); } }

.page {
  position: relative;
  background-image: url(public/img/page-bg.jpg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; }
  .page__body {
    width: 100%;
    position: relative;
    z-index: 2; }
  .page__bg {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-repeat: no-repeat;
    transition: .5s ease; }
    .page__bg--back {
      top: 0;
      left: 35%;
      background-size: calc(1853px / 2) calc(1861px / 2);
      background-image: url(public/img/parallax-bg-back.png);
      z-index: 1; }
    .page__bg--middle {
      top: -40px;
      left: 45%;
      background-size: calc(1986px / 2) calc(1851px / 2);
      background-image: url(public/img/parallax-bg-middle.png);
      z-index: 2; }
    .page__bg--front {
      top: -13%;
      left: 80%;
      background-size: calc(698px / 2) calc(487px / 2);
      background-image: url(public/img/parallax-bg-front.png);
      z-index: 4; }
    .page__bg--offset {
      animation-name: helloBgInLeft;
      animation-duration: 1s;
      transform: translate(-20%, 0) !important; }
    .page__bg--offset.page__bg--middle {
      left: 40%; }
  .page__footer {
    display: none; }
  .page--centered {
    transform: translateX(-400px); }
  @media (max-width: 980px) {
    .page__bg--back {
      left: 25%; } }
  @media (max-width: 760px) {
    .page {
      display: block; }
      .page__footer {
        display: block;
        position: relative;
        z-index: 10; } }
  @media (max-width: 640px) {
    .page {
      min-height: auto; } }

@keyframes helloBgInLeft {
  from {
    transform: translate(-100%, 0);
    opacity: 0; }
  to {
    transform: translate(-20%, 0);
    opacity: 1; } }

.logo {
  margin-bottom: 50px; }
  @media (max-width: 1200px) {
    .logo {
      margin-bottom: 40px; } }
  @media (max-width: 760px) {
    .logo {
      margin-bottom: 30px; } }
  @media (max-width: 460px) {
    .logo {
      margin-bottom: 10px; } }
  @media (max-width: 375px) {
    .logo {
      height: 34px; } }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 40px;
  background-color: transparent;
  border: none;
  line-height: 1.3;
  font-weight: bold;
  color: #FFF;
  min-height: 46px;
  transition: .2s ease;
  outline: none;
  overflow: hidden;
  text-transform: uppercase; }
  .button[type=reset], .button[type=button], .button[type=submit] {
    -webkit-appearance: button; }
  .button:not(:disabled) {
    cursor: pointer; }
  .button__shadow {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width .1s ease, height .1s ease;
    height: 0;
    width: 0;
    border-radius: 40px;
    pointer-events: none; }
  .button:hover .button__shadow {
    width: 180px;
    height: 180px; }
  .button__counter, .button__body {
    z-index: 1; }
  .button__counter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3px;
    margin-right: -5px;
    padding-right: 1px;
    width: 30px;
    height: 30px;
    line-height: 0.9;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #d84d30 inset; }
  .button__body {
    padding: 0 20px; }
  .button:active {
    transform: translateY(2px); }
  .button:disabled, .button--disabled {
    opacity: .5; }
  .button, .button--normal {
    padding: 4px;
    font-size: 14px; }
  .button--secondary {
    background-color: #121018;
    box-shadow: 0 0 0 1px #d84d30 inset, 0 10px 0 -7px #121018, 0 10px 0 -6px rgba(216, 77, 48, 0.5), 0 10px 20px rgba(216, 77, 48, 0.3); }
  .button--secondary:active {
    box-shadow: 0 0 0 1px #d84d30 inset, 0 8px 0 -7px #351917, 0 8px 0 -6px rgba(216, 77, 48, 0.5), 0 5px 50px rgba(216, 77, 48, 0.4); }
  .button--secondary:not(:disabled) .button__shadow {
    background: radial-gradient(circle closest-side, rgba(255, 45, 0, 0.4), rgba(255, 0, 0, 0)); }
  .button--primary {
    background-color: #D84D30;
    background-image: linear-gradient(160deg, #D84D30, #BB3520);
    box-shadow: 0 0 0 3px #CE4C35 inset, 0 5px 0 -2px rgba(216, 77, 48, 0.3), 0 10px 0 -4px rgba(216, 77, 48, 0.2), 0 10px 20px rgba(216, 77, 48, 0.3); }
  .button--primary:active {
    box-shadow: 0 0 0 3px #CE4C35 inset, 0 5px 0 -2px rgba(216, 77, 48, 0.3), 0 10px 0 -4px rgba(216, 77, 48, 0), 0 5px 50px rgba(216, 77, 48, 0.4); }
  .button--primary .button__shadow {
    background: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)); }
  .button--tada {
    animation: tada 2s linear infinite; }

.container {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20vh 70px 10vh;
  min-height: 900px;
  width: 100%; }
  .container__body {
    max-width: 500px;
    position: relative;
    opacity: 0;
    z-index: 1;
    transform: translateX(-50px); }
    .container__body--show {
      opacity: 1;
      transform: translateX(0);
      transition: .5s ease; }
  .container__wheel {
    position: absolute;
    right: 0;
    top: 100px;
    transition: 1s ease; }
    .container__wheel--centered {
      right: 50%;
      transition: 0 ease-in;
      transform: translateX(50%) scale(1.2); }
  .container__person {
    position: absolute;
    right: -15%;
    bottom: -30%;
    max-width: 600px;
    transition: 1.5s ease;
    pointer-events: none; }
    .container__person--offset {
      animation-name: helloPersonInLeft;
      animation-duration: 1s;
      transform: translateX(-200px); }
  @media (max-width: 1400px) {
    .container {
      padding-left: 30px;
      padding-right: 30px; }
      .container__person {
        max-width: 500px;
        bottom: -15%;
        right: -10%; } }
  @media (max-width: 1200px) {
    .container__person {
      max-width: 480px;
      bottom: -10%;
      right: -15%; }
    .container__wheel {
      right: -60px; }
      .container__wheel--centered {
        right: 50%; } }
  @media (max-width: 980px) {
    .container {
      padding-top: 120px;
      min-height: 740px;
      padding-bottom: 60px; }
      .container__person {
        max-width: 430px;
        bottom: -120px; } }
  @media (max-width: 880px) {
    .container {
      padding-top: 80px;
      min-height: 640px; }
      .container__body {
        max-width: 400px; }
      .container__wheel {
        right: -140px;
        transform: scale(0.8);
        transform-origin: center center; }
        .container__wheel--centered {
          right: 50%;
          transform: translateX(50%) scale(1.1); }
      .container__person {
        max-width: 340px;
        right: -14%; } }
  @media (max-width: 760px) {
    .container {
      padding: 40px 40px 380px;
      min-height: auto; }
      .container__wheel {
        top: auto;
        right: 0;
        bottom: -180px;
        transform: rotate(10deg) scale(1); }
        .container__wheel--centered {
          right: 50%;
          transform: translate(50%, -46%) scale(0.9); }
      .container__payments {
        display: none; }
      .container__person {
        max-width: 430px;
        bottom: -120px;
        right: -20%; }
        .container__person--offset {
          right: -40%; } }
  @media (max-width: 640px) {
    .container {
      padding-bottom: 350px; }
      .container__body {
        max-width: auto; }
      .container__wheel {
        right: -20%;
        transform: rotate(55deg) scale(0.8); }
        .container__wheel--centered {
          right: 50%;
          transform: translate(50%, -46%) scale(0.7); }
      .container__person {
        max-width: 340px;
        bottom: -120px;
        right: -20%; }
        .container__person--offset {
          right: -50%; } }
  @media (max-width: 460px) {
    .container {
      padding-left: 30px;
      padding-right: 0; }
      .container__wheel {
        right: -30%;
        transform: rotate(55deg) scale(0.7); }
        .container__wheel--centered {
          right: 50%;
          transform: translate(50%, -46%) scale(0.6); }
      .container__person {
        max-width: 340px;
        bottom: -120px;
        right: -20%; }
        .container__person--offset {
          right: -60%; } }
  @media (max-width: 375px) {
    .container {
      padding-bottom: 280px; }
      .container__wheel {
        right: -40%;
        bottom: -260px;
        transform: rotate(55deg) scale(0.7); }
        .container__wheel--centered {
          right: 50%;
          transform: translate(50%, -46%) scale(0.5); }
      .container__person {
        max-width: 310px;
        bottom: -120px;
        right: -30%; }
        .container__person--offset {
          right: -80%; } }

@keyframes helloPersonInLeft {
  from {
    transform: translate(-100px, 0);
    opacity: 0; }
  to {
    transform: translate(-200px, 0);
    opacity: 1; } }

@keyframes helloPersonInLeft {
  from {
    transform: translate(-100px, 0);
    opacity: 0; }
  to {
    transform: translate(-200px, 0);
    opacity: 1; } }

.wheel-container {
  position: relative; }
  .wheel-container__highlighter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px;
    right: calc(50% - 35px);
    background-position: center center;
    background-image: url(public/img/wheel-highlight.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(-3deg);
    opacity: 0; }
    .wheel-container__highlighter--show {
      opacity: 1;
      transition: .3s ease; }
  .wheel-container__clicker {
    position: absolute;
    top: calc(50% - 25px);
    left: -34px;
    z-index: 1;
    pointer-events: none; }
  .wheel-container__center {
    position: absolute;
    width: 108px;
    height: 108px;
    box-shadow: 0 16px 25px rgba(0, 0, 0, 0.6); }
    .wheel-container__center, .wheel-container__center:after {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background-color: #D2974E;
      background-image: url(public/img/wheel-center.png);
      background-size: cover; }
    .wheel-container__center:after {
      content: '';
      width: 70px;
      height: 70px;
      box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25), 0 -6px 6px rgba(255, 255, 255, 0.25); }
  @media (max-width: 1400px) {
    .wheel-container__clicker {
      top: calc(50% - 15px);
      left: -28px; }
    .wheel-container__highlighter {
      left: -10px;
      right: calc(50% - 20px); }
    .wheel-container__center {
      width: 80px;
      height: 80px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); }
      .wheel-container__center:after {
        width: 50px;
        height: 50px; } }

.wheel {
  position: relative;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 12px #031422, 0 0 0 18px #032640, 0 0 0 30px #031929, 0 0 100px #004375, 0 0 100px #004375; }
  .wheel:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    background-image: radial-gradient(rgba(70, 0, 0, 0) 64%, rgba(81, 0, 0, 0.51) 76%);
    pointer-events: none; }
  .wheel__sector {
    position: absolute;
    transform-origin: center bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    margin-left: -50%;
    left: 50%;
    top: 0%; }
    .wheel__sector:nth-of-type(1) {
      transform: rotate(36deg); }
    .wheel__sector:nth-of-type(2) {
      transform: rotate(72deg); }
    .wheel__sector:nth-of-type(3) {
      transform: rotate(108deg); }
    .wheel__sector:nth-of-type(4) {
      transform: rotate(144deg); }
    .wheel__sector:nth-of-type(5) {
      transform: rotate(180deg); }
    .wheel__sector:nth-of-type(6) {
      transform: rotate(216deg); }
    .wheel__sector:nth-of-type(7) {
      transform: rotate(252deg); }
    .wheel__sector:nth-of-type(8) {
      transform: rotate(288deg); }
    .wheel__sector:nth-of-type(9) {
      transform: rotate(324deg); }
    .wheel__sector:nth-of-type(10) {
      transform: rotate(360deg); }
  @media (max-width: 1400px) {
    .wheel {
      width: 660px;
      height: 660px; } }
  @media (max-width: 1200px) {
    .wheel {
      width: 620px;
      height: 620px; } }
  @media (max-width: 980px) {
    .wheel {
      width: 580px;
      height: 580px; } }
  @media (max-width: 760px) {
    .wheel {
      width: 620px;
      height: 620px; } }

.wheel-sector__bg {
  position: absolute;
  transform-origin: 100% 100%;
  background-color: #F9D05A;
  background-image: linear-gradient(150deg, #F9D05A 70%, #FDF08C);
  width: 410px;
  height: 410px;
  left: 50%;
  top: 100%;
  margin-top: -410px;
  margin-left: -410px;
  box-shadow: 5px 5px 15px rgba(70, 0, 0, 0.5), 0 0 5px rgba(70, 0, 0, 0.5); }
  .wheel-sector__bg:after, .wheel-sector__bg:before {
    content: '';
    display: block;
    position: absolute;
    top: 38%;
    bottom: 0;
    width: 3px;
    background-image: linear-gradient(#99210B 0%, #B24B39 14.06%, #842A19 29.17%, #791E0D 100%);
    z-index: -1; }
  .wheel-sector__bg:after {
    left: 0; }
  .wheel-sector__bg:before {
    right: 0; }
  .wheel__sector:nth-child(2n) .wheel-sector__bg {
    background-color: #BB3520;
    background-image: linear-gradient(150deg, #BB3520 70%, #E55938); }
  .wheel-sector__bg:nth-of-type(1) {
    transform: rotate(72deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(2) {
    transform: rotate(108deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(3) {
    transform: rotate(144deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(4) {
    transform: rotate(180deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(5) {
    transform: rotate(216deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(6) {
    transform: rotate(252deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(7) {
    transform: rotate(288deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(8) {
    transform: rotate(324deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(9) {
    transform: rotate(360deg) skew(54deg); }
  .wheel-sector__bg:nth-of-type(10) {
    transform: rotate(396deg) skew(54deg); }

.wheel-sector__body {
  display: flex;
  justify-content: center;
  align-items: center; }

.wheel-sector__pin {
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: #ED9F44;
  background-image: url(public/img/wheel-pin.png);
  background-size: cover;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5); }

@media (max-width: 1400px) {
  .wheel-sector__pin {
    top: 15px;
    width: 12px;
    height: 12px; } }

.wheel-sector-body {
  position: absolute;
  z-index: 1;
  transform: rotate(90deg);
  text-transform: uppercase;
  text-align: center;
  padding-right: 90px;
  font-weight: bold;
  line-height: 1; }
  .wheel__sector:nth-child(1n) .wheel-sector-body {
    color: #A38733; }
  .wheel__sector:nth-child(2n) .wheel-sector-body {
    color: #8B1F0A; }
  .wheel-sector-body__amount, .wheel-sector-body__text {
    display: block;
    max-width: 210px;
    text-shadow: 2px -2px 0 rgba(255, 255, 255, 0.1); }
  .wheel-sector-body__amount {
    font-size: 48px; }
  .wheel-sector-body__text {
    font-size: 24px; }
  .wheel-sector--highlight .wheel-sector-body__amount, .wheel-sector--highlight .wheel-sector-body__text {
    transition: .3s ease;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 45, 45, 0.5);
    transition: .2s ease; }
  @media (max-width: 1400px) {
    .wheel-sector-body {
      padding-right: 75px; }
      .wheel-sector-body__amount {
        font-size: 38px; }
      .wheel-sector-body__text {
        font-size: 20px; } }

.wheel-clicker {
  display: block;
  background-repeat: no-repeat;
  background-image: url(public/img/wheel-clicker.png);
  background-size: 71px 49px;
  width: 71px;
  height: 49px;
  transform-origin: 24% 45%;
  transition: 0.1s ease; }
  @media (max-width: 1400px) {
    .wheel-clicker {
      width: calc(71px * 0.75);
      height: calc(49px * 0.75);
      background-size: calc(71px * 0.75) calc(49px * 0.75); } }

.screengame {
  display: inline-block;
  max-height: 0;
  transition: .7s ease;
  overflow: hidden; }
  .screengame__inner {
    visibility: hidden; }
  .screengame--extra + .screengame--extra {
    margin-left: -25px; }
  .screengame--show .screengame__inner {
    visibility: visible;
    animation-name: zoomInLeft;
    animation-duration: 1s; }

.win-monitor {
  display: flex;
  flex-wrap: wrap;
  min-height: 270px; }
  @media (max-width: 1400px) {
    .win-monitor {
      min-height: 250px; } }
  @media (max-width: 1200px) {
    .win-monitor {
      min-height: 230px; } }
  @media (max-width: 460px) {
    .win-monitor {
      min-height: 120px; } }

.win-item {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center; }
  .win-item__amount {
    font-size: 84px;
    line-height: 0.85;
    color: #ECAB2B; }
    .bettilt .win-item__amount {
      color: #FFDC14; }
    .win-item__amount--big {
      font-size: 130px; }
  .win-item__text {
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 0 10px; }
  .win-item__amount, .win-item__text {
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 45, 45, 0.5); }
  .win-item--independent {
    margin-bottom: 5px; }
  .win-item--independent .win-item__text {
    margin: 0; }
  .win-item--extra .win-item__amount {
    font-size: 46px; }
  .win-item--extra .win-item__text {
    line-height: 1.2;
    font-size: 18px;
    margin: 0 -10px 0 6px; }
  .win-item__accent {
    color: #fff; }
  .win-item--extra {
    height: 90px;
    position: relative;
    margin: 5px 60px 50px 20px;
    padding-left: 20px;
    background-repeat: repeat-x;
    background-image: url(public/img/win-item-body.svg); }
    .win-item--extra:after, .win-item--extra:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      display: block;
      background-repeat: no-repeat; }
    .win-item--extra:before {
      left: -5px;
      width: 5px;
      background-image: url(public/img/win-item-before.svg); }
    .win-item--extra:after {
      right: calc(60px * -1);
      width: calc(60px);
      background-image: url(public/img/win-item-after.svg); }
  .win-item--first {
    margin-left: 5px;
    padding-left: 0; }
  @media (max-width: 1400px) {
    .win-item__amount {
      font-size: 74px; }
      .win-item__amount--big {
        font-size: 120px; }
    .win-item__text {
      font-size: 24px; } }
  @media (max-width: 1200px) {
    .win-item {
      margin-bottom: 25px; }
      .win-item__amount {
        font-size: 64px; }
        .win-item__amount--big {
          font-size: 106px; }
      .win-item__text {
        font-size: 20px;
        margin-left: 7px; }
      .win-item--independent {
        margin-bottom: 5px; }
      .win-item--extra .win-item__amount {
        font-size: 38px; }
      .win-item--extra .win-item__text {
        font-size: 14px;
        margin-left: 4px;
        margin-right: -5px; }
      .win-item--extra {
        height: 70px;
        margin: 5px calc(60px * 0.75) 50px 20px;
        background-size: 1px 68px;
        padding-left: 15px; }
        .win-item--extra:before {
          background-size: 100px 68px; }
        .win-item--extra:after {
          right: calc(60px * -1 * 0.75);
          width: calc(60px * 0.75);
          background-size: calc(60px * 0.75) 68px; }
      .win-item--first {
        margin-left: 0;
        padding-left: 0; } }
  @media (max-width: 760px) {
    .win-item {
      margin-bottom: 15px; }
      .win-item--extra {
        margin-bottom: 22px; } }
  @media (max-width: 460px) {
    .win-item__amount {
      font-size: 48px; }
      .win-item__amount--big {
        font-size: 84px; }
    .win-item__text {
      font-size: 14px;
      line-height: 1.5;
      margin-left: 5px; }
    .win-item--independent {
      margin-bottom: 4px; } }
  @media (max-width: 375px) {
    .win-item--extra .win-item__amount {
      font-size: 34px; }
    .win-item--extra .win-item__text {
      font-size: 12px;
      margin-left: 4px;
      margin-right: -5px; }
    .win-item--first {
      margin-left: 0;
      padding-left: 0; } }

.win-controls {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 30px; }
  .win-controls__item {
    position: relative;
    list-style: none;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: .4s ease; }
    .win-controls__item--hide {
      opacity: 0;
      transform: translateX(-110%);
      z-index: -1; }
  @media (max-width: 460px) {
    .win-controls {
      margin-top: 20px;
      margin-bottom: 0; }
      .win-controls__item--hide {
        margin-top: -50px; } }

.payment-list {
  display: flex;
  flex-wrap: wrap;
  opacity: .4;
  max-width: 440px; }
  .payment-list__item {
    padding: 2px 4px;
    width: calc(100% / 6);
    list-style: none; }

.payment-item {
  display: block;
  width: 100%;
  height: auto; }

.footer {
  display: flex;
  justify-content: center;
  width: 100%;
  background-image: linear-gradient(to bottom, #0A0E2B, #0C0B10);
  padding: 20px; }


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