html {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    /*background: url('fone_960_600.jpg') no-repeat center center fixed;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    margin: 0
}

::-webkit-scrollbar {
    display: none;
    width: 0px;
}

#unity-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

/*---*/

.fullscreen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #000000;
}

#loading-overlay {
    font-size: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#icon {
    max-width: 256px;
    max-height: 256px;
    height: 50%;
    border-radius: 10px;
    margin-bottom: 20px;
}

#progress-bar {
    border-radius: 5px;
    width: 90%;
    max-width: 250px;
    height: 20px;
    background: #242424;
    padding: 5px;
}

#progress-bar-fill {
    border-radius: 3px;
    width: 0%;
    height: 100%;
    background: #FF0000;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}