.loading-modal{
    border-radius: 1rem !important;
    width: 25rem !important;
    height: 15rem !important;
    /* background-color: var(--color-white-bold); */
    box-shadow: 0 0 15px 0 rgba(0,0,0,50%) !important;
}

.loading-modal .ui-dialog-content{
    border: none !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* contenedor principal */
.container-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
}

/* contenedor texto... */
.loading-text {
    /* color: var(--color-blue-title); */
    font-size: 2rem !important;
    font-weight: bold;
}

/* puntitos ... con animacion */

.dot {
    margin-left: .2rem;
    animation: blink 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes blink {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* contenedor de barra (fondo) */
.loading-bar-background {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: .25rem;
    width: 15rem;
    height: 1.75rem;
    /* background-color: #212121; */
    box-shadow: 2px 2px 2px 2px #00000040;
    border-radius: 1rem;
}

/* barra con animacion */
.loading-bar {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 0;
    height: 1.25rem;
    overflow: hidden;
/*
    background: linear-gradient(0deg, rgba(222, 74, 15, 1) 0%, rgba(249, 199, 79, 1) 100%) !important;

    background: linear-gradient(0deg, rgba(0, 50, 255, 1) 0%, rgba(0, 220, 255, 1) 100%) !important;
*/
    border-radius: 1rem;
    animation: loading 4s ease-out infinite;
}

/* contenedor de barritas inclinadas internas */
.white-bars-container {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* barritas blancas inclinadas */
.white-bar {
    background: linear-gradient(
            -45deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 70%
    );
    width: .75rem;
    height: 3rem;
    opacity: 0.3;
    rotate: 45deg;
}

@keyframes loading {
    0% {
        width: 0;
    }
    80% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}
