#loading{
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-container{
    max-width: 150px;
    width: 100%;
    position: relative;
}
.loader{
    width: 150px;
    height: 150px;
    border: 25px solid #333;
    border-radius: 50%;
    border-top: 25px solid rgb(46, 48, 252);
    animation: loading 2s linear infinite;
    -webkit-animation: loading 2s linear infinite;
    padding: 12px;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.12);
}
.loader-label{
    position: absolute;
    top: 62px;
    left: 55px;
    text-align: center;
}
@keyframes loading {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@-webkit-keyframes loading {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
#content{
    display: none;
}
