body, html {
    margin:0; padding:0;
    background-color: #2d1255;
    overflow: hidden;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*with out this line ios safari in gd splash preloader has issue with dimmed box from splash preloader button */
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
}

.main-game-logo {
    background-image: url('../images/logo.png');
    height: min(50vh, 50vw);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.progress-bar {
    margin: auto;
    width: 50%;
    box-sizing: border-box;
    position: relative;
    top: 70vh;
}

.progress-bar-label {
    visibility: hidden;
    font-size: 3vh;
    font-family: 'Nunito-SemiBold', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
    color: white;
    margin: 0;
    padding: 1vh;
    text-transform: uppercase;
}

.meter-border {
    height: 5vh;
    padding: 0.5vh;
    position: relative;
    border-radius: 25px;
    box-sizing: border-box;
    background: rgb(236,97,255);
    background: linear-gradient(0deg, rgba(154,36,232,1) 0%, rgba(236,97,255,1) 100%);
}

.meter {
    height: 100%;
    position: relative;
    box-sizing: border-box;
    background: rgb(130,0,175);
    background: linear-gradient(0deg, rgba(130,0,175,1) 0%, rgba(106,0,174,1) 48%, rgba(100,0,177,1) 100%);
    border-radius: 25px;
    box-shadow:
        inset 7px 3px 8px 3px #5F1377,
        inset -7px -3px 8px 3px #3A0074;
}

.meter > span {
    display: block;
    box-sizing: border-box;
    position: relative;
    height: 100%;
    visibility: hidden;
    border-radius: 20px;
    border-style: solid;
    border-color: #49007A;
    background-color: #FF9B00;
    background-image: linear-gradient(
      180deg,
      #FF9B00 0%,
      #ffd152 15%,
      #ffd152 30%,
      #FF9B00 70%,
      #FF8300 100%
    );
    box-shadow:
        inset 2px -2px 4px 0px #FF2B00,
        inset -2px -2px 3px 0px #ff7300;
    overflow: hidden;
    transition: width 2s;
}

#contentPIXI {
    width: 100%;
    height: 100%;
    position: fixed;
}

#loader {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 99;
}
#loaderR,
#loaderR:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}
#loaderR {
    margin: 60px auto;
    font-size: 10px;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    margin-left: -5em;
    margin-top: -5em;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
#selectmode {
    margin: 60px auto;
    font-size: 10px;
    position: absolute;
    z-index: 100;
    left: 50%;
    top: 50%;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}