.quest-details td:first-child { font-weight: bold; text-align: right; }
.quest-details input[type=text] { width: 100%; }
.quest-details h3 { text-align: center; }

.quest-details span.completed::after,
.quest-details span.incomplete::after {
	border: 2px #999 solid;
	border-radius: 100%;
	content: "";
	display: inline-block;
	height: 5px;
	width: 5px;
}
.quest-details span.completed::after {
	background: #0073aa;
	border-color: #0073aa;
}

.cf-quest-progress h3 {
	display: block;
	margin-top: 1.5em;
	width: 100%;
}

.cf-quest-progress .cf-progress-bubble {
	background: none;
	display: flex;
	justify-content: stretch;
	margin: 1em 0;
}

.cf-quest-progress .cf-progress-bubble div {
	display: flex;
	position: relative;
}
	
.cf-quest-progress .cf-progress-bubble div span {
	color: #3F5E68;
	display: block;
	font-weight: bold;
	position: relative;
	text-align: center;
}

.cf-quest-progress .cf-progress-bubble div span::after {
	background: #ADAAA2;
	content: "";
	display: block;
	height: 4px;
	position: absolute;
	right: -6px;
	top: calc(1em + 2px);
	width: 12px;
}
.cf-quest-progress .cf-progress-bubble div span.completed::before,
.cf-quest-progress .cf-progress-bubble div span.incomplete::before {
	border: 4px #ADAAA2 solid;
	border-radius: 100%;
	content: "";
	display: block;
	height: 2em;
	margin: 5px;
	width: 2em;
}
.cf-quest-progress .cf-progress-bubble div span.completed::before {
	background: #8E9D3E;
}

.cf-quest-progress .cf-progress-bubble div:last-child span::after { display: none; }
