/* .animate-svg path,
.animate-svg rect,
.animate-svg circle,
.animate-svg ellipse,
.animate-svg polygon,
.animate-svg polyline,
.animate-svg line,
.animate-svg text,
.animate-svg g {
    opacity: 0;
    transform: translateX(-25px);
    transform-box: fill-box;
    transform-origin: center;
    animation: fadeSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
    will-change: transform, opacity;
}


@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.animate-svg path.graph-line {
    opacity: 1 !important;
    transform: none !important;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
} */