.xm__mask {
    @include mask
}

.xm__actionsheet {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: $zindex-popover;
    background-color: #efeff4;
    transform: translate(0, 100%);
    transition: transform .3s;
    
    &.xm__actionsheet--active {
        transform: translate(0, 0);
    }

    & header{
        font-size: 1.3rem;
        color: $text-color;
        height: 40px;
        line-height: 40px;
        background-color: $body-background;
    }

    & ul {
        margin: 0;
        padding: 0;
    }

    & .xm__actionsheet--item {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        font-size: $font-size-big;
        color: $text-color;
        height: 50px;
        // line-height: 50px;
        background-color: $body-background;

        & .xm__actionsheet--icon{
            max-height: 40px;
            margin-right: 5px;

            & img{
                max-height: 40px;
            }

            & p{
                margin: 0;
            }
        }
    
        &:after {
            content: "";
            position: absolute;
            z-index: 2;
            bottom: 0;
            left: 0;
            width: 100%;
            border-bottom: $border-width-default  $border-style-default  $border-color-base;
            transform: scaleY(.5);
            transform-origin: 0 0;
        }

        &:first-child:before {
            content: "";
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            width: 100%;
            border-bottom: $border-width-default  $border-style-default  $border-color-base;
            transform: scaleY(.5);
            transform-origin: 0 0;
        }

    }

    & .xm__actionsheet--action {
        display: block;
        margin-top: 10px;
        font-size: $font-size-big;
        color: $text-color;
        height: 50px;
        line-height: 50px;
        background-color: $body-background;
    }

}