.sxs-portal--bag {
    /*--------------------- */
    position: fixed;   /* 🔥 clave */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /// height: 100vh;     /* 🔥 usar viewport */
    height: 100dvh;
    z-index: 9999;
    overflow: hidden;  /* evita scroll extra */
    /*--------------------- */
    opacity: 1;
    transition: transform 700ms cubic-bezier(.16, 1.08, .38, .98), visibility 700ms;

    .sxs-portal__bg--bag {
        ////////////////////////////////////////
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        ////////////////////////////////////////
        opacity: 0;
        transition: opacity 700ms cubic-bezier(.16, 1.08, .38, .98), visibility 700ms;

        @include sm-wmax {
            display: none;
        }
    }
    
    &.is-open .sxs-portal__bg--bag {
        opacity: 1;
    }

    &.start .sxs-bag__con0 {
        transform: translate3d(0px, 0px, 0px);
        ///Revisar
    }
}

.sxs-bag {

    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 420px; /* opcional */
    /* 
    height: 100%;
    margin-left: auto; */

    @include sm-wmin {
        width: calc(350px + 10vw);
    }

    &__con0 {
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background-color: $accentClear3;
        transform: translate3d(100%, 0px, 0px);
        transition: transform 800ms cubic-bezier(0.5, 0.7, 0, 1);
    }

    &__hdr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: $spacing2 * 1.5 $commonSp;
        font-size: $text-22;
        font-weight: 700;
        text-transform: uppercase;
        background-color: $accentClear3;
        border-bottom: 1px solid $secondaryClear;
    }

    &__btn-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: $text-30;
        height: $text-30;
        font-size: $text-17;
    }

    &__con1 {
        overflow-y: auto;
        overflow-x: hidden;
        /// flex: 1 1 0;
        flex: 1;
        min-width: initial;
        padding: $spacing2 $commonSp;
    }

    &__ite:not(:last-child) {
        padding-bottom: $spacing2;
        margin-bottom: $spacing2;
        border-bottom: 1px solid rgba($duller2, .25);
    }

    &__ftr {
        overflow: hidden;
        padding: $spacing2 $commonSp;
        box-shadow: 0 -2px 10px 10px $accentClear2;
        background-color: #FFF;

        &-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: $text-15;

            &:not(:last-child) {
                margin-bottom: calc(4px + 1rem);
            }

            strong {
                font-size: $text-20;
            }
        }
    }

    &__emp {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        text-align: center;

        &-tit {
            margin-bottom: .5em;
            font-size: $text-30;
            font-weight: 700;
        }
    }

    .sxs-btn {
        width: 100%;

        &:not(:first-child) {
            margin-top: calc($spacing2 / 2);
        }
    }
}