/* Loading Class START*/

.aiLoading, .aiLoading-right
{
	position:relative;
	pointer-events: none;
}
    .aiLoading::before {
        content: '';
        border-radius: inherit;
        /*background-color: rgba(255, 255, 255, 0.78);*/ /*REMOVED:THIS CODE IS COMMENTED DUE TO NO NEED TO SHOW WHILE LAYER ON EACH PLAY BY SADIA MAM. || AMJAD || 07-JAN-2021*/
        background-color: rgba(255, 255, 255, 0);
        /*background-image: url('../images/ajax-loader-trans.gif');*/
        /*background-image: url('../assets/loader2.gif');*/ /*REMOVED:THIS CODE IS COMMENTED DUE TO NO NEED TO SHOW WHILE LAYER ON EACH PLAY BY SADIA MAM. || AMJAD || 07-JAN-2021*/
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        color: black;
        background-size: 28px;
        background-repeat: no-repeat;
        background-position: 50%;
        z-index: 1000000000000;
    }

.aiLoading-right::before {
    content: '';
    border-radius: inherit;
    background-color: rgba(233, 233, 233, 0.33);
    /*background-image: url('../images/ajax-loader-trans.gif');*/
    background-image: url('../assets/loader2.gif');
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    color: black;
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: calc( 100% - 15px);
    z-index: 1000000000000;
}

/* Loading Class END */