@charset "utf-8";

.jsclass_milestone {
	width: 100%;
	height: auto;
	font-size: 2.2rem;
	font-weight: 400;
	padding: 10px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 20px;
}
.jsclass_milestone_bubble {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: baseline;
	opacity: 0.4;
	line-height: 1.3;
	border: 1px dotted grey;
	border-radius: 6px;
	padding: 10px 20px;
}
.jsclass_milestone_label {
	color: black;
	padding-right: 5px;
}
.jsclass_milestone_text {
	font-size: 1.4rem;
	color: grey;
}
.jsclass_milestone_active {
	display: flex;
	opacity: 1.0;
	color: black;
	border-bottom: 5px solid brown;
}
.jsclass_milestone_active * {
	color: inherit;
}
@media screen and (max-width: 768px) {
	.jsclass_milestone_bubble {
		display: none;
	}
	.jsclass_milestone_active {
		display: flex;
		width: 100%;
	}
}