.more-views-list {
    .ctn-sommaire {
        .title-custom {
            font-weight: 500;
            font-size: 20px;
            line-height: 120%;
            color: #110055;
            margin-bottom: 8px;
        }



        .navigation {
            counter-reset: ol-counter;
            font-weight: 500;
            list-style: none;
            padding-left: 8px;
            font-size: 14px;


            li {
                counter-increment: ol-counter;
                position: relative;
                display: grid;
                padding-top: 10px;
                padding-bottom: 10px;
                padding-left: 24px;

                &::before {
                    content: counter(ol-counter, decimal-leading-zero) "";
                    font-size: 20px;
                }

                &.active {
                    background-color: #F8F8F8;

                    a, &::before {
                        color: #5C54FF;
                        font-weight: 700;
                    }


                    &::after {
                        height: 100%;
                    }
                }

                a {
                    color: #616161;

                    &:hover {
                        color: #5C54FF;
                        text-decoration: underline;
                    }
                }

                &::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0px;
                    width: 4px;
                    height: 0%;
                    background-color: #4DD9DB;
                    -webkit-transition: all .3s ease-in-out;
                    transition: all .3s ease-in-out;
                }
            }
        }
    }
}