
.FootBtn
    background-color primary
    display flex
    justify-content space-around
    align-items center
    font-size rem(18)
    color #fff
    width 100%    
    position fixed
    bottom 0
    z-index 200
    bottom: constant(safe-area-inset-bottom);
    /* Status bar height on iOS 11+ */
    bottom: env(safe-area-inset-bottom);
    height 98px;    

    &:after {
        position fixed;
        left 0px;
        bottom 0px
        height: constant(safe-area-inset-bottom);
        /* Status bar height on iOS 11+ */
        height: env(safe-area-inset-bottom);
        background #fff;
        content: " ";
        width 100%;
    }

.foot-btn-wrapper {
    // height 120px;
    padding-bottom: constant(safe-area-inset-bottom);
    /* Status bar height on iOS 11+ */
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing content-box;
    display flex;
    background-color #fff
    width 100%
}