ecomlab-components-next 0.1.32 → 0.1.34
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.
- package/dist/common/fetchUrls.js +7 -2
- package/dist/common/headers.js +2 -1
- package/dist/common/hooks/useDebounce.js +37 -0
- package/dist/common/hooks/useTextSelectionInModal.js +41 -0
- package/dist/components/Article/ArcticleWiki/ArcticleWiki.stories.js +152 -0
- package/dist/components/Article/ArcticleWiki/ArticleWiki.js +775 -0
- package/dist/components/Article/ArcticleWiki/ArticleWiki.scss +278 -0
- package/dist/components/Article/ArticleViewV2/ArticleViewV2.js +791 -0
- package/dist/components/Article/ArticleViewV2/ArticleViewV2.scss +245 -0
- package/dist/components/Article/ArticleViewV2/ArticleViewV2.stories.js +166 -0
- package/dist/components/Article/ArticleViewV2/img/bell.svg +9 -0
- package/dist/components/Article/ArticleViewV2/img/btn-add-round.svg +4 -0
- package/dist/components/Article/ArticleViewV2/img/calendar_icon.svg +6 -0
- package/dist/components/Article/ArticleViewV2/img/close-round.svg +3 -0
- package/dist/components/Article/ArticleViewV2/img/close.svg +9 -0
- package/dist/components/Article/ArticleViewV2/img/copy_icon.svg +5 -0
- package/dist/components/Article/ArticleViewV2/img/dndMenu.svg +1 -0
- package/dist/components/Article/ArticleViewV2/img/info.svg +9 -0
- package/dist/components/Article/ArticleViewV2/img/ok_icon.svg +5 -0
- package/dist/components/Article/ArticleViewV2/img/plus_circle.svg +6 -0
- package/dist/components/Article/ArticleViewV2/img/share_icon.svg +5 -0
- package/dist/components/Article/ArticleViewV2/img/tg.svg +3 -0
- package/dist/components/Article/ArticleViewV2/img/tg_icon.svg +5 -0
- package/dist/components/Article/ArticleViewV2/img/time_icon.svg +6 -0
- package/dist/components/Article/ArticleViewV2/img/view_icon.svg +6 -0
- package/dist/components/Article/ArticleViewV2/img/vk_icon.svg +5 -0
- package/dist/components/Article/ArticleViewV2/img/whatsapp_icon.svg +5 -0
- package/dist/components/Article/Breadcrumb/Breadcrumb.js +69 -0
- package/dist/components/Article/Breadcrumb/Breadcrumb.scss +96 -0
- package/dist/components/Article/Breadcrumb/img/drop-right.svg +3 -0
- package/dist/components/Article/Breadcrumb/img/home_icon.svg +5 -0
- package/dist/components/Article/EditWrapper/EditWrapper.js +108 -0
- package/dist/components/Article/EditWrapper/EditWrapper.scss +93 -0
- package/dist/components/Article/EditWrapper/img/bx-grid-vertical.svg +5 -0
- package/dist/components/Article/Editor/Editor.js +92 -0
- package/dist/components/Article/Editor/Editor.scss +35 -0
- package/dist/components/Article/Editor/img/copy.svg +6 -0
- package/dist/components/Article/FormBtn/FormBtn.js +229 -0
- package/dist/components/Article/FormBtn/FormBtn.scss +458 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/ModalBitrixForm.js +282 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/ModalBitrixForm.scss +140 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/img/close_icon.svg +3 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/img/done_icon.svg +3 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/img/ozon.svg +9 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/img/ozon_bkg.svg +9 -0
- package/dist/components/Article/FormBtn/ModalBitrixForm/validationFunc.js +14 -0
- package/dist/components/Article/FormBtn/img/clos_icon.svg +6 -0
- package/dist/components/Article/FormBtn/img/close-icon.svg +3 -0
- package/dist/components/Article/ImgArticle/ImgArticle.js +297 -0
- package/dist/components/Article/ImgArticle/ImgArticle.scss +169 -0
- package/dist/components/Article/ImgArticle/img/noPhoto.png +0 -0
- package/dist/components/Article/InformationBlock/InformationBlock.js +200 -0
- package/dist/components/Article/InformationBlock/InformationBlock.scss +89 -0
- package/dist/components/Article/InformationBlock/img/bell.svg +9 -0
- package/dist/components/Article/ListOfContent/ListOfContent.js +110 -0
- package/dist/components/Article/ListOfContent/ListOfContent.scss +115 -0
- package/dist/components/Article/ListOfContent/img/time_icon.svg +3 -0
- package/dist/components/Article/ListOfContent/img/view_icon.svg +3 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/ModalMiltilevelSidebarSettings.js +973 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/ModalMiltilevelSidebarSettings.scss +254 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/ModalMiltilevelSidebarSettings.stories.js +76 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/bx-cog.png +0 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/bx-cog.svg +4 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/bx-trash.png +0 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/bx-trash.svg +4 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/drop_icon.svg +5 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/edit_icon.svg +6 -0
- package/dist/components/Article/ModalMiltilevelSidebarSettings/img/trash_icon.svg +8 -0
- package/dist/components/Article/ModalReplaceBlock/ModalReplaceBlock.js +85 -0
- package/dist/components/Article/ModalReplaceBlock/ModalReplaceBlock.scss +72 -0
- package/dist/components/Article/SelectedBlocks/SelectedBlocks.js +281 -0
- package/dist/components/Article/SelectedBlocks/SelectedBlocks.scss +0 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/ModalSelectionSocialMedia.js +130 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/ModalSelectionSocialMedia.scss +65 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/Facebook.svg +4 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/OK.svg +4 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/Xcom.svg +9 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/linkedin.svg +5 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/tg.svg +4 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/vk.svg +4 -0
- package/dist/components/Article/SocialMedia/ModalSelectionSocialMedia/img/wtsp.svg +4 -0
- package/dist/components/Article/SocialMedia/SocialMedia.js +242 -0
- package/dist/components/Article/SocialMedia/SocialMedia.scss +57 -0
- package/dist/components/Article/SocialMedia/img/dzen.svg +4 -0
- package/dist/components/Article/SocialMedia/img/facebook.svg +4 -0
- package/dist/components/Article/SocialMedia/img/insta.svg +9 -0
- package/dist/components/Article/SocialMedia/img/linkendIn.svg +5 -0
- package/dist/components/Article/SocialMedia/img/ok.svg +4 -0
- package/dist/components/Article/SocialMedia/img/pikabu.svg +9 -0
- package/dist/components/Article/SocialMedia/img/telegram.svg +4 -0
- package/dist/components/Article/SocialMedia/img/vcru.svg +0 -0
- package/dist/components/Article/SocialMedia/img/vk.svg +4 -0
- package/dist/components/Article/SocialMedia/img/wp.svg +4 -0
- package/dist/components/Article/SocialMedia/img/x.svg +9 -0
- package/dist/components/Article/TextArticle/TextArticle.js +257 -0
- package/dist/components/Article/TextArticle/TextArticle.scss +156 -0
- package/dist/components/Article/TextArticle/img/dndMenu.svg +1 -0
- package/dist/components/Article/TitleText/TitleText.js +157 -0
- package/dist/components/Article/TitleText/TitleText.scss +74 -0
- package/dist/components/Article/VideoArticle/VideoArticle.js +248 -0
- package/dist/components/Article/VideoArticle/VideoArticle.scss +147 -0
- package/dist/components/Buttons/ButtonActionDrop/ButtonActionDrop.js +109 -0
- package/dist/components/Buttons/ButtonActionDrop/ButtonActionDrop.scss +97 -0
- package/dist/components/Buttons/ButtonActionDrop/img/bx-dots-horizontal-rounded.svg +3 -0
- package/package.json +3 -2
|
@@ -0,0 +1,458 @@
|
|
|
1
|
+
.modal-feedback-2 {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
padding: 32px;
|
|
5
|
+
gap: 24px;
|
|
6
|
+
align-items: center;
|
|
7
|
+
position: relative;
|
|
8
|
+
z-index: 1000;
|
|
9
|
+
display: flex;
|
|
10
|
+
width: auto;
|
|
11
|
+
min-width: 360px;
|
|
12
|
+
margin-left: auto;
|
|
13
|
+
margin-right: auto;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
align-items: center;
|
|
16
|
+
border-radius: 8px;
|
|
17
|
+
background: var(--white, #FFF);
|
|
18
|
+
box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.12);
|
|
19
|
+
position: relative;
|
|
20
|
+
height: fit-content;
|
|
21
|
+
border-radius: 8px;
|
|
22
|
+
|
|
23
|
+
.b24-form-wrapper.b24-form-shadow {
|
|
24
|
+
box-shadow: none;
|
|
25
|
+
-webkit-box-shadow: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.btn-close {
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
position: absolute;
|
|
31
|
+
width: 50px;
|
|
32
|
+
height: 50px;
|
|
33
|
+
display: flex;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
align-items: center;
|
|
36
|
+
border: none;
|
|
37
|
+
background-color: inherit;
|
|
38
|
+
top: 10px;
|
|
39
|
+
right: 10px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.b24-form-inner-box {
|
|
43
|
+
background-color: white;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.b24-form-sign {
|
|
47
|
+
padding-left: 0;
|
|
48
|
+
padding-right: 0;
|
|
49
|
+
background-color: white;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.b24-form-header,
|
|
53
|
+
.b24-form-padding-side {
|
|
54
|
+
form {
|
|
55
|
+
margin-top: 24px;
|
|
56
|
+
|
|
57
|
+
div {
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
border: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.b24-form-header-title {
|
|
67
|
+
color: var(--, #464853);
|
|
68
|
+
text-align: center;
|
|
69
|
+
font-family: Inter;
|
|
70
|
+
font-size: 30px;
|
|
71
|
+
font-style: normal;
|
|
72
|
+
font-weight: 500;
|
|
73
|
+
line-height: 160%;
|
|
74
|
+
/* 48px */
|
|
75
|
+
letter-spacing: 0.15px;
|
|
76
|
+
margin-bottom: 0;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.b24-form-control {
|
|
80
|
+
height: 60px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.b24-form-content,
|
|
84
|
+
.b24-form-padding-side {
|
|
85
|
+
padding: 0;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.b24-form-btn-block {
|
|
89
|
+
width: 100%;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.b24-form-btn {
|
|
93
|
+
border-radius: var(--Main-System-10px, 10px);
|
|
94
|
+
background: #00B45E;
|
|
95
|
+
width: 100%;
|
|
96
|
+
height: 60px;
|
|
97
|
+
color: var(--, #FFF);
|
|
98
|
+
text-align: center;
|
|
99
|
+
font-family: Inter;
|
|
100
|
+
font-size: 20px;
|
|
101
|
+
font-style: normal;
|
|
102
|
+
font-weight: 600;
|
|
103
|
+
line-height: 160%;
|
|
104
|
+
/* 32px */
|
|
105
|
+
letter-spacing: 0.1px;
|
|
106
|
+
|
|
107
|
+
&:hover {
|
|
108
|
+
background: #15803D;
|
|
109
|
+
transition: 0.5s;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.b24-form-header-description {
|
|
114
|
+
color: var(--, #464853);
|
|
115
|
+
text-align: center;
|
|
116
|
+
font-family: Inter;
|
|
117
|
+
font-size: 20px;
|
|
118
|
+
font-style: normal;
|
|
119
|
+
font-weight: 500;
|
|
120
|
+
line-height: 160%;
|
|
121
|
+
/* 32px */
|
|
122
|
+
letter-spacing: 0.1px;
|
|
123
|
+
margin-bottom: 0;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.b24-form-field,
|
|
127
|
+
.b24-form-field-name,
|
|
128
|
+
.b24-form-control-string,
|
|
129
|
+
.b24-form-control-alert {
|
|
130
|
+
.b24-form-control-label {
|
|
131
|
+
position: absolute;
|
|
132
|
+
top: -10px;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.b24-form-control-alert {
|
|
137
|
+
margin-bottom: 15 !important;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.b24-form-field {
|
|
141
|
+
margin-bottom: 24px;
|
|
142
|
+
-webkit-transition: 200ms linear margin-bottom;
|
|
143
|
+
-o-transition: 200ms linear margin-bottom;
|
|
144
|
+
transition: 200ms linear margin-bottom;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.b24-form-control-container,
|
|
148
|
+
.b24-form-control-icon-after {
|
|
149
|
+
width: 100%;
|
|
150
|
+
border-radius: 10px;
|
|
151
|
+
background: #F4F5F9;
|
|
152
|
+
border: none;
|
|
153
|
+
color: var(--, #464853);
|
|
154
|
+
font-family: Inter;
|
|
155
|
+
font-size: 20px;
|
|
156
|
+
font-style: normal;
|
|
157
|
+
font-weight: 600;
|
|
158
|
+
line-height: 160%;
|
|
159
|
+
letter-spacing: 0.1px;
|
|
160
|
+
resize: none;
|
|
161
|
+
border: none;
|
|
162
|
+
|
|
163
|
+
.b24-form-control-label {
|
|
164
|
+
position: absolute;
|
|
165
|
+
top: -20px;
|
|
166
|
+
color: #8E91A1;
|
|
167
|
+
font-family: Inter;
|
|
168
|
+
font-size: 16px;
|
|
169
|
+
font-style: normal;
|
|
170
|
+
font-weight: 500;
|
|
171
|
+
line-height: 20px;
|
|
172
|
+
transform: none;
|
|
173
|
+
flex-direction: row;
|
|
174
|
+
|
|
175
|
+
.b24-form-control-required {
|
|
176
|
+
position: relative;
|
|
177
|
+
left: .1em;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.b24-form-icon-after,
|
|
182
|
+
.b24-form-icon-remove {
|
|
183
|
+
background-image: url('./img/close-icon.svg');
|
|
184
|
+
background-repeat: no-repeat;
|
|
185
|
+
background-position: center;
|
|
186
|
+
|
|
187
|
+
&::after,
|
|
188
|
+
&::before {
|
|
189
|
+
display: none;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
.b24-form-control:focus+.b24-form-control-label {
|
|
197
|
+
position: absolute;
|
|
198
|
+
top: -20px;
|
|
199
|
+
color: #8E91A1;
|
|
200
|
+
font-family: Inter;
|
|
201
|
+
font-size: 16px;
|
|
202
|
+
font-style: normal;
|
|
203
|
+
font-weight: 500;
|
|
204
|
+
line-height: 20px;
|
|
205
|
+
transform: none;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.b24-form-control,
|
|
209
|
+
.b24-form-control-not-empty {
|
|
210
|
+
width: 100%;
|
|
211
|
+
padding: 0;
|
|
212
|
+
border-radius: var(--Main-System-10px, 10px);
|
|
213
|
+
background: #F4F5F9;
|
|
214
|
+
border: none;
|
|
215
|
+
color: var(--, #464853);
|
|
216
|
+
font-family: Inter;
|
|
217
|
+
font-size: 20px;
|
|
218
|
+
font-style: normal;
|
|
219
|
+
font-weight: 600;
|
|
220
|
+
line-height: 160%;
|
|
221
|
+
padding-left: 20px;
|
|
222
|
+
padding-right: 20px;
|
|
223
|
+
letter-spacing: 0.1px;
|
|
224
|
+
border: none;
|
|
225
|
+
border-radius: 10px;
|
|
226
|
+
|
|
227
|
+
// &:-webkit-autofill {
|
|
228
|
+
// background: #F4F5F9 !important;
|
|
229
|
+
// }
|
|
230
|
+
|
|
231
|
+
&:-webkit-autofill,
|
|
232
|
+
&:-webkit-autofill:hover,
|
|
233
|
+
&:-webkit-autofill:focus {
|
|
234
|
+
-webkit-box-shadow: 0 0 0px 1000px #F4F5F9 inset;
|
|
235
|
+
transition: background-color 5000s ease-in-out 0s;
|
|
236
|
+
border-radius: 10px !important;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
&:focus {
|
|
240
|
+
outline: none;
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.b24-form-content,
|
|
248
|
+
.b24-form-padding-side {
|
|
249
|
+
display: flex;
|
|
250
|
+
flex-direction: column;
|
|
251
|
+
gap: 12px;
|
|
252
|
+
margin-bottom: 22px;
|
|
253
|
+
|
|
254
|
+
.input-box {
|
|
255
|
+
display: flex;
|
|
256
|
+
flex-direction: column;
|
|
257
|
+
|
|
258
|
+
.text_name-field {
|
|
259
|
+
color: #8E91A1;
|
|
260
|
+
font-family: Inter;
|
|
261
|
+
font-size: 20px;
|
|
262
|
+
font-style: normal;
|
|
263
|
+
font-weight: 600;
|
|
264
|
+
line-height: 160%;
|
|
265
|
+
letter-spacing: 0.1px;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
textarea {
|
|
271
|
+
width: 100%;
|
|
272
|
+
height: 120px;
|
|
273
|
+
border-radius: 10px;
|
|
274
|
+
background: #F4F5F9;
|
|
275
|
+
border: none;
|
|
276
|
+
color: var(--, #464853);
|
|
277
|
+
font-family: Inter;
|
|
278
|
+
font-size: 20px;
|
|
279
|
+
font-style: normal;
|
|
280
|
+
font-weight: 600;
|
|
281
|
+
line-height: 160%;
|
|
282
|
+
padding-left: 20px;
|
|
283
|
+
padding-right: 20px;
|
|
284
|
+
letter-spacing: 0.1px;
|
|
285
|
+
resize: none;
|
|
286
|
+
padding-top: 16px;
|
|
287
|
+
padding-bottom: 16px;
|
|
288
|
+
|
|
289
|
+
&:focus {
|
|
290
|
+
outline: none;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.text_info {
|
|
296
|
+
max-width: 300px;
|
|
297
|
+
text-align: center;
|
|
298
|
+
margin-top: 28px;
|
|
299
|
+
color: #696C7B;
|
|
300
|
+
font-family: Inter;
|
|
301
|
+
font-size: 15px;
|
|
302
|
+
font-style: normal;
|
|
303
|
+
font-weight: 400;
|
|
304
|
+
line-height: 130%;
|
|
305
|
+
letter-spacing: 0.075px;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
body {
|
|
311
|
+
.blackout {
|
|
312
|
+
display: flex;
|
|
313
|
+
width: 100%;
|
|
314
|
+
height: 100%;
|
|
315
|
+
min-height: 100vh;
|
|
316
|
+
z-index: 10;
|
|
317
|
+
position: fixed;
|
|
318
|
+
overflow: hidden;
|
|
319
|
+
align-items: center;
|
|
320
|
+
justify-content: center;
|
|
321
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
322
|
+
padding: 20px;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
@media (max-width: 420px) {
|
|
327
|
+
.modal-feedback {
|
|
328
|
+
margin-left: 10px;
|
|
329
|
+
margin-right: 10px;
|
|
330
|
+
max-width: calc(100% - 20px);
|
|
331
|
+
position: absolute;
|
|
332
|
+
top: 12px;
|
|
333
|
+
padding: 24px 16px;
|
|
334
|
+
min-width: 340px;
|
|
335
|
+
|
|
336
|
+
.btn-close {
|
|
337
|
+
width: 24px;
|
|
338
|
+
height: 24px;
|
|
339
|
+
top: 10px;
|
|
340
|
+
right: 10px;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.title {
|
|
344
|
+
max-width: 80%;
|
|
345
|
+
font-size: 24px;
|
|
346
|
+
line-height: 32px;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.text {
|
|
350
|
+
font-size: 16px;
|
|
351
|
+
line-height: 20px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.input-group {
|
|
355
|
+
width: 100%;
|
|
356
|
+
|
|
357
|
+
.input-box {
|
|
358
|
+
.text_name-field {
|
|
359
|
+
font-size: 16px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
input {
|
|
363
|
+
width: 100%;
|
|
364
|
+
height: 50px;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.text_info {
|
|
369
|
+
margin-top: 8px;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.b24-form-btn-block {
|
|
375
|
+
|
|
376
|
+
// .b24-form-btn {
|
|
377
|
+
// background-color: #4285F4;
|
|
378
|
+
|
|
379
|
+
// }
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.blackout {
|
|
384
|
+
display: flex;
|
|
385
|
+
width: 100%;
|
|
386
|
+
height: 100%;
|
|
387
|
+
min-height: 100vh;
|
|
388
|
+
z-index: 10;
|
|
389
|
+
position: fixed;
|
|
390
|
+
overflow: auto;
|
|
391
|
+
align-items: center;
|
|
392
|
+
justify-content: center;
|
|
393
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
394
|
+
padding: 20px;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.form-consultation {
|
|
398
|
+
display: flex;
|
|
399
|
+
flex-direction: column;
|
|
400
|
+
align-items: center;
|
|
401
|
+
justify-content: center;
|
|
402
|
+
width: 100%;
|
|
403
|
+
padding: 12px 20px 20px;
|
|
404
|
+
border-radius: 12px;
|
|
405
|
+
border: 1px solid #DDD;
|
|
406
|
+
margin: 0;
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
.text_blue {
|
|
410
|
+
color: #00B45E;
|
|
411
|
+
text-align: center;
|
|
412
|
+
font-family: "Golos Text";
|
|
413
|
+
font-size: 28px;
|
|
414
|
+
font-style: normal;
|
|
415
|
+
font-weight: 500;
|
|
416
|
+
line-height: 1.6;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.text_grey {
|
|
420
|
+
text-align: center;
|
|
421
|
+
color: #434C5B;
|
|
422
|
+
text-align: center;
|
|
423
|
+
font-family: "Golos Text";
|
|
424
|
+
font-size: 20px;
|
|
425
|
+
font-style: normal;
|
|
426
|
+
font-weight: 500;
|
|
427
|
+
line-height: 28px;
|
|
428
|
+
line-height: 1.6;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.btn-basic {
|
|
432
|
+
font-size: 24px;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
@media (max-width: 1100px) {
|
|
437
|
+
.form-consultation {
|
|
438
|
+
margin: 18px 0;
|
|
439
|
+
|
|
440
|
+
.text_blue {
|
|
441
|
+
font-size: 22px;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.btn-basic {
|
|
445
|
+
font-size: 20px;
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
@media (max-width: 430px) {
|
|
451
|
+
.form-consultation {
|
|
452
|
+
margin: 18px 0;
|
|
453
|
+
|
|
454
|
+
.btn-basic {
|
|
455
|
+
font-size: 16px;
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|