#loading{
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    z-index: 900;
}
#loading.hide{
    display: none;
}
#loading_elements{
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loading_circle_out{
    position: relative;
    width: 130px;
    height: 130px;
    border-top: 4px solid #00B127;
    border-radius: 50%;
    display: flex;
    align-items: center;
    animation: loading_circle_out 2.5s linear infinite;
}
#loading_circle_out i{
    position: absolute;
    top: -10px;
    left: 50px;
    color: #00ff37;
}

#loading_circle_in{
    position: absolute;
    width: 100px;
    height: 100px;
    border-top: 3px solid #005FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    animation: loading_circle_in 2s linear infinite;
}
#loading_circle_in i{
    position: absolute;
    top: -6px;
    left: 46px;
    color: #3e85ff;
    transform: scale(-1);
    font-size: 12px;
}
#loading_texts{
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#loading_texts h2{
    color: white;
    font-weight: bold;
    letter-spacing: -1px;
}
#loading_texts h6{
    color: #00ff37;
    font-weight: 400;
}

@keyframes loading_circle_out{
    0%{
        transform: rotateZ(0deg);
    }
    100%{
        transform: rotateZ(360deg);
    }
}

@keyframes loading_circle_in{
    0%{
        transform: rotateZ(0deg);
    }
    100%{
        transform: rotateZ(-360deg);
    }

}