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