.line {
	width: 100%;
}

.line__row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	margin: 15px 0 2px 0;
	font-size: 28px;

}

.line__title {
	font-weight: 400;
	flex-grow: 1;
	max-width: 70%;
	text-align: center;
}

.line__val1, .line__val2 {
	font-weight: bold;
	width: 20%;
}

.line__val2 {
	text-align: right;
}

.line__bar {
	width: 100%;
	height: 10px;
	display: flex;
	justify-content: space-between;
}

.line__bar1, .line__bar2 {
	position: relative;
}

.line__bar1 {
	background-color: var(--color1);
}

.line__bar1::after, .line__bar2::before {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
}

.line__bar1::after {
	z-index: 2;
	right: -5px;
	border: 5px solid var(--color1);
	border-right-color: #FFFFFF;
}

.line__bar2::before {
	left: 0px;
	border: 5px solid #FFFFFF;
	border-right-color: var(--color2);
}

.line__bar2 {
	background-color: var(--color2);
	flex-grow: 1;
}

.line__gap {
	width: 1px;
	heoght: 100%;
	background-color: #FFFFFF;

}
