﻿
.hidden{
    display: none;
}

.load-image {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    right: 0;
    margin-top: -55px;
}

.load-image img {

    width: 65%;
}

.app-view.is-loading {
    transition: filter .15s ease;
    pointer-events: none; /* optional: block clicks */
    user-select: none;
}


.load-message {
    color: white;
}

.load-container {
    z-index: 999999;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    /*mix-blend-mode: blur;*/
    padding: 2rem;
    height: fit-content;
    width: fit-content;
    margin: auto;
    border-radius: 20px;
    /* Blur the background behind the overlay */
    -webkit-backdrop-filter: blur(var(--blur, 50px));
    backdrop-filter: blur(var(--blur, 50px));
}

@keyframes blur {
    100% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
    }

    0% {
        -webkit-filter: blur(50px);
        -moz-filter: blur(50px);
        -o-filter: blur(50px);
        -ms-filter: blur(50px);
    }
}

.load-progress {
    width: 100%;
    background-color: grey;
    border-radius: 10px;
}

.load-bar {
    height: 20px;
    border-radius: 10px;
    background-color: white;
    transition-property: width;
    transition-timing-function: linear;
    transition-duration: 0.5s; /* default, we override from JS */
}

@keyframes move {
    0% {
        width: 1%;
    }

    100% {
        width: 100%;
    }
}


/* Blur the actual page content */
/*#page.is-bundle-loading {
    filter: blur(12px);
    transition: filter .2s ease;
}*/

/* Fullscreen overlay */
/*.bundle-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* Card like the CodePen concept */
/*.bundle-card {
    color: #fff;
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(0,0,0,.55);
    text-align: center;
    min-width: 320px;
}

.bundle-progress {
    width: 360px;
    max-width: 75vw;
    height: 16px;
    background: rgba(255,255,255,.25);
    border-radius: 10px;
    margin-top: 14px;
    overflow: hidden;
}

.bundle-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width .25s ease;
}

.bundle-percent {
    margin-top: 10px;
    font-size: 14px;
    opacity: .9;
}*/

