.vnt-loading{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	-webkit-transition: all 0.1s ease 0.3s;
	-o-transition: all 0.1s ease 0.3s;
	transition: all 0.1s ease 0.3s;
}
.vnt-loading:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: #15375e;
	-webkit-transition: all 0.1s ease 0.3s;
	-o-transition: all 0.1s ease 0.3s;
	transition: all 0.1s ease 0.3s;
}
.vnt-loading:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: #15375e;
	-webkit-transition: all 0.1s ease 0.3s;
	-o-transition: all 0.1s ease 0.3s;
	transition: all 0.1s ease 0.3s;
} 
.img-loading{
	position: absolute;
	left: 50%;
	bottom: 50%;
	-webkit-transform: translate(-50%,50%);
	-ms-transform: translate(-50%,50%);
	-o-transform: translate(-50%,50%);
	transform: translate(-50%,50%);
    z-index: 1;
    text-align: center;
}
.img-loading:before {
	width: 100%;
	height: 100%;
	position: absolute;
	/*-webkit-box-shadow: 0px 0px 20px #fff;
    -moz-box-shadow: 0px 0px 20px #fff;
    box-shadow: 0px 0px 20px #fff;/**/
	background-color: rgba(21,55,94,0.3);
	content: "";
	left: 0;
	top: 0;
	border-radius: 100%;
	animation: shadow 2s infinite ease;
	-webkit-animation: shadow 2s infinite ease;
	-moz-animation: shadow 2s infinite ease;
	-o-animation: shadow 2s infinite ease;
	-webkit-transition: all 2s ease;
	-o-transition: all 2s ease;
	transition: all 2s ease;
}

.img-loading:after {
	width: 100%;
	height: 100%;
	position: absolute;
	/*-webkit-box-shadow: 0px 0px 20px #fff;
    -moz-box-shadow: 0px 0px 20px #fff;
    box-shadow: 0px 0px 20px #fff;/**/
	background-color: rgba(21,55,94,0.15);
	content: "";
	left: 0;
	top: 0;
	border-radius: 100%;
	animation: shadow 3s 1000ms infinite;
	-webkit-animation: shadow 3s 1000ms infinite;
	-moz-animation: shadow 3s 1000ms infinite;
	-o-animation: shadow 3s 1000ms infinite;

	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.img-loading img{
	display: block;
	position: relative;
	z-index: 99;
}
/*===================================================================================*/
/*===================================================================================*/
/*===================================================================================*/
/*===================================================================================*/
body.animsition.show-load .vnt-loading{
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
}
body.animsition.show-load .vnt-loading:after,
body.animsition.show-load .vnt-loading:before{
	height: 0;
}
body.animsition{
	overflow: hidden;
	height: 100vh;
}
@media screen and (max-width: 991px) {
	.img-loading,
	.img-loading img {
		width: 140px !important;
		height: 140px !important;
	}
}