/**--------------------------------------
 * @package     ruxin_preloader - Ruxin Preloader
 * @copyright   Copyright (C) 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later.
 * ---------------------------------------**/

#ruxin_preloader {
	width: 100% !important;
	height: 100% !important;
	z-index: 99999;
	position: fixed;
	background: #ff4949;
	text-align: center;
	top: 0;
	left: 0;
}
#ruxin_preloader img {
	padding: 0;
	margin: 0 auto 30px;
	display: table;
}
#ruxin_preloader h4 {
	color: #fff;
	font-size: 16px;
}

.loader{
	width: 65px;
	height: 65px;
	margin: 90px auto 40px;
	position: relative;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.loader .box-1,
.loader .box-2,
.loader .box-3,
.loader .box-4{
	width: 10px;
	height: 60px;
	background: #ffffff;
	border-radius: 4px;
	float: left;
	margin-left: 5px;
}
.loader .box-1{
	-webkit-animation: loading-1 0.2s linear infinite alternate;
	animation: loading-1 0.2s linear infinite alternate;
}
.loader .box-2{
	-webkit-animation: loading-1 0.4s linear infinite alternate;
	animation: loading-1 0.4s linear infinite alternate;
}
.loader .box-3{
	-webkit-animation: loading-1 0.6s linear infinite alternate;
	animation: loading-1 0.6s linear infinite alternate;
}
.loader .box-4{
	-webkit-animation: loading-1 0.8s linear infinite alternate;
	animation: loading-1 0.8s linear infinite alternate;
}
@-webkit-keyframes loading-1{
	0%{ height: 15px; }
	100%{ height: 60px; }
}
@keyframes loading-1{
	0%{ height: 15px; }
	100%{ height: 60px; }
}
