#info.component:empty { display: none; }
#info.component {
	align-self: stretch;
	display: flex; flex:0 0 250px;
	flex-direction: column;
	align-items: stretch;
	
	padding-left: 24px;
	margin-left: 24px;
	
	border-left: solid 1px rgba(0,0,0,.2);
}

#info.component > *:empty { display: none; }
#info.component > *:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: solid 1px rgba(0,0,0,.2);
}

/*--------------------------------------------------------------------------------------*/

#info.component > header {
	display: flex; box-sizing: content-box; height: 30px; overflow: hidden;
	flex-direction: row;
	justify-content: space-between;
	align-items: baseline;
	
	padding-top: 6px;
	padding-bottom: 15px;
	
	filter: drop-shadow(1px 1px rgba(255,255,255,.8));
}

#info.component header > * { color: #999; }
#info.component header > h2 {
	padding: 0;
	line-height: 25px;
}
#info.component header > h2:before { content: none; }

#info.component > header > h2 {
	line-height: 28px;
	font-size: 30px;
	font-weight: 300;
}
#info.component header > span {
	line-height: 15px;
	font-size: 15px;
}

/*--------------------------------------------------------------------------------------*/

#info.component > section#parts {}
#info.component > section#parts > a {
	display: flex; width:100%;
	flex-direction: row;
	align-items: center;
	
	text-decoration: none;
	color: #999;
}
#info.component > section#parts > a > span:first-child {
	display: block; width: 23px; height: 23px;
	margin-right: 15px;
	
	border-radius: 50%;
	border: solid 1px rgba(0,0,0,.2);
	box-shadow:
		inset 1px 1px rgba(255,255,255,.5),
			  1px 1px rgba(255,255,255,.5);
	text-shadow: 1px 1px rgba(255,255,255,.7);
	
	text-align: center;
	line-height: 21px;
	font-size: 9px;
}
#info.component > section#parts > a > span:last-child {
	flex: 1;
	
	white-space: nowrap;
	word-wrap: break-word;
	text-overflow: ellipsis;
	text-align: right;
}

#info.component > section#parts > a:not(:last-child) {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: solid 1px rgba(0,0,0,.05);
}

#info.component > section#parts > a:hover {}
#info.component > section#parts > a:hover > span:first-child {
	border: none;
	background-color: #B9236B;
	line-height: 23px;
	text-shadow: none;
	box-shadow: 1px 1px rgba(255,255,255,.5);
	color: #FBFBFB;
}
#info.component > section#parts > a:hover > span:last-child { color: #B9236B; }
