#main-progress, .sub-progress {
	position: relative;
}

#main-progress { 
	height: 3em;
	margin: 1em;
	margin-top: 1.5em;
	border-radius: 3em;
 	background-image: url("pinstripes.png");
	background-color: rgba(0, 0, 0, 0.9);
}

.sub-progress {
	height: 2.5em;
	margin: 1em;
	border-radius: 2.5em;
	background-color: rgba(50, 50, 50, 0.9);
	top: -1em;
}

#main-progress div, .sub-progress div {
	border-radius: 2.5em;
	position: absolute;
	top: 0em;
	height: 2.5em;
}

#main-progress div {
	background-color: #3086ff;
	margin: 0.25em;
}

.sub-progress div {
	background-color: #ff9823;
	line-height: 2.5em;
	text-align: center;
	margin: 0em;
}

.sub-progress div.done {
	background-color: #08C619;
}

#main-progress p {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0em;
	margin-bottom: 0.25em;
}

#main-progress span, #progress-characters {
	color: #fff;
	text-shadow: 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 1px #000, 0px 0px 2px #000, 1px 0px 2px #000, 0px 1px 2px #000, 1px 1px 3px #000, 2px 2px 3px #000;
	margin: 0 0.25em;
}

#main-progress span.percent {
	font-size: 2em;
}

#progress-characters tr {
	background-color: rgba(0, 0, 0, 0.9);
	text-align: center;
}

#progress-characters tr, #progress-characters td {
	padding: 0;
	margin: 0;
}

#progress-characters tr:nth-of-type(1) {
	background-color: transparent;
	color: #000;
	text-shadow: none;
}

#progress-characters td:nth-of-type(1) {
	width: 35%;
	text-align: right;
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
	line-height: 2.5em;
}

#progress-characters tr:nth-of-type(11) td:nth-of-type(1) {
	line-height: 1.25em;
}

#progress-characters td:nth-of-type(2) {
	width: 45%;
}

#progress-characters td:nth-of-type(3), #progress-characters td:nth-of-type(4) {
	width: 10%;
	font-size: 2em;
	line-height: 2.5em;
}

#progress-characters tr:nth-of-type(1) td:nth-of-type(1) {
	text-align: center;
	line-height: 2em;
}

#progress-characters tr:nth-of-type(1) td:nth-of-type(3), #progress-characters tr:nth-of-type(1) td:nth-of-type(4) {
	font-size: 1em;
	line-height: 2em;
}

#progress-characters td.char a {
	color: #fff;
	text-decoration: none;
	margin-right: 0.25em;
	display: inline-block;
}

#progress-characters td.char a:hover {
	text-decoration: underline;
}

#progress-characters {
	opacity: 0;
	height: 0px;
	position: absolute;
}

#progress-characters.active {
	height: revert;
	position: revert;
	opacity: 1;
    transition: opacity 0.1s ease-in;
}

#progress-characters tr td > div {
	height: 0em;
	overflow: hidden;
}

#progress-characters.active tr td > div {
	height: 2.5em;
    transition: height 0.1s ease-in;
}

#see-characters {
	text-align: center;
	position: relative;
	top: 0.5em;
}