.wpp-evergreen {
    counter-reset: wpp-counter;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border-right: 6px solid rgb(49, 188, 7);
    box-sizing: border-box;
}

    .wpp-evergreen li {
        position: relative;
        display: flex;
        align-items: center;
        counter-increment: wpp-counter;
        position: relative;
        list-style: none;
        margin: 0;
        padding: 15px 15px 15px 0;
        background: rgba(49, 188, 7, calc((((var(--total-items) - (var(--item-position) - 1)) * 100)/var(--total-items))/100));
        box-sizing: border-box;
    }

    .in-preview-mode .wpp-evergreen li {
        margin: 0;
        padding: 15px 15px 15px 0;
    }

        .wpp-evergreen li .item-position::before {
            display: inline-block;
            flex: 1 0 0;
            content: counter(wpp-counter);
            color: rgba(0, 0, 0, 0.15);
            width: 40px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -1px;
            text-align: center;
        }

            .wpp-evergreen li .item-data .wpp-post-title {
                display: block;
                font-size: 15px;
                font-weight: 700;
                line-height: 1.3;
            }

            .wpp-evergreen li .item-data a {
                color: #0f470e;
                text-decoration: none;
            }

            .wpp-evergreen li .item-data  a:hover {
                text-decoration: underline;
            }