.sxs-tabs {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    white-space: nowrap;
    --_i-top: 0px;
    --_i-left: 0px;
    --_i-width: 0px;
    --_i-height: 0px;

    &__lis {
        overflow: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        padding: .25rem;
        border: 1px solid $accentClear5;
        border-radius: 9999px;
        list-style: none;

        &::-webkit-scrollbar-thumb {
            width: 4px;
            height: 4px;
            background-color: rgba($primaryClear, .5);

            &:hover {
                background-color: $primaryClear;
            }
        }

        &::-webkit-scrollbar-track {
            width: 4px;
            height: 4px;
            background-color: $accentClear3;
        }

        &::-webkit-scrollbar {
            width: 4px;
            height: 4px;
        }
    }

    &__tab {
       /* flex: 1; */
         flex: 0 0 auto;   /*nuevo*/
        text-align: center;

        &.active {
            .sxs-tabs__btn {
                font-weight: 700;
            }
        }
    }

    &__btn {
        /*
        all: unset;     
        display: block;
        width: 100%;
        height: 100%;
        padding: 1em 2em;
        border-radius: 9999px; */

        all: unset;                 /* elimina UA styles */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        white-space: nowrap;

        @include lg-wmin {
            font-size: $text-20;
        }
    }

    &__ind {
        position: absolute;
         /* z-index: -1; */
        z-index: 0; /*Nuevo*/
        top: var(--_i-top);
        left: var(--_i-left);
        width: var(--_i-width);
        height: var(--_i-height);
        border-radius: 9999px;
        background-color: $primaryClear;
        transition: top $transitionDuration, left $transitionDuration, height $transitionDuration, width $transitionDuration;
        pointer-events: none;
    }

    &.no-transition .sxs-tabs__ind {
        transition: none;
    }
}