.LittleBirds_Stems
{
	position: absolute;
	left: 10px;
	top: 10px; 
	width: calc(100% - 20px);
	height: calc(25% - 20px);
	cursor: pointer;
	outline: 2px dashed rgba(255,255,255,0.25);
	display: flex;
	flex-direction: row;
	/* justify-content: center; */
	align-items: center;
	padding-left: 80px;
	background-color: rgba(0,0,0,0.5);
	border-radius: 0.75rem;
}
.LittleBirds_Stems:hover
{
	outline: 2px dashed #edbd87;
	outline-offset: 1px;
	cursor: pointer;
}		
.LittleBirds_Stems:nth-of-type(2)
{
	top: calc(25% + 5px);
}
.LittleBirds_Stems:nth-of-type(3)
{
	top: 50%;
}
.LittleBirds_Stems img
{
	height: 96px;
	width: 96px;
	margin-right: 20px;
}

/* Play circle in middle of Stems div */
.LittleBirds_Stems::before
{
	content: "\f144";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 48px;
	color: rgba(255,255,255,0.8);
	opacity: 0.8;
}			
.LittleBirds_Stems.playing::before
{
	content: "\f28b";
	animation: pulse 1s infinite;
	opacity: 1;
}

@keyframes pulse 
{
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.8;
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
}

@media (max-width: 600px)
{
	.LittleBirds_Stems
	{
		height: calc(20% - 20px);
	}
	.LittleBirds_Stems:nth-of-type(2)
	{
		top: calc(20% + 5px);
	}
	.LittleBirds_Stems:nth-of-type(3)
	{
		top: 40%;
	}
}

@media (max-width: 400px)
{
	.LittleBirds_Stems
	{
		font-size: 0.66em;
		height: calc(17.5% - 20px);
	}
	.LittleBirds_Stems:nth-of-type(2)
	{
		top: calc(17.5% + 5px);
	}
	.LittleBirds_Stems:nth-of-type(3)
	{
		top: 35%;
	}
}