/* DataTables Processing indicator */
.dt-processing-overlay {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    z-index: 2000 !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 0.25rem 1rem rgba(161, 172, 184, 0.45) !important;
    margin: 0 !important;
    height: auto !important;
    width: auto !important;
    display: none !important;
    -ms-flex-align: center !important;
        align-items: center !important;
    -ms-flex-pack: center !important;
        justify-content: center !important;
}

/* Make spinner larger */
.dt-processing-overlay .spinner-border {
    width: 3rem !important;
    height: 3rem !important;
}

