
html {
    -ms-touch-action: none;
}

body,
canvas,
div {
    display: block;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Remove spin of input type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABa1BMVEX254H75lPu1j/hzVXVxGjIuHPDsWu8qW+6o0HHrizInQDGmgDDmgC9jwC3kwCvhQCgegCddwChhAOQbQCPbACWcwCPbQCObACLbQCQcwCSeBmSezqeiEeslku0lACtjwCxkgDftwDjvADhwQDhwwDmwQDqyADpygDrzQDy0wH41gD32gD82gD82wD+3AD+3QD+3gD+3wD+3AL+4AH+3wb74Q3+4RT+3xX23CT+5C6GaQCBZQB6WwB7XQB3WgBzWQBzWht8YhtoTQhoTQBqUQBkSgBmTQBmTQBmTQBdPwBVNgBUOAFUQQBRPgBMMgBKKgBJKABCJQNGNQAuIgAAAABjRwBmTABoTABpTwBsUQBtUQBuUgBwVQBwVQFxVgBxVgJzVwBzVwBzWAB0WAB2WQB2WgB7YACAZACDZwCEaQB2XAt2Wwp1Ww1kTQCJcSmGbCKBaCKCaST00gD+3gD+3QD/3QD+3AD+3AH+2wFCJGvoAAAAcnRSTlP+/f7++O7o4d/t/v39/fT+7+jq7dK+tq6Xl5CSsMnHw9X9/f3+/v3+/v7+/f3+/v7+/v79/vz9/v7+hn17cmhZWkk+PjtCMicjJxYVDAcKCwoJBQIAAQEBAQEBAQEBAQEBAgICAgEBAQEBAQEBCgFjd3mN+PMqAAAAz0lEQVR42k3IA3IFARQEwIlt27ZtWxPb9u7LuVIMSnud2M43u9wIje3bm6UDEit8joadBrUFRdXezWMH9uhIEyl3TWjdnbeEq9ftFVokRju/8/SAkWuM1x/w35iXcK09R3oBYH2GqEaFpS4ex0PjxFq7v6KaKGdV8GqZBAeCc8UUUliW43m46IpIzy8d4HJ5/XEX2ff4DrLB91SkMC+5bWOdJLjSGXQihdkxg9s0ATkaklKYVbc1QVssR/llRm+S9mBjQPj+lFMsdYV1z9HGABIoT5/j36CSAAAAAElFTkSuQmCC), default;
    color: #888;
    background-color: #333;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    /* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
    /* overflow cannot be applied in Cocos2dGameContainer, 
  otherwise child elements will be hidden when Cocos2dGameContainer rotated 90 deg */
    overflow: hidden;
}

#Cocos2dGameContainer {
    position: fixed;
    margin: 0;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    /* -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center; */
}

canvas {
	position: fixed;
    background-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited {
    color: #666;
}

a:active,
a:hover {
    color: #666;
}

p.header {
    font-size: small;
}

p.footer {
    font-size: x-small;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2f2736 url(./images/bg_splash_2025.jpg) no-repeat center;
    background-size: cover;
}

#splash-logo {
    position: fixed;
    top: 3%;
    left: 2%;
    width: 15%;
    height: 100%;
    background: url(./splash.a5ed0.png) no-repeat;
    background-size: contain;
}

.progress-bar {
    position: relative;
    top: 90%;
    height: 20px;
    padding: 1px 1px 1px 1px;

    margin: auto;

    width: 45%;
    max-width: 950px;

    background: #3D2563;
    border-style: solid;
    border-width: 1px;
    border-color: #FFFFFF;
    border-radius: 20px;
}

.progress-bar span {
    display: block;
    height: 100%;
    transition: width .4s ease-in-out;
    background-color: linear-gradient(to right, #F27023, #EE3D8A );
}

.stripes span {
    background-size: 30px 30px;
    /* background: #EE3D8A; */
    background: linear-gradient(to right, #F27023, #EE3D8A );
    border-radius: 20px;
    /* linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); */
    /* animation: animate-stripes 1s linear infinite; */
}

@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
} 

#upDiv{
    background-color: rgba(0,0,0,0.5);
    text-align:center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 9999px;
    z-index: 9999;
    visibility:hidden;
    display: 'block';
}
#upIcon{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100vh;
}
@keyframes moveTips {
  from {
    top:80%;
    opacity: 1;
  }

  to {
    top:50%;
    opacity: 0.5;
  }
}
@-webkit-keyframes moveTips {
  from {
    top:80%;
    opacity: 1;
  }

  to {
    top:50%;
    opacity: 0.5;
  }
}
#upIcon .handIcon{
     display: none;
     width: 136px;
     height: 181px;
     margin: -65px auto 0;
     position: relative;
     top:80%;
    -webkit-animation: moveTips 1s ease-in-out infinite;
     animation: moveTips 1s  ease-in-out infinite;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
     transform: scale(0.8);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
     transform-origin: center center;
     background-image: url("swipe.4d92a.png");
     background-repeat: no-repeat;
     background-position: center center;
}
.LegoBurst1 {
    display: block;
    position: fixed;
    bottom: 0%;
    left: 6%;
    width: 40%;
    height: 40%;
    -webkit-animation: BurstAnim1 10s ease-in-out infinite;
    animation: BurstAnim1 10s ease-in-out infinite;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    background-image: url("images/burst-new.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#LegoMC1 {
  position: fixed;
  bottom: 0%;
  left: 14%;
  width: 35%;
  height: 35%;
  -webkit-animation: LeftMove1 10s ease-in-out infinite;
  animation: LeftMove1 10s ease-in-out infinite;
  background-image: url("images/mc1-new.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.LegoBurst2 {
    display: block;
    position: fixed;
    bottom: 0%;
    right: 8%;
    width: 40%;
    height: 40%;
    -webkit-animation: BurstAnim2 10s ease-in-out infinite;
    animation: BurstAnim2 10s ease-in-out infinite;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    background-image: url("images/burst-new.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#LegoMC2 {
  position: fixed;
  bottom: 0%;
  right: 10%;
  width: 35%;
  height: 35%;
  -webkit-animation: LeftMove2 10s ease-in-out infinite;
  animation: LeftMove2 10s ease-in-out infinite;
  background-image: url("images/mc2-new.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#LegoTeam {
  position: fixed;
  top: 5%;
  bottom: 20%;
  /* left: 50%; */
  width: 100%;
  /* -webkit-animation: LeftMove1 10s ease-in-out infinite; */
  /* animation: LeftMove1 10s ease-in-out infinite; */
  background-image: url("images/AllChar.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#LoadingText {
  position: fixed;
  top: 83%;
  bottom: 13%;
  /* left: 50%; */
  width: 100%;
  /* -webkit-animation: LeftMove1 10s ease-in-out infinite; */
  /* animation: LeftMove1 10s ease-in-out infinite; */
  background-image: url("images/text_loading.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@-webkit-keyframes LeftMove1 {
  0% { left: -50%; }
  5% { left: -50%; }
  8% { left: 12%; }
  10% { left: 10%; }
  100% { left: 10%; }
}

@keyframes LeftMove1 {
  0% { left: -50%; }
  5% { left: -50%; }
  8% { left: 12%; }
  10% { left: 10%; }
  100% { left: 10%; }
}

@-webkit-keyframes BurstAnim1 {
  0% { -webkit-transform: scale(0.0); }
  8% { -webkit-transform: scale(0.0); }
  10% { -webkit-transform: scale(1.2); }
  12% { -webkit-transform: scale(1.0); }
  100% { -webkit-transform: scale(1.0); }
}

@keyframes BurstAnim1 {
  0% { transform: scale(0.0); }
  8% { transform: scale(0.0); }
  10% { transform: scale(1.2); }
  12% { transform: scale(1.0); }
  100% { transform: scale(1.0); }
}
@-webkit-keyframes LeftMove2 {
  0% { right: -50%; }
  5% { right: -50%; }
  8% { right: 12%; }
  10% { right: 10%; }
  100% { right: 10%; }
}

@keyframes LeftMove2 {
  0% { right: -50%; }
  8% { right: -50%; }
  11% { right: 12%; }
  13% { right: 10%; }
  100% { right: 10%; }
}

@-webkit-keyframes BurstAnim2 {
  0% { -webkit-transform: scale(0.0); }
  11% { -webkit-transform: scale(0.0); }
  13% { -webkit-transform: scale(1.2); }
  15% { -webkit-transform: scale(1.0); }
  100% { -webkit-transform: scale(1.0); }
}

@keyframes BurstAnim2 {
  0% { transform: scale(0.0); }
  11% { transform: scale(0.0); }
  13% { transform: scale(1.2); }
  15% { transform: scale(1.0); }
  100% { transform: scale(1.0); }
}

.loader {
  -webkit-animation: spinLoader 2s linear infinite;
  /* Safari */
  animation: spinLoader 2s linear infinite;
  transform-origin: center;
}

/* Safari */
@-webkit-keyframes spinLoader {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spinLoader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
body {
  background-color: black !important;
}
.icon {
  display: flex;
  background-size: contain;
}

.icon-settings {
  background-image: url(%PUBLIC_URL%/images/settings.svg);
}

.fullscreen {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}