@charset "utf-8";
/* CSS Document */

.loader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	float: left;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px;
	z-index: 9999999;
	background: #fff;
	transition: .3s all ease;
}

.loader.loaded {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.loader.ending {
	display: none;
}

[data-x-mode="design-mode"] .loader {
	display: none;
}

.page-loader-image {
	display: block;
	text-align: center;
}

.page-loader-body {
	margin-top: 90px;
	text-align: center;
}

.cssload-container {
	width: 100%;
	height: 70px;
	text-align: center;
	position: relative;
}

.cssload-speeding-wheel {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	border: 3px solid #C11E32;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	animation: cssload-spin .88s infinite linear;
    opacity: 0;
}

.cssload-logo{position:absolute;
	left: 50%;
  	top: 50%;
	transform: translate(-50%, -50%);
}
.cssload-logo img{width:150px; height:auto;animation: fadeInAnimation 1.5s ease;}
.cssload-logo.ifadeout img{animation: fadeOutAnimation .5s ease;}
.load.allfadeout {animation: fadeOutAnimation 2s ease;}

@keyframes cssload-spin {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(1.3);
    }
    50%{opacity: 1;transform: translateY(0px) scale(1);}
    100% {
        opacity: 1;
     }
}
@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
        
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
     }
}
@keyframes LoadfadeOutAnimation {
    0% {
        opacity: 1;
        
    }
    100% {
        opacity: 0;
     }
}


