
#loading{
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999999999;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}



button{
	transition: .3s;
}
.demo-pages button {
	margin: 0 10px;
}
.demo-pages button.active{
	color: #222;
	background: #FF9C43;
}
.plugin-logo img {
	width: 145px;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 25px;
}

.preloader-icon{
	width: 90px;
	height: 90px;
	animation: pulse-p 1s infinite ease-in-out alternate;
}

.preloader-icon img{
	width: 90px;
	height: 90px;
}


@keyframes pulse-p {
  from { transform: scale(0.8); }
  to { transform: scale(1.2); }
}