box-shadow: none;\r
}\r
\r
+// When the popup is open, freeze the background so it doesn't scroll\r
+// This is so we don't have problems with touch devices\r
+body.popupOpen {\r
+ position: fixed;\r
+ height: 100%;\r
+ width: 100%;\r
+ overflow: hidden;\r
+}\r
+.popupWindow {\r
+ -webkit-overflow-scrolling: touch;\r
+ background-color: #fff; // For some reason this is needed when using -webkit-overflow-scrolling or background is missing at bottom\r
+}\r
+\r
main {\r
background-color: #fff;\r
max-width: @content-max-width;\r