/*search loader starts here*/
.loader-con {
	position: fixed;
	top: 30%;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	width: 600px;
	min-height: 250px;
	background: #FFF url(../images/cloud.jpg) no-repeat center center;
	background-size: cover;
	z-index: 10002;
	border-radius: 20px;
	overflow: hidden;
}

.wait {
	margin: 2rem 0;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	color: #c51230;
}

.wait span {
	display: block;
	font-size: 18px;
	color: #000;
}

.plane {
	position: absolute;
	top: 120px;
	left: 0px;
	width: 200px;
	height: 100px;
	background: url(../images/plane-red.svg) no-repeat center center;
	background-size: 100%;
	-webkit-animation: linear infinite;
	-webkit-animation-name: planeAani;
	-webkit-animation-duration: 8s;
}

@-webkit-keyframes planeAani {
	0% {
		left: -200px;
	}

	100% {
		left: 100%;
	}

}