.loading-box{
	bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;	
	opacity:0;
	visibility:hidden;
	transition:all 0.2s ease;
	background-color:#000;
}
.loading-box.active{
	opacity:0.3;
	visibility:visible;
}
.loading-box-content{
	background: url('/assets/core/jquery/plugin/loading/images/loading.gif') no-repeat center 40%;
	bottom: 0;
    right:0;
    top:0;
    left:0;
    width:100%;
    height:100%;
	margin: auto;
    position: fixed;
}

.loading-box-text{
	text-align:center;
	color:#fff;
	margin: auto;
    right:0;
    top:50%;
    left:0;
    width:50%;
    position: fixed;
}