.stz-womu-menu-mobile-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    z-index: 9999999999999;
    left: 0;
    top: 0;
    display: none;
}


.stz-womu-menu-mobile-arrow-back {
    position: sticky;
    width: 100%;
    top: 0;
    background-color: #fff;
    height: 50px;
    align-items: center;
}

.stz-womu-menu-mobile-step-item-1 {
    width: 100%;
    background-color: #f2f2f2;
    margin: 1px 0px;
    align-items: center;
    min-height: 50px;
}

.stz-womu-menu-mobile-step-2,
.stz-womu-menu-mobile-step-3,
.stz-womu-menu-mobile-step-4 {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    background-color: #ffffff;
    display: none;
}

.ani-trans {
    animation: trans 0.5s;
}

@keyframes trans {
    from {
        transform: translate(600px);
    }

    to {
        transform: translate(0, 0);

    }
}

.ani-trans-revers {
    animation: trans-revers 0.5s;
}

@keyframes trans-revers {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-600px);

    }
}

.stz-womu-menu-mobile-step-item-2,
.stz-womu-menu-mobile-step-item-3,
.stz-womu-menu-mobile-step-item-4 {
    width: 100%;
    padding: 0 5px;
    background-color: #f2f2f2;
    margin: 1px;
    align-items: center;
    min-height: 50px;
}

.mobile-yscroll {
    overflow-y: auto;
    height: 85vh;
    /* scrollbar-color: var(--stz-bg-dropdown); */
    scrollbar-width: thin;
}

.mobile-yscroll::-webkit-scrollbar-thumb {
    background-color: var(--stz-bg-dropdown);
}