.mediaIcon{
	padding: 5px;
	width: 250px;
	height: 150px;
	position: absolute;
	text-align: center;
	cursor: default;
	user-select: none;
	transition: background-color .3s, left .3s, top .3s;
}

.mediaIcon[purchased='true']{
	color: rgb(90, 90, 90);
	opacity: .7;
}

.mediaIcon[available='true']{
	cursor: pointer;
	background: linear-gradient(to right, var(--primary-color-dimmer), rgba(255, 255, 255, 0));
	border-radius: 10px;
}

.mediaIcon[available='true']:hover{
	background-color: var(--primary-color-dimmer);
}

.mediaIcon[available='true']:active{
	background-color: var(--primary-color-dim);
}

.mediaIcon[available='false']{

}

.techTreeMusicImage{
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	border-radius: 5px;
}

.techTreeLabelElt{
	font-size: 20px;
}

.techTreeTitle{
	font-weight: bold;
	font-size: 24px;
}

.techTreeArtist{
	font-weight: bold;
}

.techTreeCurrencyImage{
	width: 20px;
	height: 20px;
}

.techTreeCost{
	font-size: 24px;
}