
/*# sourceMappingURL=custom.min.css.map */

        
.spinner {
    display: none;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #7983ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 50px;
    margin-left: -20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}        

.table-responsive {
    position: relative;
    min-height: 200px; /* Puedes ajustar la altura mínima para que tenga más espacio */
}

.loading-container {
    position: absolute;
    top: 120px; /* A 120px del borde superior */
    left: 50%; /* Llevar el div al centro horizontal */
    transform: translateX(-50%); /* Ajustar para centrar completamente el contenedor */
    width: 100%; /* Ocupar el ancho completo */
    display: flex;
    justify-content: center; /* Centrar la imagen horizontalmente */
    align-items: center;
}

.loading-wrapper {
    text-align: center;
}

.loading-gif {
    width: 40px; /* Ancho del GIF */
    height: 40px; /* Altura del GIF */
}