#loading_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1000;

    background-color: #0B1013;

    transition: opacity 1s ease-out;
}

.loading_content{
    text-align: left;
    width: 50%;
    height: 50%;

    display: flex;
    justify-content: center;
    align-items: left;
    
    flex-direction: column;
}

.loading_title{
    font-size: 25px;
    letter-spacing: 20px;
    font-weight: 300;

    margin-bottom: 25px;
    color: #a2d1ee;
}

.loading_bar{
    width: 100%;
    height: 1px;

    background: aliceblue;
    position: relative;
}

.percent_bar{
    width: 0%;
    height: 100%;

    background-color: #77B1D5;
    transition: width 0.3s;
}

.loading_text_content{
    display: flex;
    margin-top: 10px;
}

.loading_text_1{
    font-size: 10px;
    color: #7C94A3;

    width: 50%;
}

.loading_text_2{
    font-size: 10px;
    color: #7C94A3;

    width: 50%;
    text-align: right;
}

#main-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;

    opacity: 1;
    transition: opacity 1s ease-out;
    background-color: #0B1013;
}