/* splash */
.splash-cover {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	display: table;
	z-index: 1000;
	cursor: wait !important;
	text-align: center;
	width: 100%;
	height: 100%;
}

.splash-cover > div {
	position: relative;
	display: table-cell;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	vertical-align: middle;
}

.splash-cover .splash-progress {
	display inline-block;
}

/* IE10 */
progress.splash-progress {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 200px;
}

/* Firefox */
progress.splash-progress::-moz-progress-bar { 
    background: #06f;	
}

/* Chrome */
progress.splash-progress::-webkit-progress-value {
    background: #06f;
}

/* Polyfill */
progress[aria-valuenow].splash-progress:before  {
    background: #06f;
}