rhodes 7.1.17 → 7.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1157) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +1 -1
  3. data/Gemfile +3 -0
  4. data/LICENSE +1 -1
  5. data/README.html +2 -2
  6. data/README.md +26 -23
  7. data/Rakefile +169 -89
  8. data/appveyor.yml +74 -47
  9. data/bin/rhodes-setup +4 -4
  10. data/doc/application.txt +21 -0
  11. data/doc/oss/DeveloperNotes.md +1 -1
  12. data/doc/oss/WM_CE_Installation_And_Build_Guidelines.md +1 -1
  13. data/ext/extconf.rb +16 -3
  14. data/extensions/instrumentation/ext/platform/iphone/Instrumentation.xcodeproj/project.pbxproj +4 -4
  15. data/extensions/rhoconnect-push/ext/build.bat +1 -1
  16. data/extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/graphics/BatteryIndicator.java +14 -1
  17. data/lib/build/buildgem.rb +26 -0
  18. data/lib/build/jake.rb +7 -5
  19. data/lib/commonAPI/ConnectionChecking/ext/build.bat +1 -1
  20. data/lib/commonAPI/RubyServer/ext/build.bat +1 -1
  21. data/lib/commonAPI/RubyServer/ext/platform/iphone/Rakefile +9 -62
  22. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer.xcodeproj/project.pbxproj +4 -4
  23. data/lib/commonAPI/audiocapture/ext/build.bat +1 -1
  24. data/lib/commonAPI/audiocapture/ext/platform/android/src/com/rho/audiocapture/AudioCapture.java +4 -1
  25. data/lib/commonAPI/audiocapture/ext/platform/iphone/Audiocapture.xcodeproj/project.pbxproj +4 -4
  26. data/lib/commonAPI/audiocapture/ext/platform/iphone/Rakefile +9 -63
  27. data/lib/commonAPI/barcode/ext/barcode.xml +2 -6
  28. data/lib/commonAPI/barcode/ext/build +5 -0
  29. data/lib/commonAPI/barcode/ext/build.bat +1 -1
  30. data/lib/commonAPI/barcode/ext/platform/android/AndroidManifest.xml +13 -0
  31. data/lib/commonAPI/barcode/ext/platform/android/Rakefile +229 -0
  32. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_arrow_back.png +0 -0
  33. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_done.png +0 -0
  34. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_flash_off.png +0 -0
  35. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_flash_on.png +0 -0
  36. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_replay.png +0 -0
  37. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable-hdpi/icon.png +0 -0
  38. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/layout/barcode_capture.xml +98 -0
  39. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values/barcode_strings.xml +12 -0
  40. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values/barcode_styles.xml +8 -0
  41. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values/dimens.xml +5 -0
  42. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values-w820dp/dimens.xml +6 -0
  43. data/lib/commonAPI/barcode/ext/platform/android/ext_java.files +11 -0
  44. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeCaptureActivity.java +669 -0
  45. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeFormats.java +64 -0
  46. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeGraphic.java +94 -0
  47. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeGraphicTracker.java +165 -0
  48. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeTrackerFactory.java +47 -0
  49. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/ui/camera/CameraSource.java +1166 -0
  50. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/ui/camera/CameraSourcePreview.java +189 -0
  51. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/ui/camera/GraphicOverlay.java +309 -0
  52. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeCommon.java +199 -0
  53. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeFactory.java +66 -49
  54. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeFactoryRhoListener.java +9 -1
  55. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeRhoExtension.java +9 -1
  56. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeSingleton.java +75 -23
  57. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/InternalAndroidBarcodeScanner.java +184 -0
  58. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/ZXingScanner.java +48 -180
  59. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/emdk3/EMDK3Scanner.java +8 -1
  60. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/emdk3/EMDK3ScannerSettings.java +4 -3
  61. data/lib/commonAPI/barcode/ext/platform/iphone/Barcode.xcodeproj/project.pbxproj +4 -4
  62. data/lib/commonAPI/barcode/ext/platform/iphone/Rakefile +9 -64
  63. data/lib/commonAPI/barcode/ext/platform/iphone/ZXingObjC/ZXingObjC/client/result/ZXResultParser.m +1 -1
  64. data/lib/commonAPI/barcode/ext/platform/iphone/ZXingObjC/ZXingObjC/datamatrix/decoder/ZXDataMatrixDecodedBitStreamParser.m +4 -4
  65. data/lib/commonAPI/barcode/ext/platform/iphone/ZXingObjC/ZXingObjC.xcodeproj/project.pbxproj +6 -6
  66. data/lib/commonAPI/barcode/ext/platform/qt/Barcode.pro +41 -37
  67. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogBuilder.h +2 -0
  68. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.cpp +6 -3
  69. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.h +1 -1
  70. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ZXing.h +5 -5
  71. data/lib/commonAPI/barcode/ext.yml +10 -1
  72. data/lib/commonAPI/bluetooth/ext/build.bat +1 -1
  73. data/lib/commonAPI/bluetooth/ext/platform/android/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerNew.java +2 -0
  74. data/lib/commonAPI/bluetooth/ext/platform/iphone/Bluetooth.xcodeproj/project.pbxproj +6 -16
  75. data/lib/commonAPI/bluetooth/ext/platform/iphone/Rakefile +9 -62
  76. data/lib/commonAPI/bluetooth/ext/platform/qt/Bluetooth.pro +8 -11
  77. data/lib/commonAPI/bluetooth/ext/platform/qt/src/bluetooth/bluetoothserver.h +1 -1
  78. data/lib/commonAPI/clipboard/ext/build.bat +1 -1
  79. data/lib/commonAPI/clipboard/ext/platform/iphone/Clipboard.xcodeproj/project.pbxproj +4 -4
  80. data/lib/commonAPI/clipboard/ext/platform/iphone/Rakefile +9 -62
  81. data/lib/commonAPI/coreapi/RhoNativeTabbarApi.rb +1 -1
  82. data/lib/commonAPI/coreapi/RhoNotificationApi.rb +1 -1
  83. data/lib/commonAPI/coreapi/ext/Application.xml +2 -1
  84. data/lib/commonAPI/coreapi/ext/Timer.xml +21 -13
  85. data/lib/commonAPI/coreapi/ext/build +5 -0
  86. data/lib/commonAPI/coreapi/ext/build.bat +1 -1
  87. data/lib/commonAPI/coreapi/ext/platform/android/ApplicationManifestAdds.erb +0 -1
  88. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/intent/IntentSingleton.java +21 -7
  89. data/lib/commonAPI/coreapi/ext/platform/iphone/Coreapi.xcodeproj/project.pbxproj +6 -4
  90. data/lib/commonAPI/coreapi/ext/platform/iphone/cpp_based_impl/SystemImpl.mm +4 -2
  91. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/IntentSingleton.m +2 -2
  92. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.m +2 -2
  93. data/lib/commonAPI/coreapi/ext/platform/qt/coreapi.pro +16 -17
  94. data/lib/commonAPI/coreapi/ext/platform/qt/src/CNativeToolbarImpl.cpp +1 -1
  95. data/lib/commonAPI/coreapi/ext/platform/wm/src/NetworkDetect.h +2 -2
  96. data/lib/commonAPI/coreapi/ext/platform/wm/src/NotificationImpl.cpp +7 -0
  97. data/lib/commonAPI/coreapi/ext/platform/wm/src/SystemImpl.cpp +1 -3
  98. data/lib/commonAPI/coreapi/ext/push.xml +5 -3
  99. data/lib/commonAPI/coreapi/ext/shared/ApplicationImpl.cpp +2 -2
  100. data/lib/commonAPI/coreapi/ext/shared/InitExtension.cpp +8 -8
  101. data/lib/commonAPI/coreapi/ext/shared/NetworkDetectBase.cpp +1 -1
  102. data/lib/commonAPI/coreapi/ext/shared/SystemImplBase.cpp +2 -0
  103. data/lib/commonAPI/coreapi/ext/system.xml +3 -0
  104. data/lib/commonAPI/devicesecurity/ext/DeviceSecurity.xml +2 -2
  105. data/lib/commonAPI/devicesecurity/ext/build.bat +1 -1
  106. data/lib/commonAPI/devicesecurity/ext/platform/iphone/DeviceSecurity.xcodeproj/project.pbxproj +4 -4
  107. data/lib/commonAPI/devicesecurity/ext/platform/iphone/Rakefile +9 -62
  108. data/lib/commonAPI/eventsource/ext/platform/iphone/Eventsource.xcodeproj/project.pbxproj +4 -4
  109. data/lib/commonAPI/eventsource/ext/platform/iphone/Rakefile +9 -64
  110. data/lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureRhoListener.java +11 -1
  111. data/lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureSingleton.java +14 -1
  112. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/HardwareKeys.xcodeproj/project.pbxproj +4 -4
  113. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/Rakefile +9 -62
  114. data/lib/commonAPI/indicators/ext/platform/iphone/Indicators.xcodeproj/project.pbxproj +4 -4
  115. data/lib/commonAPI/indicators/ext/platform/iphone/Rakefile +9 -62
  116. data/lib/commonAPI/javascriptvm/ext/platform/iphone/Javascriptvm.xcodeproj/project.pbxproj +4 -4
  117. data/lib/commonAPI/javascriptvm/ext/platform/iphone/Rakefile +9 -63
  118. data/lib/commonAPI/logCapture/ext/build.bat +1 -1
  119. data/lib/commonAPI/logCapture/ext/platform/iphone/LogCapture.xcodeproj/project.pbxproj +4 -4
  120. data/lib/commonAPI/logCapture/ext/platform/iphone/Rakefile +9 -62
  121. data/lib/commonAPI/mediacapture/ext/build +5 -0
  122. data/lib/commonAPI/mediacapture/ext/build.bat +1 -1
  123. data/lib/commonAPI/mediacapture/ext/platform/android/AndroidManifest_rhomobile.xml +1 -0
  124. data/lib/commonAPI/mediacapture/ext/platform/android/ApplicationFileProvider.erb +9 -0
  125. data/lib/commonAPI/mediacapture/ext/platform/android/adds/res/xml/image_fileprovider_paths.xml +4 -0
  126. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraObject.java +60 -3
  127. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraRhoListener.java +50 -8
  128. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/videocapture/Videocapture.java +3 -1
  129. data/lib/commonAPI/mediacapture/ext/platform/iphone/Mediacapture.xcodeproj/project.pbxproj +4 -4
  130. data/lib/commonAPI/mediacapture/ext/platform/iphone/Rakefile +9 -62
  131. data/lib/commonAPI/mediacapture/ext/platform/qt/{MediaCapture.pro → Mediacapture.pro} +19 -33
  132. data/lib/commonAPI/mediacapture/ext/platform/qt/src/Camera_impl.cpp +1 -1
  133. data/lib/commonAPI/mediacapture/ext.yml +4 -1
  134. data/lib/commonAPI/mediaplayer/ext/platform/iphone/Mediaplayer.xcodeproj/project.pbxproj +4 -4
  135. data/lib/commonAPI/mediaplayer/ext/platform/iphone/Rakefile +9 -62
  136. data/lib/commonAPI/printing/ext/platform/iphone/Printing.xcodeproj/project.pbxproj +4 -4
  137. data/lib/commonAPI/printing/ext/platform/iphone/Rakefile +9 -62
  138. data/lib/commonAPI/printing_epson/ext/platform/iphone/PrintingEpson.xcodeproj/project.pbxproj +4 -4
  139. data/lib/commonAPI/printing_epson/ext/platform/iphone/Rakefile +9 -62
  140. data/lib/commonAPI/printing_zebra/ext/platform/iphone/PrintingZebra.xcodeproj/project.pbxproj +4 -4
  141. data/lib/commonAPI/printing_zebra/ext/platform/iphone/Rakefile +9 -62
  142. data/lib/commonAPI/screenorientation/ext/platform/android/src/com/rho/screenorientation/ScreenOrientationRhoListener.java +2 -1
  143. data/lib/commonAPI/screenorientation/ext/platform/android/src/com/rho/screenorientation/ScreenOrientationSingleton.java +19 -6
  144. data/lib/commonAPI/screenorientation/ext/platform/iphone/Rakefile +9 -63
  145. data/lib/commonAPI/screenorientation/ext/platform/iphone/Screenorientation.xcodeproj/project.pbxproj +4 -4
  146. data/lib/commonAPI/sensor/ext/platform/iphone/Rakefile +9 -62
  147. data/lib/commonAPI/sensor/ext/platform/iphone/Sensor.xcodeproj/project.pbxproj +4 -4
  148. data/lib/commonAPI/signature/ext/build.bat +8 -0
  149. data/lib/commonAPI/signature/ext/platform/iphone/Rakefile +9 -62
  150. data/lib/commonAPI/signature/ext/platform/iphone/signature.xcodeproj/project.pbxproj +4 -4
  151. data/lib/commonAPI/signature/ext/platform/qt/Signature.pro +26 -12
  152. data/lib/commonAPI/signature/ext.yml +0 -1
  153. data/lib/commonAPI/smartcradle/ext/build.bat +1 -1
  154. data/lib/commonAPI/websocket/ext/platform/iphone/Rakefile +9 -62
  155. data/lib/commonAPI/websocket/ext/platform/iphone/Websocket.xcodeproj/project.pbxproj +4 -4
  156. data/lib/extensions/Development/ext/build.bat +1 -1
  157. data/lib/extensions/Development/ext/platform/iphone/Development.xcodeproj/project.pbxproj +4 -4
  158. data/lib/extensions/Development/ext/platform/iphone/Rakefile +9 -62
  159. data/lib/extensions/applePush/ext/platform/iphone/ApplePush.xcodeproj/project.pbxproj +4 -4
  160. data/lib/extensions/applePush/ext/platform/iphone/Rakefile +9 -62
  161. data/lib/extensions/audiocapture/ext/audiocapture/platform/iphone/Audiocapture.xcodeproj/project.pbxproj +4 -4
  162. data/lib/extensions/audiocapture/ext/audiocapture/platform/iphone/Rakefile +9 -62
  163. data/lib/extensions/bigdecimal/ext/Rakefile +2 -2
  164. data/lib/extensions/bigdecimal/ext/bigdecimal.pro +9 -0
  165. data/lib/extensions/bigdecimal/ext/build +4 -0
  166. data/lib/extensions/bigdecimal/ext/build.bat +1 -1
  167. data/lib/extensions/bigdecimal/ext/iphone/Bigdecimal.xcodeproj/project.pbxproj +4 -4
  168. data/lib/extensions/bigdecimal/ext/iphone/Rakefile +9 -62
  169. data/lib/extensions/debugger/debugger.rb +331 -180
  170. data/lib/extensions/decrypt/ext/build.bat +1 -1
  171. data/lib/extensions/decrypt/ext/platform/iphone/Decrypt.xcodeproj/project.pbxproj +4 -4
  172. data/lib/extensions/decrypt/ext/platform/iphone/Rakefile +9 -62
  173. data/lib/extensions/decryptstub/ext/build.bat +1 -1
  174. data/lib/extensions/decryptstub/ext/platform/iphone/Decryptstub.xcodeproj/project.pbxproj +6 -4
  175. data/lib/extensions/decryptstub/ext/platform/iphone/Rakefile +9 -62
  176. data/lib/extensions/digest/ext/Rakefile +2 -2
  177. data/lib/extensions/digest/ext/build +4 -0
  178. data/lib/extensions/digest/ext/build.bat +1 -1
  179. data/lib/extensions/digest/ext/digest.pro +9 -0
  180. data/lib/extensions/digest/ext/iphone/Digest.xcodeproj/project.pbxproj +4 -4
  181. data/lib/extensions/digest/ext/iphone/Rakefile +9 -62
  182. data/lib/extensions/digest-md5/ext/Rakefile +2 -2
  183. data/lib/extensions/digest-md5/ext/build +4 -0
  184. data/lib/extensions/digest-md5/ext/build.bat +1 -1
  185. data/lib/extensions/digest-md5/ext/digest-md5.pro +9 -0
  186. data/lib/extensions/digest-md5/ext/iphone/Dmd5.xcodeproj/project.pbxproj +4 -4
  187. data/lib/extensions/digest-md5/ext/iphone/Rakefile +9 -62
  188. data/lib/extensions/digest-sha1/ext/Rakefile +2 -2
  189. data/lib/extensions/digest-sha1/ext/build +4 -0
  190. data/lib/extensions/digest-sha1/ext/build.bat +1 -1
  191. data/lib/extensions/digest-sha1/ext/digest-sha1.pro +9 -0
  192. data/lib/extensions/digest-sha1/ext/iphone/Dsha1.xcodeproj/project.pbxproj +4 -4
  193. data/lib/extensions/digest-sha1/ext/iphone/Rakefile +9 -62
  194. data/lib/extensions/digest-sha2/ext/Rakefile +2 -2
  195. data/lib/extensions/digest-sha2/ext/build +4 -0
  196. data/lib/extensions/digest-sha2/ext/build.bat +1 -1
  197. data/lib/extensions/digest-sha2/ext/digest-sha2.pro +9 -0
  198. data/lib/extensions/digest-sha2/ext/iphone/Dsha2.xcodeproj/project.pbxproj +4 -4
  199. data/lib/extensions/digest-sha2/ext/iphone/Rakefile +9 -62
  200. data/lib/extensions/esri/ext/esri/platform/iphone/ESRI.xcodeproj/project.pbxproj +4 -4
  201. data/lib/extensions/esri/ext/esri/platform/iphone/Rakefile +9 -65
  202. data/lib/extensions/fcm-push/ext/iphone/Podfile +11 -0
  203. data/lib/extensions/fcm-push/ext/iphone/Rakefile +13 -66
  204. data/lib/extensions/fcm-push/ext/iphone/fcm-push.xcodeproj/project.pbxproj +99 -48
  205. data/lib/extensions/fcm-push/ext/iphone/impl/PushNotificationsReceiver.h +3 -1
  206. data/lib/extensions/fcm-push/ext/iphone/impl/PushNotificationsReceiver.mm +11 -4
  207. data/lib/extensions/fcm-push/ext/iphone/resources.txt +1 -0
  208. data/lib/extensions/fcm-push/ext.yml +5 -1
  209. data/lib/extensions/fcntl/ext/Rakefile +2 -2
  210. data/lib/extensions/fcntl/ext/build +4 -0
  211. data/lib/extensions/fcntl/ext/build.bat +1 -1
  212. data/lib/extensions/fcntl/ext/fcntl.pro +9 -0
  213. data/lib/extensions/fcntl/ext/iphone/Fcntl.xcodeproj/project.pbxproj +4 -4
  214. data/lib/extensions/fcntl/ext/iphone/Rakefile +9 -62
  215. data/lib/extensions/keyboard/ext/build.bat +1 -1
  216. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard.xcodeproj/project.pbxproj +4 -4
  217. data/lib/extensions/keyboard/ext/platform/iphone/Rakefile +9 -62
  218. data/lib/extensions/openssl/ext/Rakefile +2 -2
  219. data/lib/extensions/openssl/ext/build +4 -0
  220. data/lib/extensions/openssl/ext/build.bat +1 -1
  221. data/lib/extensions/openssl/ext/iphone/Rakefile +9 -62
  222. data/lib/extensions/openssl/ext/iphone/openssl.xcodeproj/project.pbxproj +4 -4
  223. data/lib/extensions/openssl/ext/linux/extconf.h +65 -0
  224. data/lib/extensions/openssl/ext/openssl.pro +10 -0
  225. data/lib/extensions/openssl/ext/openssl_missing.c +4 -2
  226. data/lib/extensions/openssl/ext/ossl.h +3 -0
  227. data/lib/extensions/openssl/ext/ossl_x509cert.c +1 -1
  228. data/lib/extensions/openssl.so/ext/Rakefile +1 -1
  229. data/lib/extensions/openssl.so/ext/android/aarch64/libopenssl.so.a +0 -0
  230. data/lib/extensions/openssl.so/ext/android/armeabi/libopenssl.so.a +0 -0
  231. data/lib/extensions/openssl.so/ext/android/x86/libopenssl.so.a +0 -0
  232. data/lib/extensions/openssl.so/ext/build +4 -0
  233. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libcrypto.a +0 -0
  234. data/lib/extensions/{fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics → openssl.so/ext/iphone/OpenSSl.SDK/libcrypto_sim.a} +0 -0
  235. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libssl.a +0 -0
  236. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libssl_sim.a +0 -0
  237. data/lib/extensions/openssl.so/ext/iphone/Rakefile +30 -54
  238. data/lib/extensions/openssl.so/ext/iphone/Release-iphoneos/libopenssl.so.a +0 -0
  239. data/lib/extensions/openssl.so/ext/iphone/Release-iphonesimulator/libopenssl.so.a +0 -0
  240. data/lib/extensions/openssl.so/ext/iphone/openssl.xcodeproj/project.pbxproj +116 -10
  241. data/lib/extensions/openssl.so/ext/sources/include/openssl/__DECC_INCLUDE_EPILOGUE.H +9 -3
  242. data/lib/extensions/openssl.so/ext/sources/include/openssl/__DECC_INCLUDE_PROLOGUE.H +10 -4
  243. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1.h +13 -226
  244. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1err.h +256 -0
  245. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1t.h +24 -8
  246. data/lib/extensions/openssl.so/ext/sources/include/openssl/async.h +2 -24
  247. data/lib/extensions/openssl.so/ext/sources/include/openssl/asyncerr.h +42 -0
  248. data/lib/extensions/openssl.so/ext/sources/include/openssl/bio.h +89 -139
  249. data/lib/extensions/openssl.so/ext/sources/include/openssl/bioerr.h +124 -0
  250. data/lib/extensions/openssl.so/ext/sources/include/openssl/bn.h +75 -111
  251. data/lib/extensions/openssl.so/ext/sources/include/openssl/bnerr.h +100 -0
  252. data/lib/extensions/openssl.so/ext/sources/include/openssl/buffer.h +2 -17
  253. data/lib/extensions/openssl.so/ext/sources/include/openssl/buffererr.h +34 -0
  254. data/lib/extensions/openssl.so/ext/sources/include/openssl/cms.h +6 -179
  255. data/lib/extensions/openssl.so/ext/sources/include/openssl/cmserr.h +202 -0
  256. data/lib/extensions/openssl.so/ext/sources/include/openssl/comp.h +2 -21
  257. data/lib/extensions/openssl.so/ext/sources/include/openssl/comperr.h +44 -0
  258. data/lib/extensions/openssl.so/ext/sources/include/openssl/conf.h +2 -51
  259. data/lib/extensions/openssl.so/ext/sources/include/openssl/conferr.h +76 -0
  260. data/lib/extensions/openssl.so/ext/sources/include/openssl/crypto.h +27 -49
  261. data/lib/extensions/openssl.so/ext/sources/include/openssl/cryptoerr.h +57 -0
  262. data/lib/extensions/openssl.so/ext/sources/include/openssl/ct.h +2 -61
  263. data/lib/extensions/openssl.so/ext/sources/include/openssl/cterr.h +80 -0
  264. data/lib/extensions/openssl.so/ext/sources/include/openssl/dh.h +33 -54
  265. data/lib/extensions/openssl.so/ext/sources/include/openssl/dherr.h +88 -0
  266. data/lib/extensions/openssl.so/ext/sources/include/openssl/dsa.h +21 -60
  267. data/lib/extensions/openssl.so/ext/sources/include/openssl/dsaerr.h +72 -0
  268. data/lib/extensions/openssl.so/ext/sources/include/openssl/dtls1.h +7 -8
  269. data/lib/extensions/openssl.so/ext/sources/include/openssl/e_os2.h +21 -19
  270. data/lib/extensions/openssl.so/ext/sources/include/openssl/ec.h +187 -284
  271. data/lib/extensions/openssl.so/ext/sources/include/openssl/ecerr.h +275 -0
  272. data/lib/extensions/openssl.so/ext/sources/include/openssl/engine.h +5 -94
  273. data/lib/extensions/openssl.so/ext/sources/include/openssl/engineerr.h +111 -0
  274. data/lib/extensions/openssl.so/ext/sources/include/openssl/err.h +19 -5
  275. data/lib/extensions/openssl.so/ext/sources/include/openssl/evp.h +250 -180
  276. data/lib/extensions/openssl.so/ext/sources/include/openssl/evperr.h +205 -0
  277. data/lib/extensions/openssl.so/ext/sources/include/openssl/hmac.h +4 -2
  278. data/lib/extensions/openssl.so/ext/sources/include/openssl/kdf.h +51 -29
  279. data/lib/extensions/openssl.so/ext/sources/include/openssl/kdferr.h +55 -0
  280. data/lib/extensions/openssl.so/ext/sources/include/openssl/lhash.h +43 -19
  281. data/lib/extensions/openssl.so/ext/sources/include/openssl/modes.h +11 -6
  282. data/lib/extensions/openssl.so/ext/sources/include/openssl/obj_mac.h +632 -11
  283. data/lib/extensions/openssl.so/ext/sources/include/openssl/objects.h +3 -925
  284. data/lib/extensions/openssl.so/ext/sources/include/openssl/objectserr.h +42 -0
  285. data/lib/extensions/openssl.so/ext/sources/include/openssl/ocsp.h +21 -65
  286. data/lib/extensions/openssl.so/ext/sources/include/openssl/ocsperr.h +78 -0
  287. data/lib/extensions/openssl.so/ext/sources/include/openssl/opensslconf.h +36 -10
  288. data/lib/extensions/openssl.so/ext/sources/include/openssl/opensslv.h +3 -7
  289. data/lib/extensions/openssl.so/ext/sources/include/openssl/ossl_typ.h +8 -1
  290. data/lib/extensions/openssl.so/ext/sources/include/openssl/pem.h +13 -136
  291. data/lib/extensions/openssl.so/ext/sources/include/openssl/pem2.h +4 -11
  292. data/lib/extensions/openssl.so/ext/sources/include/openssl/pemerr.h +103 -0
  293. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs12.h +1 -60
  294. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs12err.h +81 -0
  295. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs7.h +1 -86
  296. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs7err.h +103 -0
  297. data/lib/extensions/openssl.so/ext/sources/include/openssl/rand.h +22 -34
  298. data/lib/extensions/openssl.so/ext/sources/include/openssl/rand_drbg.h +130 -0
  299. data/lib/extensions/openssl.so/ext/sources/include/openssl/randerr.h +94 -0
  300. data/lib/extensions/openssl.so/ext/sources/include/openssl/rsa.h +96 -173
  301. data/lib/extensions/openssl.so/ext/sources/include/openssl/rsaerr.h +167 -0
  302. data/lib/extensions/openssl.so/ext/sources/include/openssl/safestack.h +66 -23
  303. data/lib/extensions/openssl.so/ext/sources/include/openssl/srp.h +5 -1
  304. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl.h +706 -828
  305. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl3.h +49 -20
  306. data/lib/extensions/openssl.so/ext/sources/include/openssl/sslerr.h +773 -0
  307. data/lib/extensions/openssl.so/ext/sources/include/openssl/stack.h +8 -3
  308. data/lib/extensions/openssl.so/ext/sources/include/openssl/store.h +266 -1
  309. data/lib/extensions/openssl.so/ext/sources/include/openssl/storeerr.h +91 -0
  310. data/lib/extensions/openssl.so/ext/sources/include/openssl/symhacks.h +1 -16
  311. data/lib/extensions/openssl.so/ext/sources/include/openssl/tls1.h +350 -85
  312. data/lib/extensions/openssl.so/ext/sources/include/openssl/ts.h +25 -109
  313. data/lib/extensions/openssl.so/ext/sources/include/openssl/tserr.h +132 -0
  314. data/lib/extensions/openssl.so/ext/sources/include/openssl/txt_db.h +2 -2
  315. data/lib/extensions/openssl.so/ext/sources/include/openssl/ui.h +56 -66
  316. data/lib/extensions/openssl.so/ext/sources/include/openssl/uierr.h +65 -0
  317. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509.h +36 -112
  318. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509_vfy.h +85 -1
  319. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509err.h +130 -0
  320. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509v3.h +72 -141
  321. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509v3err.h +162 -0
  322. data/lib/extensions/openssl.so.src/ext/build +4 -0
  323. data/lib/extensions/rawsensors/ext/rawsensors/platform/iphone/Rakefile +9 -62
  324. data/lib/extensions/rawsensors/ext/rawsensors/platform/iphone/Rawsensors.xcodeproj/project.pbxproj +4 -4
  325. data/lib/extensions/serialport/ext/build.bat +1 -1
  326. data/lib/extensions/serialport/ext/serialport.pro +11 -11
  327. data/lib/extensions/videocapture/ext/videocapture/platform/iphone/Rakefile +9 -62
  328. data/lib/extensions/videocapture/ext/videocapture/platform/iphone/Videocapture.xcodeproj/project.pbxproj +4 -4
  329. data/lib/extensions/zlib/ext/Rakefile +2 -2
  330. data/lib/extensions/zlib/ext/build +4 -0
  331. data/lib/extensions/zlib/ext/build.bat +1 -1
  332. data/lib/extensions/zlib/ext/gzlib.c +1 -1
  333. data/lib/extensions/zlib/ext/gzread.c +2 -2
  334. data/lib/extensions/zlib/ext/gzwrite.c +3 -3
  335. data/lib/extensions/zlib/ext/iphone/Rakefile +9 -62
  336. data/lib/extensions/zlib/ext/iphone/zlib.xcodeproj/project.pbxproj +4 -4
  337. data/lib/extensions/zlib/ext/zlib.pro +24 -16
  338. data/lib/framework/autocomplete/Rho.rb +6 -2
  339. data/lib/framework/autocomplete/Rhodes.rb +1 -1
  340. data/lib/framework/rho/rho.rb +9 -0
  341. data/lib/framework/rho/rhoapplication.rb +4 -0
  342. data/lib/framework/rhodes.rb +2 -2
  343. data/lib/framework/version.rb +1 -1
  344. data/lib/rhodes.rb +2 -2
  345. data/platform/android/Rhodes/AndroidManifest.xml.erb +3 -2
  346. data/platform/android/Rhodes/jni/include/rhodes/RhoClassFactory.h +4 -3
  347. data/platform/android/Rhodes/jni/include/rhodes/sslimpl.h +94 -6
  348. data/platform/android/Rhodes/jni/src/JNIRhoRuby.cpp +1 -1
  349. data/platform/android/Rhodes/jni/src/JNIRhoRubyCppWrapper.cpp +104 -2
  350. data/platform/android/Rhodes/jni/src/RhoClassFactory.cpp +29 -1
  351. data/platform/android/Rhodes/jni/src/fileapi.cpp +2 -1
  352. data/platform/android/Rhodes/jni/src/rhodes.cpp +1 -0
  353. data/platform/android/Rhodes/jni/src/rhodesapp.cpp +18 -0
  354. data/platform/android/Rhodes/jni/src/sslimpl.cpp +317 -3
  355. data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +15 -1
  356. data/platform/android/Rhodes/src/com/rhomobile/rhodes/LocalFileProvider.java +17 -0
  357. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubySingleton.java +33 -0
  358. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +241 -165
  359. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocationImpl.java +7 -1
  360. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +7 -1
  361. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +13 -0
  362. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality11.java +9 -0
  363. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality26.java +61 -13
  364. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocketImpl.java +10 -2
  365. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +268 -16
  366. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/LocalFileHandler.java +21 -18
  367. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +47 -1
  368. data/platform/android/build/CMakeLists.txt.erb +3 -33
  369. data/platform/android/build/CMakeListsExts.txt.erb +26 -0
  370. data/platform/android/build/aab_builder.rb +234 -0
  371. data/platform/android/build/android.rake +512 -381
  372. data/platform/android/build/android_studio_project_generator.rb +82 -0
  373. data/platform/android/build/android_tools.rb +111 -26
  374. data/platform/android/build/androidcommon.rb +4 -23
  375. data/platform/android/build/apk_builder.rb +42 -0
  376. data/platform/android/build/libcurl_build.files +1 -1
  377. data/platform/android/build/librhodes_build.files +1 -1
  378. data/platform/android/build/maven_deps_extractor.rb +39 -5
  379. data/platform/android/build/ndkwrapper.rb +9 -11
  380. data/platform/android/proguard/proguard-base-rules.pro +27 -4
  381. data/platform/iphone/Classes/AppManager/AppManager.m +174 -159
  382. data/platform/iphone/Classes/Camera/PickImageDelegate.m +63 -0
  383. data/platform/iphone/Classes/RhoAlert.m +2 -2
  384. data/platform/iphone/Classes/RhoUIWebView.h +1 -1
  385. data/platform/iphone/Classes/RhoUIWebView.m +1 -1
  386. data/platform/iphone/Classes/RhoWKWebView.h +6 -3
  387. data/platform/iphone/Classes/RhoWKWebView.mm +86 -23
  388. data/platform/iphone/Classes/RhoWebView.h +6 -6
  389. data/platform/iphone/Classes/RhoWebViewFabrique.h +1 -1
  390. data/platform/iphone/Classes/RhoWebViewFabrique.m +4 -4
  391. data/platform/iphone/Classes/Rhodes.m +60 -12
  392. data/platform/iphone/Classes/SimpleMainView.m +2 -2
  393. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.m +3 -3
  394. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.m +1 -1
  395. data/platform/iphone/Classes/rho/net/IPhoneNetRequest.mm +1 -1
  396. data/platform/iphone/Default-568h@2x.png +0 -0
  397. data/platform/iphone/Default-667h@2x.png +0 -0
  398. data/platform/iphone/Default-736h@3x.png +0 -0
  399. data/platform/iphone/Default-812h@3x.png +0 -0
  400. data/platform/iphone/Default-896h@2x.png +0 -0
  401. data/platform/iphone/Default-896h@3x.png +0 -0
  402. data/platform/iphone/Default-Landscape-736h@3x.png +0 -0
  403. data/platform/iphone/Default-Landscape-812h@3x.png +0 -0
  404. data/platform/iphone/Default-Landscape-896h@2x.png +0 -0
  405. data/platform/iphone/Default-Landscape-896h@3x.png +0 -0
  406. data/platform/iphone/Default-Landscape.png +0 -0
  407. data/platform/iphone/Default-Landscape@2x.png +0 -0
  408. data/platform/iphone/Default-LandscapeLeft.png +0 -0
  409. data/platform/iphone/Default-LandscapeLeft@2x.png +0 -0
  410. data/platform/iphone/Default-LandscapeRight.png +0 -0
  411. data/platform/iphone/Default-LandscapeRight@2x.png +0 -0
  412. data/platform/iphone/Default-Portrait.png +0 -0
  413. data/platform/iphone/Default-Portrait@2x.png +0 -0
  414. data/platform/iphone/Default-PortraitUpsideDown.png +0 -0
  415. data/platform/iphone/Default-PortraitUpsideDown@2x.png +0 -0
  416. data/platform/iphone/Default.png +0 -0
  417. data/platform/iphone/Default@2x.png +0 -0
  418. data/platform/iphone/Framework/RhoApplication/RhoApplication.xcodeproj/project.pbxproj +9 -7
  419. data/platform/iphone/Framework/Rhodes/Rhodes.xcodeproj/project.pbxproj +14 -6
  420. data/platform/iphone/RhoAppBaseLib/RhoAppBaseLib.xcodeproj/project.pbxproj +7 -7
  421. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +4 -4
  422. data/platform/iphone/Rhodes.xcodeproj/project.pbxproj +4 -4
  423. data/platform/iphone/curl/curl.xcodeproj/project.pbxproj +11 -7
  424. data/platform/iphone/rbuild/buildextension.rb +115 -0
  425. data/platform/iphone/rbuild/iphone.rake +401 -115
  426. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +5 -4
  427. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +4 -4
  428. data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +3 -3
  429. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +8 -7
  430. data/platform/linux/tasks/control.erb +8 -0
  431. data/platform/linux/tasks/getting sudo instruction.txt +8 -0
  432. data/platform/linux/tasks/install_dev_depes_alt.sh +9 -0
  433. data/platform/linux/tasks/install_dev_depes_astra.sh +7 -0
  434. data/platform/linux/tasks/install_dev_depes_redos.sh +10 -0
  435. data/platform/linux/tasks/install_dev_depes_rosa_r7.sh +15 -0
  436. data/platform/linux/tasks/install_dev_depes_rosa_x4.sh +21 -0
  437. data/platform/linux/tasks/install_dev_depes_ubuntu.sh +18 -0
  438. data/platform/linux/tasks/installation.txt +2 -0
  439. data/platform/linux/tasks/linter_exceptions.erb +2 -0
  440. data/platform/linux/tasks/linux.rake +498 -61
  441. data/platform/linux/tasks/rpm_spec.erb +33 -0
  442. data/platform/osx/bin/RhoSimulator/RhoSimulator.app.zip +0 -0
  443. data/platform/sailfish/build/coreapi.pro.erb +11 -12
  444. data/platform/sailfish/build/curl.pro.erb +12 -14
  445. data/platform/sailfish/build/harbour-SailfishRhodes.pro.erb +2 -2
  446. data/platform/sailfish/build/rho_build.cmd.erb +1 -0
  447. data/platform/sailfish/build/rho_clean.cmd.erb +1 -0
  448. data/platform/sailfish/build/rho_deploy.cmd.erb +1 -0
  449. data/platform/sailfish/build/rho_rpm.cmd.erb +1 -0
  450. data/platform/sailfish/build/rho_rpmvalidation.cmd.erb +1 -0
  451. data/platform/sailfish/build/rhodes.pro.erb +43 -38
  452. data/platform/sailfish/build/rholib.pro.erb +21 -57
  453. data/platform/sailfish/build/rubylib.pro.erb +25 -30
  454. data/platform/sailfish/build/sailfish.rake +56 -9
  455. data/platform/sailfish/build/sqlite3.pro.erb +9 -9
  456. data/platform/sailfish/build/syncengine.pro.erb +9 -16
  457. data/platform/sailfish/build/unzip.pro.erb +66 -0
  458. data/platform/sailfish/build/zlib.pro.erb +72 -0
  459. data/platform/shared/api_generator/Api.h +5 -0
  460. data/platform/shared/common/CMakeLists.txt.erb +2 -52
  461. data/platform/shared/common/IRhoClassFactory.h +54 -2
  462. data/platform/shared/common/RhoDefs.h +0 -1
  463. data/platform/shared/common/RhoFile.h +2 -0
  464. data/platform/shared/common/RhoMutexLock.h +1 -1
  465. data/platform/shared/common/RhodesApp.cpp +50 -7
  466. data/platform/shared/common/RhodesApp.h +5 -1
  467. data/platform/shared/common/iphone/RhoClassfactory.h +1 -1
  468. data/platform/shared/curl/CMakeLists.txt.erb +1 -94
  469. data/platform/shared/curl/lib/asyn-thread.c +2 -1
  470. data/platform/shared/curl/lib/curl_addrinfo.h +39 -0
  471. data/platform/shared/curl/lib/curl_config.h +9 -10
  472. data/platform/shared/curl/lib/curl_setup.h +4 -0
  473. data/platform/shared/curl/lib/multi.c +0 -1
  474. data/platform/shared/curl/lib/transfer.c +21 -2
  475. data/platform/shared/curl/lib/vtls/vtls.h +3 -0
  476. data/platform/shared/db/CMakeLists.txt.erb +1 -6
  477. data/platform/shared/db/DBAdapter.cpp +10 -4
  478. data/platform/shared/json/RJSONTokener.c +1 -8
  479. data/platform/shared/json/json_object.c +2 -2
  480. data/platform/shared/json/json_tokener.c +1 -1
  481. data/platform/shared/json.new/CMakeLists.txt.erb +1 -15
  482. data/platform/shared/json.new/RJSONTokener.c +0 -7
  483. data/platform/shared/json.new/json_object.c +5 -5
  484. data/platform/shared/json.new/json_pointer.c +2 -2
  485. data/platform/shared/json.new/json_tokener.c +1 -1
  486. data/platform/shared/logging/CMakeLists.txt.erb +1 -5
  487. data/platform/shared/logging/RhoLogConf.cpp +82 -3
  488. data/platform/shared/net/CURLNetRequest.cpp +6 -7
  489. data/platform/shared/net/HttpServer.cpp +234 -4
  490. data/platform/shared/net/HttpServer.h +22 -2
  491. data/platform/shared/net/INetRequest.cpp +2 -2
  492. data/platform/shared/net/INetRequest.h +6 -0
  493. data/platform/shared/net/linux/SSLImpl.cpp +2 -1
  494. data/platform/shared/net/ssl.h +26 -0
  495. data/platform/shared/qt/RhoSimulator.pro +24 -12
  496. data/platform/shared/qt/RhoSimulator_dev.pro +30 -15
  497. data/platform/shared/qt/curl/curl.pro +27 -16
  498. data/platform/shared/qt/rhodes/iexecutable.h +1 -1
  499. data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +1 -1
  500. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +1 -1
  501. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.cpp +25 -10
  502. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.h +1 -1
  503. data/platform/shared/qt/rhodes/newVersion/{qtwebenginepage.cpp → QtWebEnginePage.cpp} +1 -1
  504. data/platform/shared/qt/rhodes/newVersion/{qtwebenginepage.h → QtWebEnginePage.h} +0 -0
  505. data/platform/shared/qt/rhodes/newVersion/{qtwebengineview.cpp → QtWebEngineView.cpp} +1 -1
  506. data/platform/shared/qt/rhodes/newVersion/{qtwebengineview.h → QtWebEngineView.h} +0 -0
  507. data/platform/shared/qt/rhodes/newVersion/WebUrlRequestInterceptor.cpp +2 -2
  508. data/platform/shared/qt/rhodes/newVersion/main.cpp +5 -6
  509. data/platform/shared/qt/rhodes/resources/rho.png +0 -0
  510. data/platform/shared/qt/rhodes/rhodes.pro +88 -72
  511. data/platform/shared/qt/rholib/rholib.pro +33 -25
  512. data/platform/shared/qt/rhoruby_win32_build.bat +1 -1
  513. data/platform/shared/qt/rhoruby_win32_build_debug.bat +1 -1
  514. data/platform/shared/qt/rhosimulator_win32_build.bat +1 -1
  515. data/platform/shared/qt/rhosimulator_win32_build_debug.bat +1 -1
  516. data/platform/shared/qt/rubylib/rubylib.pro +37 -34
  517. data/platform/shared/qt/sailfish/SailfishRhodes.pro +1 -1
  518. data/platform/shared/qt/sailfish/icons/172x172/harbour-sailfishrhodes.png +0 -0
  519. data/platform/shared/qt/sailfish/qml/pages/BarcodePage.qml +18 -48
  520. data/platform/shared/qt/sqlite3/sqlite3.pro +16 -10
  521. data/platform/shared/qt/syncengine/syncengine.pro +18 -15
  522. data/platform/shared/qt/unzip/unzip.pro +133 -0
  523. data/platform/shared/rhoruby/impl/RhoRubyImpl.cpp +24 -19
  524. data/platform/shared/rhoruby/impl/RhoRubyImpl.h +5 -0
  525. data/platform/shared/ruby/CMakeLists.txt.erb +1 -129
  526. data/platform/shared/ruby/dln_find.c +1 -1
  527. data/platform/shared/ruby/error.c +1 -1
  528. data/platform/shared/ruby/ext/rho/rhoruby.c +35 -14
  529. data/platform/shared/ruby/ext/rho/rhoruby.h +1 -0
  530. data/platform/shared/ruby/ext/socket/addrinfo.h +2 -1
  531. data/platform/shared/ruby/ext/socket/ipsocket.c +3 -3
  532. data/platform/shared/ruby/file.c +3 -3
  533. data/platform/shared/ruby/io.c +46 -46
  534. data/platform/shared/ruby/linux/ruby/config.h +94 -34
  535. data/platform/shared/ruby/linux/ruby/config_linux.h +403 -0
  536. data/platform/shared/ruby/missing/langinfo.c +1 -1
  537. data/platform/shared/ruby/missing/memmove.c +4 -0
  538. data/platform/shared/ruby/posixnames.h +2 -8
  539. data/platform/shared/ruby/process.c +7 -7
  540. data/platform/shared/ruby/ruby.c +10 -10
  541. data/platform/shared/ruby/sailfish/ruby/config.h +1 -1
  542. data/platform/shared/ruby/thread_pthread.c +1 -1
  543. data/platform/shared/ruby/time.c +2 -2
  544. data/platform/shared/ruby/uwp/win32/win32.c +12 -12
  545. data/platform/shared/ruby/win32/ruby/config.h +1 -1
  546. data/platform/shared/sqlite/CMakeLists.txt.erb +1 -1
  547. data/platform/shared/sqlite/sqlite3.c +23 -0
  548. data/platform/shared/sync/CMakeLists.txt.erb +1 -1
  549. data/platform/shared/unzip/gzlib.cpp +1 -1
  550. data/platform/shared/unzip/gzwrite.cpp +3 -3
  551. data/platform/shared/unzip/unzip.cpp +3 -10
  552. data/platform/shared/unzip/zip.cpp +3 -8
  553. data/platform/uwp/rhodes/App.xaml.cs +9 -9
  554. data/platform/uwp/rhoruntime/common/RhoClassFactory.h +1 -1
  555. data/platform/win32/RhoSimulator/Qt5Core.dll +0 -0
  556. data/platform/win32/RhoSimulator/Qt5Gui.dll +0 -0
  557. data/platform/win32/RhoSimulator/Qt5Multimedia.dll +0 -0
  558. data/platform/win32/RhoSimulator/Qt5Network.dll +0 -0
  559. data/platform/win32/RhoSimulator/Qt5Positioning.dll +0 -0
  560. data/platform/win32/RhoSimulator/Qt5PrintSupport.dll +0 -0
  561. data/platform/win32/RhoSimulator/Qt5Qml.dll +0 -0
  562. data/platform/win32/RhoSimulator/Qt5Quick.dll +0 -0
  563. data/platform/win32/RhoSimulator/Qt5QuickWidgets.dll +0 -0
  564. data/platform/win32/RhoSimulator/Qt5SerialPort.dll +0 -0
  565. data/platform/win32/RhoSimulator/Qt5Svg.dll +0 -0
  566. data/platform/win32/RhoSimulator/Qt5WebChannel.dll +0 -0
  567. data/platform/win32/RhoSimulator/Qt5WebEngine.dll +0 -0
  568. data/platform/win32/RhoSimulator/Qt5WebEngineCore.dll +0 -0
  569. data/platform/win32/RhoSimulator/Qt5WebEngineWidgets.dll +0 -0
  570. data/platform/win32/RhoSimulator/Qt5Widgets.dll +0 -0
  571. data/platform/win32/RhoSimulator/QtWebEngineProcess.exe +0 -0
  572. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  573. data/platform/win32/RhoSimulator/audio/qtaudio_wasapi.dll +0 -0
  574. data/platform/win32/RhoSimulator/audio/qtaudio_windows.dll +0 -0
  575. data/platform/win32/RhoSimulator/bearer/qgenericbearer.dll +0 -0
  576. data/platform/win32/RhoSimulator/concrt140.dll +0 -0
  577. data/platform/win32/RhoSimulator/iconengines/qsvgicon.dll +0 -0
  578. data/platform/win32/RhoSimulator/imageformats/qgif.dll +0 -0
  579. data/platform/win32/RhoSimulator/imageformats/qicns.dll +0 -0
  580. data/platform/win32/RhoSimulator/imageformats/qico.dll +0 -0
  581. data/platform/win32/RhoSimulator/imageformats/qjpeg.dll +0 -0
  582. data/platform/win32/RhoSimulator/imageformats/qsvg.dll +0 -0
  583. data/platform/win32/RhoSimulator/imageformats/qtga.dll +0 -0
  584. data/platform/win32/RhoSimulator/imageformats/qtiff.dll +0 -0
  585. data/platform/win32/RhoSimulator/imageformats/qwbmp.dll +0 -0
  586. data/platform/win32/RhoSimulator/imageformats/qwebp.dll +0 -0
  587. data/platform/win32/RhoSimulator/libEGL.dll +0 -0
  588. data/platform/win32/RhoSimulator/libGLESV2.dll +0 -0
  589. data/platform/win32/RhoSimulator/mediaservice/dsengine.dll +0 -0
  590. data/platform/win32/RhoSimulator/mediaservice/qtmedia_audioengine.dll +0 -0
  591. data/platform/win32/RhoSimulator/mediaservice/wmfengine.dll +0 -0
  592. data/platform/win32/RhoSimulator/mfc140.dll +0 -0
  593. data/platform/win32/RhoSimulator/mfc140chs.dll +0 -0
  594. data/platform/win32/RhoSimulator/mfc140cht.dll +0 -0
  595. data/platform/win32/RhoSimulator/mfc140deu.dll +0 -0
  596. data/platform/win32/RhoSimulator/mfc140enu.dll +0 -0
  597. data/platform/win32/RhoSimulator/mfc140esn.dll +0 -0
  598. data/platform/win32/RhoSimulator/mfc140fra.dll +0 -0
  599. data/platform/win32/RhoSimulator/mfc140ita.dll +0 -0
  600. data/platform/win32/RhoSimulator/mfc140jpn.dll +0 -0
  601. data/platform/win32/RhoSimulator/mfc140kor.dll +0 -0
  602. data/platform/win32/RhoSimulator/mfc140rus.dll +0 -0
  603. data/platform/win32/RhoSimulator/mfc140u.dll +0 -0
  604. data/platform/win32/RhoSimulator/mfcm140.dll +0 -0
  605. data/platform/win32/RhoSimulator/mfcm140u.dll +0 -0
  606. data/platform/win32/RhoSimulator/msvcp140.dll +0 -0
  607. data/platform/win32/RhoSimulator/msvcp140_1.dll +0 -0
  608. data/platform/win32/RhoSimulator/msvcp140_2.dll +0 -0
  609. data/platform/win32/RhoSimulator/platforms/qwindows.dll +0 -0
  610. data/platform/win32/RhoSimulator/playlistformats/qtmultimedia_m3u.dll +0 -0
  611. data/platform/win32/RhoSimulator/position/qtposition_positionpoll.dll +0 -0
  612. data/platform/win32/RhoSimulator/position/qtposition_serialnmea.dll +0 -0
  613. data/platform/win32/RhoSimulator/position/qtposition_winrt.dll +0 -0
  614. data/platform/win32/RhoSimulator/printsupport/windowsprintersupport.dll +0 -0
  615. data/platform/win32/RhoSimulator/resources/icudtl.dat +0 -0
  616. data/platform/win32/RhoSimulator/resources/qtwebengine_devtools_resources.pak +0 -0
  617. data/platform/win32/RhoSimulator/resources/qtwebengine_resources.pak +0 -0
  618. data/platform/win32/RhoSimulator/resources/qtwebengine_resources_100p.pak +0 -0
  619. data/platform/win32/RhoSimulator/resources/qtwebengine_resources_200p.pak +0 -0
  620. data/platform/win32/RhoSimulator/styles/qwindowsvistastyle.dll +0 -0
  621. data/platform/win32/RhoSimulator/translations/qt_ca.qm +0 -0
  622. data/platform/win32/RhoSimulator/translations/qt_da.qm +0 -0
  623. data/platform/win32/RhoSimulator/translations/qt_de.qm +0 -0
  624. data/platform/win32/RhoSimulator/translations/qt_fi.qm +0 -0
  625. data/platform/win32/RhoSimulator/translations/qt_ru.qm +0 -0
  626. data/platform/win32/RhoSimulator/translations/qt_zh_TW.qm +0 -0
  627. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/am.pak +0 -0
  628. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ar.pak +0 -0
  629. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/bg.pak +0 -0
  630. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/bn.pak +0 -0
  631. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ca.pak +0 -0
  632. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/cs.pak +0 -0
  633. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/da.pak +0 -0
  634. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/de.pak +0 -0
  635. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/el.pak +0 -0
  636. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/en-GB.pak +0 -0
  637. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/en-US.pak +0 -0
  638. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/es-419.pak +0 -0
  639. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/es.pak +0 -0
  640. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/et.pak +0 -0
  641. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fa.pak +0 -0
  642. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fi.pak +0 -0
  643. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fil.pak +0 -0
  644. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fr.pak +0 -0
  645. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/gu.pak +0 -0
  646. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/he.pak +0 -0
  647. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/hi.pak +0 -0
  648. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/hr.pak +0 -0
  649. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/hu.pak +0 -0
  650. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/id.pak +0 -0
  651. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/it.pak +0 -0
  652. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ja.pak +0 -0
  653. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/kn.pak +0 -0
  654. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ko.pak +0 -0
  655. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/lt.pak +0 -0
  656. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/lv.pak +0 -0
  657. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ml.pak +0 -0
  658. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/mr.pak +0 -0
  659. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ms.pak +0 -0
  660. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/nb.pak +0 -0
  661. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/nl.pak +0 -0
  662. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/pl.pak +0 -0
  663. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/pt-BR.pak +0 -0
  664. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/pt-PT.pak +0 -0
  665. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ro.pak +0 -0
  666. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ru.pak +0 -0
  667. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sk.pak +0 -0
  668. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sl.pak +0 -0
  669. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sr.pak +0 -0
  670. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sv.pak +0 -0
  671. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sw.pak +0 -0
  672. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ta.pak +0 -0
  673. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/te.pak +0 -0
  674. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/th.pak +0 -0
  675. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/tr.pak +0 -0
  676. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/uk.pak +0 -0
  677. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/vi.pak +0 -0
  678. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/zh-CN.pak +0 -0
  679. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/zh-TW.pak +0 -0
  680. data/platform/win32/RhoSimulator/vcamp140.dll +0 -0
  681. data/platform/win32/RhoSimulator/vccorlib140.dll +0 -0
  682. data/platform/win32/RhoSimulator/vcomp140.dll +0 -0
  683. data/platform/win32/RhoSimulator/vcruntime140.dll +0 -0
  684. data/platform/win32/build/rhodes.nsi +184 -0
  685. data/platform/win32/build/win32.rake +876 -0
  686. data/platform/wm/build/wm.rake +12 -1067
  687. data/platform/wm/rhodes/rho/common/RhoClassFactory.h +2 -2
  688. data/platform/wm/syncengine/syncengine.vcproj +24 -16
  689. data/platform/wp8/rhoruntime/common/RhoClassFactory.h +1 -1
  690. data/rakefile.rb +169 -89
  691. data/res/build-tools/aapt2/linux/aapt2 +0 -0
  692. data/res/build-tools/aapt2/osx/aapt2 +0 -0
  693. data/res/build-tools/aapt2/windows/aapt2.exe +0 -0
  694. data/res/build-tools/bundletool.jar +0 -0
  695. data/res/build-tools/helpers/ext/android/build_common.rb +160 -0
  696. data/res/build-tools/iphonesim/build/Release/iphonesim_8 +6 -4
  697. data/res/generators/rhogen.rb +13 -3
  698. data/res/generators/templates/api/platform/iphone/generated/stub_impl/MontanaSetup.m +2 -2
  699. data/res/generators/templates/application/AndroidManifest.erb +4 -3
  700. data/res/generators/templates/application/Podfile.example +43 -0
  701. data/res/generators/templates/application/app/Settings/index.erb +52 -55
  702. data/res/generators/templates/application/app/Settings/javascript_index.html +51 -46
  703. data/res/generators/templates/application/app/Settings/javascript_login.html +24 -17
  704. data/res/generators/templates/application/app/Settings/login.erb +5 -12
  705. data/res/generators/templates/application/app/Settings/reset.erb +10 -14
  706. data/res/generators/templates/application/app/index.erb +26 -30
  707. data/res/generators/templates/application/app/javascript_index.html +36 -30
  708. data/res/generators/templates/application/app/javascript_index.js +13 -4
  709. data/res/generators/templates/application/app/layout.erb +18 -4
  710. data/res/generators/templates/application/app/loading.png +0 -0
  711. data/res/generators/templates/application/build.yml +22 -2
  712. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.css +3899 -0
  713. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.css.map +1 -0
  714. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.min.css +7 -0
  715. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.min.css.map +1 -0
  716. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.css +327 -0
  717. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.css.map +1 -0
  718. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.min.css +8 -0
  719. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.min.css.map +1 -0
  720. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.css +10224 -0
  721. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.css.map +1 -0
  722. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.min.css +7 -0
  723. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.min.css.map +1 -0
  724. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.js +7134 -0
  725. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.js.map +1 -0
  726. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js +7 -0
  727. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js.map +1 -0
  728. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.js +4521 -0
  729. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.js.map +1 -0
  730. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.min.js +7 -0
  731. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.min.js.map +1 -0
  732. data/res/generators/templates/application/public/libs/feather/js/feather.js +2413 -0
  733. data/res/generators/templates/application/public/libs/feather/js/feather.min.js +13 -0
  734. data/res/generators/templates/application/public/libs/feather/svg/activity.svg +1 -0
  735. data/res/generators/templates/application/public/libs/feather/svg/airplay.svg +1 -0
  736. data/res/generators/templates/application/public/libs/feather/svg/alert-circle.svg +1 -0
  737. data/res/generators/templates/application/public/libs/feather/svg/alert-octagon.svg +1 -0
  738. data/res/generators/templates/application/public/libs/feather/svg/alert-triangle.svg +1 -0
  739. data/res/generators/templates/application/public/libs/feather/svg/align-center.svg +1 -0
  740. data/res/generators/templates/application/public/libs/feather/svg/align-justify.svg +1 -0
  741. data/res/generators/templates/application/public/libs/feather/svg/align-left.svg +1 -0
  742. data/res/generators/templates/application/public/libs/feather/svg/align-right.svg +1 -0
  743. data/res/generators/templates/application/public/libs/feather/svg/anchor.svg +1 -0
  744. data/res/generators/templates/application/public/libs/feather/svg/aperture.svg +1 -0
  745. data/res/generators/templates/application/public/libs/feather/svg/archive.svg +1 -0
  746. data/res/generators/templates/application/public/libs/feather/svg/arrow-down-circle.svg +1 -0
  747. data/res/generators/templates/application/public/libs/feather/svg/arrow-down-left.svg +1 -0
  748. data/res/generators/templates/application/public/libs/feather/svg/arrow-down-right.svg +1 -0
  749. data/res/generators/templates/application/public/libs/feather/svg/arrow-down.svg +1 -0
  750. data/res/generators/templates/application/public/libs/feather/svg/arrow-left-circle.svg +1 -0
  751. data/res/generators/templates/application/public/libs/feather/svg/arrow-left.svg +1 -0
  752. data/res/generators/templates/application/public/libs/feather/svg/arrow-right-circle.svg +1 -0
  753. data/res/generators/templates/application/public/libs/feather/svg/arrow-right.svg +1 -0
  754. data/res/generators/templates/application/public/libs/feather/svg/arrow-up-circle.svg +1 -0
  755. data/res/generators/templates/application/public/libs/feather/svg/arrow-up-left.svg +1 -0
  756. data/res/generators/templates/application/public/libs/feather/svg/arrow-up-right.svg +1 -0
  757. data/res/generators/templates/application/public/libs/feather/svg/arrow-up.svg +1 -0
  758. data/res/generators/templates/application/public/libs/feather/svg/at-sign.svg +1 -0
  759. data/res/generators/templates/application/public/libs/feather/svg/award.svg +1 -0
  760. data/res/generators/templates/application/public/libs/feather/svg/bar-chart-2.svg +1 -0
  761. data/res/generators/templates/application/public/libs/feather/svg/bar-chart.svg +1 -0
  762. data/res/generators/templates/application/public/libs/feather/svg/battery-charging.svg +1 -0
  763. data/res/generators/templates/application/public/libs/feather/svg/battery.svg +1 -0
  764. data/res/generators/templates/application/public/libs/feather/svg/bell-off.svg +1 -0
  765. data/res/generators/templates/application/public/libs/feather/svg/bell.svg +1 -0
  766. data/res/generators/templates/application/public/libs/feather/svg/bluetooth.svg +1 -0
  767. data/res/generators/templates/application/public/libs/feather/svg/bold.svg +1 -0
  768. data/res/generators/templates/application/public/libs/feather/svg/book-open.svg +1 -0
  769. data/res/generators/templates/application/public/libs/feather/svg/book.svg +1 -0
  770. data/res/generators/templates/application/public/libs/feather/svg/bookmark.svg +1 -0
  771. data/res/generators/templates/application/public/libs/feather/svg/box.svg +1 -0
  772. data/res/generators/templates/application/public/libs/feather/svg/briefcase.svg +1 -0
  773. data/res/generators/templates/application/public/libs/feather/svg/calendar.svg +1 -0
  774. data/res/generators/templates/application/public/libs/feather/svg/camera-off.svg +1 -0
  775. data/res/generators/templates/application/public/libs/feather/svg/camera.svg +1 -0
  776. data/res/generators/templates/application/public/libs/feather/svg/cast.svg +1 -0
  777. data/res/generators/templates/application/public/libs/feather/svg/check-circle.svg +1 -0
  778. data/res/generators/templates/application/public/libs/feather/svg/check-square.svg +1 -0
  779. data/res/generators/templates/application/public/libs/feather/svg/check.svg +1 -0
  780. data/res/generators/templates/application/public/libs/feather/svg/chevron-down.svg +1 -0
  781. data/res/generators/templates/application/public/libs/feather/svg/chevron-left.svg +1 -0
  782. data/res/generators/templates/application/public/libs/feather/svg/chevron-right.svg +1 -0
  783. data/res/generators/templates/application/public/libs/feather/svg/chevron-up.svg +1 -0
  784. data/res/generators/templates/application/public/libs/feather/svg/chevrons-down.svg +1 -0
  785. data/res/generators/templates/application/public/libs/feather/svg/chevrons-left.svg +1 -0
  786. data/res/generators/templates/application/public/libs/feather/svg/chevrons-right.svg +1 -0
  787. data/res/generators/templates/application/public/libs/feather/svg/chevrons-up.svg +1 -0
  788. data/res/generators/templates/application/public/libs/feather/svg/chrome.svg +1 -0
  789. data/res/generators/templates/application/public/libs/feather/svg/circle.svg +1 -0
  790. data/res/generators/templates/application/public/libs/feather/svg/clipboard.svg +1 -0
  791. data/res/generators/templates/application/public/libs/feather/svg/clock.svg +1 -0
  792. data/res/generators/templates/application/public/libs/feather/svg/cloud-drizzle.svg +1 -0
  793. data/res/generators/templates/application/public/libs/feather/svg/cloud-lightning.svg +1 -0
  794. data/res/generators/templates/application/public/libs/feather/svg/cloud-off.svg +1 -0
  795. data/res/generators/templates/application/public/libs/feather/svg/cloud-rain.svg +1 -0
  796. data/res/generators/templates/application/public/libs/feather/svg/cloud-snow.svg +1 -0
  797. data/res/generators/templates/application/public/libs/feather/svg/cloud.svg +1 -0
  798. data/res/generators/templates/application/public/libs/feather/svg/code.svg +1 -0
  799. data/res/generators/templates/application/public/libs/feather/svg/codepen.svg +1 -0
  800. data/res/generators/templates/application/public/libs/feather/svg/codesandbox.svg +1 -0
  801. data/res/generators/templates/application/public/libs/feather/svg/coffee.svg +1 -0
  802. data/res/generators/templates/application/public/libs/feather/svg/columns.svg +1 -0
  803. data/res/generators/templates/application/public/libs/feather/svg/command.svg +1 -0
  804. data/res/generators/templates/application/public/libs/feather/svg/compass.svg +1 -0
  805. data/res/generators/templates/application/public/libs/feather/svg/copy.svg +1 -0
  806. data/res/generators/templates/application/public/libs/feather/svg/corner-down-left.svg +1 -0
  807. data/res/generators/templates/application/public/libs/feather/svg/corner-down-right.svg +1 -0
  808. data/res/generators/templates/application/public/libs/feather/svg/corner-left-down.svg +1 -0
  809. data/res/generators/templates/application/public/libs/feather/svg/corner-left-up.svg +1 -0
  810. data/res/generators/templates/application/public/libs/feather/svg/corner-right-down.svg +1 -0
  811. data/res/generators/templates/application/public/libs/feather/svg/corner-right-up.svg +1 -0
  812. data/res/generators/templates/application/public/libs/feather/svg/corner-up-left.svg +1 -0
  813. data/res/generators/templates/application/public/libs/feather/svg/corner-up-right.svg +1 -0
  814. data/res/generators/templates/application/public/libs/feather/svg/cpu.svg +1 -0
  815. data/res/generators/templates/application/public/libs/feather/svg/credit-card.svg +1 -0
  816. data/res/generators/templates/application/public/libs/feather/svg/crop.svg +1 -0
  817. data/res/generators/templates/application/public/libs/feather/svg/crosshair.svg +1 -0
  818. data/res/generators/templates/application/public/libs/feather/svg/database.svg +1 -0
  819. data/res/generators/templates/application/public/libs/feather/svg/delete.svg +1 -0
  820. data/res/generators/templates/application/public/libs/feather/svg/disc.svg +1 -0
  821. data/res/generators/templates/application/public/libs/feather/svg/dollar-sign.svg +1 -0
  822. data/res/generators/templates/application/public/libs/feather/svg/download-cloud.svg +1 -0
  823. data/res/generators/templates/application/public/libs/feather/svg/download.svg +1 -0
  824. data/res/generators/templates/application/public/libs/feather/svg/droplet.svg +1 -0
  825. data/res/generators/templates/application/public/libs/feather/svg/edit-2.svg +1 -0
  826. data/res/generators/templates/application/public/libs/feather/svg/edit-3.svg +1 -0
  827. data/res/generators/templates/application/public/libs/feather/svg/edit.svg +1 -0
  828. data/res/generators/templates/application/public/libs/feather/svg/external-link.svg +1 -0
  829. data/res/generators/templates/application/public/libs/feather/svg/eye-off.svg +1 -0
  830. data/res/generators/templates/application/public/libs/feather/svg/eye.svg +1 -0
  831. data/res/generators/templates/application/public/libs/feather/svg/facebook.svg +1 -0
  832. data/res/generators/templates/application/public/libs/feather/svg/fast-forward.svg +1 -0
  833. data/res/generators/templates/application/public/libs/feather/svg/feather.svg +1 -0
  834. data/res/generators/templates/application/public/libs/feather/svg/figma.svg +1 -0
  835. data/res/generators/templates/application/public/libs/feather/svg/file-minus.svg +1 -0
  836. data/res/generators/templates/application/public/libs/feather/svg/file-plus.svg +1 -0
  837. data/res/generators/templates/application/public/libs/feather/svg/file-text.svg +1 -0
  838. data/res/generators/templates/application/public/libs/feather/svg/file.svg +1 -0
  839. data/res/generators/templates/application/public/libs/feather/svg/film.svg +1 -0
  840. data/res/generators/templates/application/public/libs/feather/svg/filter.svg +1 -0
  841. data/res/generators/templates/application/public/libs/feather/svg/flag.svg +1 -0
  842. data/res/generators/templates/application/public/libs/feather/svg/folder-minus.svg +1 -0
  843. data/res/generators/templates/application/public/libs/feather/svg/folder-plus.svg +1 -0
  844. data/res/generators/templates/application/public/libs/feather/svg/folder.svg +1 -0
  845. data/res/generators/templates/application/public/libs/feather/svg/framer.svg +1 -0
  846. data/res/generators/templates/application/public/libs/feather/svg/frown.svg +1 -0
  847. data/res/generators/templates/application/public/libs/feather/svg/gift.svg +1 -0
  848. data/res/generators/templates/application/public/libs/feather/svg/git-branch.svg +1 -0
  849. data/res/generators/templates/application/public/libs/feather/svg/git-commit.svg +1 -0
  850. data/res/generators/templates/application/public/libs/feather/svg/git-merge.svg +1 -0
  851. data/res/generators/templates/application/public/libs/feather/svg/git-pull-request.svg +1 -0
  852. data/res/generators/templates/application/public/libs/feather/svg/github.svg +1 -0
  853. data/res/generators/templates/application/public/libs/feather/svg/gitlab.svg +1 -0
  854. data/res/generators/templates/application/public/libs/feather/svg/globe.svg +1 -0
  855. data/res/generators/templates/application/public/libs/feather/svg/grid.svg +1 -0
  856. data/res/generators/templates/application/public/libs/feather/svg/hard-drive.svg +1 -0
  857. data/res/generators/templates/application/public/libs/feather/svg/hash.svg +1 -0
  858. data/res/generators/templates/application/public/libs/feather/svg/headphones.svg +1 -0
  859. data/res/generators/templates/application/public/libs/feather/svg/heart.svg +1 -0
  860. data/res/generators/templates/application/public/libs/feather/svg/help-circle.svg +1 -0
  861. data/res/generators/templates/application/public/libs/feather/svg/hexagon.svg +1 -0
  862. data/res/generators/templates/application/public/libs/feather/svg/home.svg +1 -0
  863. data/res/generators/templates/application/public/libs/feather/svg/image.svg +1 -0
  864. data/res/generators/templates/application/public/libs/feather/svg/inbox.svg +1 -0
  865. data/res/generators/templates/application/public/libs/feather/svg/info.svg +1 -0
  866. data/res/generators/templates/application/public/libs/feather/svg/instagram.svg +1 -0
  867. data/res/generators/templates/application/public/libs/feather/svg/italic.svg +1 -0
  868. data/res/generators/templates/application/public/libs/feather/svg/key.svg +1 -0
  869. data/res/generators/templates/application/public/libs/feather/svg/layers.svg +1 -0
  870. data/res/generators/templates/application/public/libs/feather/svg/layout.svg +1 -0
  871. data/res/generators/templates/application/public/libs/feather/svg/life-buoy.svg +1 -0
  872. data/res/generators/templates/application/public/libs/feather/svg/link-2.svg +1 -0
  873. data/res/generators/templates/application/public/libs/feather/svg/link.svg +1 -0
  874. data/res/generators/templates/application/public/libs/feather/svg/linkedin.svg +1 -0
  875. data/res/generators/templates/application/public/libs/feather/svg/list.svg +1 -0
  876. data/res/generators/templates/application/public/libs/feather/svg/loader.svg +1 -0
  877. data/res/generators/templates/application/public/libs/feather/svg/lock.svg +1 -0
  878. data/res/generators/templates/application/public/libs/feather/svg/log-in.svg +1 -0
  879. data/res/generators/templates/application/public/libs/feather/svg/log-out.svg +1 -0
  880. data/res/generators/templates/application/public/libs/feather/svg/mail.svg +1 -0
  881. data/res/generators/templates/application/public/libs/feather/svg/map-pin.svg +1 -0
  882. data/res/generators/templates/application/public/libs/feather/svg/map.svg +1 -0
  883. data/res/generators/templates/application/public/libs/feather/svg/maximize-2.svg +1 -0
  884. data/res/generators/templates/application/public/libs/feather/svg/maximize.svg +1 -0
  885. data/res/generators/templates/application/public/libs/feather/svg/meh.svg +1 -0
  886. data/res/generators/templates/application/public/libs/feather/svg/menu.svg +1 -0
  887. data/res/generators/templates/application/public/libs/feather/svg/message-circle.svg +1 -0
  888. data/res/generators/templates/application/public/libs/feather/svg/message-square.svg +1 -0
  889. data/res/generators/templates/application/public/libs/feather/svg/mic-off.svg +1 -0
  890. data/res/generators/templates/application/public/libs/feather/svg/mic.svg +1 -0
  891. data/res/generators/templates/application/public/libs/feather/svg/minimize-2.svg +1 -0
  892. data/res/generators/templates/application/public/libs/feather/svg/minimize.svg +1 -0
  893. data/res/generators/templates/application/public/libs/feather/svg/minus-circle.svg +1 -0
  894. data/res/generators/templates/application/public/libs/feather/svg/minus-square.svg +1 -0
  895. data/res/generators/templates/application/public/libs/feather/svg/minus.svg +1 -0
  896. data/res/generators/templates/application/public/libs/feather/svg/monitor.svg +1 -0
  897. data/res/generators/templates/application/public/libs/feather/svg/moon.svg +1 -0
  898. data/res/generators/templates/application/public/libs/feather/svg/more-horizontal.svg +1 -0
  899. data/res/generators/templates/application/public/libs/feather/svg/more-vertical.svg +1 -0
  900. data/res/generators/templates/application/public/libs/feather/svg/mouse-pointer.svg +1 -0
  901. data/res/generators/templates/application/public/libs/feather/svg/move.svg +1 -0
  902. data/res/generators/templates/application/public/libs/feather/svg/music.svg +1 -0
  903. data/res/generators/templates/application/public/libs/feather/svg/navigation-2.svg +1 -0
  904. data/res/generators/templates/application/public/libs/feather/svg/navigation.svg +1 -0
  905. data/res/generators/templates/application/public/libs/feather/svg/octagon.svg +1 -0
  906. data/res/generators/templates/application/public/libs/feather/svg/package.svg +1 -0
  907. data/res/generators/templates/application/public/libs/feather/svg/paperclip.svg +1 -0
  908. data/res/generators/templates/application/public/libs/feather/svg/pause-circle.svg +1 -0
  909. data/res/generators/templates/application/public/libs/feather/svg/pause.svg +1 -0
  910. data/res/generators/templates/application/public/libs/feather/svg/pen-tool.svg +1 -0
  911. data/res/generators/templates/application/public/libs/feather/svg/percent.svg +1 -0
  912. data/res/generators/templates/application/public/libs/feather/svg/phone-call.svg +1 -0
  913. data/res/generators/templates/application/public/libs/feather/svg/phone-forwarded.svg +1 -0
  914. data/res/generators/templates/application/public/libs/feather/svg/phone-incoming.svg +1 -0
  915. data/res/generators/templates/application/public/libs/feather/svg/phone-missed.svg +1 -0
  916. data/res/generators/templates/application/public/libs/feather/svg/phone-off.svg +1 -0
  917. data/res/generators/templates/application/public/libs/feather/svg/phone-outgoing.svg +1 -0
  918. data/res/generators/templates/application/public/libs/feather/svg/phone.svg +1 -0
  919. data/res/generators/templates/application/public/libs/feather/svg/pie-chart.svg +1 -0
  920. data/res/generators/templates/application/public/libs/feather/svg/play-circle.svg +1 -0
  921. data/res/generators/templates/application/public/libs/feather/svg/play.svg +1 -0
  922. data/res/generators/templates/application/public/libs/feather/svg/plus-circle.svg +1 -0
  923. data/res/generators/templates/application/public/libs/feather/svg/plus-square.svg +1 -0
  924. data/res/generators/templates/application/public/libs/feather/svg/plus.svg +1 -0
  925. data/res/generators/templates/application/public/libs/feather/svg/pocket.svg +1 -0
  926. data/res/generators/templates/application/public/libs/feather/svg/power.svg +1 -0
  927. data/res/generators/templates/application/public/libs/feather/svg/printer.svg +1 -0
  928. data/res/generators/templates/application/public/libs/feather/svg/radio.svg +1 -0
  929. data/res/generators/templates/application/public/libs/feather/svg/refresh-ccw.svg +1 -0
  930. data/res/generators/templates/application/public/libs/feather/svg/refresh-cw.svg +1 -0
  931. data/res/generators/templates/application/public/libs/feather/svg/repeat.svg +1 -0
  932. data/res/generators/templates/application/public/libs/feather/svg/rewind.svg +1 -0
  933. data/res/generators/templates/application/public/libs/feather/svg/rotate-ccw.svg +1 -0
  934. data/res/generators/templates/application/public/libs/feather/svg/rotate-cw.svg +1 -0
  935. data/res/generators/templates/application/public/libs/feather/svg/rss.svg +1 -0
  936. data/res/generators/templates/application/public/libs/feather/svg/save.svg +1 -0
  937. data/res/generators/templates/application/public/libs/feather/svg/scissors.svg +1 -0
  938. data/res/generators/templates/application/public/libs/feather/svg/search.svg +1 -0
  939. data/res/generators/templates/application/public/libs/feather/svg/send.svg +1 -0
  940. data/res/generators/templates/application/public/libs/feather/svg/server.svg +1 -0
  941. data/res/generators/templates/application/public/libs/feather/svg/settings.svg +1 -0
  942. data/res/generators/templates/application/public/libs/feather/svg/share-2.svg +1 -0
  943. data/res/generators/templates/application/public/libs/feather/svg/share.svg +1 -0
  944. data/res/generators/templates/application/public/libs/feather/svg/shield-off.svg +1 -0
  945. data/res/generators/templates/application/public/libs/feather/svg/shield.svg +1 -0
  946. data/res/generators/templates/application/public/libs/feather/svg/shopping-bag.svg +1 -0
  947. data/res/generators/templates/application/public/libs/feather/svg/shopping-cart.svg +1 -0
  948. data/res/generators/templates/application/public/libs/feather/svg/shuffle.svg +1 -0
  949. data/res/generators/templates/application/public/libs/feather/svg/sidebar.svg +1 -0
  950. data/res/generators/templates/application/public/libs/feather/svg/skip-back.svg +1 -0
  951. data/res/generators/templates/application/public/libs/feather/svg/skip-forward.svg +1 -0
  952. data/res/generators/templates/application/public/libs/feather/svg/slack.svg +1 -0
  953. data/res/generators/templates/application/public/libs/feather/svg/slash.svg +1 -0
  954. data/res/generators/templates/application/public/libs/feather/svg/sliders.svg +1 -0
  955. data/res/generators/templates/application/public/libs/feather/svg/smartphone.svg +1 -0
  956. data/res/generators/templates/application/public/libs/feather/svg/smile.svg +1 -0
  957. data/res/generators/templates/application/public/libs/feather/svg/speaker.svg +1 -0
  958. data/res/generators/templates/application/public/libs/feather/svg/square.svg +1 -0
  959. data/res/generators/templates/application/public/libs/feather/svg/star.svg +1 -0
  960. data/res/generators/templates/application/public/libs/feather/svg/stop-circle.svg +1 -0
  961. data/res/generators/templates/application/public/libs/feather/svg/sun.svg +1 -0
  962. data/res/generators/templates/application/public/libs/feather/svg/sunrise.svg +1 -0
  963. data/res/generators/templates/application/public/libs/feather/svg/sunset.svg +1 -0
  964. data/res/generators/templates/application/public/libs/feather/svg/tablet.svg +1 -0
  965. data/res/generators/templates/application/public/libs/feather/svg/tag.svg +1 -0
  966. data/res/generators/templates/application/public/libs/feather/svg/target.svg +1 -0
  967. data/res/generators/templates/application/public/libs/feather/svg/terminal.svg +1 -0
  968. data/res/generators/templates/application/public/libs/feather/svg/thermometer.svg +1 -0
  969. data/res/generators/templates/application/public/libs/feather/svg/thumbs-down.svg +1 -0
  970. data/res/generators/templates/application/public/libs/feather/svg/thumbs-up.svg +1 -0
  971. data/res/generators/templates/application/public/libs/feather/svg/toggle-left.svg +1 -0
  972. data/res/generators/templates/application/public/libs/feather/svg/toggle-right.svg +1 -0
  973. data/res/generators/templates/application/public/libs/feather/svg/tool.svg +1 -0
  974. data/res/generators/templates/application/public/libs/feather/svg/trash-2.svg +1 -0
  975. data/res/generators/templates/application/public/libs/feather/svg/trash.svg +1 -0
  976. data/res/generators/templates/application/public/libs/feather/svg/trello.svg +1 -0
  977. data/res/generators/templates/application/public/libs/feather/svg/trending-down.svg +1 -0
  978. data/res/generators/templates/application/public/libs/feather/svg/trending-up.svg +1 -0
  979. data/res/generators/templates/application/public/libs/feather/svg/triangle.svg +1 -0
  980. data/res/generators/templates/application/public/libs/feather/svg/truck.svg +1 -0
  981. data/res/generators/templates/application/public/libs/feather/svg/tv.svg +1 -0
  982. data/res/generators/templates/application/public/libs/feather/svg/twitch.svg +1 -0
  983. data/res/generators/templates/application/public/libs/feather/svg/twitter.svg +1 -0
  984. data/res/generators/templates/application/public/libs/feather/svg/type.svg +1 -0
  985. data/res/generators/templates/application/public/libs/feather/svg/umbrella.svg +1 -0
  986. data/res/generators/templates/application/public/libs/feather/svg/underline.svg +1 -0
  987. data/res/generators/templates/application/public/libs/feather/svg/unlock.svg +1 -0
  988. data/res/generators/templates/application/public/libs/feather/svg/upload-cloud.svg +1 -0
  989. data/res/generators/templates/application/public/libs/feather/svg/upload.svg +1 -0
  990. data/res/generators/templates/application/public/libs/feather/svg/user-check.svg +1 -0
  991. data/res/generators/templates/application/public/libs/feather/svg/user-minus.svg +1 -0
  992. data/res/generators/templates/application/public/libs/feather/svg/user-plus.svg +1 -0
  993. data/res/generators/templates/application/public/libs/feather/svg/user-x.svg +1 -0
  994. data/res/generators/templates/application/public/libs/feather/svg/user.svg +1 -0
  995. data/res/generators/templates/application/public/libs/feather/svg/users.svg +1 -0
  996. data/res/generators/templates/application/public/libs/feather/svg/video-off.svg +1 -0
  997. data/res/generators/templates/application/public/libs/feather/svg/video.svg +1 -0
  998. data/res/generators/templates/application/public/libs/feather/svg/voicemail.svg +1 -0
  999. data/res/generators/templates/application/public/libs/feather/svg/volume-1.svg +1 -0
  1000. data/res/generators/templates/application/public/libs/feather/svg/volume-2.svg +1 -0
  1001. data/res/generators/templates/application/public/libs/feather/svg/volume-x.svg +1 -0
  1002. data/res/generators/templates/application/public/libs/feather/svg/volume.svg +1 -0
  1003. data/res/generators/templates/application/public/libs/feather/svg/watch.svg +1 -0
  1004. data/res/generators/templates/application/public/libs/feather/svg/wifi-off.svg +1 -0
  1005. data/res/generators/templates/application/public/libs/feather/svg/wifi.svg +1 -0
  1006. data/res/generators/templates/application/public/libs/feather/svg/wind.svg +1 -0
  1007. data/res/generators/templates/application/public/libs/feather/svg/x-circle.svg +1 -0
  1008. data/res/generators/templates/application/public/libs/feather/svg/x-octagon.svg +1 -0
  1009. data/res/generators/templates/application/public/libs/feather/svg/x-square.svg +1 -0
  1010. data/res/generators/templates/application/public/libs/feather/svg/x.svg +1 -0
  1011. data/res/generators/templates/application/public/libs/feather/svg/youtube.svg +1 -0
  1012. data/res/generators/templates/application/public/libs/feather/svg/zap-off.svg +1 -0
  1013. data/res/generators/templates/application/public/libs/feather/svg/zap.svg +1 -0
  1014. data/res/generators/templates/application/public/libs/feather/svg/zoom-in.svg +1 -0
  1015. data/res/generators/templates/application/public/libs/feather/svg/zoom-out.svg +1 -0
  1016. data/res/generators/templates/application/public/libs/jquery-3.5.1/jquery-3.5.1.js +10872 -0
  1017. data/res/generators/templates/application/public/libs/jquery-3.5.1/jquery-3.5.1.min.js +2 -0
  1018. data/res/generators/templates/application/public/libs/jquery-3.5.1/jquery-3.5.1.min.map +1 -0
  1019. data/res/generators/templates/application/public/libs/popper-2.4.0/popper-2.4.0.js +1802 -0
  1020. data/res/generators/templates/application/public/libs/popper-2.4.0/popper-2.4.0.min.js +6 -0
  1021. data/res/generators/templates/application/resources/android/res/drawable/loading.png +0 -0
  1022. data/res/generators/templates/application/resources/android/res/drawable-hdpi/loading.png +0 -0
  1023. data/res/generators/templates/application/resources/android/res/drawable-ldpi/loading.png +0 -0
  1024. data/res/generators/templates/application/resources/android/res/drawable-mdpi/loading.png +0 -0
  1025. data/res/generators/templates/application/resources/android/res/drawable-xhdpi/loading.png +0 -0
  1026. data/res/generators/templates/application/resources/android/res/drawable-xxhdpi/loading.png +0 -0
  1027. data/res/generators/templates/application/resources/android/res/drawable-xxxhdpi/loading.png +0 -0
  1028. data/res/generators/templates/application/resources/ios/Default-568h@2x.png +0 -0
  1029. data/res/generators/templates/application/resources/ios/Default-667h@2x.png +0 -0
  1030. data/res/generators/templates/application/resources/ios/Default-736h@3x.png +0 -0
  1031. data/res/generators/templates/application/resources/ios/Default-812h@3x.png +0 -0
  1032. data/res/generators/templates/application/resources/ios/Default-896h@2x.png +0 -0
  1033. data/res/generators/templates/application/resources/ios/Default-896h@3x.png +0 -0
  1034. data/res/generators/templates/application/resources/ios/Default-Landscape-736h@3x.png +0 -0
  1035. data/res/generators/templates/application/resources/ios/Default-Landscape-812h@3x.png +0 -0
  1036. data/res/generators/templates/application/resources/ios/Default-Landscape-896h@2x.png +0 -0
  1037. data/res/generators/templates/application/resources/ios/Default-Landscape-896h@3x.png +0 -0
  1038. data/res/generators/templates/application/resources/ios/Default-Landscape.png +0 -0
  1039. data/res/generators/templates/application/resources/ios/Default-Landscape@2x.png +0 -0
  1040. data/res/generators/templates/application/resources/ios/Default-Portrait.png +0 -0
  1041. data/res/generators/templates/application/resources/ios/Default-Portrait@2x.png +0 -0
  1042. data/res/generators/templates/application/resources/ios/Default.png +0 -0
  1043. data/res/generators/templates/application/resources/ios/Default@2x.png +0 -0
  1044. data/res/generators/templates/application/rhoconfig.txt +7 -0
  1045. data/res/generators/templates/extension/extensions/montana/ext/build +5 -0
  1046. data/res/generators/templates/extension/extensions/montana/ext/build.bat +1 -1
  1047. data/res/generators/templates/extension/extensions/montana/ext/platform/android/Rakefile +1 -160
  1048. data/res/generators/templates/extension/extensions/montana/ext/platform/iphone/Montana.xcodeproj/project.pbxproj +4 -4
  1049. data/res/generators/templates/extension/extensions/montana/ext/platform/iphone/Podfile.example +16 -0
  1050. data/res/generators/templates/extension/extensions/montana/ext/platform/iphone/Rakefile +9 -62
  1051. data/res/generators/templates/extension/extensions/montana/ext/platform/qt/Montana.pro +26 -1
  1052. data/res/generators/templates/iphone_project/Bremen8.xcodeproj/project.pbxproj +34 -55
  1053. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-568h@2x.png +0 -0
  1054. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-667h@2x.png +0 -0
  1055. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-736h@3x.png +0 -0
  1056. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-812h@3x.png +0 -0
  1057. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-896h@2x.png +0 -0
  1058. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-896h@3x.png +0 -0
  1059. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-736h@3x.png +0 -0
  1060. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-812h@3x.png +0 -0
  1061. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-896h@2x.png +0 -0
  1062. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-896h@3x.png +0 -0
  1063. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape.png +0 -0
  1064. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png +0 -0
  1065. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Portrait.png +0 -0
  1066. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png +0 -0
  1067. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default.png +0 -0
  1068. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default@2x.png +0 -0
  1069. data/res/generators/templates/iphone_project/Rhodes/Rhodes.xcodeproj/project.pbxproj +4 -4
  1070. data/res/generators/templates/iphone_project/buildRhoBundle +2 -10
  1071. data/res/generators/templates/iphone_project/root/Info.plist +4 -0
  1072. data/res/generators/templates/model/edit.erb +10 -12
  1073. data/res/generators/templates/model/index.erb +27 -29
  1074. data/res/generators/templates/model/javascript_edit.html +18 -17
  1075. data/res/generators/templates/model/javascript_index.html +22 -21
  1076. data/res/generators/templates/model/javascript_index.js +12 -7
  1077. data/res/generators/templates/model/javascript_new.html +20 -16
  1078. data/res/generators/templates/model/javascript_show.html +30 -32
  1079. data/res/generators/templates/model/new.erb +8 -12
  1080. data/res/generators/templates/model/show.erb +22 -28
  1081. data/res/generators/templates/project/android_studio_project/app/CMakeLists.txt.erb +15 -2
  1082. data/res/generators/templates/project/android_studio_project/app/build.gradle.erb +22 -19
  1083. data/res/generators/templates/project/android_studio_project/build.gradle +3 -1
  1084. data/res/generators/templates/spec/app/SpecRunner/controller.rb +1 -1
  1085. data/res/generators/templates/spec/app/mspec.rb +1 -1
  1086. data/res/generators/templates/spec/app/spec_runner.rb +23 -4
  1087. data/res/prebuild_base_app/rhoconfig.txt +11 -8
  1088. data/rhobuild.yml.example +3 -0
  1089. data/rhodes-core.gemspec +1 -2
  1090. data/rhodes.gemspec +20 -26
  1091. data/rhomobile-debug.gemspec +0 -1
  1092. data/version +1 -1
  1093. metadata +453 -97
  1094. data/extensions/emdk3-manager/ext/platform/android/ext_native.files +0 -0
  1095. data/lib/extensions/fcm-push/ext/iphone/Firebase.h +0 -68
  1096. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +0 -62
  1097. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +0 -115
  1098. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h +0 -1
  1099. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsSwiftNameSupport.h +0 -13
  1100. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h +0 -1
  1101. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h +0 -1
  1102. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h +0 -389
  1103. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h +0 -1
  1104. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +0 -485
  1105. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +0 -15
  1106. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +0 -10
  1107. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap +0 -10
  1108. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/FirebaseCore +0 -0
  1109. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h +0 -52
  1110. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRApp.h +0 -130
  1111. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h +0 -78
  1112. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h +0 -35
  1113. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIROptions.h +0 -133
  1114. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h +0 -5
  1115. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Modules/module.modulemap +0 -7
  1116. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics +0 -0
  1117. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCoreDiagnostics.framework/Modules/module.modulemap +0 -6
  1118. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID +0 -0
  1119. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h +0 -276
  1120. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h +0 -1
  1121. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap +0 -7
  1122. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/FirebaseMessaging +0 -0
  1123. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/Headers/FIRMessaging.h +0 -508
  1124. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/Headers/FirebaseMessaging.h +0 -1
  1125. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/Modules/module.modulemap +0 -8
  1126. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseNanoPB.framework/FirebaseNanoPB +0 -0
  1127. data/lib/extensions/fcm-push/ext/iphone/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac +0 -0
  1128. data/lib/extensions/fcm-push/ext/iphone/Frameworks/GoogleToolboxForMac.framework/Modules/module.modulemap +0 -5
  1129. data/lib/extensions/fcm-push/ext/iphone/Frameworks/Protobuf.framework/Modules/module.modulemap +0 -5
  1130. data/lib/extensions/fcm-push/ext/iphone/Frameworks/Protobuf.framework/Protobuf +0 -0
  1131. data/lib/extensions/fcm-push/ext/iphone/Frameworks/nanopb.framework/Modules/module.modulemap +0 -5
  1132. data/lib/extensions/fcm-push/ext/iphone/Frameworks/nanopb.framework/nanopb +0 -0
  1133. data/platform/win32/RhoSimulator/position/qtposition_geoclue.dll +0 -0
  1134. data/platform/win32/build/RhoRuntimeQt5-VS2008.nsi +0 -162
  1135. data/platform/win32/build/RhoRuntimeQt5.5.0.0_VS2012.nsi +0 -178
  1136. data/platform/win32/build/RhoRuntimeQt5.bat +0 -2
  1137. data/platform/win32/build/RhoRuntimeQt5.ico +0 -0
  1138. data/platform/win32/build/RhoRuntimeQt5.nsi +0 -165
  1139. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css +0 -587
  1140. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css.map +0 -1
  1141. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css +0 -6
  1142. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css.map +0 -1
  1143. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css +0 -6757
  1144. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css.map +0 -1
  1145. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css +0 -6
  1146. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css.map +0 -1
  1147. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
  1148. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg +0 -288
  1149. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
  1150. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
  1151. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
  1152. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.js +0 -2377
  1153. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.min.js +0 -7
  1154. data/res/generators/templates/application/public/bootstrap-3.3.7/js/npm.js +0 -13
  1155. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.js +0 -4
  1156. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.map +0 -1
  1157. data/res/generators/templates/application/public/jquery/jquery-3.2.1.min.js +0 -4
@@ -0,0 +1,3899 @@
1
+ /*!
2
+ * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2019 The Bootstrap Authors
4
+ * Copyright 2011-2019 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+ html {
8
+ box-sizing: border-box;
9
+ -ms-overflow-style: scrollbar;
10
+ }
11
+
12
+ *,
13
+ *::before,
14
+ *::after {
15
+ box-sizing: inherit;
16
+ }
17
+
18
+ .container {
19
+ width: 100%;
20
+ padding-right: 15px;
21
+ padding-left: 15px;
22
+ margin-right: auto;
23
+ margin-left: auto;
24
+ }
25
+
26
+ @media (min-width: 576px) {
27
+ .container {
28
+ max-width: 540px;
29
+ }
30
+ }
31
+
32
+ @media (min-width: 768px) {
33
+ .container {
34
+ max-width: 720px;
35
+ }
36
+ }
37
+
38
+ @media (min-width: 992px) {
39
+ .container {
40
+ max-width: 960px;
41
+ }
42
+ }
43
+
44
+ @media (min-width: 1200px) {
45
+ .container {
46
+ max-width: 1140px;
47
+ }
48
+ }
49
+
50
+ .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
51
+ width: 100%;
52
+ padding-right: 15px;
53
+ padding-left: 15px;
54
+ margin-right: auto;
55
+ margin-left: auto;
56
+ }
57
+
58
+ @media (min-width: 576px) {
59
+ .container, .container-sm {
60
+ max-width: 540px;
61
+ }
62
+ }
63
+
64
+ @media (min-width: 768px) {
65
+ .container, .container-sm, .container-md {
66
+ max-width: 720px;
67
+ }
68
+ }
69
+
70
+ @media (min-width: 992px) {
71
+ .container, .container-sm, .container-md, .container-lg {
72
+ max-width: 960px;
73
+ }
74
+ }
75
+
76
+ @media (min-width: 1200px) {
77
+ .container, .container-sm, .container-md, .container-lg, .container-xl {
78
+ max-width: 1140px;
79
+ }
80
+ }
81
+
82
+ .row {
83
+ display: -ms-flexbox;
84
+ display: flex;
85
+ -ms-flex-wrap: wrap;
86
+ flex-wrap: wrap;
87
+ margin-right: -15px;
88
+ margin-left: -15px;
89
+ }
90
+
91
+ .no-gutters {
92
+ margin-right: 0;
93
+ margin-left: 0;
94
+ }
95
+
96
+ .no-gutters > .col,
97
+ .no-gutters > [class*="col-"] {
98
+ padding-right: 0;
99
+ padding-left: 0;
100
+ }
101
+
102
+ .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
103
+ .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
104
+ .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
105
+ .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
106
+ .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
107
+ .col-xl-auto {
108
+ position: relative;
109
+ width: 100%;
110
+ padding-right: 15px;
111
+ padding-left: 15px;
112
+ }
113
+
114
+ .col {
115
+ -ms-flex-preferred-size: 0;
116
+ flex-basis: 0;
117
+ -ms-flex-positive: 1;
118
+ flex-grow: 1;
119
+ max-width: 100%;
120
+ }
121
+
122
+ .row-cols-1 > * {
123
+ -ms-flex: 0 0 100%;
124
+ flex: 0 0 100%;
125
+ max-width: 100%;
126
+ }
127
+
128
+ .row-cols-2 > * {
129
+ -ms-flex: 0 0 50%;
130
+ flex: 0 0 50%;
131
+ max-width: 50%;
132
+ }
133
+
134
+ .row-cols-3 > * {
135
+ -ms-flex: 0 0 33.333333%;
136
+ flex: 0 0 33.333333%;
137
+ max-width: 33.333333%;
138
+ }
139
+
140
+ .row-cols-4 > * {
141
+ -ms-flex: 0 0 25%;
142
+ flex: 0 0 25%;
143
+ max-width: 25%;
144
+ }
145
+
146
+ .row-cols-5 > * {
147
+ -ms-flex: 0 0 20%;
148
+ flex: 0 0 20%;
149
+ max-width: 20%;
150
+ }
151
+
152
+ .row-cols-6 > * {
153
+ -ms-flex: 0 0 16.666667%;
154
+ flex: 0 0 16.666667%;
155
+ max-width: 16.666667%;
156
+ }
157
+
158
+ .col-auto {
159
+ -ms-flex: 0 0 auto;
160
+ flex: 0 0 auto;
161
+ width: auto;
162
+ max-width: 100%;
163
+ }
164
+
165
+ .col-1 {
166
+ -ms-flex: 0 0 8.333333%;
167
+ flex: 0 0 8.333333%;
168
+ max-width: 8.333333%;
169
+ }
170
+
171
+ .col-2 {
172
+ -ms-flex: 0 0 16.666667%;
173
+ flex: 0 0 16.666667%;
174
+ max-width: 16.666667%;
175
+ }
176
+
177
+ .col-3 {
178
+ -ms-flex: 0 0 25%;
179
+ flex: 0 0 25%;
180
+ max-width: 25%;
181
+ }
182
+
183
+ .col-4 {
184
+ -ms-flex: 0 0 33.333333%;
185
+ flex: 0 0 33.333333%;
186
+ max-width: 33.333333%;
187
+ }
188
+
189
+ .col-5 {
190
+ -ms-flex: 0 0 41.666667%;
191
+ flex: 0 0 41.666667%;
192
+ max-width: 41.666667%;
193
+ }
194
+
195
+ .col-6 {
196
+ -ms-flex: 0 0 50%;
197
+ flex: 0 0 50%;
198
+ max-width: 50%;
199
+ }
200
+
201
+ .col-7 {
202
+ -ms-flex: 0 0 58.333333%;
203
+ flex: 0 0 58.333333%;
204
+ max-width: 58.333333%;
205
+ }
206
+
207
+ .col-8 {
208
+ -ms-flex: 0 0 66.666667%;
209
+ flex: 0 0 66.666667%;
210
+ max-width: 66.666667%;
211
+ }
212
+
213
+ .col-9 {
214
+ -ms-flex: 0 0 75%;
215
+ flex: 0 0 75%;
216
+ max-width: 75%;
217
+ }
218
+
219
+ .col-10 {
220
+ -ms-flex: 0 0 83.333333%;
221
+ flex: 0 0 83.333333%;
222
+ max-width: 83.333333%;
223
+ }
224
+
225
+ .col-11 {
226
+ -ms-flex: 0 0 91.666667%;
227
+ flex: 0 0 91.666667%;
228
+ max-width: 91.666667%;
229
+ }
230
+
231
+ .col-12 {
232
+ -ms-flex: 0 0 100%;
233
+ flex: 0 0 100%;
234
+ max-width: 100%;
235
+ }
236
+
237
+ .order-first {
238
+ -ms-flex-order: -1;
239
+ order: -1;
240
+ }
241
+
242
+ .order-last {
243
+ -ms-flex-order: 13;
244
+ order: 13;
245
+ }
246
+
247
+ .order-0 {
248
+ -ms-flex-order: 0;
249
+ order: 0;
250
+ }
251
+
252
+ .order-1 {
253
+ -ms-flex-order: 1;
254
+ order: 1;
255
+ }
256
+
257
+ .order-2 {
258
+ -ms-flex-order: 2;
259
+ order: 2;
260
+ }
261
+
262
+ .order-3 {
263
+ -ms-flex-order: 3;
264
+ order: 3;
265
+ }
266
+
267
+ .order-4 {
268
+ -ms-flex-order: 4;
269
+ order: 4;
270
+ }
271
+
272
+ .order-5 {
273
+ -ms-flex-order: 5;
274
+ order: 5;
275
+ }
276
+
277
+ .order-6 {
278
+ -ms-flex-order: 6;
279
+ order: 6;
280
+ }
281
+
282
+ .order-7 {
283
+ -ms-flex-order: 7;
284
+ order: 7;
285
+ }
286
+
287
+ .order-8 {
288
+ -ms-flex-order: 8;
289
+ order: 8;
290
+ }
291
+
292
+ .order-9 {
293
+ -ms-flex-order: 9;
294
+ order: 9;
295
+ }
296
+
297
+ .order-10 {
298
+ -ms-flex-order: 10;
299
+ order: 10;
300
+ }
301
+
302
+ .order-11 {
303
+ -ms-flex-order: 11;
304
+ order: 11;
305
+ }
306
+
307
+ .order-12 {
308
+ -ms-flex-order: 12;
309
+ order: 12;
310
+ }
311
+
312
+ .offset-1 {
313
+ margin-left: 8.333333%;
314
+ }
315
+
316
+ .offset-2 {
317
+ margin-left: 16.666667%;
318
+ }
319
+
320
+ .offset-3 {
321
+ margin-left: 25%;
322
+ }
323
+
324
+ .offset-4 {
325
+ margin-left: 33.333333%;
326
+ }
327
+
328
+ .offset-5 {
329
+ margin-left: 41.666667%;
330
+ }
331
+
332
+ .offset-6 {
333
+ margin-left: 50%;
334
+ }
335
+
336
+ .offset-7 {
337
+ margin-left: 58.333333%;
338
+ }
339
+
340
+ .offset-8 {
341
+ margin-left: 66.666667%;
342
+ }
343
+
344
+ .offset-9 {
345
+ margin-left: 75%;
346
+ }
347
+
348
+ .offset-10 {
349
+ margin-left: 83.333333%;
350
+ }
351
+
352
+ .offset-11 {
353
+ margin-left: 91.666667%;
354
+ }
355
+
356
+ @media (min-width: 576px) {
357
+ .col-sm {
358
+ -ms-flex-preferred-size: 0;
359
+ flex-basis: 0;
360
+ -ms-flex-positive: 1;
361
+ flex-grow: 1;
362
+ max-width: 100%;
363
+ }
364
+ .row-cols-sm-1 > * {
365
+ -ms-flex: 0 0 100%;
366
+ flex: 0 0 100%;
367
+ max-width: 100%;
368
+ }
369
+ .row-cols-sm-2 > * {
370
+ -ms-flex: 0 0 50%;
371
+ flex: 0 0 50%;
372
+ max-width: 50%;
373
+ }
374
+ .row-cols-sm-3 > * {
375
+ -ms-flex: 0 0 33.333333%;
376
+ flex: 0 0 33.333333%;
377
+ max-width: 33.333333%;
378
+ }
379
+ .row-cols-sm-4 > * {
380
+ -ms-flex: 0 0 25%;
381
+ flex: 0 0 25%;
382
+ max-width: 25%;
383
+ }
384
+ .row-cols-sm-5 > * {
385
+ -ms-flex: 0 0 20%;
386
+ flex: 0 0 20%;
387
+ max-width: 20%;
388
+ }
389
+ .row-cols-sm-6 > * {
390
+ -ms-flex: 0 0 16.666667%;
391
+ flex: 0 0 16.666667%;
392
+ max-width: 16.666667%;
393
+ }
394
+ .col-sm-auto {
395
+ -ms-flex: 0 0 auto;
396
+ flex: 0 0 auto;
397
+ width: auto;
398
+ max-width: 100%;
399
+ }
400
+ .col-sm-1 {
401
+ -ms-flex: 0 0 8.333333%;
402
+ flex: 0 0 8.333333%;
403
+ max-width: 8.333333%;
404
+ }
405
+ .col-sm-2 {
406
+ -ms-flex: 0 0 16.666667%;
407
+ flex: 0 0 16.666667%;
408
+ max-width: 16.666667%;
409
+ }
410
+ .col-sm-3 {
411
+ -ms-flex: 0 0 25%;
412
+ flex: 0 0 25%;
413
+ max-width: 25%;
414
+ }
415
+ .col-sm-4 {
416
+ -ms-flex: 0 0 33.333333%;
417
+ flex: 0 0 33.333333%;
418
+ max-width: 33.333333%;
419
+ }
420
+ .col-sm-5 {
421
+ -ms-flex: 0 0 41.666667%;
422
+ flex: 0 0 41.666667%;
423
+ max-width: 41.666667%;
424
+ }
425
+ .col-sm-6 {
426
+ -ms-flex: 0 0 50%;
427
+ flex: 0 0 50%;
428
+ max-width: 50%;
429
+ }
430
+ .col-sm-7 {
431
+ -ms-flex: 0 0 58.333333%;
432
+ flex: 0 0 58.333333%;
433
+ max-width: 58.333333%;
434
+ }
435
+ .col-sm-8 {
436
+ -ms-flex: 0 0 66.666667%;
437
+ flex: 0 0 66.666667%;
438
+ max-width: 66.666667%;
439
+ }
440
+ .col-sm-9 {
441
+ -ms-flex: 0 0 75%;
442
+ flex: 0 0 75%;
443
+ max-width: 75%;
444
+ }
445
+ .col-sm-10 {
446
+ -ms-flex: 0 0 83.333333%;
447
+ flex: 0 0 83.333333%;
448
+ max-width: 83.333333%;
449
+ }
450
+ .col-sm-11 {
451
+ -ms-flex: 0 0 91.666667%;
452
+ flex: 0 0 91.666667%;
453
+ max-width: 91.666667%;
454
+ }
455
+ .col-sm-12 {
456
+ -ms-flex: 0 0 100%;
457
+ flex: 0 0 100%;
458
+ max-width: 100%;
459
+ }
460
+ .order-sm-first {
461
+ -ms-flex-order: -1;
462
+ order: -1;
463
+ }
464
+ .order-sm-last {
465
+ -ms-flex-order: 13;
466
+ order: 13;
467
+ }
468
+ .order-sm-0 {
469
+ -ms-flex-order: 0;
470
+ order: 0;
471
+ }
472
+ .order-sm-1 {
473
+ -ms-flex-order: 1;
474
+ order: 1;
475
+ }
476
+ .order-sm-2 {
477
+ -ms-flex-order: 2;
478
+ order: 2;
479
+ }
480
+ .order-sm-3 {
481
+ -ms-flex-order: 3;
482
+ order: 3;
483
+ }
484
+ .order-sm-4 {
485
+ -ms-flex-order: 4;
486
+ order: 4;
487
+ }
488
+ .order-sm-5 {
489
+ -ms-flex-order: 5;
490
+ order: 5;
491
+ }
492
+ .order-sm-6 {
493
+ -ms-flex-order: 6;
494
+ order: 6;
495
+ }
496
+ .order-sm-7 {
497
+ -ms-flex-order: 7;
498
+ order: 7;
499
+ }
500
+ .order-sm-8 {
501
+ -ms-flex-order: 8;
502
+ order: 8;
503
+ }
504
+ .order-sm-9 {
505
+ -ms-flex-order: 9;
506
+ order: 9;
507
+ }
508
+ .order-sm-10 {
509
+ -ms-flex-order: 10;
510
+ order: 10;
511
+ }
512
+ .order-sm-11 {
513
+ -ms-flex-order: 11;
514
+ order: 11;
515
+ }
516
+ .order-sm-12 {
517
+ -ms-flex-order: 12;
518
+ order: 12;
519
+ }
520
+ .offset-sm-0 {
521
+ margin-left: 0;
522
+ }
523
+ .offset-sm-1 {
524
+ margin-left: 8.333333%;
525
+ }
526
+ .offset-sm-2 {
527
+ margin-left: 16.666667%;
528
+ }
529
+ .offset-sm-3 {
530
+ margin-left: 25%;
531
+ }
532
+ .offset-sm-4 {
533
+ margin-left: 33.333333%;
534
+ }
535
+ .offset-sm-5 {
536
+ margin-left: 41.666667%;
537
+ }
538
+ .offset-sm-6 {
539
+ margin-left: 50%;
540
+ }
541
+ .offset-sm-7 {
542
+ margin-left: 58.333333%;
543
+ }
544
+ .offset-sm-8 {
545
+ margin-left: 66.666667%;
546
+ }
547
+ .offset-sm-9 {
548
+ margin-left: 75%;
549
+ }
550
+ .offset-sm-10 {
551
+ margin-left: 83.333333%;
552
+ }
553
+ .offset-sm-11 {
554
+ margin-left: 91.666667%;
555
+ }
556
+ }
557
+
558
+ @media (min-width: 768px) {
559
+ .col-md {
560
+ -ms-flex-preferred-size: 0;
561
+ flex-basis: 0;
562
+ -ms-flex-positive: 1;
563
+ flex-grow: 1;
564
+ max-width: 100%;
565
+ }
566
+ .row-cols-md-1 > * {
567
+ -ms-flex: 0 0 100%;
568
+ flex: 0 0 100%;
569
+ max-width: 100%;
570
+ }
571
+ .row-cols-md-2 > * {
572
+ -ms-flex: 0 0 50%;
573
+ flex: 0 0 50%;
574
+ max-width: 50%;
575
+ }
576
+ .row-cols-md-3 > * {
577
+ -ms-flex: 0 0 33.333333%;
578
+ flex: 0 0 33.333333%;
579
+ max-width: 33.333333%;
580
+ }
581
+ .row-cols-md-4 > * {
582
+ -ms-flex: 0 0 25%;
583
+ flex: 0 0 25%;
584
+ max-width: 25%;
585
+ }
586
+ .row-cols-md-5 > * {
587
+ -ms-flex: 0 0 20%;
588
+ flex: 0 0 20%;
589
+ max-width: 20%;
590
+ }
591
+ .row-cols-md-6 > * {
592
+ -ms-flex: 0 0 16.666667%;
593
+ flex: 0 0 16.666667%;
594
+ max-width: 16.666667%;
595
+ }
596
+ .col-md-auto {
597
+ -ms-flex: 0 0 auto;
598
+ flex: 0 0 auto;
599
+ width: auto;
600
+ max-width: 100%;
601
+ }
602
+ .col-md-1 {
603
+ -ms-flex: 0 0 8.333333%;
604
+ flex: 0 0 8.333333%;
605
+ max-width: 8.333333%;
606
+ }
607
+ .col-md-2 {
608
+ -ms-flex: 0 0 16.666667%;
609
+ flex: 0 0 16.666667%;
610
+ max-width: 16.666667%;
611
+ }
612
+ .col-md-3 {
613
+ -ms-flex: 0 0 25%;
614
+ flex: 0 0 25%;
615
+ max-width: 25%;
616
+ }
617
+ .col-md-4 {
618
+ -ms-flex: 0 0 33.333333%;
619
+ flex: 0 0 33.333333%;
620
+ max-width: 33.333333%;
621
+ }
622
+ .col-md-5 {
623
+ -ms-flex: 0 0 41.666667%;
624
+ flex: 0 0 41.666667%;
625
+ max-width: 41.666667%;
626
+ }
627
+ .col-md-6 {
628
+ -ms-flex: 0 0 50%;
629
+ flex: 0 0 50%;
630
+ max-width: 50%;
631
+ }
632
+ .col-md-7 {
633
+ -ms-flex: 0 0 58.333333%;
634
+ flex: 0 0 58.333333%;
635
+ max-width: 58.333333%;
636
+ }
637
+ .col-md-8 {
638
+ -ms-flex: 0 0 66.666667%;
639
+ flex: 0 0 66.666667%;
640
+ max-width: 66.666667%;
641
+ }
642
+ .col-md-9 {
643
+ -ms-flex: 0 0 75%;
644
+ flex: 0 0 75%;
645
+ max-width: 75%;
646
+ }
647
+ .col-md-10 {
648
+ -ms-flex: 0 0 83.333333%;
649
+ flex: 0 0 83.333333%;
650
+ max-width: 83.333333%;
651
+ }
652
+ .col-md-11 {
653
+ -ms-flex: 0 0 91.666667%;
654
+ flex: 0 0 91.666667%;
655
+ max-width: 91.666667%;
656
+ }
657
+ .col-md-12 {
658
+ -ms-flex: 0 0 100%;
659
+ flex: 0 0 100%;
660
+ max-width: 100%;
661
+ }
662
+ .order-md-first {
663
+ -ms-flex-order: -1;
664
+ order: -1;
665
+ }
666
+ .order-md-last {
667
+ -ms-flex-order: 13;
668
+ order: 13;
669
+ }
670
+ .order-md-0 {
671
+ -ms-flex-order: 0;
672
+ order: 0;
673
+ }
674
+ .order-md-1 {
675
+ -ms-flex-order: 1;
676
+ order: 1;
677
+ }
678
+ .order-md-2 {
679
+ -ms-flex-order: 2;
680
+ order: 2;
681
+ }
682
+ .order-md-3 {
683
+ -ms-flex-order: 3;
684
+ order: 3;
685
+ }
686
+ .order-md-4 {
687
+ -ms-flex-order: 4;
688
+ order: 4;
689
+ }
690
+ .order-md-5 {
691
+ -ms-flex-order: 5;
692
+ order: 5;
693
+ }
694
+ .order-md-6 {
695
+ -ms-flex-order: 6;
696
+ order: 6;
697
+ }
698
+ .order-md-7 {
699
+ -ms-flex-order: 7;
700
+ order: 7;
701
+ }
702
+ .order-md-8 {
703
+ -ms-flex-order: 8;
704
+ order: 8;
705
+ }
706
+ .order-md-9 {
707
+ -ms-flex-order: 9;
708
+ order: 9;
709
+ }
710
+ .order-md-10 {
711
+ -ms-flex-order: 10;
712
+ order: 10;
713
+ }
714
+ .order-md-11 {
715
+ -ms-flex-order: 11;
716
+ order: 11;
717
+ }
718
+ .order-md-12 {
719
+ -ms-flex-order: 12;
720
+ order: 12;
721
+ }
722
+ .offset-md-0 {
723
+ margin-left: 0;
724
+ }
725
+ .offset-md-1 {
726
+ margin-left: 8.333333%;
727
+ }
728
+ .offset-md-2 {
729
+ margin-left: 16.666667%;
730
+ }
731
+ .offset-md-3 {
732
+ margin-left: 25%;
733
+ }
734
+ .offset-md-4 {
735
+ margin-left: 33.333333%;
736
+ }
737
+ .offset-md-5 {
738
+ margin-left: 41.666667%;
739
+ }
740
+ .offset-md-6 {
741
+ margin-left: 50%;
742
+ }
743
+ .offset-md-7 {
744
+ margin-left: 58.333333%;
745
+ }
746
+ .offset-md-8 {
747
+ margin-left: 66.666667%;
748
+ }
749
+ .offset-md-9 {
750
+ margin-left: 75%;
751
+ }
752
+ .offset-md-10 {
753
+ margin-left: 83.333333%;
754
+ }
755
+ .offset-md-11 {
756
+ margin-left: 91.666667%;
757
+ }
758
+ }
759
+
760
+ @media (min-width: 992px) {
761
+ .col-lg {
762
+ -ms-flex-preferred-size: 0;
763
+ flex-basis: 0;
764
+ -ms-flex-positive: 1;
765
+ flex-grow: 1;
766
+ max-width: 100%;
767
+ }
768
+ .row-cols-lg-1 > * {
769
+ -ms-flex: 0 0 100%;
770
+ flex: 0 0 100%;
771
+ max-width: 100%;
772
+ }
773
+ .row-cols-lg-2 > * {
774
+ -ms-flex: 0 0 50%;
775
+ flex: 0 0 50%;
776
+ max-width: 50%;
777
+ }
778
+ .row-cols-lg-3 > * {
779
+ -ms-flex: 0 0 33.333333%;
780
+ flex: 0 0 33.333333%;
781
+ max-width: 33.333333%;
782
+ }
783
+ .row-cols-lg-4 > * {
784
+ -ms-flex: 0 0 25%;
785
+ flex: 0 0 25%;
786
+ max-width: 25%;
787
+ }
788
+ .row-cols-lg-5 > * {
789
+ -ms-flex: 0 0 20%;
790
+ flex: 0 0 20%;
791
+ max-width: 20%;
792
+ }
793
+ .row-cols-lg-6 > * {
794
+ -ms-flex: 0 0 16.666667%;
795
+ flex: 0 0 16.666667%;
796
+ max-width: 16.666667%;
797
+ }
798
+ .col-lg-auto {
799
+ -ms-flex: 0 0 auto;
800
+ flex: 0 0 auto;
801
+ width: auto;
802
+ max-width: 100%;
803
+ }
804
+ .col-lg-1 {
805
+ -ms-flex: 0 0 8.333333%;
806
+ flex: 0 0 8.333333%;
807
+ max-width: 8.333333%;
808
+ }
809
+ .col-lg-2 {
810
+ -ms-flex: 0 0 16.666667%;
811
+ flex: 0 0 16.666667%;
812
+ max-width: 16.666667%;
813
+ }
814
+ .col-lg-3 {
815
+ -ms-flex: 0 0 25%;
816
+ flex: 0 0 25%;
817
+ max-width: 25%;
818
+ }
819
+ .col-lg-4 {
820
+ -ms-flex: 0 0 33.333333%;
821
+ flex: 0 0 33.333333%;
822
+ max-width: 33.333333%;
823
+ }
824
+ .col-lg-5 {
825
+ -ms-flex: 0 0 41.666667%;
826
+ flex: 0 0 41.666667%;
827
+ max-width: 41.666667%;
828
+ }
829
+ .col-lg-6 {
830
+ -ms-flex: 0 0 50%;
831
+ flex: 0 0 50%;
832
+ max-width: 50%;
833
+ }
834
+ .col-lg-7 {
835
+ -ms-flex: 0 0 58.333333%;
836
+ flex: 0 0 58.333333%;
837
+ max-width: 58.333333%;
838
+ }
839
+ .col-lg-8 {
840
+ -ms-flex: 0 0 66.666667%;
841
+ flex: 0 0 66.666667%;
842
+ max-width: 66.666667%;
843
+ }
844
+ .col-lg-9 {
845
+ -ms-flex: 0 0 75%;
846
+ flex: 0 0 75%;
847
+ max-width: 75%;
848
+ }
849
+ .col-lg-10 {
850
+ -ms-flex: 0 0 83.333333%;
851
+ flex: 0 0 83.333333%;
852
+ max-width: 83.333333%;
853
+ }
854
+ .col-lg-11 {
855
+ -ms-flex: 0 0 91.666667%;
856
+ flex: 0 0 91.666667%;
857
+ max-width: 91.666667%;
858
+ }
859
+ .col-lg-12 {
860
+ -ms-flex: 0 0 100%;
861
+ flex: 0 0 100%;
862
+ max-width: 100%;
863
+ }
864
+ .order-lg-first {
865
+ -ms-flex-order: -1;
866
+ order: -1;
867
+ }
868
+ .order-lg-last {
869
+ -ms-flex-order: 13;
870
+ order: 13;
871
+ }
872
+ .order-lg-0 {
873
+ -ms-flex-order: 0;
874
+ order: 0;
875
+ }
876
+ .order-lg-1 {
877
+ -ms-flex-order: 1;
878
+ order: 1;
879
+ }
880
+ .order-lg-2 {
881
+ -ms-flex-order: 2;
882
+ order: 2;
883
+ }
884
+ .order-lg-3 {
885
+ -ms-flex-order: 3;
886
+ order: 3;
887
+ }
888
+ .order-lg-4 {
889
+ -ms-flex-order: 4;
890
+ order: 4;
891
+ }
892
+ .order-lg-5 {
893
+ -ms-flex-order: 5;
894
+ order: 5;
895
+ }
896
+ .order-lg-6 {
897
+ -ms-flex-order: 6;
898
+ order: 6;
899
+ }
900
+ .order-lg-7 {
901
+ -ms-flex-order: 7;
902
+ order: 7;
903
+ }
904
+ .order-lg-8 {
905
+ -ms-flex-order: 8;
906
+ order: 8;
907
+ }
908
+ .order-lg-9 {
909
+ -ms-flex-order: 9;
910
+ order: 9;
911
+ }
912
+ .order-lg-10 {
913
+ -ms-flex-order: 10;
914
+ order: 10;
915
+ }
916
+ .order-lg-11 {
917
+ -ms-flex-order: 11;
918
+ order: 11;
919
+ }
920
+ .order-lg-12 {
921
+ -ms-flex-order: 12;
922
+ order: 12;
923
+ }
924
+ .offset-lg-0 {
925
+ margin-left: 0;
926
+ }
927
+ .offset-lg-1 {
928
+ margin-left: 8.333333%;
929
+ }
930
+ .offset-lg-2 {
931
+ margin-left: 16.666667%;
932
+ }
933
+ .offset-lg-3 {
934
+ margin-left: 25%;
935
+ }
936
+ .offset-lg-4 {
937
+ margin-left: 33.333333%;
938
+ }
939
+ .offset-lg-5 {
940
+ margin-left: 41.666667%;
941
+ }
942
+ .offset-lg-6 {
943
+ margin-left: 50%;
944
+ }
945
+ .offset-lg-7 {
946
+ margin-left: 58.333333%;
947
+ }
948
+ .offset-lg-8 {
949
+ margin-left: 66.666667%;
950
+ }
951
+ .offset-lg-9 {
952
+ margin-left: 75%;
953
+ }
954
+ .offset-lg-10 {
955
+ margin-left: 83.333333%;
956
+ }
957
+ .offset-lg-11 {
958
+ margin-left: 91.666667%;
959
+ }
960
+ }
961
+
962
+ @media (min-width: 1200px) {
963
+ .col-xl {
964
+ -ms-flex-preferred-size: 0;
965
+ flex-basis: 0;
966
+ -ms-flex-positive: 1;
967
+ flex-grow: 1;
968
+ max-width: 100%;
969
+ }
970
+ .row-cols-xl-1 > * {
971
+ -ms-flex: 0 0 100%;
972
+ flex: 0 0 100%;
973
+ max-width: 100%;
974
+ }
975
+ .row-cols-xl-2 > * {
976
+ -ms-flex: 0 0 50%;
977
+ flex: 0 0 50%;
978
+ max-width: 50%;
979
+ }
980
+ .row-cols-xl-3 > * {
981
+ -ms-flex: 0 0 33.333333%;
982
+ flex: 0 0 33.333333%;
983
+ max-width: 33.333333%;
984
+ }
985
+ .row-cols-xl-4 > * {
986
+ -ms-flex: 0 0 25%;
987
+ flex: 0 0 25%;
988
+ max-width: 25%;
989
+ }
990
+ .row-cols-xl-5 > * {
991
+ -ms-flex: 0 0 20%;
992
+ flex: 0 0 20%;
993
+ max-width: 20%;
994
+ }
995
+ .row-cols-xl-6 > * {
996
+ -ms-flex: 0 0 16.666667%;
997
+ flex: 0 0 16.666667%;
998
+ max-width: 16.666667%;
999
+ }
1000
+ .col-xl-auto {
1001
+ -ms-flex: 0 0 auto;
1002
+ flex: 0 0 auto;
1003
+ width: auto;
1004
+ max-width: 100%;
1005
+ }
1006
+ .col-xl-1 {
1007
+ -ms-flex: 0 0 8.333333%;
1008
+ flex: 0 0 8.333333%;
1009
+ max-width: 8.333333%;
1010
+ }
1011
+ .col-xl-2 {
1012
+ -ms-flex: 0 0 16.666667%;
1013
+ flex: 0 0 16.666667%;
1014
+ max-width: 16.666667%;
1015
+ }
1016
+ .col-xl-3 {
1017
+ -ms-flex: 0 0 25%;
1018
+ flex: 0 0 25%;
1019
+ max-width: 25%;
1020
+ }
1021
+ .col-xl-4 {
1022
+ -ms-flex: 0 0 33.333333%;
1023
+ flex: 0 0 33.333333%;
1024
+ max-width: 33.333333%;
1025
+ }
1026
+ .col-xl-5 {
1027
+ -ms-flex: 0 0 41.666667%;
1028
+ flex: 0 0 41.666667%;
1029
+ max-width: 41.666667%;
1030
+ }
1031
+ .col-xl-6 {
1032
+ -ms-flex: 0 0 50%;
1033
+ flex: 0 0 50%;
1034
+ max-width: 50%;
1035
+ }
1036
+ .col-xl-7 {
1037
+ -ms-flex: 0 0 58.333333%;
1038
+ flex: 0 0 58.333333%;
1039
+ max-width: 58.333333%;
1040
+ }
1041
+ .col-xl-8 {
1042
+ -ms-flex: 0 0 66.666667%;
1043
+ flex: 0 0 66.666667%;
1044
+ max-width: 66.666667%;
1045
+ }
1046
+ .col-xl-9 {
1047
+ -ms-flex: 0 0 75%;
1048
+ flex: 0 0 75%;
1049
+ max-width: 75%;
1050
+ }
1051
+ .col-xl-10 {
1052
+ -ms-flex: 0 0 83.333333%;
1053
+ flex: 0 0 83.333333%;
1054
+ max-width: 83.333333%;
1055
+ }
1056
+ .col-xl-11 {
1057
+ -ms-flex: 0 0 91.666667%;
1058
+ flex: 0 0 91.666667%;
1059
+ max-width: 91.666667%;
1060
+ }
1061
+ .col-xl-12 {
1062
+ -ms-flex: 0 0 100%;
1063
+ flex: 0 0 100%;
1064
+ max-width: 100%;
1065
+ }
1066
+ .order-xl-first {
1067
+ -ms-flex-order: -1;
1068
+ order: -1;
1069
+ }
1070
+ .order-xl-last {
1071
+ -ms-flex-order: 13;
1072
+ order: 13;
1073
+ }
1074
+ .order-xl-0 {
1075
+ -ms-flex-order: 0;
1076
+ order: 0;
1077
+ }
1078
+ .order-xl-1 {
1079
+ -ms-flex-order: 1;
1080
+ order: 1;
1081
+ }
1082
+ .order-xl-2 {
1083
+ -ms-flex-order: 2;
1084
+ order: 2;
1085
+ }
1086
+ .order-xl-3 {
1087
+ -ms-flex-order: 3;
1088
+ order: 3;
1089
+ }
1090
+ .order-xl-4 {
1091
+ -ms-flex-order: 4;
1092
+ order: 4;
1093
+ }
1094
+ .order-xl-5 {
1095
+ -ms-flex-order: 5;
1096
+ order: 5;
1097
+ }
1098
+ .order-xl-6 {
1099
+ -ms-flex-order: 6;
1100
+ order: 6;
1101
+ }
1102
+ .order-xl-7 {
1103
+ -ms-flex-order: 7;
1104
+ order: 7;
1105
+ }
1106
+ .order-xl-8 {
1107
+ -ms-flex-order: 8;
1108
+ order: 8;
1109
+ }
1110
+ .order-xl-9 {
1111
+ -ms-flex-order: 9;
1112
+ order: 9;
1113
+ }
1114
+ .order-xl-10 {
1115
+ -ms-flex-order: 10;
1116
+ order: 10;
1117
+ }
1118
+ .order-xl-11 {
1119
+ -ms-flex-order: 11;
1120
+ order: 11;
1121
+ }
1122
+ .order-xl-12 {
1123
+ -ms-flex-order: 12;
1124
+ order: 12;
1125
+ }
1126
+ .offset-xl-0 {
1127
+ margin-left: 0;
1128
+ }
1129
+ .offset-xl-1 {
1130
+ margin-left: 8.333333%;
1131
+ }
1132
+ .offset-xl-2 {
1133
+ margin-left: 16.666667%;
1134
+ }
1135
+ .offset-xl-3 {
1136
+ margin-left: 25%;
1137
+ }
1138
+ .offset-xl-4 {
1139
+ margin-left: 33.333333%;
1140
+ }
1141
+ .offset-xl-5 {
1142
+ margin-left: 41.666667%;
1143
+ }
1144
+ .offset-xl-6 {
1145
+ margin-left: 50%;
1146
+ }
1147
+ .offset-xl-7 {
1148
+ margin-left: 58.333333%;
1149
+ }
1150
+ .offset-xl-8 {
1151
+ margin-left: 66.666667%;
1152
+ }
1153
+ .offset-xl-9 {
1154
+ margin-left: 75%;
1155
+ }
1156
+ .offset-xl-10 {
1157
+ margin-left: 83.333333%;
1158
+ }
1159
+ .offset-xl-11 {
1160
+ margin-left: 91.666667%;
1161
+ }
1162
+ }
1163
+
1164
+ .d-none {
1165
+ display: none !important;
1166
+ }
1167
+
1168
+ .d-inline {
1169
+ display: inline !important;
1170
+ }
1171
+
1172
+ .d-inline-block {
1173
+ display: inline-block !important;
1174
+ }
1175
+
1176
+ .d-block {
1177
+ display: block !important;
1178
+ }
1179
+
1180
+ .d-table {
1181
+ display: table !important;
1182
+ }
1183
+
1184
+ .d-table-row {
1185
+ display: table-row !important;
1186
+ }
1187
+
1188
+ .d-table-cell {
1189
+ display: table-cell !important;
1190
+ }
1191
+
1192
+ .d-flex {
1193
+ display: -ms-flexbox !important;
1194
+ display: flex !important;
1195
+ }
1196
+
1197
+ .d-inline-flex {
1198
+ display: -ms-inline-flexbox !important;
1199
+ display: inline-flex !important;
1200
+ }
1201
+
1202
+ @media (min-width: 576px) {
1203
+ .d-sm-none {
1204
+ display: none !important;
1205
+ }
1206
+ .d-sm-inline {
1207
+ display: inline !important;
1208
+ }
1209
+ .d-sm-inline-block {
1210
+ display: inline-block !important;
1211
+ }
1212
+ .d-sm-block {
1213
+ display: block !important;
1214
+ }
1215
+ .d-sm-table {
1216
+ display: table !important;
1217
+ }
1218
+ .d-sm-table-row {
1219
+ display: table-row !important;
1220
+ }
1221
+ .d-sm-table-cell {
1222
+ display: table-cell !important;
1223
+ }
1224
+ .d-sm-flex {
1225
+ display: -ms-flexbox !important;
1226
+ display: flex !important;
1227
+ }
1228
+ .d-sm-inline-flex {
1229
+ display: -ms-inline-flexbox !important;
1230
+ display: inline-flex !important;
1231
+ }
1232
+ }
1233
+
1234
+ @media (min-width: 768px) {
1235
+ .d-md-none {
1236
+ display: none !important;
1237
+ }
1238
+ .d-md-inline {
1239
+ display: inline !important;
1240
+ }
1241
+ .d-md-inline-block {
1242
+ display: inline-block !important;
1243
+ }
1244
+ .d-md-block {
1245
+ display: block !important;
1246
+ }
1247
+ .d-md-table {
1248
+ display: table !important;
1249
+ }
1250
+ .d-md-table-row {
1251
+ display: table-row !important;
1252
+ }
1253
+ .d-md-table-cell {
1254
+ display: table-cell !important;
1255
+ }
1256
+ .d-md-flex {
1257
+ display: -ms-flexbox !important;
1258
+ display: flex !important;
1259
+ }
1260
+ .d-md-inline-flex {
1261
+ display: -ms-inline-flexbox !important;
1262
+ display: inline-flex !important;
1263
+ }
1264
+ }
1265
+
1266
+ @media (min-width: 992px) {
1267
+ .d-lg-none {
1268
+ display: none !important;
1269
+ }
1270
+ .d-lg-inline {
1271
+ display: inline !important;
1272
+ }
1273
+ .d-lg-inline-block {
1274
+ display: inline-block !important;
1275
+ }
1276
+ .d-lg-block {
1277
+ display: block !important;
1278
+ }
1279
+ .d-lg-table {
1280
+ display: table !important;
1281
+ }
1282
+ .d-lg-table-row {
1283
+ display: table-row !important;
1284
+ }
1285
+ .d-lg-table-cell {
1286
+ display: table-cell !important;
1287
+ }
1288
+ .d-lg-flex {
1289
+ display: -ms-flexbox !important;
1290
+ display: flex !important;
1291
+ }
1292
+ .d-lg-inline-flex {
1293
+ display: -ms-inline-flexbox !important;
1294
+ display: inline-flex !important;
1295
+ }
1296
+ }
1297
+
1298
+ @media (min-width: 1200px) {
1299
+ .d-xl-none {
1300
+ display: none !important;
1301
+ }
1302
+ .d-xl-inline {
1303
+ display: inline !important;
1304
+ }
1305
+ .d-xl-inline-block {
1306
+ display: inline-block !important;
1307
+ }
1308
+ .d-xl-block {
1309
+ display: block !important;
1310
+ }
1311
+ .d-xl-table {
1312
+ display: table !important;
1313
+ }
1314
+ .d-xl-table-row {
1315
+ display: table-row !important;
1316
+ }
1317
+ .d-xl-table-cell {
1318
+ display: table-cell !important;
1319
+ }
1320
+ .d-xl-flex {
1321
+ display: -ms-flexbox !important;
1322
+ display: flex !important;
1323
+ }
1324
+ .d-xl-inline-flex {
1325
+ display: -ms-inline-flexbox !important;
1326
+ display: inline-flex !important;
1327
+ }
1328
+ }
1329
+
1330
+ @media print {
1331
+ .d-print-none {
1332
+ display: none !important;
1333
+ }
1334
+ .d-print-inline {
1335
+ display: inline !important;
1336
+ }
1337
+ .d-print-inline-block {
1338
+ display: inline-block !important;
1339
+ }
1340
+ .d-print-block {
1341
+ display: block !important;
1342
+ }
1343
+ .d-print-table {
1344
+ display: table !important;
1345
+ }
1346
+ .d-print-table-row {
1347
+ display: table-row !important;
1348
+ }
1349
+ .d-print-table-cell {
1350
+ display: table-cell !important;
1351
+ }
1352
+ .d-print-flex {
1353
+ display: -ms-flexbox !important;
1354
+ display: flex !important;
1355
+ }
1356
+ .d-print-inline-flex {
1357
+ display: -ms-inline-flexbox !important;
1358
+ display: inline-flex !important;
1359
+ }
1360
+ }
1361
+
1362
+ .flex-row {
1363
+ -ms-flex-direction: row !important;
1364
+ flex-direction: row !important;
1365
+ }
1366
+
1367
+ .flex-column {
1368
+ -ms-flex-direction: column !important;
1369
+ flex-direction: column !important;
1370
+ }
1371
+
1372
+ .flex-row-reverse {
1373
+ -ms-flex-direction: row-reverse !important;
1374
+ flex-direction: row-reverse !important;
1375
+ }
1376
+
1377
+ .flex-column-reverse {
1378
+ -ms-flex-direction: column-reverse !important;
1379
+ flex-direction: column-reverse !important;
1380
+ }
1381
+
1382
+ .flex-wrap {
1383
+ -ms-flex-wrap: wrap !important;
1384
+ flex-wrap: wrap !important;
1385
+ }
1386
+
1387
+ .flex-nowrap {
1388
+ -ms-flex-wrap: nowrap !important;
1389
+ flex-wrap: nowrap !important;
1390
+ }
1391
+
1392
+ .flex-wrap-reverse {
1393
+ -ms-flex-wrap: wrap-reverse !important;
1394
+ flex-wrap: wrap-reverse !important;
1395
+ }
1396
+
1397
+ .flex-fill {
1398
+ -ms-flex: 1 1 auto !important;
1399
+ flex: 1 1 auto !important;
1400
+ }
1401
+
1402
+ .flex-grow-0 {
1403
+ -ms-flex-positive: 0 !important;
1404
+ flex-grow: 0 !important;
1405
+ }
1406
+
1407
+ .flex-grow-1 {
1408
+ -ms-flex-positive: 1 !important;
1409
+ flex-grow: 1 !important;
1410
+ }
1411
+
1412
+ .flex-shrink-0 {
1413
+ -ms-flex-negative: 0 !important;
1414
+ flex-shrink: 0 !important;
1415
+ }
1416
+
1417
+ .flex-shrink-1 {
1418
+ -ms-flex-negative: 1 !important;
1419
+ flex-shrink: 1 !important;
1420
+ }
1421
+
1422
+ .justify-content-start {
1423
+ -ms-flex-pack: start !important;
1424
+ justify-content: flex-start !important;
1425
+ }
1426
+
1427
+ .justify-content-end {
1428
+ -ms-flex-pack: end !important;
1429
+ justify-content: flex-end !important;
1430
+ }
1431
+
1432
+ .justify-content-center {
1433
+ -ms-flex-pack: center !important;
1434
+ justify-content: center !important;
1435
+ }
1436
+
1437
+ .justify-content-between {
1438
+ -ms-flex-pack: justify !important;
1439
+ justify-content: space-between !important;
1440
+ }
1441
+
1442
+ .justify-content-around {
1443
+ -ms-flex-pack: distribute !important;
1444
+ justify-content: space-around !important;
1445
+ }
1446
+
1447
+ .align-items-start {
1448
+ -ms-flex-align: start !important;
1449
+ align-items: flex-start !important;
1450
+ }
1451
+
1452
+ .align-items-end {
1453
+ -ms-flex-align: end !important;
1454
+ align-items: flex-end !important;
1455
+ }
1456
+
1457
+ .align-items-center {
1458
+ -ms-flex-align: center !important;
1459
+ align-items: center !important;
1460
+ }
1461
+
1462
+ .align-items-baseline {
1463
+ -ms-flex-align: baseline !important;
1464
+ align-items: baseline !important;
1465
+ }
1466
+
1467
+ .align-items-stretch {
1468
+ -ms-flex-align: stretch !important;
1469
+ align-items: stretch !important;
1470
+ }
1471
+
1472
+ .align-content-start {
1473
+ -ms-flex-line-pack: start !important;
1474
+ align-content: flex-start !important;
1475
+ }
1476
+
1477
+ .align-content-end {
1478
+ -ms-flex-line-pack: end !important;
1479
+ align-content: flex-end !important;
1480
+ }
1481
+
1482
+ .align-content-center {
1483
+ -ms-flex-line-pack: center !important;
1484
+ align-content: center !important;
1485
+ }
1486
+
1487
+ .align-content-between {
1488
+ -ms-flex-line-pack: justify !important;
1489
+ align-content: space-between !important;
1490
+ }
1491
+
1492
+ .align-content-around {
1493
+ -ms-flex-line-pack: distribute !important;
1494
+ align-content: space-around !important;
1495
+ }
1496
+
1497
+ .align-content-stretch {
1498
+ -ms-flex-line-pack: stretch !important;
1499
+ align-content: stretch !important;
1500
+ }
1501
+
1502
+ .align-self-auto {
1503
+ -ms-flex-item-align: auto !important;
1504
+ align-self: auto !important;
1505
+ }
1506
+
1507
+ .align-self-start {
1508
+ -ms-flex-item-align: start !important;
1509
+ align-self: flex-start !important;
1510
+ }
1511
+
1512
+ .align-self-end {
1513
+ -ms-flex-item-align: end !important;
1514
+ align-self: flex-end !important;
1515
+ }
1516
+
1517
+ .align-self-center {
1518
+ -ms-flex-item-align: center !important;
1519
+ align-self: center !important;
1520
+ }
1521
+
1522
+ .align-self-baseline {
1523
+ -ms-flex-item-align: baseline !important;
1524
+ align-self: baseline !important;
1525
+ }
1526
+
1527
+ .align-self-stretch {
1528
+ -ms-flex-item-align: stretch !important;
1529
+ align-self: stretch !important;
1530
+ }
1531
+
1532
+ @media (min-width: 576px) {
1533
+ .flex-sm-row {
1534
+ -ms-flex-direction: row !important;
1535
+ flex-direction: row !important;
1536
+ }
1537
+ .flex-sm-column {
1538
+ -ms-flex-direction: column !important;
1539
+ flex-direction: column !important;
1540
+ }
1541
+ .flex-sm-row-reverse {
1542
+ -ms-flex-direction: row-reverse !important;
1543
+ flex-direction: row-reverse !important;
1544
+ }
1545
+ .flex-sm-column-reverse {
1546
+ -ms-flex-direction: column-reverse !important;
1547
+ flex-direction: column-reverse !important;
1548
+ }
1549
+ .flex-sm-wrap {
1550
+ -ms-flex-wrap: wrap !important;
1551
+ flex-wrap: wrap !important;
1552
+ }
1553
+ .flex-sm-nowrap {
1554
+ -ms-flex-wrap: nowrap !important;
1555
+ flex-wrap: nowrap !important;
1556
+ }
1557
+ .flex-sm-wrap-reverse {
1558
+ -ms-flex-wrap: wrap-reverse !important;
1559
+ flex-wrap: wrap-reverse !important;
1560
+ }
1561
+ .flex-sm-fill {
1562
+ -ms-flex: 1 1 auto !important;
1563
+ flex: 1 1 auto !important;
1564
+ }
1565
+ .flex-sm-grow-0 {
1566
+ -ms-flex-positive: 0 !important;
1567
+ flex-grow: 0 !important;
1568
+ }
1569
+ .flex-sm-grow-1 {
1570
+ -ms-flex-positive: 1 !important;
1571
+ flex-grow: 1 !important;
1572
+ }
1573
+ .flex-sm-shrink-0 {
1574
+ -ms-flex-negative: 0 !important;
1575
+ flex-shrink: 0 !important;
1576
+ }
1577
+ .flex-sm-shrink-1 {
1578
+ -ms-flex-negative: 1 !important;
1579
+ flex-shrink: 1 !important;
1580
+ }
1581
+ .justify-content-sm-start {
1582
+ -ms-flex-pack: start !important;
1583
+ justify-content: flex-start !important;
1584
+ }
1585
+ .justify-content-sm-end {
1586
+ -ms-flex-pack: end !important;
1587
+ justify-content: flex-end !important;
1588
+ }
1589
+ .justify-content-sm-center {
1590
+ -ms-flex-pack: center !important;
1591
+ justify-content: center !important;
1592
+ }
1593
+ .justify-content-sm-between {
1594
+ -ms-flex-pack: justify !important;
1595
+ justify-content: space-between !important;
1596
+ }
1597
+ .justify-content-sm-around {
1598
+ -ms-flex-pack: distribute !important;
1599
+ justify-content: space-around !important;
1600
+ }
1601
+ .align-items-sm-start {
1602
+ -ms-flex-align: start !important;
1603
+ align-items: flex-start !important;
1604
+ }
1605
+ .align-items-sm-end {
1606
+ -ms-flex-align: end !important;
1607
+ align-items: flex-end !important;
1608
+ }
1609
+ .align-items-sm-center {
1610
+ -ms-flex-align: center !important;
1611
+ align-items: center !important;
1612
+ }
1613
+ .align-items-sm-baseline {
1614
+ -ms-flex-align: baseline !important;
1615
+ align-items: baseline !important;
1616
+ }
1617
+ .align-items-sm-stretch {
1618
+ -ms-flex-align: stretch !important;
1619
+ align-items: stretch !important;
1620
+ }
1621
+ .align-content-sm-start {
1622
+ -ms-flex-line-pack: start !important;
1623
+ align-content: flex-start !important;
1624
+ }
1625
+ .align-content-sm-end {
1626
+ -ms-flex-line-pack: end !important;
1627
+ align-content: flex-end !important;
1628
+ }
1629
+ .align-content-sm-center {
1630
+ -ms-flex-line-pack: center !important;
1631
+ align-content: center !important;
1632
+ }
1633
+ .align-content-sm-between {
1634
+ -ms-flex-line-pack: justify !important;
1635
+ align-content: space-between !important;
1636
+ }
1637
+ .align-content-sm-around {
1638
+ -ms-flex-line-pack: distribute !important;
1639
+ align-content: space-around !important;
1640
+ }
1641
+ .align-content-sm-stretch {
1642
+ -ms-flex-line-pack: stretch !important;
1643
+ align-content: stretch !important;
1644
+ }
1645
+ .align-self-sm-auto {
1646
+ -ms-flex-item-align: auto !important;
1647
+ align-self: auto !important;
1648
+ }
1649
+ .align-self-sm-start {
1650
+ -ms-flex-item-align: start !important;
1651
+ align-self: flex-start !important;
1652
+ }
1653
+ .align-self-sm-end {
1654
+ -ms-flex-item-align: end !important;
1655
+ align-self: flex-end !important;
1656
+ }
1657
+ .align-self-sm-center {
1658
+ -ms-flex-item-align: center !important;
1659
+ align-self: center !important;
1660
+ }
1661
+ .align-self-sm-baseline {
1662
+ -ms-flex-item-align: baseline !important;
1663
+ align-self: baseline !important;
1664
+ }
1665
+ .align-self-sm-stretch {
1666
+ -ms-flex-item-align: stretch !important;
1667
+ align-self: stretch !important;
1668
+ }
1669
+ }
1670
+
1671
+ @media (min-width: 768px) {
1672
+ .flex-md-row {
1673
+ -ms-flex-direction: row !important;
1674
+ flex-direction: row !important;
1675
+ }
1676
+ .flex-md-column {
1677
+ -ms-flex-direction: column !important;
1678
+ flex-direction: column !important;
1679
+ }
1680
+ .flex-md-row-reverse {
1681
+ -ms-flex-direction: row-reverse !important;
1682
+ flex-direction: row-reverse !important;
1683
+ }
1684
+ .flex-md-column-reverse {
1685
+ -ms-flex-direction: column-reverse !important;
1686
+ flex-direction: column-reverse !important;
1687
+ }
1688
+ .flex-md-wrap {
1689
+ -ms-flex-wrap: wrap !important;
1690
+ flex-wrap: wrap !important;
1691
+ }
1692
+ .flex-md-nowrap {
1693
+ -ms-flex-wrap: nowrap !important;
1694
+ flex-wrap: nowrap !important;
1695
+ }
1696
+ .flex-md-wrap-reverse {
1697
+ -ms-flex-wrap: wrap-reverse !important;
1698
+ flex-wrap: wrap-reverse !important;
1699
+ }
1700
+ .flex-md-fill {
1701
+ -ms-flex: 1 1 auto !important;
1702
+ flex: 1 1 auto !important;
1703
+ }
1704
+ .flex-md-grow-0 {
1705
+ -ms-flex-positive: 0 !important;
1706
+ flex-grow: 0 !important;
1707
+ }
1708
+ .flex-md-grow-1 {
1709
+ -ms-flex-positive: 1 !important;
1710
+ flex-grow: 1 !important;
1711
+ }
1712
+ .flex-md-shrink-0 {
1713
+ -ms-flex-negative: 0 !important;
1714
+ flex-shrink: 0 !important;
1715
+ }
1716
+ .flex-md-shrink-1 {
1717
+ -ms-flex-negative: 1 !important;
1718
+ flex-shrink: 1 !important;
1719
+ }
1720
+ .justify-content-md-start {
1721
+ -ms-flex-pack: start !important;
1722
+ justify-content: flex-start !important;
1723
+ }
1724
+ .justify-content-md-end {
1725
+ -ms-flex-pack: end !important;
1726
+ justify-content: flex-end !important;
1727
+ }
1728
+ .justify-content-md-center {
1729
+ -ms-flex-pack: center !important;
1730
+ justify-content: center !important;
1731
+ }
1732
+ .justify-content-md-between {
1733
+ -ms-flex-pack: justify !important;
1734
+ justify-content: space-between !important;
1735
+ }
1736
+ .justify-content-md-around {
1737
+ -ms-flex-pack: distribute !important;
1738
+ justify-content: space-around !important;
1739
+ }
1740
+ .align-items-md-start {
1741
+ -ms-flex-align: start !important;
1742
+ align-items: flex-start !important;
1743
+ }
1744
+ .align-items-md-end {
1745
+ -ms-flex-align: end !important;
1746
+ align-items: flex-end !important;
1747
+ }
1748
+ .align-items-md-center {
1749
+ -ms-flex-align: center !important;
1750
+ align-items: center !important;
1751
+ }
1752
+ .align-items-md-baseline {
1753
+ -ms-flex-align: baseline !important;
1754
+ align-items: baseline !important;
1755
+ }
1756
+ .align-items-md-stretch {
1757
+ -ms-flex-align: stretch !important;
1758
+ align-items: stretch !important;
1759
+ }
1760
+ .align-content-md-start {
1761
+ -ms-flex-line-pack: start !important;
1762
+ align-content: flex-start !important;
1763
+ }
1764
+ .align-content-md-end {
1765
+ -ms-flex-line-pack: end !important;
1766
+ align-content: flex-end !important;
1767
+ }
1768
+ .align-content-md-center {
1769
+ -ms-flex-line-pack: center !important;
1770
+ align-content: center !important;
1771
+ }
1772
+ .align-content-md-between {
1773
+ -ms-flex-line-pack: justify !important;
1774
+ align-content: space-between !important;
1775
+ }
1776
+ .align-content-md-around {
1777
+ -ms-flex-line-pack: distribute !important;
1778
+ align-content: space-around !important;
1779
+ }
1780
+ .align-content-md-stretch {
1781
+ -ms-flex-line-pack: stretch !important;
1782
+ align-content: stretch !important;
1783
+ }
1784
+ .align-self-md-auto {
1785
+ -ms-flex-item-align: auto !important;
1786
+ align-self: auto !important;
1787
+ }
1788
+ .align-self-md-start {
1789
+ -ms-flex-item-align: start !important;
1790
+ align-self: flex-start !important;
1791
+ }
1792
+ .align-self-md-end {
1793
+ -ms-flex-item-align: end !important;
1794
+ align-self: flex-end !important;
1795
+ }
1796
+ .align-self-md-center {
1797
+ -ms-flex-item-align: center !important;
1798
+ align-self: center !important;
1799
+ }
1800
+ .align-self-md-baseline {
1801
+ -ms-flex-item-align: baseline !important;
1802
+ align-self: baseline !important;
1803
+ }
1804
+ .align-self-md-stretch {
1805
+ -ms-flex-item-align: stretch !important;
1806
+ align-self: stretch !important;
1807
+ }
1808
+ }
1809
+
1810
+ @media (min-width: 992px) {
1811
+ .flex-lg-row {
1812
+ -ms-flex-direction: row !important;
1813
+ flex-direction: row !important;
1814
+ }
1815
+ .flex-lg-column {
1816
+ -ms-flex-direction: column !important;
1817
+ flex-direction: column !important;
1818
+ }
1819
+ .flex-lg-row-reverse {
1820
+ -ms-flex-direction: row-reverse !important;
1821
+ flex-direction: row-reverse !important;
1822
+ }
1823
+ .flex-lg-column-reverse {
1824
+ -ms-flex-direction: column-reverse !important;
1825
+ flex-direction: column-reverse !important;
1826
+ }
1827
+ .flex-lg-wrap {
1828
+ -ms-flex-wrap: wrap !important;
1829
+ flex-wrap: wrap !important;
1830
+ }
1831
+ .flex-lg-nowrap {
1832
+ -ms-flex-wrap: nowrap !important;
1833
+ flex-wrap: nowrap !important;
1834
+ }
1835
+ .flex-lg-wrap-reverse {
1836
+ -ms-flex-wrap: wrap-reverse !important;
1837
+ flex-wrap: wrap-reverse !important;
1838
+ }
1839
+ .flex-lg-fill {
1840
+ -ms-flex: 1 1 auto !important;
1841
+ flex: 1 1 auto !important;
1842
+ }
1843
+ .flex-lg-grow-0 {
1844
+ -ms-flex-positive: 0 !important;
1845
+ flex-grow: 0 !important;
1846
+ }
1847
+ .flex-lg-grow-1 {
1848
+ -ms-flex-positive: 1 !important;
1849
+ flex-grow: 1 !important;
1850
+ }
1851
+ .flex-lg-shrink-0 {
1852
+ -ms-flex-negative: 0 !important;
1853
+ flex-shrink: 0 !important;
1854
+ }
1855
+ .flex-lg-shrink-1 {
1856
+ -ms-flex-negative: 1 !important;
1857
+ flex-shrink: 1 !important;
1858
+ }
1859
+ .justify-content-lg-start {
1860
+ -ms-flex-pack: start !important;
1861
+ justify-content: flex-start !important;
1862
+ }
1863
+ .justify-content-lg-end {
1864
+ -ms-flex-pack: end !important;
1865
+ justify-content: flex-end !important;
1866
+ }
1867
+ .justify-content-lg-center {
1868
+ -ms-flex-pack: center !important;
1869
+ justify-content: center !important;
1870
+ }
1871
+ .justify-content-lg-between {
1872
+ -ms-flex-pack: justify !important;
1873
+ justify-content: space-between !important;
1874
+ }
1875
+ .justify-content-lg-around {
1876
+ -ms-flex-pack: distribute !important;
1877
+ justify-content: space-around !important;
1878
+ }
1879
+ .align-items-lg-start {
1880
+ -ms-flex-align: start !important;
1881
+ align-items: flex-start !important;
1882
+ }
1883
+ .align-items-lg-end {
1884
+ -ms-flex-align: end !important;
1885
+ align-items: flex-end !important;
1886
+ }
1887
+ .align-items-lg-center {
1888
+ -ms-flex-align: center !important;
1889
+ align-items: center !important;
1890
+ }
1891
+ .align-items-lg-baseline {
1892
+ -ms-flex-align: baseline !important;
1893
+ align-items: baseline !important;
1894
+ }
1895
+ .align-items-lg-stretch {
1896
+ -ms-flex-align: stretch !important;
1897
+ align-items: stretch !important;
1898
+ }
1899
+ .align-content-lg-start {
1900
+ -ms-flex-line-pack: start !important;
1901
+ align-content: flex-start !important;
1902
+ }
1903
+ .align-content-lg-end {
1904
+ -ms-flex-line-pack: end !important;
1905
+ align-content: flex-end !important;
1906
+ }
1907
+ .align-content-lg-center {
1908
+ -ms-flex-line-pack: center !important;
1909
+ align-content: center !important;
1910
+ }
1911
+ .align-content-lg-between {
1912
+ -ms-flex-line-pack: justify !important;
1913
+ align-content: space-between !important;
1914
+ }
1915
+ .align-content-lg-around {
1916
+ -ms-flex-line-pack: distribute !important;
1917
+ align-content: space-around !important;
1918
+ }
1919
+ .align-content-lg-stretch {
1920
+ -ms-flex-line-pack: stretch !important;
1921
+ align-content: stretch !important;
1922
+ }
1923
+ .align-self-lg-auto {
1924
+ -ms-flex-item-align: auto !important;
1925
+ align-self: auto !important;
1926
+ }
1927
+ .align-self-lg-start {
1928
+ -ms-flex-item-align: start !important;
1929
+ align-self: flex-start !important;
1930
+ }
1931
+ .align-self-lg-end {
1932
+ -ms-flex-item-align: end !important;
1933
+ align-self: flex-end !important;
1934
+ }
1935
+ .align-self-lg-center {
1936
+ -ms-flex-item-align: center !important;
1937
+ align-self: center !important;
1938
+ }
1939
+ .align-self-lg-baseline {
1940
+ -ms-flex-item-align: baseline !important;
1941
+ align-self: baseline !important;
1942
+ }
1943
+ .align-self-lg-stretch {
1944
+ -ms-flex-item-align: stretch !important;
1945
+ align-self: stretch !important;
1946
+ }
1947
+ }
1948
+
1949
+ @media (min-width: 1200px) {
1950
+ .flex-xl-row {
1951
+ -ms-flex-direction: row !important;
1952
+ flex-direction: row !important;
1953
+ }
1954
+ .flex-xl-column {
1955
+ -ms-flex-direction: column !important;
1956
+ flex-direction: column !important;
1957
+ }
1958
+ .flex-xl-row-reverse {
1959
+ -ms-flex-direction: row-reverse !important;
1960
+ flex-direction: row-reverse !important;
1961
+ }
1962
+ .flex-xl-column-reverse {
1963
+ -ms-flex-direction: column-reverse !important;
1964
+ flex-direction: column-reverse !important;
1965
+ }
1966
+ .flex-xl-wrap {
1967
+ -ms-flex-wrap: wrap !important;
1968
+ flex-wrap: wrap !important;
1969
+ }
1970
+ .flex-xl-nowrap {
1971
+ -ms-flex-wrap: nowrap !important;
1972
+ flex-wrap: nowrap !important;
1973
+ }
1974
+ .flex-xl-wrap-reverse {
1975
+ -ms-flex-wrap: wrap-reverse !important;
1976
+ flex-wrap: wrap-reverse !important;
1977
+ }
1978
+ .flex-xl-fill {
1979
+ -ms-flex: 1 1 auto !important;
1980
+ flex: 1 1 auto !important;
1981
+ }
1982
+ .flex-xl-grow-0 {
1983
+ -ms-flex-positive: 0 !important;
1984
+ flex-grow: 0 !important;
1985
+ }
1986
+ .flex-xl-grow-1 {
1987
+ -ms-flex-positive: 1 !important;
1988
+ flex-grow: 1 !important;
1989
+ }
1990
+ .flex-xl-shrink-0 {
1991
+ -ms-flex-negative: 0 !important;
1992
+ flex-shrink: 0 !important;
1993
+ }
1994
+ .flex-xl-shrink-1 {
1995
+ -ms-flex-negative: 1 !important;
1996
+ flex-shrink: 1 !important;
1997
+ }
1998
+ .justify-content-xl-start {
1999
+ -ms-flex-pack: start !important;
2000
+ justify-content: flex-start !important;
2001
+ }
2002
+ .justify-content-xl-end {
2003
+ -ms-flex-pack: end !important;
2004
+ justify-content: flex-end !important;
2005
+ }
2006
+ .justify-content-xl-center {
2007
+ -ms-flex-pack: center !important;
2008
+ justify-content: center !important;
2009
+ }
2010
+ .justify-content-xl-between {
2011
+ -ms-flex-pack: justify !important;
2012
+ justify-content: space-between !important;
2013
+ }
2014
+ .justify-content-xl-around {
2015
+ -ms-flex-pack: distribute !important;
2016
+ justify-content: space-around !important;
2017
+ }
2018
+ .align-items-xl-start {
2019
+ -ms-flex-align: start !important;
2020
+ align-items: flex-start !important;
2021
+ }
2022
+ .align-items-xl-end {
2023
+ -ms-flex-align: end !important;
2024
+ align-items: flex-end !important;
2025
+ }
2026
+ .align-items-xl-center {
2027
+ -ms-flex-align: center !important;
2028
+ align-items: center !important;
2029
+ }
2030
+ .align-items-xl-baseline {
2031
+ -ms-flex-align: baseline !important;
2032
+ align-items: baseline !important;
2033
+ }
2034
+ .align-items-xl-stretch {
2035
+ -ms-flex-align: stretch !important;
2036
+ align-items: stretch !important;
2037
+ }
2038
+ .align-content-xl-start {
2039
+ -ms-flex-line-pack: start !important;
2040
+ align-content: flex-start !important;
2041
+ }
2042
+ .align-content-xl-end {
2043
+ -ms-flex-line-pack: end !important;
2044
+ align-content: flex-end !important;
2045
+ }
2046
+ .align-content-xl-center {
2047
+ -ms-flex-line-pack: center !important;
2048
+ align-content: center !important;
2049
+ }
2050
+ .align-content-xl-between {
2051
+ -ms-flex-line-pack: justify !important;
2052
+ align-content: space-between !important;
2053
+ }
2054
+ .align-content-xl-around {
2055
+ -ms-flex-line-pack: distribute !important;
2056
+ align-content: space-around !important;
2057
+ }
2058
+ .align-content-xl-stretch {
2059
+ -ms-flex-line-pack: stretch !important;
2060
+ align-content: stretch !important;
2061
+ }
2062
+ .align-self-xl-auto {
2063
+ -ms-flex-item-align: auto !important;
2064
+ align-self: auto !important;
2065
+ }
2066
+ .align-self-xl-start {
2067
+ -ms-flex-item-align: start !important;
2068
+ align-self: flex-start !important;
2069
+ }
2070
+ .align-self-xl-end {
2071
+ -ms-flex-item-align: end !important;
2072
+ align-self: flex-end !important;
2073
+ }
2074
+ .align-self-xl-center {
2075
+ -ms-flex-item-align: center !important;
2076
+ align-self: center !important;
2077
+ }
2078
+ .align-self-xl-baseline {
2079
+ -ms-flex-item-align: baseline !important;
2080
+ align-self: baseline !important;
2081
+ }
2082
+ .align-self-xl-stretch {
2083
+ -ms-flex-item-align: stretch !important;
2084
+ align-self: stretch !important;
2085
+ }
2086
+ }
2087
+
2088
+ .m-0 {
2089
+ margin: 0 !important;
2090
+ }
2091
+
2092
+ .mt-0,
2093
+ .my-0 {
2094
+ margin-top: 0 !important;
2095
+ }
2096
+
2097
+ .mr-0,
2098
+ .mx-0 {
2099
+ margin-right: 0 !important;
2100
+ }
2101
+
2102
+ .mb-0,
2103
+ .my-0 {
2104
+ margin-bottom: 0 !important;
2105
+ }
2106
+
2107
+ .ml-0,
2108
+ .mx-0 {
2109
+ margin-left: 0 !important;
2110
+ }
2111
+
2112
+ .m-1 {
2113
+ margin: 0.25rem !important;
2114
+ }
2115
+
2116
+ .mt-1,
2117
+ .my-1 {
2118
+ margin-top: 0.25rem !important;
2119
+ }
2120
+
2121
+ .mr-1,
2122
+ .mx-1 {
2123
+ margin-right: 0.25rem !important;
2124
+ }
2125
+
2126
+ .mb-1,
2127
+ .my-1 {
2128
+ margin-bottom: 0.25rem !important;
2129
+ }
2130
+
2131
+ .ml-1,
2132
+ .mx-1 {
2133
+ margin-left: 0.25rem !important;
2134
+ }
2135
+
2136
+ .m-2 {
2137
+ margin: 0.5rem !important;
2138
+ }
2139
+
2140
+ .mt-2,
2141
+ .my-2 {
2142
+ margin-top: 0.5rem !important;
2143
+ }
2144
+
2145
+ .mr-2,
2146
+ .mx-2 {
2147
+ margin-right: 0.5rem !important;
2148
+ }
2149
+
2150
+ .mb-2,
2151
+ .my-2 {
2152
+ margin-bottom: 0.5rem !important;
2153
+ }
2154
+
2155
+ .ml-2,
2156
+ .mx-2 {
2157
+ margin-left: 0.5rem !important;
2158
+ }
2159
+
2160
+ .m-3 {
2161
+ margin: 1rem !important;
2162
+ }
2163
+
2164
+ .mt-3,
2165
+ .my-3 {
2166
+ margin-top: 1rem !important;
2167
+ }
2168
+
2169
+ .mr-3,
2170
+ .mx-3 {
2171
+ margin-right: 1rem !important;
2172
+ }
2173
+
2174
+ .mb-3,
2175
+ .my-3 {
2176
+ margin-bottom: 1rem !important;
2177
+ }
2178
+
2179
+ .ml-3,
2180
+ .mx-3 {
2181
+ margin-left: 1rem !important;
2182
+ }
2183
+
2184
+ .m-4 {
2185
+ margin: 1.5rem !important;
2186
+ }
2187
+
2188
+ .mt-4,
2189
+ .my-4 {
2190
+ margin-top: 1.5rem !important;
2191
+ }
2192
+
2193
+ .mr-4,
2194
+ .mx-4 {
2195
+ margin-right: 1.5rem !important;
2196
+ }
2197
+
2198
+ .mb-4,
2199
+ .my-4 {
2200
+ margin-bottom: 1.5rem !important;
2201
+ }
2202
+
2203
+ .ml-4,
2204
+ .mx-4 {
2205
+ margin-left: 1.5rem !important;
2206
+ }
2207
+
2208
+ .m-5 {
2209
+ margin: 3rem !important;
2210
+ }
2211
+
2212
+ .mt-5,
2213
+ .my-5 {
2214
+ margin-top: 3rem !important;
2215
+ }
2216
+
2217
+ .mr-5,
2218
+ .mx-5 {
2219
+ margin-right: 3rem !important;
2220
+ }
2221
+
2222
+ .mb-5,
2223
+ .my-5 {
2224
+ margin-bottom: 3rem !important;
2225
+ }
2226
+
2227
+ .ml-5,
2228
+ .mx-5 {
2229
+ margin-left: 3rem !important;
2230
+ }
2231
+
2232
+ .p-0 {
2233
+ padding: 0 !important;
2234
+ }
2235
+
2236
+ .pt-0,
2237
+ .py-0 {
2238
+ padding-top: 0 !important;
2239
+ }
2240
+
2241
+ .pr-0,
2242
+ .px-0 {
2243
+ padding-right: 0 !important;
2244
+ }
2245
+
2246
+ .pb-0,
2247
+ .py-0 {
2248
+ padding-bottom: 0 !important;
2249
+ }
2250
+
2251
+ .pl-0,
2252
+ .px-0 {
2253
+ padding-left: 0 !important;
2254
+ }
2255
+
2256
+ .p-1 {
2257
+ padding: 0.25rem !important;
2258
+ }
2259
+
2260
+ .pt-1,
2261
+ .py-1 {
2262
+ padding-top: 0.25rem !important;
2263
+ }
2264
+
2265
+ .pr-1,
2266
+ .px-1 {
2267
+ padding-right: 0.25rem !important;
2268
+ }
2269
+
2270
+ .pb-1,
2271
+ .py-1 {
2272
+ padding-bottom: 0.25rem !important;
2273
+ }
2274
+
2275
+ .pl-1,
2276
+ .px-1 {
2277
+ padding-left: 0.25rem !important;
2278
+ }
2279
+
2280
+ .p-2 {
2281
+ padding: 0.5rem !important;
2282
+ }
2283
+
2284
+ .pt-2,
2285
+ .py-2 {
2286
+ padding-top: 0.5rem !important;
2287
+ }
2288
+
2289
+ .pr-2,
2290
+ .px-2 {
2291
+ padding-right: 0.5rem !important;
2292
+ }
2293
+
2294
+ .pb-2,
2295
+ .py-2 {
2296
+ padding-bottom: 0.5rem !important;
2297
+ }
2298
+
2299
+ .pl-2,
2300
+ .px-2 {
2301
+ padding-left: 0.5rem !important;
2302
+ }
2303
+
2304
+ .p-3 {
2305
+ padding: 1rem !important;
2306
+ }
2307
+
2308
+ .pt-3,
2309
+ .py-3 {
2310
+ padding-top: 1rem !important;
2311
+ }
2312
+
2313
+ .pr-3,
2314
+ .px-3 {
2315
+ padding-right: 1rem !important;
2316
+ }
2317
+
2318
+ .pb-3,
2319
+ .py-3 {
2320
+ padding-bottom: 1rem !important;
2321
+ }
2322
+
2323
+ .pl-3,
2324
+ .px-3 {
2325
+ padding-left: 1rem !important;
2326
+ }
2327
+
2328
+ .p-4 {
2329
+ padding: 1.5rem !important;
2330
+ }
2331
+
2332
+ .pt-4,
2333
+ .py-4 {
2334
+ padding-top: 1.5rem !important;
2335
+ }
2336
+
2337
+ .pr-4,
2338
+ .px-4 {
2339
+ padding-right: 1.5rem !important;
2340
+ }
2341
+
2342
+ .pb-4,
2343
+ .py-4 {
2344
+ padding-bottom: 1.5rem !important;
2345
+ }
2346
+
2347
+ .pl-4,
2348
+ .px-4 {
2349
+ padding-left: 1.5rem !important;
2350
+ }
2351
+
2352
+ .p-5 {
2353
+ padding: 3rem !important;
2354
+ }
2355
+
2356
+ .pt-5,
2357
+ .py-5 {
2358
+ padding-top: 3rem !important;
2359
+ }
2360
+
2361
+ .pr-5,
2362
+ .px-5 {
2363
+ padding-right: 3rem !important;
2364
+ }
2365
+
2366
+ .pb-5,
2367
+ .py-5 {
2368
+ padding-bottom: 3rem !important;
2369
+ }
2370
+
2371
+ .pl-5,
2372
+ .px-5 {
2373
+ padding-left: 3rem !important;
2374
+ }
2375
+
2376
+ .m-n1 {
2377
+ margin: -0.25rem !important;
2378
+ }
2379
+
2380
+ .mt-n1,
2381
+ .my-n1 {
2382
+ margin-top: -0.25rem !important;
2383
+ }
2384
+
2385
+ .mr-n1,
2386
+ .mx-n1 {
2387
+ margin-right: -0.25rem !important;
2388
+ }
2389
+
2390
+ .mb-n1,
2391
+ .my-n1 {
2392
+ margin-bottom: -0.25rem !important;
2393
+ }
2394
+
2395
+ .ml-n1,
2396
+ .mx-n1 {
2397
+ margin-left: -0.25rem !important;
2398
+ }
2399
+
2400
+ .m-n2 {
2401
+ margin: -0.5rem !important;
2402
+ }
2403
+
2404
+ .mt-n2,
2405
+ .my-n2 {
2406
+ margin-top: -0.5rem !important;
2407
+ }
2408
+
2409
+ .mr-n2,
2410
+ .mx-n2 {
2411
+ margin-right: -0.5rem !important;
2412
+ }
2413
+
2414
+ .mb-n2,
2415
+ .my-n2 {
2416
+ margin-bottom: -0.5rem !important;
2417
+ }
2418
+
2419
+ .ml-n2,
2420
+ .mx-n2 {
2421
+ margin-left: -0.5rem !important;
2422
+ }
2423
+
2424
+ .m-n3 {
2425
+ margin: -1rem !important;
2426
+ }
2427
+
2428
+ .mt-n3,
2429
+ .my-n3 {
2430
+ margin-top: -1rem !important;
2431
+ }
2432
+
2433
+ .mr-n3,
2434
+ .mx-n3 {
2435
+ margin-right: -1rem !important;
2436
+ }
2437
+
2438
+ .mb-n3,
2439
+ .my-n3 {
2440
+ margin-bottom: -1rem !important;
2441
+ }
2442
+
2443
+ .ml-n3,
2444
+ .mx-n3 {
2445
+ margin-left: -1rem !important;
2446
+ }
2447
+
2448
+ .m-n4 {
2449
+ margin: -1.5rem !important;
2450
+ }
2451
+
2452
+ .mt-n4,
2453
+ .my-n4 {
2454
+ margin-top: -1.5rem !important;
2455
+ }
2456
+
2457
+ .mr-n4,
2458
+ .mx-n4 {
2459
+ margin-right: -1.5rem !important;
2460
+ }
2461
+
2462
+ .mb-n4,
2463
+ .my-n4 {
2464
+ margin-bottom: -1.5rem !important;
2465
+ }
2466
+
2467
+ .ml-n4,
2468
+ .mx-n4 {
2469
+ margin-left: -1.5rem !important;
2470
+ }
2471
+
2472
+ .m-n5 {
2473
+ margin: -3rem !important;
2474
+ }
2475
+
2476
+ .mt-n5,
2477
+ .my-n5 {
2478
+ margin-top: -3rem !important;
2479
+ }
2480
+
2481
+ .mr-n5,
2482
+ .mx-n5 {
2483
+ margin-right: -3rem !important;
2484
+ }
2485
+
2486
+ .mb-n5,
2487
+ .my-n5 {
2488
+ margin-bottom: -3rem !important;
2489
+ }
2490
+
2491
+ .ml-n5,
2492
+ .mx-n5 {
2493
+ margin-left: -3rem !important;
2494
+ }
2495
+
2496
+ .m-auto {
2497
+ margin: auto !important;
2498
+ }
2499
+
2500
+ .mt-auto,
2501
+ .my-auto {
2502
+ margin-top: auto !important;
2503
+ }
2504
+
2505
+ .mr-auto,
2506
+ .mx-auto {
2507
+ margin-right: auto !important;
2508
+ }
2509
+
2510
+ .mb-auto,
2511
+ .my-auto {
2512
+ margin-bottom: auto !important;
2513
+ }
2514
+
2515
+ .ml-auto,
2516
+ .mx-auto {
2517
+ margin-left: auto !important;
2518
+ }
2519
+
2520
+ @media (min-width: 576px) {
2521
+ .m-sm-0 {
2522
+ margin: 0 !important;
2523
+ }
2524
+ .mt-sm-0,
2525
+ .my-sm-0 {
2526
+ margin-top: 0 !important;
2527
+ }
2528
+ .mr-sm-0,
2529
+ .mx-sm-0 {
2530
+ margin-right: 0 !important;
2531
+ }
2532
+ .mb-sm-0,
2533
+ .my-sm-0 {
2534
+ margin-bottom: 0 !important;
2535
+ }
2536
+ .ml-sm-0,
2537
+ .mx-sm-0 {
2538
+ margin-left: 0 !important;
2539
+ }
2540
+ .m-sm-1 {
2541
+ margin: 0.25rem !important;
2542
+ }
2543
+ .mt-sm-1,
2544
+ .my-sm-1 {
2545
+ margin-top: 0.25rem !important;
2546
+ }
2547
+ .mr-sm-1,
2548
+ .mx-sm-1 {
2549
+ margin-right: 0.25rem !important;
2550
+ }
2551
+ .mb-sm-1,
2552
+ .my-sm-1 {
2553
+ margin-bottom: 0.25rem !important;
2554
+ }
2555
+ .ml-sm-1,
2556
+ .mx-sm-1 {
2557
+ margin-left: 0.25rem !important;
2558
+ }
2559
+ .m-sm-2 {
2560
+ margin: 0.5rem !important;
2561
+ }
2562
+ .mt-sm-2,
2563
+ .my-sm-2 {
2564
+ margin-top: 0.5rem !important;
2565
+ }
2566
+ .mr-sm-2,
2567
+ .mx-sm-2 {
2568
+ margin-right: 0.5rem !important;
2569
+ }
2570
+ .mb-sm-2,
2571
+ .my-sm-2 {
2572
+ margin-bottom: 0.5rem !important;
2573
+ }
2574
+ .ml-sm-2,
2575
+ .mx-sm-2 {
2576
+ margin-left: 0.5rem !important;
2577
+ }
2578
+ .m-sm-3 {
2579
+ margin: 1rem !important;
2580
+ }
2581
+ .mt-sm-3,
2582
+ .my-sm-3 {
2583
+ margin-top: 1rem !important;
2584
+ }
2585
+ .mr-sm-3,
2586
+ .mx-sm-3 {
2587
+ margin-right: 1rem !important;
2588
+ }
2589
+ .mb-sm-3,
2590
+ .my-sm-3 {
2591
+ margin-bottom: 1rem !important;
2592
+ }
2593
+ .ml-sm-3,
2594
+ .mx-sm-3 {
2595
+ margin-left: 1rem !important;
2596
+ }
2597
+ .m-sm-4 {
2598
+ margin: 1.5rem !important;
2599
+ }
2600
+ .mt-sm-4,
2601
+ .my-sm-4 {
2602
+ margin-top: 1.5rem !important;
2603
+ }
2604
+ .mr-sm-4,
2605
+ .mx-sm-4 {
2606
+ margin-right: 1.5rem !important;
2607
+ }
2608
+ .mb-sm-4,
2609
+ .my-sm-4 {
2610
+ margin-bottom: 1.5rem !important;
2611
+ }
2612
+ .ml-sm-4,
2613
+ .mx-sm-4 {
2614
+ margin-left: 1.5rem !important;
2615
+ }
2616
+ .m-sm-5 {
2617
+ margin: 3rem !important;
2618
+ }
2619
+ .mt-sm-5,
2620
+ .my-sm-5 {
2621
+ margin-top: 3rem !important;
2622
+ }
2623
+ .mr-sm-5,
2624
+ .mx-sm-5 {
2625
+ margin-right: 3rem !important;
2626
+ }
2627
+ .mb-sm-5,
2628
+ .my-sm-5 {
2629
+ margin-bottom: 3rem !important;
2630
+ }
2631
+ .ml-sm-5,
2632
+ .mx-sm-5 {
2633
+ margin-left: 3rem !important;
2634
+ }
2635
+ .p-sm-0 {
2636
+ padding: 0 !important;
2637
+ }
2638
+ .pt-sm-0,
2639
+ .py-sm-0 {
2640
+ padding-top: 0 !important;
2641
+ }
2642
+ .pr-sm-0,
2643
+ .px-sm-0 {
2644
+ padding-right: 0 !important;
2645
+ }
2646
+ .pb-sm-0,
2647
+ .py-sm-0 {
2648
+ padding-bottom: 0 !important;
2649
+ }
2650
+ .pl-sm-0,
2651
+ .px-sm-0 {
2652
+ padding-left: 0 !important;
2653
+ }
2654
+ .p-sm-1 {
2655
+ padding: 0.25rem !important;
2656
+ }
2657
+ .pt-sm-1,
2658
+ .py-sm-1 {
2659
+ padding-top: 0.25rem !important;
2660
+ }
2661
+ .pr-sm-1,
2662
+ .px-sm-1 {
2663
+ padding-right: 0.25rem !important;
2664
+ }
2665
+ .pb-sm-1,
2666
+ .py-sm-1 {
2667
+ padding-bottom: 0.25rem !important;
2668
+ }
2669
+ .pl-sm-1,
2670
+ .px-sm-1 {
2671
+ padding-left: 0.25rem !important;
2672
+ }
2673
+ .p-sm-2 {
2674
+ padding: 0.5rem !important;
2675
+ }
2676
+ .pt-sm-2,
2677
+ .py-sm-2 {
2678
+ padding-top: 0.5rem !important;
2679
+ }
2680
+ .pr-sm-2,
2681
+ .px-sm-2 {
2682
+ padding-right: 0.5rem !important;
2683
+ }
2684
+ .pb-sm-2,
2685
+ .py-sm-2 {
2686
+ padding-bottom: 0.5rem !important;
2687
+ }
2688
+ .pl-sm-2,
2689
+ .px-sm-2 {
2690
+ padding-left: 0.5rem !important;
2691
+ }
2692
+ .p-sm-3 {
2693
+ padding: 1rem !important;
2694
+ }
2695
+ .pt-sm-3,
2696
+ .py-sm-3 {
2697
+ padding-top: 1rem !important;
2698
+ }
2699
+ .pr-sm-3,
2700
+ .px-sm-3 {
2701
+ padding-right: 1rem !important;
2702
+ }
2703
+ .pb-sm-3,
2704
+ .py-sm-3 {
2705
+ padding-bottom: 1rem !important;
2706
+ }
2707
+ .pl-sm-3,
2708
+ .px-sm-3 {
2709
+ padding-left: 1rem !important;
2710
+ }
2711
+ .p-sm-4 {
2712
+ padding: 1.5rem !important;
2713
+ }
2714
+ .pt-sm-4,
2715
+ .py-sm-4 {
2716
+ padding-top: 1.5rem !important;
2717
+ }
2718
+ .pr-sm-4,
2719
+ .px-sm-4 {
2720
+ padding-right: 1.5rem !important;
2721
+ }
2722
+ .pb-sm-4,
2723
+ .py-sm-4 {
2724
+ padding-bottom: 1.5rem !important;
2725
+ }
2726
+ .pl-sm-4,
2727
+ .px-sm-4 {
2728
+ padding-left: 1.5rem !important;
2729
+ }
2730
+ .p-sm-5 {
2731
+ padding: 3rem !important;
2732
+ }
2733
+ .pt-sm-5,
2734
+ .py-sm-5 {
2735
+ padding-top: 3rem !important;
2736
+ }
2737
+ .pr-sm-5,
2738
+ .px-sm-5 {
2739
+ padding-right: 3rem !important;
2740
+ }
2741
+ .pb-sm-5,
2742
+ .py-sm-5 {
2743
+ padding-bottom: 3rem !important;
2744
+ }
2745
+ .pl-sm-5,
2746
+ .px-sm-5 {
2747
+ padding-left: 3rem !important;
2748
+ }
2749
+ .m-sm-n1 {
2750
+ margin: -0.25rem !important;
2751
+ }
2752
+ .mt-sm-n1,
2753
+ .my-sm-n1 {
2754
+ margin-top: -0.25rem !important;
2755
+ }
2756
+ .mr-sm-n1,
2757
+ .mx-sm-n1 {
2758
+ margin-right: -0.25rem !important;
2759
+ }
2760
+ .mb-sm-n1,
2761
+ .my-sm-n1 {
2762
+ margin-bottom: -0.25rem !important;
2763
+ }
2764
+ .ml-sm-n1,
2765
+ .mx-sm-n1 {
2766
+ margin-left: -0.25rem !important;
2767
+ }
2768
+ .m-sm-n2 {
2769
+ margin: -0.5rem !important;
2770
+ }
2771
+ .mt-sm-n2,
2772
+ .my-sm-n2 {
2773
+ margin-top: -0.5rem !important;
2774
+ }
2775
+ .mr-sm-n2,
2776
+ .mx-sm-n2 {
2777
+ margin-right: -0.5rem !important;
2778
+ }
2779
+ .mb-sm-n2,
2780
+ .my-sm-n2 {
2781
+ margin-bottom: -0.5rem !important;
2782
+ }
2783
+ .ml-sm-n2,
2784
+ .mx-sm-n2 {
2785
+ margin-left: -0.5rem !important;
2786
+ }
2787
+ .m-sm-n3 {
2788
+ margin: -1rem !important;
2789
+ }
2790
+ .mt-sm-n3,
2791
+ .my-sm-n3 {
2792
+ margin-top: -1rem !important;
2793
+ }
2794
+ .mr-sm-n3,
2795
+ .mx-sm-n3 {
2796
+ margin-right: -1rem !important;
2797
+ }
2798
+ .mb-sm-n3,
2799
+ .my-sm-n3 {
2800
+ margin-bottom: -1rem !important;
2801
+ }
2802
+ .ml-sm-n3,
2803
+ .mx-sm-n3 {
2804
+ margin-left: -1rem !important;
2805
+ }
2806
+ .m-sm-n4 {
2807
+ margin: -1.5rem !important;
2808
+ }
2809
+ .mt-sm-n4,
2810
+ .my-sm-n4 {
2811
+ margin-top: -1.5rem !important;
2812
+ }
2813
+ .mr-sm-n4,
2814
+ .mx-sm-n4 {
2815
+ margin-right: -1.5rem !important;
2816
+ }
2817
+ .mb-sm-n4,
2818
+ .my-sm-n4 {
2819
+ margin-bottom: -1.5rem !important;
2820
+ }
2821
+ .ml-sm-n4,
2822
+ .mx-sm-n4 {
2823
+ margin-left: -1.5rem !important;
2824
+ }
2825
+ .m-sm-n5 {
2826
+ margin: -3rem !important;
2827
+ }
2828
+ .mt-sm-n5,
2829
+ .my-sm-n5 {
2830
+ margin-top: -3rem !important;
2831
+ }
2832
+ .mr-sm-n5,
2833
+ .mx-sm-n5 {
2834
+ margin-right: -3rem !important;
2835
+ }
2836
+ .mb-sm-n5,
2837
+ .my-sm-n5 {
2838
+ margin-bottom: -3rem !important;
2839
+ }
2840
+ .ml-sm-n5,
2841
+ .mx-sm-n5 {
2842
+ margin-left: -3rem !important;
2843
+ }
2844
+ .m-sm-auto {
2845
+ margin: auto !important;
2846
+ }
2847
+ .mt-sm-auto,
2848
+ .my-sm-auto {
2849
+ margin-top: auto !important;
2850
+ }
2851
+ .mr-sm-auto,
2852
+ .mx-sm-auto {
2853
+ margin-right: auto !important;
2854
+ }
2855
+ .mb-sm-auto,
2856
+ .my-sm-auto {
2857
+ margin-bottom: auto !important;
2858
+ }
2859
+ .ml-sm-auto,
2860
+ .mx-sm-auto {
2861
+ margin-left: auto !important;
2862
+ }
2863
+ }
2864
+
2865
+ @media (min-width: 768px) {
2866
+ .m-md-0 {
2867
+ margin: 0 !important;
2868
+ }
2869
+ .mt-md-0,
2870
+ .my-md-0 {
2871
+ margin-top: 0 !important;
2872
+ }
2873
+ .mr-md-0,
2874
+ .mx-md-0 {
2875
+ margin-right: 0 !important;
2876
+ }
2877
+ .mb-md-0,
2878
+ .my-md-0 {
2879
+ margin-bottom: 0 !important;
2880
+ }
2881
+ .ml-md-0,
2882
+ .mx-md-0 {
2883
+ margin-left: 0 !important;
2884
+ }
2885
+ .m-md-1 {
2886
+ margin: 0.25rem !important;
2887
+ }
2888
+ .mt-md-1,
2889
+ .my-md-1 {
2890
+ margin-top: 0.25rem !important;
2891
+ }
2892
+ .mr-md-1,
2893
+ .mx-md-1 {
2894
+ margin-right: 0.25rem !important;
2895
+ }
2896
+ .mb-md-1,
2897
+ .my-md-1 {
2898
+ margin-bottom: 0.25rem !important;
2899
+ }
2900
+ .ml-md-1,
2901
+ .mx-md-1 {
2902
+ margin-left: 0.25rem !important;
2903
+ }
2904
+ .m-md-2 {
2905
+ margin: 0.5rem !important;
2906
+ }
2907
+ .mt-md-2,
2908
+ .my-md-2 {
2909
+ margin-top: 0.5rem !important;
2910
+ }
2911
+ .mr-md-2,
2912
+ .mx-md-2 {
2913
+ margin-right: 0.5rem !important;
2914
+ }
2915
+ .mb-md-2,
2916
+ .my-md-2 {
2917
+ margin-bottom: 0.5rem !important;
2918
+ }
2919
+ .ml-md-2,
2920
+ .mx-md-2 {
2921
+ margin-left: 0.5rem !important;
2922
+ }
2923
+ .m-md-3 {
2924
+ margin: 1rem !important;
2925
+ }
2926
+ .mt-md-3,
2927
+ .my-md-3 {
2928
+ margin-top: 1rem !important;
2929
+ }
2930
+ .mr-md-3,
2931
+ .mx-md-3 {
2932
+ margin-right: 1rem !important;
2933
+ }
2934
+ .mb-md-3,
2935
+ .my-md-3 {
2936
+ margin-bottom: 1rem !important;
2937
+ }
2938
+ .ml-md-3,
2939
+ .mx-md-3 {
2940
+ margin-left: 1rem !important;
2941
+ }
2942
+ .m-md-4 {
2943
+ margin: 1.5rem !important;
2944
+ }
2945
+ .mt-md-4,
2946
+ .my-md-4 {
2947
+ margin-top: 1.5rem !important;
2948
+ }
2949
+ .mr-md-4,
2950
+ .mx-md-4 {
2951
+ margin-right: 1.5rem !important;
2952
+ }
2953
+ .mb-md-4,
2954
+ .my-md-4 {
2955
+ margin-bottom: 1.5rem !important;
2956
+ }
2957
+ .ml-md-4,
2958
+ .mx-md-4 {
2959
+ margin-left: 1.5rem !important;
2960
+ }
2961
+ .m-md-5 {
2962
+ margin: 3rem !important;
2963
+ }
2964
+ .mt-md-5,
2965
+ .my-md-5 {
2966
+ margin-top: 3rem !important;
2967
+ }
2968
+ .mr-md-5,
2969
+ .mx-md-5 {
2970
+ margin-right: 3rem !important;
2971
+ }
2972
+ .mb-md-5,
2973
+ .my-md-5 {
2974
+ margin-bottom: 3rem !important;
2975
+ }
2976
+ .ml-md-5,
2977
+ .mx-md-5 {
2978
+ margin-left: 3rem !important;
2979
+ }
2980
+ .p-md-0 {
2981
+ padding: 0 !important;
2982
+ }
2983
+ .pt-md-0,
2984
+ .py-md-0 {
2985
+ padding-top: 0 !important;
2986
+ }
2987
+ .pr-md-0,
2988
+ .px-md-0 {
2989
+ padding-right: 0 !important;
2990
+ }
2991
+ .pb-md-0,
2992
+ .py-md-0 {
2993
+ padding-bottom: 0 !important;
2994
+ }
2995
+ .pl-md-0,
2996
+ .px-md-0 {
2997
+ padding-left: 0 !important;
2998
+ }
2999
+ .p-md-1 {
3000
+ padding: 0.25rem !important;
3001
+ }
3002
+ .pt-md-1,
3003
+ .py-md-1 {
3004
+ padding-top: 0.25rem !important;
3005
+ }
3006
+ .pr-md-1,
3007
+ .px-md-1 {
3008
+ padding-right: 0.25rem !important;
3009
+ }
3010
+ .pb-md-1,
3011
+ .py-md-1 {
3012
+ padding-bottom: 0.25rem !important;
3013
+ }
3014
+ .pl-md-1,
3015
+ .px-md-1 {
3016
+ padding-left: 0.25rem !important;
3017
+ }
3018
+ .p-md-2 {
3019
+ padding: 0.5rem !important;
3020
+ }
3021
+ .pt-md-2,
3022
+ .py-md-2 {
3023
+ padding-top: 0.5rem !important;
3024
+ }
3025
+ .pr-md-2,
3026
+ .px-md-2 {
3027
+ padding-right: 0.5rem !important;
3028
+ }
3029
+ .pb-md-2,
3030
+ .py-md-2 {
3031
+ padding-bottom: 0.5rem !important;
3032
+ }
3033
+ .pl-md-2,
3034
+ .px-md-2 {
3035
+ padding-left: 0.5rem !important;
3036
+ }
3037
+ .p-md-3 {
3038
+ padding: 1rem !important;
3039
+ }
3040
+ .pt-md-3,
3041
+ .py-md-3 {
3042
+ padding-top: 1rem !important;
3043
+ }
3044
+ .pr-md-3,
3045
+ .px-md-3 {
3046
+ padding-right: 1rem !important;
3047
+ }
3048
+ .pb-md-3,
3049
+ .py-md-3 {
3050
+ padding-bottom: 1rem !important;
3051
+ }
3052
+ .pl-md-3,
3053
+ .px-md-3 {
3054
+ padding-left: 1rem !important;
3055
+ }
3056
+ .p-md-4 {
3057
+ padding: 1.5rem !important;
3058
+ }
3059
+ .pt-md-4,
3060
+ .py-md-4 {
3061
+ padding-top: 1.5rem !important;
3062
+ }
3063
+ .pr-md-4,
3064
+ .px-md-4 {
3065
+ padding-right: 1.5rem !important;
3066
+ }
3067
+ .pb-md-4,
3068
+ .py-md-4 {
3069
+ padding-bottom: 1.5rem !important;
3070
+ }
3071
+ .pl-md-4,
3072
+ .px-md-4 {
3073
+ padding-left: 1.5rem !important;
3074
+ }
3075
+ .p-md-5 {
3076
+ padding: 3rem !important;
3077
+ }
3078
+ .pt-md-5,
3079
+ .py-md-5 {
3080
+ padding-top: 3rem !important;
3081
+ }
3082
+ .pr-md-5,
3083
+ .px-md-5 {
3084
+ padding-right: 3rem !important;
3085
+ }
3086
+ .pb-md-5,
3087
+ .py-md-5 {
3088
+ padding-bottom: 3rem !important;
3089
+ }
3090
+ .pl-md-5,
3091
+ .px-md-5 {
3092
+ padding-left: 3rem !important;
3093
+ }
3094
+ .m-md-n1 {
3095
+ margin: -0.25rem !important;
3096
+ }
3097
+ .mt-md-n1,
3098
+ .my-md-n1 {
3099
+ margin-top: -0.25rem !important;
3100
+ }
3101
+ .mr-md-n1,
3102
+ .mx-md-n1 {
3103
+ margin-right: -0.25rem !important;
3104
+ }
3105
+ .mb-md-n1,
3106
+ .my-md-n1 {
3107
+ margin-bottom: -0.25rem !important;
3108
+ }
3109
+ .ml-md-n1,
3110
+ .mx-md-n1 {
3111
+ margin-left: -0.25rem !important;
3112
+ }
3113
+ .m-md-n2 {
3114
+ margin: -0.5rem !important;
3115
+ }
3116
+ .mt-md-n2,
3117
+ .my-md-n2 {
3118
+ margin-top: -0.5rem !important;
3119
+ }
3120
+ .mr-md-n2,
3121
+ .mx-md-n2 {
3122
+ margin-right: -0.5rem !important;
3123
+ }
3124
+ .mb-md-n2,
3125
+ .my-md-n2 {
3126
+ margin-bottom: -0.5rem !important;
3127
+ }
3128
+ .ml-md-n2,
3129
+ .mx-md-n2 {
3130
+ margin-left: -0.5rem !important;
3131
+ }
3132
+ .m-md-n3 {
3133
+ margin: -1rem !important;
3134
+ }
3135
+ .mt-md-n3,
3136
+ .my-md-n3 {
3137
+ margin-top: -1rem !important;
3138
+ }
3139
+ .mr-md-n3,
3140
+ .mx-md-n3 {
3141
+ margin-right: -1rem !important;
3142
+ }
3143
+ .mb-md-n3,
3144
+ .my-md-n3 {
3145
+ margin-bottom: -1rem !important;
3146
+ }
3147
+ .ml-md-n3,
3148
+ .mx-md-n3 {
3149
+ margin-left: -1rem !important;
3150
+ }
3151
+ .m-md-n4 {
3152
+ margin: -1.5rem !important;
3153
+ }
3154
+ .mt-md-n4,
3155
+ .my-md-n4 {
3156
+ margin-top: -1.5rem !important;
3157
+ }
3158
+ .mr-md-n4,
3159
+ .mx-md-n4 {
3160
+ margin-right: -1.5rem !important;
3161
+ }
3162
+ .mb-md-n4,
3163
+ .my-md-n4 {
3164
+ margin-bottom: -1.5rem !important;
3165
+ }
3166
+ .ml-md-n4,
3167
+ .mx-md-n4 {
3168
+ margin-left: -1.5rem !important;
3169
+ }
3170
+ .m-md-n5 {
3171
+ margin: -3rem !important;
3172
+ }
3173
+ .mt-md-n5,
3174
+ .my-md-n5 {
3175
+ margin-top: -3rem !important;
3176
+ }
3177
+ .mr-md-n5,
3178
+ .mx-md-n5 {
3179
+ margin-right: -3rem !important;
3180
+ }
3181
+ .mb-md-n5,
3182
+ .my-md-n5 {
3183
+ margin-bottom: -3rem !important;
3184
+ }
3185
+ .ml-md-n5,
3186
+ .mx-md-n5 {
3187
+ margin-left: -3rem !important;
3188
+ }
3189
+ .m-md-auto {
3190
+ margin: auto !important;
3191
+ }
3192
+ .mt-md-auto,
3193
+ .my-md-auto {
3194
+ margin-top: auto !important;
3195
+ }
3196
+ .mr-md-auto,
3197
+ .mx-md-auto {
3198
+ margin-right: auto !important;
3199
+ }
3200
+ .mb-md-auto,
3201
+ .my-md-auto {
3202
+ margin-bottom: auto !important;
3203
+ }
3204
+ .ml-md-auto,
3205
+ .mx-md-auto {
3206
+ margin-left: auto !important;
3207
+ }
3208
+ }
3209
+
3210
+ @media (min-width: 992px) {
3211
+ .m-lg-0 {
3212
+ margin: 0 !important;
3213
+ }
3214
+ .mt-lg-0,
3215
+ .my-lg-0 {
3216
+ margin-top: 0 !important;
3217
+ }
3218
+ .mr-lg-0,
3219
+ .mx-lg-0 {
3220
+ margin-right: 0 !important;
3221
+ }
3222
+ .mb-lg-0,
3223
+ .my-lg-0 {
3224
+ margin-bottom: 0 !important;
3225
+ }
3226
+ .ml-lg-0,
3227
+ .mx-lg-0 {
3228
+ margin-left: 0 !important;
3229
+ }
3230
+ .m-lg-1 {
3231
+ margin: 0.25rem !important;
3232
+ }
3233
+ .mt-lg-1,
3234
+ .my-lg-1 {
3235
+ margin-top: 0.25rem !important;
3236
+ }
3237
+ .mr-lg-1,
3238
+ .mx-lg-1 {
3239
+ margin-right: 0.25rem !important;
3240
+ }
3241
+ .mb-lg-1,
3242
+ .my-lg-1 {
3243
+ margin-bottom: 0.25rem !important;
3244
+ }
3245
+ .ml-lg-1,
3246
+ .mx-lg-1 {
3247
+ margin-left: 0.25rem !important;
3248
+ }
3249
+ .m-lg-2 {
3250
+ margin: 0.5rem !important;
3251
+ }
3252
+ .mt-lg-2,
3253
+ .my-lg-2 {
3254
+ margin-top: 0.5rem !important;
3255
+ }
3256
+ .mr-lg-2,
3257
+ .mx-lg-2 {
3258
+ margin-right: 0.5rem !important;
3259
+ }
3260
+ .mb-lg-2,
3261
+ .my-lg-2 {
3262
+ margin-bottom: 0.5rem !important;
3263
+ }
3264
+ .ml-lg-2,
3265
+ .mx-lg-2 {
3266
+ margin-left: 0.5rem !important;
3267
+ }
3268
+ .m-lg-3 {
3269
+ margin: 1rem !important;
3270
+ }
3271
+ .mt-lg-3,
3272
+ .my-lg-3 {
3273
+ margin-top: 1rem !important;
3274
+ }
3275
+ .mr-lg-3,
3276
+ .mx-lg-3 {
3277
+ margin-right: 1rem !important;
3278
+ }
3279
+ .mb-lg-3,
3280
+ .my-lg-3 {
3281
+ margin-bottom: 1rem !important;
3282
+ }
3283
+ .ml-lg-3,
3284
+ .mx-lg-3 {
3285
+ margin-left: 1rem !important;
3286
+ }
3287
+ .m-lg-4 {
3288
+ margin: 1.5rem !important;
3289
+ }
3290
+ .mt-lg-4,
3291
+ .my-lg-4 {
3292
+ margin-top: 1.5rem !important;
3293
+ }
3294
+ .mr-lg-4,
3295
+ .mx-lg-4 {
3296
+ margin-right: 1.5rem !important;
3297
+ }
3298
+ .mb-lg-4,
3299
+ .my-lg-4 {
3300
+ margin-bottom: 1.5rem !important;
3301
+ }
3302
+ .ml-lg-4,
3303
+ .mx-lg-4 {
3304
+ margin-left: 1.5rem !important;
3305
+ }
3306
+ .m-lg-5 {
3307
+ margin: 3rem !important;
3308
+ }
3309
+ .mt-lg-5,
3310
+ .my-lg-5 {
3311
+ margin-top: 3rem !important;
3312
+ }
3313
+ .mr-lg-5,
3314
+ .mx-lg-5 {
3315
+ margin-right: 3rem !important;
3316
+ }
3317
+ .mb-lg-5,
3318
+ .my-lg-5 {
3319
+ margin-bottom: 3rem !important;
3320
+ }
3321
+ .ml-lg-5,
3322
+ .mx-lg-5 {
3323
+ margin-left: 3rem !important;
3324
+ }
3325
+ .p-lg-0 {
3326
+ padding: 0 !important;
3327
+ }
3328
+ .pt-lg-0,
3329
+ .py-lg-0 {
3330
+ padding-top: 0 !important;
3331
+ }
3332
+ .pr-lg-0,
3333
+ .px-lg-0 {
3334
+ padding-right: 0 !important;
3335
+ }
3336
+ .pb-lg-0,
3337
+ .py-lg-0 {
3338
+ padding-bottom: 0 !important;
3339
+ }
3340
+ .pl-lg-0,
3341
+ .px-lg-0 {
3342
+ padding-left: 0 !important;
3343
+ }
3344
+ .p-lg-1 {
3345
+ padding: 0.25rem !important;
3346
+ }
3347
+ .pt-lg-1,
3348
+ .py-lg-1 {
3349
+ padding-top: 0.25rem !important;
3350
+ }
3351
+ .pr-lg-1,
3352
+ .px-lg-1 {
3353
+ padding-right: 0.25rem !important;
3354
+ }
3355
+ .pb-lg-1,
3356
+ .py-lg-1 {
3357
+ padding-bottom: 0.25rem !important;
3358
+ }
3359
+ .pl-lg-1,
3360
+ .px-lg-1 {
3361
+ padding-left: 0.25rem !important;
3362
+ }
3363
+ .p-lg-2 {
3364
+ padding: 0.5rem !important;
3365
+ }
3366
+ .pt-lg-2,
3367
+ .py-lg-2 {
3368
+ padding-top: 0.5rem !important;
3369
+ }
3370
+ .pr-lg-2,
3371
+ .px-lg-2 {
3372
+ padding-right: 0.5rem !important;
3373
+ }
3374
+ .pb-lg-2,
3375
+ .py-lg-2 {
3376
+ padding-bottom: 0.5rem !important;
3377
+ }
3378
+ .pl-lg-2,
3379
+ .px-lg-2 {
3380
+ padding-left: 0.5rem !important;
3381
+ }
3382
+ .p-lg-3 {
3383
+ padding: 1rem !important;
3384
+ }
3385
+ .pt-lg-3,
3386
+ .py-lg-3 {
3387
+ padding-top: 1rem !important;
3388
+ }
3389
+ .pr-lg-3,
3390
+ .px-lg-3 {
3391
+ padding-right: 1rem !important;
3392
+ }
3393
+ .pb-lg-3,
3394
+ .py-lg-3 {
3395
+ padding-bottom: 1rem !important;
3396
+ }
3397
+ .pl-lg-3,
3398
+ .px-lg-3 {
3399
+ padding-left: 1rem !important;
3400
+ }
3401
+ .p-lg-4 {
3402
+ padding: 1.5rem !important;
3403
+ }
3404
+ .pt-lg-4,
3405
+ .py-lg-4 {
3406
+ padding-top: 1.5rem !important;
3407
+ }
3408
+ .pr-lg-4,
3409
+ .px-lg-4 {
3410
+ padding-right: 1.5rem !important;
3411
+ }
3412
+ .pb-lg-4,
3413
+ .py-lg-4 {
3414
+ padding-bottom: 1.5rem !important;
3415
+ }
3416
+ .pl-lg-4,
3417
+ .px-lg-4 {
3418
+ padding-left: 1.5rem !important;
3419
+ }
3420
+ .p-lg-5 {
3421
+ padding: 3rem !important;
3422
+ }
3423
+ .pt-lg-5,
3424
+ .py-lg-5 {
3425
+ padding-top: 3rem !important;
3426
+ }
3427
+ .pr-lg-5,
3428
+ .px-lg-5 {
3429
+ padding-right: 3rem !important;
3430
+ }
3431
+ .pb-lg-5,
3432
+ .py-lg-5 {
3433
+ padding-bottom: 3rem !important;
3434
+ }
3435
+ .pl-lg-5,
3436
+ .px-lg-5 {
3437
+ padding-left: 3rem !important;
3438
+ }
3439
+ .m-lg-n1 {
3440
+ margin: -0.25rem !important;
3441
+ }
3442
+ .mt-lg-n1,
3443
+ .my-lg-n1 {
3444
+ margin-top: -0.25rem !important;
3445
+ }
3446
+ .mr-lg-n1,
3447
+ .mx-lg-n1 {
3448
+ margin-right: -0.25rem !important;
3449
+ }
3450
+ .mb-lg-n1,
3451
+ .my-lg-n1 {
3452
+ margin-bottom: -0.25rem !important;
3453
+ }
3454
+ .ml-lg-n1,
3455
+ .mx-lg-n1 {
3456
+ margin-left: -0.25rem !important;
3457
+ }
3458
+ .m-lg-n2 {
3459
+ margin: -0.5rem !important;
3460
+ }
3461
+ .mt-lg-n2,
3462
+ .my-lg-n2 {
3463
+ margin-top: -0.5rem !important;
3464
+ }
3465
+ .mr-lg-n2,
3466
+ .mx-lg-n2 {
3467
+ margin-right: -0.5rem !important;
3468
+ }
3469
+ .mb-lg-n2,
3470
+ .my-lg-n2 {
3471
+ margin-bottom: -0.5rem !important;
3472
+ }
3473
+ .ml-lg-n2,
3474
+ .mx-lg-n2 {
3475
+ margin-left: -0.5rem !important;
3476
+ }
3477
+ .m-lg-n3 {
3478
+ margin: -1rem !important;
3479
+ }
3480
+ .mt-lg-n3,
3481
+ .my-lg-n3 {
3482
+ margin-top: -1rem !important;
3483
+ }
3484
+ .mr-lg-n3,
3485
+ .mx-lg-n3 {
3486
+ margin-right: -1rem !important;
3487
+ }
3488
+ .mb-lg-n3,
3489
+ .my-lg-n3 {
3490
+ margin-bottom: -1rem !important;
3491
+ }
3492
+ .ml-lg-n3,
3493
+ .mx-lg-n3 {
3494
+ margin-left: -1rem !important;
3495
+ }
3496
+ .m-lg-n4 {
3497
+ margin: -1.5rem !important;
3498
+ }
3499
+ .mt-lg-n4,
3500
+ .my-lg-n4 {
3501
+ margin-top: -1.5rem !important;
3502
+ }
3503
+ .mr-lg-n4,
3504
+ .mx-lg-n4 {
3505
+ margin-right: -1.5rem !important;
3506
+ }
3507
+ .mb-lg-n4,
3508
+ .my-lg-n4 {
3509
+ margin-bottom: -1.5rem !important;
3510
+ }
3511
+ .ml-lg-n4,
3512
+ .mx-lg-n4 {
3513
+ margin-left: -1.5rem !important;
3514
+ }
3515
+ .m-lg-n5 {
3516
+ margin: -3rem !important;
3517
+ }
3518
+ .mt-lg-n5,
3519
+ .my-lg-n5 {
3520
+ margin-top: -3rem !important;
3521
+ }
3522
+ .mr-lg-n5,
3523
+ .mx-lg-n5 {
3524
+ margin-right: -3rem !important;
3525
+ }
3526
+ .mb-lg-n5,
3527
+ .my-lg-n5 {
3528
+ margin-bottom: -3rem !important;
3529
+ }
3530
+ .ml-lg-n5,
3531
+ .mx-lg-n5 {
3532
+ margin-left: -3rem !important;
3533
+ }
3534
+ .m-lg-auto {
3535
+ margin: auto !important;
3536
+ }
3537
+ .mt-lg-auto,
3538
+ .my-lg-auto {
3539
+ margin-top: auto !important;
3540
+ }
3541
+ .mr-lg-auto,
3542
+ .mx-lg-auto {
3543
+ margin-right: auto !important;
3544
+ }
3545
+ .mb-lg-auto,
3546
+ .my-lg-auto {
3547
+ margin-bottom: auto !important;
3548
+ }
3549
+ .ml-lg-auto,
3550
+ .mx-lg-auto {
3551
+ margin-left: auto !important;
3552
+ }
3553
+ }
3554
+
3555
+ @media (min-width: 1200px) {
3556
+ .m-xl-0 {
3557
+ margin: 0 !important;
3558
+ }
3559
+ .mt-xl-0,
3560
+ .my-xl-0 {
3561
+ margin-top: 0 !important;
3562
+ }
3563
+ .mr-xl-0,
3564
+ .mx-xl-0 {
3565
+ margin-right: 0 !important;
3566
+ }
3567
+ .mb-xl-0,
3568
+ .my-xl-0 {
3569
+ margin-bottom: 0 !important;
3570
+ }
3571
+ .ml-xl-0,
3572
+ .mx-xl-0 {
3573
+ margin-left: 0 !important;
3574
+ }
3575
+ .m-xl-1 {
3576
+ margin: 0.25rem !important;
3577
+ }
3578
+ .mt-xl-1,
3579
+ .my-xl-1 {
3580
+ margin-top: 0.25rem !important;
3581
+ }
3582
+ .mr-xl-1,
3583
+ .mx-xl-1 {
3584
+ margin-right: 0.25rem !important;
3585
+ }
3586
+ .mb-xl-1,
3587
+ .my-xl-1 {
3588
+ margin-bottom: 0.25rem !important;
3589
+ }
3590
+ .ml-xl-1,
3591
+ .mx-xl-1 {
3592
+ margin-left: 0.25rem !important;
3593
+ }
3594
+ .m-xl-2 {
3595
+ margin: 0.5rem !important;
3596
+ }
3597
+ .mt-xl-2,
3598
+ .my-xl-2 {
3599
+ margin-top: 0.5rem !important;
3600
+ }
3601
+ .mr-xl-2,
3602
+ .mx-xl-2 {
3603
+ margin-right: 0.5rem !important;
3604
+ }
3605
+ .mb-xl-2,
3606
+ .my-xl-2 {
3607
+ margin-bottom: 0.5rem !important;
3608
+ }
3609
+ .ml-xl-2,
3610
+ .mx-xl-2 {
3611
+ margin-left: 0.5rem !important;
3612
+ }
3613
+ .m-xl-3 {
3614
+ margin: 1rem !important;
3615
+ }
3616
+ .mt-xl-3,
3617
+ .my-xl-3 {
3618
+ margin-top: 1rem !important;
3619
+ }
3620
+ .mr-xl-3,
3621
+ .mx-xl-3 {
3622
+ margin-right: 1rem !important;
3623
+ }
3624
+ .mb-xl-3,
3625
+ .my-xl-3 {
3626
+ margin-bottom: 1rem !important;
3627
+ }
3628
+ .ml-xl-3,
3629
+ .mx-xl-3 {
3630
+ margin-left: 1rem !important;
3631
+ }
3632
+ .m-xl-4 {
3633
+ margin: 1.5rem !important;
3634
+ }
3635
+ .mt-xl-4,
3636
+ .my-xl-4 {
3637
+ margin-top: 1.5rem !important;
3638
+ }
3639
+ .mr-xl-4,
3640
+ .mx-xl-4 {
3641
+ margin-right: 1.5rem !important;
3642
+ }
3643
+ .mb-xl-4,
3644
+ .my-xl-4 {
3645
+ margin-bottom: 1.5rem !important;
3646
+ }
3647
+ .ml-xl-4,
3648
+ .mx-xl-4 {
3649
+ margin-left: 1.5rem !important;
3650
+ }
3651
+ .m-xl-5 {
3652
+ margin: 3rem !important;
3653
+ }
3654
+ .mt-xl-5,
3655
+ .my-xl-5 {
3656
+ margin-top: 3rem !important;
3657
+ }
3658
+ .mr-xl-5,
3659
+ .mx-xl-5 {
3660
+ margin-right: 3rem !important;
3661
+ }
3662
+ .mb-xl-5,
3663
+ .my-xl-5 {
3664
+ margin-bottom: 3rem !important;
3665
+ }
3666
+ .ml-xl-5,
3667
+ .mx-xl-5 {
3668
+ margin-left: 3rem !important;
3669
+ }
3670
+ .p-xl-0 {
3671
+ padding: 0 !important;
3672
+ }
3673
+ .pt-xl-0,
3674
+ .py-xl-0 {
3675
+ padding-top: 0 !important;
3676
+ }
3677
+ .pr-xl-0,
3678
+ .px-xl-0 {
3679
+ padding-right: 0 !important;
3680
+ }
3681
+ .pb-xl-0,
3682
+ .py-xl-0 {
3683
+ padding-bottom: 0 !important;
3684
+ }
3685
+ .pl-xl-0,
3686
+ .px-xl-0 {
3687
+ padding-left: 0 !important;
3688
+ }
3689
+ .p-xl-1 {
3690
+ padding: 0.25rem !important;
3691
+ }
3692
+ .pt-xl-1,
3693
+ .py-xl-1 {
3694
+ padding-top: 0.25rem !important;
3695
+ }
3696
+ .pr-xl-1,
3697
+ .px-xl-1 {
3698
+ padding-right: 0.25rem !important;
3699
+ }
3700
+ .pb-xl-1,
3701
+ .py-xl-1 {
3702
+ padding-bottom: 0.25rem !important;
3703
+ }
3704
+ .pl-xl-1,
3705
+ .px-xl-1 {
3706
+ padding-left: 0.25rem !important;
3707
+ }
3708
+ .p-xl-2 {
3709
+ padding: 0.5rem !important;
3710
+ }
3711
+ .pt-xl-2,
3712
+ .py-xl-2 {
3713
+ padding-top: 0.5rem !important;
3714
+ }
3715
+ .pr-xl-2,
3716
+ .px-xl-2 {
3717
+ padding-right: 0.5rem !important;
3718
+ }
3719
+ .pb-xl-2,
3720
+ .py-xl-2 {
3721
+ padding-bottom: 0.5rem !important;
3722
+ }
3723
+ .pl-xl-2,
3724
+ .px-xl-2 {
3725
+ padding-left: 0.5rem !important;
3726
+ }
3727
+ .p-xl-3 {
3728
+ padding: 1rem !important;
3729
+ }
3730
+ .pt-xl-3,
3731
+ .py-xl-3 {
3732
+ padding-top: 1rem !important;
3733
+ }
3734
+ .pr-xl-3,
3735
+ .px-xl-3 {
3736
+ padding-right: 1rem !important;
3737
+ }
3738
+ .pb-xl-3,
3739
+ .py-xl-3 {
3740
+ padding-bottom: 1rem !important;
3741
+ }
3742
+ .pl-xl-3,
3743
+ .px-xl-3 {
3744
+ padding-left: 1rem !important;
3745
+ }
3746
+ .p-xl-4 {
3747
+ padding: 1.5rem !important;
3748
+ }
3749
+ .pt-xl-4,
3750
+ .py-xl-4 {
3751
+ padding-top: 1.5rem !important;
3752
+ }
3753
+ .pr-xl-4,
3754
+ .px-xl-4 {
3755
+ padding-right: 1.5rem !important;
3756
+ }
3757
+ .pb-xl-4,
3758
+ .py-xl-4 {
3759
+ padding-bottom: 1.5rem !important;
3760
+ }
3761
+ .pl-xl-4,
3762
+ .px-xl-4 {
3763
+ padding-left: 1.5rem !important;
3764
+ }
3765
+ .p-xl-5 {
3766
+ padding: 3rem !important;
3767
+ }
3768
+ .pt-xl-5,
3769
+ .py-xl-5 {
3770
+ padding-top: 3rem !important;
3771
+ }
3772
+ .pr-xl-5,
3773
+ .px-xl-5 {
3774
+ padding-right: 3rem !important;
3775
+ }
3776
+ .pb-xl-5,
3777
+ .py-xl-5 {
3778
+ padding-bottom: 3rem !important;
3779
+ }
3780
+ .pl-xl-5,
3781
+ .px-xl-5 {
3782
+ padding-left: 3rem !important;
3783
+ }
3784
+ .m-xl-n1 {
3785
+ margin: -0.25rem !important;
3786
+ }
3787
+ .mt-xl-n1,
3788
+ .my-xl-n1 {
3789
+ margin-top: -0.25rem !important;
3790
+ }
3791
+ .mr-xl-n1,
3792
+ .mx-xl-n1 {
3793
+ margin-right: -0.25rem !important;
3794
+ }
3795
+ .mb-xl-n1,
3796
+ .my-xl-n1 {
3797
+ margin-bottom: -0.25rem !important;
3798
+ }
3799
+ .ml-xl-n1,
3800
+ .mx-xl-n1 {
3801
+ margin-left: -0.25rem !important;
3802
+ }
3803
+ .m-xl-n2 {
3804
+ margin: -0.5rem !important;
3805
+ }
3806
+ .mt-xl-n2,
3807
+ .my-xl-n2 {
3808
+ margin-top: -0.5rem !important;
3809
+ }
3810
+ .mr-xl-n2,
3811
+ .mx-xl-n2 {
3812
+ margin-right: -0.5rem !important;
3813
+ }
3814
+ .mb-xl-n2,
3815
+ .my-xl-n2 {
3816
+ margin-bottom: -0.5rem !important;
3817
+ }
3818
+ .ml-xl-n2,
3819
+ .mx-xl-n2 {
3820
+ margin-left: -0.5rem !important;
3821
+ }
3822
+ .m-xl-n3 {
3823
+ margin: -1rem !important;
3824
+ }
3825
+ .mt-xl-n3,
3826
+ .my-xl-n3 {
3827
+ margin-top: -1rem !important;
3828
+ }
3829
+ .mr-xl-n3,
3830
+ .mx-xl-n3 {
3831
+ margin-right: -1rem !important;
3832
+ }
3833
+ .mb-xl-n3,
3834
+ .my-xl-n3 {
3835
+ margin-bottom: -1rem !important;
3836
+ }
3837
+ .ml-xl-n3,
3838
+ .mx-xl-n3 {
3839
+ margin-left: -1rem !important;
3840
+ }
3841
+ .m-xl-n4 {
3842
+ margin: -1.5rem !important;
3843
+ }
3844
+ .mt-xl-n4,
3845
+ .my-xl-n4 {
3846
+ margin-top: -1.5rem !important;
3847
+ }
3848
+ .mr-xl-n4,
3849
+ .mx-xl-n4 {
3850
+ margin-right: -1.5rem !important;
3851
+ }
3852
+ .mb-xl-n4,
3853
+ .my-xl-n4 {
3854
+ margin-bottom: -1.5rem !important;
3855
+ }
3856
+ .ml-xl-n4,
3857
+ .mx-xl-n4 {
3858
+ margin-left: -1.5rem !important;
3859
+ }
3860
+ .m-xl-n5 {
3861
+ margin: -3rem !important;
3862
+ }
3863
+ .mt-xl-n5,
3864
+ .my-xl-n5 {
3865
+ margin-top: -3rem !important;
3866
+ }
3867
+ .mr-xl-n5,
3868
+ .mx-xl-n5 {
3869
+ margin-right: -3rem !important;
3870
+ }
3871
+ .mb-xl-n5,
3872
+ .my-xl-n5 {
3873
+ margin-bottom: -3rem !important;
3874
+ }
3875
+ .ml-xl-n5,
3876
+ .mx-xl-n5 {
3877
+ margin-left: -3rem !important;
3878
+ }
3879
+ .m-xl-auto {
3880
+ margin: auto !important;
3881
+ }
3882
+ .mt-xl-auto,
3883
+ .my-xl-auto {
3884
+ margin-top: auto !important;
3885
+ }
3886
+ .mr-xl-auto,
3887
+ .mx-xl-auto {
3888
+ margin-right: auto !important;
3889
+ }
3890
+ .mb-xl-auto,
3891
+ .my-xl-auto {
3892
+ margin-bottom: auto !important;
3893
+ }
3894
+ .ml-xl-auto,
3895
+ .mx-xl-auto {
3896
+ margin-left: auto !important;
3897
+ }
3898
+ }
3899
+ /*# sourceMappingURL=bootstrap-grid.css.map */