#databroker.component {
	position: relative;
	
	display: flex; height: 42px;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	
	padding: 0 12px;
	margin-top: -15px;
	
	border-radius: 3px;
	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,.5);
	font-size: 13px;
	color:#808080;
}

#databroker.component > div:first-child > span:first-child,
#databroker.component > div:first-child > span:nth-child(2),
#databroker.component > div:first-child > span:last-child { color: #555; }

#databroker.component > div:last-child {
	position: absolute; top: 5px; right: 5px;
	display: block; box-sizing: border-box; height: 30px; width: 30px;
	
	border-radius: 50%;
	border: solid 1px rgba(0,0,0,.2);
	background-color: transparent;
	box-shadow:
		inset 1px 1px rgba(255,255,255,.5),
			  1px 1px rgba(255,255,255,.5);
	
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out,
		text-shadow		 .2s ease-out;
	
	text-shadow: 1px 1px rgba(255,255,255,.5);
	
	line-height: 26px;
	text-align: center;
	font-size: 16px;
	color: rgba(0,0,0,.25);
	
	cursor: pointer;
}
#databroker.component > div:last-child:hover {
	border: none;
	background-color: #B9236B;
	box-shadow:
		inset 1px 1px rgba(0,0,0,.2),
			  1px 1px rgba(255,255,255,.5);
	
	text-shadow: 1px 1px rgba(0,0,0,.2);
	line-height: 28px;
	color: #FBFBFB;
}