@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,2110 @@
1
+ /* */
2
+
3
+ :root {
4
+
5
+ /* scroll */
6
+ }
7
+
8
+ .component {
9
+ min-width: 500px;
10
+ width: 500px;
11
+ min-height: 264px;
12
+ height: 100%;
13
+ border-radius: var(--border-radius-24);
14
+ overflow-x: hidden;
15
+
16
+ /*
17
+ Применяем аппаратное ускорение с помощью will-change и backface-visibility
18
+ Также в классах анимации добавлен translateZ(0)
19
+ */
20
+ will-change: transform, opacity;
21
+ backface-visibility: hidden
22
+ }
23
+
24
+ .component.overlayHidden {
25
+ box-shadow: var(--shadow-m);
26
+ }
27
+
28
+ .component .container {
29
+ height: 100%;
30
+ }
31
+
32
+ .verticalTop {
33
+ margin-top: 0;
34
+ }
35
+
36
+ .verticalBottom {
37
+ margin-bottom: 0;
38
+ }
39
+
40
+ /* prettier-ignore */
41
+
42
+ .marginTop-0 {
43
+ margin-top: 0px;
44
+ }
45
+
46
+ .marginTop-1 {
47
+ margin-top: 1px;
48
+ }
49
+
50
+ .marginTop-2 {
51
+ margin-top: 2px;
52
+ }
53
+
54
+ .marginTop-3 {
55
+ margin-top: 3px;
56
+ }
57
+
58
+ .marginTop-4 {
59
+ margin-top: 4px;
60
+ }
61
+
62
+ .marginTop-5 {
63
+ margin-top: 5px;
64
+ }
65
+
66
+ .marginTop-6 {
67
+ margin-top: 6px;
68
+ }
69
+
70
+ .marginTop-7 {
71
+ margin-top: 7px;
72
+ }
73
+
74
+ .marginTop-8 {
75
+ margin-top: 8px;
76
+ }
77
+
78
+ .marginTop-9 {
79
+ margin-top: 9px;
80
+ }
81
+
82
+ .marginTop-10 {
83
+ margin-top: 10px;
84
+ }
85
+
86
+ .marginTop-11 {
87
+ margin-top: 11px;
88
+ }
89
+
90
+ .marginTop-12 {
91
+ margin-top: 12px;
92
+ }
93
+
94
+ .marginTop-13 {
95
+ margin-top: 13px;
96
+ }
97
+
98
+ .marginTop-14 {
99
+ margin-top: 14px;
100
+ }
101
+
102
+ .marginTop-15 {
103
+ margin-top: 15px;
104
+ }
105
+
106
+ .marginTop-16 {
107
+ margin-top: 16px;
108
+ }
109
+
110
+ .marginTop-17 {
111
+ margin-top: 17px;
112
+ }
113
+
114
+ .marginTop-18 {
115
+ margin-top: 18px;
116
+ }
117
+
118
+ .marginTop-19 {
119
+ margin-top: 19px;
120
+ }
121
+
122
+ .marginTop-20 {
123
+ margin-top: 20px;
124
+ }
125
+
126
+ .marginTop-21 {
127
+ margin-top: 21px;
128
+ }
129
+
130
+ .marginTop-22 {
131
+ margin-top: 22px;
132
+ }
133
+
134
+ .marginTop-23 {
135
+ margin-top: 23px;
136
+ }
137
+
138
+ .marginTop-24 {
139
+ margin-top: 24px;
140
+ }
141
+
142
+ .marginTop-25 {
143
+ margin-top: 25px;
144
+ }
145
+
146
+ .marginTop-26 {
147
+ margin-top: 26px;
148
+ }
149
+
150
+ .marginTop-27 {
151
+ margin-top: 27px;
152
+ }
153
+
154
+ .marginTop-28 {
155
+ margin-top: 28px;
156
+ }
157
+
158
+ .marginTop-29 {
159
+ margin-top: 29px;
160
+ }
161
+
162
+ .marginTop-30 {
163
+ margin-top: 30px;
164
+ }
165
+
166
+ .marginTop-31 {
167
+ margin-top: 31px;
168
+ }
169
+
170
+ .marginTop-32 {
171
+ margin-top: 32px;
172
+ }
173
+
174
+ .marginTop-33 {
175
+ margin-top: 33px;
176
+ }
177
+
178
+ .marginTop-34 {
179
+ margin-top: 34px;
180
+ }
181
+
182
+ .marginTop-35 {
183
+ margin-top: 35px;
184
+ }
185
+
186
+ .marginTop-36 {
187
+ margin-top: 36px;
188
+ }
189
+
190
+ .marginTop-37 {
191
+ margin-top: 37px;
192
+ }
193
+
194
+ .marginTop-38 {
195
+ margin-top: 38px;
196
+ }
197
+
198
+ .marginTop-39 {
199
+ margin-top: 39px;
200
+ }
201
+
202
+ .marginTop-40 {
203
+ margin-top: 40px;
204
+ }
205
+
206
+ .marginTop-41 {
207
+ margin-top: 41px;
208
+ }
209
+
210
+ .marginTop-42 {
211
+ margin-top: 42px;
212
+ }
213
+
214
+ .marginTop-43 {
215
+ margin-top: 43px;
216
+ }
217
+
218
+ .marginTop-44 {
219
+ margin-top: 44px;
220
+ }
221
+
222
+ .marginTop-45 {
223
+ margin-top: 45px;
224
+ }
225
+
226
+ .marginTop-46 {
227
+ margin-top: 46px;
228
+ }
229
+
230
+ .marginTop-47 {
231
+ margin-top: 47px;
232
+ }
233
+
234
+ .marginTop-48 {
235
+ margin-top: 48px;
236
+ }
237
+
238
+ .marginTop-49 {
239
+ margin-top: 49px;
240
+ }
241
+
242
+ .marginTop-50 {
243
+ margin-top: 50px;
244
+ }
245
+
246
+ .marginTop-51 {
247
+ margin-top: 51px;
248
+ }
249
+
250
+ .marginTop-52 {
251
+ margin-top: 52px;
252
+ }
253
+
254
+ .marginTop-53 {
255
+ margin-top: 53px;
256
+ }
257
+
258
+ .marginTop-54 {
259
+ margin-top: 54px;
260
+ }
261
+
262
+ .marginTop-55 {
263
+ margin-top: 55px;
264
+ }
265
+
266
+ .marginTop-56 {
267
+ margin-top: 56px;
268
+ }
269
+
270
+ .marginTop-57 {
271
+ margin-top: 57px;
272
+ }
273
+
274
+ .marginTop-58 {
275
+ margin-top: 58px;
276
+ }
277
+
278
+ .marginTop-59 {
279
+ margin-top: 59px;
280
+ }
281
+
282
+ .marginTop-60 {
283
+ margin-top: 60px;
284
+ }
285
+
286
+ .marginTop-61 {
287
+ margin-top: 61px;
288
+ }
289
+
290
+ .marginTop-62 {
291
+ margin-top: 62px;
292
+ }
293
+
294
+ .marginTop-63 {
295
+ margin-top: 63px;
296
+ }
297
+
298
+ .marginTop-64 {
299
+ margin-top: 64px;
300
+ }
301
+
302
+ .marginTop-65 {
303
+ margin-top: 65px;
304
+ }
305
+
306
+ .marginTop-66 {
307
+ margin-top: 66px;
308
+ }
309
+
310
+ .marginTop-67 {
311
+ margin-top: 67px;
312
+ }
313
+
314
+ .marginTop-68 {
315
+ margin-top: 68px;
316
+ }
317
+
318
+ .marginTop-69 {
319
+ margin-top: 69px;
320
+ }
321
+
322
+ .marginTop-70 {
323
+ margin-top: 70px;
324
+ }
325
+
326
+ .marginTop-71 {
327
+ margin-top: 71px;
328
+ }
329
+
330
+ .marginTop-72 {
331
+ margin-top: 72px;
332
+ }
333
+
334
+ .marginTop-73 {
335
+ margin-top: 73px;
336
+ }
337
+
338
+ .marginTop-74 {
339
+ margin-top: 74px;
340
+ }
341
+
342
+ .marginTop-75 {
343
+ margin-top: 75px;
344
+ }
345
+
346
+ .marginTop-76 {
347
+ margin-top: 76px;
348
+ }
349
+
350
+ .marginTop-77 {
351
+ margin-top: 77px;
352
+ }
353
+
354
+ .marginTop-78 {
355
+ margin-top: 78px;
356
+ }
357
+
358
+ .marginTop-79 {
359
+ margin-top: 79px;
360
+ }
361
+
362
+ .marginTop-80 {
363
+ margin-top: 80px;
364
+ }
365
+
366
+ .marginTop-81 {
367
+ margin-top: 81px;
368
+ }
369
+
370
+ .marginTop-82 {
371
+ margin-top: 82px;
372
+ }
373
+
374
+ .marginTop-83 {
375
+ margin-top: 83px;
376
+ }
377
+
378
+ .marginTop-84 {
379
+ margin-top: 84px;
380
+ }
381
+
382
+ .marginTop-85 {
383
+ margin-top: 85px;
384
+ }
385
+
386
+ .marginTop-86 {
387
+ margin-top: 86px;
388
+ }
389
+
390
+ .marginTop-87 {
391
+ margin-top: 87px;
392
+ }
393
+
394
+ .marginTop-88 {
395
+ margin-top: 88px;
396
+ }
397
+
398
+ .marginTop-89 {
399
+ margin-top: 89px;
400
+ }
401
+
402
+ .marginTop-90 {
403
+ margin-top: 90px;
404
+ }
405
+
406
+ .marginTop-91 {
407
+ margin-top: 91px;
408
+ }
409
+
410
+ .marginTop-92 {
411
+ margin-top: 92px;
412
+ }
413
+
414
+ .marginTop-93 {
415
+ margin-top: 93px;
416
+ }
417
+
418
+ .marginTop-94 {
419
+ margin-top: 94px;
420
+ }
421
+
422
+ .marginTop-95 {
423
+ margin-top: 95px;
424
+ }
425
+
426
+ .marginTop-96 {
427
+ margin-top: 96px;
428
+ }
429
+
430
+ .marginTop-97 {
431
+ margin-top: 97px;
432
+ }
433
+
434
+ .marginTop-98 {
435
+ margin-top: 98px;
436
+ }
437
+
438
+ .marginTop-99 {
439
+ margin-top: 99px;
440
+ }
441
+
442
+ .marginTop-100 {
443
+ margin-top: 100px;
444
+ }
445
+
446
+ .marginTop-101 {
447
+ margin-top: 101px;
448
+ }
449
+
450
+ .marginTop-102 {
451
+ margin-top: 102px;
452
+ }
453
+
454
+ .marginTop-103 {
455
+ margin-top: 103px;
456
+ }
457
+
458
+ .marginTop-104 {
459
+ margin-top: 104px;
460
+ }
461
+
462
+ .marginTop-105 {
463
+ margin-top: 105px;
464
+ }
465
+
466
+ .marginTop-106 {
467
+ margin-top: 106px;
468
+ }
469
+
470
+ .marginTop-107 {
471
+ margin-top: 107px;
472
+ }
473
+
474
+ .marginTop-108 {
475
+ margin-top: 108px;
476
+ }
477
+
478
+ .marginTop-109 {
479
+ margin-top: 109px;
480
+ }
481
+
482
+ .marginTop-110 {
483
+ margin-top: 110px;
484
+ }
485
+
486
+ .marginTop-111 {
487
+ margin-top: 111px;
488
+ }
489
+
490
+ .marginTop-112 {
491
+ margin-top: 112px;
492
+ }
493
+
494
+ .marginTop-113 {
495
+ margin-top: 113px;
496
+ }
497
+
498
+ .marginTop-114 {
499
+ margin-top: 114px;
500
+ }
501
+
502
+ .marginTop-115 {
503
+ margin-top: 115px;
504
+ }
505
+
506
+ .marginTop-116 {
507
+ margin-top: 116px;
508
+ }
509
+
510
+ .marginTop-117 {
511
+ margin-top: 117px;
512
+ }
513
+
514
+ .marginTop-118 {
515
+ margin-top: 118px;
516
+ }
517
+
518
+ .marginTop-119 {
519
+ margin-top: 119px;
520
+ }
521
+
522
+ .marginTop-120 {
523
+ margin-top: 120px;
524
+ }
525
+
526
+ .marginTop-121 {
527
+ margin-top: 121px;
528
+ }
529
+
530
+ .marginTop-122 {
531
+ margin-top: 122px;
532
+ }
533
+
534
+ .marginTop-123 {
535
+ margin-top: 123px;
536
+ }
537
+
538
+ .marginTop-124 {
539
+ margin-top: 124px;
540
+ }
541
+
542
+ .marginTop-125 {
543
+ margin-top: 125px;
544
+ }
545
+
546
+ .marginTop-126 {
547
+ margin-top: 126px;
548
+ }
549
+
550
+ .marginTop-127 {
551
+ margin-top: 127px;
552
+ }
553
+
554
+ .marginTop-128 {
555
+ margin-top: 128px;
556
+ }
557
+
558
+ /* prettier-ignore */
559
+
560
+ .marginRight-0 {
561
+ margin-right: 0px;
562
+ }
563
+
564
+ .marginRight-1 {
565
+ margin-right: 1px;
566
+ }
567
+
568
+ .marginRight-2 {
569
+ margin-right: 2px;
570
+ }
571
+
572
+ .marginRight-3 {
573
+ margin-right: 3px;
574
+ }
575
+
576
+ .marginRight-4 {
577
+ margin-right: 4px;
578
+ }
579
+
580
+ .marginRight-5 {
581
+ margin-right: 5px;
582
+ }
583
+
584
+ .marginRight-6 {
585
+ margin-right: 6px;
586
+ }
587
+
588
+ .marginRight-7 {
589
+ margin-right: 7px;
590
+ }
591
+
592
+ .marginRight-8 {
593
+ margin-right: 8px;
594
+ }
595
+
596
+ .marginRight-9 {
597
+ margin-right: 9px;
598
+ }
599
+
600
+ .marginRight-10 {
601
+ margin-right: 10px;
602
+ }
603
+
604
+ .marginRight-11 {
605
+ margin-right: 11px;
606
+ }
607
+
608
+ .marginRight-12 {
609
+ margin-right: 12px;
610
+ }
611
+
612
+ .marginRight-13 {
613
+ margin-right: 13px;
614
+ }
615
+
616
+ .marginRight-14 {
617
+ margin-right: 14px;
618
+ }
619
+
620
+ .marginRight-15 {
621
+ margin-right: 15px;
622
+ }
623
+
624
+ .marginRight-16 {
625
+ margin-right: 16px;
626
+ }
627
+
628
+ .marginRight-17 {
629
+ margin-right: 17px;
630
+ }
631
+
632
+ .marginRight-18 {
633
+ margin-right: 18px;
634
+ }
635
+
636
+ .marginRight-19 {
637
+ margin-right: 19px;
638
+ }
639
+
640
+ .marginRight-20 {
641
+ margin-right: 20px;
642
+ }
643
+
644
+ .marginRight-21 {
645
+ margin-right: 21px;
646
+ }
647
+
648
+ .marginRight-22 {
649
+ margin-right: 22px;
650
+ }
651
+
652
+ .marginRight-23 {
653
+ margin-right: 23px;
654
+ }
655
+
656
+ .marginRight-24 {
657
+ margin-right: 24px;
658
+ }
659
+
660
+ .marginRight-25 {
661
+ margin-right: 25px;
662
+ }
663
+
664
+ .marginRight-26 {
665
+ margin-right: 26px;
666
+ }
667
+
668
+ .marginRight-27 {
669
+ margin-right: 27px;
670
+ }
671
+
672
+ .marginRight-28 {
673
+ margin-right: 28px;
674
+ }
675
+
676
+ .marginRight-29 {
677
+ margin-right: 29px;
678
+ }
679
+
680
+ .marginRight-30 {
681
+ margin-right: 30px;
682
+ }
683
+
684
+ .marginRight-31 {
685
+ margin-right: 31px;
686
+ }
687
+
688
+ .marginRight-32 {
689
+ margin-right: 32px;
690
+ }
691
+
692
+ .marginRight-33 {
693
+ margin-right: 33px;
694
+ }
695
+
696
+ .marginRight-34 {
697
+ margin-right: 34px;
698
+ }
699
+
700
+ .marginRight-35 {
701
+ margin-right: 35px;
702
+ }
703
+
704
+ .marginRight-36 {
705
+ margin-right: 36px;
706
+ }
707
+
708
+ .marginRight-37 {
709
+ margin-right: 37px;
710
+ }
711
+
712
+ .marginRight-38 {
713
+ margin-right: 38px;
714
+ }
715
+
716
+ .marginRight-39 {
717
+ margin-right: 39px;
718
+ }
719
+
720
+ .marginRight-40 {
721
+ margin-right: 40px;
722
+ }
723
+
724
+ .marginRight-41 {
725
+ margin-right: 41px;
726
+ }
727
+
728
+ .marginRight-42 {
729
+ margin-right: 42px;
730
+ }
731
+
732
+ .marginRight-43 {
733
+ margin-right: 43px;
734
+ }
735
+
736
+ .marginRight-44 {
737
+ margin-right: 44px;
738
+ }
739
+
740
+ .marginRight-45 {
741
+ margin-right: 45px;
742
+ }
743
+
744
+ .marginRight-46 {
745
+ margin-right: 46px;
746
+ }
747
+
748
+ .marginRight-47 {
749
+ margin-right: 47px;
750
+ }
751
+
752
+ .marginRight-48 {
753
+ margin-right: 48px;
754
+ }
755
+
756
+ .marginRight-49 {
757
+ margin-right: 49px;
758
+ }
759
+
760
+ .marginRight-50 {
761
+ margin-right: 50px;
762
+ }
763
+
764
+ .marginRight-51 {
765
+ margin-right: 51px;
766
+ }
767
+
768
+ .marginRight-52 {
769
+ margin-right: 52px;
770
+ }
771
+
772
+ .marginRight-53 {
773
+ margin-right: 53px;
774
+ }
775
+
776
+ .marginRight-54 {
777
+ margin-right: 54px;
778
+ }
779
+
780
+ .marginRight-55 {
781
+ margin-right: 55px;
782
+ }
783
+
784
+ .marginRight-56 {
785
+ margin-right: 56px;
786
+ }
787
+
788
+ .marginRight-57 {
789
+ margin-right: 57px;
790
+ }
791
+
792
+ .marginRight-58 {
793
+ margin-right: 58px;
794
+ }
795
+
796
+ .marginRight-59 {
797
+ margin-right: 59px;
798
+ }
799
+
800
+ .marginRight-60 {
801
+ margin-right: 60px;
802
+ }
803
+
804
+ .marginRight-61 {
805
+ margin-right: 61px;
806
+ }
807
+
808
+ .marginRight-62 {
809
+ margin-right: 62px;
810
+ }
811
+
812
+ .marginRight-63 {
813
+ margin-right: 63px;
814
+ }
815
+
816
+ .marginRight-64 {
817
+ margin-right: 64px;
818
+ }
819
+
820
+ .marginRight-65 {
821
+ margin-right: 65px;
822
+ }
823
+
824
+ .marginRight-66 {
825
+ margin-right: 66px;
826
+ }
827
+
828
+ .marginRight-67 {
829
+ margin-right: 67px;
830
+ }
831
+
832
+ .marginRight-68 {
833
+ margin-right: 68px;
834
+ }
835
+
836
+ .marginRight-69 {
837
+ margin-right: 69px;
838
+ }
839
+
840
+ .marginRight-70 {
841
+ margin-right: 70px;
842
+ }
843
+
844
+ .marginRight-71 {
845
+ margin-right: 71px;
846
+ }
847
+
848
+ .marginRight-72 {
849
+ margin-right: 72px;
850
+ }
851
+
852
+ .marginRight-73 {
853
+ margin-right: 73px;
854
+ }
855
+
856
+ .marginRight-74 {
857
+ margin-right: 74px;
858
+ }
859
+
860
+ .marginRight-75 {
861
+ margin-right: 75px;
862
+ }
863
+
864
+ .marginRight-76 {
865
+ margin-right: 76px;
866
+ }
867
+
868
+ .marginRight-77 {
869
+ margin-right: 77px;
870
+ }
871
+
872
+ .marginRight-78 {
873
+ margin-right: 78px;
874
+ }
875
+
876
+ .marginRight-79 {
877
+ margin-right: 79px;
878
+ }
879
+
880
+ .marginRight-80 {
881
+ margin-right: 80px;
882
+ }
883
+
884
+ .marginRight-81 {
885
+ margin-right: 81px;
886
+ }
887
+
888
+ .marginRight-82 {
889
+ margin-right: 82px;
890
+ }
891
+
892
+ .marginRight-83 {
893
+ margin-right: 83px;
894
+ }
895
+
896
+ .marginRight-84 {
897
+ margin-right: 84px;
898
+ }
899
+
900
+ .marginRight-85 {
901
+ margin-right: 85px;
902
+ }
903
+
904
+ .marginRight-86 {
905
+ margin-right: 86px;
906
+ }
907
+
908
+ .marginRight-87 {
909
+ margin-right: 87px;
910
+ }
911
+
912
+ .marginRight-88 {
913
+ margin-right: 88px;
914
+ }
915
+
916
+ .marginRight-89 {
917
+ margin-right: 89px;
918
+ }
919
+
920
+ .marginRight-90 {
921
+ margin-right: 90px;
922
+ }
923
+
924
+ .marginRight-91 {
925
+ margin-right: 91px;
926
+ }
927
+
928
+ .marginRight-92 {
929
+ margin-right: 92px;
930
+ }
931
+
932
+ .marginRight-93 {
933
+ margin-right: 93px;
934
+ }
935
+
936
+ .marginRight-94 {
937
+ margin-right: 94px;
938
+ }
939
+
940
+ .marginRight-95 {
941
+ margin-right: 95px;
942
+ }
943
+
944
+ .marginRight-96 {
945
+ margin-right: 96px;
946
+ }
947
+
948
+ .marginRight-97 {
949
+ margin-right: 97px;
950
+ }
951
+
952
+ .marginRight-98 {
953
+ margin-right: 98px;
954
+ }
955
+
956
+ .marginRight-99 {
957
+ margin-right: 99px;
958
+ }
959
+
960
+ .marginRight-100 {
961
+ margin-right: 100px;
962
+ }
963
+
964
+ .marginRight-101 {
965
+ margin-right: 101px;
966
+ }
967
+
968
+ .marginRight-102 {
969
+ margin-right: 102px;
970
+ }
971
+
972
+ .marginRight-103 {
973
+ margin-right: 103px;
974
+ }
975
+
976
+ .marginRight-104 {
977
+ margin-right: 104px;
978
+ }
979
+
980
+ .marginRight-105 {
981
+ margin-right: 105px;
982
+ }
983
+
984
+ .marginRight-106 {
985
+ margin-right: 106px;
986
+ }
987
+
988
+ .marginRight-107 {
989
+ margin-right: 107px;
990
+ }
991
+
992
+ .marginRight-108 {
993
+ margin-right: 108px;
994
+ }
995
+
996
+ .marginRight-109 {
997
+ margin-right: 109px;
998
+ }
999
+
1000
+ .marginRight-110 {
1001
+ margin-right: 110px;
1002
+ }
1003
+
1004
+ .marginRight-111 {
1005
+ margin-right: 111px;
1006
+ }
1007
+
1008
+ .marginRight-112 {
1009
+ margin-right: 112px;
1010
+ }
1011
+
1012
+ .marginRight-113 {
1013
+ margin-right: 113px;
1014
+ }
1015
+
1016
+ .marginRight-114 {
1017
+ margin-right: 114px;
1018
+ }
1019
+
1020
+ .marginRight-115 {
1021
+ margin-right: 115px;
1022
+ }
1023
+
1024
+ .marginRight-116 {
1025
+ margin-right: 116px;
1026
+ }
1027
+
1028
+ .marginRight-117 {
1029
+ margin-right: 117px;
1030
+ }
1031
+
1032
+ .marginRight-118 {
1033
+ margin-right: 118px;
1034
+ }
1035
+
1036
+ .marginRight-119 {
1037
+ margin-right: 119px;
1038
+ }
1039
+
1040
+ .marginRight-120 {
1041
+ margin-right: 120px;
1042
+ }
1043
+
1044
+ .marginRight-121 {
1045
+ margin-right: 121px;
1046
+ }
1047
+
1048
+ .marginRight-122 {
1049
+ margin-right: 122px;
1050
+ }
1051
+
1052
+ .marginRight-123 {
1053
+ margin-right: 123px;
1054
+ }
1055
+
1056
+ .marginRight-124 {
1057
+ margin-right: 124px;
1058
+ }
1059
+
1060
+ .marginRight-125 {
1061
+ margin-right: 125px;
1062
+ }
1063
+
1064
+ .marginRight-126 {
1065
+ margin-right: 126px;
1066
+ }
1067
+
1068
+ .marginRight-127 {
1069
+ margin-right: 127px;
1070
+ }
1071
+
1072
+ .marginRight-128 {
1073
+ margin-right: 128px;
1074
+ }
1075
+
1076
+ /* prettier-ignore */
1077
+
1078
+ .marginBottom-0 {
1079
+ margin-bottom: 0px;
1080
+ }
1081
+
1082
+ .marginBottom-1 {
1083
+ margin-bottom: 1px;
1084
+ }
1085
+
1086
+ .marginBottom-2 {
1087
+ margin-bottom: 2px;
1088
+ }
1089
+
1090
+ .marginBottom-3 {
1091
+ margin-bottom: 3px;
1092
+ }
1093
+
1094
+ .marginBottom-4 {
1095
+ margin-bottom: 4px;
1096
+ }
1097
+
1098
+ .marginBottom-5 {
1099
+ margin-bottom: 5px;
1100
+ }
1101
+
1102
+ .marginBottom-6 {
1103
+ margin-bottom: 6px;
1104
+ }
1105
+
1106
+ .marginBottom-7 {
1107
+ margin-bottom: 7px;
1108
+ }
1109
+
1110
+ .marginBottom-8 {
1111
+ margin-bottom: 8px;
1112
+ }
1113
+
1114
+ .marginBottom-9 {
1115
+ margin-bottom: 9px;
1116
+ }
1117
+
1118
+ .marginBottom-10 {
1119
+ margin-bottom: 10px;
1120
+ }
1121
+
1122
+ .marginBottom-11 {
1123
+ margin-bottom: 11px;
1124
+ }
1125
+
1126
+ .marginBottom-12 {
1127
+ margin-bottom: 12px;
1128
+ }
1129
+
1130
+ .marginBottom-13 {
1131
+ margin-bottom: 13px;
1132
+ }
1133
+
1134
+ .marginBottom-14 {
1135
+ margin-bottom: 14px;
1136
+ }
1137
+
1138
+ .marginBottom-15 {
1139
+ margin-bottom: 15px;
1140
+ }
1141
+
1142
+ .marginBottom-16 {
1143
+ margin-bottom: 16px;
1144
+ }
1145
+
1146
+ .marginBottom-17 {
1147
+ margin-bottom: 17px;
1148
+ }
1149
+
1150
+ .marginBottom-18 {
1151
+ margin-bottom: 18px;
1152
+ }
1153
+
1154
+ .marginBottom-19 {
1155
+ margin-bottom: 19px;
1156
+ }
1157
+
1158
+ .marginBottom-20 {
1159
+ margin-bottom: 20px;
1160
+ }
1161
+
1162
+ .marginBottom-21 {
1163
+ margin-bottom: 21px;
1164
+ }
1165
+
1166
+ .marginBottom-22 {
1167
+ margin-bottom: 22px;
1168
+ }
1169
+
1170
+ .marginBottom-23 {
1171
+ margin-bottom: 23px;
1172
+ }
1173
+
1174
+ .marginBottom-24 {
1175
+ margin-bottom: 24px;
1176
+ }
1177
+
1178
+ .marginBottom-25 {
1179
+ margin-bottom: 25px;
1180
+ }
1181
+
1182
+ .marginBottom-26 {
1183
+ margin-bottom: 26px;
1184
+ }
1185
+
1186
+ .marginBottom-27 {
1187
+ margin-bottom: 27px;
1188
+ }
1189
+
1190
+ .marginBottom-28 {
1191
+ margin-bottom: 28px;
1192
+ }
1193
+
1194
+ .marginBottom-29 {
1195
+ margin-bottom: 29px;
1196
+ }
1197
+
1198
+ .marginBottom-30 {
1199
+ margin-bottom: 30px;
1200
+ }
1201
+
1202
+ .marginBottom-31 {
1203
+ margin-bottom: 31px;
1204
+ }
1205
+
1206
+ .marginBottom-32 {
1207
+ margin-bottom: 32px;
1208
+ }
1209
+
1210
+ .marginBottom-33 {
1211
+ margin-bottom: 33px;
1212
+ }
1213
+
1214
+ .marginBottom-34 {
1215
+ margin-bottom: 34px;
1216
+ }
1217
+
1218
+ .marginBottom-35 {
1219
+ margin-bottom: 35px;
1220
+ }
1221
+
1222
+ .marginBottom-36 {
1223
+ margin-bottom: 36px;
1224
+ }
1225
+
1226
+ .marginBottom-37 {
1227
+ margin-bottom: 37px;
1228
+ }
1229
+
1230
+ .marginBottom-38 {
1231
+ margin-bottom: 38px;
1232
+ }
1233
+
1234
+ .marginBottom-39 {
1235
+ margin-bottom: 39px;
1236
+ }
1237
+
1238
+ .marginBottom-40 {
1239
+ margin-bottom: 40px;
1240
+ }
1241
+
1242
+ .marginBottom-41 {
1243
+ margin-bottom: 41px;
1244
+ }
1245
+
1246
+ .marginBottom-42 {
1247
+ margin-bottom: 42px;
1248
+ }
1249
+
1250
+ .marginBottom-43 {
1251
+ margin-bottom: 43px;
1252
+ }
1253
+
1254
+ .marginBottom-44 {
1255
+ margin-bottom: 44px;
1256
+ }
1257
+
1258
+ .marginBottom-45 {
1259
+ margin-bottom: 45px;
1260
+ }
1261
+
1262
+ .marginBottom-46 {
1263
+ margin-bottom: 46px;
1264
+ }
1265
+
1266
+ .marginBottom-47 {
1267
+ margin-bottom: 47px;
1268
+ }
1269
+
1270
+ .marginBottom-48 {
1271
+ margin-bottom: 48px;
1272
+ }
1273
+
1274
+ .marginBottom-49 {
1275
+ margin-bottom: 49px;
1276
+ }
1277
+
1278
+ .marginBottom-50 {
1279
+ margin-bottom: 50px;
1280
+ }
1281
+
1282
+ .marginBottom-51 {
1283
+ margin-bottom: 51px;
1284
+ }
1285
+
1286
+ .marginBottom-52 {
1287
+ margin-bottom: 52px;
1288
+ }
1289
+
1290
+ .marginBottom-53 {
1291
+ margin-bottom: 53px;
1292
+ }
1293
+
1294
+ .marginBottom-54 {
1295
+ margin-bottom: 54px;
1296
+ }
1297
+
1298
+ .marginBottom-55 {
1299
+ margin-bottom: 55px;
1300
+ }
1301
+
1302
+ .marginBottom-56 {
1303
+ margin-bottom: 56px;
1304
+ }
1305
+
1306
+ .marginBottom-57 {
1307
+ margin-bottom: 57px;
1308
+ }
1309
+
1310
+ .marginBottom-58 {
1311
+ margin-bottom: 58px;
1312
+ }
1313
+
1314
+ .marginBottom-59 {
1315
+ margin-bottom: 59px;
1316
+ }
1317
+
1318
+ .marginBottom-60 {
1319
+ margin-bottom: 60px;
1320
+ }
1321
+
1322
+ .marginBottom-61 {
1323
+ margin-bottom: 61px;
1324
+ }
1325
+
1326
+ .marginBottom-62 {
1327
+ margin-bottom: 62px;
1328
+ }
1329
+
1330
+ .marginBottom-63 {
1331
+ margin-bottom: 63px;
1332
+ }
1333
+
1334
+ .marginBottom-64 {
1335
+ margin-bottom: 64px;
1336
+ }
1337
+
1338
+ .marginBottom-65 {
1339
+ margin-bottom: 65px;
1340
+ }
1341
+
1342
+ .marginBottom-66 {
1343
+ margin-bottom: 66px;
1344
+ }
1345
+
1346
+ .marginBottom-67 {
1347
+ margin-bottom: 67px;
1348
+ }
1349
+
1350
+ .marginBottom-68 {
1351
+ margin-bottom: 68px;
1352
+ }
1353
+
1354
+ .marginBottom-69 {
1355
+ margin-bottom: 69px;
1356
+ }
1357
+
1358
+ .marginBottom-70 {
1359
+ margin-bottom: 70px;
1360
+ }
1361
+
1362
+ .marginBottom-71 {
1363
+ margin-bottom: 71px;
1364
+ }
1365
+
1366
+ .marginBottom-72 {
1367
+ margin-bottom: 72px;
1368
+ }
1369
+
1370
+ .marginBottom-73 {
1371
+ margin-bottom: 73px;
1372
+ }
1373
+
1374
+ .marginBottom-74 {
1375
+ margin-bottom: 74px;
1376
+ }
1377
+
1378
+ .marginBottom-75 {
1379
+ margin-bottom: 75px;
1380
+ }
1381
+
1382
+ .marginBottom-76 {
1383
+ margin-bottom: 76px;
1384
+ }
1385
+
1386
+ .marginBottom-77 {
1387
+ margin-bottom: 77px;
1388
+ }
1389
+
1390
+ .marginBottom-78 {
1391
+ margin-bottom: 78px;
1392
+ }
1393
+
1394
+ .marginBottom-79 {
1395
+ margin-bottom: 79px;
1396
+ }
1397
+
1398
+ .marginBottom-80 {
1399
+ margin-bottom: 80px;
1400
+ }
1401
+
1402
+ .marginBottom-81 {
1403
+ margin-bottom: 81px;
1404
+ }
1405
+
1406
+ .marginBottom-82 {
1407
+ margin-bottom: 82px;
1408
+ }
1409
+
1410
+ .marginBottom-83 {
1411
+ margin-bottom: 83px;
1412
+ }
1413
+
1414
+ .marginBottom-84 {
1415
+ margin-bottom: 84px;
1416
+ }
1417
+
1418
+ .marginBottom-85 {
1419
+ margin-bottom: 85px;
1420
+ }
1421
+
1422
+ .marginBottom-86 {
1423
+ margin-bottom: 86px;
1424
+ }
1425
+
1426
+ .marginBottom-87 {
1427
+ margin-bottom: 87px;
1428
+ }
1429
+
1430
+ .marginBottom-88 {
1431
+ margin-bottom: 88px;
1432
+ }
1433
+
1434
+ .marginBottom-89 {
1435
+ margin-bottom: 89px;
1436
+ }
1437
+
1438
+ .marginBottom-90 {
1439
+ margin-bottom: 90px;
1440
+ }
1441
+
1442
+ .marginBottom-91 {
1443
+ margin-bottom: 91px;
1444
+ }
1445
+
1446
+ .marginBottom-92 {
1447
+ margin-bottom: 92px;
1448
+ }
1449
+
1450
+ .marginBottom-93 {
1451
+ margin-bottom: 93px;
1452
+ }
1453
+
1454
+ .marginBottom-94 {
1455
+ margin-bottom: 94px;
1456
+ }
1457
+
1458
+ .marginBottom-95 {
1459
+ margin-bottom: 95px;
1460
+ }
1461
+
1462
+ .marginBottom-96 {
1463
+ margin-bottom: 96px;
1464
+ }
1465
+
1466
+ .marginBottom-97 {
1467
+ margin-bottom: 97px;
1468
+ }
1469
+
1470
+ .marginBottom-98 {
1471
+ margin-bottom: 98px;
1472
+ }
1473
+
1474
+ .marginBottom-99 {
1475
+ margin-bottom: 99px;
1476
+ }
1477
+
1478
+ .marginBottom-100 {
1479
+ margin-bottom: 100px;
1480
+ }
1481
+
1482
+ .marginBottom-101 {
1483
+ margin-bottom: 101px;
1484
+ }
1485
+
1486
+ .marginBottom-102 {
1487
+ margin-bottom: 102px;
1488
+ }
1489
+
1490
+ .marginBottom-103 {
1491
+ margin-bottom: 103px;
1492
+ }
1493
+
1494
+ .marginBottom-104 {
1495
+ margin-bottom: 104px;
1496
+ }
1497
+
1498
+ .marginBottom-105 {
1499
+ margin-bottom: 105px;
1500
+ }
1501
+
1502
+ .marginBottom-106 {
1503
+ margin-bottom: 106px;
1504
+ }
1505
+
1506
+ .marginBottom-107 {
1507
+ margin-bottom: 107px;
1508
+ }
1509
+
1510
+ .marginBottom-108 {
1511
+ margin-bottom: 108px;
1512
+ }
1513
+
1514
+ .marginBottom-109 {
1515
+ margin-bottom: 109px;
1516
+ }
1517
+
1518
+ .marginBottom-110 {
1519
+ margin-bottom: 110px;
1520
+ }
1521
+
1522
+ .marginBottom-111 {
1523
+ margin-bottom: 111px;
1524
+ }
1525
+
1526
+ .marginBottom-112 {
1527
+ margin-bottom: 112px;
1528
+ }
1529
+
1530
+ .marginBottom-113 {
1531
+ margin-bottom: 113px;
1532
+ }
1533
+
1534
+ .marginBottom-114 {
1535
+ margin-bottom: 114px;
1536
+ }
1537
+
1538
+ .marginBottom-115 {
1539
+ margin-bottom: 115px;
1540
+ }
1541
+
1542
+ .marginBottom-116 {
1543
+ margin-bottom: 116px;
1544
+ }
1545
+
1546
+ .marginBottom-117 {
1547
+ margin-bottom: 117px;
1548
+ }
1549
+
1550
+ .marginBottom-118 {
1551
+ margin-bottom: 118px;
1552
+ }
1553
+
1554
+ .marginBottom-119 {
1555
+ margin-bottom: 119px;
1556
+ }
1557
+
1558
+ .marginBottom-120 {
1559
+ margin-bottom: 120px;
1560
+ }
1561
+
1562
+ .marginBottom-121 {
1563
+ margin-bottom: 121px;
1564
+ }
1565
+
1566
+ .marginBottom-122 {
1567
+ margin-bottom: 122px;
1568
+ }
1569
+
1570
+ .marginBottom-123 {
1571
+ margin-bottom: 123px;
1572
+ }
1573
+
1574
+ .marginBottom-124 {
1575
+ margin-bottom: 124px;
1576
+ }
1577
+
1578
+ .marginBottom-125 {
1579
+ margin-bottom: 125px;
1580
+ }
1581
+
1582
+ .marginBottom-126 {
1583
+ margin-bottom: 126px;
1584
+ }
1585
+
1586
+ .marginBottom-127 {
1587
+ margin-bottom: 127px;
1588
+ }
1589
+
1590
+ .marginBottom-128 {
1591
+ margin-bottom: 128px;
1592
+ }
1593
+
1594
+ /* prettier-ignore */
1595
+
1596
+ .marginLeft-0 {
1597
+ margin-left: 0px;
1598
+ }
1599
+
1600
+ .marginLeft-1 {
1601
+ margin-left: 1px;
1602
+ }
1603
+
1604
+ .marginLeft-2 {
1605
+ margin-left: 2px;
1606
+ }
1607
+
1608
+ .marginLeft-3 {
1609
+ margin-left: 3px;
1610
+ }
1611
+
1612
+ .marginLeft-4 {
1613
+ margin-left: 4px;
1614
+ }
1615
+
1616
+ .marginLeft-5 {
1617
+ margin-left: 5px;
1618
+ }
1619
+
1620
+ .marginLeft-6 {
1621
+ margin-left: 6px;
1622
+ }
1623
+
1624
+ .marginLeft-7 {
1625
+ margin-left: 7px;
1626
+ }
1627
+
1628
+ .marginLeft-8 {
1629
+ margin-left: 8px;
1630
+ }
1631
+
1632
+ .marginLeft-9 {
1633
+ margin-left: 9px;
1634
+ }
1635
+
1636
+ .marginLeft-10 {
1637
+ margin-left: 10px;
1638
+ }
1639
+
1640
+ .marginLeft-11 {
1641
+ margin-left: 11px;
1642
+ }
1643
+
1644
+ .marginLeft-12 {
1645
+ margin-left: 12px;
1646
+ }
1647
+
1648
+ .marginLeft-13 {
1649
+ margin-left: 13px;
1650
+ }
1651
+
1652
+ .marginLeft-14 {
1653
+ margin-left: 14px;
1654
+ }
1655
+
1656
+ .marginLeft-15 {
1657
+ margin-left: 15px;
1658
+ }
1659
+
1660
+ .marginLeft-16 {
1661
+ margin-left: 16px;
1662
+ }
1663
+
1664
+ .marginLeft-17 {
1665
+ margin-left: 17px;
1666
+ }
1667
+
1668
+ .marginLeft-18 {
1669
+ margin-left: 18px;
1670
+ }
1671
+
1672
+ .marginLeft-19 {
1673
+ margin-left: 19px;
1674
+ }
1675
+
1676
+ .marginLeft-20 {
1677
+ margin-left: 20px;
1678
+ }
1679
+
1680
+ .marginLeft-21 {
1681
+ margin-left: 21px;
1682
+ }
1683
+
1684
+ .marginLeft-22 {
1685
+ margin-left: 22px;
1686
+ }
1687
+
1688
+ .marginLeft-23 {
1689
+ margin-left: 23px;
1690
+ }
1691
+
1692
+ .marginLeft-24 {
1693
+ margin-left: 24px;
1694
+ }
1695
+
1696
+ .marginLeft-25 {
1697
+ margin-left: 25px;
1698
+ }
1699
+
1700
+ .marginLeft-26 {
1701
+ margin-left: 26px;
1702
+ }
1703
+
1704
+ .marginLeft-27 {
1705
+ margin-left: 27px;
1706
+ }
1707
+
1708
+ .marginLeft-28 {
1709
+ margin-left: 28px;
1710
+ }
1711
+
1712
+ .marginLeft-29 {
1713
+ margin-left: 29px;
1714
+ }
1715
+
1716
+ .marginLeft-30 {
1717
+ margin-left: 30px;
1718
+ }
1719
+
1720
+ .marginLeft-31 {
1721
+ margin-left: 31px;
1722
+ }
1723
+
1724
+ .marginLeft-32 {
1725
+ margin-left: 32px;
1726
+ }
1727
+
1728
+ .marginLeft-33 {
1729
+ margin-left: 33px;
1730
+ }
1731
+
1732
+ .marginLeft-34 {
1733
+ margin-left: 34px;
1734
+ }
1735
+
1736
+ .marginLeft-35 {
1737
+ margin-left: 35px;
1738
+ }
1739
+
1740
+ .marginLeft-36 {
1741
+ margin-left: 36px;
1742
+ }
1743
+
1744
+ .marginLeft-37 {
1745
+ margin-left: 37px;
1746
+ }
1747
+
1748
+ .marginLeft-38 {
1749
+ margin-left: 38px;
1750
+ }
1751
+
1752
+ .marginLeft-39 {
1753
+ margin-left: 39px;
1754
+ }
1755
+
1756
+ .marginLeft-40 {
1757
+ margin-left: 40px;
1758
+ }
1759
+
1760
+ .marginLeft-41 {
1761
+ margin-left: 41px;
1762
+ }
1763
+
1764
+ .marginLeft-42 {
1765
+ margin-left: 42px;
1766
+ }
1767
+
1768
+ .marginLeft-43 {
1769
+ margin-left: 43px;
1770
+ }
1771
+
1772
+ .marginLeft-44 {
1773
+ margin-left: 44px;
1774
+ }
1775
+
1776
+ .marginLeft-45 {
1777
+ margin-left: 45px;
1778
+ }
1779
+
1780
+ .marginLeft-46 {
1781
+ margin-left: 46px;
1782
+ }
1783
+
1784
+ .marginLeft-47 {
1785
+ margin-left: 47px;
1786
+ }
1787
+
1788
+ .marginLeft-48 {
1789
+ margin-left: 48px;
1790
+ }
1791
+
1792
+ .marginLeft-49 {
1793
+ margin-left: 49px;
1794
+ }
1795
+
1796
+ .marginLeft-50 {
1797
+ margin-left: 50px;
1798
+ }
1799
+
1800
+ .marginLeft-51 {
1801
+ margin-left: 51px;
1802
+ }
1803
+
1804
+ .marginLeft-52 {
1805
+ margin-left: 52px;
1806
+ }
1807
+
1808
+ .marginLeft-53 {
1809
+ margin-left: 53px;
1810
+ }
1811
+
1812
+ .marginLeft-54 {
1813
+ margin-left: 54px;
1814
+ }
1815
+
1816
+ .marginLeft-55 {
1817
+ margin-left: 55px;
1818
+ }
1819
+
1820
+ .marginLeft-56 {
1821
+ margin-left: 56px;
1822
+ }
1823
+
1824
+ .marginLeft-57 {
1825
+ margin-left: 57px;
1826
+ }
1827
+
1828
+ .marginLeft-58 {
1829
+ margin-left: 58px;
1830
+ }
1831
+
1832
+ .marginLeft-59 {
1833
+ margin-left: 59px;
1834
+ }
1835
+
1836
+ .marginLeft-60 {
1837
+ margin-left: 60px;
1838
+ }
1839
+
1840
+ .marginLeft-61 {
1841
+ margin-left: 61px;
1842
+ }
1843
+
1844
+ .marginLeft-62 {
1845
+ margin-left: 62px;
1846
+ }
1847
+
1848
+ .marginLeft-63 {
1849
+ margin-left: 63px;
1850
+ }
1851
+
1852
+ .marginLeft-64 {
1853
+ margin-left: 64px;
1854
+ }
1855
+
1856
+ .marginLeft-65 {
1857
+ margin-left: 65px;
1858
+ }
1859
+
1860
+ .marginLeft-66 {
1861
+ margin-left: 66px;
1862
+ }
1863
+
1864
+ .marginLeft-67 {
1865
+ margin-left: 67px;
1866
+ }
1867
+
1868
+ .marginLeft-68 {
1869
+ margin-left: 68px;
1870
+ }
1871
+
1872
+ .marginLeft-69 {
1873
+ margin-left: 69px;
1874
+ }
1875
+
1876
+ .marginLeft-70 {
1877
+ margin-left: 70px;
1878
+ }
1879
+
1880
+ .marginLeft-71 {
1881
+ margin-left: 71px;
1882
+ }
1883
+
1884
+ .marginLeft-72 {
1885
+ margin-left: 72px;
1886
+ }
1887
+
1888
+ .marginLeft-73 {
1889
+ margin-left: 73px;
1890
+ }
1891
+
1892
+ .marginLeft-74 {
1893
+ margin-left: 74px;
1894
+ }
1895
+
1896
+ .marginLeft-75 {
1897
+ margin-left: 75px;
1898
+ }
1899
+
1900
+ .marginLeft-76 {
1901
+ margin-left: 76px;
1902
+ }
1903
+
1904
+ .marginLeft-77 {
1905
+ margin-left: 77px;
1906
+ }
1907
+
1908
+ .marginLeft-78 {
1909
+ margin-left: 78px;
1910
+ }
1911
+
1912
+ .marginLeft-79 {
1913
+ margin-left: 79px;
1914
+ }
1915
+
1916
+ .marginLeft-80 {
1917
+ margin-left: 80px;
1918
+ }
1919
+
1920
+ .marginLeft-81 {
1921
+ margin-left: 81px;
1922
+ }
1923
+
1924
+ .marginLeft-82 {
1925
+ margin-left: 82px;
1926
+ }
1927
+
1928
+ .marginLeft-83 {
1929
+ margin-left: 83px;
1930
+ }
1931
+
1932
+ .marginLeft-84 {
1933
+ margin-left: 84px;
1934
+ }
1935
+
1936
+ .marginLeft-85 {
1937
+ margin-left: 85px;
1938
+ }
1939
+
1940
+ .marginLeft-86 {
1941
+ margin-left: 86px;
1942
+ }
1943
+
1944
+ .marginLeft-87 {
1945
+ margin-left: 87px;
1946
+ }
1947
+
1948
+ .marginLeft-88 {
1949
+ margin-left: 88px;
1950
+ }
1951
+
1952
+ .marginLeft-89 {
1953
+ margin-left: 89px;
1954
+ }
1955
+
1956
+ .marginLeft-90 {
1957
+ margin-left: 90px;
1958
+ }
1959
+
1960
+ .marginLeft-91 {
1961
+ margin-left: 91px;
1962
+ }
1963
+
1964
+ .marginLeft-92 {
1965
+ margin-left: 92px;
1966
+ }
1967
+
1968
+ .marginLeft-93 {
1969
+ margin-left: 93px;
1970
+ }
1971
+
1972
+ .marginLeft-94 {
1973
+ margin-left: 94px;
1974
+ }
1975
+
1976
+ .marginLeft-95 {
1977
+ margin-left: 95px;
1978
+ }
1979
+
1980
+ .marginLeft-96 {
1981
+ margin-left: 96px;
1982
+ }
1983
+
1984
+ .marginLeft-97 {
1985
+ margin-left: 97px;
1986
+ }
1987
+
1988
+ .marginLeft-98 {
1989
+ margin-left: 98px;
1990
+ }
1991
+
1992
+ .marginLeft-99 {
1993
+ margin-left: 99px;
1994
+ }
1995
+
1996
+ .marginLeft-100 {
1997
+ margin-left: 100px;
1998
+ }
1999
+
2000
+ .marginLeft-101 {
2001
+ margin-left: 101px;
2002
+ }
2003
+
2004
+ .marginLeft-102 {
2005
+ margin-left: 102px;
2006
+ }
2007
+
2008
+ .marginLeft-103 {
2009
+ margin-left: 103px;
2010
+ }
2011
+
2012
+ .marginLeft-104 {
2013
+ margin-left: 104px;
2014
+ }
2015
+
2016
+ .marginLeft-105 {
2017
+ margin-left: 105px;
2018
+ }
2019
+
2020
+ .marginLeft-106 {
2021
+ margin-left: 106px;
2022
+ }
2023
+
2024
+ .marginLeft-107 {
2025
+ margin-left: 107px;
2026
+ }
2027
+
2028
+ .marginLeft-108 {
2029
+ margin-left: 108px;
2030
+ }
2031
+
2032
+ .marginLeft-109 {
2033
+ margin-left: 109px;
2034
+ }
2035
+
2036
+ .marginLeft-110 {
2037
+ margin-left: 110px;
2038
+ }
2039
+
2040
+ .marginLeft-111 {
2041
+ margin-left: 111px;
2042
+ }
2043
+
2044
+ .marginLeft-112 {
2045
+ margin-left: 112px;
2046
+ }
2047
+
2048
+ .marginLeft-113 {
2049
+ margin-left: 113px;
2050
+ }
2051
+
2052
+ .marginLeft-114 {
2053
+ margin-left: 114px;
2054
+ }
2055
+
2056
+ .marginLeft-115 {
2057
+ margin-left: 115px;
2058
+ }
2059
+
2060
+ .marginLeft-116 {
2061
+ margin-left: 116px;
2062
+ }
2063
+
2064
+ .marginLeft-117 {
2065
+ margin-left: 117px;
2066
+ }
2067
+
2068
+ .marginLeft-118 {
2069
+ margin-left: 118px;
2070
+ }
2071
+
2072
+ .marginLeft-119 {
2073
+ margin-left: 119px;
2074
+ }
2075
+
2076
+ .marginLeft-120 {
2077
+ margin-left: 120px;
2078
+ }
2079
+
2080
+ .marginLeft-121 {
2081
+ margin-left: 121px;
2082
+ }
2083
+
2084
+ .marginLeft-122 {
2085
+ margin-left: 122px;
2086
+ }
2087
+
2088
+ .marginLeft-123 {
2089
+ margin-left: 123px;
2090
+ }
2091
+
2092
+ .marginLeft-124 {
2093
+ margin-left: 124px;
2094
+ }
2095
+
2096
+ .marginLeft-125 {
2097
+ margin-left: 125px;
2098
+ }
2099
+
2100
+ .marginLeft-126 {
2101
+ margin-left: 126px;
2102
+ }
2103
+
2104
+ .marginLeft-127 {
2105
+ margin-left: 127px;
2106
+ }
2107
+
2108
+ .marginLeft-128 {
2109
+ margin-left: 128px;
2110
+ }