svg {
    opacity: 1;
}

path {
    stroke-width: 0.5px !important;
}

.group0 path {
    stroke: rgba(182, 60, 70, 0.2) !important;
    fill: rgba(247, 60, 200, 0.05) !important;
}

.group1 path {
    stroke-dasharray: 50 !important;
    stroke-dashoffset: 100;
    stroke: rgba(153, 71, 200, 0.2) !important;
    fill: rgba(200, 71, 77, 0.01) !important;
}

.group1 path,
.group2 path {
    transition: stroke-dashoffset 0.35s;
    animation: dash 12s linear infinite forwards;
}

.group2 path {
    stroke-dasharray: 50 !important;
    stroke-dashoffset: 100;
    animation-delay: 0.5s;
    stroke: rgba(200, 71, 144, 0.2) !important;
}

.group3 path {
    stroke: rgba(170, 51, 51, 0.13) !important;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}