/* Bold icon path drawing animation - targeting specific path */
[data-name="BoldAnimate"]:hover path[d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"] {
animation: boldDrawAnimate 0.6s ease-in-out;
}
@keyframes boldDrawAnimate {
0% {
opacity: 0;
stroke-dasharray: 100;
stroke-dashoffset: 100;
}
100% {
opacity: 1;
stroke-dasharray: 100;
stroke-dashoffset: 0;
}
}