
.blockUI {
    border: none!important;
    z-index: 1150!important;
    /*top: 40%;*/
    /*left: ;*/
}

#throbber {
    display: none; /* Inicialmente oculto, visible con JavaScript */
    position: static;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
}

#throbber img{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto;
    width: 100%; height: 100%;
    position: relative;
    /*animation: rotate 3s linear infinite;*/
}

#throbber .throbber-text {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: rgb(21, 98, 241);
    top: 40%; left: 33%;
    animation: pulse 2s infinite;
    z-index: 5;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}