@keyframes side_done {
	0% {
		transform: scale(1.0);
		color: inherit;
	}

	20% {
		transform: scale(1.2);
		color: red;
	}

	100% {
		transform: scale(1.0);
		color: inherit;
	}
}

#side > section {
	padding: 0.25rem;
	margin: 0.25rem;
	border: 1px solid var(--line-color);
}

#side > section > h2 {
	font-size: 1.4rem;
	border: 1px solid var(--primary-color);
	background-color: white;
	color: var(--text-color);
	text-align: center;
	border-radius: 1rem;
	padding: 0.25rem;
}

#side > section > h2::before {
	display: none;
}

#side section.jids .status_icon {
	font-size: 1.5rem;
}

#side section.jids .enable {
	color: var(--primary-color);
}

#side section.jids .bad {
	color: red;
}

#side section.jids em {
	transform: scale(1.0);
	display: inline-block;
}

#side section.jids em.done {
	animation-name: side_done;
	animation-duration: 1s;
	animation-fill-mode: both;
}