#ajaxFromMask {
    position: fixed;
    background: rgba(255,255,255,0.7);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#ajaxFromMask .loading {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
}

#ajaxFromMask .loading .icon {
    width: 70px;
    animation: loading 3s linear infinite;
    fill: transparent;
}

#ajaxFromMask .loading .icon .inner{
    stroke-dashoffset: 0;
    stroke-dasharray: 300;
    stroke-width: 12;
    stroke-miterlimit: 12;
    stroke-linecap: round;
    animation: loading-circle 2s linear infinite;
    stroke: #5c5c5c;
    fill: transparent;
}

@keyframes loading {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg);}
}
@keyframes loading-circle {
    0% { stroke-dashoffset: 0 }
    100% { stroke-dashoffset: -600;}
}