body {
    padding: 0;
    margin: 0;
    background-color: #0D1218
}

#unity-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0D1218;
}

    #unity-container.unity-desktop {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }

    #unity-container.unity-mobile {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

#unity-canvas {
    background: #0D1218;
    display: block;
    margin: auto
}

.unity-mobile #unity-canvas {
}

.unity-desktop #unity-canvas {
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    text-align: center;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

#unity-progress-bar-empty {
    width: 141px;
    height: 18px;
    margin: 10px auto 0 auto;
    background: url('twin-progress-bar-empty.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    margin-top: 10px;
    background: url('twin-progress-bar-full.png') no-repeat center;
}

#unity-loading-text {
    margin-top: 5px;
    font-size: 14px;
}

#unity-logo-container {
    margin-top: 10px;
}

#unity-logo-image {
    display: block;
    margin: 0 auto;
}

#unity-footer {
    position: relative
}

.unity-mobile #unity-footer {
    display: none
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

body.wrong-orientation #unity-container {
    display: none
}

#rotate-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0D1218;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

body:not(.wrong-orientation) #rotate-warning {
    display: none
}
