.mdw-links-carta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 39px;
    align-items: flex-end;

    li {
        a {
            font-family: "Xanh Mono", Sans-serif;
            font-size: 17px;
            font-weight: 400;
            text-transform: uppercase;
            color: var( --e-global-color-secondary );

            &::after {
                content: "";
                display: block;
                margin: auto;
                margin-top: 3px;
                width: 0%;
                height: 1px;
                transition: width .2s ease-in;
                background-color: var( --e-global-color-secondary );
            }

        }

        &:hover, &.current-lang {
            & a {
                &::after {
                    width: 100%;
                }
            }
        }
    }
}