@-webkit-keyframes dashAnimation {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes dashAnimation {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}
.animate-dash {
    -webkit-animation: dashAnimation 1s both linear;
            animation: dashAnimation 1s both linear;
}

/*# sourceMappingURL=9d6e133490931b03.css.map*/