.spinner-loading {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(245, 248, 250);
}

.spinner-loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 16px solid #cecece;
    border-top: 16px solid #3097D1;
    border-radius: 50%;
    width: 50px;
    height: 50px;

    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


div.dataTables_wrapper div.dataTables_processing {
    z-index: 9998;
}