﻿.loading-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    background-image: url('/_content/TerraPlayer.App.Components/images/splash/splash_bg.webp');
    background-position: center center;
    background-size: cover;
}

.loading-content {
    margin: auto 0;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    border-top: solid 1px #006b99;
    border-bottom: solid 1px #006b99;
}

.loading-bar {
    position: absolute;
    top: 0;
    width: var(--blazor-load-percentage, 0%);
    height: 200px;
    background-color: #006b99;
}

.loading-logo {
    position: relative;
    z-index: 100;
    margin: auto;
    height: 150px;
}

.loading-logo img {
    width: 150px;
    height: 150px;
    margin-bottom: 50px;
}

@media (min-width: 576px) {
    .loading-content,
    .loading-bar {
        height: 250px;
    }

    .loading-logo {
        height: 200px;
    }

    .loading-logo img {
        width: 200px;
        height: 200px;
    }
}