/* Make clicks pass-through */
#nprogress {
	pointer-events: none;
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background: #dedede;
}
#nprogress .bar {
	background: #cf012d;
	position: fixed;
	z-index: 1031;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}


#nprogress .peg {
	display: block;
	position: absolute;
	right: -20px;
	width: 40px;
	height: 20px;
	background: url('../images/loader-arrow.gif') no-repeat;
	bottom:0;
}

#nprogress .message{
	display: block;
	color: #ffffff;
	font-size: 24px;
	position: absolute;
	right:20px;
	top:50%;
	height: 50px;
	margin-top:-25px;
}

#nprogress .percent{
	display: block;
	color: #ffffff;
	font-size: 24px;
	position: absolute;
	right:20px;
	bottom:20px;
	font-size: 7em;
	color: #a00022;
}

.nprogress-custom-parent {
	overflow: hidden;
	position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
	position: absolute;
}

@-webkit-keyframes nprogress-spinner {
	0%   { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

