/* 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);
	background-image: url('images/icon/preloader.gif');
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	color: black;
	background-size: 60px;
	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/icon/preloader.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 */