/*
@author: http://coderexample.com
@reference : http://codepen.io/msisto/pen/LntJe
*/
 .dataTables_processing.card{
    position: absolute!important;
    top: 50%!important;
    left: 50%!important;
    right: 0!important;
    bottom: 0!important;
    margin: -15px 0 -15px!important;
    height: 40px!important;
    width: 40px!important;
    z-index:5!important; 
        
   -webkit-animation: rotation .6s infinite linear;
   -moz-animation: rotation .6s infinite linear;
   -o-animation: rotation .6s infinite linear;
   animation: rotation .6s infinite linear;
/*   border-left:6px solid rgba(0,174,239,.15);
   border-right:6px solid rgba(0,174,239,.15);
   border-bottom:6px solid rgba(0,174,239,.15);
   border-top:6px solid rgba(0,174,239,.8);*/
   border-left:6px solid rgba(0, 0, 0,.15);
   border-right:6px solid rgba(0, 0, 0,.15);
   border-bottom:6px solid rgba(0, 0, 0,.15);
   border-top:6px solid rgba(0, 0, 0,.8);
   border-radius:100%;
        
}

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}
