body{
    overflow: hidden;
}

#pageLoader{
    z-index: 20;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgb(255,255,255);
}
#loaderCont{
    box-sizing: border-box; display: table;
    position: relative;
    height: 100%;
    margin: auto;
}
#loaderPush{
    display: table-cell; vertical-align: middle;
    position: relative;
    height: 100%;
}
#loadTitle{
    padding: 0px 20px 0px 20px;
    color: rgb(40,40,40); font-family: built titling; font-size: 100px;/* text-shadow: 0px 0px 20px rgba(0,0,0,0.5); */line-height: 100px; text-align: center;
}
#loadLabel{
    padding: 0px 20px 0px 20px;
    color: rgb(190,190,190); font-family: built titling light; letter-spacing: 2px; font-size: 25px;
}
#loadingBar{
    position: relative;
    width: 250px; height: 5px;
    background: rgba(235,235,235,1);
    margin: 20px auto 0px auto;
}
#loader{
    position: absolute; left: 0;
    height: 5px; width: 0%;
    background: rgb(40,40,40);
    animation: loading 2s ease-in-out 0s infinite normal;
}
#loadNotice{
    margin: 20px 0px 20px 0px;
    font-family: gravity; color: rgb(235,235,235);
    text-align: center;
}
#loadNotice span{
    color: rgb(180,180,180);
}


@media screen and (max-width: 1000px){
    #loadTitle{
        font-size: 70px; line-height: 70px;
    }
    #loadLabel{
        font-size: 18px; letter-spacing: 1px;
    }
    #loadingBar{
        width: 200px;
    }
}
@media screen and (max-width: 600px){
    #loadTitle{
        font-size: 50px; line-height: 50px;
    }
    #loadingBar{
        width: 150px;
    }
}
@media screen and (max-width: 400px){
    #loadTitle{
        font-size: 45px; line-height: 45px;
    }
    #loadingBar{
        margin-top: 10px; width: 100px;
    }
    #loadLabel{
        font-size: 17px; letter-spacing: 1px;
    }
}





/*#pageLoader{
    z-index: 11;
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background:  linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url(Resources/head2.jpg) no-repeat bottom; background-size: cover; background-color: rgb(40,40,40);
    transition: 0.2s;
}
#loaderCont{
    box-sizing: border-box;
    position: relative;
    width: 100%; height: 100%;
}
#loaderPush{
    position: absolute; bottom: 10%; left: 150px;
}
#loadTitle{
    color: rgb(235,235,235); font-family: built titling; font-size: 190px;line-height: 170px;
}
#loadLabel{
    color: rgb(190,190,190); font-family: built titling light; letter-spacing: 4px; font-size: 50px;
}
#loadingBar{
    position: absolute; top: 0; left: 0;
    width: 100%; height: 5px;
    background: rgba(235,235,235,0.4);
}
#loader{
    position: absolute; left: 0;
    height: 5px; width: 0%;
    background: rgb(235,235,235);
    animation: loading 2s ease-in-out 0s infinite normal;
}*/
@keyframes loading{
    0%{
        
    }
    25%{
        width: 100%; margin-left: 0px;
    }
    50%{
        width: 0%; margin-left: 100%;
    }
    75%{
        width: 100%; margin-left: 0px;
    }
    100%{
        width: 0%;
    }
}

/*@media screen and (max-width: 1600px){
    #loadTitle{
        font-size: 150px; line-height: 140px;
    }
    #loadLabel{
        font-size: 45px;
    }
}
@media screen and (max-width: 1400px){
    #loaderPush{
        left: 10%;
    }
}
@media screen and (max-width: 1000px){
    #loadTitle{
        font-size: 100px; line-height: 90px;
    }
    #loadLabel{
        font-size: 38px;
    }
    #loaderPush{
        right: 10%;
    }
}
@media screen and (max-width: 500px){
    #loadTitle{
        font-size: 70px; line-height: 70px; word-spacing: 100vw;
    }
    #loadLabel{
        font-size: 20px;
    }
}*/