.d-coin{
	background-color: yellow;
	box-shadow: 0 0 0 10px rgba(255, 255, 0, 0.567);
	z-index: 2;

	position: relative;
	display: flex;
	align-items: end;
	justify-content: center;
	color: skyblue;
	text-shadow: 0px 3px 1px #171819bb;
	font-weight: 900;
	font-size: 0.7rem;
	letter-spacing: -3px;
	word-spacing: 3px;
	box-sizing: border-box;
	padding-bottom: 5%;
}
.dimmed{
	transition:
		background-color 0.5s ease,
		box-shadow 2s ease-in-out,
		z-index 2s linear
	;
	background-color: transparent;
	box-shadow: 0 0 0 transparent;
	z-index: 1;
}

.treasure-chest{
	justify-content: start;
	width: 100%;
	height: 100%;
	/* border: 1px solid black; */
	font-size: 2.7rem;
	content: '';
	top: -25%;
	left: 0;
	/* text-shadow: 1px 1px 1px black; */
	letter-spacing: -5px;
}
.treasure-chest{
	/* scale full sheet down to 48px per frame */
	/* img1 is on row 3, y = 3 * 48 = 144 */
	background-image: url('../images/chest/Small_Open_noWeb_Body_202.png');
	background-size: 192px 192px;
  	background-position: 0px 0px;
  	background-repeat: no-repeat;
  	/* image-rendering: pixelated; */
	  
	transform: scale(2.75);
}
.isOpened{
	background-position: -144px -144px;
}