
.mobile-popup{
    display: none;
    transition: background 0.3s ease;
    inset: 0;
}
.mobile-popup.active{
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    position: fixed;
    align-items: flex-end;
    justify-content: flex-end;
}

.mobile-popup__content{
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 32px 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    will-change: transform;
    max-height: 97vh;
    overflow: visible;
    padding-right: 12px;
}
.mobile-popup__content::before{
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    background: #8F8F8F;
    border-radius: 3px;
    margin: 0 auto;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
}
.mobile-popup__content.active{
    transform: translateY(0);
}