﻿/* ----------------------------- Loading animation ---------------------------- */
.ssoe-ajax-loading-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* When the body has the loading class, we turn the scrollbar off with overflow:hidden */
    overflow: hidden;
    background: rgba( 255, 255, 255, .6 ) url('https://cdnjs.cloudflare.com/ajax/libs/galleriffic/2.0.1/css/loader.gif') 50% 50% no-repeat;
    /* background: rgba( 255, 255, 255, .6 ) url('https://loading.io//spinners/typing/lg.-text-entering-comment-loader.gif') 50% 50% no-repeat; */
}

    /* Anytime the body has the loading class, our modal element will be visible */
    .ssoe-ajax-loading-modal.loading {
        display: block;
    }
