.logo-container {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.circuit-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: dash 3s linear infinite;
}

.circuit-plus {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: dash 3s linear infinite reverse;
}

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