﻿/* ------------------------------- Inicio estilo del UpdateProgress (Loading) -------------------------------*/
div#loading {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-items: center;
    background: #ffffffe0;
    transition: all 1s;
}

.wrapper {
    width: 20vw;
    height: 8vh;
    position: relative;
    z-index: 1;
}

.circle {
    width: 10%;
    height: 50%;
    position: absolute;
    border-radius: 50%;
    background-color: #000080;
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
    0% {
        top: 90%;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
    background-color: #414141;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .4s;
    background-color: #0ac737;
}

.shadow {
    width: 10%;
    height: 10%;
    border-radius: 50%;
    background-color: #000050;
    position: absolute;
    top: 90%;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s;
    background-color: #000000;
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .4s;
    background-color: #0a8237;
}
