#preloader {
    background-color: transparent;
}

#preloader #status {
    width: 120px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -60px;
}

#preloader #status svg {
    width: 100%;
    height: 100%;
}

#preloader #status path {
    stroke: var(--vz-primary);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: heartbeat-draw 2s linear infinite;
}

@keyframes heartbeat-draw {
    from {
        stroke-dashoffset: 200;
    }
    to {
        stroke-dashoffset: -200;
    }
}
