.loading .loading-container {
    display: block;
    position: fixed;
    top: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background: transparent;
}

.loading .fill {
    background: radial-gradient(ellipse at center, var(--primary-color) 0%, rgba(0,0,0,1) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 70%;
}

.loading .graphic {
    width: 200px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading .circle {
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 50%;
    border: solid;
    border-color: white;
    border-width: 2px;
    background-color: red;
    background-color: var(--secondary-color);
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.loading .circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
}

.loading .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.loading .shadow {
    width: 30px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

.loading .loading-text {
    position: absolute;
    top: 65%;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    color: #fff;
    width: 100%;
    text-align: center;
    max-width: 100%;
    padding: 0.5rem;
    line-height: 2rem;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.loading .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.loading .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}