/* ------------------------------------------ DONORS ------------------------------------------ */


.donorsList {

	list-style: none;
	font-family: sans-serif;
}


.donorsList li {

	background-color: white;
	box-shadow: -0.125rem 0.125rem 0.75rem hsla(0, 0%, 0%, 0.2);
	border-style: solid;
	border-color: transparent;
	
	position: relative;
}

.donorsList li:before {
	
	position: absolute;
	top: 0.125rem;
	content: ".";
	color: transparent;
	background-image: url("sprites/heart.png");
	background-size: cover;
	background-repeat: no-repeat;
	right: 0.125rem;
	
	width: 1rem;
	height: 1rem;

}


.donorsList li a {

	color: hsl(0, 0%, 10%);
	text-decoration: none;
}


.donorsList li a img {

	background: black;
}



.donorsList li a .name {

	font-weight: bold;
	background: white;
	color: #1d1d1d;
}


