#loadingOverlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.822);
    z-index: 100;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    display: none;
}

#loadingContent {
    margin-top: 260px;
}

#loadingAnimCont {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#loadingOverlay p {
    color: hsl(48, 100%, 75%);
    font-size: 19px;
}





#loadingAnimation {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    color: hsl(48, 100%, 50%);
}

#loadingAnimation:before,
#loadingAnimation:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1.3s spin linear infinite;
}

#loadingAnimation:after {
    color: hsl(48, 100%, 75%);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .7em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .7em .7em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 .7em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.7em .7em 0 0 currentcolor;
    }
    50% {
        box-shadow: -.7em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -.7em -.7em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -.7em 0 0 currentcolor;
    }
    87% {
        box-shadow: .7em -.7em 0 0 currentcolor;
    }
}