@alfalab/core-components-universal-modal 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (718) hide show
  1. package/Component.responsive.d.ts +15 -0
  2. package/Component.responsive.js +44 -0
  3. package/Context.d.ts +4 -0
  4. package/Context.js +9 -0
  5. package/ResponsiveContext.d.ts +4 -0
  6. package/ResponsiveContext.js +9 -0
  7. package/components/content/base-content/base-content.d.ts +17 -0
  8. package/components/content/base-content/base-content.js +28 -0
  9. package/components/content/base-content/index.css +44 -0
  10. package/components/content/desktop/Component.desktop.d.ts +10 -0
  11. package/components/content/desktop/Component.desktop.js +20 -0
  12. package/components/content/index.d.ts +7 -0
  13. package/components/content/index.js +13 -0
  14. package/components/content/mobile/Component.mobile.d.ts +5 -0
  15. package/components/content/mobile/Component.mobile.js +23 -0
  16. package/components/content/mobile/mobile.css +38 -0
  17. package/components/content/responsive/Component.responsive.d.ts +6 -0
  18. package/components/content/responsive/Component.responsive.js +24 -0
  19. package/components/footer/base-footer/base-footer.d.ts +29 -0
  20. package/components/footer/base-footer/base-footer.js +34 -0
  21. package/components/footer/base-footer/index.css +48 -0
  22. package/components/footer/desktop/Component.desktop.d.ts +10 -0
  23. package/components/footer/desktop/Component.desktop.js +34 -0
  24. package/components/footer/desktop/desktop.css +30 -0
  25. package/components/footer/desktop/layout.css +58 -0
  26. package/components/footer/index.d.ts +7 -0
  27. package/components/footer/index.js +13 -0
  28. package/components/footer/mobile/Component.mobile.d.ts +5 -0
  29. package/components/footer/mobile/Component.mobile.js +31 -0
  30. package/components/footer/mobile/layout.mobile.css +50 -0
  31. package/components/footer/mobile/mobile.css +34 -0
  32. package/components/footer/responsive/Component.responsive.d.ts +6 -0
  33. package/components/footer/responsive/Component.responsive.js +24 -0
  34. package/components/header/base-header/index.css +72 -0
  35. package/components/header/desktop/Component.desktop.d.ts +11 -0
  36. package/components/header/desktop/Component.desktop.js +44 -0
  37. package/components/header/desktop/desktop.css +57 -0
  38. package/components/header/index.d.ts +7 -0
  39. package/components/header/index.js +13 -0
  40. package/components/header/mobile/Component.mobile.d.ts +5 -0
  41. package/components/header/mobile/Component.mobile.js +38 -0
  42. package/components/header/mobile/mobile.css +59 -0
  43. package/components/header/responsive/Component.responsive.d.ts +6 -0
  44. package/components/header/responsive/Component.responsive.js +24 -0
  45. package/cssm/Component.responsive.d.ts +15 -0
  46. package/cssm/Component.responsive.js +58 -0
  47. package/cssm/Context.d.ts +4 -0
  48. package/cssm/Context.js +9 -0
  49. package/cssm/ResponsiveContext.d.ts +4 -0
  50. package/cssm/ResponsiveContext.js +9 -0
  51. package/cssm/components/content/base-content/base-content.d.ts +17 -0
  52. package/cssm/components/content/base-content/base-content.js +27 -0
  53. package/cssm/components/content/base-content/index.module.css +43 -0
  54. package/cssm/components/content/desktop/Component.desktop.d.ts +10 -0
  55. package/cssm/components/content/desktop/Component.desktop.js +20 -0
  56. package/cssm/components/content/index.d.ts +7 -0
  57. package/cssm/components/content/index.js +13 -0
  58. package/cssm/components/content/mobile/Component.mobile.d.ts +5 -0
  59. package/cssm/components/content/mobile/Component.mobile.js +22 -0
  60. package/cssm/components/content/mobile/mobile.module.css +37 -0
  61. package/cssm/components/content/responsive/Component.responsive.d.ts +6 -0
  62. package/cssm/components/content/responsive/Component.responsive.js +24 -0
  63. package/cssm/components/footer/base-footer/base-footer.d.ts +29 -0
  64. package/cssm/components/footer/base-footer/base-footer.js +33 -0
  65. package/cssm/components/footer/base-footer/index.module.css +47 -0
  66. package/cssm/components/footer/desktop/Component.desktop.d.ts +10 -0
  67. package/cssm/components/footer/desktop/Component.desktop.js +32 -0
  68. package/cssm/components/footer/desktop/desktop.module.css +29 -0
  69. package/cssm/components/footer/desktop/layout.module.css +54 -0
  70. package/cssm/components/footer/index.d.ts +7 -0
  71. package/cssm/components/footer/index.js +13 -0
  72. package/cssm/components/footer/mobile/Component.mobile.d.ts +5 -0
  73. package/cssm/components/footer/mobile/Component.mobile.js +29 -0
  74. package/cssm/components/footer/mobile/layout.mobile.module.css +47 -0
  75. package/cssm/components/footer/mobile/mobile.module.css +33 -0
  76. package/cssm/components/footer/responsive/Component.responsive.d.ts +6 -0
  77. package/cssm/components/footer/responsive/Component.responsive.js +24 -0
  78. package/cssm/components/header/base-header/index.module.css +71 -0
  79. package/cssm/components/header/desktop/Component.desktop.d.ts +11 -0
  80. package/cssm/components/header/desktop/Component.desktop.js +44 -0
  81. package/cssm/components/header/desktop/desktop.module.css +56 -0
  82. package/cssm/components/header/index.d.ts +7 -0
  83. package/cssm/components/header/index.js +13 -0
  84. package/cssm/components/header/mobile/Component.mobile.d.ts +5 -0
  85. package/cssm/components/header/mobile/Component.mobile.js +38 -0
  86. package/cssm/components/header/mobile/mobile.module.css +58 -0
  87. package/cssm/components/header/responsive/Component.responsive.d.ts +6 -0
  88. package/cssm/components/header/responsive/Component.responsive.js +24 -0
  89. package/cssm/desktop/Component.desktop.d.ts +9 -0
  90. package/cssm/desktop/Component.desktop.js +58 -0
  91. package/cssm/desktop/components/base-universal-modal-content/base-universal-modal-content.d.ts +7 -0
  92. package/cssm/desktop/components/base-universal-modal-content/base-universal-modal-content.js +121 -0
  93. package/cssm/desktop/components/base-universal-modal-content/base-universal-modal-content.module.css +34 -0
  94. package/cssm/desktop/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  95. package/cssm/desktop/components/buttons/arrow-button/arrow-button.js +22 -0
  96. package/cssm/desktop/components/buttons/arrow-button/arrow-button.module.css +31 -0
  97. package/cssm/desktop/components/buttons/arrow-button/index.d.ts +1 -0
  98. package/cssm/desktop/components/buttons/arrow-button/index.js +9 -0
  99. package/cssm/desktop/components/buttons/cross-button/cross-button.d.ts +6 -0
  100. package/cssm/desktop/components/buttons/cross-button/cross-button.js +20 -0
  101. package/cssm/desktop/components/buttons/cross-button/cross-button.module.css +28 -0
  102. package/cssm/desktop/components/buttons/cross-button/index.d.ts +1 -0
  103. package/cssm/desktop/components/buttons/cross-button/index.js +9 -0
  104. package/cssm/desktop/components/center-modal/center-modal.d.ts +4 -0
  105. package/cssm/desktop/components/center-modal/center-modal.js +43 -0
  106. package/cssm/desktop/components/center-modal/index.d.ts +1 -0
  107. package/cssm/desktop/components/center-modal/index.js +9 -0
  108. package/cssm/desktop/components/center-modal/styles/center-modal.module.css +52 -0
  109. package/cssm/desktop/components/center-modal/styles/index.module.css +1084 -0
  110. package/cssm/desktop/components/center-modal/styles/transitions/safari-transitions.module.css +23 -0
  111. package/cssm/desktop/components/center-modal/styles/transitions/transitions.module.css +23 -0
  112. package/cssm/desktop/components/side-modal/get-default-transition-props.d.ts +20 -0
  113. package/cssm/desktop/components/side-modal/get-default-transition-props.js +42 -0
  114. package/cssm/desktop/components/side-modal/index.d.ts +1 -0
  115. package/cssm/desktop/components/side-modal/index.js +9 -0
  116. package/cssm/desktop/components/side-modal/side-modal.d.ts +4 -0
  117. package/cssm/desktop/components/side-modal/side-modal.js +50 -0
  118. package/cssm/desktop/components/side-modal/styles/index.module.css +1087 -0
  119. package/cssm/desktop/components/side-modal/styles/side-modal.module.css +55 -0
  120. package/cssm/desktop/components/side-modal/styles/transitions/transitions.module.css +330 -0
  121. package/cssm/desktop/constants/index.d.ts +3 -0
  122. package/cssm/desktop/constants/index.js +9 -0
  123. package/cssm/desktop/hooks/useModalHeight.d.ts +4 -0
  124. package/cssm/desktop/hooks/useModalHeight.js +33 -0
  125. package/cssm/desktop/hooks/useModalWheel.d.ts +6 -0
  126. package/cssm/desktop/hooks/useModalWheel.js +19 -0
  127. package/cssm/desktop/hooks/useModalWidth.d.ts +4 -0
  128. package/cssm/desktop/hooks/useModalWidth.js +41 -0
  129. package/cssm/desktop/index.d.ts +10 -0
  130. package/cssm/desktop/index.js +34 -0
  131. package/cssm/desktop/styles/margins.module.css +1552 -0
  132. package/cssm/desktop/styles/transitions/full-size-backdrop-transitions.module.css +59 -0
  133. package/cssm/desktop/styles/transitions/full-size-vertical-bottom-transitions.module.css +24 -0
  134. package/cssm/desktop/styles/transitions/full-size-vertical-center-transitions.module.css +20 -0
  135. package/cssm/desktop/styles/transitions/full-size-vertical-top-transitions.module.css +24 -0
  136. package/cssm/desktop/types/props.d.ts +45 -0
  137. package/cssm/desktop/types/props.js +2 -0
  138. package/cssm/desktop/utils/get-full-size-modal-transitions.d.ts +16 -0
  139. package/cssm/desktop/utils/get-full-size-modal-transitions.js +54 -0
  140. package/cssm/desktop/utils/get-margins.d.ts +7 -0
  141. package/cssm/desktop/utils/get-margins.js +22 -0
  142. package/cssm/desktop/vars.css +24 -0
  143. package/cssm/index.d.ts +8 -0
  144. package/cssm/index.js +33 -0
  145. package/cssm/mobile/Component.mobile.d.ts +9 -0
  146. package/cssm/mobile/Component.mobile.js +45 -0
  147. package/cssm/mobile/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  148. package/cssm/mobile/components/buttons/arrow-button/arrow-button.js +20 -0
  149. package/cssm/mobile/components/buttons/arrow-button/arrow-button.module.css +30 -0
  150. package/cssm/mobile/components/buttons/arrow-button/index.d.ts +1 -0
  151. package/cssm/mobile/components/buttons/arrow-button/index.js +9 -0
  152. package/cssm/mobile/components/buttons/cross-button/cross-button.d.ts +6 -0
  153. package/cssm/mobile/components/buttons/cross-button/cross-button.js +20 -0
  154. package/cssm/mobile/components/buttons/cross-button/cross-button.module.css +30 -0
  155. package/cssm/mobile/components/buttons/cross-button/index.d.ts +1 -0
  156. package/cssm/mobile/components/buttons/cross-button/index.js +9 -0
  157. package/cssm/mobile/index.d.ts +10 -0
  158. package/cssm/mobile/index.js +34 -0
  159. package/cssm/mobile/mobile.module.css +38 -0
  160. package/cssm/mobile/transitions/right-side-transitions.mobile.module.css +37 -0
  161. package/cssm/mobile/transitions/transitions.mobile.module.css +24 -0
  162. package/cssm/mobile/types/props.d.ts +11 -0
  163. package/cssm/mobile/types/props.js +2 -0
  164. package/cssm/mobile/vars.css +24 -0
  165. package/cssm/shared/index.d.ts +2 -0
  166. package/cssm/shared/index.js +11 -0
  167. package/cssm/typings/index.d.ts +22 -0
  168. package/cssm/typings/index.js +2 -0
  169. package/cssm/typings/margin-type.d.ts +8 -0
  170. package/cssm/typings/margin-type.js +2 -0
  171. package/cssm/utils/getUniversalModalTestIds.d.ts +8 -0
  172. package/cssm/utils/getUniversalModalTestIds.js +17 -0
  173. package/cssm/vars.css +26 -0
  174. package/desktop/Component.desktop.d.ts +9 -0
  175. package/desktop/Component.desktop.js +51 -0
  176. package/desktop/components/base-universal-modal-content/base-universal-modal-content.css +35 -0
  177. package/desktop/components/base-universal-modal-content/base-universal-modal-content.d.ts +7 -0
  178. package/desktop/components/base-universal-modal-content/base-universal-modal-content.js +122 -0
  179. package/desktop/components/buttons/arrow-button/arrow-button.css +32 -0
  180. package/desktop/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  181. package/desktop/components/buttons/arrow-button/arrow-button.js +23 -0
  182. package/desktop/components/buttons/arrow-button/index.d.ts +1 -0
  183. package/desktop/components/buttons/arrow-button/index.js +9 -0
  184. package/desktop/components/buttons/cross-button/cross-button.css +29 -0
  185. package/desktop/components/buttons/cross-button/cross-button.d.ts +6 -0
  186. package/desktop/components/buttons/cross-button/cross-button.js +21 -0
  187. package/desktop/components/buttons/cross-button/index.d.ts +1 -0
  188. package/desktop/components/buttons/cross-button/index.js +9 -0
  189. package/desktop/components/center-modal/center-modal.d.ts +4 -0
  190. package/desktop/components/center-modal/center-modal.js +46 -0
  191. package/desktop/components/center-modal/index.d.ts +1 -0
  192. package/desktop/components/center-modal/index.js +9 -0
  193. package/desktop/components/center-modal/styles/index.css +1085 -0
  194. package/desktop/components/center-modal/styles/transitions/safari-transitions.css +24 -0
  195. package/desktop/components/center-modal/styles/transitions/transitions.css +24 -0
  196. package/desktop/components/side-modal/get-default-transition-props.d.ts +20 -0
  197. package/desktop/components/side-modal/get-default-transition-props.js +43 -0
  198. package/desktop/components/side-modal/index.d.ts +1 -0
  199. package/desktop/components/side-modal/index.js +9 -0
  200. package/desktop/components/side-modal/side-modal.d.ts +4 -0
  201. package/desktop/components/side-modal/side-modal.js +51 -0
  202. package/desktop/components/side-modal/styles/index.css +1088 -0
  203. package/desktop/components/side-modal/styles/transitions/transitions.css +331 -0
  204. package/desktop/constants/index.d.ts +3 -0
  205. package/desktop/constants/index.js +9 -0
  206. package/desktop/hooks/useModalHeight.d.ts +4 -0
  207. package/desktop/hooks/useModalHeight.js +33 -0
  208. package/desktop/hooks/useModalWheel.d.ts +6 -0
  209. package/desktop/hooks/useModalWheel.js +19 -0
  210. package/desktop/hooks/useModalWidth.d.ts +4 -0
  211. package/desktop/hooks/useModalWidth.js +41 -0
  212. package/desktop/index.d.ts +10 -0
  213. package/desktop/index.js +27 -0
  214. package/desktop/package.json +3 -0
  215. package/desktop/styles/transitions/full-size-backdrop-transitions.css +60 -0
  216. package/desktop/styles/transitions/full-size-vertical-bottom-transitions.css +25 -0
  217. package/desktop/styles/transitions/full-size-vertical-center-transitions.css +21 -0
  218. package/desktop/styles/transitions/full-size-vertical-top-transitions.css +25 -0
  219. package/desktop/types/props.d.ts +45 -0
  220. package/desktop/types/props.js +2 -0
  221. package/desktop/utils/get-full-size-modal-transitions.d.ts +16 -0
  222. package/desktop/utils/get-full-size-modal-transitions.js +55 -0
  223. package/desktop/utils/get-margins.d.ts +7 -0
  224. package/desktop/utils/get-margins.js +22 -0
  225. package/esm/Component.responsive.d.ts +15 -0
  226. package/esm/Component.responsive.js +35 -0
  227. package/esm/Context.d.ts +4 -0
  228. package/esm/Context.js +5 -0
  229. package/esm/ResponsiveContext.d.ts +4 -0
  230. package/esm/ResponsiveContext.js +5 -0
  231. package/esm/components/content/base-content/base-content.d.ts +17 -0
  232. package/esm/components/content/base-content/base-content.js +19 -0
  233. package/esm/components/content/base-content/index.css +44 -0
  234. package/esm/components/content/desktop/Component.desktop.d.ts +10 -0
  235. package/esm/components/content/desktop/Component.desktop.js +11 -0
  236. package/esm/components/content/index.d.ts +7 -0
  237. package/esm/components/content/index.js +3 -0
  238. package/esm/components/content/mobile/Component.mobile.d.ts +5 -0
  239. package/esm/components/content/mobile/Component.mobile.js +14 -0
  240. package/esm/components/content/mobile/mobile.css +38 -0
  241. package/esm/components/content/responsive/Component.responsive.d.ts +6 -0
  242. package/esm/components/content/responsive/Component.responsive.js +16 -0
  243. package/esm/components/footer/base-footer/base-footer.d.ts +29 -0
  244. package/esm/components/footer/base-footer/base-footer.js +25 -0
  245. package/esm/components/footer/base-footer/index.css +48 -0
  246. package/esm/components/footer/desktop/Component.desktop.d.ts +10 -0
  247. package/esm/components/footer/desktop/Component.desktop.js +25 -0
  248. package/esm/components/footer/desktop/desktop.css +30 -0
  249. package/esm/components/footer/desktop/layout.css +58 -0
  250. package/esm/components/footer/index.d.ts +7 -0
  251. package/esm/components/footer/index.js +3 -0
  252. package/esm/components/footer/mobile/Component.mobile.d.ts +5 -0
  253. package/esm/components/footer/mobile/Component.mobile.js +22 -0
  254. package/esm/components/footer/mobile/layout.mobile.css +50 -0
  255. package/esm/components/footer/mobile/mobile.css +34 -0
  256. package/esm/components/footer/responsive/Component.responsive.d.ts +6 -0
  257. package/esm/components/footer/responsive/Component.responsive.js +16 -0
  258. package/esm/components/header/base-header/index.css +72 -0
  259. package/esm/components/header/desktop/Component.desktop.d.ts +11 -0
  260. package/esm/components/header/desktop/Component.desktop.js +35 -0
  261. package/esm/components/header/desktop/desktop.css +57 -0
  262. package/esm/components/header/index.d.ts +7 -0
  263. package/esm/components/header/index.js +3 -0
  264. package/esm/components/header/mobile/Component.mobile.d.ts +5 -0
  265. package/esm/components/header/mobile/Component.mobile.js +29 -0
  266. package/esm/components/header/mobile/mobile.css +59 -0
  267. package/esm/components/header/responsive/Component.responsive.d.ts +6 -0
  268. package/esm/components/header/responsive/Component.responsive.js +16 -0
  269. package/esm/desktop/Component.desktop.d.ts +9 -0
  270. package/esm/desktop/Component.desktop.js +42 -0
  271. package/esm/desktop/components/base-universal-modal-content/base-universal-modal-content.css +35 -0
  272. package/esm/desktop/components/base-universal-modal-content/base-universal-modal-content.d.ts +7 -0
  273. package/esm/desktop/components/base-universal-modal-content/base-universal-modal-content.js +114 -0
  274. package/esm/desktop/components/buttons/arrow-button/arrow-button.css +32 -0
  275. package/esm/desktop/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  276. package/esm/desktop/components/buttons/arrow-button/arrow-button.js +15 -0
  277. package/esm/desktop/components/buttons/arrow-button/index.d.ts +1 -0
  278. package/esm/desktop/components/buttons/arrow-button/index.js +1 -0
  279. package/esm/desktop/components/buttons/cross-button/cross-button.css +29 -0
  280. package/esm/desktop/components/buttons/cross-button/cross-button.d.ts +6 -0
  281. package/esm/desktop/components/buttons/cross-button/cross-button.js +13 -0
  282. package/esm/desktop/components/buttons/cross-button/index.d.ts +1 -0
  283. package/esm/desktop/components/buttons/cross-button/index.js +1 -0
  284. package/esm/desktop/components/center-modal/center-modal.d.ts +4 -0
  285. package/esm/desktop/components/center-modal/center-modal.js +37 -0
  286. package/esm/desktop/components/center-modal/index.d.ts +1 -0
  287. package/esm/desktop/components/center-modal/index.js +1 -0
  288. package/esm/desktop/components/center-modal/styles/index.css +1085 -0
  289. package/esm/desktop/components/center-modal/styles/transitions/safari-transitions.css +24 -0
  290. package/esm/desktop/components/center-modal/styles/transitions/transitions.css +24 -0
  291. package/esm/desktop/components/side-modal/get-default-transition-props.d.ts +20 -0
  292. package/esm/desktop/components/side-modal/get-default-transition-props.js +35 -0
  293. package/esm/desktop/components/side-modal/index.d.ts +1 -0
  294. package/esm/desktop/components/side-modal/index.js +1 -0
  295. package/esm/desktop/components/side-modal/side-modal.d.ts +4 -0
  296. package/esm/desktop/components/side-modal/side-modal.js +42 -0
  297. package/esm/desktop/components/side-modal/styles/index.css +1088 -0
  298. package/esm/desktop/components/side-modal/styles/transitions/transitions.css +331 -0
  299. package/esm/desktop/constants/index.d.ts +3 -0
  300. package/esm/desktop/constants/index.js +4 -0
  301. package/esm/desktop/hooks/useModalHeight.d.ts +4 -0
  302. package/esm/desktop/hooks/useModalHeight.js +29 -0
  303. package/esm/desktop/hooks/useModalWheel.d.ts +6 -0
  304. package/esm/desktop/hooks/useModalWheel.js +15 -0
  305. package/esm/desktop/hooks/useModalWidth.d.ts +4 -0
  306. package/esm/desktop/hooks/useModalWidth.js +37 -0
  307. package/esm/desktop/index.d.ts +10 -0
  308. package/esm/desktop/index.js +13 -0
  309. package/esm/desktop/styles/transitions/full-size-backdrop-transitions.css +60 -0
  310. package/esm/desktop/styles/transitions/full-size-vertical-bottom-transitions.css +25 -0
  311. package/esm/desktop/styles/transitions/full-size-vertical-center-transitions.css +21 -0
  312. package/esm/desktop/styles/transitions/full-size-vertical-top-transitions.css +25 -0
  313. package/esm/desktop/types/props.d.ts +45 -0
  314. package/esm/desktop/types/props.js +1 -0
  315. package/esm/desktop/utils/get-full-size-modal-transitions.d.ts +16 -0
  316. package/esm/desktop/utils/get-full-size-modal-transitions.js +51 -0
  317. package/esm/desktop/utils/get-margins.d.ts +7 -0
  318. package/esm/desktop/utils/get-margins.js +18 -0
  319. package/esm/index.d.ts +8 -0
  320. package/esm/index.js +11 -0
  321. package/esm/index.module-c4f215c8.js +4 -0
  322. package/esm/mobile/Component.mobile.d.ts +9 -0
  323. package/esm/mobile/Component.mobile.js +32 -0
  324. package/esm/mobile/components/buttons/arrow-button/arrow-button.css +31 -0
  325. package/esm/mobile/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  326. package/esm/mobile/components/buttons/arrow-button/arrow-button.js +13 -0
  327. package/esm/mobile/components/buttons/arrow-button/index.d.ts +1 -0
  328. package/esm/mobile/components/buttons/arrow-button/index.js +1 -0
  329. package/esm/mobile/components/buttons/cross-button/cross-button.css +31 -0
  330. package/esm/mobile/components/buttons/cross-button/cross-button.d.ts +6 -0
  331. package/esm/mobile/components/buttons/cross-button/cross-button.js +13 -0
  332. package/esm/mobile/components/buttons/cross-button/index.d.ts +1 -0
  333. package/esm/mobile/components/buttons/cross-button/index.js +1 -0
  334. package/esm/mobile/index.d.ts +10 -0
  335. package/esm/mobile/index.js +14 -0
  336. package/esm/mobile/mobile.css +39 -0
  337. package/esm/mobile/transitions/right-side-transitions.mobile.css +38 -0
  338. package/esm/mobile/transitions/transitions.mobile.css +25 -0
  339. package/esm/mobile/types/props.d.ts +11 -0
  340. package/esm/mobile/types/props.js +1 -0
  341. package/esm/shared/index.d.ts +2 -0
  342. package/esm/shared/index.js +2 -0
  343. package/esm/typings/index.d.ts +22 -0
  344. package/esm/typings/index.js +1 -0
  345. package/esm/typings/margin-type.d.ts +8 -0
  346. package/esm/typings/margin-type.js +1 -0
  347. package/esm/utils/getUniversalModalTestIds.d.ts +8 -0
  348. package/esm/utils/getUniversalModalTestIds.js +13 -0
  349. package/index.d.ts +8 -0
  350. package/index.js +23 -0
  351. package/index.module-7936578a.js +6 -0
  352. package/mobile/Component.mobile.d.ts +9 -0
  353. package/mobile/Component.mobile.js +42 -0
  354. package/mobile/components/buttons/arrow-button/arrow-button.css +31 -0
  355. package/mobile/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  356. package/mobile/components/buttons/arrow-button/arrow-button.js +21 -0
  357. package/mobile/components/buttons/arrow-button/index.d.ts +1 -0
  358. package/mobile/components/buttons/arrow-button/index.js +9 -0
  359. package/mobile/components/buttons/cross-button/cross-button.css +31 -0
  360. package/mobile/components/buttons/cross-button/cross-button.d.ts +6 -0
  361. package/mobile/components/buttons/cross-button/cross-button.js +21 -0
  362. package/mobile/components/buttons/cross-button/index.d.ts +1 -0
  363. package/mobile/components/buttons/cross-button/index.js +9 -0
  364. package/mobile/index.d.ts +10 -0
  365. package/mobile/index.js +28 -0
  366. package/mobile/mobile.css +39 -0
  367. package/mobile/package.json +3 -0
  368. package/mobile/transitions/right-side-transitions.mobile.css +38 -0
  369. package/mobile/transitions/transitions.mobile.css +25 -0
  370. package/mobile/types/props.d.ts +11 -0
  371. package/mobile/types/props.js +2 -0
  372. package/modern/Component.responsive.d.ts +15 -0
  373. package/modern/Component.responsive.js +33 -0
  374. package/modern/Context.d.ts +4 -0
  375. package/modern/Context.js +5 -0
  376. package/modern/ResponsiveContext.d.ts +4 -0
  377. package/modern/ResponsiveContext.js +5 -0
  378. package/modern/components/content/base-content/base-content.d.ts +17 -0
  379. package/modern/components/content/base-content/base-content.js +17 -0
  380. package/modern/components/content/base-content/index.css +44 -0
  381. package/modern/components/content/desktop/Component.desktop.d.ts +10 -0
  382. package/modern/components/content/desktop/Component.desktop.js +7 -0
  383. package/modern/components/content/index.d.ts +7 -0
  384. package/modern/components/content/index.js +3 -0
  385. package/modern/components/content/mobile/Component.mobile.d.ts +5 -0
  386. package/modern/components/content/mobile/Component.mobile.js +10 -0
  387. package/modern/components/content/mobile/mobile.css +38 -0
  388. package/modern/components/content/responsive/Component.responsive.d.ts +6 -0
  389. package/modern/components/content/responsive/Component.responsive.js +14 -0
  390. package/modern/components/footer/base-footer/base-footer.d.ts +29 -0
  391. package/modern/components/footer/base-footer/base-footer.js +23 -0
  392. package/modern/components/footer/base-footer/index.css +48 -0
  393. package/modern/components/footer/desktop/Component.desktop.d.ts +10 -0
  394. package/modern/components/footer/desktop/Component.desktop.js +22 -0
  395. package/modern/components/footer/desktop/desktop.css +30 -0
  396. package/modern/components/footer/desktop/layout.css +58 -0
  397. package/modern/components/footer/index.d.ts +7 -0
  398. package/modern/components/footer/index.js +3 -0
  399. package/modern/components/footer/mobile/Component.mobile.d.ts +5 -0
  400. package/modern/components/footer/mobile/Component.mobile.js +19 -0
  401. package/modern/components/footer/mobile/layout.mobile.css +50 -0
  402. package/modern/components/footer/mobile/mobile.css +34 -0
  403. package/modern/components/footer/responsive/Component.responsive.d.ts +6 -0
  404. package/modern/components/footer/responsive/Component.responsive.js +14 -0
  405. package/modern/components/header/base-header/index.css +72 -0
  406. package/modern/components/header/desktop/Component.desktop.d.ts +11 -0
  407. package/modern/components/header/desktop/Component.desktop.js +32 -0
  408. package/modern/components/header/desktop/desktop.css +57 -0
  409. package/modern/components/header/index.d.ts +7 -0
  410. package/modern/components/header/index.js +3 -0
  411. package/modern/components/header/mobile/Component.mobile.d.ts +5 -0
  412. package/modern/components/header/mobile/Component.mobile.js +26 -0
  413. package/modern/components/header/mobile/mobile.css +59 -0
  414. package/modern/components/header/responsive/Component.responsive.d.ts +6 -0
  415. package/modern/components/header/responsive/Component.responsive.js +14 -0
  416. package/modern/desktop/Component.desktop.d.ts +9 -0
  417. package/modern/desktop/Component.desktop.js +40 -0
  418. package/modern/desktop/components/base-universal-modal-content/base-universal-modal-content.css +35 -0
  419. package/modern/desktop/components/base-universal-modal-content/base-universal-modal-content.d.ts +7 -0
  420. package/modern/desktop/components/base-universal-modal-content/base-universal-modal-content.js +112 -0
  421. package/modern/desktop/components/buttons/arrow-button/arrow-button.css +32 -0
  422. package/modern/desktop/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  423. package/modern/desktop/components/buttons/arrow-button/arrow-button.js +15 -0
  424. package/modern/desktop/components/buttons/arrow-button/index.d.ts +1 -0
  425. package/modern/desktop/components/buttons/arrow-button/index.js +1 -0
  426. package/modern/desktop/components/buttons/cross-button/cross-button.css +29 -0
  427. package/modern/desktop/components/buttons/cross-button/cross-button.d.ts +6 -0
  428. package/modern/desktop/components/buttons/cross-button/cross-button.js +13 -0
  429. package/modern/desktop/components/buttons/cross-button/index.d.ts +1 -0
  430. package/modern/desktop/components/buttons/cross-button/index.js +1 -0
  431. package/modern/desktop/components/center-modal/center-modal.d.ts +4 -0
  432. package/modern/desktop/components/center-modal/center-modal.js +48 -0
  433. package/modern/desktop/components/center-modal/index.d.ts +1 -0
  434. package/modern/desktop/components/center-modal/index.js +1 -0
  435. package/modern/desktop/components/center-modal/styles/index.css +1085 -0
  436. package/modern/desktop/components/center-modal/styles/transitions/safari-transitions.css +24 -0
  437. package/modern/desktop/components/center-modal/styles/transitions/transitions.css +24 -0
  438. package/modern/desktop/components/side-modal/get-default-transition-props.d.ts +20 -0
  439. package/modern/desktop/components/side-modal/get-default-transition-props.js +34 -0
  440. package/modern/desktop/components/side-modal/index.d.ts +1 -0
  441. package/modern/desktop/components/side-modal/index.js +1 -0
  442. package/modern/desktop/components/side-modal/side-modal.d.ts +4 -0
  443. package/modern/desktop/components/side-modal/side-modal.js +51 -0
  444. package/modern/desktop/components/side-modal/styles/index.css +1088 -0
  445. package/modern/desktop/components/side-modal/styles/transitions/transitions.css +331 -0
  446. package/modern/desktop/constants/index.d.ts +3 -0
  447. package/modern/desktop/constants/index.js +4 -0
  448. package/modern/desktop/hooks/useModalHeight.d.ts +4 -0
  449. package/modern/desktop/hooks/useModalHeight.js +29 -0
  450. package/modern/desktop/hooks/useModalWheel.d.ts +6 -0
  451. package/modern/desktop/hooks/useModalWheel.js +15 -0
  452. package/modern/desktop/hooks/useModalWidth.d.ts +4 -0
  453. package/modern/desktop/hooks/useModalWidth.js +37 -0
  454. package/modern/desktop/index.d.ts +10 -0
  455. package/modern/desktop/index.js +12 -0
  456. package/modern/desktop/styles/transitions/full-size-backdrop-transitions.css +60 -0
  457. package/modern/desktop/styles/transitions/full-size-vertical-bottom-transitions.css +25 -0
  458. package/modern/desktop/styles/transitions/full-size-vertical-center-transitions.css +21 -0
  459. package/modern/desktop/styles/transitions/full-size-vertical-top-transitions.css +25 -0
  460. package/modern/desktop/types/props.d.ts +45 -0
  461. package/modern/desktop/types/props.js +1 -0
  462. package/modern/desktop/utils/get-full-size-modal-transitions.d.ts +16 -0
  463. package/modern/desktop/utils/get-full-size-modal-transitions.js +51 -0
  464. package/modern/desktop/utils/get-margins.d.ts +7 -0
  465. package/modern/desktop/utils/get-margins.js +17 -0
  466. package/modern/index.d.ts +8 -0
  467. package/modern/index.js +10 -0
  468. package/modern/index.module-2718b9b5.js +4 -0
  469. package/modern/mobile/Component.mobile.d.ts +9 -0
  470. package/modern/mobile/Component.mobile.js +35 -0
  471. package/modern/mobile/components/buttons/arrow-button/arrow-button.css +31 -0
  472. package/modern/mobile/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  473. package/modern/mobile/components/buttons/arrow-button/arrow-button.js +13 -0
  474. package/modern/mobile/components/buttons/arrow-button/index.d.ts +1 -0
  475. package/modern/mobile/components/buttons/arrow-button/index.js +1 -0
  476. package/modern/mobile/components/buttons/cross-button/cross-button.css +31 -0
  477. package/modern/mobile/components/buttons/cross-button/cross-button.d.ts +6 -0
  478. package/modern/mobile/components/buttons/cross-button/cross-button.js +13 -0
  479. package/modern/mobile/components/buttons/cross-button/index.d.ts +1 -0
  480. package/modern/mobile/components/buttons/cross-button/index.js +1 -0
  481. package/modern/mobile/index.d.ts +10 -0
  482. package/modern/mobile/index.js +13 -0
  483. package/modern/mobile/mobile.css +39 -0
  484. package/modern/mobile/transitions/right-side-transitions.mobile.css +38 -0
  485. package/modern/mobile/transitions/transitions.mobile.css +25 -0
  486. package/modern/mobile/types/props.d.ts +11 -0
  487. package/modern/mobile/types/props.js +1 -0
  488. package/modern/shared/index.d.ts +2 -0
  489. package/modern/shared/index.js +2 -0
  490. package/modern/typings/index.d.ts +22 -0
  491. package/modern/typings/index.js +1 -0
  492. package/modern/typings/margin-type.d.ts +8 -0
  493. package/modern/typings/margin-type.js +1 -0
  494. package/modern/utils/getUniversalModalTestIds.d.ts +8 -0
  495. package/modern/utils/getUniversalModalTestIds.js +13 -0
  496. package/moderncssm/Component.responsive.d.ts +15 -0
  497. package/moderncssm/Component.responsive.js +47 -0
  498. package/moderncssm/Context.d.ts +4 -0
  499. package/moderncssm/Context.js +5 -0
  500. package/moderncssm/ResponsiveContext.d.ts +4 -0
  501. package/moderncssm/ResponsiveContext.js +5 -0
  502. package/moderncssm/components/content/base-content/base-content.d.ts +17 -0
  503. package/moderncssm/components/content/base-content/base-content.js +15 -0
  504. package/moderncssm/components/content/base-content/index.module.css +26 -0
  505. package/moderncssm/components/content/desktop/Component.desktop.d.ts +10 -0
  506. package/moderncssm/components/content/desktop/Component.desktop.js +7 -0
  507. package/moderncssm/components/content/index.d.ts +7 -0
  508. package/moderncssm/components/content/index.js +3 -0
  509. package/moderncssm/components/content/mobile/Component.mobile.d.ts +5 -0
  510. package/moderncssm/components/content/mobile/Component.mobile.js +8 -0
  511. package/moderncssm/components/content/mobile/mobile.module.css +18 -0
  512. package/moderncssm/components/content/responsive/Component.responsive.d.ts +6 -0
  513. package/moderncssm/components/content/responsive/Component.responsive.js +14 -0
  514. package/moderncssm/components/footer/base-footer/base-footer.d.ts +29 -0
  515. package/moderncssm/components/footer/base-footer/base-footer.js +21 -0
  516. package/moderncssm/components/footer/base-footer/index.module.css +23 -0
  517. package/moderncssm/components/footer/desktop/Component.desktop.d.ts +10 -0
  518. package/moderncssm/components/footer/desktop/Component.desktop.js +18 -0
  519. package/moderncssm/components/footer/desktop/desktop.module.css +10 -0
  520. package/moderncssm/components/footer/desktop/layout.module.css +42 -0
  521. package/moderncssm/components/footer/index.d.ts +7 -0
  522. package/moderncssm/components/footer/index.js +3 -0
  523. package/moderncssm/components/footer/mobile/Component.mobile.d.ts +5 -0
  524. package/moderncssm/components/footer/mobile/Component.mobile.js +15 -0
  525. package/moderncssm/components/footer/mobile/layout.mobile.module.css +37 -0
  526. package/moderncssm/components/footer/mobile/mobile.module.css +14 -0
  527. package/moderncssm/components/footer/responsive/Component.responsive.d.ts +6 -0
  528. package/moderncssm/components/footer/responsive/Component.responsive.js +14 -0
  529. package/moderncssm/components/header/base-header/index.module.css +71 -0
  530. package/moderncssm/components/header/desktop/Component.desktop.d.ts +11 -0
  531. package/moderncssm/components/header/desktop/Component.desktop.js +30 -0
  532. package/moderncssm/components/header/desktop/desktop.module.css +45 -0
  533. package/moderncssm/components/header/index.d.ts +7 -0
  534. package/moderncssm/components/header/index.js +3 -0
  535. package/moderncssm/components/header/mobile/Component.mobile.d.ts +5 -0
  536. package/moderncssm/components/header/mobile/Component.mobile.js +24 -0
  537. package/moderncssm/components/header/mobile/mobile.module.css +31 -0
  538. package/moderncssm/components/header/responsive/Component.responsive.d.ts +6 -0
  539. package/moderncssm/components/header/responsive/Component.responsive.js +14 -0
  540. package/moderncssm/desktop/Component.desktop.d.ts +9 -0
  541. package/moderncssm/desktop/Component.desktop.js +47 -0
  542. package/moderncssm/desktop/components/base-universal-modal-content/base-universal-modal-content.d.ts +7 -0
  543. package/moderncssm/desktop/components/base-universal-modal-content/base-universal-modal-content.js +110 -0
  544. package/moderncssm/desktop/components/base-universal-modal-content/base-universal-modal-content.module.css +20 -0
  545. package/moderncssm/desktop/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  546. package/moderncssm/desktop/components/buttons/arrow-button/arrow-button.js +13 -0
  547. package/moderncssm/desktop/components/buttons/arrow-button/arrow-button.module.css +8 -0
  548. package/moderncssm/desktop/components/buttons/arrow-button/index.d.ts +1 -0
  549. package/moderncssm/desktop/components/buttons/arrow-button/index.js +1 -0
  550. package/moderncssm/desktop/components/buttons/cross-button/cross-button.d.ts +6 -0
  551. package/moderncssm/desktop/components/buttons/cross-button/cross-button.js +11 -0
  552. package/moderncssm/desktop/components/buttons/cross-button/cross-button.module.css +7 -0
  553. package/moderncssm/desktop/components/buttons/cross-button/index.d.ts +1 -0
  554. package/moderncssm/desktop/components/buttons/cross-button/index.js +1 -0
  555. package/moderncssm/desktop/components/center-modal/center-modal.d.ts +4 -0
  556. package/moderncssm/desktop/components/center-modal/center-modal.js +42 -0
  557. package/moderncssm/desktop/components/center-modal/index.d.ts +1 -0
  558. package/moderncssm/desktop/components/center-modal/index.js +1 -0
  559. package/moderncssm/desktop/components/center-modal/styles/center-modal.module.css +38 -0
  560. package/moderncssm/desktop/components/center-modal/styles/index.module.css +2110 -0
  561. package/moderncssm/desktop/components/center-modal/styles/transitions/safari-transitions.module.css +23 -0
  562. package/moderncssm/desktop/components/center-modal/styles/transitions/transitions.module.css +23 -0
  563. package/moderncssm/desktop/components/side-modal/get-default-transition-props.d.ts +20 -0
  564. package/moderncssm/desktop/components/side-modal/get-default-transition-props.js +32 -0
  565. package/moderncssm/desktop/components/side-modal/index.d.ts +1 -0
  566. package/moderncssm/desktop/components/side-modal/index.js +1 -0
  567. package/moderncssm/desktop/components/side-modal/side-modal.d.ts +4 -0
  568. package/moderncssm/desktop/components/side-modal/side-modal.js +49 -0
  569. package/moderncssm/desktop/components/side-modal/styles/index.module.css +2117 -0
  570. package/moderncssm/desktop/components/side-modal/styles/side-modal.module.css +45 -0
  571. package/moderncssm/desktop/components/side-modal/styles/transitions/transitions.module.css +330 -0
  572. package/moderncssm/desktop/constants/index.d.ts +3 -0
  573. package/moderncssm/desktop/constants/index.js +4 -0
  574. package/moderncssm/desktop/hooks/useModalHeight.d.ts +4 -0
  575. package/moderncssm/desktop/hooks/useModalHeight.js +29 -0
  576. package/moderncssm/desktop/hooks/useModalWheel.d.ts +6 -0
  577. package/moderncssm/desktop/hooks/useModalWheel.js +15 -0
  578. package/moderncssm/desktop/hooks/useModalWidth.d.ts +4 -0
  579. package/moderncssm/desktop/hooks/useModalWidth.js +37 -0
  580. package/moderncssm/desktop/index.d.ts +10 -0
  581. package/moderncssm/desktop/index.js +19 -0
  582. package/moderncssm/desktop/styles/margins.module.css +1552 -0
  583. package/moderncssm/desktop/styles/transitions/full-size-backdrop-transitions.module.css +52 -0
  584. package/moderncssm/desktop/styles/transitions/full-size-vertical-bottom-transitions.module.css +24 -0
  585. package/moderncssm/desktop/styles/transitions/full-size-vertical-center-transitions.module.css +20 -0
  586. package/moderncssm/desktop/styles/transitions/full-size-vertical-top-transitions.module.css +24 -0
  587. package/moderncssm/desktop/types/props.d.ts +45 -0
  588. package/moderncssm/desktop/types/props.js +1 -0
  589. package/moderncssm/desktop/utils/get-full-size-modal-transitions.d.ts +16 -0
  590. package/moderncssm/desktop/utils/get-full-size-modal-transitions.js +43 -0
  591. package/moderncssm/desktop/utils/get-margins.d.ts +7 -0
  592. package/moderncssm/desktop/utils/get-margins.js +17 -0
  593. package/moderncssm/desktop/vars.css +2 -0
  594. package/moderncssm/index.d.ts +8 -0
  595. package/moderncssm/index.js +20 -0
  596. package/moderncssm/mobile/Component.mobile.d.ts +9 -0
  597. package/moderncssm/mobile/Component.mobile.js +35 -0
  598. package/moderncssm/mobile/components/buttons/arrow-button/arrow-button.d.ts +6 -0
  599. package/moderncssm/mobile/components/buttons/arrow-button/arrow-button.js +11 -0
  600. package/moderncssm/mobile/components/buttons/arrow-button/arrow-button.module.css +11 -0
  601. package/moderncssm/mobile/components/buttons/arrow-button/index.d.ts +1 -0
  602. package/moderncssm/mobile/components/buttons/arrow-button/index.js +1 -0
  603. package/moderncssm/mobile/components/buttons/cross-button/cross-button.d.ts +6 -0
  604. package/moderncssm/mobile/components/buttons/cross-button/cross-button.js +11 -0
  605. package/moderncssm/mobile/components/buttons/cross-button/cross-button.module.css +11 -0
  606. package/moderncssm/mobile/components/buttons/cross-button/index.d.ts +1 -0
  607. package/moderncssm/mobile/components/buttons/cross-button/index.js +1 -0
  608. package/moderncssm/mobile/index.d.ts +10 -0
  609. package/moderncssm/mobile/index.js +19 -0
  610. package/moderncssm/mobile/mobile.module.css +21 -0
  611. package/moderncssm/mobile/transitions/right-side-transitions.mobile.module.css +23 -0
  612. package/moderncssm/mobile/transitions/transitions.mobile.module.css +24 -0
  613. package/moderncssm/mobile/types/props.d.ts +11 -0
  614. package/moderncssm/mobile/types/props.js +1 -0
  615. package/moderncssm/mobile/vars.css +2 -0
  616. package/moderncssm/shared/index.d.ts +2 -0
  617. package/moderncssm/shared/index.js +2 -0
  618. package/moderncssm/typings/index.d.ts +22 -0
  619. package/moderncssm/typings/index.js +1 -0
  620. package/moderncssm/typings/margin-type.d.ts +8 -0
  621. package/moderncssm/typings/margin-type.js +1 -0
  622. package/moderncssm/utils/getUniversalModalTestIds.d.ts +8 -0
  623. package/moderncssm/utils/getUniversalModalTestIds.js +13 -0
  624. package/moderncssm/vars.css +6 -0
  625. package/package.json +32 -0
  626. package/shared/index.d.ts +2 -0
  627. package/shared/index.js +11 -0
  628. package/shared/package.json +3 -0
  629. package/src/Component.responsive.tsx +32 -0
  630. package/src/Context.tsx +3 -0
  631. package/src/ResponsiveContext.ts +5 -0
  632. package/src/components/content/base-content/base-content.tsx +42 -0
  633. package/src/components/content/base-content/index.module.css +21 -0
  634. package/src/components/content/desktop/Component.desktop.tsx +15 -0
  635. package/src/components/content/index.ts +8 -0
  636. package/src/components/content/mobile/Component.mobile.tsx +12 -0
  637. package/src/components/content/mobile/mobile.module.css +13 -0
  638. package/src/components/content/responsive/Component.responsive.tsx +18 -0
  639. package/src/components/footer/base-footer/base-footer.tsx +71 -0
  640. package/src/components/footer/base-footer/index.module.css +20 -0
  641. package/src/components/footer/desktop/Component.desktop.tsx +39 -0
  642. package/src/components/footer/desktop/desktop.module.css +5 -0
  643. package/src/components/footer/desktop/layout.module.css +34 -0
  644. package/src/components/footer/index.ts +8 -0
  645. package/src/components/footer/mobile/Component.mobile.tsx +31 -0
  646. package/src/components/footer/mobile/layout.mobile.module.css +30 -0
  647. package/src/components/footer/mobile/mobile.module.css +9 -0
  648. package/src/components/footer/responsive/Component.responsive.tsx +18 -0
  649. package/src/components/header/base-header/index.module.css +64 -0
  650. package/src/components/header/desktop/Component.desktop.tsx +77 -0
  651. package/src/components/header/desktop/desktop.module.css +32 -0
  652. package/src/components/header/index.ts +8 -0
  653. package/src/components/header/mobile/Component.mobile.tsx +59 -0
  654. package/src/components/header/mobile/mobile.module.css +29 -0
  655. package/src/components/header/responsive/Component.responsive.tsx +18 -0
  656. package/src/desktop/Component.desktop.tsx +60 -0
  657. package/src/desktop/components/base-universal-modal-content/base-universal-modal-content.module.css +20 -0
  658. package/src/desktop/components/base-universal-modal-content/base-universal-modal-content.tsx +155 -0
  659. package/src/desktop/components/buttons/arrow-button/arrow-button.module.css +7 -0
  660. package/src/desktop/components/buttons/arrow-button/arrow-button.tsx +29 -0
  661. package/src/desktop/components/buttons/arrow-button/index.ts +1 -0
  662. package/src/desktop/components/buttons/cross-button/cross-button.module.css +6 -0
  663. package/src/desktop/components/buttons/cross-button/cross-button.tsx +24 -0
  664. package/src/desktop/components/buttons/cross-button/index.ts +1 -0
  665. package/src/desktop/components/center-modal/center-modal.tsx +84 -0
  666. package/src/desktop/components/center-modal/index.ts +1 -0
  667. package/src/desktop/components/center-modal/styles/center-modal.module.css +33 -0
  668. package/src/desktop/components/center-modal/styles/index.module.css +2 -0
  669. package/src/desktop/components/center-modal/styles/transitions/safari-transitions.module.css +23 -0
  670. package/src/desktop/components/center-modal/styles/transitions/transitions.module.css +23 -0
  671. package/src/desktop/components/side-modal/get-default-transition-props.ts +41 -0
  672. package/src/desktop/components/side-modal/index.ts +1 -0
  673. package/src/desktop/components/side-modal/side-modal.tsx +95 -0
  674. package/src/desktop/components/side-modal/styles/index.module.css +2 -0
  675. package/src/desktop/components/side-modal/styles/side-modal.module.css +45 -0
  676. package/src/desktop/components/side-modal/styles/transitions/transitions.module.css +46 -0
  677. package/src/desktop/constants/index.ts +2 -0
  678. package/src/desktop/hooks/useModalHeight.tsx +42 -0
  679. package/src/desktop/hooks/useModalWheel.tsx +16 -0
  680. package/src/desktop/hooks/useModalWidth.tsx +52 -0
  681. package/src/desktop/index.ts +14 -0
  682. package/src/desktop/package.json +3 -0
  683. package/src/desktop/styles/margins.module.css +27 -0
  684. package/src/desktop/styles/transitions/full-size-backdrop-transitions.module.css +52 -0
  685. package/src/desktop/styles/transitions/full-size-vertical-bottom-transitions.module.css +24 -0
  686. package/src/desktop/styles/transitions/full-size-vertical-center-transitions.module.css +20 -0
  687. package/src/desktop/styles/transitions/full-size-vertical-top-transitions.module.css +24 -0
  688. package/src/desktop/types/props.ts +66 -0
  689. package/src/desktop/utils/get-full-size-modal-transitions.ts +64 -0
  690. package/src/desktop/utils/get-margins.ts +24 -0
  691. package/src/desktop/vars.css +6 -0
  692. package/src/index.ts +11 -0
  693. package/src/mobile/Component.mobile.tsx +44 -0
  694. package/src/mobile/components/buttons/arrow-button/arrow-button.module.css +11 -0
  695. package/src/mobile/components/buttons/arrow-button/arrow-button.tsx +24 -0
  696. package/src/mobile/components/buttons/arrow-button/index.ts +1 -0
  697. package/src/mobile/components/buttons/cross-button/cross-button.module.css +11 -0
  698. package/src/mobile/components/buttons/cross-button/cross-button.tsx +24 -0
  699. package/src/mobile/components/buttons/cross-button/index.ts +1 -0
  700. package/src/mobile/index.ts +14 -0
  701. package/src/mobile/mobile.module.css +21 -0
  702. package/src/mobile/package.json +3 -0
  703. package/src/mobile/transitions/right-side-transitions.mobile.module.css +23 -0
  704. package/src/mobile/transitions/transitions.mobile.module.css +24 -0
  705. package/src/mobile/types/props.ts +23 -0
  706. package/src/mobile/vars.css +8 -0
  707. package/src/shared/index.ts +2 -0
  708. package/src/shared/package.json +3 -0
  709. package/src/typings/index.ts +25 -0
  710. package/src/typings/margin-type.ts +8 -0
  711. package/src/utils/getUniversalModalTestIds.ts +11 -0
  712. package/src/vars.css +12 -0
  713. package/typings/index.d.ts +22 -0
  714. package/typings/index.js +2 -0
  715. package/typings/margin-type.d.ts +8 -0
  716. package/typings/margin-type.js +2 -0
  717. package/utils/getUniversalModalTestIds.d.ts +8 -0
  718. package/utils/getUniversalModalTestIds.js +17 -0
@@ -0,0 +1,1087 @@
1
+ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
2
+ } /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
3
+ } :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
4
+ } :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
5
+ } :root {
6
+ --shadow-m: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),
7
+ 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
8
+
9
+ /* Hard */
10
+
11
+ /* Up */
12
+
13
+ /* Hard up */
14
+ } :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
15
+ --border-radius-3xl: 24px; /* deprecated */
16
+
17
+ /* новые значения, используйте их */
18
+ --border-radius-24: var(--border-radius-3xl);
19
+ } :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
20
+
21
+ /* новые значения, используйте их */
22
+
23
+ /* no-unit может приводить к проблемам в calc (#1559) */
24
+ /* stylelint-disable-next-line length-zero-no-unit */
25
+ } :root {
26
+ } :root {
27
+ } /* сбрасывает синюю подсветку при нажатии */ .wrapper {
28
+ overflow-x: hidden;
29
+ } .wrapperAlignStart {
30
+ align-items: start;
31
+ } .wrapperAlignEnd {
32
+ align-items: end;
33
+ } .wrapperJustifyCenter {
34
+ justify-content: center;
35
+ } .wrapperJustifyEnd {
36
+ justify-content: end;
37
+ } .component {
38
+ min-width: 500px;
39
+ min-height: 264px;
40
+ height: 100%;
41
+ border-radius: var(--border-radius-24);
42
+ overflow-x: hidden;
43
+ margin: unset;
44
+
45
+ /*
46
+ Применяем аппаратное ускорение с помощью will-change и backface-visibility
47
+ Также в классах анимации добавлен translateZ(0)
48
+ */
49
+ will-change: transform;
50
+ backface-visibility: hidden
51
+ } .component.overlayHidden {
52
+ box-shadow: var(--shadow-m);
53
+ } .component .container {
54
+ height: 100%;
55
+ } /* prettier-ignore */ .marginTop-0 {
56
+ margin-top: 0px;
57
+ } .marginTop-1 {
58
+ margin-top: 1px;
59
+ } .marginTop-2 {
60
+ margin-top: 2px;
61
+ } .marginTop-3 {
62
+ margin-top: 3px;
63
+ } .marginTop-4 {
64
+ margin-top: 4px;
65
+ } .marginTop-5 {
66
+ margin-top: 5px;
67
+ } .marginTop-6 {
68
+ margin-top: 6px;
69
+ } .marginTop-7 {
70
+ margin-top: 7px;
71
+ } .marginTop-8 {
72
+ margin-top: 8px;
73
+ } .marginTop-9 {
74
+ margin-top: 9px;
75
+ } .marginTop-10 {
76
+ margin-top: 10px;
77
+ } .marginTop-11 {
78
+ margin-top: 11px;
79
+ } .marginTop-12 {
80
+ margin-top: 12px;
81
+ } .marginTop-13 {
82
+ margin-top: 13px;
83
+ } .marginTop-14 {
84
+ margin-top: 14px;
85
+ } .marginTop-15 {
86
+ margin-top: 15px;
87
+ } .marginTop-16 {
88
+ margin-top: 16px;
89
+ } .marginTop-17 {
90
+ margin-top: 17px;
91
+ } .marginTop-18 {
92
+ margin-top: 18px;
93
+ } .marginTop-19 {
94
+ margin-top: 19px;
95
+ } .marginTop-20 {
96
+ margin-top: 20px;
97
+ } .marginTop-21 {
98
+ margin-top: 21px;
99
+ } .marginTop-22 {
100
+ margin-top: 22px;
101
+ } .marginTop-23 {
102
+ margin-top: 23px;
103
+ } .marginTop-24 {
104
+ margin-top: 24px;
105
+ } .marginTop-25 {
106
+ margin-top: 25px;
107
+ } .marginTop-26 {
108
+ margin-top: 26px;
109
+ } .marginTop-27 {
110
+ margin-top: 27px;
111
+ } .marginTop-28 {
112
+ margin-top: 28px;
113
+ } .marginTop-29 {
114
+ margin-top: 29px;
115
+ } .marginTop-30 {
116
+ margin-top: 30px;
117
+ } .marginTop-31 {
118
+ margin-top: 31px;
119
+ } .marginTop-32 {
120
+ margin-top: 32px;
121
+ } .marginTop-33 {
122
+ margin-top: 33px;
123
+ } .marginTop-34 {
124
+ margin-top: 34px;
125
+ } .marginTop-35 {
126
+ margin-top: 35px;
127
+ } .marginTop-36 {
128
+ margin-top: 36px;
129
+ } .marginTop-37 {
130
+ margin-top: 37px;
131
+ } .marginTop-38 {
132
+ margin-top: 38px;
133
+ } .marginTop-39 {
134
+ margin-top: 39px;
135
+ } .marginTop-40 {
136
+ margin-top: 40px;
137
+ } .marginTop-41 {
138
+ margin-top: 41px;
139
+ } .marginTop-42 {
140
+ margin-top: 42px;
141
+ } .marginTop-43 {
142
+ margin-top: 43px;
143
+ } .marginTop-44 {
144
+ margin-top: 44px;
145
+ } .marginTop-45 {
146
+ margin-top: 45px;
147
+ } .marginTop-46 {
148
+ margin-top: 46px;
149
+ } .marginTop-47 {
150
+ margin-top: 47px;
151
+ } .marginTop-48 {
152
+ margin-top: 48px;
153
+ } .marginTop-49 {
154
+ margin-top: 49px;
155
+ } .marginTop-50 {
156
+ margin-top: 50px;
157
+ } .marginTop-51 {
158
+ margin-top: 51px;
159
+ } .marginTop-52 {
160
+ margin-top: 52px;
161
+ } .marginTop-53 {
162
+ margin-top: 53px;
163
+ } .marginTop-54 {
164
+ margin-top: 54px;
165
+ } .marginTop-55 {
166
+ margin-top: 55px;
167
+ } .marginTop-56 {
168
+ margin-top: 56px;
169
+ } .marginTop-57 {
170
+ margin-top: 57px;
171
+ } .marginTop-58 {
172
+ margin-top: 58px;
173
+ } .marginTop-59 {
174
+ margin-top: 59px;
175
+ } .marginTop-60 {
176
+ margin-top: 60px;
177
+ } .marginTop-61 {
178
+ margin-top: 61px;
179
+ } .marginTop-62 {
180
+ margin-top: 62px;
181
+ } .marginTop-63 {
182
+ margin-top: 63px;
183
+ } .marginTop-64 {
184
+ margin-top: 64px;
185
+ } .marginTop-65 {
186
+ margin-top: 65px;
187
+ } .marginTop-66 {
188
+ margin-top: 66px;
189
+ } .marginTop-67 {
190
+ margin-top: 67px;
191
+ } .marginTop-68 {
192
+ margin-top: 68px;
193
+ } .marginTop-69 {
194
+ margin-top: 69px;
195
+ } .marginTop-70 {
196
+ margin-top: 70px;
197
+ } .marginTop-71 {
198
+ margin-top: 71px;
199
+ } .marginTop-72 {
200
+ margin-top: 72px;
201
+ } .marginTop-73 {
202
+ margin-top: 73px;
203
+ } .marginTop-74 {
204
+ margin-top: 74px;
205
+ } .marginTop-75 {
206
+ margin-top: 75px;
207
+ } .marginTop-76 {
208
+ margin-top: 76px;
209
+ } .marginTop-77 {
210
+ margin-top: 77px;
211
+ } .marginTop-78 {
212
+ margin-top: 78px;
213
+ } .marginTop-79 {
214
+ margin-top: 79px;
215
+ } .marginTop-80 {
216
+ margin-top: 80px;
217
+ } .marginTop-81 {
218
+ margin-top: 81px;
219
+ } .marginTop-82 {
220
+ margin-top: 82px;
221
+ } .marginTop-83 {
222
+ margin-top: 83px;
223
+ } .marginTop-84 {
224
+ margin-top: 84px;
225
+ } .marginTop-85 {
226
+ margin-top: 85px;
227
+ } .marginTop-86 {
228
+ margin-top: 86px;
229
+ } .marginTop-87 {
230
+ margin-top: 87px;
231
+ } .marginTop-88 {
232
+ margin-top: 88px;
233
+ } .marginTop-89 {
234
+ margin-top: 89px;
235
+ } .marginTop-90 {
236
+ margin-top: 90px;
237
+ } .marginTop-91 {
238
+ margin-top: 91px;
239
+ } .marginTop-92 {
240
+ margin-top: 92px;
241
+ } .marginTop-93 {
242
+ margin-top: 93px;
243
+ } .marginTop-94 {
244
+ margin-top: 94px;
245
+ } .marginTop-95 {
246
+ margin-top: 95px;
247
+ } .marginTop-96 {
248
+ margin-top: 96px;
249
+ } .marginTop-97 {
250
+ margin-top: 97px;
251
+ } .marginTop-98 {
252
+ margin-top: 98px;
253
+ } .marginTop-99 {
254
+ margin-top: 99px;
255
+ } .marginTop-100 {
256
+ margin-top: 100px;
257
+ } .marginTop-101 {
258
+ margin-top: 101px;
259
+ } .marginTop-102 {
260
+ margin-top: 102px;
261
+ } .marginTop-103 {
262
+ margin-top: 103px;
263
+ } .marginTop-104 {
264
+ margin-top: 104px;
265
+ } .marginTop-105 {
266
+ margin-top: 105px;
267
+ } .marginTop-106 {
268
+ margin-top: 106px;
269
+ } .marginTop-107 {
270
+ margin-top: 107px;
271
+ } .marginTop-108 {
272
+ margin-top: 108px;
273
+ } .marginTop-109 {
274
+ margin-top: 109px;
275
+ } .marginTop-110 {
276
+ margin-top: 110px;
277
+ } .marginTop-111 {
278
+ margin-top: 111px;
279
+ } .marginTop-112 {
280
+ margin-top: 112px;
281
+ } .marginTop-113 {
282
+ margin-top: 113px;
283
+ } .marginTop-114 {
284
+ margin-top: 114px;
285
+ } .marginTop-115 {
286
+ margin-top: 115px;
287
+ } .marginTop-116 {
288
+ margin-top: 116px;
289
+ } .marginTop-117 {
290
+ margin-top: 117px;
291
+ } .marginTop-118 {
292
+ margin-top: 118px;
293
+ } .marginTop-119 {
294
+ margin-top: 119px;
295
+ } .marginTop-120 {
296
+ margin-top: 120px;
297
+ } .marginTop-121 {
298
+ margin-top: 121px;
299
+ } .marginTop-122 {
300
+ margin-top: 122px;
301
+ } .marginTop-123 {
302
+ margin-top: 123px;
303
+ } .marginTop-124 {
304
+ margin-top: 124px;
305
+ } .marginTop-125 {
306
+ margin-top: 125px;
307
+ } .marginTop-126 {
308
+ margin-top: 126px;
309
+ } .marginTop-127 {
310
+ margin-top: 127px;
311
+ } .marginTop-128 {
312
+ margin-top: 128px;
313
+ } /* prettier-ignore */ .marginRight-0 {
314
+ margin-right: 0px;
315
+ } .marginRight-1 {
316
+ margin-right: 1px;
317
+ } .marginRight-2 {
318
+ margin-right: 2px;
319
+ } .marginRight-3 {
320
+ margin-right: 3px;
321
+ } .marginRight-4 {
322
+ margin-right: 4px;
323
+ } .marginRight-5 {
324
+ margin-right: 5px;
325
+ } .marginRight-6 {
326
+ margin-right: 6px;
327
+ } .marginRight-7 {
328
+ margin-right: 7px;
329
+ } .marginRight-8 {
330
+ margin-right: 8px;
331
+ } .marginRight-9 {
332
+ margin-right: 9px;
333
+ } .marginRight-10 {
334
+ margin-right: 10px;
335
+ } .marginRight-11 {
336
+ margin-right: 11px;
337
+ } .marginRight-12 {
338
+ margin-right: 12px;
339
+ } .marginRight-13 {
340
+ margin-right: 13px;
341
+ } .marginRight-14 {
342
+ margin-right: 14px;
343
+ } .marginRight-15 {
344
+ margin-right: 15px;
345
+ } .marginRight-16 {
346
+ margin-right: 16px;
347
+ } .marginRight-17 {
348
+ margin-right: 17px;
349
+ } .marginRight-18 {
350
+ margin-right: 18px;
351
+ } .marginRight-19 {
352
+ margin-right: 19px;
353
+ } .marginRight-20 {
354
+ margin-right: 20px;
355
+ } .marginRight-21 {
356
+ margin-right: 21px;
357
+ } .marginRight-22 {
358
+ margin-right: 22px;
359
+ } .marginRight-23 {
360
+ margin-right: 23px;
361
+ } .marginRight-24 {
362
+ margin-right: 24px;
363
+ } .marginRight-25 {
364
+ margin-right: 25px;
365
+ } .marginRight-26 {
366
+ margin-right: 26px;
367
+ } .marginRight-27 {
368
+ margin-right: 27px;
369
+ } .marginRight-28 {
370
+ margin-right: 28px;
371
+ } .marginRight-29 {
372
+ margin-right: 29px;
373
+ } .marginRight-30 {
374
+ margin-right: 30px;
375
+ } .marginRight-31 {
376
+ margin-right: 31px;
377
+ } .marginRight-32 {
378
+ margin-right: 32px;
379
+ } .marginRight-33 {
380
+ margin-right: 33px;
381
+ } .marginRight-34 {
382
+ margin-right: 34px;
383
+ } .marginRight-35 {
384
+ margin-right: 35px;
385
+ } .marginRight-36 {
386
+ margin-right: 36px;
387
+ } .marginRight-37 {
388
+ margin-right: 37px;
389
+ } .marginRight-38 {
390
+ margin-right: 38px;
391
+ } .marginRight-39 {
392
+ margin-right: 39px;
393
+ } .marginRight-40 {
394
+ margin-right: 40px;
395
+ } .marginRight-41 {
396
+ margin-right: 41px;
397
+ } .marginRight-42 {
398
+ margin-right: 42px;
399
+ } .marginRight-43 {
400
+ margin-right: 43px;
401
+ } .marginRight-44 {
402
+ margin-right: 44px;
403
+ } .marginRight-45 {
404
+ margin-right: 45px;
405
+ } .marginRight-46 {
406
+ margin-right: 46px;
407
+ } .marginRight-47 {
408
+ margin-right: 47px;
409
+ } .marginRight-48 {
410
+ margin-right: 48px;
411
+ } .marginRight-49 {
412
+ margin-right: 49px;
413
+ } .marginRight-50 {
414
+ margin-right: 50px;
415
+ } .marginRight-51 {
416
+ margin-right: 51px;
417
+ } .marginRight-52 {
418
+ margin-right: 52px;
419
+ } .marginRight-53 {
420
+ margin-right: 53px;
421
+ } .marginRight-54 {
422
+ margin-right: 54px;
423
+ } .marginRight-55 {
424
+ margin-right: 55px;
425
+ } .marginRight-56 {
426
+ margin-right: 56px;
427
+ } .marginRight-57 {
428
+ margin-right: 57px;
429
+ } .marginRight-58 {
430
+ margin-right: 58px;
431
+ } .marginRight-59 {
432
+ margin-right: 59px;
433
+ } .marginRight-60 {
434
+ margin-right: 60px;
435
+ } .marginRight-61 {
436
+ margin-right: 61px;
437
+ } .marginRight-62 {
438
+ margin-right: 62px;
439
+ } .marginRight-63 {
440
+ margin-right: 63px;
441
+ } .marginRight-64 {
442
+ margin-right: 64px;
443
+ } .marginRight-65 {
444
+ margin-right: 65px;
445
+ } .marginRight-66 {
446
+ margin-right: 66px;
447
+ } .marginRight-67 {
448
+ margin-right: 67px;
449
+ } .marginRight-68 {
450
+ margin-right: 68px;
451
+ } .marginRight-69 {
452
+ margin-right: 69px;
453
+ } .marginRight-70 {
454
+ margin-right: 70px;
455
+ } .marginRight-71 {
456
+ margin-right: 71px;
457
+ } .marginRight-72 {
458
+ margin-right: 72px;
459
+ } .marginRight-73 {
460
+ margin-right: 73px;
461
+ } .marginRight-74 {
462
+ margin-right: 74px;
463
+ } .marginRight-75 {
464
+ margin-right: 75px;
465
+ } .marginRight-76 {
466
+ margin-right: 76px;
467
+ } .marginRight-77 {
468
+ margin-right: 77px;
469
+ } .marginRight-78 {
470
+ margin-right: 78px;
471
+ } .marginRight-79 {
472
+ margin-right: 79px;
473
+ } .marginRight-80 {
474
+ margin-right: 80px;
475
+ } .marginRight-81 {
476
+ margin-right: 81px;
477
+ } .marginRight-82 {
478
+ margin-right: 82px;
479
+ } .marginRight-83 {
480
+ margin-right: 83px;
481
+ } .marginRight-84 {
482
+ margin-right: 84px;
483
+ } .marginRight-85 {
484
+ margin-right: 85px;
485
+ } .marginRight-86 {
486
+ margin-right: 86px;
487
+ } .marginRight-87 {
488
+ margin-right: 87px;
489
+ } .marginRight-88 {
490
+ margin-right: 88px;
491
+ } .marginRight-89 {
492
+ margin-right: 89px;
493
+ } .marginRight-90 {
494
+ margin-right: 90px;
495
+ } .marginRight-91 {
496
+ margin-right: 91px;
497
+ } .marginRight-92 {
498
+ margin-right: 92px;
499
+ } .marginRight-93 {
500
+ margin-right: 93px;
501
+ } .marginRight-94 {
502
+ margin-right: 94px;
503
+ } .marginRight-95 {
504
+ margin-right: 95px;
505
+ } .marginRight-96 {
506
+ margin-right: 96px;
507
+ } .marginRight-97 {
508
+ margin-right: 97px;
509
+ } .marginRight-98 {
510
+ margin-right: 98px;
511
+ } .marginRight-99 {
512
+ margin-right: 99px;
513
+ } .marginRight-100 {
514
+ margin-right: 100px;
515
+ } .marginRight-101 {
516
+ margin-right: 101px;
517
+ } .marginRight-102 {
518
+ margin-right: 102px;
519
+ } .marginRight-103 {
520
+ margin-right: 103px;
521
+ } .marginRight-104 {
522
+ margin-right: 104px;
523
+ } .marginRight-105 {
524
+ margin-right: 105px;
525
+ } .marginRight-106 {
526
+ margin-right: 106px;
527
+ } .marginRight-107 {
528
+ margin-right: 107px;
529
+ } .marginRight-108 {
530
+ margin-right: 108px;
531
+ } .marginRight-109 {
532
+ margin-right: 109px;
533
+ } .marginRight-110 {
534
+ margin-right: 110px;
535
+ } .marginRight-111 {
536
+ margin-right: 111px;
537
+ } .marginRight-112 {
538
+ margin-right: 112px;
539
+ } .marginRight-113 {
540
+ margin-right: 113px;
541
+ } .marginRight-114 {
542
+ margin-right: 114px;
543
+ } .marginRight-115 {
544
+ margin-right: 115px;
545
+ } .marginRight-116 {
546
+ margin-right: 116px;
547
+ } .marginRight-117 {
548
+ margin-right: 117px;
549
+ } .marginRight-118 {
550
+ margin-right: 118px;
551
+ } .marginRight-119 {
552
+ margin-right: 119px;
553
+ } .marginRight-120 {
554
+ margin-right: 120px;
555
+ } .marginRight-121 {
556
+ margin-right: 121px;
557
+ } .marginRight-122 {
558
+ margin-right: 122px;
559
+ } .marginRight-123 {
560
+ margin-right: 123px;
561
+ } .marginRight-124 {
562
+ margin-right: 124px;
563
+ } .marginRight-125 {
564
+ margin-right: 125px;
565
+ } .marginRight-126 {
566
+ margin-right: 126px;
567
+ } .marginRight-127 {
568
+ margin-right: 127px;
569
+ } .marginRight-128 {
570
+ margin-right: 128px;
571
+ } /* prettier-ignore */ .marginBottom-0 {
572
+ margin-bottom: 0px;
573
+ } .marginBottom-1 {
574
+ margin-bottom: 1px;
575
+ } .marginBottom-2 {
576
+ margin-bottom: 2px;
577
+ } .marginBottom-3 {
578
+ margin-bottom: 3px;
579
+ } .marginBottom-4 {
580
+ margin-bottom: 4px;
581
+ } .marginBottom-5 {
582
+ margin-bottom: 5px;
583
+ } .marginBottom-6 {
584
+ margin-bottom: 6px;
585
+ } .marginBottom-7 {
586
+ margin-bottom: 7px;
587
+ } .marginBottom-8 {
588
+ margin-bottom: 8px;
589
+ } .marginBottom-9 {
590
+ margin-bottom: 9px;
591
+ } .marginBottom-10 {
592
+ margin-bottom: 10px;
593
+ } .marginBottom-11 {
594
+ margin-bottom: 11px;
595
+ } .marginBottom-12 {
596
+ margin-bottom: 12px;
597
+ } .marginBottom-13 {
598
+ margin-bottom: 13px;
599
+ } .marginBottom-14 {
600
+ margin-bottom: 14px;
601
+ } .marginBottom-15 {
602
+ margin-bottom: 15px;
603
+ } .marginBottom-16 {
604
+ margin-bottom: 16px;
605
+ } .marginBottom-17 {
606
+ margin-bottom: 17px;
607
+ } .marginBottom-18 {
608
+ margin-bottom: 18px;
609
+ } .marginBottom-19 {
610
+ margin-bottom: 19px;
611
+ } .marginBottom-20 {
612
+ margin-bottom: 20px;
613
+ } .marginBottom-21 {
614
+ margin-bottom: 21px;
615
+ } .marginBottom-22 {
616
+ margin-bottom: 22px;
617
+ } .marginBottom-23 {
618
+ margin-bottom: 23px;
619
+ } .marginBottom-24 {
620
+ margin-bottom: 24px;
621
+ } .marginBottom-25 {
622
+ margin-bottom: 25px;
623
+ } .marginBottom-26 {
624
+ margin-bottom: 26px;
625
+ } .marginBottom-27 {
626
+ margin-bottom: 27px;
627
+ } .marginBottom-28 {
628
+ margin-bottom: 28px;
629
+ } .marginBottom-29 {
630
+ margin-bottom: 29px;
631
+ } .marginBottom-30 {
632
+ margin-bottom: 30px;
633
+ } .marginBottom-31 {
634
+ margin-bottom: 31px;
635
+ } .marginBottom-32 {
636
+ margin-bottom: 32px;
637
+ } .marginBottom-33 {
638
+ margin-bottom: 33px;
639
+ } .marginBottom-34 {
640
+ margin-bottom: 34px;
641
+ } .marginBottom-35 {
642
+ margin-bottom: 35px;
643
+ } .marginBottom-36 {
644
+ margin-bottom: 36px;
645
+ } .marginBottom-37 {
646
+ margin-bottom: 37px;
647
+ } .marginBottom-38 {
648
+ margin-bottom: 38px;
649
+ } .marginBottom-39 {
650
+ margin-bottom: 39px;
651
+ } .marginBottom-40 {
652
+ margin-bottom: 40px;
653
+ } .marginBottom-41 {
654
+ margin-bottom: 41px;
655
+ } .marginBottom-42 {
656
+ margin-bottom: 42px;
657
+ } .marginBottom-43 {
658
+ margin-bottom: 43px;
659
+ } .marginBottom-44 {
660
+ margin-bottom: 44px;
661
+ } .marginBottom-45 {
662
+ margin-bottom: 45px;
663
+ } .marginBottom-46 {
664
+ margin-bottom: 46px;
665
+ } .marginBottom-47 {
666
+ margin-bottom: 47px;
667
+ } .marginBottom-48 {
668
+ margin-bottom: 48px;
669
+ } .marginBottom-49 {
670
+ margin-bottom: 49px;
671
+ } .marginBottom-50 {
672
+ margin-bottom: 50px;
673
+ } .marginBottom-51 {
674
+ margin-bottom: 51px;
675
+ } .marginBottom-52 {
676
+ margin-bottom: 52px;
677
+ } .marginBottom-53 {
678
+ margin-bottom: 53px;
679
+ } .marginBottom-54 {
680
+ margin-bottom: 54px;
681
+ } .marginBottom-55 {
682
+ margin-bottom: 55px;
683
+ } .marginBottom-56 {
684
+ margin-bottom: 56px;
685
+ } .marginBottom-57 {
686
+ margin-bottom: 57px;
687
+ } .marginBottom-58 {
688
+ margin-bottom: 58px;
689
+ } .marginBottom-59 {
690
+ margin-bottom: 59px;
691
+ } .marginBottom-60 {
692
+ margin-bottom: 60px;
693
+ } .marginBottom-61 {
694
+ margin-bottom: 61px;
695
+ } .marginBottom-62 {
696
+ margin-bottom: 62px;
697
+ } .marginBottom-63 {
698
+ margin-bottom: 63px;
699
+ } .marginBottom-64 {
700
+ margin-bottom: 64px;
701
+ } .marginBottom-65 {
702
+ margin-bottom: 65px;
703
+ } .marginBottom-66 {
704
+ margin-bottom: 66px;
705
+ } .marginBottom-67 {
706
+ margin-bottom: 67px;
707
+ } .marginBottom-68 {
708
+ margin-bottom: 68px;
709
+ } .marginBottom-69 {
710
+ margin-bottom: 69px;
711
+ } .marginBottom-70 {
712
+ margin-bottom: 70px;
713
+ } .marginBottom-71 {
714
+ margin-bottom: 71px;
715
+ } .marginBottom-72 {
716
+ margin-bottom: 72px;
717
+ } .marginBottom-73 {
718
+ margin-bottom: 73px;
719
+ } .marginBottom-74 {
720
+ margin-bottom: 74px;
721
+ } .marginBottom-75 {
722
+ margin-bottom: 75px;
723
+ } .marginBottom-76 {
724
+ margin-bottom: 76px;
725
+ } .marginBottom-77 {
726
+ margin-bottom: 77px;
727
+ } .marginBottom-78 {
728
+ margin-bottom: 78px;
729
+ } .marginBottom-79 {
730
+ margin-bottom: 79px;
731
+ } .marginBottom-80 {
732
+ margin-bottom: 80px;
733
+ } .marginBottom-81 {
734
+ margin-bottom: 81px;
735
+ } .marginBottom-82 {
736
+ margin-bottom: 82px;
737
+ } .marginBottom-83 {
738
+ margin-bottom: 83px;
739
+ } .marginBottom-84 {
740
+ margin-bottom: 84px;
741
+ } .marginBottom-85 {
742
+ margin-bottom: 85px;
743
+ } .marginBottom-86 {
744
+ margin-bottom: 86px;
745
+ } .marginBottom-87 {
746
+ margin-bottom: 87px;
747
+ } .marginBottom-88 {
748
+ margin-bottom: 88px;
749
+ } .marginBottom-89 {
750
+ margin-bottom: 89px;
751
+ } .marginBottom-90 {
752
+ margin-bottom: 90px;
753
+ } .marginBottom-91 {
754
+ margin-bottom: 91px;
755
+ } .marginBottom-92 {
756
+ margin-bottom: 92px;
757
+ } .marginBottom-93 {
758
+ margin-bottom: 93px;
759
+ } .marginBottom-94 {
760
+ margin-bottom: 94px;
761
+ } .marginBottom-95 {
762
+ margin-bottom: 95px;
763
+ } .marginBottom-96 {
764
+ margin-bottom: 96px;
765
+ } .marginBottom-97 {
766
+ margin-bottom: 97px;
767
+ } .marginBottom-98 {
768
+ margin-bottom: 98px;
769
+ } .marginBottom-99 {
770
+ margin-bottom: 99px;
771
+ } .marginBottom-100 {
772
+ margin-bottom: 100px;
773
+ } .marginBottom-101 {
774
+ margin-bottom: 101px;
775
+ } .marginBottom-102 {
776
+ margin-bottom: 102px;
777
+ } .marginBottom-103 {
778
+ margin-bottom: 103px;
779
+ } .marginBottom-104 {
780
+ margin-bottom: 104px;
781
+ } .marginBottom-105 {
782
+ margin-bottom: 105px;
783
+ } .marginBottom-106 {
784
+ margin-bottom: 106px;
785
+ } .marginBottom-107 {
786
+ margin-bottom: 107px;
787
+ } .marginBottom-108 {
788
+ margin-bottom: 108px;
789
+ } .marginBottom-109 {
790
+ margin-bottom: 109px;
791
+ } .marginBottom-110 {
792
+ margin-bottom: 110px;
793
+ } .marginBottom-111 {
794
+ margin-bottom: 111px;
795
+ } .marginBottom-112 {
796
+ margin-bottom: 112px;
797
+ } .marginBottom-113 {
798
+ margin-bottom: 113px;
799
+ } .marginBottom-114 {
800
+ margin-bottom: 114px;
801
+ } .marginBottom-115 {
802
+ margin-bottom: 115px;
803
+ } .marginBottom-116 {
804
+ margin-bottom: 116px;
805
+ } .marginBottom-117 {
806
+ margin-bottom: 117px;
807
+ } .marginBottom-118 {
808
+ margin-bottom: 118px;
809
+ } .marginBottom-119 {
810
+ margin-bottom: 119px;
811
+ } .marginBottom-120 {
812
+ margin-bottom: 120px;
813
+ } .marginBottom-121 {
814
+ margin-bottom: 121px;
815
+ } .marginBottom-122 {
816
+ margin-bottom: 122px;
817
+ } .marginBottom-123 {
818
+ margin-bottom: 123px;
819
+ } .marginBottom-124 {
820
+ margin-bottom: 124px;
821
+ } .marginBottom-125 {
822
+ margin-bottom: 125px;
823
+ } .marginBottom-126 {
824
+ margin-bottom: 126px;
825
+ } .marginBottom-127 {
826
+ margin-bottom: 127px;
827
+ } .marginBottom-128 {
828
+ margin-bottom: 128px;
829
+ } /* prettier-ignore */ .marginLeft-0 {
830
+ margin-left: 0px;
831
+ } .marginLeft-1 {
832
+ margin-left: 1px;
833
+ } .marginLeft-2 {
834
+ margin-left: 2px;
835
+ } .marginLeft-3 {
836
+ margin-left: 3px;
837
+ } .marginLeft-4 {
838
+ margin-left: 4px;
839
+ } .marginLeft-5 {
840
+ margin-left: 5px;
841
+ } .marginLeft-6 {
842
+ margin-left: 6px;
843
+ } .marginLeft-7 {
844
+ margin-left: 7px;
845
+ } .marginLeft-8 {
846
+ margin-left: 8px;
847
+ } .marginLeft-9 {
848
+ margin-left: 9px;
849
+ } .marginLeft-10 {
850
+ margin-left: 10px;
851
+ } .marginLeft-11 {
852
+ margin-left: 11px;
853
+ } .marginLeft-12 {
854
+ margin-left: 12px;
855
+ } .marginLeft-13 {
856
+ margin-left: 13px;
857
+ } .marginLeft-14 {
858
+ margin-left: 14px;
859
+ } .marginLeft-15 {
860
+ margin-left: 15px;
861
+ } .marginLeft-16 {
862
+ margin-left: 16px;
863
+ } .marginLeft-17 {
864
+ margin-left: 17px;
865
+ } .marginLeft-18 {
866
+ margin-left: 18px;
867
+ } .marginLeft-19 {
868
+ margin-left: 19px;
869
+ } .marginLeft-20 {
870
+ margin-left: 20px;
871
+ } .marginLeft-21 {
872
+ margin-left: 21px;
873
+ } .marginLeft-22 {
874
+ margin-left: 22px;
875
+ } .marginLeft-23 {
876
+ margin-left: 23px;
877
+ } .marginLeft-24 {
878
+ margin-left: 24px;
879
+ } .marginLeft-25 {
880
+ margin-left: 25px;
881
+ } .marginLeft-26 {
882
+ margin-left: 26px;
883
+ } .marginLeft-27 {
884
+ margin-left: 27px;
885
+ } .marginLeft-28 {
886
+ margin-left: 28px;
887
+ } .marginLeft-29 {
888
+ margin-left: 29px;
889
+ } .marginLeft-30 {
890
+ margin-left: 30px;
891
+ } .marginLeft-31 {
892
+ margin-left: 31px;
893
+ } .marginLeft-32 {
894
+ margin-left: 32px;
895
+ } .marginLeft-33 {
896
+ margin-left: 33px;
897
+ } .marginLeft-34 {
898
+ margin-left: 34px;
899
+ } .marginLeft-35 {
900
+ margin-left: 35px;
901
+ } .marginLeft-36 {
902
+ margin-left: 36px;
903
+ } .marginLeft-37 {
904
+ margin-left: 37px;
905
+ } .marginLeft-38 {
906
+ margin-left: 38px;
907
+ } .marginLeft-39 {
908
+ margin-left: 39px;
909
+ } .marginLeft-40 {
910
+ margin-left: 40px;
911
+ } .marginLeft-41 {
912
+ margin-left: 41px;
913
+ } .marginLeft-42 {
914
+ margin-left: 42px;
915
+ } .marginLeft-43 {
916
+ margin-left: 43px;
917
+ } .marginLeft-44 {
918
+ margin-left: 44px;
919
+ } .marginLeft-45 {
920
+ margin-left: 45px;
921
+ } .marginLeft-46 {
922
+ margin-left: 46px;
923
+ } .marginLeft-47 {
924
+ margin-left: 47px;
925
+ } .marginLeft-48 {
926
+ margin-left: 48px;
927
+ } .marginLeft-49 {
928
+ margin-left: 49px;
929
+ } .marginLeft-50 {
930
+ margin-left: 50px;
931
+ } .marginLeft-51 {
932
+ margin-left: 51px;
933
+ } .marginLeft-52 {
934
+ margin-left: 52px;
935
+ } .marginLeft-53 {
936
+ margin-left: 53px;
937
+ } .marginLeft-54 {
938
+ margin-left: 54px;
939
+ } .marginLeft-55 {
940
+ margin-left: 55px;
941
+ } .marginLeft-56 {
942
+ margin-left: 56px;
943
+ } .marginLeft-57 {
944
+ margin-left: 57px;
945
+ } .marginLeft-58 {
946
+ margin-left: 58px;
947
+ } .marginLeft-59 {
948
+ margin-left: 59px;
949
+ } .marginLeft-60 {
950
+ margin-left: 60px;
951
+ } .marginLeft-61 {
952
+ margin-left: 61px;
953
+ } .marginLeft-62 {
954
+ margin-left: 62px;
955
+ } .marginLeft-63 {
956
+ margin-left: 63px;
957
+ } .marginLeft-64 {
958
+ margin-left: 64px;
959
+ } .marginLeft-65 {
960
+ margin-left: 65px;
961
+ } .marginLeft-66 {
962
+ margin-left: 66px;
963
+ } .marginLeft-67 {
964
+ margin-left: 67px;
965
+ } .marginLeft-68 {
966
+ margin-left: 68px;
967
+ } .marginLeft-69 {
968
+ margin-left: 69px;
969
+ } .marginLeft-70 {
970
+ margin-left: 70px;
971
+ } .marginLeft-71 {
972
+ margin-left: 71px;
973
+ } .marginLeft-72 {
974
+ margin-left: 72px;
975
+ } .marginLeft-73 {
976
+ margin-left: 73px;
977
+ } .marginLeft-74 {
978
+ margin-left: 74px;
979
+ } .marginLeft-75 {
980
+ margin-left: 75px;
981
+ } .marginLeft-76 {
982
+ margin-left: 76px;
983
+ } .marginLeft-77 {
984
+ margin-left: 77px;
985
+ } .marginLeft-78 {
986
+ margin-left: 78px;
987
+ } .marginLeft-79 {
988
+ margin-left: 79px;
989
+ } .marginLeft-80 {
990
+ margin-left: 80px;
991
+ } .marginLeft-81 {
992
+ margin-left: 81px;
993
+ } .marginLeft-82 {
994
+ margin-left: 82px;
995
+ } .marginLeft-83 {
996
+ margin-left: 83px;
997
+ } .marginLeft-84 {
998
+ margin-left: 84px;
999
+ } .marginLeft-85 {
1000
+ margin-left: 85px;
1001
+ } .marginLeft-86 {
1002
+ margin-left: 86px;
1003
+ } .marginLeft-87 {
1004
+ margin-left: 87px;
1005
+ } .marginLeft-88 {
1006
+ margin-left: 88px;
1007
+ } .marginLeft-89 {
1008
+ margin-left: 89px;
1009
+ } .marginLeft-90 {
1010
+ margin-left: 90px;
1011
+ } .marginLeft-91 {
1012
+ margin-left: 91px;
1013
+ } .marginLeft-92 {
1014
+ margin-left: 92px;
1015
+ } .marginLeft-93 {
1016
+ margin-left: 93px;
1017
+ } .marginLeft-94 {
1018
+ margin-left: 94px;
1019
+ } .marginLeft-95 {
1020
+ margin-left: 95px;
1021
+ } .marginLeft-96 {
1022
+ margin-left: 96px;
1023
+ } .marginLeft-97 {
1024
+ margin-left: 97px;
1025
+ } .marginLeft-98 {
1026
+ margin-left: 98px;
1027
+ } .marginLeft-99 {
1028
+ margin-left: 99px;
1029
+ } .marginLeft-100 {
1030
+ margin-left: 100px;
1031
+ } .marginLeft-101 {
1032
+ margin-left: 101px;
1033
+ } .marginLeft-102 {
1034
+ margin-left: 102px;
1035
+ } .marginLeft-103 {
1036
+ margin-left: 103px;
1037
+ } .marginLeft-104 {
1038
+ margin-left: 104px;
1039
+ } .marginLeft-105 {
1040
+ margin-left: 105px;
1041
+ } .marginLeft-106 {
1042
+ margin-left: 106px;
1043
+ } .marginLeft-107 {
1044
+ margin-left: 107px;
1045
+ } .marginLeft-108 {
1046
+ margin-left: 108px;
1047
+ } .marginLeft-109 {
1048
+ margin-left: 109px;
1049
+ } .marginLeft-110 {
1050
+ margin-left: 110px;
1051
+ } .marginLeft-111 {
1052
+ margin-left: 111px;
1053
+ } .marginLeft-112 {
1054
+ margin-left: 112px;
1055
+ } .marginLeft-113 {
1056
+ margin-left: 113px;
1057
+ } .marginLeft-114 {
1058
+ margin-left: 114px;
1059
+ } .marginLeft-115 {
1060
+ margin-left: 115px;
1061
+ } .marginLeft-116 {
1062
+ margin-left: 116px;
1063
+ } .marginLeft-117 {
1064
+ margin-left: 117px;
1065
+ } .marginLeft-118 {
1066
+ margin-left: 118px;
1067
+ } .marginLeft-119 {
1068
+ margin-left: 119px;
1069
+ } .marginLeft-120 {
1070
+ margin-left: 120px;
1071
+ } .marginLeft-121 {
1072
+ margin-left: 121px;
1073
+ } .marginLeft-122 {
1074
+ margin-left: 122px;
1075
+ } .marginLeft-123 {
1076
+ margin-left: 123px;
1077
+ } .marginLeft-124 {
1078
+ margin-left: 124px;
1079
+ } .marginLeft-125 {
1080
+ margin-left: 125px;
1081
+ } .marginLeft-126 {
1082
+ margin-left: 126px;
1083
+ } .marginLeft-127 {
1084
+ margin-left: 127px;
1085
+ } .marginLeft-128 {
1086
+ margin-left: 128px;
1087
+ }