.ajax-loader
{
    display: inline-block;
    width: 15px;
    height: 15;
    border: 12px solid #0d6efd;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1.3s linear infinite;
}

@keyframes spin
{
    from { transform: rotate(0deg);   opacity: 0.3; }
    50%  { transform: rotate(180deg); opacity: 1.0; }
    to   { transform: rotate(360deg); opacity: 0.3; }
}


.gif-loader {
    background: url('/New_Theme/assets/images/icons/loading.gif') no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}
  