@npm_leadtech/legal-lib-components 5.3.13 → 5.3.14

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 (201) hide show
  1. package/dist/css/styles.css +1075 -0
  2. package/dist/images/svg/arrow-right-24px-outlined.svg +3 -0
  3. package/dist/src/components/atoms/ContactCard/ContactCard.d.ts +4 -0
  4. package/dist/src/components/atoms/ContactCard/ContactCard.js +6 -0
  5. package/dist/src/components/{sections/BlogSection/BlogSection.styled.d.ts → atoms/ContactCard/ContactCard.styled.d.ts} +1 -1
  6. package/dist/src/components/atoms/ContactCard/ContactCard.styled.js +38 -0
  7. package/dist/src/components/atoms/ContactCard/ContactCard.styled.ts +39 -0
  8. package/dist/src/components/atoms/ContactCard/ContactCard.tsx +38 -0
  9. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.d.ts +9 -0
  10. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.js +1 -0
  11. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.ts +9 -0
  12. package/dist/src/components/atoms/ContactCard/index.d.ts +2 -0
  13. package/dist/src/components/atoms/ContactCard/index.js +1 -0
  14. package/dist/src/components/atoms/ContactCard/index.ts +2 -0
  15. package/dist/src/components/atoms/index.d.ts +1 -0
  16. package/dist/src/components/atoms/index.js +1 -0
  17. package/dist/src/components/atoms/index.ts +1 -0
  18. package/dist/src/components/molecules/Article/Article.js +3 -2
  19. package/dist/src/components/molecules/Article/Article.scss +17 -0
  20. package/dist/src/components/molecules/Article/Article.tsx +17 -2
  21. package/dist/src/components/molecules/Article/ArticleProps.types.d.ts +1 -0
  22. package/dist/src/components/molecules/Article/ArticleProps.types.ts +1 -0
  23. package/dist/src/components/molecules/ContactCardList/ContactCardList.d.ts +4 -0
  24. package/dist/src/components/molecules/ContactCardList/ContactCardList.js +7 -0
  25. package/dist/src/components/molecules/ContactCardList/ContactCardList.styled.d.ts +1 -0
  26. package/dist/src/components/{sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.js → molecules/ContactCardList/ContactCardList.styled.js} +4 -5
  27. package/dist/src/components/{sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.ts → molecules/ContactCardList/ContactCardList.styled.ts} +4 -5
  28. package/dist/src/components/molecules/ContactCardList/ContactCardList.tsx +17 -0
  29. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.d.ts +4 -0
  30. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.js +1 -0
  31. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.ts +5 -0
  32. package/dist/src/components/molecules/ContactCardList/index.d.ts +2 -0
  33. package/dist/src/components/molecules/ContactCardList/index.js +1 -0
  34. package/dist/src/components/molecules/ContactCardList/index.ts +2 -0
  35. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.scss +1 -1
  36. package/dist/src/components/molecules/index.d.ts +1 -0
  37. package/dist/src/components/molecules/index.js +1 -0
  38. package/dist/src/components/molecules/index.ts +1 -0
  39. package/dist/src/components/organisms/ArticlesList/ArticlesList.js +2 -2
  40. package/dist/src/components/organisms/ArticlesList/ArticlesList.tsx +2 -2
  41. package/dist/src/components/organisms/ArticlesList/ArticlesListProps.types.d.ts +1 -0
  42. package/dist/src/components/organisms/ArticlesList/ArticlesListProps.types.ts +1 -0
  43. package/dist/src/components/organisms/ContactContent/ContactContent.d.ts +4 -0
  44. package/dist/src/components/organisms/ContactContent/ContactContent.js +9 -0
  45. package/dist/src/components/{sections/AboutUsSection/AboutUsSection.styled.d.ts → organisms/ContactContent/ContactContent.styled.d.ts} +1 -1
  46. package/dist/src/components/organisms/ContactContent/ContactContent.styled.js +28 -0
  47. package/dist/src/components/organisms/ContactContent/ContactContent.styled.ts +29 -0
  48. package/dist/src/components/organisms/ContactContent/ContactContent.tsx +20 -0
  49. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.d.ts +6 -0
  50. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.js +1 -0
  51. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.ts +7 -0
  52. package/dist/src/components/organisms/ContactContent/index.d.ts +2 -0
  53. package/dist/src/components/organisms/ContactContent/index.js +1 -0
  54. package/dist/src/components/organisms/ContactContent/index.ts +2 -0
  55. package/dist/src/components/organisms/index.d.ts +1 -0
  56. package/dist/src/components/organisms/index.js +1 -0
  57. package/dist/src/components/organisms/index.ts +1 -0
  58. package/dist/src/components/sections/AboutUsSection/AboutUsSection.js +2 -2
  59. package/dist/src/components/sections/AboutUsSection/AboutUsSection.scss +52 -0
  60. package/dist/src/components/sections/AboutUsSection/AboutUsSection.tsx +3 -3
  61. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.js +3 -3
  62. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.scss +36 -0
  63. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.tsx +5 -21
  64. package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.d.ts +3 -6
  65. package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts +3 -6
  66. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.js +2 -2
  67. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.scss +50 -0
  68. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.tsx +3 -3
  69. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.js +2 -2
  70. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.scss +57 -0
  71. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx +3 -3
  72. package/dist/src/components/sections/BlogSection/BlogSection.js +4 -4
  73. package/dist/src/components/sections/BlogSection/BlogSection.scss +54 -0
  74. package/dist/src/components/sections/BlogSection/BlogSection.tsx +11 -8
  75. package/dist/src/components/sections/BlogSection/BlogSectionProps.types.d.ts +2 -1
  76. package/dist/src/components/sections/BlogSection/BlogSectionProps.types.ts +2 -1
  77. package/dist/src/components/sections/ContactSection/ContactSection.js +2 -2
  78. package/dist/src/components/sections/ContactSection/{ContactSection.styled.ts → ContactSection.scss} +9 -9
  79. package/dist/src/components/sections/ContactSection/ContactSection.tsx +3 -3
  80. package/dist/src/components/sections/ExpertsSection/ExpertsSection.js +2 -2
  81. package/dist/src/components/sections/ExpertsSection/ExpertsSection.scss +26 -0
  82. package/dist/src/components/sections/ExpertsSection/ExpertsSection.tsx +3 -3
  83. package/dist/src/components/sections/FaqSection/FaqSection.js +2 -2
  84. package/dist/src/components/sections/FaqSection/FaqSection.scss +31 -0
  85. package/dist/src/components/sections/FaqSection/FaqSection.tsx +3 -3
  86. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.js +2 -2
  87. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.scss +57 -0
  88. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx +3 -3
  89. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.js +1 -2
  90. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.scss +15 -0
  91. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx +2 -3
  92. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +2 -2
  93. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.scss +12 -0
  94. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +3 -3
  95. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.js +2 -2
  96. package/dist/src/components/sections/HowGetYourFormsSection/{HowGetYourFormsSection.styled.ts → HowGetYourFormsSection.scss} +8 -7
  97. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx +3 -3
  98. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.js +2 -2
  99. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.scss +41 -0
  100. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx +3 -6
  101. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.js +2 -2
  102. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.scss +41 -0
  103. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx +3 -3
  104. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.js +2 -2
  105. package/dist/src/components/sections/LearnMoreSection/{LearnMoreSection.styled.ts → LearnMoreSection.scss} +12 -12
  106. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.tsx +3 -3
  107. package/dist/src/components/sections/LegalSection/LegalSection.js +2 -2
  108. package/dist/src/components/sections/LegalSection/LegalSection.scss +120 -0
  109. package/dist/src/components/sections/LegalSection/LegalSection.tsx +3 -3
  110. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.js +2 -2
  111. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.scss +47 -0
  112. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx +3 -3
  113. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.js +2 -2
  114. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.scss +42 -0
  115. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx +3 -3
  116. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.js +2 -2
  117. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.scss +53 -0
  118. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx +4 -3
  119. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.js +1 -2
  120. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.scss +69 -0
  121. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx +2 -3
  122. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.js +2 -2
  123. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.scss +11 -0
  124. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx +3 -3
  125. package/dist/src/components/sections/TryUsSection/TryUsSection.js +2 -2
  126. package/dist/src/components/sections/TryUsSection/{TryUsSection.styled.ts → TryUsSection.scss} +5 -5
  127. package/dist/src/components/sections/TryUsSection/TryUsSection.tsx +3 -3
  128. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.js +2 -2
  129. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.scss +62 -0
  130. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx +3 -3
  131. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.js +2 -2
  132. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.scss +35 -0
  133. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx +4 -3
  134. package/dist/src/custom.d.ts +1 -1
  135. package/dist/src/globalStyles/styles.scss +25 -0
  136. package/dist/tsconfig.build.tsbuildinfo +1 -1
  137. package/package.json +1 -1
  138. package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.js +0 -53
  139. package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.ts +0 -54
  140. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.d.ts +0 -1
  141. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.js +0 -97
  142. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.ts +0 -98
  143. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.d.ts +0 -1
  144. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.js +0 -51
  145. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.ts +0 -52
  146. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.d.ts +0 -1
  147. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.js +0 -54
  148. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.ts +0 -55
  149. package/dist/src/components/sections/BlogSection/BlogSection.styled.js +0 -32
  150. package/dist/src/components/sections/BlogSection/BlogSection.styled.ts +0 -33
  151. package/dist/src/components/sections/ContactSection/ContactSection.styled.d.ts +0 -1
  152. package/dist/src/components/sections/ContactSection/ContactSection.styled.js +0 -89
  153. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.d.ts +0 -1
  154. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.js +0 -27
  155. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.ts +0 -28
  156. package/dist/src/components/sections/FaqSection/FaqSection.styled.d.ts +0 -1
  157. package/dist/src/components/sections/FaqSection/FaqSection.styled.js +0 -29
  158. package/dist/src/components/sections/FaqSection/FaqSection.styled.ts +0 -30
  159. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.d.ts +0 -1
  160. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.js +0 -56
  161. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.ts +0 -57
  162. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.d.ts +0 -1
  163. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.d.ts +0 -1
  164. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.js +0 -10
  165. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.ts +0 -11
  166. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.d.ts +0 -1
  167. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +0 -24
  168. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.d.ts +0 -1
  169. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.js +0 -39
  170. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.ts +0 -40
  171. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.d.ts +0 -1
  172. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.js +0 -40
  173. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.ts +0 -41
  174. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.d.ts +0 -1
  175. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +0 -106
  176. package/dist/src/components/sections/LegalSection/LegalSection.styled.d.ts +0 -1
  177. package/dist/src/components/sections/LegalSection/LegalSection.styled.js +0 -121
  178. package/dist/src/components/sections/LegalSection/LegalSection.styled.ts +0 -122
  179. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.d.ts +0 -1
  180. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.js +0 -46
  181. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.ts +0 -47
  182. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.d.ts +0 -1
  183. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.js +0 -43
  184. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.ts +0 -44
  185. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.d.ts +0 -1
  186. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.js +0 -55
  187. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.ts +0 -56
  188. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.d.ts +0 -1
  189. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.js +0 -70
  190. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.ts +0 -71
  191. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.d.ts +0 -1
  192. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.js +0 -10
  193. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.ts +0 -11
  194. package/dist/src/components/sections/TryUsSection/TryUsSection.styled.d.ts +0 -1
  195. package/dist/src/components/sections/TryUsSection/TryUsSection.styled.js +0 -23
  196. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.d.ts +0 -1
  197. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.js +0 -63
  198. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.ts +0 -64
  199. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.d.ts +0 -1
  200. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +0 -36
  201. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +0 -37
@@ -1,121 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const LegalSectionStyled = styled.section `
4
- margin-top: 1rem;
5
- margin-bottom: 6rem;
6
- padding: 0 1rem;
7
-
8
- @media ${device.laptop} {
9
- padding: 0;
10
- }
11
-
12
- &.legal {
13
- .m-richText {
14
- & > * {
15
- color: var(--neutral-neutral-1);
16
- }
17
-
18
- p {
19
- margin-bottom: 1rem;
20
- }
21
-
22
- .cookie-table,
23
- .cookies-downloaded-documents-pages {
24
- box-shadow: var(--box-shadow-medium);
25
-
26
- thead {
27
- th:nth-child(3),
28
- th:nth-child(4) {
29
- display: none;
30
- @media ${device['landscape-tablets']} {
31
- display: table-cell;
32
- }
33
- }
34
- }
35
-
36
- tbody {
37
- td:nth-child(3),
38
- td:nth-child(4) {
39
- display: none;
40
- @media ${device['landscape-tablets']} {
41
- display: table-cell;
42
- }
43
- }
44
- }
45
- }
46
-
47
- table {
48
- margin: 2.5rem 0;
49
- width: 100%;
50
- border-radius: var(--global-border-radius);
51
- text-align: center;
52
- border-collapse: collapse;
53
-
54
- thead {
55
- th {
56
- height: 2.5rem;
57
- background-color: var(--primary-main-light-5);
58
- border-right: 1px solid var(--neutral-neutral-4);
59
-
60
- &:first-child {
61
- border-top-left-radius: var(--global-border-radius);
62
- }
63
-
64
- &:last-child {
65
- border-right: none;
66
- border-top-right-radius: var(--global-border-radius);
67
- }
68
- }
69
-
70
- tr {
71
- font-weight: bold;
72
- padding: 0.5rem 0;
73
- }
74
- }
75
-
76
- tbody {
77
- td {
78
- border-right: 1px solid var(--neutral-neutral-4);
79
-
80
- &:last-child {
81
- border-right: none;
82
- }
83
- }
84
-
85
- tr {
86
- height: 2.5rem;
87
-
88
- &:nth-child(even) {
89
- background: var(--neutral-neutral-6);
90
- }
91
- }
92
- }
93
- }
94
-
95
- h2 {
96
- font-size: 32px;
97
- line-height: 1.13;
98
- letter-spacing: -0.3px;
99
- margin-bottom: 1rem;
100
- }
101
-
102
- a {
103
- color: var(--primary-main-light-1);
104
- }
105
-
106
- ul,
107
- ol {
108
- padding-left: 2rem;
109
- margin-bottom: 1rem;
110
- }
111
-
112
- ul {
113
- list-style: disc;
114
- }
115
-
116
- ol {
117
- list-style-type: decimal;
118
- }
119
- }
120
- }
121
- `;
@@ -1,122 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const LegalSectionStyled = styled.section`
5
- margin-top: 1rem;
6
- margin-bottom: 6rem;
7
- padding: 0 1rem;
8
-
9
- @media ${device.laptop} {
10
- padding: 0;
11
- }
12
-
13
- &.legal {
14
- .m-richText {
15
- & > * {
16
- color: var(--neutral-neutral-1);
17
- }
18
-
19
- p {
20
- margin-bottom: 1rem;
21
- }
22
-
23
- .cookie-table,
24
- .cookies-downloaded-documents-pages {
25
- box-shadow: var(--box-shadow-medium);
26
-
27
- thead {
28
- th:nth-child(3),
29
- th:nth-child(4) {
30
- display: none;
31
- @media ${device['landscape-tablets']} {
32
- display: table-cell;
33
- }
34
- }
35
- }
36
-
37
- tbody {
38
- td:nth-child(3),
39
- td:nth-child(4) {
40
- display: none;
41
- @media ${device['landscape-tablets']} {
42
- display: table-cell;
43
- }
44
- }
45
- }
46
- }
47
-
48
- table {
49
- margin: 2.5rem 0;
50
- width: 100%;
51
- border-radius: var(--global-border-radius);
52
- text-align: center;
53
- border-collapse: collapse;
54
-
55
- thead {
56
- th {
57
- height: 2.5rem;
58
- background-color: var(--primary-main-light-5);
59
- border-right: 1px solid var(--neutral-neutral-4);
60
-
61
- &:first-child {
62
- border-top-left-radius: var(--global-border-radius);
63
- }
64
-
65
- &:last-child {
66
- border-right: none;
67
- border-top-right-radius: var(--global-border-radius);
68
- }
69
- }
70
-
71
- tr {
72
- font-weight: bold;
73
- padding: 0.5rem 0;
74
- }
75
- }
76
-
77
- tbody {
78
- td {
79
- border-right: 1px solid var(--neutral-neutral-4);
80
-
81
- &:last-child {
82
- border-right: none;
83
- }
84
- }
85
-
86
- tr {
87
- height: 2.5rem;
88
-
89
- &:nth-child(even) {
90
- background: var(--neutral-neutral-6);
91
- }
92
- }
93
- }
94
- }
95
-
96
- h2 {
97
- font-size: 32px;
98
- line-height: 1.13;
99
- letter-spacing: -0.3px;
100
- margin-bottom: 1rem;
101
- }
102
-
103
- a {
104
- color: var(--primary-main-light-1);
105
- }
106
-
107
- ul,
108
- ol {
109
- padding-left: 2rem;
110
- margin-bottom: 1rem;
111
- }
112
-
113
- ul {
114
- list-style: disc;
115
- }
116
-
117
- ol {
118
- list-style-type: decimal;
119
- }
120
- }
121
- }
122
- `
@@ -1 +0,0 @@
1
- export declare const MidBannerRatafiaSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,46 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const MidBannerRatafiaSectionStyled = styled.section `
4
- display: flex;
5
- justify-content: center;
6
- align-content: center;
7
- width: 100%;
8
- padding: 2rem 1.5rem;
9
-
10
- @media ${device.desktop} {
11
- padding: 3rem 2rem;
12
- }
13
- @media ${device['desktop-xl']} {
14
- padding: 3rem 7.5rem;
15
- }
16
-
17
- .mid-banner-ratafia-section {
18
- &__wrapper {
19
- display: flex;
20
- justify-content: center;
21
- align-items: flex-start;
22
- flex: 1 0 0;
23
-
24
- padding: 2rem;
25
- gap: 3rem;
26
-
27
- max-width: 1200px;
28
-
29
- border-radius: 16px;
30
- background: var(--neutral-neutral-6);
31
-
32
- @media ${device.desktop} {
33
- padding: 3rem 5rem 0.5rem 4rem;
34
- gap: 5rem;
35
- }
36
-
37
- &__sample {
38
- display: none;
39
-
40
- @media ${device.desktop} {
41
- display: block;
42
- }
43
- }
44
- }
45
- }
46
- `;
@@ -1,47 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const MidBannerRatafiaSectionStyled = styled.section`
5
- display: flex;
6
- justify-content: center;
7
- align-content: center;
8
- width: 100%;
9
- padding: 2rem 1.5rem;
10
-
11
- @media ${device.desktop} {
12
- padding: 3rem 2rem;
13
- }
14
- @media ${device['desktop-xl']} {
15
- padding: 3rem 7.5rem;
16
- }
17
-
18
- .mid-banner-ratafia-section {
19
- &__wrapper {
20
- display: flex;
21
- justify-content: center;
22
- align-items: flex-start;
23
- flex: 1 0 0;
24
-
25
- padding: 2rem;
26
- gap: 3rem;
27
-
28
- max-width: 1200px;
29
-
30
- border-radius: 16px;
31
- background: var(--neutral-neutral-6);
32
-
33
- @media ${device.desktop} {
34
- padding: 3rem 5rem 0.5rem 4rem;
35
- gap: 5rem;
36
- }
37
-
38
- &__sample {
39
- display: none;
40
-
41
- @media ${device.desktop} {
42
- display: block;
43
- }
44
- }
45
- }
46
- }
47
- `
@@ -1 +0,0 @@
1
- export declare const PeopleSayAboutUsSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,43 +0,0 @@
1
- import { device, size } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const PeopleSayAboutUsSectionStyled = styled.section `
4
- width: 100%;
5
- margin: 0 auto;
6
- text-align: center;
7
- padding: 1.5rem;
8
-
9
- @media ${device.laptop} {
10
- padding: 0;
11
- }
12
-
13
- @media ${device.desktop} {
14
- max-width: ${size.lg};
15
- }
16
-
17
- .people-say {
18
- &__title {
19
- font-family: var(--font-serif);
20
- font-size: 32px;
21
- font-weight: 400;
22
- line-height: 42px;
23
- letter-spacing: -0.3px;
24
- text-align: center;
25
- }
26
- }
27
-
28
- .richt-text-strapi {
29
- text-align: left;
30
- margin-top: 2rem;
31
-
32
- > p,
33
- > blockquote {
34
- margin-top: 1.5rem;
35
- }
36
-
37
- blockquote {
38
- padding: 1rem;
39
- background: var(--neutral-neutral-6);
40
- border-radius: 4px;
41
- }
42
- }
43
- `;
@@ -1,44 +0,0 @@
1
- import { device, size } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const PeopleSayAboutUsSectionStyled = styled.section`
5
- width: 100%;
6
- margin: 0 auto;
7
- text-align: center;
8
- padding: 1.5rem;
9
-
10
- @media ${device.laptop} {
11
- padding: 0;
12
- }
13
-
14
- @media ${device.desktop} {
15
- max-width: ${size.lg};
16
- }
17
-
18
- .people-say {
19
- &__title {
20
- font-family: var(--font-serif);
21
- font-size: 32px;
22
- font-weight: 400;
23
- line-height: 42px;
24
- letter-spacing: -0.3px;
25
- text-align: center;
26
- }
27
- }
28
-
29
- .richt-text-strapi {
30
- text-align: left;
31
- margin-top: 2rem;
32
-
33
- > p,
34
- > blockquote {
35
- margin-top: 1.5rem;
36
- }
37
-
38
- blockquote {
39
- padding: 1rem;
40
- background: var(--neutral-neutral-6);
41
- border-radius: 4px;
42
- }
43
- }
44
- `
@@ -1 +0,0 @@
1
- export declare const StepsRatafiaSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,55 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const StepsRatafiaSectionStyled = styled.section `
4
- z-index: 999;
5
- width: 100%;
6
-
7
- @media ${device.desktop} {
8
- display: flex;
9
- justify-content: center;
10
- align-items: center;
11
- align-self: stretch;
12
- }
13
-
14
- .steps-ratafia-section {
15
- &__wrapper {
16
- display: flex;
17
- flex-direction: column;
18
- justify-content: center;
19
- align-items: center;
20
- align-self: stretch;
21
-
22
- gap: 3rem;
23
- padding: 2rem 1.5rem 3rem 1.5rem;
24
-
25
- max-width: 1200px;
26
-
27
- @media ${device.desktop} {
28
- padding: 3rem 0 3rem 0;
29
- }
30
- @media ${device['desktop-xl']} {
31
- flex-direction: row;
32
- justify-content: center;
33
- align-items: center;
34
- }
35
-
36
- &__video {
37
- display: flex;
38
- justify-content: center;
39
-
40
- max-width: 1024px;
41
- @media ${device['desktop-xl']} {
42
- max-width: 720px;
43
- }
44
- video {
45
- border-radius: 8px;
46
- box-shadow: 0 0.125rem 0.375rem 0 rgba(2, 55, 74, 0.25);
47
- width: 100%;
48
- }
49
- }
50
- &__content {
51
- flex: 1;
52
- }
53
- }
54
- }
55
- `;
@@ -1,56 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const StepsRatafiaSectionStyled = styled.section`
5
- z-index: 999;
6
- width: 100%;
7
-
8
- @media ${device.desktop} {
9
- display: flex;
10
- justify-content: center;
11
- align-items: center;
12
- align-self: stretch;
13
- }
14
-
15
- .steps-ratafia-section {
16
- &__wrapper {
17
- display: flex;
18
- flex-direction: column;
19
- justify-content: center;
20
- align-items: center;
21
- align-self: stretch;
22
-
23
- gap: 3rem;
24
- padding: 2rem 1.5rem 3rem 1.5rem;
25
-
26
- max-width: 1200px;
27
-
28
- @media ${device.desktop} {
29
- padding: 3rem 0 3rem 0;
30
- }
31
- @media ${device['desktop-xl']} {
32
- flex-direction: row;
33
- justify-content: center;
34
- align-items: center;
35
- }
36
-
37
- &__video {
38
- display: flex;
39
- justify-content: center;
40
-
41
- max-width: 1024px;
42
- @media ${device['desktop-xl']} {
43
- max-width: 720px;
44
- }
45
- video {
46
- border-radius: 8px;
47
- box-shadow: 0 0.125rem 0.375rem 0 rgba(2, 55, 74, 0.25);
48
- width: 100%;
49
- }
50
- }
51
- &__content {
52
- flex: 1;
53
- }
54
- }
55
- }
56
- `
@@ -1 +0,0 @@
1
- export declare const TryItRatafiaSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,70 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const TryItRatafiaSectionStyled = styled.section `
4
- display: flex;
5
- justify-content: center;
6
- align-content: center;
7
- width: 100%;
8
- padding: 2rem 1.5rem;
9
-
10
- @media ${device.laptop} {
11
- padding: 3rem 2rem;
12
- }
13
- @media ${device['desktop-xl']} {
14
- padding: 3rem 7.5rem;
15
- }
16
-
17
- .try-it-ratafia-section {
18
- &__wrapper {
19
- display: flex;
20
- flex-direction: column;
21
- justify-content: space-between;
22
- align-items: center;
23
- align-self: stretch;
24
-
25
- padding: 1.5rem;
26
- gap: 1.5rem;
27
-
28
- border-radius: 16px;
29
-
30
- max-width: 1200px;
31
-
32
- @media ${device['landscape-tablets']} {
33
- padding: 2rem;
34
- gap: 2.5rem;
35
- flex-direction: row;
36
- }
37
- @media ${device.laptop} {
38
- padding: 2.5rem 2.5rem 2.5rem 4rem;
39
- gap: 5rem;
40
- }
41
-
42
- &__content {
43
- display: flex;
44
- flex-direction: column;
45
- align-items: flex-start;
46
- flex: 1 0 0;
47
- align-self: stretch;
48
-
49
- gap: 1rem;
50
-
51
- @media ${device['landscape-tablets']} {
52
- padding: 3rem 0;
53
- }
54
-
55
- &__icon {
56
- width: 48px;
57
- height: 48px;
58
- }
59
- &__title {
60
- align-self: stretch;
61
- color: var(--others-white);
62
- }
63
- }
64
-
65
- &__children {
66
- max-width: 460px;
67
- }
68
- }
69
- }
70
- `;
@@ -1,71 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const TryItRatafiaSectionStyled = styled.section`
5
- display: flex;
6
- justify-content: center;
7
- align-content: center;
8
- width: 100%;
9
- padding: 2rem 1.5rem;
10
-
11
- @media ${device.laptop} {
12
- padding: 3rem 2rem;
13
- }
14
- @media ${device['desktop-xl']} {
15
- padding: 3rem 7.5rem;
16
- }
17
-
18
- .try-it-ratafia-section {
19
- &__wrapper {
20
- display: flex;
21
- flex-direction: column;
22
- justify-content: space-between;
23
- align-items: center;
24
- align-self: stretch;
25
-
26
- padding: 1.5rem;
27
- gap: 1.5rem;
28
-
29
- border-radius: 16px;
30
-
31
- max-width: 1200px;
32
-
33
- @media ${device['landscape-tablets']} {
34
- padding: 2rem;
35
- gap: 2.5rem;
36
- flex-direction: row;
37
- }
38
- @media ${device.laptop} {
39
- padding: 2.5rem 2.5rem 2.5rem 4rem;
40
- gap: 5rem;
41
- }
42
-
43
- &__content {
44
- display: flex;
45
- flex-direction: column;
46
- align-items: flex-start;
47
- flex: 1 0 0;
48
- align-self: stretch;
49
-
50
- gap: 1rem;
51
-
52
- @media ${device['landscape-tablets']} {
53
- padding: 3rem 0;
54
- }
55
-
56
- &__icon {
57
- width: 48px;
58
- height: 48px;
59
- }
60
- &__title {
61
- align-self: stretch;
62
- color: var(--others-white);
63
- }
64
- }
65
-
66
- &__children {
67
- max-width: 460px;
68
- }
69
- }
70
- }
71
- `
@@ -1 +0,0 @@
1
- export declare const TryOurFreeLegalBlogsSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,10 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const TryOurFreeLegalBlogsSectionStyled = styled.section `
4
- display: flex;
5
- flex-direction: column;
6
-
7
- @media ${device['landscape-tablets']} {
8
- flex-flow: row nowrap;
9
- }
10
- `;