.idcg-signature-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}

.idcg-signature {
	display: block;
	width: 258px;
	height: 230px;
	background-image: url('../img/signature-sprite-black-ink.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 258px 17940px;
	overflow: hidden;
}

/* Play state */
.idcg-signature.idcg-is-playing {
	animation: idcg-signature-anim 4s steps(77) forwards;
}

@keyframes idcg-signature-anim {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 0 -17710px;
	}
}