@charset "utf-8";
/* CSS Document */

/*========================================================================================================*/
/*   loding page    */
.classloading{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #285D93;
	position: fixed;
	top: -600%;
	animation: zizotop 30s;
	z-index: 100000;
}
@keyframes zizotop{
	from{
		top: 0;
	}
	to{
		top: 0;
	}

}
.loder{
	position: relative;
	width: 400px;
	height: 400px;
	background: #285D93;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
	overflow: hidden;
}
.loder span{
	position: absolute;
	display: block;
}
.loder span:nth-child(1){
	top: 0;
	left: -100%;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg , transparent , #bea139);
	animation: animate1 2s linear infinite;
	animation-delay: 0s;
}
@keyframes animate1 {
	0%
	{
		left: -100%;
	}
	50%,100%
	{
		left: 100%;
	}
}
.loder span:nth-child(3){
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 5px;
	background: linear-gradient(270deg , transparent , #bea139);
	animation: animate3 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate3 {
	0%
	{
		right: -100%;
	}
	50%,100%
	{
		right: 100%;
	}
}
.loder span:nth-child(2){
	top: -100%;
	right: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg , transparent , #bea139);
	animation: animate2 2s linear infinite;
	animation-delay: 0.5s;
}
@keyframes animate2 {
	0%
	{
		top: -100%;
	}
	50%,100%
	{
		top: 100%;
	}
}
.loder span:nth-child(4){
	bottom: -100%;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(360deg , transparent , #bea139);
	animation: animate4 2s linear infinite;
	animation-delay: 1.5s;
}
@keyframes animate4 {
	0%
	{
		bottom: -100%;
	}
	50%,100%
	{
		bottom: 100%;
	}
}
.loder h3{
    width: auto;
	line-height: 30px;
	margin: 20px;
	overflow: hidden;
	border-right: 1px solid #fff;
	font-size: 20px;
	font-weight: 100;
	height: 30px;
	opacity: 0;
	animation: typing1 10s steps(25)infinite;
}
.loder h4{
    width: auto;
	overflow: hidden;
	border-left: 1px solid #fff;
	font-size: 18px;
	font-weight: 100;
	direction: rtl;
	height: 30px;
	opacity: 0;
	animation: typing2 5s steps(25)infinite;
}
@keyframes typing1{
	0%
	{
		opacity: 0;
	}
	30%
	{
		opacity: 1;
	}
}
@keyframes typing2{
	0%
	{
		opacity: 0;
	}
	30%
	{
		opacity: 1;
	}
}