>> my challenge is to get my popup form to fill 100% in "mobile" mode.
untested, but on the right track I think,
a) add a custom class to the form
' nl-width'
put it on the "outermost" css of the form (ie Form Div)
b) in your custom CSS
.nl-width{width:100%}
@media screen and (min-width: 1025px){
.nl-width{width:50%}
}
cheers
Bruce