#y-loading {background: #fff;height: 100%;position: fixed;width: 100%;z-index: 10000;top: 0;left: 0;right: 0;bottom: 0; display: none;}
#y-loading .y-loader {width: 15px;height: 15px;position: absolute;top: 50%;left: 0;right: 0;
	-webkit-transform: translate(0, -50%);
	-khtml-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);/* BACKGROUND GRADIENT *//* TRANSFORM STYLE */
	margin: auto;
	animation: y-loader 1s ease infinite;
	-moz-animation: y-loader 1s ease infinite;
	-webkit-animation: y-loader 1s ease infinite;
	-ms-animation: y-loader 1s ease infinite;
	-o-animation: y-loader 1s ease infinite; 
}
@keyframes y-loader {
	0%, 100% {
		box-shadow: -6px 20px 0 #f15b4e, 13px 20px 0 rgba(194, 151, 101, 0.2), 13px 39px 0 rgba(194, 151, 101, 0.2), -6px 39px 0 rgba(194, 151, 101, 0.2); 
	}
	25% {
		box-shadow: -6px 20px 0 rgba(194, 151, 101, 0.2), 13px 20px 0 #f15b4e, 13px 39px 0 rgba(194, 151, 101, 0.2), -6px 39px 0 rgba(194, 151, 101, 0.2); 
	}
	50% {box-shadow: -6px 20px 0 rgba(194, 151, 101, 0.2), 13px 20px 0 rgba(194, 151, 101, 0.2), 13px 39px 0 #f15b4e, -6px 39px 0 rgba(194, 151, 101, 0.2); 
	}
	75% {
		box-shadow: -6px 20px 0 rgba(194, 151, 101, 0.2), 13px 20px 0 rgba(194, 151, 101, 0.2), 13px 39px 0 rgba(194, 151, 101, 0.2), -6px 39px 0 #f15b4e; 
	}
}