.loaderWrapper {
    margin: auto;
    padding-top: 1rem;
    top: 30%;
    width: 25%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3rem;
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.9);
}
.loader {
    border-radius: 50%;
    width: 6.25rem;
    height: 6.25rem;
    margin: auto;
    font-size: 0.625rem;
    border-top: 0.6875rem solid rgba(150, 150, 150, 0.2);
    border-right: 0.6875rem solid rgba(150, 150, 150, 0.2);
    border-bottom: 0.6875rem solid rgba(150, 150, 150, 0.2);
    border-left: 0.6875rem solid #ffffff;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#loadingText {
    padding: 2rem;
    width: 100%;
    text-align: center;
}
#loadingDiv {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
}
