Your Bootstrap CSS is adding the following line, which is causing problems:
That drags the popup all the way to the bottom of the screen.
Add the following to your CSS to implement the proper behavior:
.sourcecoast.modal {
bottom: initial;
}That looks like it should get things going for you.
I hope that helps,
Alex