html {height:100%;}

body{
    margin:0;
    padding:0;
    background-color:#000;
    overflow:hidden;
    height:100%;
}
/* #unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) } */
#unity-container{
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:0;
    overflow:hidden;
    max-width:100%;
    max-height:100%;
    min-width:100%;
    min-height:100%;
    box-sizing:border-box;
}
canvas { width: 50%; height: 100%; display: block;margin: 0 auto; } /*TODO USE THIS WHEN WANT IT TO PORTRAIT MODE*/
/*canvas { width: 100%; height: 100%;} TODO USE THIS WHEN WANT IT TO LANDSCAPE MODE */

/* #noAdMessage {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #372d80bf;
    color: white;
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
} */

#custom-logo, #custom-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#custom-logo {
    background-image: url('Loading Icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    width: 200px;
    height: 200px;
}

#custom-loader {
    margin-top: 155px;
    width: 80%;
    height: 50px;
    background: lightgray;
    box-shadow: 0px 0px 15px 5px black;
    border-radius: 25px; /* or any other value you prefer */
}

#custom-loader .fill {
    width: 0%;
    height: 100%;
    background: #645bb0;
    border-radius: 25px; /* or any other value you prefer */
}

#custom-loader .label {
    position: relative;
    top: -44px;
    font-size: 35px;
    text-align: center;
    font-family: sans-serif, calibri;
    color: white;
}
