/* CSS Document */
@keyframes whileloading {
    0% {
        width: 6px;
        background: cornflowerblue;
    }
    50% {
        width: 33%;
        background: limegreen;
    }
    100% {
        width: 6px;
        background: cornflowerblue;
    }
} 
div#loadScreen {
    display: none;
}
div#loadScreen.visible {
    position: fixed;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2147483646;
    text-align: center;
    box-sizing: border-box;
    flex-direction: column;
}
div#loadScreen.visible > div.text {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0px 24vw 24px 24vw;
    text-align: center;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.25rem;
    flex-direction: column;
    position: absolute;
    margin-top: -153px;
}
div#loadScreen.visible > div.balken {
    display: inline-flex;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0);
    animation-name: whileloading;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    animation-delay: 0.5s;
    border-radius: 3px;
    position: absolute;
    margin-top: -110px;
}
div#loadScreen.visible > a.escape {
    text-decoration: none;
    color: white;
    background: red;
    box-sizing: border-box;
    padding: 20px 42px;
    font-size: 2rem;
    border-radius: 48px;
    margin-top: 77px;
    line-height: 1;
    opacity: 0.3;
}
small#loadingCounter { 
    
    display: inline-flex;
    box-sizing: border-box;
    padding: 34px 8px 4px 8px;
    line-height: 1;
    min-width: 71%;
    font-size: x-large;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: -64px;
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.75);
    
    
}