.EditorListConnect:not([type]) {
  list-style: none;
}
.EditorListConnect:not([type]) li {
  position: relative;
  counter-increment: my-awesome-counter;
  padding-left: 80px;
  padding-bottom: 14px;
}

.EditorListConnect:not([type]) li::after {
  content: '';
  height: 100%;
  width: 6px;
  background: var(--logo-color-1);
  position: absolute;
  top: 0;
  left: 27px;
  z-index: 1;
}
.EditorListConnect:not([type]) li::before {
  content: counter(my-awesome-counter);
  font-weight: bold;
  color: #fff;
  padding-left: 30px;
  border-radius: 50%;
  background: var(--logo-color-1);
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 60px;
  text-align: center;
  padding: 30px 0;
  line-height: 0;
  z-index: 2;
}
