*{
    box-sizing: border-box;
}

#noscript {
    font-size: 24px;
    font-weight:bold;
    position: absolute;
    display:none;
    color:#FFF;
    z-index: 15;
    top: 0%;
    left: 0%;
    bottom:0%;
    right:0%;
}
body {
    overflow: hidden;
    background-color: #000;
    background-size: 100% 100%;
    position: relative;
}
#logo {
    max-height: 50%;
    max-width: 100%;
    height: auto;
}
#loadingBlocker {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}
#BlockerMessage{
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 4vw;
    margin-bottom: 35px;
}
.loading-bar{
    display: block;
    max-width:100%;
    max-height:100%;
    flex-shrink: 0;
    z-index: 1;
    width: 100%;
    height: 20px;
    left: 0%;
    background-color: #808080;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #FF0000;
}

.loadingObjects{
    position: absolute;
    top: 60%;
    width: 100%;
}

#loadingWrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;    
}

#loadingScreenCont{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#loadingContent{                
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 20px;
}            

.hidden {
    display: none !important;
}

#templateCont{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loadingdotsdiv{
    white-space: nowrap;
    font-size: 0px;
}

.loading-dot {
    margin: 0 8px;
    display: inline-block;
    			
    background-color: red;
    border-radius: 50%;
    opacity: 0;
    animation-name: loading-dots;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.loading-dot.one { animation-delay: 0.2s;  }
.loading-dot.two { animation-delay: 0.4s; }
.loading-dot.three { animation-delay: 0.6s; }

#loadingFooter{
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    color: white;
    width: 100%;
    bottom: 8%;
    box-sizing: border-box;
    font-size: 18px;
}

.loadingMessage{       
    background-color: rgba(0, 0, 0, 0.6);
    padding: 7px 10px;
    display: none;
}

@keyframes loading-dots{
    0% { opacity: 0; }
    50%, 60% { opacity: 1; }
    100% { opacity: 0; }
}

@media(orientation: landscape){
    #loadingContent{
        width: 30%;
        height: 50%;
    }

    .loading-dot{
        width: 25px;
        height: 25px;
    }

    .loading-bar{
        height: 25px;
    }
}

@media(orientation: portrait){
    #loadingContent{
        width: 50%;
        height: 30%;
    }

    .loading-dot{
        width: 20px;
        height: 20px;
    }

    .loading-bar{
        height: 20px;
    }
    #BlockerMessage{
        font-size: 6vw;
    }
}

@media(max-height: 700px){    
    .loading-dot{
        width: 15px;
        height: 15px;
    }

    .loading-bar{
        height: 15px;
    }

    #loadingFooter{
        bottom: 0;
        font-size: 12px;
    }
}