.comment-tools {
	margin-bottom: 8px;
	font-size: 14px;
}
.comment-tools .color-tag {
	margin-right: 6px;
	cursor: pointer;
	padding: 4px 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	display: inline-block;
}
.comment-tools .color-tag:hover {
	background: #eee;
}
.comment-tools .sticker-insert {
	width: 32px;
	height: 32px;
	margin: 3px;
	cursor: pointer;
}
#comment-toolbar {
	margin-bottom: 8px;
}
#comment-toolbar button {
	margin-right: 4px;
	cursor: pointer;
}
#comment-stickers img {
	margin: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

#comment-stickers img {
	transition: transform 0.1s ease;
}
#comment-stickers img:hover {
	transform: scale(1.1);
}

@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	25% { transform: translate(-1px, 1px) rotate(-1deg); }
	50% { transform: translate(-1px, -1px) rotate(0deg); }
	75% { transform: translate(1px, -1px) rotate(1deg); }
	100% { transform: translate(1px, 1px) rotate(0deg); }
}

#comment-stickers img {
	animation: shake 1s infinite;
}

