.counter_wrap {
    display: inline-flex;
}
.counter_title {
    font-size: 24px;
}
.counter2 .counter__item {
    border-left: 2px dashed var(--theme-border-color);
}
.counter2 .counter__item::before {
    content: '';
    display: block;
    position: absolute;
    left: -5px;
    width: 12px;
    height: 12px;
    background: var(--theme-primary-color);
    border-radius: 50%;
    animation: up-down 5s linear infinite;
}

@keyframes up-down {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}