#loader{
    background: white;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}




#loader .title_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: max-content;
    max-width: 100%;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
}


#loader .title{
    font-size: min(5.5em, 12vw);
    font-weight: 100;
    text-align: center;
    background: linear-gradient(to right, var(--main-orange), var(--main-blue-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#loader .sub_title{
    font-size: min(1.1em, 4vw);
    color: #aeaeae;
    font-weight: 100;
    text-align: center;
}






#loader .label{
    font-size: min(1.5em, 5vw);
    color: #848484;
    font-weight: 100;
}


#loader .loading_progress{
    font-size: 2em;
    font-weight: 100;
    color: #7e7e7e;
}


#loader .progress_bar_container{
    width: 20em;
    height: 0.5em;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #eeeeee;
}


#loader .progress_bar_container .progress_bar{
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--main-orange), var(--main-blue-green));
    width: 100%;
    max-width: 0;
    transition: 0.25s max-width ease-in-out;
}



