How to use custom size on $ionicPopup?

How do I alter $ionicPopup default size to suit my needs?

I’d like to have my users to pick an item from a radio button list but the default popup size way too small :frowning:

Instead of a popup, why not use a modal?

I’ll give it a shot, thanks!

changing size of the popup window does not work for width.

.popup {
width: 1200px;
height: 350px;
}

and… !important does it.

.popup {
width: 1200px !important;
height: 350px;
}