mario-teacher-student-client 9000.0.15 → 9000.0.16

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 (19) hide show
  1. package/dist/containers/ActivityCircle/services/ActivityCircleService.d.ts +1 -1
  2. package/dist/containers/ConferenceRubric/hooks/useConferenceRubric.d.ts +1 -0
  3. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatConference.d.ts +1 -1
  4. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatLearningProgress.d.ts +1 -1
  5. package/dist/containers/ScaffoldingExample/apiClient/index.d.ts +6 -0
  6. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/hooks/useNotes.d.ts +6 -1
  7. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/services/index.d.ts +7 -1
  8. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/MineNotesScreen.d.ts +2 -0
  9. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/OtherNoteScreen.d.ts +2 -0
  10. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/PrivateNotesScreen.d.ts +7 -1
  11. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/MineNotes/views/ScaffoldingQuestionAndAnswer.d.ts +1 -1
  12. package/dist/containers/ScaffoldingExample/components/ScaffoldingFloatTab/ScaffoldingFloatTab.d.ts +2 -0
  13. package/dist/index.css +27 -247
  14. package/dist/index.js +2366 -2454
  15. package/dist/index.js.map +1 -1
  16. package/dist/index.modern.js +2348 -2436
  17. package/dist/index.modern.js.map +1 -1
  18. package/dist/services/myFriendGoalService.d.ts +1 -1
  19. package/package.json +1 -1
@@ -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;
@@ -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;
@@ -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,8 @@ declare type PropsType = {
3
3
  onClose: any;
4
4
  sessionId: number;
5
5
  sessionResultId: number;
6
+ conferenceId: number;
7
+ conferenceResultId: number;
6
8
  };
7
9
  declare const ScaffoldingFloatTab: (props: PropsType) => JSX.Element;
8
10
  export default ScaffoldingFloatTab;
package/dist/index.css CHANGED
@@ -2432,240 +2432,6 @@ h2._1OAmb {
2432
2432
  opacity: 0;
2433
2433
  transition: opacity 1s linear; }
2434
2434
 
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
2435
  ._2d_37 {
2670
2436
  position: fixed;
2671
2437
  padding-bottom: 10px;
@@ -2773,11 +2539,13 @@ h2._1OAmb {
2773
2539
  ._m1FkD ._3bMn1 ._37XQi ._lJNUX {
2774
2540
  font-size: 14px;
2775
2541
  padding: 3px 0px;
2776
- text-align: center; }
2542
+ text-align: center;
2543
+ color: rgba(0, 0, 0, 0.36); }
2777
2544
  ._m1FkD ._3bMn1 ._37XQi ._3SStr {
2778
- font-weight: 700;
2545
+ font-size: 14px;
2779
2546
  padding: 3px 0px;
2780
- text-align: center; }
2547
+ text-align: center;
2548
+ color: rgba(0, 0, 0, 0.36); }
2781
2549
  ._m1FkD ._15JZz {
2782
2550
  display: flex;
2783
2551
  height: 100%;
@@ -2811,13 +2579,15 @@ h2._1OAmb {
2811
2579
  font-weight: 500; }
2812
2580
  ._m1FkD ._1187H ._1JAEf {
2813
2581
  color: red;
2814
- font-size: 16px; }
2582
+ font-size: 16px;
2583
+ cursor: pointer; }
2815
2584
  ._m1FkD ._3hsmO {
2816
2585
  color: #0a4da2;
2817
2586
  font-weight: 400;
2818
2587
  font-size: 16px;
2819
2588
  text-align: center;
2820
- margin-bottom: 5px; }
2589
+ margin-bottom: 5px;
2590
+ cursor: pointer; }
2821
2591
  ._m1FkD ._YRc9L {
2822
2592
  display: flex;
2823
2593
  flex-direction: column; }
@@ -2834,7 +2604,8 @@ h2._1OAmb {
2834
2604
  font-weight: 400;
2835
2605
  font-size: 16px;
2836
2606
  text-align: center;
2837
- margin-bottom: 5px; }
2607
+ margin-bottom: 5px;
2608
+ cursor: pointer; }
2838
2609
  ._m1FkD ._u-4C- ._1OaGh {
2839
2610
  margin-bottom: 10px; }
2840
2611
  ._m1FkD ._u-4C- ._1ncr0 {
@@ -2988,10 +2759,11 @@ h2._1OAmb {
2988
2759
  font-weight: 400;
2989
2760
  font-size: 16px;
2990
2761
  text-align: center;
2991
- margin-bottom: 5px; }
2762
+ margin-bottom: 5px;
2763
+ cursor: pointer; }
2992
2764
  ._m1FkD ._2o2zF ._1Tpf- ._1ncr0 {
2993
2765
  display: flex;
2994
- background: #EEEEEE;
2766
+ background: #eeeeee;
2995
2767
  border-radius: 20px;
2996
2768
  text-align: center;
2997
2769
  padding: 9px 0px;
@@ -3060,7 +2832,7 @@ h2._1OAmb {
3060
2832
  border: 1px solid rgba(0, 0, 0, 0.54);
3061
2833
  box-sizing: border-box;
3062
2834
  border-radius: 8px;
3063
- height: 55px;
2835
+ min-height: 55px;
3064
2836
  flex: 1;
3065
2837
  margin-bottom: 15px;
3066
2838
  display: flex;
@@ -3077,7 +2849,7 @@ h2._1OAmb {
3077
2849
 
3078
2850
  ._3HO4L {
3079
2851
  position: relative;
3080
- border: 1px solid #0A4DA2;
2852
+ border: 1px solid #0a4da2;
3081
2853
  box-sizing: border-box;
3082
2854
  border-radius: 8px;
3083
2855
  min-height: 55px;
@@ -3090,7 +2862,7 @@ h2._1OAmb {
3090
2862
  position: absolute;
3091
2863
  right: 10px;
3092
2864
  top: 50%;
3093
- color: #0A4DA2;
2865
+ color: #0a4da2;
3094
2866
  z-index: 100;
3095
2867
  cursor: pointer;
3096
2868
  transform: translateY(-50%); }
@@ -3102,7 +2874,8 @@ h2._1OAmb {
3102
2874
  cursor: pointer;
3103
2875
  display: flex;
3104
2876
  flex-direction: column;
3105
- justify-content: center; }
2877
+ justify-content: center;
2878
+ align-items: center; }
3106
2879
 
3107
2880
  ._1RMJt {
3108
2881
  margin: 8px 0;
@@ -3163,7 +2936,7 @@ h2._1OAmb {
3163
2936
  text-align: center;
3164
2937
  padding: 20px 0;
3165
2938
  color: rgba(0, 0, 0, 0.36);
3166
- font-family: 'Roboto';
2939
+ font-family: "Roboto";
3167
2940
  font-weight: 400;
3168
2941
  font-size: 12px; }
3169
2942
 
@@ -3174,6 +2947,13 @@ h2._1OAmb {
3174
2947
  ._txk4s {
3175
2948
  color: rgba(0, 0, 0, 0.87); }
3176
2949
 
2950
+ ._2KNYk {
2951
+ font-weight: 700 !important;
2952
+ color: #0a4da2 !important; }
2953
+
2954
+ ._3LCtT {
2955
+ cursor: pointer; }
2956
+
3177
2957
  @font-face {
3178
2958
  font-family: "Lato-Regular";
3179
2959
  src: url("/fonts/Lato-Regular.ttf");