@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Steelfish";
  src: url("../fonts/SteelfishRoundedRg-Bold.woff2") format("woff2"), url("../fonts/SteelfishRoundedRg-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* VARIABLES */
/* MIXINS */
/* ANIMATION */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/
         v2.0 | 20110126
         License: none (public domain)
      */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  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;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a, a:hover, a:active, a:visited, a:focus {
  color: inherit;
}

i,
em,
.italic-text {
  font-style: italic;
}

.left {
  float: left;
}

.right {
  float: right;
}

.wrap-clear::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
  display: table;
  clear: both;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

:focus {
  outline: none;
}

input,
button,
textarea {
  border-radius: 0;
  appearance: none;
}

select {
  border-radius: 0;
}

textarea {
  resize: none;
}

/* COMMONS */
body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.6px;
}

ol,
ul {
  margin: 0px;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  background-color: transparent;
}

input,
textarea {
  background: transparent;
  border: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}

a {
  color: inherit;
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

p {
  line-height: 1.3;
}

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

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.slick-next:before,
.slick-prev:before {
  content: "";
}

.scroll-lock {
  height: 100%;
  overflow-y: hidden;
}
small {
  font-size: 13px;
}

.input[type=checkbox] {
  -webkit-appearance: checkbox;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden;
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .container {
    width: 90%;
    max-width: 320px !important;
    margin: 0 auto;
  }
}

.wrapper {
  background-image: url("../images/Loading.png");
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .wrapper {
    background-size: cover;
    background-position: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper {
    background-position: right;
    background-size: cover;
  }
}
@media only screen and (min-width: 1025px) {
  .wrapper {
    background-size: 100% 100%;
  }
}
.wrapper .page-wrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wrapper .page-wrap {
    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper .page-wrap {
    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media only screen and (min-width: 1025px) {
  .wrapper .page-wrap {
    min-height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  }
}
.wrapper .page-wrap .hot-bln {
  right: 70px;
  top: 80px;
  position: absolute;
  position: relative;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .hot-bln {
    top: 30px;
    right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper .page-wrap .hot-bln {
    top: 50px;
    right: 50px;
  }
}
.wrapper .page-wrap .hot-bln .bln1 {
  position: absolute;
  width: 200px;
  right: 10px;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .hot-bln .bln1 {
    width: 100px;
  }
}
.wrapper .page-wrap .hot-bln .bln2 {
  top: 140px;
  right: -40px;
  width: 100px;
  position: absolute;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .hot-bln .bln2 {
    top: 70px;
    right: -20px;
    width: 50px;
  }
}
.wrapper .page-wrap .circle {
  position: absolute;
  bottom: -55px;
  left: 60px;
  width: 210px;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .circle {
    bottom: -31px;
    left: 19px;
    width: 114px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper .page-wrap .circle {
    width: 168px;
  }
}
.wrapper .page-wrap .bln-3 {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 70px;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .bln-3 {
    left: 20px;
    width: 50px;
    top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper .page-wrap .bln-3 {
    left: 40px;
    width: 50px;
    top: 50px;
  }
}
@media only screen and (min-width: 1025px) {
  .wrapper .page-wrap .bln-3 {
    left: 65px;
    width: 50px;
    top: 55px;
  }
}
.wrapper .page-wrap .bln-4 {
  position: absolute;
  bottom: -80px;
  right: 150px;
  width: 70px;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .bln-4 {
    right: 20px;
    width: 50px;
    bottom: -60px;
  }
}
@media only screen and (min-width: 1025px) {
  .wrapper .page-wrap .bln-4 {
    right: 120px;
    width: 60px;
    bottom: -80px;
  }
}
.wrapper .page-wrap .meter {
  background-image: url("../images/Untitled-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%; /* position the top  edge of the element at the middle of the parent */
  left: 50%; /* position the left edge of the element at the middle of the parent */
  transform: translate(-50%, -50%);
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  height: 60px;
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .meter {
    height: 30px;
    padding: 10px 5px 11px 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper .page-wrap .meter {
    height: 40px;
    padding: 10px;
  }
}
@media only screen and (min-width: 1025px) {
  .wrapper .page-wrap .meter {
    width: 980px;
  }
}
.wrapper .page-wrap .meter span {
  display: block;
  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #9931fd;
  background-image: linear-gradient(to right, #b63dff, #4501df);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}
.wrapper .page-wrap .meter span:after,
.wrapper .page-wrap .meter .animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.wrapper .page-wrap .meter .animate > span:after {
  display: none;
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
.wrapper .page-wrap .play-btn {
  display: block;
  z-index: 100;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 30px;
  padding: 10px 35px;
  background-color: #ca018d;
  border-radius: 30px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .wrapper .page-wrap .play-btn {
    top: 60%;
    font-size: 16px;
    padding: 8px 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper .page-wrap .play-btn {
    top: 57%;
    font-size: 22px;
    padding: 8px 22px;
  }
}

#unityContainer {
  width: 100vw !important;
  height: 100vh !important;
}

.loader-wrap p {
  color: #FFCD55;
  margin-top: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .loader-wrap p {
    font-size: 22px;
  }
}

.logo-wrap {
  position: absolute;
  top: 50%; /* position the top  edge of the element at the middle of the parent */
  left: 50%; /* position the left edge of the element at the middle of the parent */
  transform: translate(-50%, -50%);
}
.logo-wrap img {
  margin-bottom: 60px;
  max-width: 420px;
}
.logo-wrap .play-btn {
  max-width: fit-content;
}
@media (max-width: 767px) {
  .logo-wrap img {
    max-width: 280px;
    margin-bottom: 20px;
  }
}

.android_trigger {
  margin-top: 40px;
}

input[placeholder="ContentType:Name"] {
  /* display: none!important; */
  opacity: 0 !important;
}

input[placeholder="ContentType:IntegerNumber"] {
  /* display: none!important; */
  opacity: 0 !important;
}