.progress-bar {
	border-radius: 65px;
	height: 26px;
	position: relative;
	background: #555;
	padding: 3px;
	box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
	
	background-size: 30px 30px;
	background-image: linear-gradient(
		135deg,
		rgba(255, 255, 255, .15) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, .15) 50%,
		rgba(255, 255, 255, .15) 75%,
		transparent 75%,
		transparent
	);
	animation: animate-stripes 0.6s linear infinite;
	animation-duration: 3.25s;
}

#pbar {
	border-radius: 65px;
	display: block;
	height: 100%;
	background-color: rgb(255, 250, 20);
	background-image: linear-gradient(center bottom, rgb(43,194,83) 37%,rgb(84,240,84) 69%);
	box-shadow: 
	inset 0 2px 9px  rgba(255,255,255,0.3),
	inset 0 -2px 6px rgba(0,0,0,0.4);
	position: relative;
	overflow: hidden;
	width: 0%;
	
	background-size: 30px 30px;
	background-image: linear-gradient(
		135deg,
		rgba(0, 0, 0, .15) 25%,
		transparent 25%,
		transparent 50%,
		rgba(0, 0, 0, .15) 50%,
		rgba(0, 0, 0, .15) 75%,
		transparent 75%,
		transparent
	);
	animation: animate-stripes 0.6s linear infinite;
	animation-duration: 3.25s;
}

@font-face {
    font-family: krabuler;
    src: url(RF-Krabuler-Regular.ttf);
}

#progress-text {
	font-size: 1.2em;
	color: #fff; 
	font-family: krabuler, 'Helvetica Neue', sans-serif;
	text-align: center;
	position: fixed;
    text-shadow:
		-0.07em -0.07em 0 #000,
		0   -0.07em 0 #000,
		0.07em -0.07em 0 #000,
		0.07em  0   0 #000,
		0.07em  0.07em 0 #000,
		0    0.07em 0 #000,
		-0.07em  0.07em 0 #000,
		-0.07em  0   0 #000;
}

#version-text {
	font-size: 0.8em;
	color: #fff; 
	font-family: Verdana, sans-serif;
	text-shadow:
		-0.07em -0.07em 0 #555,
		0   -0.07em 0 #555,
		0.07em -0.07em 0 #555,
		0.07em  0   0 #555,
		0.07em  0.07em 0 #555,
		0    0.07em 0 #555,
		-0.07em  0.07em 0 #555,
		-0.07em  0   0 #555;
}

body{
  user-select: none; 
  margin: 0px; 
  padding: 0px;
  
  /* 
  overflow: hidden; 
  width: 100%;
  height: 100%;
  */
  
  text-align: center; 
  
  background-image: url("bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 0;
    }
}

#header {
	margin: 0px; 
	padding: 0px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 96px; 
	overflow: hidden;
}
	
main {
	position: fixed;
	margin: 0px; 
	padding: 0px;
	top: 0px;
	left: 0; 
	right: 0;
	bottom: 0;
	overflow: hidden;
}
