mario-teacher-student-client 9000.0.14 → 9000.0.17

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 (25) hide show
  1. package/dist/components/Header/HeaderComponent.d.ts +1 -0
  2. package/dist/components/Input/InputComponent.d.ts +2 -2
  3. package/dist/components/QuestionTypes/SingleChoiceComponent.d.ts +2 -0
  4. package/dist/containers/ActivityCircle/hooks/useListDetailActivity.d.ts +1 -1
  5. package/dist/containers/ActivityCircle/services/ActivityCircleService.d.ts +1 -1
  6. package/dist/containers/ConferenceRubric/hooks/useConferenceRubric.d.ts +1 -0
  7. package/dist/containers/FriendCircle/hooks/useListDetail.d.ts +1 -0
  8. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatConference.d.ts +1 -1
  9. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatLearningProgress.d.ts +1 -1
  10. package/dist/containers/Note/hook/useNoteAdd.d.ts +5 -6
  11. package/dist/containers/ScaffoldingExample/apiClient/index.d.ts +6 -0
  12. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/hooks/useNotes.d.ts +6 -1
  13. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/services/index.d.ts +7 -1
  14. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/MineNotesScreen.d.ts +2 -0
  15. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/OtherNoteScreen.d.ts +2 -0
  16. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/PrivateNotesScreen.d.ts +7 -1
  17. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/ScaffoldingQuestionAndAnswer.d.ts +1 -1
  18. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/ScaffoldingFloatTab.d.ts +3 -0
  19. package/dist/index.css +71 -251
  20. package/dist/index.js +2900 -2699
  21. package/dist/index.js.map +1 -1
  22. package/dist/index.modern.js +2882 -2681
  23. package/dist/index.modern.js.map +1 -1
  24. package/dist/services/myFriendGoalService.d.ts +1 -1
  25. package/package.json +1 -1
@@ -16,6 +16,7 @@ interface Props {
16
16
  minute?: number;
17
17
  hour?: number;
18
18
  isTeacher?: boolean;
19
+ isClassReflection?: boolean;
19
20
  }
20
21
  declare const HeaderComponent: FC<Props>;
21
22
  export default HeaderComponent;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  interface Props {
3
- id?: string;
3
+ customId?: string;
4
4
  valueText: string;
5
5
  onChange: Function;
6
6
  name?: string;
@@ -11,5 +11,5 @@ interface Props {
11
11
  isSending?: boolean;
12
12
  handleSending?: Function;
13
13
  }
14
- declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, id, isSending, handleSending }: Props) => JSX.Element;
14
+ declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, customId, isSending, handleSending }: Props) => JSX.Element;
15
15
  export default InputComponent;
@@ -3,6 +3,8 @@ interface Props {
3
3
  onChangeQuestionAnswer?: Function;
4
4
  questionId: number;
5
5
  valueText: string;
6
+ minText?: string;
7
+ maxText?: string;
6
8
  }
7
9
  declare const SingleChoiceComponent: FC<Props>;
8
10
  export default SingleChoiceComponent;
@@ -19,6 +19,6 @@ declare const useListDetailActivity: () => {
19
19
  setFile: import("react").Dispatch<any>;
20
20
  confirmData: (values: any, cb: any) => Promise<void>;
21
21
  getData: () => Promise<void>;
22
- deleteActivity: (studentId: number, activityId: number) => Promise<void>;
22
+ deleteActivity: (studentId: number, activityId: number, cb?: any) => Promise<void>;
23
23
  };
24
24
  export default useListDetailActivity;
@@ -1,4 +1,4 @@
1
- export declare const getTotalActivityCount: () => Promise<import("axios").AxiosResponse<any>>;
1
+ export declare const getTotalActivityCount: (studentId: number) => Promise<import("axios").AxiosResponse<any>>;
2
2
  export declare const get: (studentId: number, filters: any) => Promise<import("axios").AxiosResponse<any>>;
3
3
  export declare const getById: (studentId: number, activityId: number) => Promise<import("axios").AxiosResponse<any>>;
4
4
  export declare const create: (studentId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
@@ -33,6 +33,7 @@ declare const useConferenceRubric: () => {
33
33
  answerStudentConferenceRubric: any;
34
34
  informationUser: any;
35
35
  conferenceId: string;
36
+ conferenceResultId: number;
36
37
  conferenceResult: any;
37
38
  setLength: import("react").Dispatch<import("react").SetStateAction<number>>;
38
39
  length: number;
@@ -16,5 +16,6 @@ declare const useListDetail: () => {
16
16
  label: string;
17
17
  color: string;
18
18
  }[];
19
+ onDeleteFriend: (cb: any) => Promise<void>;
19
20
  };
20
21
  export default useListDetail;
@@ -11,5 +11,5 @@ interface Props {
11
11
  timeStartConference: any;
12
12
  optionConference: any;
13
13
  }
14
- declare const ChatConference: ({ title, studentId, seriesConference, widthChartConference, heightChartConference, handleChangeStartDateConference, handleChangeEndDateConference, timeEndConference, optionConference, timeStartConference, }: Props) => JSX.Element;
14
+ declare const ChatConference: ({ title, seriesConference, widthChartConference, heightChartConference, handleChangeStartDateConference, handleChangeEndDateConference, timeEndConference, optionConference, timeStartConference, }: Props) => JSX.Element;
15
15
  export default ChatConference;
@@ -11,5 +11,5 @@ interface Props {
11
11
  timeStartLearningProgress: any;
12
12
  optionLearningProgress: any;
13
13
  }
14
- declare const ChatLearningProgress: ({ title, studentId, seriesLearningProgress, widthChartLearningProgress, heightChartLearningProgress, handleChangeStartLearningProgress, handleChangeEndLearningProgress, timeEndLearningProgress, timeStartLearningProgress, optionLearningProgress }: Props) => JSX.Element;
14
+ declare const ChatLearningProgress: ({ title, seriesLearningProgress, widthChartLearningProgress, heightChartLearningProgress, handleChangeStartLearningProgress, handleChangeEndLearningProgress, timeEndLearningProgress, timeStartLearningProgress, optionLearningProgress }: Props) => JSX.Element;
15
15
  export default ChatLearningProgress;
@@ -1,20 +1,19 @@
1
1
  declare const useNoteAdd: () => {
2
- dataTeacherOrStudent: any;
2
+ studentList: any[];
3
3
  handleTitle: (event: React.ChangeEvent<HTMLInputElement>) => void;
4
4
  addDataNote: () => Promise<void>;
5
5
  handleNote: (event: string) => void;
6
- onChangeGetIdStudent: (_: any, id: number) => void;
6
+ handleChangeStudent: (event: React.ChangeEvent<{}>, value: any) => void;
7
7
  title: string;
8
8
  note: string;
9
9
  viewListNote: () => void;
10
- onChangeSetDataUpdateText: (e: any) => void;
11
- itemViewUpdate: any;
12
- onChangeGetIdStudentUpdate: (_: any, id: any) => void;
13
- onChangeSetDataNoteDetailUpdateTitle: (e: any) => void;
14
10
  getItemNoteHook: () => Promise<void>;
15
11
  itemView: any;
16
12
  deleteItemHook: () => Promise<void>;
17
13
  editNote: () => void;
14
+ errorSelect: boolean;
15
+ errorTitle: boolean;
16
+ student: any;
18
17
  updateDataNote: () => Promise<void>;
19
18
  };
20
19
  export default useNoteAdd;
@@ -9,4 +9,10 @@ export declare const apiGetAllNote: (sessionId: number) => Promise<import("axios
9
9
  export declare const apiSubmitNote: (sessionResultId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
10
10
  export declare const apiRemoveNote: (noteId: number) => Promise<import("axios").AxiosResponse<any>>;
11
11
  export declare const apiUpdateNote: (noteId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
12
+ export declare const apiUpdatePrivateNote: (sessionId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
13
+ export declare const apiGetAllConferenceNote: (conferenceId: number) => Promise<import("axios").AxiosResponse<any>>;
14
+ export declare const apiSubmitConferenceNote: (sessionResultId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
15
+ export declare const apiRemoveConferenceNote: (noteId: number) => Promise<import("axios").AxiosResponse<any>>;
16
+ export declare const apiUpdateConferenceNote: (noteId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
17
+ export declare const apiUpdatePrivateConferenceNote: (sessionId: number, data: any) => Promise<import("axios").AxiosResponse<any>>;
12
18
  export {};
@@ -1,8 +1,9 @@
1
+ /// <reference types="react" />
1
2
  declare type Filter = {
2
3
  category?: string;
3
4
  level?: string;
4
5
  };
5
- declare const useNotes: (sessionId: number, sessionResultId: number) => {
6
+ declare const useNotes: (sessionId: number, sessionResultId: number, conferenceId: number, conferenceResultId: number) => {
6
7
  screenIndex: number;
7
8
  changeScreen: (index: number) => void;
8
9
  questionList: never[];
@@ -16,10 +17,14 @@ declare const useNotes: (sessionId: number, sessionResultId: number) => {
16
17
  filters: Filter;
17
18
  teacherNotesData: never[];
18
19
  studentNotesData: never[];
20
+ privateNote: string;
21
+ setPrivateNote: import("react").Dispatch<import("react").SetStateAction<string>>;
19
22
  handleSelectSuggester: (question: any) => Promise<void>;
20
23
  handleRemoveQuestion: (noteId: number) => Promise<void>;
21
24
  handleSubmitNote: (noteId: number, answer: string) => Promise<void>;
22
25
  handleRemoveQuestionAnswer: (noteId: number) => Promise<void>;
23
26
  handleSubmitSingleNote: () => Promise<void>;
27
+ handleSubmitPrivateNote: () => Promise<void>;
28
+ teacherPrivateNote: string;
24
29
  };
25
30
  export default useNotes;
@@ -6,7 +6,13 @@ export declare const getAllSelectQuestion: (dispatch: any, filters: Filter) => P
6
6
  export declare const getListCategories: (dispatch: any) => Promise<any>;
7
7
  export declare const getListLevel: (dispatch: any) => Promise<any>;
8
8
  export declare const getAllNote: (dispatch: any, sessionId: number) => Promise<any>;
9
+ export declare const getAllConferenceNote: (dispatch: any, sessionId: number) => Promise<any>;
9
10
  export declare const submitNote: (dispatch: any, sessionResultId: number, text: string) => Promise<any>;
10
- export declare const updateNote: (dispatch: any, sessionNoteId: number, text: string) => Promise<any>;
11
+ export declare const submitConferenceNote: (dispatch: any, conferenceResultId: number, text: string) => Promise<any>;
12
+ export declare const updateNote: (dispatch: any, noteId: number, text: string) => Promise<any>;
13
+ export declare const updateConferenceNote: (dispatch: any, noteId: number, text: string) => Promise<any>;
11
14
  export declare const removeNote: (dispatch: any, noteId: number) => Promise<any>;
15
+ export declare const removeConferenceNote: (dispatch: any, noteId: number) => Promise<any>;
16
+ export declare const updatePrivateNote: (dispatch: any, sessionId: number, privateNote: string) => Promise<any>;
17
+ export declare const updatePrivateConferenceNote: (dispatch: any, conferenceId: number, privateNote: string) => Promise<any>;
12
18
  export {};
@@ -2,6 +2,8 @@
2
2
  declare type PropsType = {
3
3
  sessionId: number;
4
4
  sessionResultId: number;
5
+ conferenceId: number;
6
+ conferenceResultId: number;
5
7
  };
6
8
  declare const MineNoteScreen: (props: PropsType) => JSX.Element;
7
9
  export default MineNoteScreen;
@@ -2,6 +2,8 @@
2
2
  declare type PropsType = {
3
3
  sessionId: number;
4
4
  sessionResultId: number;
5
+ conferenceId: number;
6
+ conferenceResultId: number;
5
7
  };
6
8
  declare const OtherNoteScreen: (props: PropsType) => JSX.Element;
7
9
  export default OtherNoteScreen;
@@ -1,3 +1,9 @@
1
1
  /// <reference types="react" />
2
- declare const PrivateNotesScreen: () => JSX.Element;
2
+ declare type PropsType = {
3
+ sessionId: number;
4
+ sessionResultId: number;
5
+ conferenceId: number;
6
+ conferenceResultId: number;
7
+ };
8
+ declare const PrivateNotesScreen: (props: PropsType) => JSX.Element;
3
9
  export default PrivateNotesScreen;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  interface Props {
3
- id: number;
3
+ id?: number;
4
4
  content?: string;
5
5
  answer?: string;
6
6
  date?: string;
@@ -3,6 +3,9 @@ declare type PropsType = {
3
3
  onClose: any;
4
4
  sessionId: number;
5
5
  sessionResultId: number;
6
+ conferenceId: number;
7
+ conferenceResultId: number;
8
+ informationUser: any;
6
9
  };
7
10
  declare const ScaffoldingFloatTab: (props: PropsType) => JSX.Element;
8
11
  export default ScaffoldingFloatTab;
package/dist/index.css CHANGED
@@ -467,6 +467,19 @@ p._1YLGi {
467
467
  border: 1px solid;
468
468
  border-radius: 12px; }
469
469
 
470
+ ._3oH01 {
471
+ margin-left: 10px; }
472
+
473
+ ._3oSdM {
474
+ display: flex;
475
+ justify-content: space-between;
476
+ align-items: center;
477
+ margin-bottom: 5px; }
478
+ ._3oSdM > p {
479
+ font-size: 14px;
480
+ font-weight: bold;
481
+ line-height: 40px; }
482
+
470
483
  @font-face {
471
484
  font-family: "Lato-Regular";
472
485
  src: url("/fonts/Lato-Regular.ttf");
@@ -674,8 +687,7 @@ p._1YLGi {
674
687
  padding: 15px;
675
688
  display: flex;
676
689
  justify-content: space-between;
677
- align-items: center;
678
- flex: 2 1; }
690
+ align-items: center; }
679
691
 
680
692
  ._3C9U0 {
681
693
  max-height: 600px;
@@ -713,6 +725,11 @@ p._1YLGi {
713
725
  color: #0A4DA2 !important;
714
726
  cursor: pointer; }
715
727
 
728
+ ._3DzT8 {
729
+ display: flex;
730
+ justify-content: flex-end;
731
+ width: 100px; }
732
+
716
733
  ._3zfpv {
717
734
  display: flex;
718
735
  justify-content: space-evenly;
@@ -2432,240 +2449,6 @@ h2._1OAmb {
2432
2449
  opacity: 0;
2433
2450
  transition: opacity 1s linear; }
2434
2451
 
2435
- ._-w_-q {
2436
- box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
2437
- width: 40%;
2438
- left: 60%;
2439
- background: white;
2440
- top: 140px;
2441
- z-index: 10;
2442
- height: 85vh;
2443
- display: flex;
2444
- position: fixed; }
2445
- ._-w_-q ._-tCg- {
2446
- width: 64px;
2447
- height: 100%;
2448
- border-right: 1px solid #c4c4c4; }
2449
- ._-w_-q ._-tCg- ._2AyWj {
2450
- border-bottom: 1px solid #c4c4c4;
2451
- text-align: center;
2452
- padding: 14px 0px; }
2453
- ._-w_-q ._-tCg- ._3WY4I {
2454
- padding: 12px; }
2455
- ._-w_-q ._-tCg- ._3WY4I ._v5Y28 {
2456
- font-size: 14px;
2457
- padding: 3px 0px;
2458
- color: #c4c4c4; }
2459
- ._-w_-q ._-tCg- ._3WY4I ._39Iiv {
2460
- font-weight: 700;
2461
- color: #0a4da2;
2462
- padding: 3px 10px; }
2463
- ._-w_-q ._1Way1 {
2464
- display: flex;
2465
- height: 90%;
2466
- justify-content: flex-end;
2467
- flex-direction: column;
2468
- padding: 0px 20px; }
2469
- ._-w_-q ._1Way1 ._1qsAw {
2470
- display: flex;
2471
- background: #eeeeee;
2472
- border-radius: 20px;
2473
- text-align: center;
2474
- padding: 9px 0px;
2475
- justify-content: center;
2476
- margin-bottom: 13px; }
2477
- ._-w_-q ._1Way1 ._1qsAw ._EHhQM {
2478
- padding: 0px 3px; }
2479
- ._-w_-q ._1Way1 ._G3fzM {
2480
- margin-bottom: 20px; }
2481
- ._-w_-q ._1tUh4 {
2482
- display: flex;
2483
- height: 90%;
2484
- justify-content: flex-end;
2485
- flex-direction: column;
2486
- padding: 0px 20px; }
2487
- ._-w_-q ._1tUh4 ._3r-KB {
2488
- color: #0a4da2;
2489
- font-weight: 400;
2490
- font-size: 16px;
2491
- text-align: center;
2492
- margin-bottom: 5px; }
2493
- ._-w_-q ._1tUh4 ._1di7- {
2494
- margin-bottom: 10px; }
2495
- ._-w_-q ._1tUh4 ._1qsAw {
2496
- display: flex;
2497
- background: #ebf8ff;
2498
- border-radius: 20px;
2499
- text-align: center;
2500
- padding: 9px 0px;
2501
- justify-content: center;
2502
- margin-bottom: 13px; }
2503
- ._-w_-q ._1tUh4 ._1qsAw ._EHhQM {
2504
- padding: 0px 6px;
2505
- color: #0a4da2;
2506
- font-size: 16px;
2507
- font-weight: 500; }
2508
- ._-w_-q ._1tUh4 ._1qsAw ._EHhQM ._2UhPf {
2509
- color: #0a4da2;
2510
- cursor: pointer; }
2511
- ._-w_-q ._1tUh4 ._1qsAw ._4QFFA {
2512
- color: red;
2513
- font-size: 16px; }
2514
- ._-w_-q ._1tUh4 ._G3fzM {
2515
- margin-bottom: 20px; }
2516
- ._-w_-q ._3FoeA {
2517
- height: 100%;
2518
- padding: 0px 20px; }
2519
- ._-w_-q ._3FoeA ._2MOe0 {
2520
- display: flex;
2521
- padding-top: 20px;
2522
- justify-content: space-between; }
2523
- ._-w_-q ._3FoeA ._2MOe0 ._zn0_S {
2524
- font-size: 24px;
2525
- font-weight: bold; }
2526
- ._-w_-q ._3FoeA ._2MOe0 ._5wduO {
2527
- display: flex;
2528
- align-items: center;
2529
- color: #acb1b3; }
2530
- ._-w_-q ._3FoeA ._3WzL- {
2531
- margin-top: 10px; }
2532
- ._-w_-q ._3FoeA ._3WzL- ._ktw63,
2533
- ._-w_-q ._3FoeA ._3WzL- ._17pTa {
2534
- margin-bottom: 10px;
2535
- width: 100% !important; }
2536
- ._-w_-q ._3FoeA ._1j469 {
2537
- font-size: 18px;
2538
- font-weight: bold;
2539
- margin-bottom: 15px; }
2540
- ._-w_-q ._3FoeA ._1RCb0 {
2541
- position: relative;
2542
- border: 1px solid rgba(0, 0, 0, 0.54);
2543
- box-sizing: border-box;
2544
- border-radius: 8px;
2545
- height: 55px;
2546
- flex: 1;
2547
- margin-bottom: 15px;
2548
- display: flex;
2549
- align-items: center;
2550
- padding: 0 12px; }
2551
- ._-w_-q ._3FoeA ._1RCb0 ._1zW0M {
2552
- position: absolute;
2553
- right: 10px;
2554
- top: 50%;
2555
- color: green;
2556
- z-index: 100;
2557
- cursor: pointer;
2558
- transform: translateY(-50%); }
2559
- ._-w_-q ._3FoeA ._1RCb0 ._sj964 {
2560
- height: 50px;
2561
- padding-left: 15px;
2562
- padding-right: 20px;
2563
- width: 100% !important; }
2564
- ._-w_-q ._3FoeA ._Ytyuc {
2565
- background: #308252;
2566
- display: flex;
2567
- justify-content: center;
2568
- position: absolute;
2569
- right: 20px;
2570
- color: white;
2571
- font-size: 18px;
2572
- width: 150px;
2573
- border-radius: 14px;
2574
- padding: 10px;
2575
- cursor: pointer; }
2576
- ._-w_-q ._3FoeA ._Ytyuc ._eiK7W {
2577
- margin-left: 10px; }
2578
- ._-w_-q ._rwNzj {
2579
- height: 90%;
2580
- padding: 0px 20px; }
2581
- ._-w_-q ._rwNzj ._2fVQ0 {
2582
- height: 380px; }
2583
- ._-w_-q ._rwNzj ._2fVQ0 ._2_R7n {
2584
- font-size: 12px;
2585
- font-weight: 400;
2586
- color: #e8e8e8;
2587
- text-align: center;
2588
- padding: 15px 0px; }
2589
- ._-w_-q ._rwNzj ._2fVQ0 ._1RCb0 {
2590
- position: relative;
2591
- border: 1px solid rgba(0, 0, 0, 0.54);
2592
- box-sizing: border-box;
2593
- border-radius: 8px;
2594
- height: 55px;
2595
- flex: 1;
2596
- width: 90%;
2597
- margin-bottom: 15px; }
2598
- ._-w_-q ._rwNzj ._2fVQ0 ._1RCb0 ._1zW0M {
2599
- position: absolute;
2600
- right: 10px;
2601
- top: 50%;
2602
- color: #0a4da2;
2603
- z-index: 100;
2604
- cursor: pointer;
2605
- transform: translateY(-50%); }
2606
- ._-w_-q ._rwNzj ._2fVQ0 ._1RCb0 ._sj964 {
2607
- height: 50px;
2608
- padding-left: 15px;
2609
- padding-right: 20px;
2610
- width: 100% !important; }
2611
- ._-w_-q ._rwNzj ._2fVQ0 ._1RCb0 ._37atD {
2612
- color: white;
2613
- transform: translateY(-50%);
2614
- top: 50%;
2615
- background: red;
2616
- border-radius: 50%;
2617
- position: absolute;
2618
- right: -10%; }
2619
- ._-w_-q ._rwNzj ._2fVQ0 ._23Yfz {
2620
- width: 90%;
2621
- position: relative; }
2622
- ._-w_-q ._rwNzj ._2fVQ0 ._23Yfz ._37atD {
2623
- color: white;
2624
- transform: translateY(-50%);
2625
- top: 50%;
2626
- background: red;
2627
- border-radius: 50%;
2628
- position: absolute;
2629
- right: -10%; }
2630
- ._-w_-q ._rwNzj ._2fVQ0 ._KL3J8 {
2631
- font-size: 12px;
2632
- font-weight: 700;
2633
- padding: 15px 0;
2634
- text-align: center; }
2635
- ._-w_-q ._rwNzj ._2glGX {
2636
- bottom: 15px;
2637
- justify-content: flex-end;
2638
- flex-direction: column;
2639
- padding: 0px 20px;
2640
- display: flex; }
2641
- ._-w_-q ._rwNzj ._2glGX ._3r-KB {
2642
- color: #0a4da2;
2643
- font-weight: 400;
2644
- font-size: 16px;
2645
- text-align: center;
2646
- margin-bottom: 5px; }
2647
- ._-w_-q ._rwNzj ._2glGX ._1qsAw {
2648
- display: flex;
2649
- background: #EEEEEE;
2650
- border-radius: 20px;
2651
- text-align: center;
2652
- padding: 9px 0px;
2653
- justify-content: center;
2654
- margin-bottom: 13px; }
2655
- ._-w_-q ._rwNzj ._2glGX ._1qsAw ._EHhQM {
2656
- padding: 0px 6px;
2657
- color: #0a4da2;
2658
- font-size: 16px;
2659
- font-weight: 500; }
2660
- ._-w_-q ._rwNzj ._2glGX ._1qsAw ._EHhQM ._2UhPf {
2661
- color: #0a4da2;
2662
- cursor: pointer; }
2663
- ._-w_-q ._rwNzj ._2glGX ._1qsAw ._4QFFA {
2664
- color: red;
2665
- font-size: 16px; }
2666
- ._-w_-q ._rwNzj ._2glGX ._G3fzM {
2667
- margin-bottom: 20px; }
2668
-
2669
2452
  ._2d_37 {
2670
2453
  position: fixed;
2671
2454
  padding-bottom: 10px;
@@ -2773,11 +2556,13 @@ h2._1OAmb {
2773
2556
  ._m1FkD ._3bMn1 ._37XQi ._lJNUX {
2774
2557
  font-size: 14px;
2775
2558
  padding: 3px 0px;
2776
- text-align: center; }
2559
+ text-align: center;
2560
+ color: rgba(0, 0, 0, 0.36); }
2777
2561
  ._m1FkD ._3bMn1 ._37XQi ._3SStr {
2778
- font-weight: 700;
2562
+ font-size: 14px;
2779
2563
  padding: 3px 0px;
2780
- text-align: center; }
2564
+ text-align: center;
2565
+ color: rgba(0, 0, 0, 0.36); }
2781
2566
  ._m1FkD ._15JZz {
2782
2567
  display: flex;
2783
2568
  height: 100%;
@@ -2811,13 +2596,15 @@ h2._1OAmb {
2811
2596
  font-weight: 500; }
2812
2597
  ._m1FkD ._1187H ._1JAEf {
2813
2598
  color: red;
2814
- font-size: 16px; }
2599
+ font-size: 16px;
2600
+ cursor: pointer; }
2815
2601
  ._m1FkD ._3hsmO {
2816
2602
  color: #0a4da2;
2817
2603
  font-weight: 400;
2818
2604
  font-size: 16px;
2819
2605
  text-align: center;
2820
- margin-bottom: 5px; }
2606
+ margin-bottom: 5px;
2607
+ cursor: pointer; }
2821
2608
  ._m1FkD ._YRc9L {
2822
2609
  display: flex;
2823
2610
  flex-direction: column; }
@@ -2834,7 +2621,8 @@ h2._1OAmb {
2834
2621
  font-weight: 400;
2835
2622
  font-size: 16px;
2836
2623
  text-align: center;
2837
- margin-bottom: 5px; }
2624
+ margin-bottom: 5px;
2625
+ cursor: pointer; }
2838
2626
  ._m1FkD ._u-4C- ._1OaGh {
2839
2627
  margin-bottom: 10px; }
2840
2628
  ._m1FkD ._u-4C- ._1ncr0 {
@@ -2988,10 +2776,11 @@ h2._1OAmb {
2988
2776
  font-weight: 400;
2989
2777
  font-size: 16px;
2990
2778
  text-align: center;
2991
- margin-bottom: 5px; }
2779
+ margin-bottom: 5px;
2780
+ cursor: pointer; }
2992
2781
  ._m1FkD ._2o2zF ._1Tpf- ._1ncr0 {
2993
2782
  display: flex;
2994
- background: #EEEEEE;
2783
+ background: #eeeeee;
2995
2784
  border-radius: 20px;
2996
2785
  text-align: center;
2997
2786
  padding: 9px 0px;
@@ -3060,7 +2849,7 @@ h2._1OAmb {
3060
2849
  border: 1px solid rgba(0, 0, 0, 0.54);
3061
2850
  box-sizing: border-box;
3062
2851
  border-radius: 8px;
3063
- height: 55px;
2852
+ min-height: 55px;
3064
2853
  flex: 1;
3065
2854
  margin-bottom: 15px;
3066
2855
  display: flex;
@@ -3077,7 +2866,7 @@ h2._1OAmb {
3077
2866
 
3078
2867
  ._3HO4L {
3079
2868
  position: relative;
3080
- border: 1px solid #0A4DA2;
2869
+ border: 1px solid #0a4da2;
3081
2870
  box-sizing: border-box;
3082
2871
  border-radius: 8px;
3083
2872
  min-height: 55px;
@@ -3090,7 +2879,7 @@ h2._1OAmb {
3090
2879
  position: absolute;
3091
2880
  right: 10px;
3092
2881
  top: 50%;
3093
- color: #0A4DA2;
2882
+ color: #0a4da2;
3094
2883
  z-index: 100;
3095
2884
  cursor: pointer;
3096
2885
  transform: translateY(-50%); }
@@ -3102,7 +2891,8 @@ h2._1OAmb {
3102
2891
  cursor: pointer;
3103
2892
  display: flex;
3104
2893
  flex-direction: column;
3105
- justify-content: center; }
2894
+ justify-content: center;
2895
+ align-items: center; }
3106
2896
 
3107
2897
  ._1RMJt {
3108
2898
  margin: 8px 0;
@@ -3163,7 +2953,7 @@ h2._1OAmb {
3163
2953
  text-align: center;
3164
2954
  padding: 20px 0;
3165
2955
  color: rgba(0, 0, 0, 0.36);
3166
- font-family: 'Roboto';
2956
+ font-family: "Roboto";
3167
2957
  font-weight: 400;
3168
2958
  font-size: 12px; }
3169
2959
 
@@ -3174,6 +2964,18 @@ h2._1OAmb {
3174
2964
  ._txk4s {
3175
2965
  color: rgba(0, 0, 0, 0.87); }
3176
2966
 
2967
+ ._2KNYk {
2968
+ font-weight: 700 !important;
2969
+ color: #0a4da2 !important; }
2970
+
2971
+ ._3LCtT {
2972
+ cursor: pointer; }
2973
+
2974
+ ._2G4IB {
2975
+ width: 50px;
2976
+ height: 50px;
2977
+ border-radius: 50%; }
2978
+
3177
2979
  @font-face {
3178
2980
  font-family: "Lato-Regular";
3179
2981
  src: url("/fonts/Lato-Regular.ttf");
@@ -4478,7 +4280,15 @@ h2._1OAmb {
4478
4280
  ._3h6aC {
4479
4281
  font-size: 14px;
4480
4282
  font-weight: 400;
4481
- margin-top: 10px; }
4283
+ margin-top: 10px;
4284
+ height: 40px;
4285
+ color: rgba(0, 0, 0, 0.87);
4286
+ overflow: hidden;
4287
+ line-height: 15px;
4288
+ display: -webkit-box;
4289
+ -webkit-line-clamp: 2;
4290
+ text-overflow: ellipsis;
4291
+ -webkit-box-orient: vertical; }
4482
4292
 
4483
4293
  ._2w2ZD {
4484
4294
  font-size: 12px !important;
@@ -4866,6 +4676,10 @@ h2._1OAmb {
4866
4676
  font-size: 14px;
4867
4677
  line-height: 14px;
4868
4678
  color: rgba(0, 0, 0, 0.54); }
4679
+ ._2K3qC ._yJtRg {
4680
+ margin: 45px 0 30px 20px; }
4681
+ ._2K3qC ._2bopc {
4682
+ margin: 20px 0 30px 20px; }
4869
4683
 
4870
4684
  @font-face {
4871
4685
  font-family: "Lato-Regular";
@@ -8447,6 +8261,7 @@ button._kb6Ui {
8447
8261
  padding: 16px; }
8448
8262
 
8449
8263
  ._2Kqyy {
8264
+ min-height: 749px;
8450
8265
  background: #EFEFEF; }
8451
8266
  ._2Kqyy ._3JOTO {
8452
8267
  padding: 24px 16px; }
@@ -8524,7 +8339,8 @@ button._kb6Ui {
8524
8339
  font-size: 16px;
8525
8340
  font-weight: 700; }
8526
8341
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._2SGYS {
8527
- display: flex; }
8342
+ display: flex;
8343
+ font-weight: 500; }
8528
8344
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._2SGYS ._3FHQG {
8529
8345
  background: #E9D8FD;
8530
8346
  color: #44337A;
@@ -8540,6 +8356,10 @@ button._kb6Ui {
8540
8356
  ._1qEK_ {
8541
8357
  padding-left: 16px;
8542
8358
  padding-top: 24px; }
8359
+ ._1qEK_ ._2HFM4 {
8360
+ color: red;
8361
+ font-style: italic;
8362
+ font-size: 16px; }
8543
8363
  ._1qEK_ ._2-kHe {
8544
8364
  font-size: 18px;
8545
8365
  font-weight: bold;