.nl-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

@media (max-width: 767px) {
    .nl-form {
        background-color: #fff;
        top: auto;
        bottom: 0;
        height: auto;
        z-index: 20;
        padding-top: 16px;
        border-left: 2px solid #fff;
        border-right: 2px solid #fff;
        border-top: 1px solid lightgray;
    }
    .nl-form:before {
        content: '';
        display: block;
        margin: -7px auto 0;
        width: 72px;
        height: 2px;
        background-color: lightgray;
    }
    .modal-form .popup__close-button-container {
        display: none;
    }
}