@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@keyframes heartbeat {
  0% {
    transform: scale(0);
    opacity: 0.7;
  }
  45% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes rotate-rays {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-rays {
  to {
    transform: rotate(360deg);
  }
}
[data-lottie-controls] {
  position: absolute;
  top: 4.27vw;
  right: 4.27vw;
  border: 1px solid #939098;
  background: rgba(0, 0, 0, 0.3607843137);
  width: 12.27vw;
  height: 12.27vw;
  border-radius: 50%;
}
@media (min-width: 576px) {
  [data-lottie-controls] {
    top: 24.5px;
    right: 24.5px;
    width: 68px;
    height: 68px;
  }
}
[data-lottie-controls] [data-mode] {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center center;
  background-size: 7.47vw;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media (min-width: 576px) {
  [data-lottie-controls] [data-mode] {
    background-size: 43px;
  }
}
[data-lottie-controls] [data-mode=play] {
  background-image: url(./img/anim-controls/play.png);
}
[data-lottie-controls] [data-mode=pause] {
  background-image: url(./img/anim-controls/pause.png);
}

.animate-rotate-rays {
  animation: rotate-rays normal infinite 60s linear;
  animation-delay: 2s;
}

.animate-heartbeat {
  animation: heartbeat 4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier 0.42, 0, 1, 1;
}

.loader {
  display: block;
  position: relative;
  height: 20px;
  width: 140px;
  background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0 0, 40px 0, 80px 0, 120px 0;
  animation: pgfill 1s linear infinite;
}

@keyframes pgfill {
  0% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }
  25% {
    background-image: linear-gradient(#6c43bf 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }
  50% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#6c43bf 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }
  75% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#6c43bf 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }
  100% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#6c43bf 20px, transparent 0);
  }
}
.screen-loader {
  background: rgba(0, 0, 0, 0.3607843137);
  position: absolute;
  top: 0px;
}

.loader-contenter {
  margin: auto;
  display: table;
  position: relative;
  top: 45vh;
}

body {
  color: #26232c;
  width: 100vw;
  /*max-width: 100%;*/
  max-width: 576px;
  margin: auto;
  background-color: #FFF;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
body a {
  color: #6c43bf;
}
body .text-underline {
  text-decoration: underline !important;
}
body .color-violet {
  color: #6c43bf !important;
}
body .mt-15 {
  margin-top: 4vw;
}
@media (min-width: 576px) {
  body .mt-15 {
    margin-top: 15px;
  }
}
body .mb-15 {
  margin-bottom: 4vw;
}
@media (min-width: 576px) {
  body .mb-15 {
    margin-bottom: 15px;
  }
}
body .pt-15 {
  padding-top: 4vw;
}
@media (min-width: 576px) {
  body .pt-15 {
    padding-top: 15px;
  }
}
body .pb-15 {
  padding-bottom: 4vw;
}
@media (min-width: 576px) {
  body .pb-15 {
    padding-bottom: 15px;
  }
}
body .font-weight-400 {
  font-weight: 400 !important;
}
body .font-weight-500 {
  font-weight: 500 !important;
}
body .font-weight-600 {
  font-weight: 600 !important;
}
body .font-weight-700 {
  font-weight: 700 !important;
}
body .d-block-576 {
  display: block;
}
@media (min-width: 576px) {
  body .d-block-576 {
    display: none;
  }
}
body .btn {
  border-radius: 10px;
  line-height: 12.57vw;
  width: 91.62vw;
  padding: 0;
  font-size: 4.19vw;
  font-weight: 700;
}
@media (min-width: 576px) {
  body .btn {
    font-size: 16px;
    line-height: 48px;
    width: 350px;
  }
}
body .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}
body .btn-filled {
  background-color: #6c43bf;
  color: #FFF;
}
body .btn-filled:hover {
  color: #FFF;
}
body .btn-center {
  display: block;
  margin: auto;
}
body .btn-bordered {
  color: #6c43bf;
  border: 2px solid #6c43bf;
}
body .btn-bordered:hover, body .btn-bordered:focus, body .btn-bordered:active {
  color: #6c43bf;
}
body .btn-bordered-white {
  color: #FFF;
  border: 2px solid #FFF;
}
body .btn-bordered-white:hover, body .btn-bordered-white:focus, body .btn-bordered-white:active {
  color: #FFF;
}
body .btn-icon {
  height: 16.07vw;
  border: 1px solid #D6D6D6;
  line-height: 16.07vw;
  position: relative;
  padding-left: 17.07vw;
  padding-right: 2.7vw;
}
@media (min-width: 576px) {
  body .btn-icon {
    height: 64px;
    line-height: 64px;
    padding-left: 64px;
    padding-right: 15px;
  }
}
body .btn-icon .left {
  float: left;
}
body .btn-icon .right {
  float: right;
}
body .btn-icon-ticket {
  position: relative;
  width: 100%;
}
body .btn-icon-ticket:before {
  content: "";
  position: absolute;
  background: url("./img/icons/icon-ticket.png") center no-repeat;
  background-size: contain;
  width: 10.67vw;
  height: 10.67vw;
  top: 2.8vw;
  left: 3vw;
}
@media (min-width: 576px) {
  body .btn-icon-ticket:before {
    width: 40px;
    height: 40px;
    top: 11px;
    left: 13px;
  }
}
body .btn-icon-coins {
  position: relative;
  width: 100%;
}
body .btn-icon-coins:before {
  content: "";
  position: absolute;
  background: url("./img/icons/icon-coins.png") center no-repeat;
  background-size: contain;
  width: 10.67vw;
  height: 10.67vw;
  top: 2.8vw;
  left: 3vw;
}
@media (min-width: 576px) {
  body .btn-icon-coins:before {
    width: 40px;
    height: 40px;
    top: 11px;
    left: 13px;
  }
}
body .btn-icon.darkmode {
  border-color: #4E4951;
}
body .btn-no-icon {
  padding-left: 2.07vw;
  font-size: 3.64vw;
  width: 100%;
}
body .btn-no-icon:not(:disabled):not(.disabled), body .btn-no-icon:not(:disabled):not(.disabled) {
  cursor: auto;
}
body .btn-no-icon .left {
  float: left;
  text-align: left;
  margin-top: 2.34vw;
  line-height: 4.68vw;
}
@media (min-width: 576px) {
  body .btn-no-icon {
    padding-left: 15px;
    font-size: 14px;
  }
  body .btn-no-icon .left {
    margin-top: 9px;
    line-height: 18px;
  }
}
body .btn-grey {
  background-color: #f7f7f7;
}
body .btn-grey.darkmode {
  border-color: #4E4951;
  background-color: #26232c;
}
body .btn-white {
  background-color: #FFF;
}
body .btn .arrow {
  display: inline-block;
  padding: 0.8vw;
}
body .btn .arrow-right {
  border: solid #6c43bf;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg) translateY(-0.27vw);
  -webkit-transform: rotate(-45deg) translateY(-0.27vw);
}
@media (min-width: 576px) {
  body .btn .arrow {
    padding: 3px;
  }
  body .btn .arrow-right {
    transform: rotate(-45deg) translateY(-1px);
    -webkit-transform: rotate(-45deg) translateY(-1px);
  }
}
body .btn.darkmode {
  color: #F7F7F7;
}
body.darkmode {
  color: #F7F7F7;
  background-color: #000;
}
body.darkmode a {
  color: #9b61ff;
}
body.darkmode .color-violet {
  color: #9b61ff !important;
}
body.darkmode .btn-filled {
  color: #F7F7F7;
}
body .container {
  min-height: 100vh;
  padding: 0;
}
body .container .title {
  font-size: 6.4vw;
  font-weight: 700;
  text-align: left;
  display: block;
  line-height: 7.47vw;
  margin-top: 4.19vw;
  margin-bottom: 4.19vw;
}
body .container .subtitle {
  margin-top: 2.09vw;
  margin-bottom: 6.28vw;
  font-size: 4.19vw;
  line-height: 6.4vw;
  font-weight: 500;
  color: #6f6c74;
  text-align: left;
}
body .container .subtitle.darkmode {
  color: #a8a5ac;
}
@media (min-width: 576px) {
  body .container {
    max-width: 576px;
  }
  body .container .title {
    font-size: 24px;
    line-height: 28px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  body .container .subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
  }
}
body .container .col {
  padding-left: 4.27vw;
  padding-right: 4.27vw;
}
@media (min-width: 576px) {
  body .container .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body .screen-welcome {
  background: #6B3C90;
  background: linear-gradient(180deg, #6B3C90, #35145E);
  overflow: hidden;
  position: relative;
}
body .screen-welcome .screen-welcome-bg {
  background-image: url("./img/welcome-rays.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vw;
  position: absolute;
  top: calc(50vh - 50vw);
  left: 0;
}
@media (min-width: 576px) {
  body .screen-welcome .screen-welcome-bg {
    width: 576px;
    left: calc((100% - 576px) / 2);
  }
}
body .screen-welcome .screen-welcome-img {
  background-image: url("./img/welcome-txt.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vw;
  position: absolute;
  top: calc(50vh - 50vw);
  left: 0;
}
@media (min-width: 576px) {
  body .screen-welcome .screen-welcome-img {
    width: 576px;
    left: calc((100% - 576px) / 2);
  }
}
body .screen-onboarding .top-section {
  background-size: contain;
}
body .screen-onboarding .top-section .btn-prev {
  position: absolute;
  top: 5vw;
  left: 2vw;
  width: 10vw;
  height: 10vw;
  opacity: 0;
}
body .screen-onboarding .top-section .btn-skip {
  position: absolute;
  top: 4vw;
  right: 3vw;
  width: 46vw;
  height: 12vw;
  opacity: 0;
}
body .screen-onboarding .mid-section {
  background-size: contain;
}
body .screen-onboarding .bot-section {
  position: fixed;
  width: 100vw;
  bottom: 4.19vw;
  background-color: #FFF;
}
body .screen-onboarding .bot-section.darkmode {
  background-color: #000;
}
@media (min-width: 576px) {
  body .screen-onboarding .bot-section {
    max-width: 576px;
    bottom: 15px;
  }
}
body .screen-onboarding[data-step="1"] .top-section {
  background-repeat: no-repeat;
  height: 89.6vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="1"] .top-section {
    height: 515px;
  }
}
body .screen-onboarding[data-step="1"] .top-section.pl-top-section {
  background-image: url("img/pl/screen-onboarding/top-bg-1.png");
}
body .screen-onboarding[data-step="1"] .top-section.pl-top-section.darkmode {
  background-image: url("img/pl/screen-onboarding/darkmode/top-bg-1.png");
}
body .screen-onboarding[data-step="1"] .top-section.en-top-section {
  background-image: url("img/en/screen-onboarding/top-bg-1.png");
}
body .screen-onboarding[data-step="1"] .top-section.en-top-section.darkmode {
  background-image: url("img/en/screen-onboarding/darkmode/top-bg-1.png");
}
body .screen-onboarding[data-step="1"] .top-section.uk-top-section {
  background-image: url("img/uk/screen-onboarding/top-bg-1.png");
}
body .screen-onboarding[data-step="1"] .top-section.uk-top-section.darkmode {
  background-image: url("img/uk/screen-onboarding/darkmode/top-bg-1.png");
}
body .screen-onboarding[data-step="2"] .top-section {
  background-repeat: no-repeat;
}
body .screen-onboarding[data-step="2"] .top-section.pl-top-section {
  background-image: url("img/pl/screen-onboarding/top-bg-2.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="2"] .top-section.pl-top-section {
    height: 626px;
  }
}
body .screen-onboarding[data-step="2"] .top-section.pl-top-section.darkmode {
  background-image: url("img/pl/screen-onboarding/darkmode/top-bg-2.png");
}
body .screen-onboarding[data-step="2"] .top-section.en-top-section {
  background-image: url("img/en/screen-onboarding/top-bg-2.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="2"] .top-section.en-top-section {
    height: 626px;
  }
}
body .screen-onboarding[data-step="2"] .top-section.en-top-section.darkmode {
  background-image: url("img/en/screen-onboarding/darkmode/top-bg-2.png");
}
body .screen-onboarding[data-step="2"] .top-section.uk-top-section {
  background-image: url("img/uk/screen-onboarding/top-bg-2.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="2"] .top-section.uk-top-section {
    height: 626px;
  }
}
body .screen-onboarding[data-step="2"] .top-section.uk-top-section.darkmode {
  background-image: url("img/uk/screen-onboarding/darkmode/top-bg-2.png");
}
body .screen-onboarding[data-step="3"] .top-section {
  background-repeat: no-repeat;
}
body .screen-onboarding[data-step="3"] .top-section.pl-top-section {
  background-image: url("img/pl/screen-onboarding/top-bg-3.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="3"] .top-section.pl-top-section {
    height: 627px;
  }
}
body .screen-onboarding[data-step="3"] .top-section.pl-top-section.darkmode {
  background-image: url("img/pl/screen-onboarding/darkmode/top-bg-3.png");
}
body .screen-onboarding[data-step="3"] .top-section.en-top-section {
  background-image: url("img/en/screen-onboarding/top-bg-3.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="3"] .top-section.en-top-section {
    height: 626px;
  }
}
body .screen-onboarding[data-step="3"] .top-section.en-top-section.darkmode {
  background-image: url("img/en/screen-onboarding/darkmode/top-bg-3.png");
}
body .screen-onboarding[data-step="3"] .top-section.uk-top-section {
  background-image: url("img/uk/screen-onboarding/top-bg-3.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="3"] .top-section.uk-top-section {
    height: 626px;
  }
}
body .screen-onboarding[data-step="3"] .top-section.uk-top-section.darkmode {
  background-image: url("img/uk/screen-onboarding/darkmode/top-bg-3.png");
}
body .screen-onboarding[data-step="4"] .top-section {
  background-repeat: no-repeat;
}
body .screen-onboarding[data-step="4"] .top-section.pl-top-section {
  background-image: url("img/pl/screen-onboarding/top-bg-4.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="4"] .top-section.pl-top-section {
    height: 627px;
  }
}
body .screen-onboarding[data-step="4"] .top-section.pl-top-section.darkmode {
  background-image: url("img/pl/screen-onboarding/darkmode/top-bg-4.png");
}
body .screen-onboarding[data-step="4"] .top-section.en-top-section {
  background-image: url("img/en/screen-onboarding/top-bg-4.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="4"] .top-section.en-top-section {
    height: 627px;
  }
}
body .screen-onboarding[data-step="4"] .top-section.en-top-section.darkmode {
  background-image: url("img/en/screen-onboarding/darkmode/top-bg-4.png");
}
body .screen-onboarding[data-step="4"] .top-section.uk-top-section {
  background-image: url("img/uk/screen-onboarding/top-bg-4.png");
  height: 108.8vw;
}
@media (min-width: 576px) {
  body .screen-onboarding[data-step="4"] .top-section.uk-top-section {
    height: 627px;
  }
}
body .screen-onboarding[data-step="4"] .top-section.uk-top-section.darkmode {
  background-image: url("img/uk/screen-onboarding/darkmode/top-bg-4.png");
}
body .screen-onboarding .mid-text {
  font-size: 4.16vw;
  line-height: 6.23vw;
}
@media (min-width: 576px) {
  body .screen-onboarding .mid-text {
    font-size: 16px;
    line-height: 24px;
  }
}
body .screen-onboarding .mid-text .subtitle {
  font-size: 3.73vw;
  line-height: 5.33vw;
  display: block;
  margin-left: 6.67vw;
  margin-top: 0;
}
body .screen-onboarding .mid-text .subtitle.darkmode {
  color: #a8a5ac;
}
@media (min-width: 576px) {
  body .screen-onboarding .mid-text .subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-left: 25px;
  }
}
body .screen-notice {
  padding-top: 26.67vw;
  padding-left: 15px;
  padding-right: 15px;
}
body .screen-notice .btn {
  width: 77.23vw;
}
@media (min-width: 576px) {
  body .screen-notice .btn {
    width: 280px;
  }
}
body .screen-notice .notice-x {
  position: relative;
  top: 0px;
  left: 35.53vw;
  width: 20.94vw;
  height: 20.94vw;
  background-image: url("./img/notice-x.png");
  background-size: contain;
  display: block;
}
body .screen-notice .notice-x.notice-clock {
  background-image: url("./img/notice-clock.png");
  background-size: contain;
}
body .screen-notice .notice-x.notice-no-data {
  background-image: url("./img/notice-no-data.png");
  background-size: contain;
}
body .screen-notice .notice-x.notice-no-internet {
  background-image: url("./img/notice-no-internet.png");
  background-size: contain;
}
@media (min-width: 576px) {
  body .screen-notice .notice-x {
    width: 78px;
    height: 78px;
    margin: auto;
    left: 0;
  }
}
body .screen-notice .notice-title {
  font-size: 7.33vw;
  font-weight: 700;
  text-align: center;
  display: block;
  line-height: 8.9vw;
  margin-top: 4.19vw;
  margin-bottom: 4.19vw;
}
body .screen-notice .notice-subtitle {
  margin-top: 2.09vw;
  margin-bottom: 6.28vw;
  font-size: 4.19vw;
  font-weight: 500;
  color: #6F6C74;
  line-height: 6.4vw;
  text-align: center;
}
@media (min-width: 576px) {
  body .screen-notice {
    padding-top: 100px;
  }
  body .screen-notice .notice-title {
    font-size: 28px;
    line-height: 34px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  body .screen-notice .notice-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
  }
}
body .screen-register .top-section {
  background-size: contain;
  background-repeat: no-repeat;
  height: 37.6vw;
}
@media (min-width: 576px) {
  body .screen-register .top-section {
    height: 216px;
  }
}
body .screen-register .top-section .btn-prev {
  position: absolute;
  top: 5vw;
  left: 2vw;
  width: 10vw;
  height: 10vw;
  opacity: 0;
}
body .screen-register .top-section .btn-skip {
  position: absolute;
  top: 4vw;
  right: 3vw;
  width: 46vw;
  height: 12vw;
  opacity: 0;
}
body .screen-register .mid-section {
  background-size: contain;
}
body .screen-register .mid-section-form {
  margin-bottom: 38vw;
}
@media (min-width: 576px) {
  body .screen-register .mid-section-form {
    margin-bottom: 145px;
  }
}
body .screen-register .bot-section {
  position: fixed;
  width: 100vw;
  bottom: 4.19vw;
  background-color: #FFF;
}
body .screen-register .bot-section.darkmode {
  background-color: #000;
}
@media (min-width: 576px) {
  body .screen-register .bot-section {
    left: calc((100vw - 375px) / 2);
    bottom: 15px;
    max-width: 375px;
  }
}
body .screen-register .bot-section .btn-grey {
  padding-left: 4.27vw;
  padding-right: 4.27vw;
  border-radius: 0;
  width: 100vw;
  border-bottom: 1px solid #d6d6d6;
}
body .screen-register .bot-section .btn-grey.darkmode {
  border-bottom-color: #4E4951;
}
@media (min-width: 576px) {
  body .screen-register .bot-section .btn-grey {
    padding-left: 15px;
    padding-right: 15px;
    width: 375px;
  }
}
body .screen-register[data-type="1"] .top-section {
  background-image: url("img/pl/register/register-img-small.png");
  height: 37.6vw;
}
@media (min-width: 576px) {
  body .screen-register[data-type="1"] .top-section {
    background-position: center;
    height: 216px;
  }
}
body .screen-register[data-type="1"] .mid-section {
  /*background-image: url("img/pl/register/register-frame1.png");

  margin-top: 6.4vw;
  margin-bottom: 6.4vw;
  background-position: top center;
  padding-top: 89.6vw;
  background-repeat: no-repeat;

  padding-left: 4.27vw;
  padding-right: 4.27vw;

  .title {
      font-size: 4.8vw;
      font-weight: 700;
      margin-bottom: 3.2vw;
      margin-top: 5.33vw;
  }*/
}
body .screen-register[data-type="1"] .mid-section .agree-container {
  height: 15.47vw;
}
body .screen-register[data-type="1"] .mid-section .agree-container .help-block {
  position: relative;
  top: -9vw;
  padding-left: 5vw;
}
body .screen-register[data-type="1"] .mid-section label {
  font-weight: 500;
  font-size: 3.73vw;
  line-height: 5.33vw;
  cursor: pointer;
}
body .screen-register[data-type="1"] .mid-section label input {
  cursor: pointer;
}
@media (min-width: 576px) {
  body .screen-register[data-type="1"] .mid-section label {
    font-size: 14px;
    line-height: 20px;
  }
}
body .screen-register[data-type="1"] .mid-section label span {
  padding-left: 5vw;
  display: inline-block;
  position: relative;
  top: -6vw;
}
body .screen-register[data-type="2"] .top-section {
  background-image: url("img/pl/register/register-img-big.png");
  height: 83.2vw;
}
@media (min-width: 576px) {
  body .screen-register[data-type="2"] .top-section {
    background-position: center;
    height: 312px;
  }
}
body .screen-register[data-type="2"] .mid-section {
  /*background-image: url("img/pl/register/register-frame2.png");

  margin-top: 6.4vw;
  margin-bottom: 6.4vw;
  background-position: top center;
  padding-top: 37.6vw;
  background-repeat: no-repeat;
  padding-left: 4.27vw;
  padding-right: 4.27vw;

  .title {
      font-size: 4.8vw;
      font-weight: 700;
      margin-bottom: 3.2vw;
      margin-top: 5.33vw;
  }*/
}
body .screen-register[data-type="2"] .mid-section .agree-container {
  height: 15.47vw;
}
body .screen-register[data-type="2"] .mid-section .agree-container .help-block {
  position: relative;
  top: -9vw;
  padding-left: 5vw;
}
body .screen-register[data-type="2"] .mid-section label {
  font-weight: 500;
  font-size: 3.73vw;
  line-height: 5.33vw;
  cursor: pointer;
}
body .screen-register[data-type="2"] .mid-section label input {
  cursor: pointer;
}
@media (min-width: 576px) {
  body .screen-register[data-type="2"] .mid-section label {
    font-size: 14px;
    line-height: 20px;
  }
}
body .screen-register[data-type="2"] .mid-section label span {
  padding-left: 5vw;
  display: inline-block;
  position: relative;
  top: -6vw;
}
body .screen-register[data-type="3"] {
  /*.mid-section {
      background-image: url("img/pl/register/register-frame3.png");

      margin-top: 6.4vw;
      margin-bottom: 6.4vw;
      background-position: top right;
      padding-top: 51.8vw;
      background-repeat: no-repeat;
      padding-left: 0;
      padding-right: 0;
      margin-left: 4.27vw;
      margin-right: 4.27vw;

      .title {
          font-size: 4.8vw;
          font-weight: 700;
          margin-bottom: 3.2vw;
          margin-top: 5.33vw;
      }

      .agree-container {
          height: 15.47vw;

          .help-block {
              position: relative;
              top: -9vw;
              padding-left: 5vw;
          }
      }

      label {
          font-weight: 500;
          font-size: 3.73vw;
          line-height: 5.33vw;
          cursor: pointer;

          span {
              padding-left: 5vw;
              display: inline-block;
              position: relative;
              top: -6vw;
          }
      }
  }*/
}
body .screen-register[data-type="3"] .top-section {
  background-image: url("img/pl/register/register-img-big.png");
  height: 83.2vw;
}
@media (min-width: 576px) {
  body .screen-register[data-type="3"] .top-section {
    background-position: center;
    height: 312px;
  }
}
body .screen-register[data-type="4"] {
  /*.mid-section {
      background-image: url("img/pl/register/register-frame4.png");

      margin-top: 3.2vw;
      margin-bottom: 6.4vw;
      background-position: top center;
      padding-top: 100.27vw;
      background-repeat: no-repeat;

      padding-left: 4.27vw;
      padding-right: 4.27vw;

      .title {
          font-size: 4.8vw;
          font-weight: 700;
          margin-bottom: 3.2vw;
          margin-top: 5.33vw;
      }

      .agree-container {
          height: 15.47vw;

          .help-block {
              position: relative;
              top: -9vw;
              padding-left: 5vw;
          }
      }

      label {
          font-weight: 500;
          font-size: 3.73vw;
          line-height: 5.33vw;
          cursor: pointer;

          span {
              padding-left: 5vw;
              display: inline-block;
              position: relative;
              top: -6vw;
          }
      }
  }*/
}
body .screen-register[data-type="4"] .top-section {
  background-image: url("img/pl/register/register-img-small.png");
  height: 37.6vw;
}
@media (min-width: 576px) {
  body .screen-register[data-type="4"] .top-section {
    height: 216px;
    background-position: center;
  }
}
body .screen-register .col .title {
  margin-top: 8vw;
}
@media (min-width: 576px) {
  body .screen-register .col {
    width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
  body .screen-register .col .title {
    margin-top: 30px;
  }
}
body .screen-register .mid-text {
  padding-left: 13.33vw;
  margin-bottom: 38vw;
}
body .screen-register .mid-text .title {
  font-size: 4.27vw;
  line-height: 6.4vw;
  margin-top: 2.67vw;
  margin-bottom: 2.67vw;
  position: relative;
}
body .screen-register .mid-text .title:before {
  content: "";
  position: absolute;
  width: 6.4vw;
  height: 6.4vw;
  background-color: #FFF;
  border: 1px solid #A8A5AC;
  margin-left: -9.33vw;
  border-radius: 13.33vw;
  color: #6f6c74;
  padding: 0 2.4vw;
  font-size: 2.67vw;
  font-weight: 700;
  line-height: 5.9vw;
}
body .screen-register .mid-text .title.active:before {
  background-color: #6c43bf;
  border: 1px solid #6c43bf;
  color: #FFF;
}
body .screen-register .mid-text .title-1:before {
  content: "1";
}
body .screen-register .mid-text .title-2:before {
  content: "2";
  padding: 0 2.13vw;
}
body .screen-register .mid-text .title-3:before {
  content: "3";
  padding: 0 2.13vw;
}
body .screen-register .mid-text .subtitle {
  font-size: 3.73vw;
  line-height: 5.33vw;
  position: relative;
  padding-bottom: 1.33vw;
  margin-bottom: 4vw;
}
body .screen-register .mid-text .subtitle:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #A8A5AC;
  position: absolute;
  margin-left: -6.13vw;
}
body .screen-register .mid-text .subtitle.active:before {
  background-color: #6c43bf;
}
body .screen-register .mid-text .subtitle.link:before {
  background-color: transparent;
}
@media (min-width: 576px) {
  body .screen-register .mid-text {
    padding-left: 50px;
    margin-bottom: 145px;
  }
  body .screen-register .mid-text .title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  body .screen-register .mid-text .title:before {
    width: 24px;
    height: 24px;
    margin-left: -35px;
    border-radius: 50px;
    padding: 0 9px;
    font-size: 10px;
    line-height: 21px;
  }
  body .screen-register .mid-text .title-2:before {
    padding: 0 8px;
  }
  body .screen-register .mid-text .subtitle {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    margin-top: 8px;
  }
  body .screen-register .mid-text .subtitle:before {
    margin-left: -23px;
  }
}
body .screen-register .mid-text-no-left-icon {
  padding-left: 4.27vw;
}
@media (min-width: 576px) {
  body .screen-register .mid-text-no-left-icon {
    padding-left: 15px;
  }
}
body .screen-register .mid-text-no-left-icon .subtitle {
  color: #26232c;
  font-size: 4.27vw;
  line-height: 6.4vw;
}
body .screen-register .mid-text-no-left-icon .subtitle.darkmode {
  color: #F7F7F7;
}
body .screen-register .mid-text-no-left-icon .subtitle:before {
  display: none;
}
@media (min-width: 576px) {
  body .screen-register .mid-text-no-left-icon .subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
body .screen-register .mid-text-form {
  margin-bottom: 8vw;
}
@media (min-width: 576px) {
  body .screen-register .mid-text-form {
    margin-bottom: 30px;
  }
}
body .screen-dashboard {
  font-size: 3.73vw;
  line-height: 5.33vw;
  font-weight: 500;
}
body .screen-dashboard.darkmode {
  color: #a8a5ac;
}
@media (min-width: 576px) {
  body .screen-dashboard {
    font-size: 14px;
    line-height: 20px;
  }
}
body .screen-dashboard .main-top-image {
  background-size: 100%;
  background-repeat: no-repeat;
  height: 61.6vw;
}
body .screen-dashboard .main-top-image.pl-main-top-image {
  background-image: url("img/pl/dashboard/dashboard_top.png");
}
body .screen-dashboard .main-top-image.pl-main-top-image.darkmode {
  background-image: url("img/pl/dashboard/darkmode/dashboard_top.png");
}
body .screen-dashboard .main-top-image.en-main-top-image {
  background-image: url("img/en/dashboard/dashboard_top.png");
}
body .screen-dashboard .main-top-image.en-main-top-image.darkmode {
  background-image: url("img/en/dashboard/darkmode/dashboard_top.png");
}
body .screen-dashboard .main-top-image.uk-main-top-image {
  background-image: url("img/uk/dashboard/dashboard_top.png");
}
body .screen-dashboard .main-top-image.uk-main-top-image.darkmode {
  background-image: url("img/uk/dashboard/darkmode/dashboard_top.png");
}
body .screen-dashboard .main-top-image .data-box {
  font-size: 4.27vw;
  position: absolute;
  left: 58vw;
  width: 40vw;
  margin-top: 3vw;
}
body .screen-dashboard .main-top-image .data-box .subtitle {
  font-size: 3.2vw;
}
body .screen-dashboard .main-top-image .data-box .data {
  display: block;
  font-weight: 700;
}
@media (min-width: 576px) {
  body .screen-dashboard .main-top-image {
    max-width: 576px;
    height: 355px;
  }
  body .screen-dashboard .main-top-image .data-box {
    font-size: 16px;
    width: 240px;
    margin-top: 30px;
    left: calc((100% + 95px) / 2);
  }
  body .screen-dashboard .main-top-image .data-box .subtitle {
    font-size: 12px;
  }
}
body .screen-dashboard .your-tickets .subtitle {
  font-size: 3.2vw;
}
@media (min-width: 576px) {
  body .screen-dashboard .your-tickets .subtitle {
    font-size: 12px;
  }
}
body .screen-dashboard .your-tickets-txt {
  width: 100vw;
  height: 29.87vw;
  position: relative;
  top: 0;
  left: 0;
  margin-top: 2vw;
  margin-bottom: 4vw;
}
@media (min-width: 576px) {
  body .screen-dashboard .your-tickets-txt {
    max-width: 576px;
    height: 112px;
    margin-top: 7.5px;
    margin-bottom: 15px;
  }
}
body .screen-dashboard .mid-section .subtitle {
  font-size: 4.8vw;
  color: #26232c;
  font-weight: 700;
  margin-bottom: 3vw;
}
body .screen-dashboard .mid-section .subtitle.darkmode {
  color: #F7F7F7;
}
@media (min-width: 576px) {
  body .screen-dashboard .mid-section .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
body .screen-dashboard .mid-section .btn-icon-coins:not(:disabled):not(.disabled), body .screen-dashboard .mid-section .btn-icon-ticket:not(:disabled):not(.disabled) {
  cursor: auto;
}
body .screen-dashboard .mid-section .img-big {
  width: 91.47vw;
  height: 53.33vw;
}
@media (min-width: 576px) {
  body .screen-dashboard .mid-section .img-big {
    max-width: 452px;
    height: 306px;
    margin: auto;
  }
}
body .screen-dashboard .mid-section .your-awards-month {
  position: relative;
}
body .screen-dashboard .mid-section .your-awards-month .data-box {
  font-size: 4.27vw;
  position: absolute;
  top: 1.5vw;
  left: 49vw;
  width: 36vw;
}
body .screen-dashboard .mid-section .your-awards-month .data-box .subtitle {
  font-size: 3.2vw;
  font-weight: 500;
  color: #6f6c74;
}
body .screen-dashboard .mid-section .your-awards-month .data-box .subtitle.darkmode {
  color: #a8a5ac;
}
body .screen-dashboard .mid-section .your-awards-month .data-box .data {
  display: block;
  font-weight: 700;
}
body .screen-dashboard .mid-section .your-awards-month .data-box .tickets {
  font-weight: 700;
  margin-left: 5px;
}
@media (min-width: 576px) {
  body .screen-dashboard .mid-section .your-awards-month .data-box {
    font-size: 16px;
    width: 215px;
    margin-top: 20px;
    left: calc((100% - 2px) / 2);
  }
  body .screen-dashboard .mid-section .your-awards-month .data-box .subtitle {
    font-size: 12px;
  }
}
body .screen-dashboard .mid-section .your-awards-month #Countdown {
  font-size: 3.2vw;
  font-weight: 500;
  color: #6f6c74;
  text-align: center;
}
body .screen-dashboard .mid-section .your-awards-month #Countdown.darkmode {
  color: #a8a5ac;
}
body .screen-dashboard .mid-section .your-awards-month #Countdown .box-data {
  width: 140px;
  padding: 5px;
}
body .screen-dashboard .mid-section .your-awards-month #Countdown .box-data .data {
  font-size: 4.27vw;
  color: #26232c;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 5px 0 !important;
}
@media (min-width: 576px) {
  body .screen-dashboard .mid-section .your-awards-month #Countdown .box-data {
    font-size: 12px;
  }
  body .screen-dashboard .mid-section .your-awards-month #Countdown .box-data .data {
    font-size: 16px;
  }
}
body .screen-dashboard .your-awards-immediate {
  width: 100vw;
  height: 25.6vw;
  position: relative;
  top: 0;
  left: 0;
  margin-top: 2vw;
  margin-bottom: 2vw;
}
body .screen-dashboard .your-awards-immediate.pl-your-awards-immediate {
  background: url("./img/pl/dashboard/dashboard-top-2.png") left top no-repeat;
  background-size: contain;
}
body .screen-dashboard .your-awards-immediate.en-your-awards-immediate {
  background: url("./img/en/dashboard/dashboard-top-2.png") left top no-repeat;
  background-size: contain;
}
body .screen-dashboard .your-awards-immediate.uk-your-awards-immediate {
  background: url("./img/uk/dashboard/dashboard-top-2.png") left top no-repeat;
  background-size: contain;
}
@media (min-width: 576px) {
  body .screen-dashboard .your-awards-immediate {
    max-width: 576px;
    height: 147px;
    margin-top: 7.5px;
    margin-bottom: 15px;
  }
}
body .screen-dashboard .your-awards-immediate-txt {
  width: 100vw;
  height: 12.8vw;
  position: relative;
  top: 0;
  left: 0;
  margin-top: 2vw;
  margin-bottom: 4vw;
}
body .screen-dashboard .your-awards-immediate-txt.pl-your-awards-immediate-txt {
  background: url("./img/pl/dashboard/dashboard-txt-2.png") left top no-repeat;
  background-size: contain;
}
body .screen-dashboard .your-awards-immediate-txt.pl-your-awards-immediate-txt.darkmode {
  background: url("./img/pl/dashboard/darkmode/dashboard-txt-2.png") left top no-repeat;
  background-size: contain;
}
body .screen-dashboard .your-awards-immediate-txt.en-your-awards-immediate-txt {
  background: url("./img/en/dashboard/dashboard-txt-2.png") left top no-repeat;
  background-size: contain;
}
@media (min-width: 576px) {
  body .screen-dashboard .your-awards-immediate-txt {
    max-width: 576px;
    height: 48px;
    margin-top: 7.5px;
    margin-bottom: 15px;
  }
}
body .screen-dashboard .bot-section .btn-grey {
  padding-left: 4.27vw;
  padding-right: 4.27vw;
  border-radius: 0;
  width: 100vw;
  border-bottom: 1px solid #d6d6d6;
}
body .screen-dashboard .bot-section .btn-grey.darkmode {
  border-bottom-color: #4E4951;
}
@media (min-width: 576px) {
  body .screen-dashboard .bot-section .btn-grey {
    padding-left: 15px;
    padding-right: 15px;
    width: 576px;
  }
}
body .screen-dashboard .bot-section-first {
  margin-bottom: 30vw;
}
@media (min-width: 576px) {
  body .screen-dashboard .bot-section-first {
    margin-bottom: 112.5px;
  }
}
body .screen-dashboard .bot-section-second {
  position: fixed;
  width: 100vw;
  bottom: -1px;
  background-color: #FFF;
  z-index: 10;
}
body .screen-dashboard .bot-section-second.darkmode {
  background-color: #000;
}
@media (min-width: 576px) {
  body .screen-dashboard .bot-section-second {
    max-width: 576px;
  }
}
body .container .box-close {
  border-bottom: 1px solid #d6d6d6;
  /*position: fixed;
  background: #fff;
  width: 100%;
  height: 25px;
  z-index: 100;
  max-width: 576px;*/
}
body .container .box-close .btn-close {
  position: relative;
  left: 4vw;
  width: 4vw;
  height: 4vw;
  background-image: url("./img/btn-close.png");
  background-size: contain;
  display: block;
  margin-bottom: 4vw;
  margin-top: 4vw;
}
@media (min-width: 576px) {
  body .container .box-close .btn-close {
    width: 14px;
    height: 14px;
    left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
body .container-awards .subtitle {
  font-size: 3.2vw;
}
@media (min-width: 576px) {
  body .container-awards .subtitle {
    font-size: 12px;
  }
}
body .container-awards .img-box {
  padding: 0 4vw;
}
body .container-awards .img-box.col-xs-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
body .container-awards .img-box:nth-of-type(2n+1) {
  padding-right: 2vw;
}
body .container-awards .img-box:nth-of-type(2n) {
  padding-left: 2vw;
}
body .container-awards .img-box .subtitle {
  color: #26232c;
}
body .container-awards .img-box .subtitle.darkmode {
  color: #F7F7F7;
}
@media (min-width: 576px) {
  body .container-awards .img-box {
    padding: 0 15px;
  }
  body .container-awards .img-box:nth-of-type(2n+1) {
    padding-right: 15px;
  }
  body .container-awards .img-box:nth-of-type(2n) {
    padding-left: 15px;
  }
}
@media (min-width: 769px) {
  body .container-awards .img-box.col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
body .container-awards .img-box .img-big {
  max-width: 100%;
}
body .container-awards .box-tickets {
  padding-bottom: 38vw;
}
@media (min-width: 576px) {
  body .container-awards .box-tickets {
    padding-bottom: 130px;
  }
}
body .container-awards .bot-section {
  border-top: 1px solid #d6d6d6;
}
body .container-awards .bot-section.bot-section-award {
  position: fixed;
  width: 100vw;
  bottom: -1px;
  background-color: #FFF;
  z-index: 10;
}
body .container-awards .bot-section.bot-section-award.darkmode {
  background-color: #000;
}
@media (min-width: 576px) {
  body .container-awards .bot-section.bot-section-award {
    max-width: 576px;
  }
}
body .container-awards.your-awards-immediate .mid-section .btn-icon-coins:not(:disabled):not(.disabled), body .container-awards.your-awards-immediate .mid-section .btn-icon-ticket:not(:disabled):not(.disabled) {
  cursor: auto;
}
body .container-moretickets {
  font-size: 3.73vw;
  line-height: 4.8vw;
  font-weight: 500;
}
@media (min-width: 576px) {
  body .container-moretickets {
    font-size: 14px;
    line-height: 18px;
  }
}
body .container-moretickets .title {
  font-size: 4.8vw;
}
@media (min-width: 576px) {
  body .container-moretickets .title {
    font-size: 18px;
  }
}
body .container-moretickets .box-menu {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 4vw;
}
body .container-moretickets .box-menu a {
  color: #6f6c74;
  margin-right: 4vw;
  cursor: pointer;
}
body .container-moretickets .box-menu a.active {
  color: #26232c;
  padding-bottom: 3.2vw;
  border-bottom: 3px solid #6c43bf;
  font-weight: 600;
}
body .container-moretickets .box-menu a:focus {
  text-decoration: none;
}
@media (min-width: 576px) {
  body .container-moretickets .box-menu {
    padding-bottom: 15px;
  }
  body .container-moretickets .box-menu a {
    margin-right: 15px;
  }
  body .container-moretickets .box-menu a.active {
    padding-bottom: 12px;
  }
}
body .container-moretickets .box-menu.darkmode {
  border-bottom-color: #000;
}
body .container-moretickets .box-menu.darkmode a {
  color: #a8a5ac;
}
body .container-moretickets .box-menu.darkmode a.active {
  color: #F7F7F7;
  border-bottom-color: #9b61ff;
}
body .container-moretickets #ticketsNolimit .img-big {
  width: 87.2vw;
  height: 64vw;
  display: block;
}
body .container-moretickets #ticketsNolimit .img-big.img-04 {
  height: 37.87vw;
}
@media (min-width: 576px) {
  body .container-moretickets #ticketsNolimit .img-big {
    max-width: 327px;
    height: 240px;
  }
  body .container-moretickets #ticketsNolimit .img-big.img-04 {
    height: 142px;
  }
}
body .container-moretickets #ticketsInternet .box-submenu {
  margin: 8vw 4vw;
}
body .container-moretickets #ticketsInternet .box-submenu a {
  color: #26232c;
  margin-right: 4vw;
  border: 1px solid #26232c;
  border-radius: 30px;
  padding: 1.5vw 4vw 2vw;
  position: relative;
  cursor: pointer;
}
body .container-moretickets #ticketsInternet .box-submenu a .check {
  position: absolute;
  background: url("./img/check-violet.png") center no-repeat;
  background-size: contain;
  width: 4.27vw;
  height: 4.27vw;
  top: 2.4vw;
  left: 3vw;
  display: none;
}
body .container-moretickets #ticketsInternet .box-submenu a.active {
  color: #6c43bf;
  border: 1px solid #6c43bf;
  background-color: #f0ecf9;
  padding-left: 8.27vw;
}
body .container-moretickets #ticketsInternet .box-submenu a.active .check {
  display: block;
}
body .container-moretickets #ticketsInternet .box-submenu a:focus {
  text-decoration: none;
}
@media (min-width: 576px) {
  body .container-moretickets #ticketsInternet .box-submenu {
    margin: 30px 15px;
  }
  body .container-moretickets #ticketsInternet .box-submenu a {
    margin-right: 15px;
    padding: 5px 15px 7.5px;
  }
  body .container-moretickets #ticketsInternet .box-submenu a.active {
    padding-left: 30px;
  }
  body .container-moretickets #ticketsInternet .box-submenu a.active .check {
    top: 8px;
    left: 10px;
    width: 16px;
    height: 16px;
  }
}
body .container-moretickets #ticketsInternet .box-submenu.darkmode a {
  color: #F7F7F7;
  border-color: #F7F7F7;
}
body .container-moretickets #ticketsInternet .box-submenu.darkmode a.active {
  color: #9b61ff;
  border-color: #9b61ff;
  background-color: #201339;
}
body .container-moretickets #ticketsInternet .img-big {
  width: 87.2vw;
  height: 32.53vw;
  display: block;
}
@media (min-width: 576px) {
  body .container-moretickets #ticketsInternet .img-big {
    max-width: 327px;
    height: 122px;
  }
}
body .container-moretickets #ticketsUkraine .img-big {
  width: 87.2vw;
  height: 69.33vw;
  display: block;
}
@media (min-width: 576px) {
  body .container-moretickets #ticketsUkraine .img-big {
    max-width: 327px;
    height: 260px;
  }
}
body .container-moretickets .content {
  margin-bottom: 18vw;
}
@media (min-width: 576px) {
  body .container-moretickets .content {
    margin-bottom: 95px;
  }
}
body .container-moretickets .bot-section {
  border-top: 1px solid #d6d6d6;
  position: fixed;
  width: 100vw;
  bottom: -1px;
  background-color: #FFF;
  z-index: 10;
}
body .container-moretickets .bot-section.darkmode {
  background-color: #000;
}
@media (min-width: 576px) {
  body .container-moretickets .bot-section {
    max-width: 576px;
  }
}
body .container-yourtickets {
  font-size: 3.73vw;
  line-height: 4.8vw;
  font-weight: 500;
}
@media (min-width: 576px) {
  body .container-yourtickets {
    font-size: 14px;
    line-height: 18px;
  }
}
body .container-yourtickets .title {
  font-size: 4.8vw;
}
@media (min-width: 576px) {
  body .container-yourtickets .title {
    font-size: 18px;
  }
}
body .container-yourtickets .subtitle {
  font-size: 3.2vw;
}
@media (min-width: 576px) {
  body .container-yourtickets .subtitle {
    font-size: 12px;
  }
}
body .container-yourtickets .bot-section {
  border-top: 1px solid #d6d6d6;
}
body .container-yourtickets .mid-section .btn-no-icon {
  height: auto;
}
body .container-yourtickets .mid-section .btn-no-icon .left {
  white-space: normal;
  max-width: 75%;
  margin-bottom: 2.5vw;
  margin-top: 3.2vw;
}
@media (min-width: 576px) {
  body .container-yourtickets .mid-section .btn-no-icon .left {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
body .container-topup .top-section {
  background-image: url("img/top-bg-top-up.png");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 81.04vw;
}
@media (min-width: 576px) {
  body .container-topup .top-section {
    height: 479px;
  }
}
body .container-topup .mid-section {
  font-size: 4.16vw;
  line-height: 6.23vw;
}
@media (min-width: 576px) {
  body .container-topup .mid-section {
    font-size: 16px;
    line-height: 24px;
  }
}
body .container-topup .bot-section {
  position: absolute;
  width: 100vw;
  bottom: 4.19vw;
}
@media (min-width: 576px) {
  body .container-topup .bot-section {
    max-width: 576px;
    bottom: 15px;
  }
}
body .container-faq .accordian .item.subtitle {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 4vw;
}
@media (min-width: 576px) {
  body .container-faq .accordian .item.subtitle {
    margin-bottom: 15px;
  }
}
body .container-faq .accordian .item.subtitle .btn.collapsible-link, body .container-faq .accordian .item.subtitle .collapse {
  white-space: normal;
  font-size: 3.73vw;
  line-height: 5.33vw;
  padding-right: 4vw;
  color: #26232c;
}
@media (min-width: 576px) {
  body .container-faq .accordian .item.subtitle .btn.collapsible-link, body .container-faq .accordian .item.subtitle .collapse {
    font-size: 14px;
    line-height: 20px;
    padding-right: 15px;
    width: 100%;
  }
}
body .container-faq .accordian .item.subtitle .btn.collapsible-link:active, body .container-faq .accordian .item.subtitle .btn.collapsible-link.active, body .container-faq .accordian .item.subtitle .btn.collapsible-link:focus, body .container-faq .accordian .item.subtitle .btn.collapsible-link:focus:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
  outline: 0px auto -webkit-focus-ring-color;
}
body .container-faq .accordian .item.subtitle .btn.collapsible-link:after {
  content: "›";
  float: right;
  right: -4vw;
  position: relative;
  transform: rotate(90deg);
  font-size: 6vw;
  color: #6f6c74;
}
@media (min-width: 576px) {
  body .container-faq .accordian .item.subtitle .btn.collapsible-link:after {
    right: -15px;
    font-size: 14px;
  }
}
body .container-faq .accordian .item.subtitle .btn.collapsible-link[aria-expanded=true]:after {
  transform: rotate(-90deg);
}
body .container-faq .accordian .item.subtitle .darkmode .btn.collapsible-link {
  color: #F7F7F7;
}
body .container-faq .accordian .item.subtitle .collapse {
  color: #26232c;
}
body .container-faq .accordian .item.subtitle .collapse.in {
  display: block !important;
}
body .container-faq .accordian .item.subtitle .collapse.darkmode {
  color: #F7F7F7;
}
@media (min-width: 576px) {
  body .container-faq .accordian .item.subtitle br {
    display: none;
  }
}
body .container-contact .title {
  font-size: 4.8vw;
}
@media (min-width: 576px) {
  body .container-contact .title {
    font-size: 18px;
  }
}
body .container-contact .subtitle {
  font-size: 3.2vw;
  line-height: 4.8vw;
  margin-bottom: 4vw;
}
body .container-contact .subtitle a {
  font-size: 3.73vw;
  line-height: 5.33vw;
  cursor: pointer;
}
body .container-contact .subtitle a:hover, body .container-contact .subtitle a:focus, body .container-contact .subtitle a:active {
  color: #6c43bf;
}
body .container-contact .subtitle a.darkmode:hover, body .container-contact .subtitle a.darkmode:focus, body .container-contact .subtitle a.darkmode:active {
  color: #9b61ff;
}
body .container-contact .subtitle a.moreText {
  font-size: 3.2vw;
  line-height: 4.8vw;
}
body .container-contact .subtitle .icon-mail {
  position: relative;
  background: url("./img/icons/icon-mail.png") center no-repeat;
  background-size: contain;
  width: 6.4vw;
  height: 6.4vw;
  top: 1.8vw;
  left: 0;
  display: inline-block;
  margin-right: 2vw;
}
body .container-contact .subtitle .icon-mail.darkmode {
  background: url("./img/icons/darkmode/icon-mail.png") center no-repeat;
  background-size: contain;
}
@media (min-width: 576px) {
  body .container-contact .subtitle {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
    margin-top: 8px;
  }
  body .container-contact .subtitle a {
    font-size: 14px;
    line-height: 20px;
  }
  body .container-contact .subtitle a.moreText {
    font-size: 12px;
    line-height: 18px;
  }
  body .container-contact .subtitle .icon-mail {
    width: 24px;
    height: 24px;
    top: 7.5px;
    margin-right: 8px;
  }
}
body .container-contact .collapse.in {
  display: block;
}
body .container-legal .title {
  font-size: 4.8vw;
  line-height: 6.4vw;
}
@media (min-width: 576px) {
  body .container-legal .title {
    font-size: 16px;
    line-height: 24px;
  }
}
body .container-legal .subtitle {
  font-size: 3.73vw;
  line-height: 5.33vw;
  color: #26232c;
}
body .container-legal .subtitle.darkmode {
  color: #F7F7F7;
}
@media (min-width: 576px) {
  body .container-legal .subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}
body .container-docs .text-docs {
  font-size: 3.73vw;
  line-height: 5.33vw;
  margin-bottom: 18vw;
}
body .container-docs .text-docs .title, body .container-docs .text-docs .subtitle {
  text-align: center;
}
body .container-docs .text-docs .subtitle {
  margin-bottom: 2.09vw;
  color: #26232c;
}
body .container-docs .text-docs .subtitle.darkmode {
  color: #F7F7F7;
}
@media (min-width: 576px) {
  body .container-docs .text-docs .subtitle {
    margin-bottom: 15px;
  }
}
body .container-docs .text-docs table {
  width: 100%;
}
body .container-docs .text-docs table.darkmode tr {
  background-color: #000;
}
body .container-docs .text-docs th {
  text-transform: uppercase;
  background: #eee;
  color: dimgrey;
  padding: 0 5px;
  font-size: 12px;
  line-height: normal;
}
body .container-docs .text-docs td {
  padding: 0 5px;
  text-align: right;
}
body .container-docs .text-docs td:nth-of-type(1) {
  text-align: left;
}
body .container-docs .text-docs tr {
  background: white;
  border-bottom: 1px solid;
}
body .container-docs .text-docs span {
  background: #eee;
  color: dimgrey;
  display: none;
  font-size: 10px;
  line-height: normal;
  font-weight: bold;
  padding: 5px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  left: 0;
}
body .container-docs .text-docs .line {
  max-width: 576px;
  overflow: hidden;
}
@media (min-width: 577px) {
  body .container-docs .text-docs {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 80px;
  }
  body .container-docs .text-docs table.table-2 th:nth-of-type(2), body .container-docs .text-docs table.table-2 th:nth-of-type(3), body .container-docs .text-docs table.table-2 td:nth-of-type(2), body .container-docs .text-docs table.table-2 td:nth-of-type(3) {
    text-align: center;
  }
}
@media (max-width: 576px) {
  body .container-docs .text-docs {
    font-size: 14px;
    line-height: 20px;
  }
  body .container-docs .text-docs thead {
    left: -9999px;
    position: absolute;
    visibility: hidden;
  }
  body .container-docs .text-docs tr {
    border-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  body .container-docs .text-docs td {
    border: 1px solid;
    margin: 0 -1px -1px 0;
    padding-top: 70px;
    position: relative;
    width: 50%;
    font-size: 14px;
    text-align: left;
  }
  body .container-docs .text-docs td:nth-of-type(1), body .container-docs .text-docs td:nth-of-type(2) {
    padding-top: 25px;
  }
  body .container-docs .text-docs td:nth-of-type(3), body .container-docs .text-docs td:nth-of-type(4) {
    padding-top: 40px;
  }
  body .container-docs .text-docs td td:nth-of-type(2), body .container-docs .text-docs td td:nth-of-type(3) {
    text-align: left;
  }
  body .container-docs .text-docs span {
    display: block;
  }
  body .container-docs .text-docs table.table-2 td:nth-of-type(1), body .container-docs .text-docs table.table-2 td:nth-of-type(2) {
    padding-top: 8.33vw;
  }
}
@media (max-width: 480px) {
  body .container-docs .text-docs td {
    font-size: 2.92vw;
    padding-top: 14.58vw;
  }
  body .container-docs .text-docs td:nth-of-type(1), body .container-docs .text-docs td:nth-of-type(2) {
    padding-top: 5.21vw;
  }
  body .container-docs .text-docs td:nth-of-type(3), body .container-docs .text-docs td:nth-of-type(4) {
    padding-top: 10.33vw;
  }
  body .container-docs .text-docs span {
    font-size: 2.08vw;
  }
}
body .container-docs .bot-section {
  position: fixed;
  width: 100vw;
  bottom: -1px;
  background-color: #FFF;
  border-top: 1px solid #d6d6d6;
}
body .container-docs .bot-section.darkmode {
  background-color: #000;
}
@media (min-width: 576px) {
  body .container-docs .bot-section {
    max-width: 576px;
  }
}
body .screen-in-game-draw, body .screen-in-game-win {
  background: #6B3C90;
  background: linear-gradient(180deg, #6B3C90, #35145E);
  overflow: hidden;
  position: relative;
}
body .screen-in-game-draw .screen-rays-bg, body .screen-in-game-win .screen-rays-bg {
  background-image: url(./img/welcome-rays.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 120vw;
  height: 120vw;
  position: absolute;
  top: 26vw;
  left: -10vw;
}
@media (min-width: 576px) {
  body .screen-in-game-draw .screen-rays-bg, body .screen-in-game-win .screen-rays-bg {
    width: 691px;
    height: 691px;
    top: 150px;
    left: -58px;
  }
}
body .screen-in-game-draw #anim, body .screen-in-game-draw #animStart, body .screen-in-game-win #anim, body .screen-in-game-win #animStart {
  width: 100%;
  height: auto;
}
body .screen-in-game-draw #animEnd, body .screen-in-game-win #animEnd {
  width: 100%;
  height: auto;
  display: none;
  top: 13vw;
  position: relative;
}
@media (min-width: 576px) {
  body .screen-in-game-draw #animEnd, body .screen-in-game-win #animEnd {
    top: 74.88px;
  }
}
body .screen-in-game-draw #anim, body .screen-in-game-win #anim {
  top: 13vw;
  position: relative;
}
@media (min-width: 576px) {
  body .screen-in-game-draw #anim, body .screen-in-game-win #anim {
    top: 74.88px;
  }
}
body .screen-in-game-draw .col, body .screen-in-game-win .col {
  position: absolute;
  bottom: 4.27vw;
}
body .screen-in-game-draw .title, body .screen-in-game-win .title {
  color: #FFF;
}
body .screen-in-game-draw .subtitle, body .screen-in-game-win .subtitle {
  color: #FFF;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #B3142E;
  font-size: 3.73vw;
  line-height: 5.33vw;
}
@media (min-width: 576px) {
  .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    font-size: 14px;
    line-height: 20px;
  }
}

.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 4px;
  background-color: #d6d6d6;
  margin-right: 5px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #6c43bf;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 52%;
  width: 100%;
}
.owl-carousel .owl-nav button {
  width: 8.67vw;
  height: 8.67vw;
  /*opacity: 0.8;
  &:hover {
      opacity: 1;
  }*/
}
.owl-carousel .owl-nav button.owl-prev {
  float: left;
  font-size: 5vw;
  color: #6c43bf;
  font-weight: 400;
  border: 1px solid #d6d6d6;
  background-color: #FFF;
  border-radius: 50px;
}
.owl-carousel .owl-nav button.owl-next {
  float: right;
  font-size: 5vw;
  color: #6c43bf;
  font-weight: 400;
  border: 1px solid #d6d6d6;
  background-color: #FFF;
  border-radius: 50px;
}
.owl-carousel .owl-nav.disabled {
  display: block;
}
@media (min-width: 576px) {
  .owl-carousel .owl-nav {
    top: 38%;
  }
  .owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
  }
  .owl-carousel .owl-nav button.owl-prev {
    font-size: 30px;
  }
  .owl-carousel .owl-nav button.owl-next {
    font-size: 30px;
  }
}

[data-drawer-close] {
  height: 7.47vw;
  display: block;
  width: 100%;
}
[data-drawer-close] .line {
  width: 12.8vw;
  height: 1.07vw;
  border-radius: 2.13vw;
  background-color: #6F6C74;
  margin: auto;
  position: relative;
  top: 10px;
}

.drawer {
  position: fixed;
  bottom: -100vh;
  transition: all 0.3s ease-in-out;
  min-height: auto !important;
  overflow-y: auto;
  z-index: 10000;
  max-height: 67%;
}
.drawer .container {
  max-height: 100vh;
  min-height: auto;
}
.drawer-shadow {
  backdrop-filter: blur(3px);
  position: fixed;
  z-index: 1000;
  height: 100vh;
  top: 0;
  width: 100vw;
}
.drawer.open {
  background-color: #FFF;
  bottom: 0vh;
}
.drawer.open.darkmode {
  background-color: #000;
}

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