/*.loader{*/
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*z-index: 9999;*/

    /*background: rgba(0,0,0,.5);*/
    /*color: white;*/
/*}*/
.containerLoader.jTable-loaderContainer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(250,251,252,.5);
}
.jTable-loaderContainer .loader {
    border: 5px solid #5981bd; /* Light grey */
    border-top: 5px solid #fff; /* Blue */
    background-color: #114aa1;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 123;
}
.mainLoader{
    content: '';
    background-color: #114aa1;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulse {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.1;
    }
}
.jTable-loaderContainer .pulse {
    animation: pulse 0.7s infinite;
    animation-direction: alternate;
}
.jTable-loaderContainer .logoLoader{
    position: absolute;
    top: 70%;
    bottom: 0;
    left: 35%;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    z-index: 999;
}