.threew-custom-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.threew-custom-list .list-item {
    position: relative;
    padding-left: 76px;
    margin-bottom: 30px;
}

.threew-custom-list .list-item::before {
    counter-increment: item; /* Increment the value of steps counter by 1 */
	content: counter(item); /* Display counter value in default style */
	display: flex;
	justify-content: center;
	align-items: center;
    width: 44px;
	height: 44px;
	border-radius: 50%;
    background-color: var(--w3-green);
    color: var(--w3-green-lightest);
    position: absolute;
    left: 0;
    top: 0;
}

.threew-custom-list .list-item:not(:last-of-type)::after {
    content: '';
    display: block;
    height: calc(100% + 30px);
    width: 1px;
    background-color: var(--w3-green);
    position: absolute;
    left: 22px;
    top: 10px;
    z-index: -1;
}