mario-education 2.4.24-beta → 2.4.26-admin
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/MarioFramework.Education/ClientApp/src/components/Select/SelectFilter.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/ConferenceRubric/hooks/useConferenceRubricDetail.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/AreaChart.d.ts +9 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/BarAndAreaChart.d.ts +9 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/BarChart.d.ts +9 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/BubbleChartCustom.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/CheckboxCustom.d.ts +12 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/ColumnChartAndPercent.d.ts +18 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/CustomPieChart.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/HeaderChart/HeaderChart.d.ts +12 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/HeaderChart/PlusButton.d.ts +6 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentByAge.d.ts +6 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentByAgeAndGender.d.ts +8 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentByGrade.d.ts +3 -3
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/TopLearningStrategy.d.ts +3 -3
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/TotalCard.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts +26 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/types.d.ts +89 -4
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +94 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useBehavior.d.ts +8 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useChartDatas.d.ts +32 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts +20 -19
- package/dist/MarioFramework.Education/ClientApp/src/containers/Destinations/components/DestinationModal.d.ts +13 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Destinations/hooks/useDestination.d.ts +18 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Destinations/utils/constant.d.ts +11 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Destinations/utils/type.interface.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Destinations/utils/ultis.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Destinations/views/Destinations.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/configs/questionDetailSchema.d.ts +2 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/SessionTemplate/configs/validationSchema.d.ts +2 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/SessionTemplate/hooks/useSessionTemplateDetail.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/SessionTemplateGeneralClass/hooks/useSessionTemplateGeneralClassDetail.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/services/dashboardService.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/designationService.d.ts +5 -0
- package/dist/MarioFramework.Education/ClientApp/src/utils/constants.d.ts +9 -0
- package/dist/MarioFramework.Education/ClientApp/src/utils/serviceType.interface.d.ts +15 -0
- package/dist/MarioFramework.Education/ClientApp/src/utils/type.d.ts +53 -0
- package/dist/index.css +373 -124
- package/dist/index.js +8182 -1607
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8184 -1609
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/ReadinessToLearn.d.ts +0 -7
|
@@ -19,7 +19,7 @@ declare type QuestionSimple = {
|
|
|
19
19
|
text: string;
|
|
20
20
|
isDefaultQuestion: boolean;
|
|
21
21
|
};
|
|
22
|
-
declare const useSessionTemplateDetail: (id?:
|
|
22
|
+
declare const useSessionTemplateDetail: (id?: number | null | undefined) => {
|
|
23
23
|
sessionTemplateDetail: SessionTemplateDetail;
|
|
24
24
|
defaultTeacherQuestions: QuestionSimple[];
|
|
25
25
|
defaultStudentQuestions: QuestionSimple[];
|
|
@@ -12,7 +12,7 @@ declare type QuestionSimple = {
|
|
|
12
12
|
id: number;
|
|
13
13
|
text: string;
|
|
14
14
|
};
|
|
15
|
-
declare const useSessionTemplateGeneralClassDetail: (id?:
|
|
15
|
+
declare const useSessionTemplateGeneralClassDetail: (id?: number | null | undefined) => {
|
|
16
16
|
sessionTemplateGeneralClassDetail: SessionTemplateGeneralClassDetail;
|
|
17
17
|
teacherQuestions: QuestionSimple[];
|
|
18
18
|
studentQuestions: QuestionSimple[];
|
|
@@ -17,3 +17,4 @@ export declare const getStudentBySpecialNeed: (filter: any) => Promise<import("a
|
|
|
17
17
|
export declare const getStudentByAge: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
18
18
|
export declare const getStudentByGender: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
19
|
export declare const getGrades: (studentUserId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
20
|
+
export declare const getBandScore: () => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IDesignation, IFilter } from "../utils/serviceType.interface";
|
|
2
|
+
export declare const getDesignationsRequest: (filter: IFilter) => Promise<import("axios").AxiosResponse<any>>;
|
|
3
|
+
export declare const createDesignationRequest: (data: IDesignation) => Promise<import("axios").AxiosResponse<any>>;
|
|
4
|
+
export declare const deleteDesignationRequest: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
|
+
export declare const verifyDesignationRequest: (id: number, data: IDesignation) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -5,3 +5,12 @@ export declare const CONFERENCE_RUBRIC_TYPES: {
|
|
|
5
5
|
HabitsAttitudesTowardsLearning: string;
|
|
6
6
|
Custom: string;
|
|
7
7
|
};
|
|
8
|
+
export declare const GENDER_FILTER: string[];
|
|
9
|
+
export declare enum FILTER_NAME {
|
|
10
|
+
Calendar = "Calendar",
|
|
11
|
+
Gender = "Gender",
|
|
12
|
+
Grade = "Grade",
|
|
13
|
+
BandScore = "Current Grade",
|
|
14
|
+
StudentName = "Student name",
|
|
15
|
+
TeacherName = "Teacher name"
|
|
16
|
+
}
|
|
@@ -6,3 +6,18 @@ export interface IStudentWidthAssistant {
|
|
|
6
6
|
searchString?: string;
|
|
7
7
|
pageSize?: number;
|
|
8
8
|
}
|
|
9
|
+
export interface IFilter {
|
|
10
|
+
currentPage?: number;
|
|
11
|
+
pageSize?: number;
|
|
12
|
+
}
|
|
13
|
+
export interface IDesignation {
|
|
14
|
+
id?: number;
|
|
15
|
+
name: string;
|
|
16
|
+
}
|
|
17
|
+
export interface IDesignationReponse {
|
|
18
|
+
currentPage: number;
|
|
19
|
+
items: IDesignation[];
|
|
20
|
+
pageSize: number;
|
|
21
|
+
totalItems: number;
|
|
22
|
+
totalPages: number;
|
|
23
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { DashboardFilter } from "../containers/Dashboard/configs/types";
|
|
2
|
+
export interface Student {
|
|
3
|
+
studentId: number;
|
|
4
|
+
email: string;
|
|
5
|
+
fullName: string;
|
|
6
|
+
id: string;
|
|
7
|
+
label?: string;
|
|
8
|
+
value?: string;
|
|
9
|
+
gender?: string;
|
|
10
|
+
mtss?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface IFilter {
|
|
13
|
+
startDate?: number;
|
|
14
|
+
endDate?: number;
|
|
15
|
+
gender?: number[];
|
|
16
|
+
grade?: string[];
|
|
17
|
+
bandScore?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface PROPS_FILTERS_COMPONENT {
|
|
20
|
+
teacherId?: number;
|
|
21
|
+
studentUserId?: string;
|
|
22
|
+
studentId?: number;
|
|
23
|
+
teacherUserId?: string;
|
|
24
|
+
studentDefault?: Student;
|
|
25
|
+
handleChangeLastYear?: Function;
|
|
26
|
+
filter?: DashboardFilter;
|
|
27
|
+
name: string;
|
|
28
|
+
icon: string;
|
|
29
|
+
handleChangeFilters: Function;
|
|
30
|
+
option?: any[];
|
|
31
|
+
defautl?: number;
|
|
32
|
+
onChangeFilters?: (filters: IFilter) => void;
|
|
33
|
+
}
|
|
34
|
+
export interface BAND_SCORE {
|
|
35
|
+
label: string;
|
|
36
|
+
value: number;
|
|
37
|
+
}
|
|
38
|
+
export interface GRADES {
|
|
39
|
+
label: string;
|
|
40
|
+
value: number;
|
|
41
|
+
}
|
|
42
|
+
export declare enum LegalGenderType {
|
|
43
|
+
Male = 0,
|
|
44
|
+
Female = 1
|
|
45
|
+
}
|
|
46
|
+
export interface genderOptions {
|
|
47
|
+
value: any;
|
|
48
|
+
label: string;
|
|
49
|
+
}
|
|
50
|
+
export interface LAST_YEAR {
|
|
51
|
+
label: string;
|
|
52
|
+
value: number;
|
|
53
|
+
}
|
package/dist/index.css
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
--custom-blue: #0090e3;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
|
|
8
7
|
._3ybTi {
|
|
9
8
|
margin: 2em;
|
|
10
9
|
padding: 0.5em;
|
|
@@ -102,8 +101,78 @@ tbody._b-AXV tr {
|
|
|
102
101
|
|
|
103
102
|
._33tYy {
|
|
104
103
|
background-color: var(--custom-blue);
|
|
105
|
-
color: white
|
|
104
|
+
color: white;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
._2VZin {
|
|
108
|
+
background: #fff;
|
|
109
|
+
border: 1px solid rgba(51, 51, 51, 0.1);
|
|
110
|
+
border-radius: 6px;
|
|
111
|
+
padding: 10px 17px;
|
|
112
|
+
margin-bottom: 10px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
._1d6uY {
|
|
116
|
+
margin-right: 10px;
|
|
117
|
+
position: relative;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
._1d6uY:last-child {
|
|
121
|
+
margin-right: 0;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
._1XSIo {
|
|
125
|
+
position: absolute;
|
|
126
|
+
width:100%;
|
|
127
|
+
z-index: 100;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
._3o8gR {
|
|
131
|
+
display: none;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
._3ru37 {
|
|
135
|
+
background: #ffff;
|
|
136
|
+
border-radius: 4px;
|
|
137
|
+
min-width: 160px;
|
|
138
|
+
padding: 5px 0px 12px;
|
|
139
|
+
overflow: auto;
|
|
140
|
+
overflow-x: hidden;
|
|
141
|
+
border: 1px solid rgba(51, 51, 51, 0.1);
|
|
142
|
+
box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.05);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
._1tQvL {
|
|
146
|
+
position: absolute;
|
|
147
|
+
opacity: 0;
|
|
148
|
+
visibility: hidden;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
._1tQvL:checked + ._3VNX5::before {
|
|
152
|
+
border: 0.35rem solid #3c65e0;
|
|
106
153
|
}
|
|
154
|
+
|
|
155
|
+
._3VNX5::before {
|
|
156
|
+
display: inline-block;
|
|
157
|
+
content: "";
|
|
158
|
+
height: 1.25rem;
|
|
159
|
+
width: 1.25rem;
|
|
160
|
+
margin-right: 0.625rem;
|
|
161
|
+
border: 0.1rem solid #cccccc;
|
|
162
|
+
background: #fcfcfc;
|
|
163
|
+
border-radius: 50%;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
._3VNX5 {
|
|
167
|
+
display: flex;
|
|
168
|
+
align-items: center;
|
|
169
|
+
margin: 15px 0;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
._3VNX5 > p {
|
|
173
|
+
margin-bottom: 0;
|
|
174
|
+
}
|
|
175
|
+
|
|
107
176
|
._3DVMZ {
|
|
108
177
|
display: flex;
|
|
109
178
|
flex: 0 0 17%;
|
|
@@ -165,7 +234,7 @@ h6._3zOGW {
|
|
|
165
234
|
}
|
|
166
235
|
|
|
167
236
|
._10hbz {
|
|
168
|
-
font-weight:
|
|
237
|
+
font-weight: bold;
|
|
169
238
|
font-size: 14px;
|
|
170
239
|
line-height: 16px;
|
|
171
240
|
}
|
|
@@ -281,7 +350,14 @@ h6._3zOGW {
|
|
|
281
350
|
}
|
|
282
351
|
|
|
283
352
|
._1yuC9 {
|
|
284
|
-
min-width:
|
|
353
|
+
min-width: 255px;
|
|
354
|
+
flex-basis: 19%;
|
|
355
|
+
}
|
|
356
|
+
._1yuC9 ._10hbz {
|
|
357
|
+
font-family: 'Roboto';
|
|
358
|
+
font-weight: 500;
|
|
359
|
+
font-size: 14px;
|
|
360
|
+
line-height: 16px;
|
|
285
361
|
}
|
|
286
362
|
._1yuC9:last-child {
|
|
287
363
|
padding: 1.2rem !important;
|
|
@@ -296,6 +372,7 @@ h6._3zOGW {
|
|
|
296
372
|
width: 100%;
|
|
297
373
|
-o-object-fit: scale-down;
|
|
298
374
|
object-fit: scale-down;
|
|
375
|
+
max-height: 300px;
|
|
299
376
|
}
|
|
300
377
|
._2PMoX._3ZX0b {
|
|
301
378
|
height: 300px;
|
|
@@ -347,160 +424,332 @@ h6._3zOGW {
|
|
|
347
424
|
}
|
|
348
425
|
}
|
|
349
426
|
|
|
350
|
-
|
|
351
|
-
|
|
427
|
+
|
|
428
|
+
/* new design; */
|
|
429
|
+
._2eMbe{
|
|
430
|
+
box-shadow: 6px 0 18px rgb(0 0 0 / 6%);
|
|
431
|
+
}
|
|
432
|
+
._6ZvFg {
|
|
433
|
+
border-radius: 8px;
|
|
434
|
+
overflow: hidden;
|
|
435
|
+
position: relative;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
._24CNV._6ZvFg::after {
|
|
439
|
+
content: "";
|
|
440
|
+
width: 1px;
|
|
441
|
+
height: 100%;
|
|
442
|
+
position: absolute;
|
|
443
|
+
top: 0;
|
|
444
|
+
left: 50%;
|
|
445
|
+
transform: translate(-50%,0);
|
|
446
|
+
display: block;
|
|
447
|
+
background: rgba(51, 51, 51, 0.1);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
._6ZvFg
|
|
451
|
+
._2vtSi{
|
|
452
|
+
background: #FFFFFF;
|
|
453
|
+
border-radius: 8px;
|
|
454
|
+
padding: 20px;
|
|
455
|
+
cursor: pointer;
|
|
456
|
+
}
|
|
457
|
+
._IpsVf{
|
|
458
|
+
|
|
459
|
+
}
|
|
460
|
+
._IpsVf ._gzxWe{
|
|
461
|
+
color: "#B2B2B2";
|
|
462
|
+
font-size: 18px;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
._2vtSi ._37IcR{
|
|
466
|
+
color: #D9D9D9;
|
|
467
|
+
display:flex;
|
|
468
|
+
align-items: center;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
._2vtSi ._2G6Wz{
|
|
472
|
+
font-weight: 700;
|
|
473
|
+
font-size: 18px;
|
|
474
|
+
letter-spacing: 0.01em;
|
|
475
|
+
color: #262626;
|
|
476
|
+
font-family: "Roboto";
|
|
477
|
+
}
|
|
478
|
+
._2vtSi ._IpsVf {
|
|
352
479
|
display: flex;
|
|
353
480
|
align-items: center;
|
|
354
|
-
justify-content: center;
|
|
355
|
-
padding: 15px;
|
|
356
481
|
}
|
|
357
|
-
|
|
358
|
-
.
|
|
359
|
-
|
|
482
|
+
|
|
483
|
+
._3xpNv {
|
|
484
|
+
border-radius: 4px;
|
|
485
|
+
background: #ffff;
|
|
360
486
|
}
|
|
361
487
|
|
|
362
|
-
.
|
|
363
|
-
|
|
488
|
+
._3H5Ly {
|
|
489
|
+
padding: 6px 12px;
|
|
490
|
+
border-radius: 0 4px 4px 0;
|
|
491
|
+
background: #1DBAB4;
|
|
492
|
+
color: #ffff;
|
|
364
493
|
}
|
|
365
|
-
|
|
366
|
-
|
|
494
|
+
|
|
495
|
+
._J_n-D {
|
|
496
|
+
padding: 6px;
|
|
497
|
+
border-radius: 4px 0 0 4px;
|
|
498
|
+
background: #1CA9A4;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
._2vtSi ._3AALV{
|
|
502
|
+
font-size: 16px;
|
|
503
|
+
}
|
|
504
|
+
._g5-bn ._2htKu{
|
|
505
|
+
cursor: pointer;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
._2htKu svg{
|
|
509
|
+
width: 20px !important;
|
|
510
|
+
height: auto !important;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
._2vtSi ._1qXAT{
|
|
367
514
|
font-weight: 400;
|
|
515
|
+
font-size: 16px;
|
|
516
|
+
line-height: 100%;
|
|
517
|
+
color: #252733;
|
|
368
518
|
}
|
|
369
|
-
.
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
519
|
+
._3NgrB,
|
|
520
|
+
._32fu3{
|
|
521
|
+
background-color: #fff;
|
|
522
|
+
}
|
|
523
|
+
._3NgrB{
|
|
524
|
+
padding-bottom: 10px;
|
|
525
|
+
}
|
|
526
|
+
._3NgrB ._DmMzw {
|
|
527
|
+
padding-left: 10px;
|
|
373
528
|
}
|
|
374
529
|
|
|
375
|
-
.
|
|
376
|
-
|
|
377
|
-
|
|
530
|
+
._3NgrB ._1eUXn {
|
|
531
|
+
width: 10px;
|
|
532
|
+
height: 10px;
|
|
533
|
+
margin-right: 5px;
|
|
534
|
+
}
|
|
535
|
+
._3NgrB ._3hrrC ._Q-iiW {
|
|
536
|
+
font-weight: 400;
|
|
537
|
+
font-size: 14px;
|
|
538
|
+
letter-spacing: 0.01em;
|
|
539
|
+
color: #4d4d4d;
|
|
540
|
+
margin-bottom: 0;
|
|
378
541
|
}
|
|
379
|
-
.
|
|
542
|
+
._3NgrB ._cD4ey {
|
|
380
543
|
display: flex;
|
|
381
|
-
justify-content:
|
|
382
|
-
|
|
544
|
+
justify-content: center;
|
|
545
|
+
align-items: center;
|
|
546
|
+
margin-right: 10px;
|
|
383
547
|
}
|
|
384
|
-
.
|
|
548
|
+
._3NgrB ._24PRg {
|
|
549
|
+
font-weight: 400;
|
|
550
|
+
font-size: 16px;
|
|
551
|
+
letter-spacing: 0.01em;
|
|
552
|
+
color: #252733;
|
|
553
|
+
}
|
|
554
|
+
._3NgrB ._2HWhv > label {
|
|
555
|
+
font-weight: 600;
|
|
385
556
|
font-size: 18px;
|
|
386
|
-
|
|
387
|
-
color: #1a202c;
|
|
557
|
+
color: #252733;
|
|
388
558
|
}
|
|
389
|
-
.
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
color: #ffffff;
|
|
559
|
+
._2Hdbu{
|
|
560
|
+
width: 100%;
|
|
561
|
+
padding: 20px;
|
|
393
562
|
}
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
top: 50%;
|
|
399
|
-
left: 50%;
|
|
400
|
-
transform: translate(-50%, -50%);
|
|
563
|
+
._2Hdbu ._3RJ2T{
|
|
564
|
+
display: flex;
|
|
565
|
+
justify-content: center;
|
|
566
|
+
align-items: center;
|
|
401
567
|
}
|
|
402
|
-
.
|
|
403
|
-
|
|
404
|
-
position: absolute;
|
|
405
|
-
top: 66%;
|
|
406
|
-
left: 10%;
|
|
568
|
+
._3hrrC{
|
|
569
|
+
padding-right: 50px;
|
|
407
570
|
}
|
|
408
|
-
.
|
|
409
|
-
|
|
410
|
-
position: absolute;
|
|
411
|
-
top: 12%;
|
|
412
|
-
left: 50%;
|
|
571
|
+
._38ikt{
|
|
572
|
+
/* height: 410px; */
|
|
413
573
|
}
|
|
414
|
-
.
|
|
415
|
-
display: inline-block;
|
|
416
|
-
top: 64%;
|
|
417
|
-
left: 52%;
|
|
574
|
+
._38ikt ._1TnWs {
|
|
418
575
|
position: absolute;
|
|
576
|
+
right: 60px;
|
|
577
|
+
display: flex;
|
|
578
|
+
justify-content: flex-end;
|
|
579
|
+
flex-wrap: wrap;
|
|
580
|
+
width: 150px;
|
|
581
|
+
}
|
|
582
|
+
._38ikt ._1TnWs label {
|
|
583
|
+
color: #333333;
|
|
584
|
+
font-weight: 500;
|
|
585
|
+
font-size: 14px;
|
|
586
|
+
align-items: center;
|
|
587
|
+
text-align: right;
|
|
588
|
+
color: #333333;
|
|
589
|
+
margin-bottom: 5px;
|
|
590
|
+
}
|
|
591
|
+
._38ikt ._1TnWs span {
|
|
592
|
+
font-weight: 400;
|
|
593
|
+
font-size: 14px;
|
|
594
|
+
line-height: 16px;
|
|
595
|
+
text-align: right;
|
|
596
|
+
color: #4d4d4d;
|
|
419
597
|
}
|
|
420
598
|
|
|
421
|
-
.
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
599
|
+
._3BTJi ._1Ws0m {
|
|
600
|
+
margin-top: 50px;
|
|
601
|
+
display: flex;
|
|
602
|
+
justify-content: center;
|
|
603
|
+
align-items: center;
|
|
604
|
+
flex-direction: column;
|
|
426
605
|
}
|
|
427
606
|
|
|
428
|
-
.
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
607
|
+
._3BTJi ._1Ws0m ._2HnO_ {
|
|
608
|
+
display: flex;
|
|
609
|
+
justify-content: center;
|
|
610
|
+
align-items: center;
|
|
611
|
+
margin-bottom: 10px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
._3BTJi ._1Ws0m ._1eUXn {
|
|
615
|
+
width: 12px;
|
|
616
|
+
height: 12px;
|
|
617
|
+
margin-right: 8px;
|
|
618
|
+
border-radius: 2px;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
._3BTJi ._1Ws0m ._2BFJw {
|
|
622
|
+
padding-right: 8px;
|
|
623
|
+
color: #4d4d4d;
|
|
624
|
+
letter-spacing: 0.01em;
|
|
625
|
+
font-weight: 400;
|
|
626
|
+
font-size: 16px;
|
|
627
|
+
}
|
|
628
|
+
._2az-l{
|
|
629
|
+
padding-right: 10px;
|
|
630
|
+
padding-left: 10px;
|
|
631
|
+
padding-bottom: 10px;
|
|
433
632
|
}
|
|
434
633
|
|
|
435
|
-
.
|
|
634
|
+
._2az-l ._1TnWs {
|
|
635
|
+
position: absolute;
|
|
636
|
+
right: 35px;
|
|
637
|
+
top: 10px;
|
|
436
638
|
display: flex;
|
|
639
|
+
justify-content: flex-end;
|
|
437
640
|
flex-wrap: wrap;
|
|
438
|
-
|
|
439
|
-
|
|
641
|
+
width: 150px;
|
|
642
|
+
}
|
|
643
|
+
._2az-l ._1TnWs label {
|
|
644
|
+
color: #333333;
|
|
645
|
+
font-weight: 500;
|
|
646
|
+
font-size: 14px;
|
|
647
|
+
align-items: center;
|
|
648
|
+
text-align: right;
|
|
649
|
+
color: #333333;
|
|
650
|
+
margin-bottom: 5px;
|
|
651
|
+
}
|
|
652
|
+
._2az-l ._1TnWs span {
|
|
653
|
+
font-weight: 400;
|
|
654
|
+
font-size: 14px;
|
|
655
|
+
line-height: 16px;
|
|
656
|
+
text-align: right;
|
|
657
|
+
color: #4d4d4d;
|
|
658
|
+
}
|
|
659
|
+
._2j8fp{
|
|
660
|
+
display: relative;
|
|
440
661
|
}
|
|
441
662
|
|
|
442
|
-
.
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
663
|
+
._2j8fp ._1BN5z {
|
|
664
|
+
width: 100%;
|
|
665
|
+
bottom: 40px;
|
|
666
|
+
position: relative;
|
|
667
|
+
|
|
668
|
+
}
|
|
669
|
+
._2j8fp ._1rYav {
|
|
670
|
+
width: 80%;
|
|
671
|
+
margin: 0 auto;
|
|
672
|
+
display: flex;
|
|
673
|
+
justify-content: space-between;
|
|
674
|
+
align-items: center;
|
|
675
|
+
}
|
|
676
|
+
._2j8fp ._1rYav div {
|
|
677
|
+
font-weight: 600;
|
|
678
|
+
font-size: 12px;
|
|
679
|
+
}
|
|
680
|
+
._2j8fp ._3-zAs {
|
|
681
|
+
display: flex;
|
|
682
|
+
justify-content: center;
|
|
683
|
+
position: relative;
|
|
447
684
|
bottom: 20px;
|
|
448
|
-
right: 20px;
|
|
449
685
|
}
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
686
|
+
._2j8fp ._3-zAs ._3RJ2T{
|
|
687
|
+
display: flex;
|
|
688
|
+
margin-right: 20px;
|
|
689
|
+
align-items: center;
|
|
690
|
+
}
|
|
691
|
+
._2j8fp ._3-zAs ._1eUXn {
|
|
692
|
+
width: 10px;
|
|
693
|
+
height: 10px;
|
|
694
|
+
margin-right: 5px;
|
|
695
|
+
}
|
|
696
|
+
._2j8fp ._3-zAs ._Q-iiW {
|
|
697
|
+
font-weight: 400;
|
|
698
|
+
font-size: 14px;
|
|
699
|
+
letter-spacing: 0.01em;
|
|
700
|
+
color: #4d4d4d;
|
|
701
|
+
margin-bottom: 0;
|
|
702
|
+
margin: 0;
|
|
703
|
+
}
|
|
704
|
+
._2j8fp ._3-zAs ._cD4ey {
|
|
705
|
+
display: flex;
|
|
706
|
+
justify-content: center;
|
|
707
|
+
align-items: center;
|
|
708
|
+
margin-right: 10px;
|
|
709
|
+
}
|
|
710
|
+
._2j8fp ._3-zAs ._24PRg {
|
|
711
|
+
font-weight: 400;
|
|
712
|
+
font-size: 16px;
|
|
713
|
+
letter-spacing: 0.01em;
|
|
714
|
+
color: #252733;
|
|
465
715
|
}
|
|
466
716
|
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
717
|
+
._2j8fp ._1PPhv {
|
|
718
|
+
position: absolute;
|
|
719
|
+
right: 50px;
|
|
720
|
+
}
|
|
721
|
+
._2j8fp ._1PPhv ._1rjWR {
|
|
722
|
+
margin-bottom: 22.5px;
|
|
723
|
+
font-weight: 400;
|
|
724
|
+
font-size: 12px;
|
|
725
|
+
text-align: center;
|
|
726
|
+
letter-spacing: 0.01em;
|
|
727
|
+
color: #9a9a9a;
|
|
728
|
+
}
|
|
729
|
+
._2j8fp ._f-Ti4{
|
|
730
|
+
display: relative;
|
|
731
|
+
}
|
|
732
|
+
._2j8fp ._TPa6x{
|
|
733
|
+
padding-right: 50px;
|
|
734
|
+
}
|
|
735
|
+
._1hZ_V{
|
|
736
|
+
width: 100%;
|
|
737
|
+
text-align: center;
|
|
738
|
+
font-weight: 400;
|
|
739
|
+
font-size: 16px;
|
|
740
|
+
text-align: right;
|
|
741
|
+
letter-spacing: 0.01em;
|
|
742
|
+
color: #808080;
|
|
743
|
+
display: flex;
|
|
744
|
+
justify-content: center;
|
|
745
|
+
align-items: center;
|
|
472
746
|
}
|
|
473
747
|
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
width: calc(100vw-10px);
|
|
482
|
-
padding: 0 10px;
|
|
483
|
-
}
|
|
484
|
-
._LR7-A ._dVojB,
|
|
485
|
-
._LR7-A ._1ALLM,
|
|
486
|
-
._LR7-A ._3OII4,
|
|
487
|
-
._LR7-A ._1t4JS {
|
|
488
|
-
flex: 50% 1;
|
|
489
|
-
}
|
|
490
|
-
._30j_l{
|
|
491
|
-
top: 41%;
|
|
492
|
-
left: 50%;
|
|
493
|
-
}
|
|
494
|
-
._34Snf{
|
|
495
|
-
top: 53%;
|
|
496
|
-
left: 5%;
|
|
497
|
-
}
|
|
498
|
-
._2WBPR {
|
|
499
|
-
top: 12%;
|
|
500
|
-
left: 50%;
|
|
501
|
-
}
|
|
502
|
-
._35giW {
|
|
503
|
-
top: 52%;
|
|
504
|
-
left: 55%;
|
|
505
|
-
}
|
|
748
|
+
._38ikt ._pFFg9{
|
|
749
|
+
font-weight: 400;
|
|
750
|
+
font-size: 16px;
|
|
751
|
+
text-align: center;
|
|
752
|
+
letter-spacing: 0.01em;
|
|
753
|
+
color: #808080;
|
|
754
|
+
margin-bottom: 20px;
|
|
506
755
|
}
|