.BreakdownList {
	padding: 0;
	margin: 0;
	width: 100%;
	border-spacing: 0 0.5em;
	list-style: none;
}

.BreakdownList__header,
.BreakdownList__item {
	position: relative;
	padding: 0;
	margin: 0 0 0.5em;
	display: flex;
}

.BreakdownList__header {
	font-size: 14px;
	line-height: 1.4;
	border-bottom: 1px solid #ccd0d4;
	font-weight: 800;
}

.BreakdownList__item::after {
	position: absolute;
	display: block;
	content: " ";
	top: 0;
	bottom: 0;
	left: 0;
	background: rgba( 0, 0, 255, 0.1 );
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	width: var( --breakdownlist-item-width );
}

.BreakdownList__item-title,
.BreakdownList__item-value {
	position: relative;
	padding: 0.5em;
	z-index: 1;
}

.BreakdownList__item-title {
	text-align: left;
	flex-grow: 1;
	flex-shrink: 1;

	/* Setting an explicit width allows us to overflow rather than flex */
	width: 300px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.BreakdownList__item-title[scope="row"] {
	font-weight: inherit;
}

.BreakdownList__item-select {
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: inherit;
}

.BreakdownList__item-select:hover,
.BreakdownList__item-select:active {
	text-decoration: underline;
}

.BreakdownList__item-value {
	text-align: right;
	white-space: nowrap;
	flex-shrink: 0;
}
