touchstudy-core 0.1.179 → 0.1.181
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/components/Filters/QuestionTypeFilterComponent.d.ts +11 -0
- package/dist/components/Filters/configs/constants.d.ts +25 -0
- package/dist/components/Questions/ArticleBlock.d.ts +20 -0
- package/dist/components/Questions/QuestionBlock.d.ts +19 -0
- package/dist/components/Questions/QuestionCompareType.d.ts +13 -0
- package/dist/components/Questions/QuestionGroupBlock.d.ts +28 -0
- package/dist/components/Questions/QuestionGroupBlockBody.d.ts +23 -0
- package/dist/components/Questions/QuestionOrderName.d.ts +9 -0
- package/dist/components/Questions/QuestionShortInput.d.ts +13 -0
- package/dist/components/Questions/configs/constants.d.ts +12 -0
- package/dist/components/Questions/configs/fns.d.ts +7 -0
- package/dist/components/Questions/configs/types.d.ts +6 -0
- package/dist/components/Questions/index.d.ts +13 -0
- package/dist/components/Questions/styles/styles.d.ts +6 -0
- package/dist/components/Selectors/configs/constants.d.ts +5 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/containers/ExamResult/configs/constants.d.ts +0 -14
- package/dist/containers/ExamResult/configs/functions.d.ts +2 -0
- package/dist/containers/ExamResult/configs/types.d.ts +22 -2
- package/dist/containers/ExamResult/index.d.ts +5 -0
- package/dist/containers/Exams/components/ArticleBlock.d.ts +20 -0
- package/dist/containers/Exams/components/ExamDetailForm.d.ts +10 -0
- package/dist/containers/Exams/components/QuestionBlock.d.ts +13 -5
- package/dist/containers/Exams/components/QuestionCompareType.d.ts +9 -0
- package/dist/containers/Exams/components/QuestionGroupBlock.d.ts +17 -8
- package/dist/containers/Exams/components/QuestionGroupBlockBody.d.ts +2 -3
- package/dist/containers/Exams/components/QuestionOrderName.d.ts +9 -0
- package/dist/containers/Exams/components/QuestionShortInput.d.ts +6 -3
- package/dist/containers/Exams/configs/constants.d.ts +21 -3
- package/dist/containers/Exams/configs/enums.d.ts +4 -0
- package/dist/containers/Exams/configs/functions.d.ts +3 -1
- package/dist/containers/Exams/configs/interfaces.d.ts +6 -5
- package/dist/containers/Exams/hooks/useExamDetailView.d.ts +7 -25
- package/dist/containers/Exams/index.d.ts +1 -2
- package/dist/containers/Exams/views/ExamDetailView.d.ts +1 -1
- package/dist/containers/PreparedTextbook/configs/constants.d.ts +1 -58
- package/dist/containers/PreparedTextbook/configs/enums.d.ts +0 -16
- package/dist/containers/PreparedTextbook/configs/functions.d.ts +1 -5
- package/dist/containers/PreparedTextbook/configs/types.d.ts +0 -13
- package/dist/containers/Select/Subject/hook/useSubjectSelect.d.ts +2 -6
- package/dist/containers/Textbooks/apiClient/examSessionService.d.ts +1 -2
- package/dist/containers/Textbooks/configs/constants.d.ts +0 -2
- package/dist/containers/Textbooks/views/index.d.ts +1 -2
- package/dist/index.css +537 -651
- package/dist/index.js +21588 -24022
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +21721 -24178
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/TimerCountItem.d.ts +0 -1
- package/dist/services/categoryService.d.ts +4 -0
- package/dist/services/questionTypeService.d.ts +2 -0
- package/dist/utils/enums/index.d.ts +2 -1
- package/dist/utils/enums/schoolType.d.ts +16 -0
- package/dist/utils/functions/common.d.ts +3 -0
- package/dist/utils/functions/timeSpanToMinutes.d.ts +1 -0
- package/dist/utils/hooks/useCategoryOptions.d.ts +15 -0
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/types/QuestionTypeFilter.d.ts +7 -0
- package/dist/utils/types/examResults.d.ts +1 -0
- package/dist/utils/types/exams.d.ts +82 -18
- package/dist/utils/types/index.d.ts +2 -0
- package/dist/utils/types/subjects.d.ts +0 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
.
|
1
|
+
._styles-module__btn-login-google__2HqmH {
|
2
2
|
width: 100%;
|
3
3
|
justify-content: center; }
|
4
|
-
.
|
4
|
+
._styles-module__btn-login-google__2HqmH > span {
|
5
5
|
font-family: "Roboto" !important;
|
6
6
|
font-weight: 700; }
|
7
7
|
|
8
|
-
#
|
8
|
+
#_styles-module__math-jax__3Pfdk mjx-assistive-mml {
|
9
9
|
display: none !important; }
|
10
10
|
|
11
|
-
.
|
11
|
+
._styles-module__block-login__wWIyO {
|
12
12
|
border: 1px solid #eceae9;
|
13
13
|
padding: 60px;
|
14
14
|
border-radius: 6px;
|
15
15
|
width: -moz-max-content;
|
16
16
|
width: max-content;
|
17
17
|
text-align: center; }
|
18
|
-
.
|
18
|
+
._styles-module__block-login__wWIyO img {
|
19
19
|
margin-bottom: 30px; }
|
20
20
|
|
21
|
-
.
|
21
|
+
._styles-module__box-login__38Lo1 {
|
22
22
|
display: flex;
|
23
23
|
align-items: center;
|
24
24
|
justify-content: center;
|
@@ -26,12 +26,12 @@
|
|
26
26
|
min-height: 100vh;
|
27
27
|
padding-block: 20px; }
|
28
28
|
|
29
|
-
.
|
29
|
+
._styles-module__btn-login-google__2HqmH {
|
30
30
|
border: 1px solid #aeabac !important;
|
31
31
|
border-radius: 5px !important;
|
32
32
|
box-shadow: unset !important; }
|
33
33
|
|
34
|
-
.
|
34
|
+
._styles-module__btn-primary__rd4Uy {
|
35
35
|
display: inline-block;
|
36
36
|
padding: 0.375rem 0.75rem;
|
37
37
|
font-size: 1rem;
|
@@ -49,38 +49,38 @@
|
|
49
49
|
border-radius: 0.375rem;
|
50
50
|
background-color: #0d6efd;
|
51
51
|
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
52
|
-
.
|
52
|
+
._styles-module__btn-primary__rd4Uy:hover {
|
53
53
|
color: #fff;
|
54
54
|
background-color: #0b5ed7;
|
55
55
|
border-color: #0a58ca; }
|
56
|
-
.
|
56
|
+
._styles-module__btn-primary__rd4Uy:disabled {
|
57
57
|
color: #fff;
|
58
58
|
background-color: #0d6efd;
|
59
59
|
border-color: #0d6efd;
|
60
60
|
opacity: 0.65; }
|
61
61
|
|
62
|
-
.
|
62
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__header-avatar__RQaHE {
|
63
63
|
border: none;
|
64
64
|
background-color: transparent;
|
65
65
|
outline: none; }
|
66
|
-
.
|
66
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__header-avatar__RQaHE:hover, ._styles-module__dropdown-menu__1krbH ._styles-module__header-avatar__RQaHE:focus, ._styles-module__dropdown-menu__1krbH ._styles-module__header-avatar__RQaHE:active {
|
67
67
|
background-color: transparent !important;
|
68
68
|
outline: none;
|
69
69
|
border: none;
|
70
70
|
box-shadow: none !important; }
|
71
|
-
.
|
71
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__header-avatar__RQaHE img {
|
72
72
|
width: 40px;
|
73
73
|
height: 40px;
|
74
74
|
min-width: 40px;
|
75
75
|
border-radius: 50%; }
|
76
76
|
|
77
|
-
.
|
77
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-menu-flag__XK8oS {
|
78
78
|
width: 30px !important;
|
79
79
|
height: auto !important;
|
80
80
|
border-radius: 0 !important;
|
81
81
|
margin-right: 5px; }
|
82
82
|
|
83
|
-
.
|
83
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content__3ys4W {
|
84
84
|
width: 300px;
|
85
85
|
top: 52px !important;
|
86
86
|
left: -250px !important;
|
@@ -89,47 +89,47 @@
|
|
89
89
|
box-shadow: 0px 3px 6px #27347d29;
|
90
90
|
border: none;
|
91
91
|
padding: 15px; }
|
92
|
-
.
|
92
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content__3ys4W:after {
|
93
93
|
display: none; }
|
94
|
-
.
|
94
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content__3ys4W ._styles-module__dropdown-change__ToOW_ {
|
95
95
|
background: transparent; }
|
96
|
-
.
|
96
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content__3ys4W ._styles-module__dropdown-change__ToOW_:hover {
|
97
97
|
color: #8b0000; }
|
98
98
|
|
99
|
-
.
|
99
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__item-address__3sQlR {
|
100
100
|
font-weight: 600;
|
101
101
|
border-top: 1px solid #27347d29;
|
102
102
|
padding-top: 10px; }
|
103
|
-
.
|
103
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__item-address__3sQlR._styles-module__item-logout__3bqSM {
|
104
104
|
color: #8b0000; }
|
105
|
-
.
|
105
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__item-address__3sQlR ._styles-module__title-address__1jgSI {
|
106
106
|
margin-right: 12px; }
|
107
107
|
|
108
|
-
.
|
108
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__img-avatar__35Ttz img {
|
109
109
|
width: 70px;
|
110
110
|
height: 70px;
|
111
111
|
border-radius: 50%;
|
112
112
|
box-shadow: 0px 3px 6px #27347d29;
|
113
113
|
border: 2px solid #ffffff; }
|
114
114
|
|
115
|
-
.
|
115
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content__3ys4W ._styles-module__item-contact__1wc7o {
|
116
116
|
padding: 10px 0; }
|
117
117
|
|
118
|
-
.
|
118
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__content-text__3S4f2 {
|
119
119
|
padding-left: 20px;
|
120
120
|
width: 190px; }
|
121
|
-
.
|
122
|
-
.
|
121
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__content-text__3S4f2 h5,
|
122
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__content-text__3S4f2 span {
|
123
123
|
white-space: nowrap;
|
124
124
|
overflow: hidden;
|
125
125
|
text-overflow: ellipsis;
|
126
126
|
display: inline-block;
|
127
127
|
width: 100%; }
|
128
|
-
.
|
128
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__content-text__3S4f2 a {
|
129
129
|
padding: 0;
|
130
130
|
text-decoration: none; }
|
131
131
|
|
132
|
-
.
|
132
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content-language__3ajui {
|
133
133
|
width: 210px;
|
134
134
|
top: 40px !important;
|
135
135
|
left: -80px !important;
|
@@ -138,34 +138,34 @@
|
|
138
138
|
box-shadow: 0px 8px 15px #989898;
|
139
139
|
border: none;
|
140
140
|
padding: 0 8px; }
|
141
|
-
.
|
141
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content-language__3ajui:after {
|
142
142
|
display: none; }
|
143
|
-
.
|
143
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-content-language__3ajui ._styles-module__dropdown-change__ToOW_ {
|
144
144
|
background: transparent; }
|
145
145
|
|
146
|
-
.
|
146
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-item-language__3Y_y4 {
|
147
147
|
color: #242424;
|
148
148
|
display: flex;
|
149
149
|
padding: 8px;
|
150
150
|
border-radius: 6px; }
|
151
|
-
.
|
151
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-item-language__3Y_y4:hover {
|
152
152
|
background-color: #f1faff; }
|
153
153
|
|
154
|
-
.
|
154
|
+
._styles-module__dropdown-menu__1krbH ._styles-module__dropdown-item-language-active__CzNMi {
|
155
155
|
background-color: #f1faff; }
|
156
156
|
|
157
|
-
.
|
157
|
+
._styles-module__dropdown-academy__3CMVp {
|
158
158
|
max-width: 268px;
|
159
159
|
border-radius: 6px !important;
|
160
160
|
display: flex !important;
|
161
161
|
justify-content: space-between !important; }
|
162
162
|
|
163
|
-
.
|
163
|
+
._styles-module__image-academy__2ibYC {
|
164
164
|
font-size: 20px;
|
165
165
|
font-weight: 600;
|
166
166
|
line-height: 1;
|
167
167
|
color: #fff; }
|
168
|
-
.
|
168
|
+
._styles-module__image-academy__2ibYC img {
|
169
169
|
width: 40px;
|
170
170
|
height: 40px;
|
171
171
|
min-width: 40px;
|
@@ -175,7 +175,7 @@
|
|
175
175
|
-o-object-fit: cover;
|
176
176
|
object-fit: cover;
|
177
177
|
border: 1px solid #DFE3E8; }
|
178
|
-
.
|
178
|
+
._styles-module__image-academy__2ibYC span {
|
179
179
|
display: flex;
|
180
180
|
justify-content: center;
|
181
181
|
align-items: center;
|
@@ -186,7 +186,7 @@
|
|
186
186
|
border-radius: 50%;
|
187
187
|
border: 1px solid #DFE3E8; }
|
188
188
|
|
189
|
-
.
|
189
|
+
._styles-module__academy-btn__1JMRU {
|
190
190
|
border-radius: 6px !important;
|
191
191
|
border: 0;
|
192
192
|
max-width: 268px;
|
@@ -197,10 +197,10 @@
|
|
197
197
|
justify-content: space-between !important;
|
198
198
|
gap: 12px; }
|
199
199
|
|
200
|
-
.
|
200
|
+
._styles-module__academy-btn__1JMRU:hover {
|
201
201
|
background: none !important; }
|
202
202
|
|
203
|
-
.
|
203
|
+
._styles-module__switch-icon__N4FNf {
|
204
204
|
width: 34px;
|
205
205
|
height: 34px;
|
206
206
|
min-width: 20px;
|
@@ -210,10 +210,10 @@
|
|
210
210
|
background-color: #FBFBF9;
|
211
211
|
justify-content: center;
|
212
212
|
align-items: center; }
|
213
|
-
.
|
213
|
+
._styles-module__switch-icon__N4FNf svg {
|
214
214
|
fill: #349056; }
|
215
215
|
|
216
|
-
.
|
216
|
+
._styles-module__dropdown-content-academy__31Dr0 {
|
217
217
|
width: 100%;
|
218
218
|
top: calc(100% + 4px) !important;
|
219
219
|
left: unset !important;
|
@@ -223,18 +223,18 @@
|
|
223
223
|
box-shadow: 0px 8px 15px #989898;
|
224
224
|
border: none;
|
225
225
|
padding: 0 8px; }
|
226
|
-
.
|
226
|
+
._styles-module__dropdown-content-academy__31Dr0:after {
|
227
227
|
display: none; }
|
228
|
-
.
|
228
|
+
._styles-module__dropdown-content-academy__31Dr0 ._styles-module__dropdown-change__ToOW_ {
|
229
229
|
background: transparent; }
|
230
230
|
|
231
|
-
.
|
231
|
+
._styles-module__dropdown-academy-item__3bjcz {
|
232
232
|
font-size: 14px;
|
233
233
|
line-height: 1; }
|
234
|
-
.
|
234
|
+
._styles-module__dropdown-academy-item__3bjcz:active {
|
235
235
|
background-color: transparent !important; }
|
236
236
|
|
237
|
-
.
|
237
|
+
._styles-module__noGutters__31ZQk {
|
238
238
|
--bs-gutter-x: 0;
|
239
239
|
--bs-gutter-y: 0;
|
240
240
|
display: flex;
|
@@ -242,32 +242,32 @@
|
|
242
242
|
margin-top: calc(-1 * var(--bs-gutter-y));
|
243
243
|
margin-right: calc(-0.5 * var(--bs-gutter-x));
|
244
244
|
margin-left: calc(-0.5 * var(--bs-gutter-x)); }
|
245
|
-
.
|
245
|
+
._styles-module__noGutters__31ZQk ._styles-module__custom-col-2__3yXyK {
|
246
246
|
flex: 0 0 calc((2 / 12) * 100%);
|
247
247
|
max-width: calc((2 / 12) * 100%);
|
248
248
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
249
249
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
250
250
|
margin-top: var(--bs-gutter-y); }
|
251
|
-
.
|
251
|
+
._styles-module__noGutters__31ZQk ._styles-module__custom-col-3__1RsJQ {
|
252
252
|
flex: 0 0 25%;
|
253
253
|
max-width: 25%;
|
254
254
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
255
255
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
256
256
|
margin-top: var(--bs-gutter-y); }
|
257
|
-
.
|
257
|
+
._styles-module__noGutters__31ZQk ._styles-module__custom-col-5__L42CP {
|
258
258
|
flex: 0 0 calc((5 / 12) * 100%);
|
259
259
|
max-width: calc((5 / 12) * 100%);
|
260
260
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
261
261
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
262
262
|
margin-top: var(--bs-gutter-y); }
|
263
|
-
.
|
263
|
+
._styles-module__noGutters__31ZQk ._styles-module__custom-col-10__2u6eL {
|
264
264
|
flex: 0 0 calc((10 / 12) * 100%);
|
265
265
|
max-width: calc((10 / 12) * 100%);
|
266
266
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
267
267
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
268
268
|
margin-top: var(--bs-gutter-y); }
|
269
269
|
|
270
|
-
.
|
270
|
+
._styles-module__custom-row__8x7OP {
|
271
271
|
--bs-gutter-x: 1.5rem;
|
272
272
|
--bs-gutter-y: 0;
|
273
273
|
display: flex;
|
@@ -275,70 +275,70 @@
|
|
275
275
|
margin-top: calc(-1 * var(--bs-gutter-y));
|
276
276
|
margin-right: calc(-0.5 * var(--bs-gutter-x));
|
277
277
|
margin-left: calc(-0.5 * var(--bs-gutter-x)); }
|
278
|
-
.
|
278
|
+
._styles-module__custom-row__8x7OP ._styles-module__custom-col__1JmTh {
|
279
279
|
flex: 1 0;
|
280
280
|
width: 100%;
|
281
281
|
max-width: 100%;
|
282
282
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
283
283
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
284
284
|
margin-top: var(--bs-gutter-y); }
|
285
|
-
.
|
285
|
+
._styles-module__custom-row__8x7OP ._styles-module__custom-col-3__1RsJQ {
|
286
286
|
flex: 0 0 25%;
|
287
287
|
max-width: 25%;
|
288
288
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
289
289
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
290
290
|
margin-top: var(--bs-gutter-y); }
|
291
|
-
.
|
291
|
+
._styles-module__custom-row__8x7OP ._styles-module__custom-col-4__3HO1e {
|
292
292
|
flex: 0 0 calc((4 / 12) * 100%);
|
293
293
|
max-width: calc((4 / 12) * 100%);
|
294
294
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
295
295
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
296
296
|
margin-top: var(--bs-gutter-y); }
|
297
|
-
.
|
297
|
+
._styles-module__custom-row__8x7OP ._styles-module__custom-col-5__L42CP {
|
298
298
|
flex: 0 0 calc((5 / 12) * 100%);
|
299
299
|
max-width: calc((5 / 12) * 100%);
|
300
300
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
301
301
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
302
302
|
margin-top: var(--bs-gutter-y); }
|
303
|
-
.
|
303
|
+
._styles-module__custom-row__8x7OP ._styles-module__custom-col-8__Oy31M {
|
304
304
|
flex: 0 0 calc((8 / 12) * 100%);
|
305
305
|
max-width: calc((8 / 12) * 100%);
|
306
306
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
307
307
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
308
308
|
margin-top: var(--bs-gutter-y); }
|
309
|
-
.
|
309
|
+
._styles-module__custom-row__8x7OP ._styles-module__custom-col-12__3aUKo {
|
310
310
|
flex: 0 0 calc((12 / 12) * 100%);
|
311
311
|
max-width: calc((12 / 12) * 100%);
|
312
312
|
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
313
313
|
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
314
314
|
margin-top: var(--bs-gutter-y); }
|
315
315
|
|
316
|
-
.
|
316
|
+
._styles-module__custom-container__39LRs {
|
317
317
|
width: 100%;
|
318
318
|
padding-right: calc(1.5rem * 0.5);
|
319
319
|
padding-left: calc(1.5rem * 0.5);
|
320
320
|
margin-right: auto;
|
321
321
|
margin-left: auto; }
|
322
322
|
@media (min-width: 576px) {
|
323
|
-
.
|
323
|
+
._styles-module__custom-container__39LRs {
|
324
324
|
max-width: 540px; } }
|
325
325
|
@media (min-width: 768px) {
|
326
|
-
.
|
326
|
+
._styles-module__custom-container__39LRs {
|
327
327
|
max-width: 720px; } }
|
328
328
|
@media (min-width: 992px) {
|
329
|
-
.
|
329
|
+
._styles-module__custom-container__39LRs {
|
330
330
|
max-width: 960px; } }
|
331
331
|
@media (min-width: 1200px) {
|
332
|
-
.
|
332
|
+
._styles-module__custom-container__39LRs {
|
333
333
|
max-width: 1140px; } }
|
334
334
|
@media (min-width: 1400px) {
|
335
|
-
.
|
335
|
+
._styles-module__custom-container__39LRs {
|
336
336
|
max-width: 1320px; } }
|
337
337
|
|
338
|
-
.
|
338
|
+
._styles-module__form-label___Ut-u {
|
339
339
|
margin-bottom: 0.5rem; }
|
340
340
|
|
341
|
-
.
|
341
|
+
._styles-module__form-control__2k4dX {
|
342
342
|
display: block;
|
343
343
|
width: 100%;
|
344
344
|
padding: 0.375rem 0.75rem;
|
@@ -355,7 +355,7 @@
|
|
355
355
|
border-radius: 0.375rem;
|
356
356
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
|
357
357
|
|
358
|
-
.
|
358
|
+
._styles-module__btn-outline-primary__2PWdX {
|
359
359
|
display: inline-block;
|
360
360
|
padding: 0.375rem 0.75rem;
|
361
361
|
font-size: 1rem;
|
@@ -373,22 +373,22 @@
|
|
373
373
|
border-radius: 0.375rem;
|
374
374
|
background-color: transparent;
|
375
375
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
|
376
|
-
.
|
376
|
+
._styles-module__btn-outline-primary__2PWdX:hover {
|
377
377
|
color: #fff !important;
|
378
378
|
background-color: #0d6efd;
|
379
379
|
border-color: #0d6efd !important; }
|
380
380
|
|
381
|
-
.
|
381
|
+
._styles-module__sort-icons__mQvLF {
|
382
382
|
color: #a8a8a8;
|
383
383
|
cursor: pointer; }
|
384
|
-
.
|
384
|
+
._styles-module__sort-icons__mQvLF > svg._styles-module__active__3oAH- {
|
385
385
|
color: #242424; }
|
386
|
-
.
|
386
|
+
._styles-module__sort-icons__mQvLF > svg:first-child {
|
387
387
|
margin-bottom: -0.5rem; }
|
388
|
-
.
|
388
|
+
._styles-module__sort-icons__mQvLF > svg:last-child {
|
389
389
|
margin-top: -0.4rem; }
|
390
390
|
|
391
|
-
.
|
391
|
+
._styles-module__form-select__3W3aw {
|
392
392
|
display: block;
|
393
393
|
width: 100%;
|
394
394
|
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
|
@@ -408,45 +408,45 @@
|
|
408
408
|
border-radius: 0.375rem;
|
409
409
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
|
410
410
|
|
411
|
-
.
|
411
|
+
._styles-module__truncate__3NJzN {
|
412
412
|
overflow: hidden;
|
413
413
|
text-overflow: ellipsis;
|
414
414
|
white-space: nowrap; }
|
415
415
|
|
416
|
-
.
|
416
|
+
._styles-module__headers__3xnI5 {
|
417
417
|
position: fixed;
|
418
418
|
z-index: 100;
|
419
419
|
background: #fff;
|
420
420
|
top: 0; }
|
421
|
-
.
|
421
|
+
._styles-module__headers__3xnI5 ._styles-module__logo-container__3YG70 {
|
422
422
|
display: flex;
|
423
423
|
align-items: center;
|
424
424
|
width: 64px;
|
425
425
|
min-width: 64px;
|
426
426
|
padding: 16px;
|
427
427
|
max-height: 80px; }
|
428
|
-
.
|
428
|
+
._styles-module__headers__3xnI5._styles-module__tabBox__1CQPn {
|
429
429
|
display: flex;
|
430
430
|
justify-content: space-between;
|
431
431
|
padding: 0 27px;
|
432
432
|
border-bottom: 1px solid var(--gray-100); }
|
433
|
-
.
|
433
|
+
._styles-module__headers__3xnI5 ._styles-module__routerBox__3hx2T {
|
434
434
|
text-align: start; }
|
435
|
-
.
|
435
|
+
._styles-module__headers__3xnI5 ._styles-module__routerBox__3hx2T ._styles-module__tabText__3UyhW div span {
|
436
436
|
display: none; }
|
437
|
-
.
|
437
|
+
._styles-module__headers__3xnI5 a._styles-module__router-link-active__1TGKA {
|
438
438
|
border-radius: 0;
|
439
439
|
position: relative; }
|
440
|
-
.
|
440
|
+
._styles-module__headers__3xnI5 a._styles-module__router-link-active__1TGKA::after {
|
441
441
|
content: "";
|
442
442
|
position: absolute;
|
443
443
|
bottom: -1px;
|
444
444
|
width: 100%;
|
445
445
|
border-bottom: 1px solid #3DC674; }
|
446
|
-
.
|
447
|
-
.
|
446
|
+
._styles-module__headers__3xnI5 a._styles-module__router-link__1AqMh,
|
447
|
+
._styles-module__headers__3xnI5 a._styles-module__router-link-active__1TGKA {
|
448
448
|
color: #349056; }
|
449
|
-
.
|
449
|
+
._styles-module__headers__3xnI5 ._styles-module__tabText__3UyhW {
|
450
450
|
font-size: 14px;
|
451
451
|
font-weight: 700;
|
452
452
|
height: 100%;
|
@@ -457,40 +457,40 @@
|
|
457
457
|
color: #aeabac;
|
458
458
|
display: flex;
|
459
459
|
align-items: end; }
|
460
|
-
.
|
460
|
+
._styles-module__headers__3xnI5 ._styles-module__userImg__2RI6G {
|
461
461
|
width: unset;
|
462
462
|
height: unset;
|
463
463
|
padding-right: 16px;
|
464
464
|
line-height: 73px;
|
465
465
|
float: right; }
|
466
|
-
.
|
466
|
+
._styles-module__headers__3xnI5 ._styles-module__userImg__2RI6G > p {
|
467
467
|
line-height: 5;
|
468
468
|
color: #aeabac;
|
469
469
|
font-weight: 700; }
|
470
|
-
.
|
470
|
+
._styles-module__headers__3xnI5 ._styles-module__disabled-link__3aVHg {
|
471
471
|
pointer-events: none; }
|
472
472
|
|
473
473
|
@media (min-width: 992px) {
|
474
|
-
.
|
474
|
+
._styles-module__headers__3xnI5 ._styles-module__logo-container__3YG70 {
|
475
475
|
width: 120px;
|
476
476
|
min-width: 120px;
|
477
477
|
padding: 16px 0; } }
|
478
478
|
|
479
479
|
@media (min-width: 1200px) {
|
480
|
-
.
|
480
|
+
._styles-module__headers__3xnI5 ._styles-module__logo-container__3YG70 {
|
481
481
|
width: 162px;
|
482
482
|
min-width: 162px; }
|
483
|
-
.
|
483
|
+
._styles-module__headers__3xnI5 ._styles-module__userImg__2RI6G {
|
484
484
|
width: 73px;
|
485
485
|
height: 100%;
|
486
486
|
padding-right: 0; }
|
487
|
-
.
|
487
|
+
._styles-module__headers__3xnI5 ._styles-module__routerBox__3hx2T {
|
488
488
|
display: flex;
|
489
489
|
flex-wrap: nowrap; }
|
490
|
-
.
|
490
|
+
._styles-module__headers__3xnI5 ._styles-module__routerBox__3hx2T ._styles-module__tabText__3UyhW div span {
|
491
491
|
display: inline-block; } }
|
492
492
|
|
493
|
-
.
|
493
|
+
._styles-module__line-clamp__3fpky {
|
494
494
|
overflow: hidden;
|
495
495
|
display: -webkit-box;
|
496
496
|
line-clamp: 1;
|
@@ -501,31 +501,31 @@
|
|
501
501
|
text-overflow: ellipsis;
|
502
502
|
word-wrap: break-word; }
|
503
503
|
|
504
|
-
.
|
504
|
+
._style-module__titleBox__2mYOt ._style-module__title__1H9qR:nth-child(1) {
|
505
505
|
font-family: "Pretendard";
|
506
506
|
font-size: 20px;
|
507
507
|
font-weight: 800; }
|
508
508
|
|
509
|
-
.
|
509
|
+
._style-module__titleBox__2mYOt ._style-module__title__1H9qR:nth-child(3) {
|
510
510
|
font-family: "Pretendard";
|
511
511
|
font-size: 12px;
|
512
512
|
font-weight: 600; }
|
513
|
-
.
|
513
|
+
._style-module__titleBox__2mYOt ._style-module__title__1H9qR:nth-child(3) span {
|
514
514
|
margin-right: 16px; }
|
515
515
|
|
516
|
-
.
|
516
|
+
._style-module__point__2rTfh {
|
517
517
|
display: flex;
|
518
518
|
font-family: "Pretendard";
|
519
519
|
justify-content: center;
|
520
520
|
font-size: 18px;
|
521
521
|
font-weight: 700; }
|
522
522
|
|
523
|
-
.
|
523
|
+
._style-module__buttonGroup__W5dic {
|
524
524
|
display: flex;
|
525
525
|
justify-content: flex-end;
|
526
526
|
align-items: center;
|
527
527
|
gap: 24px; }
|
528
|
-
.
|
528
|
+
._style-module__buttonGroup__W5dic ._style-module__btnFeedback__FmMYN {
|
529
529
|
font-family: "Pretendard";
|
530
530
|
min-width: 170px;
|
531
531
|
min-height: 41px;
|
@@ -536,12 +536,12 @@
|
|
536
536
|
justify-content: center;
|
537
537
|
gap: 8px;
|
538
538
|
background-color: transparent; }
|
539
|
-
.
|
539
|
+
._style-module__buttonGroup__W5dic ._style-module__btnFeedback__FmMYN span {
|
540
540
|
font-size: 14px;
|
541
541
|
font-weight: 700; }
|
542
|
-
.
|
542
|
+
._style-module__buttonGroup__W5dic ._style-module__btnFeedback__FmMYN:hover {
|
543
543
|
background-color: #e4e7ec; }
|
544
|
-
.
|
544
|
+
._style-module__buttonGroup__W5dic ._style-module__btnTerminate__3kv6J {
|
545
545
|
min-width: 170px;
|
546
546
|
min-height: 41px;
|
547
547
|
border-radius: 6px;
|
@@ -550,22 +550,22 @@
|
|
550
550
|
align-items: center;
|
551
551
|
justify-content: center;
|
552
552
|
gap: 8px; }
|
553
|
-
.
|
553
|
+
._style-module__buttonGroup__W5dic ._style-module__btnTerminate__3kv6J span {
|
554
554
|
font-size: 14px;
|
555
555
|
font-weight: 700;
|
556
556
|
color: #ffffff; }
|
557
557
|
|
558
|
-
.
|
558
|
+
._style-module__myanswer__1jZV7 {
|
559
559
|
background-color: #ffffff; }
|
560
|
-
.
|
560
|
+
._style-module__myanswer__1jZV7 ._style-module__titleMyAnswer1__1aYD1 {
|
561
561
|
border-bottom: 1px solid #e4e7ec;
|
562
562
|
padding: 12px 24px; }
|
563
|
-
.
|
563
|
+
._style-module__myanswer__1jZV7 ._style-module__titleMyAnswer1__1aYD1 span {
|
564
564
|
font-family: "Pretendard";
|
565
565
|
font-weight: 700;
|
566
566
|
font-size: 16px;
|
567
567
|
color: #414e62; }
|
568
|
-
.
|
568
|
+
._style-module__myanswer__1jZV7 ._style-module__titleMyAnswer2__2Oc4x {
|
569
569
|
padding: 8px 12px;
|
570
570
|
border-top: 1px solid #e4e7ec;
|
571
571
|
display: flex;
|
@@ -573,120 +573,120 @@
|
|
573
573
|
justify-content: start;
|
574
574
|
background-color: #FBFBF9;
|
575
575
|
gap: 8px; }
|
576
|
-
.
|
576
|
+
._style-module__myanswer__1jZV7 ._style-module__titleMyAnswer2__2Oc4x span:nth-child(1) {
|
577
577
|
font-family: "Pretendard";
|
578
578
|
font-weight: 600;
|
579
579
|
font-size: 12px;
|
580
580
|
color: #ced2da; }
|
581
|
-
.
|
581
|
+
._style-module__myanswer__1jZV7 ._style-module__titleMyAnswer2__2Oc4x span:nth-child(2) {
|
582
582
|
font-family: "Pretendard";
|
583
583
|
font-weight: 600;
|
584
584
|
font-size: 12px; }
|
585
|
-
.
|
585
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW {
|
586
586
|
display: flex;
|
587
587
|
flex-direction: column;
|
588
588
|
gap: 4px;
|
589
589
|
padding: 6px 0px;
|
590
590
|
font-family: "Pretendard"; }
|
591
|
-
.
|
591
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__myAnswerItem__1U-Kx {
|
592
592
|
padding: 4px 8px; }
|
593
|
-
.
|
593
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__time__2PXiz {
|
594
594
|
padding: 8px 12px 16px 84px;
|
595
595
|
display: flex;
|
596
596
|
align-items: center;
|
597
597
|
gap: 16px; }
|
598
|
-
.
|
598
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__time__2PXiz ._style-module__timeCol__1zcfJ {
|
599
599
|
display: flex;
|
600
600
|
align-items: center;
|
601
601
|
gap: 4px;
|
602
602
|
min-height: 28px;
|
603
603
|
min-width: 136px; }
|
604
|
-
.
|
604
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answer-response__18ZNf {
|
605
605
|
font-weight: 500;
|
606
606
|
font-size: 12px; }
|
607
|
-
.
|
607
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answer-response-0__3nbRi {
|
608
608
|
color: #6B0861; }
|
609
|
-
.
|
609
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answer-response-1__3NEHk {
|
610
610
|
color: #DB4D4D; }
|
611
|
-
.
|
611
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answer-response-2__Et0ih {
|
612
612
|
color: #FEAF06; }
|
613
|
-
.
|
613
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answer-response-3__5Vc3v {
|
614
614
|
color: #3ACB46; }
|
615
|
-
.
|
615
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answer-response-4__2SMBR {
|
616
616
|
color: #5D5D5B; }
|
617
|
-
.
|
617
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__overall-response-1__1ImE5 {
|
618
618
|
color: #DB4D4D; }
|
619
|
-
.
|
619
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__overall-response-2__1oVKC {
|
620
620
|
color: #FEAF06; }
|
621
|
-
.
|
621
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__overall-response-3__2wXCw {
|
622
622
|
color: #3ACB46; }
|
623
|
-
.
|
623
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerCorrect__gE8qM {
|
624
624
|
font-weight: 500;
|
625
625
|
font-size: 12px;
|
626
626
|
color: #3ACB46; }
|
627
|
-
.
|
627
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerIncorrect__3kRqE {
|
628
628
|
font-weight: 500;
|
629
629
|
font-size: 12px;
|
630
630
|
color: #DB4D4D; }
|
631
|
-
.
|
631
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerNograss__22Pi3 {
|
632
632
|
font-weight: 500;
|
633
633
|
font-size: 12px;
|
634
634
|
color: #ced2da; }
|
635
|
-
.
|
635
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerEasy__1C7aw {
|
636
636
|
font-weight: 500;
|
637
637
|
font-size: 12px;
|
638
638
|
color: #3ACB46; }
|
639
|
-
.
|
639
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerDiscrimination___YGYX {
|
640
640
|
font-weight: 500;
|
641
641
|
font-size: 12px;
|
642
642
|
color: #DB4D4D; }
|
643
|
-
.
|
643
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerTrap__3AkGb {
|
644
644
|
font-weight: 500;
|
645
645
|
font-size: 12px;
|
646
646
|
color: #FEAF06; }
|
647
|
-
.
|
647
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__answerNoTime__3l-yC {
|
648
648
|
font-weight: 500;
|
649
649
|
font-size: 12px;
|
650
650
|
color: #ced2da; }
|
651
|
-
.
|
651
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__questionOrder__2mK7U {
|
652
652
|
font-family: "Pretendard";
|
653
653
|
font-weight: 600;
|
654
654
|
font-size: 12px;
|
655
655
|
color: #414E62; }
|
656
|
-
.
|
656
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__myTimeLabel__3ZOZs {
|
657
657
|
font-family: "Pretendard";
|
658
658
|
font-weight: 600;
|
659
659
|
font-size: 12px;
|
660
660
|
color: #414e62; }
|
661
|
-
.
|
661
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__myPoolTime__1Gajr {
|
662
662
|
height: 28px; }
|
663
|
-
.
|
663
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__myPoolTime__1Gajr span {
|
664
664
|
font-weight: 500;
|
665
665
|
font-size: 12px; }
|
666
|
-
.
|
666
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__topTimeLabel__62PzE {
|
667
667
|
font-family: "Pretendard";
|
668
668
|
font-weight: 600;
|
669
669
|
font-size: 12px;
|
670
670
|
color: #414e62; }
|
671
|
-
.
|
671
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__topTime__3HUx1 {
|
672
672
|
height: 28px; }
|
673
|
-
.
|
673
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__topTime__3HUx1 span {
|
674
674
|
font-weight: 500;
|
675
675
|
font-size: 12px;
|
676
676
|
color: #414e62; }
|
677
|
-
.
|
677
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__meanTimeLabel__Yu8Oq {
|
678
678
|
font-family: "Pretendard";
|
679
679
|
font-weight: 600;
|
680
680
|
font-size: 12px;
|
681
681
|
color: #97a1af; }
|
682
|
-
.
|
682
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__meanTime__18kZu {
|
683
683
|
height: 28px; }
|
684
|
-
.
|
684
|
+
._style-module__myanswer__1jZV7 ._style-module__contentMyAnswer___LRYW ._style-module__meanTime__18kZu span {
|
685
685
|
font-weight: 500;
|
686
686
|
font-size: 12px;
|
687
687
|
color: #414e62; }
|
688
688
|
|
689
|
-
.
|
689
|
+
._style-module__compareChart__2MTOH {
|
690
690
|
display: flex;
|
691
691
|
flex-direction: row;
|
692
692
|
align-items: center;
|
@@ -694,96 +694,96 @@
|
|
694
694
|
border-radius: 6px;
|
695
695
|
margin: 24px; }
|
696
696
|
|
697
|
-
.
|
697
|
+
._style-module__prevChart__JoHQL {
|
698
698
|
width: 36px;
|
699
699
|
display: flex;
|
700
700
|
justify-content: center;
|
701
701
|
align-items: center;
|
702
702
|
cursor: pointer; }
|
703
703
|
|
704
|
-
.
|
704
|
+
._style-module__chart__29iCQ {
|
705
705
|
width: calc(100% - 72px);
|
706
706
|
border-left: 1px solid #e4e7ec;
|
707
707
|
border-right: 1px solid #e4e7ec;
|
708
708
|
background-color: #F9FAFB; }
|
709
709
|
|
710
|
-
.
|
710
|
+
._style-module__nextChart__3hjxI {
|
711
711
|
width: 36px;
|
712
712
|
display: flex;
|
713
713
|
justify-content: center;
|
714
714
|
align-items: center;
|
715
715
|
cursor: pointer; }
|
716
716
|
|
717
|
-
.
|
717
|
+
._style-module__titleChart__2Z42z {
|
718
718
|
padding: 10.5px 24px;
|
719
719
|
border: 1px solid #e4e7ec;
|
720
720
|
border-radius: 6px; }
|
721
|
-
.
|
721
|
+
._style-module__titleChart__2Z42z span {
|
722
722
|
font-family: "Pretendard";
|
723
723
|
font-weight: 700;
|
724
724
|
font-size: 16px;
|
725
725
|
color: #414e62; }
|
726
726
|
|
727
|
-
.
|
727
|
+
._style-module__titleCompareGrass__34RN_ {
|
728
728
|
font-family: "Pretendard";
|
729
729
|
padding: 10.5px 24px;
|
730
730
|
font-weight: 700;
|
731
731
|
font-size: 16px;
|
732
732
|
color: #414e62; }
|
733
733
|
|
734
|
-
.
|
734
|
+
._style-module__tableCompareGrass__2lzlQ thead {
|
735
735
|
background-color: #f9fafb; }
|
736
|
-
.
|
736
|
+
._style-module__tableCompareGrass__2lzlQ thead th {
|
737
737
|
font-family: "Pretendard";
|
738
738
|
font-weight: 600;
|
739
739
|
font-size: 13px;
|
740
740
|
color: #9A9A98;
|
741
741
|
padding: 12px 16px; }
|
742
|
-
.
|
742
|
+
._style-module__tableCompareGrass__2lzlQ thead ._style-module__thcolumn1__2MSIH {
|
743
743
|
border-right: 1px solid #e4e7ec;
|
744
744
|
padding: 12px 16px; }
|
745
745
|
|
746
|
-
.
|
746
|
+
._style-module__tableCompareGrass__2lzlQ tbody {
|
747
747
|
font-family: "Pretendard";
|
748
748
|
font-weight: 500;
|
749
749
|
font-size: 13px;
|
750
750
|
border-bottom: 1px solid #e4e7ec; }
|
751
|
-
.
|
751
|
+
._style-module__tableCompareGrass__2lzlQ tbody td {
|
752
752
|
vertical-align: middle; }
|
753
|
-
.
|
753
|
+
._style-module__tableCompareGrass__2lzlQ tbody ._style-module__tdcolumn1__1I06v {
|
754
754
|
padding: 8px 16px;
|
755
755
|
border-right: 1px solid #e4e7ec;
|
756
756
|
color: #97a1af; }
|
757
|
-
.
|
757
|
+
._style-module__tableCompareGrass__2lzlQ tbody ._style-module__tdcolumn3__VpMQ5 {
|
758
758
|
text-align: center;
|
759
759
|
font-family: "Pretendard";
|
760
760
|
font-weight: 700;
|
761
761
|
font-size: 13px; }
|
762
|
-
.
|
762
|
+
._style-module__tableCompareGrass__2lzlQ tbody ._style-module__classification__3t41M {
|
763
763
|
display: flex;
|
764
764
|
flex-direction: row;
|
765
765
|
justify-content: center;
|
766
766
|
align-items: center;
|
767
767
|
gap: 10px; }
|
768
|
-
.
|
768
|
+
._style-module__tableCompareGrass__2lzlQ tbody ._style-module__classification__3t41M span {
|
769
769
|
font-family: "Pretendard";
|
770
770
|
font-weight: 600;
|
771
771
|
font-size: 11px;
|
772
772
|
padding: 4px 8px;
|
773
773
|
border-radius: 6px; }
|
774
774
|
|
775
|
-
.
|
775
|
+
._style-module__wrapperProblem__2vh8v {
|
776
776
|
border-top: 1px solid #e4e7ec; }
|
777
|
-
.
|
777
|
+
._style-module__wrapperProblem__2vh8v :hover {
|
778
778
|
cursor: pointer; }
|
779
779
|
|
780
|
-
.
|
780
|
+
._style-module__wrapperProblem__2vh8v:first-child {
|
781
781
|
border-top: none; }
|
782
782
|
|
783
|
-
.
|
783
|
+
._style-module__wrapperProblem__2vh8v:last-child {
|
784
784
|
border-bottom: 1px solid #e4e7ec; }
|
785
785
|
|
786
|
-
.
|
786
|
+
._style-module__titleProblem__3YfGm {
|
787
787
|
display: flex;
|
788
788
|
background-color: #F9FAFB;
|
789
789
|
border-bottom: 1px solid #e4e7ec;
|
@@ -795,7 +795,7 @@
|
|
795
795
|
font-size: 16px;
|
796
796
|
color: #414e62; }
|
797
797
|
|
798
|
-
.
|
798
|
+
._style-module__titleProblemClose__34388 {
|
799
799
|
display: flex;
|
800
800
|
background-color: #F9FAFB;
|
801
801
|
justify-content: space-between;
|
@@ -806,7 +806,7 @@
|
|
806
806
|
font-size: 16px;
|
807
807
|
color: #414e62; }
|
808
808
|
|
809
|
-
.
|
809
|
+
._style-module__titleTrickyProblem__INxbh {
|
810
810
|
border-bottom: 1px solid #e4e7ec;
|
811
811
|
background-color: #F9FAFB;
|
812
812
|
display: flex;
|
@@ -818,7 +818,7 @@
|
|
818
818
|
font-size: 12px;
|
819
819
|
color: #97a1af; }
|
820
820
|
|
821
|
-
.
|
821
|
+
._style-module__wrongQuestions__35DcB {
|
822
822
|
border-bottom: 1px solid #e4e7ec;
|
823
823
|
display: flex;
|
824
824
|
align-items: center;
|
@@ -830,12 +830,12 @@
|
|
830
830
|
font-size: 12px;
|
831
831
|
background-color: #FFF;
|
832
832
|
color: #DB4D4D; }
|
833
|
-
.
|
833
|
+
._style-module__wrongQuestions__35DcB ._style-module__question__10SAW {
|
834
834
|
min-width: 36px;
|
835
835
|
min-height: 22px;
|
836
836
|
padding: 4px; }
|
837
837
|
|
838
|
-
.
|
838
|
+
._style-module__assignedQuestions__oEGQ_ {
|
839
839
|
display: flex;
|
840
840
|
align-items: center;
|
841
841
|
flex-wrap: wrap;
|
@@ -846,103 +846,103 @@
|
|
846
846
|
font-size: 12px;
|
847
847
|
background-color: #FFF;
|
848
848
|
color: #3ACB46; }
|
849
|
-
.
|
849
|
+
._style-module__assignedQuestions__oEGQ_ ._style-module__question__10SAW {
|
850
850
|
min-width: 36px;
|
851
851
|
min-height: 22px;
|
852
852
|
padding: 4px; }
|
853
853
|
|
854
|
-
.
|
854
|
+
._style-module__wrapperContent__zhZ1O {
|
855
855
|
padding: 8px 0px; }
|
856
856
|
|
857
|
-
.
|
857
|
+
._style-module__content__NGHD4 {
|
858
858
|
padding: 8px; }
|
859
|
-
.
|
859
|
+
._style-module__content__NGHD4 ._style-module__contentColumn1__v5SKe {
|
860
860
|
border-right: 1px solid #97a1af;
|
861
861
|
padding: 11px 24px 8px 11px; }
|
862
|
-
.
|
862
|
+
._style-module__content__NGHD4 ._style-module__contentColumn1__v5SKe div {
|
863
863
|
display: flex;
|
864
864
|
justify-content: center;
|
865
865
|
align-items: center;
|
866
866
|
gap: 4px;
|
867
867
|
min-width: 72px; }
|
868
|
-
.
|
868
|
+
._style-module__content__NGHD4 ._style-module__contentColumn1__v5SKe div ._style-module__span1__28SHT {
|
869
869
|
font-family: "Pretendard";
|
870
870
|
font-weight: 600;
|
871
871
|
font-size: 12px;
|
872
872
|
color: "#414E62"; }
|
873
|
-
.
|
873
|
+
._style-module__content__NGHD4 ._style-module__contentColumn1__v5SKe div ._style-module__span2__1raLd {
|
874
874
|
font-family: "Pretendard";
|
875
875
|
font-weight: 600;
|
876
876
|
font-size: 12px;
|
877
877
|
color: #414E62; }
|
878
|
-
.
|
878
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 {
|
879
879
|
display: flex;
|
880
880
|
flex-direction: row;
|
881
881
|
padding-left: 16px;
|
882
882
|
gap: 16px; }
|
883
|
-
.
|
883
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 div {
|
884
884
|
display: flex;
|
885
885
|
flex-direction: column;
|
886
886
|
gap: 8px; }
|
887
|
-
.
|
887
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 div ._style-module__span1__28SHT {
|
888
888
|
font-family: "Pretendard";
|
889
889
|
font-size: 500px;
|
890
890
|
font-size: 12px;
|
891
891
|
color: #414e62; }
|
892
|
-
.
|
892
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 div ._style-module__span2__1raLd {
|
893
893
|
font-family: "Pretendard";
|
894
894
|
font-size: 500px;
|
895
895
|
font-size: 12px;
|
896
896
|
color: #97a1af; }
|
897
|
-
.
|
897
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 ._style-module__duration__1YGAg {
|
898
898
|
font-family: "Pretendard";
|
899
899
|
font-weight: 600;
|
900
900
|
font-size: 12px;
|
901
901
|
color: #DB4D4D; }
|
902
|
-
.
|
902
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 ._style-module__topDuration__3DiyY {
|
903
903
|
font-family: "Pretendard";
|
904
904
|
font-weight: 500;
|
905
905
|
font-size: 12px;
|
906
906
|
color: #414e62; }
|
907
|
-
.
|
907
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 ._style-module__overallCorrectRate__DnkyV {
|
908
908
|
font-family: "Pretendard";
|
909
909
|
font-weight: 600;
|
910
910
|
font-size: 12px;
|
911
911
|
color: #18442A; }
|
912
|
-
.
|
912
|
+
._style-module__content__NGHD4 ._style-module__contentColumn2__-xJ34 ._style-module__answer__29MTE {
|
913
913
|
font-family: "Pretendard";
|
914
914
|
font-weight: 500;
|
915
915
|
font-size: 12px;
|
916
916
|
color: #DB4D4D; }
|
917
917
|
|
918
|
-
.
|
918
|
+
._style-module__contentVulnerable__3x1PG {
|
919
919
|
padding: 8px; }
|
920
920
|
|
921
|
-
.
|
921
|
+
._style-module__wrappContentProblem__2saM2 {
|
922
922
|
padding: 10px 0px; }
|
923
923
|
|
924
|
-
.
|
924
|
+
._style-module__contentProblem__1hTJx {
|
925
925
|
display: flex;
|
926
926
|
flex-direction: column;
|
927
927
|
padding: 12px 24px; }
|
928
|
-
.
|
928
|
+
._style-module__contentProblem__1hTJx ._style-module__labelProblem__3BXO9 {
|
929
929
|
display: flex;
|
930
930
|
align-items: center;
|
931
931
|
justify-content: space-between;
|
932
932
|
margin-bottom: 8px; }
|
933
|
-
.
|
933
|
+
._style-module__contentProblem__1hTJx ._style-module__labelProblem__3BXO9 ._style-module__name__1cUZW {
|
934
934
|
font-family: "Pretendard";
|
935
935
|
font-weight: 500;
|
936
936
|
font-size: 12px;
|
937
937
|
color: #414E62; }
|
938
|
-
.
|
938
|
+
._style-module__contentProblem__1hTJx ._style-module__labelProblem__3BXO9 ._style-module__percent__3CLEc {
|
939
939
|
font-family: "Pretendard";
|
940
940
|
display: flex;
|
941
941
|
gap: 16px;
|
942
942
|
margin-right: 20px;
|
943
943
|
font-weight: 600;
|
944
944
|
font-size: 12px; }
|
945
|
-
.
|
945
|
+
._style-module__contentProblem__1hTJx ._style-module__slider__3LCEY {
|
946
946
|
width: 100%;
|
947
947
|
height: 12px;
|
948
948
|
background-color: transparent;
|
@@ -950,10 +950,10 @@
|
|
950
950
|
border-radius: 12px;
|
951
951
|
padding: 1px 5px;
|
952
952
|
overflow-x: hidden; }
|
953
|
-
.
|
953
|
+
._style-module__contentProblem__1hTJx ._style-module__slider__3LCEY > div {
|
954
954
|
position: relative;
|
955
955
|
height: 100%; }
|
956
|
-
.
|
956
|
+
._style-module__contentProblem__1hTJx ._style-module__slider__3LCEY ._style-module__track__3I8mi {
|
957
957
|
width: 8px;
|
958
958
|
height: 8px;
|
959
959
|
background: #18442A;
|
@@ -962,7 +962,7 @@
|
|
962
962
|
top: 0;
|
963
963
|
transform: translateX(-50%); }
|
964
964
|
|
965
|
-
.
|
965
|
+
._style-module__noData__1oZ-s {
|
966
966
|
font-family: "Pretendard";
|
967
967
|
font-weight: 600;
|
968
968
|
display: flex;
|
@@ -970,17 +970,17 @@
|
|
970
970
|
align-items: center;
|
971
971
|
margin: 8px 0; }
|
972
972
|
|
973
|
-
.
|
973
|
+
._style-module__loading__Nm201 {
|
974
974
|
height: calc(100vh - 72px); }
|
975
975
|
|
976
|
-
.
|
976
|
+
._style-module__table-responsive__3zQL- {
|
977
977
|
overflow-x: auto;
|
978
978
|
-webkit-overflow-scrolling: touch; }
|
979
979
|
|
980
|
-
.
|
980
|
+
._style-module__form-label__3Vpmh {
|
981
981
|
margin-bottom: 0.5rem; }
|
982
982
|
|
983
|
-
.
|
983
|
+
._style-module__form-control__DafKE {
|
984
984
|
display: block;
|
985
985
|
width: 100%;
|
986
986
|
padding: 0.375rem 0.75rem;
|
@@ -997,30 +997,30 @@
|
|
997
997
|
border-radius: 0.375rem;
|
998
998
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
999
999
|
|
1000
|
-
.
|
1000
|
+
._style-module__form-label-dialog__3NjaH {
|
1001
1001
|
font-weight: 600 !important;
|
1002
1002
|
font-size: 13px !important;
|
1003
1003
|
line-height: 15.51px !important;
|
1004
1004
|
color: #202B37 !important; }
|
1005
1005
|
|
1006
|
-
.
|
1006
|
+
._style-module__btn-cancel__sLxwL {
|
1007
1007
|
min-width: 120px !important;
|
1008
1008
|
padding: 12px !important;
|
1009
1009
|
border-radius: 6px !important;
|
1010
1010
|
background-color: transparent !important; }
|
1011
1011
|
|
1012
|
-
.
|
1012
|
+
._style-module__btn-register__4ZKQY {
|
1013
1013
|
min-width: 120px !important;
|
1014
1014
|
padding: 12px !important;
|
1015
1015
|
border-radius: 6px !important; }
|
1016
1016
|
|
1017
|
-
.
|
1017
|
+
._style-module__pdfBtnBox__2zUJf p {
|
1018
1018
|
font-size: 13px;
|
1019
1019
|
font-weight: 700;
|
1020
1020
|
color: #6d6e6f;
|
1021
1021
|
margin: 0; }
|
1022
1022
|
|
1023
|
-
.
|
1023
|
+
._style-module__pdfBtnBox__2zUJf button {
|
1024
1024
|
border-radius: 6px;
|
1025
1025
|
padding: 8px 12px;
|
1026
1026
|
border: 1px solid #aeabac;
|
@@ -1030,12 +1030,12 @@
|
|
1030
1030
|
gap: 8px;
|
1031
1031
|
align-items: center; }
|
1032
1032
|
|
1033
|
-
.
|
1033
|
+
._style-module__pdfBtn__y_Cr7 {
|
1034
1034
|
display: flex;
|
1035
1035
|
justify-content: space-between;
|
1036
1036
|
line-height: 10.8px; }
|
1037
1037
|
|
1038
|
-
.
|
1038
|
+
._style-module__form-select__HCIxD {
|
1039
1039
|
display: block;
|
1040
1040
|
width: 100%;
|
1041
1041
|
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
|
@@ -1055,72 +1055,72 @@
|
|
1055
1055
|
border-radius: 0.375rem;
|
1056
1056
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
1057
1057
|
|
1058
|
-
.
|
1058
|
+
._style-module__loader__3aDIU {
|
1059
1059
|
display: flex;
|
1060
1060
|
align-items: end; }
|
1061
1061
|
|
1062
|
-
.
|
1062
|
+
._style-module__dot__JGCIL {
|
1063
1063
|
width: 6px;
|
1064
1064
|
height: 6px;
|
1065
1065
|
margin: 0 3px;
|
1066
1066
|
border-radius: 50%;
|
1067
1067
|
background-color: #ffffff;
|
1068
|
-
animation:
|
1068
|
+
animation: _style-module__bounce__3M62i 0.6s infinite alternate; }
|
1069
1069
|
|
1070
|
-
.
|
1070
|
+
._style-module__dot__JGCIL:nth-child(2) {
|
1071
1071
|
animation-delay: 0.2s; }
|
1072
1072
|
|
1073
|
-
.
|
1073
|
+
._style-module__dot__JGCIL:nth-child(3) {
|
1074
1074
|
animation-delay: 0.4s; }
|
1075
1075
|
|
1076
|
-
@keyframes
|
1076
|
+
@keyframes _style-module__bounce__3M62i {
|
1077
1077
|
0% {
|
1078
1078
|
transform: translateY(-4px); }
|
1079
1079
|
100% {
|
1080
1080
|
transform: translateY(-8px); } }
|
1081
1081
|
|
1082
|
-
.
|
1082
|
+
._chatStyles-module__header__avatar__2oGcJ {
|
1083
1083
|
width: 48px;
|
1084
1084
|
height: 48px;
|
1085
1085
|
-o-object-fit: cover;
|
1086
1086
|
object-fit: cover; }
|
1087
1087
|
|
1088
|
-
.
|
1088
|
+
._chatStyles-module__header__select__2y2XV {
|
1089
1089
|
width: 200px; }
|
1090
1090
|
|
1091
|
-
.
|
1091
|
+
._chatStyles-module__body__ntGyI {
|
1092
1092
|
overflow-y: auto; }
|
1093
1093
|
|
1094
|
-
.
|
1094
|
+
._chatStyles-module__list__m7Fwt {
|
1095
1095
|
list-style-type: none; }
|
1096
|
-
.
|
1096
|
+
._chatStyles-module__list__item__header__3BM8N {
|
1097
1097
|
width: calc(100% + 2rem);
|
1098
1098
|
margin-inline: -1rem; }
|
1099
|
-
.
|
1099
|
+
._chatStyles-module__list__item__avatar__1ReOK {
|
1100
1100
|
width: 100%;
|
1101
1101
|
height: 100%;
|
1102
1102
|
-o-object-fit: cover;
|
1103
1103
|
object-fit: cover; }
|
1104
|
-
.
|
1104
|
+
._chatStyles-module__list__item__avatar-container__2qbld {
|
1105
1105
|
width: 32px;
|
1106
1106
|
min-width: 32px;
|
1107
1107
|
aspect-ratio: 1; }
|
1108
|
-
.
|
1108
|
+
._chatStyles-module__list__item__message__3s01i {
|
1109
1109
|
width: -moz-fit-content;
|
1110
1110
|
width: fit-content;
|
1111
1111
|
border-radius: 20px; }
|
1112
|
-
.
|
1112
|
+
._chatStyles-module__list__item__message--reply-from__2Qxi3 {
|
1113
1113
|
border-radius: 20px 20px 20px 0;
|
1114
1114
|
font-size: 14px; }
|
1115
|
-
.
|
1115
|
+
._chatStyles-module__list__item__message--reply-from-right__34Vx4 {
|
1116
1116
|
border-radius: 20px 20px 0px 20px;
|
1117
1117
|
font-size: 14px; }
|
1118
|
-
.
|
1118
|
+
._chatStyles-module__list__item__message--reply__3uheq {
|
1119
1119
|
border-radius: 0 20px 20px 20px; }
|
1120
|
-
.
|
1120
|
+
._chatStyles-module__list__item__message--reply-right__2iBr7 {
|
1121
1121
|
border-radius: 20px 0px 20px 20px; }
|
1122
1122
|
|
1123
|
-
.
|
1123
|
+
._chatStyles-module__reply-text__3ZPjO {
|
1124
1124
|
text-overflow: ellipsis;
|
1125
1125
|
overflow: hidden;
|
1126
1126
|
display: -webkit-box;
|
@@ -1128,10 +1128,10 @@
|
|
1128
1128
|
-webkit-box-orient: vertical;
|
1129
1129
|
line-height: 42px; }
|
1130
1130
|
|
1131
|
-
.
|
1131
|
+
._chatStyles-module__container-custom__38A9k {
|
1132
1132
|
padding: 20px 27px; }
|
1133
1133
|
|
1134
|
-
.
|
1134
|
+
._chatStyles-module__student-row-col-1__Jt5t0 {
|
1135
1135
|
min-height: 49px;
|
1136
1136
|
padding: 16px 24px;
|
1137
1137
|
display: flex;
|
@@ -1141,7 +1141,7 @@
|
|
1141
1141
|
border-bottom: 1px solid #E4E7EC;
|
1142
1142
|
border-right: 1px solid #E4E7EC; }
|
1143
1143
|
|
1144
|
-
.
|
1144
|
+
._chatStyles-module__student-row-col-1-active__14DKj {
|
1145
1145
|
min-height: 49px;
|
1146
1146
|
padding: 16px 24px;
|
1147
1147
|
display: flex;
|
@@ -1152,54 +1152,54 @@
|
|
1152
1152
|
border-bottom: 1px solid #E4E7EC;
|
1153
1153
|
border-right: 1px solid #E4E7EC; }
|
1154
1154
|
|
1155
|
-
.
|
1155
|
+
._chatStyles-module__row-col-2__qHGiR {
|
1156
1156
|
min-height: 49px;
|
1157
1157
|
padding: 16px 24px;
|
1158
1158
|
border-bottom: 1px solid #E4E7EC; }
|
1159
1159
|
|
1160
|
-
.
|
1160
|
+
._chatStyles-module__inputBox__2iY67 {
|
1161
1161
|
padding-left: 16px;
|
1162
1162
|
padding-right: 16px;
|
1163
1163
|
padding-bottom: 20px; }
|
1164
1164
|
|
1165
|
-
.
|
1165
|
+
._chatStyles-module__inputBox__2iY67 svg, ._chatStyles-module__inputBoxTable__3pCw0 svg {
|
1166
1166
|
left: 10px;
|
1167
1167
|
top: 50%;
|
1168
1168
|
transform: translateY(-50%);
|
1169
1169
|
z-index: 10; }
|
1170
1170
|
|
1171
|
-
.
|
1171
|
+
._chatStyles-module__inputBox__2iY67 input {
|
1172
1172
|
padding-left: 32px;
|
1173
1173
|
border: 1px solid var(--gray-500);
|
1174
1174
|
background-color: var(--bg-100) !important;
|
1175
1175
|
border-radius: 6px; }
|
1176
1176
|
|
1177
|
-
.
|
1177
|
+
._chatStyles-module__background-chat__zILbw {
|
1178
1178
|
background-color: #F9FAFB; }
|
1179
1179
|
|
1180
|
-
.
|
1180
|
+
._chatStyles-module__wrap-content__38gsM {
|
1181
1181
|
display: inline-block !important; }
|
1182
1182
|
|
1183
|
-
.
|
1183
|
+
._chatStyles-module__name-sender__Lfzyw {
|
1184
1184
|
padding: 4px; }
|
1185
1185
|
|
1186
|
-
.
|
1186
|
+
._chatStyles-module__content-chat-sender__1X73E {
|
1187
1187
|
padding: 8px 12px;
|
1188
1188
|
border: 1px solid #E4E7EC;
|
1189
1189
|
border-radius: 6px;
|
1190
1190
|
background-color: #FFFFFF; }
|
1191
1191
|
|
1192
|
-
.
|
1192
|
+
._chatStyles-module__content-chat-receiver__32V7T {
|
1193
1193
|
padding: 8px 12px;
|
1194
1194
|
color: #FFFFFF;
|
1195
1195
|
border-radius: 6px; }
|
1196
1196
|
|
1197
|
-
.
|
1197
|
+
._chatStyles-module__custom-scroll__2Uul2 {
|
1198
1198
|
overflow-y: scroll; }
|
1199
|
-
.
|
1199
|
+
._chatStyles-module__custom-scroll__2Uul2::-webkit-scrollbar {
|
1200
1200
|
display: none; }
|
1201
1201
|
|
1202
|
-
.
|
1202
|
+
._chatStyles-module__btn-send__395lb {
|
1203
1203
|
padding: 12px !important;
|
1204
1204
|
display: flex !important;
|
1205
1205
|
align-items: center !important;
|
@@ -1208,7 +1208,7 @@
|
|
1208
1208
|
min-width: 108px !important;
|
1209
1209
|
border-radius: 6px !important; }
|
1210
1210
|
|
1211
|
-
.
|
1211
|
+
._chatStyles-module__btn-chat__gDYwm {
|
1212
1212
|
padding: 12px 24px !important;
|
1213
1213
|
display: flex !important;
|
1214
1214
|
align-items: center !important;
|
@@ -1217,55 +1217,55 @@
|
|
1217
1217
|
width: 100%;
|
1218
1218
|
border-radius: 6px !important; }
|
1219
1219
|
|
1220
|
-
.
|
1220
|
+
._chatStyles-module__input-chat__22TX5 {
|
1221
1221
|
padding: 12px;
|
1222
1222
|
border: 1px solid #97A1AF;
|
1223
1223
|
border-radius: 6px; }
|
1224
|
-
.
|
1224
|
+
._chatStyles-module__input-chat__22TX5 ::-moz-placeholder {
|
1225
1225
|
font-size: 13px;
|
1226
1226
|
line-height: 15.51px;
|
1227
1227
|
font-weight: 500;
|
1228
1228
|
color: #CED2DA; }
|
1229
|
-
.
|
1229
|
+
._chatStyles-module__input-chat__22TX5 ::placeholder {
|
1230
1230
|
font-size: 13px;
|
1231
1231
|
line-height: 15.51px;
|
1232
1232
|
font-weight: 500;
|
1233
1233
|
color: #CED2DA; }
|
1234
1234
|
|
1235
|
-
.
|
1235
|
+
._chatStyles-module__btn-cancel__1u-eg {
|
1236
1236
|
min-width: 120px !important;
|
1237
1237
|
padding: 12px !important;
|
1238
1238
|
border-radius: 6px !important;
|
1239
1239
|
background-color: transparent !important; }
|
1240
1240
|
|
1241
|
-
.
|
1241
|
+
._chatStyles-module__btn-register__22r6_ {
|
1242
1242
|
min-width: 120px !important;
|
1243
1243
|
padding: 12px !important;
|
1244
1244
|
border-radius: 6px !important; }
|
1245
1245
|
|
1246
|
-
.
|
1246
|
+
._chatStyles-module__form-label-dialog__jADIA {
|
1247
1247
|
font-weight: 600 !important;
|
1248
1248
|
font-size: 13px !important;
|
1249
1249
|
line-height: 15.51px !important;
|
1250
1250
|
color: #202B37 !important; }
|
1251
1251
|
|
1252
|
-
.
|
1252
|
+
._chatStyles-module__form-select-width__WncPd {
|
1253
1253
|
width: 177px !important; }
|
1254
1254
|
|
1255
|
-
.
|
1255
|
+
._chatStyles-module__custom-scroll__2Uul2 {
|
1256
1256
|
overflow-y: scroll; }
|
1257
|
-
.
|
1257
|
+
._chatStyles-module__custom-scroll__2Uul2::-webkit-scrollbar {
|
1258
1258
|
display: none; }
|
1259
1259
|
|
1260
|
-
.
|
1260
|
+
._chatStyles-module__padding-content__3hz3H {
|
1261
1261
|
padding: 16px; }
|
1262
|
-
.
|
1262
|
+
._chatStyles-module__padding-content__3hz3H > div:last-child {
|
1263
1263
|
padding-bottom: 16px; }
|
1264
1264
|
|
1265
|
-
.
|
1265
|
+
._chatStyles-module__form-label__MMQxP {
|
1266
1266
|
margin-bottom: 0.5rem; }
|
1267
1267
|
|
1268
|
-
.
|
1268
|
+
._chatStyles-module__form-control__1mJfc {
|
1269
1269
|
display: block;
|
1270
1270
|
width: 100%;
|
1271
1271
|
padding: 0.375rem 0.75rem;
|
@@ -1282,39 +1282,68 @@
|
|
1282
1282
|
border-radius: 0.375rem;
|
1283
1283
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
1284
1284
|
|
1285
|
-
.
|
1285
|
+
._chatStyles-module__form-label-dialog__jADIA {
|
1286
1286
|
font-weight: 600 !important;
|
1287
1287
|
font-size: 13px !important;
|
1288
1288
|
line-height: 15.51px !important;
|
1289
1289
|
color: #202B37 !important; }
|
1290
1290
|
|
1291
|
-
.
|
1291
|
+
._styles-module__question__3Y8AX {
|
1292
|
+
padding: 0.5rem 1.5rem;
|
1293
|
+
border-radius: 6px;
|
1294
|
+
border: 1px solid #EBEBFF; }
|
1295
|
+
._styles-module__question-article__1e8WY {
|
1296
|
+
font-weight: 700;
|
1297
|
+
font-size: 14px; }
|
1298
|
+
._styles-module__question-title__2gi0p {
|
1299
|
+
font-weight: 700;
|
1300
|
+
font-size: 14px;
|
1301
|
+
color: #414E62; }
|
1302
|
+
|
1303
|
+
._styles-module__question-label__3IU-c > span:last-child,
|
1304
|
+
._styles-module__question-label__3IU-c {
|
1305
|
+
font-weight: 600 !important;
|
1306
|
+
font-size: 13px !important;
|
1307
|
+
color: #202B37 !important; }
|
1308
|
+
|
1309
|
+
._styles-module__question-input__25MOi {
|
1310
|
+
font-weight: 600;
|
1311
|
+
font-size: 13px;
|
1312
|
+
border: 1px solid #97A1AF;
|
1313
|
+
padding: 12px; }
|
1314
|
+
._styles-module__question-input__25MOi:focus {
|
1315
|
+
box-shadow: none; }
|
1316
|
+
|
1317
|
+
._styles-module__question-btn__vPa1F:hover {
|
1318
|
+
color: #FFF; }
|
1319
|
+
|
1320
|
+
._styles-module__avatar__2rJkZ {
|
1292
1321
|
width: 42px;
|
1293
1322
|
height: 42px; }
|
1294
1323
|
|
1295
|
-
.
|
1324
|
+
._styles-module__date-picker__1iqE2 {
|
1296
1325
|
width: 100%; }
|
1297
|
-
.
|
1326
|
+
._styles-module__date-picker__1iqE2 input {
|
1298
1327
|
padding: 10px 12px; }
|
1299
1328
|
|
1300
|
-
.
|
1329
|
+
._styles-module__time-picker__20xtc input {
|
1301
1330
|
padding: 10px 12px; }
|
1302
1331
|
|
1303
|
-
.
|
1332
|
+
._styles-module__teacher-selector-wrapper__3L1Oj > div {
|
1304
1333
|
margin-bottom: 0 !important; }
|
1305
1334
|
|
1306
|
-
.
|
1335
|
+
._styles-module__date-picker__2YMvj {
|
1307
1336
|
width: 100%; }
|
1308
|
-
.
|
1337
|
+
._styles-module__date-picker__2YMvj input {
|
1309
1338
|
padding: 10px 12px; }
|
1310
1339
|
|
1311
|
-
.
|
1340
|
+
._styles-module__time-picker__3exYU input {
|
1312
1341
|
padding: 10px 12px; }
|
1313
1342
|
|
1314
|
-
.
|
1343
|
+
._style-module__form-label__1jRLX {
|
1315
1344
|
margin-bottom: 0.5rem; }
|
1316
1345
|
|
1317
|
-
.
|
1346
|
+
._style-module__form-control__13KE7 {
|
1318
1347
|
display: block;
|
1319
1348
|
width: 100%;
|
1320
1349
|
padding: 0.375rem 0.75rem;
|
@@ -1331,48 +1360,48 @@
|
|
1331
1360
|
border-radius: 0.375rem;
|
1332
1361
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
1333
1362
|
|
1334
|
-
.
|
1363
|
+
._style-module__form-label-dialog__3mXNM {
|
1335
1364
|
font-weight: 600 !important;
|
1336
1365
|
font-size: 13px !important;
|
1337
1366
|
line-height: 15.51px !important;
|
1338
1367
|
color: #202B37 !important; }
|
1339
1368
|
|
1340
|
-
.
|
1369
|
+
._style-module__btn-cancel__3bqNl {
|
1341
1370
|
min-width: 120px !important;
|
1342
1371
|
padding: 12px !important;
|
1343
1372
|
border-radius: 6px !important;
|
1344
1373
|
background-color: transparent !important; }
|
1345
1374
|
|
1346
|
-
.
|
1375
|
+
._style-module__btn-register__3GFnT {
|
1347
1376
|
min-width: 120px !important;
|
1348
1377
|
padding: 12px !important;
|
1349
1378
|
border-radius: 6px !important; }
|
1350
1379
|
|
1351
|
-
.
|
1380
|
+
._style-module__titleBox__1dveO ._style-module__title__mxRxf:nth-child(1) {
|
1352
1381
|
font-family: "Pretendard";
|
1353
1382
|
font-size: 20px;
|
1354
1383
|
font-weight: 800; }
|
1355
1384
|
|
1356
|
-
.
|
1385
|
+
._style-module__titleBox__1dveO ._style-module__title__mxRxf:nth-child(3) {
|
1357
1386
|
font-family: "Pretendard";
|
1358
1387
|
font-size: 12px;
|
1359
1388
|
font-weight: 600; }
|
1360
|
-
.
|
1389
|
+
._style-module__titleBox__1dveO ._style-module__title__mxRxf:nth-child(3) span {
|
1361
1390
|
margin-right: 16px; }
|
1362
1391
|
|
1363
|
-
.
|
1392
|
+
._style-module__point__2fD-F {
|
1364
1393
|
display: flex;
|
1365
1394
|
font-family: "Pretendard";
|
1366
1395
|
justify-content: center;
|
1367
1396
|
font-size: 18px;
|
1368
1397
|
font-weight: 700; }
|
1369
1398
|
|
1370
|
-
.
|
1399
|
+
._style-module__buttonGroup__2DGl3 {
|
1371
1400
|
display: flex;
|
1372
1401
|
justify-content: flex-end;
|
1373
1402
|
align-items: center;
|
1374
1403
|
gap: 24px; }
|
1375
|
-
.
|
1404
|
+
._style-module__buttonGroup__2DGl3 ._style-module__btnFeedback__xGW1x {
|
1376
1405
|
font-family: "Pretendard";
|
1377
1406
|
min-width: 170px;
|
1378
1407
|
min-height: 41px;
|
@@ -1383,12 +1412,12 @@
|
|
1383
1412
|
justify-content: center;
|
1384
1413
|
gap: 8px;
|
1385
1414
|
background-color: transparent; }
|
1386
|
-
.
|
1415
|
+
._style-module__buttonGroup__2DGl3 ._style-module__btnFeedback__xGW1x span {
|
1387
1416
|
font-size: 14px;
|
1388
1417
|
font-weight: 700; }
|
1389
|
-
.
|
1418
|
+
._style-module__buttonGroup__2DGl3 ._style-module__btnFeedback__xGW1x:hover {
|
1390
1419
|
background-color: #e4e7ec; }
|
1391
|
-
.
|
1420
|
+
._style-module__buttonGroup__2DGl3 ._style-module__btnTerminate__3mLu2 {
|
1392
1421
|
min-width: 170px;
|
1393
1422
|
min-height: 41px;
|
1394
1423
|
border-radius: 6px;
|
@@ -1397,22 +1426,22 @@
|
|
1397
1426
|
align-items: center;
|
1398
1427
|
justify-content: center;
|
1399
1428
|
gap: 8px; }
|
1400
|
-
.
|
1429
|
+
._style-module__buttonGroup__2DGl3 ._style-module__btnTerminate__3mLu2 span {
|
1401
1430
|
font-size: 14px;
|
1402
1431
|
font-weight: 700;
|
1403
1432
|
color: #ffffff; }
|
1404
1433
|
|
1405
|
-
.
|
1434
|
+
._style-module__myanswer__eDBpS {
|
1406
1435
|
background-color: #ffffff; }
|
1407
|
-
.
|
1436
|
+
._style-module__myanswer__eDBpS ._style-module__titleMyAnswer1__2fMq3 {
|
1408
1437
|
border-bottom: 1px solid #e4e7ec;
|
1409
1438
|
padding: 12px 24px; }
|
1410
|
-
.
|
1439
|
+
._style-module__myanswer__eDBpS ._style-module__titleMyAnswer1__2fMq3 span {
|
1411
1440
|
font-family: "Pretendard";
|
1412
1441
|
font-weight: 700;
|
1413
1442
|
font-size: 16px;
|
1414
1443
|
color: #414e62; }
|
1415
|
-
.
|
1444
|
+
._style-module__myanswer__eDBpS ._style-module__titleMyAnswer2__3gEYh {
|
1416
1445
|
padding: 8px 12px;
|
1417
1446
|
border-top: 1px solid #e4e7ec;
|
1418
1447
|
display: flex;
|
@@ -1420,120 +1449,120 @@
|
|
1420
1449
|
justify-content: start;
|
1421
1450
|
background-color: #FBFBF9;
|
1422
1451
|
gap: 8px; }
|
1423
|
-
.
|
1452
|
+
._style-module__myanswer__eDBpS ._style-module__titleMyAnswer2__3gEYh span:nth-child(1) {
|
1424
1453
|
font-family: "Pretendard";
|
1425
1454
|
font-weight: 600;
|
1426
1455
|
font-size: 12px;
|
1427
1456
|
color: #ced2da; }
|
1428
|
-
.
|
1457
|
+
._style-module__myanswer__eDBpS ._style-module__titleMyAnswer2__3gEYh span:nth-child(2) {
|
1429
1458
|
font-family: "Pretendard";
|
1430
1459
|
font-weight: 600;
|
1431
1460
|
font-size: 12px; }
|
1432
|
-
.
|
1461
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx {
|
1433
1462
|
display: flex;
|
1434
1463
|
flex-direction: column;
|
1435
1464
|
gap: 4px;
|
1436
1465
|
padding: 6px 0px;
|
1437
1466
|
font-family: "Pretendard"; }
|
1438
|
-
.
|
1467
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__myAnswerItem__2qiLh {
|
1439
1468
|
padding: 4px 8px; }
|
1440
|
-
.
|
1469
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__time__6TCOK {
|
1441
1470
|
padding: 8px 12px 16px 84px;
|
1442
1471
|
display: flex;
|
1443
1472
|
align-items: center;
|
1444
1473
|
gap: 16px; }
|
1445
|
-
.
|
1474
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__time__6TCOK ._style-module__timeCol__hmseC {
|
1446
1475
|
display: flex;
|
1447
1476
|
align-items: center;
|
1448
1477
|
gap: 4px;
|
1449
1478
|
min-height: 28px;
|
1450
1479
|
min-width: 136px; }
|
1451
|
-
.
|
1480
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answer-response__3GfJt {
|
1452
1481
|
font-weight: 500;
|
1453
1482
|
font-size: 12px; }
|
1454
|
-
.
|
1483
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answer-response-0__3ut64 {
|
1455
1484
|
color: #6B0861; }
|
1456
|
-
.
|
1485
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answer-response-1__2VtpD {
|
1457
1486
|
color: #DB4D4D; }
|
1458
|
-
.
|
1487
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answer-response-2__58lQU {
|
1459
1488
|
color: #FEAF06; }
|
1460
|
-
.
|
1489
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answer-response-3__1ucMY {
|
1461
1490
|
color: #3ACB46; }
|
1462
|
-
.
|
1491
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answer-response-4__1qkxy {
|
1463
1492
|
color: #5D5D5B; }
|
1464
|
-
.
|
1493
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__overall-response-1__1AeGu {
|
1465
1494
|
color: #DB4D4D; }
|
1466
|
-
.
|
1495
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__overall-response-2__1xTB0 {
|
1467
1496
|
color: #FEAF06; }
|
1468
|
-
.
|
1497
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__overall-response-3__3Yu_5 {
|
1469
1498
|
color: #3ACB46; }
|
1470
|
-
.
|
1499
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerCorrect__2jIeT {
|
1471
1500
|
font-weight: 500;
|
1472
1501
|
font-size: 12px;
|
1473
1502
|
color: #3ACB46; }
|
1474
|
-
.
|
1503
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerIncorrect__to2v0 {
|
1475
1504
|
font-weight: 500;
|
1476
1505
|
font-size: 12px;
|
1477
1506
|
color: #DB4D4D; }
|
1478
|
-
.
|
1507
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerNograss__1JSte {
|
1479
1508
|
font-weight: 500;
|
1480
1509
|
font-size: 12px;
|
1481
1510
|
color: #ced2da; }
|
1482
|
-
.
|
1511
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerEasy__2_uTU {
|
1483
1512
|
font-weight: 500;
|
1484
1513
|
font-size: 12px;
|
1485
1514
|
color: #3ACB46; }
|
1486
|
-
.
|
1515
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerDiscrimination__1DBoA {
|
1487
1516
|
font-weight: 500;
|
1488
1517
|
font-size: 12px;
|
1489
1518
|
color: #DB4D4D; }
|
1490
|
-
.
|
1519
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerTrap__1q3tD {
|
1491
1520
|
font-weight: 500;
|
1492
1521
|
font-size: 12px;
|
1493
1522
|
color: #FEAF06; }
|
1494
|
-
.
|
1523
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__answerNoTime__3iItu {
|
1495
1524
|
font-weight: 500;
|
1496
1525
|
font-size: 12px;
|
1497
1526
|
color: #ced2da; }
|
1498
|
-
.
|
1527
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__questionOrder__1fNkS {
|
1499
1528
|
font-family: "Pretendard";
|
1500
1529
|
font-weight: 600;
|
1501
1530
|
font-size: 12px;
|
1502
1531
|
color: #414E62; }
|
1503
|
-
.
|
1532
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__myTimeLabel__1Z_F3 {
|
1504
1533
|
font-family: "Pretendard";
|
1505
1534
|
font-weight: 600;
|
1506
1535
|
font-size: 12px;
|
1507
1536
|
color: #414e62; }
|
1508
|
-
.
|
1537
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__myPoolTime__4KwG0 {
|
1509
1538
|
height: 28px; }
|
1510
|
-
.
|
1539
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__myPoolTime__4KwG0 span {
|
1511
1540
|
font-weight: 500;
|
1512
1541
|
font-size: 12px; }
|
1513
|
-
.
|
1542
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__topTimeLabel__245H- {
|
1514
1543
|
font-family: "Pretendard";
|
1515
1544
|
font-weight: 600;
|
1516
1545
|
font-size: 12px;
|
1517
1546
|
color: #414e62; }
|
1518
|
-
.
|
1547
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__topTime__3tZqw {
|
1519
1548
|
height: 28px; }
|
1520
|
-
.
|
1549
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__topTime__3tZqw span {
|
1521
1550
|
font-weight: 500;
|
1522
1551
|
font-size: 12px;
|
1523
1552
|
color: #414e62; }
|
1524
|
-
.
|
1553
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__meanTimeLabel__PlPLY {
|
1525
1554
|
font-family: "Pretendard";
|
1526
1555
|
font-weight: 600;
|
1527
1556
|
font-size: 12px;
|
1528
1557
|
color: #97a1af; }
|
1529
|
-
.
|
1558
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__meanTime__12a7R {
|
1530
1559
|
height: 28px; }
|
1531
|
-
.
|
1560
|
+
._style-module__myanswer__eDBpS ._style-module__contentMyAnswer__2K_sx ._style-module__meanTime__12a7R span {
|
1532
1561
|
font-weight: 500;
|
1533
1562
|
font-size: 12px;
|
1534
1563
|
color: #414e62; }
|
1535
1564
|
|
1536
|
-
.
|
1565
|
+
._style-module__compareChart__3MW16 {
|
1537
1566
|
display: flex;
|
1538
1567
|
flex-direction: row;
|
1539
1568
|
align-items: center;
|
@@ -1541,96 +1570,96 @@
|
|
1541
1570
|
border-radius: 6px;
|
1542
1571
|
margin: 24px; }
|
1543
1572
|
|
1544
|
-
.
|
1573
|
+
._style-module__prevChart__1fNkb {
|
1545
1574
|
width: 36px;
|
1546
1575
|
display: flex;
|
1547
1576
|
justify-content: center;
|
1548
1577
|
align-items: center;
|
1549
1578
|
cursor: pointer; }
|
1550
1579
|
|
1551
|
-
.
|
1580
|
+
._style-module__chart__3K4oY {
|
1552
1581
|
width: calc(100% - 72px);
|
1553
1582
|
border-left: 1px solid #e4e7ec;
|
1554
1583
|
border-right: 1px solid #e4e7ec;
|
1555
1584
|
background-color: #F9FAFB; }
|
1556
1585
|
|
1557
|
-
.
|
1586
|
+
._style-module__nextChart__3YKBp {
|
1558
1587
|
width: 36px;
|
1559
1588
|
display: flex;
|
1560
1589
|
justify-content: center;
|
1561
1590
|
align-items: center;
|
1562
1591
|
cursor: pointer; }
|
1563
1592
|
|
1564
|
-
.
|
1593
|
+
._style-module__titleChart__13BVP {
|
1565
1594
|
padding: 10.5px 24px;
|
1566
1595
|
border: 1px solid #e4e7ec;
|
1567
1596
|
border-radius: 6px; }
|
1568
|
-
.
|
1597
|
+
._style-module__titleChart__13BVP span {
|
1569
1598
|
font-family: "Pretendard";
|
1570
1599
|
font-weight: 700;
|
1571
1600
|
font-size: 16px;
|
1572
1601
|
color: #414e62; }
|
1573
1602
|
|
1574
|
-
.
|
1603
|
+
._style-module__titleCompareGrass__o1txm {
|
1575
1604
|
font-family: "Pretendard";
|
1576
1605
|
padding: 10.5px 24px;
|
1577
1606
|
font-weight: 700;
|
1578
1607
|
font-size: 16px;
|
1579
1608
|
color: #414e62; }
|
1580
1609
|
|
1581
|
-
.
|
1610
|
+
._style-module__tableCompareGrass__bT5nf thead {
|
1582
1611
|
background-color: #f9fafb; }
|
1583
|
-
.
|
1612
|
+
._style-module__tableCompareGrass__bT5nf thead th {
|
1584
1613
|
font-family: "Pretendard";
|
1585
1614
|
font-weight: 600;
|
1586
1615
|
font-size: 13px;
|
1587
1616
|
color: #9A9A98;
|
1588
1617
|
padding: 12px 16px; }
|
1589
|
-
.
|
1618
|
+
._style-module__tableCompareGrass__bT5nf thead ._style-module__thcolumn1__3Umg0 {
|
1590
1619
|
border-right: 1px solid #e4e7ec;
|
1591
1620
|
padding: 12px 16px; }
|
1592
1621
|
|
1593
|
-
.
|
1622
|
+
._style-module__tableCompareGrass__bT5nf tbody {
|
1594
1623
|
font-family: "Pretendard";
|
1595
1624
|
font-weight: 500;
|
1596
1625
|
font-size: 13px;
|
1597
1626
|
border-bottom: 1px solid #e4e7ec; }
|
1598
|
-
.
|
1627
|
+
._style-module__tableCompareGrass__bT5nf tbody td {
|
1599
1628
|
vertical-align: middle; }
|
1600
|
-
.
|
1629
|
+
._style-module__tableCompareGrass__bT5nf tbody ._style-module__tdcolumn1__3dRMF {
|
1601
1630
|
padding: 8px 16px;
|
1602
1631
|
border-right: 1px solid #e4e7ec;
|
1603
1632
|
color: #97a1af; }
|
1604
|
-
.
|
1633
|
+
._style-module__tableCompareGrass__bT5nf tbody ._style-module__tdcolumn3__2tcBP {
|
1605
1634
|
text-align: center;
|
1606
1635
|
font-family: "Pretendard";
|
1607
1636
|
font-weight: 700;
|
1608
1637
|
font-size: 13px; }
|
1609
|
-
.
|
1638
|
+
._style-module__tableCompareGrass__bT5nf tbody ._style-module__classification__1AFeb {
|
1610
1639
|
display: flex;
|
1611
1640
|
flex-direction: row;
|
1612
1641
|
justify-content: center;
|
1613
1642
|
align-items: center;
|
1614
1643
|
gap: 10px; }
|
1615
|
-
.
|
1644
|
+
._style-module__tableCompareGrass__bT5nf tbody ._style-module__classification__1AFeb span {
|
1616
1645
|
font-family: "Pretendard";
|
1617
1646
|
font-weight: 600;
|
1618
1647
|
font-size: 11px;
|
1619
1648
|
padding: 4px 8px;
|
1620
1649
|
border-radius: 6px; }
|
1621
1650
|
|
1622
|
-
.
|
1651
|
+
._style-module__wrapperProblem__oTqG7 {
|
1623
1652
|
border-top: 1px solid #e4e7ec; }
|
1624
|
-
.
|
1653
|
+
._style-module__wrapperProblem__oTqG7 :hover {
|
1625
1654
|
cursor: pointer; }
|
1626
1655
|
|
1627
|
-
.
|
1656
|
+
._style-module__wrapperProblem__oTqG7:first-child {
|
1628
1657
|
border-top: none; }
|
1629
1658
|
|
1630
|
-
.
|
1659
|
+
._style-module__wrapperProblem__oTqG7:last-child {
|
1631
1660
|
border-bottom: 1px solid #e4e7ec; }
|
1632
1661
|
|
1633
|
-
.
|
1662
|
+
._style-module__titleProblem__35eIx {
|
1634
1663
|
display: flex;
|
1635
1664
|
background-color: #F9FAFB;
|
1636
1665
|
border-bottom: 1px solid #e4e7ec;
|
@@ -1642,7 +1671,7 @@
|
|
1642
1671
|
font-size: 16px;
|
1643
1672
|
color: #414e62; }
|
1644
1673
|
|
1645
|
-
.
|
1674
|
+
._style-module__titleProblemClose__3t4HO {
|
1646
1675
|
display: flex;
|
1647
1676
|
background-color: #F9FAFB;
|
1648
1677
|
justify-content: space-between;
|
@@ -1653,7 +1682,7 @@
|
|
1653
1682
|
font-size: 16px;
|
1654
1683
|
color: #414e62; }
|
1655
1684
|
|
1656
|
-
.
|
1685
|
+
._style-module__titleTrickyProblem__1-oxK {
|
1657
1686
|
border-bottom: 1px solid #e4e7ec;
|
1658
1687
|
background-color: #F9FAFB;
|
1659
1688
|
display: flex;
|
@@ -1665,7 +1694,7 @@
|
|
1665
1694
|
font-size: 12px;
|
1666
1695
|
color: #97a1af; }
|
1667
1696
|
|
1668
|
-
.
|
1697
|
+
._style-module__wrongQuestions__2dpMR {
|
1669
1698
|
border-bottom: 1px solid #e4e7ec;
|
1670
1699
|
display: flex;
|
1671
1700
|
align-items: center;
|
@@ -1677,12 +1706,12 @@
|
|
1677
1706
|
font-size: 12px;
|
1678
1707
|
background-color: #FFF;
|
1679
1708
|
color: #DB4D4D; }
|
1680
|
-
.
|
1709
|
+
._style-module__wrongQuestions__2dpMR ._style-module__question__1lSOX {
|
1681
1710
|
min-width: 36px;
|
1682
1711
|
min-height: 22px;
|
1683
1712
|
padding: 4px; }
|
1684
1713
|
|
1685
|
-
.
|
1714
|
+
._style-module__assignedQuestions__1ONUt {
|
1686
1715
|
display: flex;
|
1687
1716
|
align-items: center;
|
1688
1717
|
flex-wrap: wrap;
|
@@ -1693,103 +1722,103 @@
|
|
1693
1722
|
font-size: 12px;
|
1694
1723
|
background-color: #FFF;
|
1695
1724
|
color: #3ACB46; }
|
1696
|
-
.
|
1725
|
+
._style-module__assignedQuestions__1ONUt ._style-module__question__1lSOX {
|
1697
1726
|
min-width: 36px;
|
1698
1727
|
min-height: 22px;
|
1699
1728
|
padding: 4px; }
|
1700
1729
|
|
1701
|
-
.
|
1730
|
+
._style-module__wrapperContent__nPoR0 {
|
1702
1731
|
padding: 8px 0px; }
|
1703
1732
|
|
1704
|
-
.
|
1733
|
+
._style-module__content__2zmZn {
|
1705
1734
|
padding: 8px; }
|
1706
|
-
.
|
1735
|
+
._style-module__content__2zmZn ._style-module__contentColumn1__334SY {
|
1707
1736
|
border-right: 1px solid #97a1af;
|
1708
1737
|
padding: 11px 24px 8px 11px; }
|
1709
|
-
.
|
1738
|
+
._style-module__content__2zmZn ._style-module__contentColumn1__334SY div {
|
1710
1739
|
display: flex;
|
1711
1740
|
justify-content: center;
|
1712
1741
|
align-items: center;
|
1713
1742
|
gap: 4px;
|
1714
1743
|
min-width: 72px; }
|
1715
|
-
.
|
1744
|
+
._style-module__content__2zmZn ._style-module__contentColumn1__334SY div ._style-module__span1__3Lf-U {
|
1716
1745
|
font-family: "Pretendard";
|
1717
1746
|
font-weight: 600;
|
1718
1747
|
font-size: 12px;
|
1719
1748
|
color: "#414E62"; }
|
1720
|
-
.
|
1749
|
+
._style-module__content__2zmZn ._style-module__contentColumn1__334SY div ._style-module__span2__ZpMot {
|
1721
1750
|
font-family: "Pretendard";
|
1722
1751
|
font-weight: 600;
|
1723
1752
|
font-size: 12px;
|
1724
1753
|
color: #414E62; }
|
1725
|
-
.
|
1754
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l {
|
1726
1755
|
display: flex;
|
1727
1756
|
flex-direction: row;
|
1728
1757
|
padding-left: 16px;
|
1729
1758
|
gap: 16px; }
|
1730
|
-
.
|
1759
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l div {
|
1731
1760
|
display: flex;
|
1732
1761
|
flex-direction: column;
|
1733
1762
|
gap: 8px; }
|
1734
|
-
.
|
1763
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l div ._style-module__span1__3Lf-U {
|
1735
1764
|
font-family: "Pretendard";
|
1736
1765
|
font-size: 500px;
|
1737
1766
|
font-size: 12px;
|
1738
1767
|
color: #414e62; }
|
1739
|
-
.
|
1768
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l div ._style-module__span2__ZpMot {
|
1740
1769
|
font-family: "Pretendard";
|
1741
1770
|
font-size: 500px;
|
1742
1771
|
font-size: 12px;
|
1743
1772
|
color: #97a1af; }
|
1744
|
-
.
|
1773
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l ._style-module__duration__1kT28 {
|
1745
1774
|
font-family: "Pretendard";
|
1746
1775
|
font-weight: 600;
|
1747
1776
|
font-size: 12px;
|
1748
1777
|
color: #DB4D4D; }
|
1749
|
-
.
|
1778
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l ._style-module__topDuration__1fVRi {
|
1750
1779
|
font-family: "Pretendard";
|
1751
1780
|
font-weight: 500;
|
1752
1781
|
font-size: 12px;
|
1753
1782
|
color: #414e62; }
|
1754
|
-
.
|
1783
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l ._style-module__overallCorrectRate__3jLGe {
|
1755
1784
|
font-family: "Pretendard";
|
1756
1785
|
font-weight: 600;
|
1757
1786
|
font-size: 12px;
|
1758
1787
|
color: #18442A; }
|
1759
|
-
.
|
1788
|
+
._style-module__content__2zmZn ._style-module__contentColumn2__16P3l ._style-module__answer__VsZ0K {
|
1760
1789
|
font-family: "Pretendard";
|
1761
1790
|
font-weight: 500;
|
1762
1791
|
font-size: 12px;
|
1763
1792
|
color: #DB4D4D; }
|
1764
1793
|
|
1765
|
-
.
|
1794
|
+
._style-module__contentVulnerable__QxKMy {
|
1766
1795
|
padding: 8px; }
|
1767
1796
|
|
1768
|
-
.
|
1797
|
+
._style-module__wrappContentProblem__nnqpW {
|
1769
1798
|
padding: 10px 0px; }
|
1770
1799
|
|
1771
|
-
.
|
1800
|
+
._style-module__contentProblem__3Z1nV {
|
1772
1801
|
display: flex;
|
1773
1802
|
flex-direction: column;
|
1774
1803
|
padding: 12px 24px; }
|
1775
|
-
.
|
1804
|
+
._style-module__contentProblem__3Z1nV ._style-module__labelProblem__36Xpx {
|
1776
1805
|
display: flex;
|
1777
1806
|
align-items: center;
|
1778
1807
|
justify-content: space-between;
|
1779
1808
|
margin-bottom: 8px; }
|
1780
|
-
.
|
1809
|
+
._style-module__contentProblem__3Z1nV ._style-module__labelProblem__36Xpx ._style-module__name__3ZJQW {
|
1781
1810
|
font-family: "Pretendard";
|
1782
1811
|
font-weight: 500;
|
1783
1812
|
font-size: 12px;
|
1784
1813
|
color: #414E62; }
|
1785
|
-
.
|
1814
|
+
._style-module__contentProblem__3Z1nV ._style-module__labelProblem__36Xpx ._style-module__percent__2J3MK {
|
1786
1815
|
font-family: "Pretendard";
|
1787
1816
|
display: flex;
|
1788
1817
|
gap: 16px;
|
1789
1818
|
margin-right: 20px;
|
1790
1819
|
font-weight: 600;
|
1791
1820
|
font-size: 12px; }
|
1792
|
-
.
|
1821
|
+
._style-module__contentProblem__3Z1nV ._style-module__slider__1MPdO {
|
1793
1822
|
width: 100%;
|
1794
1823
|
height: 12px;
|
1795
1824
|
background-color: transparent;
|
@@ -1797,10 +1826,10 @@
|
|
1797
1826
|
border-radius: 12px;
|
1798
1827
|
padding: 1px 5px;
|
1799
1828
|
overflow-x: hidden; }
|
1800
|
-
.
|
1829
|
+
._style-module__contentProblem__3Z1nV ._style-module__slider__1MPdO > div {
|
1801
1830
|
position: relative;
|
1802
1831
|
height: 100%; }
|
1803
|
-
.
|
1832
|
+
._style-module__contentProblem__3Z1nV ._style-module__slider__1MPdO ._style-module__track__3CV_y {
|
1804
1833
|
width: 8px;
|
1805
1834
|
height: 8px;
|
1806
1835
|
background: #18442A;
|
@@ -1809,7 +1838,7 @@
|
|
1809
1838
|
top: 0;
|
1810
1839
|
transform: translateX(-50%); }
|
1811
1840
|
|
1812
|
-
.
|
1841
|
+
._style-module__noData___g-ff {
|
1813
1842
|
font-family: "Pretendard";
|
1814
1843
|
font-weight: 600;
|
1815
1844
|
display: flex;
|
@@ -1817,17 +1846,17 @@
|
|
1817
1846
|
align-items: center;
|
1818
1847
|
margin: 8px 0; }
|
1819
1848
|
|
1820
|
-
.
|
1849
|
+
._style-module__loading__3j485 {
|
1821
1850
|
height: calc(100vh - 72px); }
|
1822
1851
|
|
1823
|
-
.
|
1852
|
+
._style-module__table-responsive__2O6RX {
|
1824
1853
|
overflow-x: auto;
|
1825
1854
|
-webkit-overflow-scrolling: touch; }
|
1826
1855
|
|
1827
|
-
.
|
1856
|
+
._style-module__form-label__1RYOQ {
|
1828
1857
|
margin-bottom: 0.5rem; }
|
1829
1858
|
|
1830
|
-
.
|
1859
|
+
._style-module__form-control__3VRVT {
|
1831
1860
|
display: block;
|
1832
1861
|
width: 100%;
|
1833
1862
|
padding: 0.375rem 0.75rem;
|
@@ -1844,30 +1873,30 @@
|
|
1844
1873
|
border-radius: 0.375rem;
|
1845
1874
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
1846
1875
|
|
1847
|
-
.
|
1876
|
+
._style-module__form-label-dialog__3oCSh {
|
1848
1877
|
font-weight: 600 !important;
|
1849
1878
|
font-size: 13px !important;
|
1850
1879
|
line-height: 15.51px !important;
|
1851
1880
|
color: #202B37 !important; }
|
1852
1881
|
|
1853
|
-
.
|
1882
|
+
._style-module__btn-cancel__3USKq {
|
1854
1883
|
min-width: 120px !important;
|
1855
1884
|
padding: 12px !important;
|
1856
1885
|
border-radius: 6px !important;
|
1857
1886
|
background-color: transparent !important; }
|
1858
1887
|
|
1859
|
-
.
|
1888
|
+
._style-module__btn-register__3y_iD {
|
1860
1889
|
min-width: 120px !important;
|
1861
1890
|
padding: 12px !important;
|
1862
1891
|
border-radius: 6px !important; }
|
1863
1892
|
|
1864
|
-
.
|
1893
|
+
._style-module__pdfBtnBox__3xZHo p {
|
1865
1894
|
font-size: 13px;
|
1866
1895
|
font-weight: 700;
|
1867
1896
|
color: #6d6e6f;
|
1868
1897
|
margin: 0; }
|
1869
1898
|
|
1870
|
-
.
|
1899
|
+
._style-module__pdfBtnBox__3xZHo button {
|
1871
1900
|
border-radius: 6px;
|
1872
1901
|
padding: 8px 12px;
|
1873
1902
|
border: 1px solid #aeabac;
|
@@ -1877,12 +1906,12 @@
|
|
1877
1906
|
gap: 8px;
|
1878
1907
|
align-items: center; }
|
1879
1908
|
|
1880
|
-
.
|
1909
|
+
._style-module__pdfBtn__1DtWq {
|
1881
1910
|
display: flex;
|
1882
1911
|
justify-content: space-between;
|
1883
1912
|
line-height: 10.8px; }
|
1884
1913
|
|
1885
|
-
.
|
1914
|
+
._style-module__form-select__1a_vw {
|
1886
1915
|
display: block;
|
1887
1916
|
width: 100%;
|
1888
1917
|
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
|
@@ -1902,41 +1931,41 @@
|
|
1902
1931
|
border-radius: 0.375rem;
|
1903
1932
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
|
1904
1933
|
|
1905
|
-
.
|
1934
|
+
._style-module__loader__2uC7T {
|
1906
1935
|
display: flex;
|
1907
1936
|
align-items: end; }
|
1908
1937
|
|
1909
|
-
.
|
1938
|
+
._style-module__dot__Xz-Mr {
|
1910
1939
|
width: 6px;
|
1911
1940
|
height: 6px;
|
1912
1941
|
margin: 0 3px;
|
1913
1942
|
border-radius: 50%;
|
1914
1943
|
background-color: #ffffff;
|
1915
|
-
animation:
|
1944
|
+
animation: _style-module__bounce__3THgz 0.6s infinite alternate; }
|
1916
1945
|
|
1917
|
-
.
|
1946
|
+
._style-module__dot__Xz-Mr:nth-child(2) {
|
1918
1947
|
animation-delay: 0.2s; }
|
1919
1948
|
|
1920
|
-
.
|
1949
|
+
._style-module__dot__Xz-Mr:nth-child(3) {
|
1921
1950
|
animation-delay: 0.4s; }
|
1922
1951
|
|
1923
|
-
@keyframes
|
1952
|
+
@keyframes _style-module__bounce__3THgz {
|
1924
1953
|
0% {
|
1925
1954
|
transform: translateY(-4px); }
|
1926
1955
|
100% {
|
1927
1956
|
transform: translateY(-8px); } }
|
1928
1957
|
|
1929
|
-
.
|
1958
|
+
._printStyle-module__page-break__35kyG {
|
1930
1959
|
page-break-before: always; }
|
1931
1960
|
|
1932
|
-
.
|
1961
|
+
._printStyle-module__print-exact-color__1PFgl {
|
1933
1962
|
print-color-adjust: exact; }
|
1934
1963
|
|
1935
|
-
.
|
1964
|
+
._printStyle-module__avoid-break-inside__3rPGh {
|
1936
1965
|
page-break-inside: avoid; }
|
1937
1966
|
|
1938
1967
|
@charset "UTF-8";
|
1939
|
-
.
|
1968
|
+
._styles-module__drawer__1k4kj {
|
1940
1969
|
width: 70vw;
|
1941
1970
|
height: calc(100dvh - 78px);
|
1942
1971
|
position: fixed;
|
@@ -1944,10 +1973,10 @@
|
|
1944
1973
|
bottom: 0;
|
1945
1974
|
z-index: 99;
|
1946
1975
|
transition: right 0.3s ease-in-out; }
|
1947
|
-
.
|
1976
|
+
._styles-module__drawer__1k4kj._styles-module__open__IB2-g {
|
1948
1977
|
right: 0; }
|
1949
1978
|
|
1950
|
-
.
|
1979
|
+
._styles-module__drawer-overlay__xnHGE {
|
1951
1980
|
width: 100vw;
|
1952
1981
|
height: 100dvh;
|
1953
1982
|
background-color: rgba(0, 0, 0, 0);
|
@@ -1956,26 +1985,26 @@
|
|
1956
1985
|
bottom: 0;
|
1957
1986
|
transition: background-color 0.1s 0.2s ease-in-out;
|
1958
1987
|
z-index: -1; }
|
1959
|
-
.
|
1988
|
+
._styles-module__drawer-overlay__xnHGE._styles-module__open__IB2-g {
|
1960
1989
|
background-color: rgba(0, 0, 0, 0.3);
|
1961
1990
|
z-index: 98; }
|
1962
1991
|
|
1963
|
-
.
|
1992
|
+
._styles-module__drawer-header__1gLOh {
|
1964
1993
|
background: #F9FAFB;
|
1965
1994
|
border-bottom: 1px solid #E4E7EC;
|
1966
1995
|
padding: 1rem 1.5rem; }
|
1967
|
-
.
|
1996
|
+
._styles-module__drawer-header__1gLOh button {
|
1968
1997
|
padding: 0.5rem 1rem; }
|
1969
|
-
.
|
1998
|
+
._styles-module__drawer-header__1gLOh button span {
|
1970
1999
|
font-size: 13px;
|
1971
2000
|
font-weight: 700; }
|
1972
2001
|
|
1973
|
-
.
|
2002
|
+
._styles-module__drawer-form__2pLGg {
|
1974
2003
|
height: calc(100% - 70.5px);
|
1975
2004
|
padding: 1rem 1.5rem 2rem;
|
1976
2005
|
overflow-y: auto; }
|
1977
2006
|
|
1978
|
-
.
|
2007
|
+
._styles-module__dropdown-content-academy__1rR7s {
|
1979
2008
|
width: 100%;
|
1980
2009
|
top: calc(100% + 4px) !important;
|
1981
2010
|
left: unset !important;
|
@@ -1985,29 +2014,29 @@
|
|
1985
2014
|
box-shadow: 0px 8px 15px #989898;
|
1986
2015
|
border: none;
|
1987
2016
|
padding: 0 8px; }
|
1988
|
-
.
|
2017
|
+
._styles-module__dropdown-content-academy__1rR7s:after {
|
1989
2018
|
display: none; }
|
1990
|
-
.
|
2019
|
+
._styles-module__dropdown-content-academy__1rR7s ._styles-module__dropdown-change__1Hcs4 {
|
1991
2020
|
background: transparent; }
|
1992
2021
|
|
1993
|
-
.
|
2022
|
+
._styles-module__btn-register__37IIN {
|
1994
2023
|
min-width: 120px !important;
|
1995
2024
|
padding: 12px !important;
|
1996
2025
|
border-radius: 6px !important; }
|
1997
2026
|
|
1998
|
-
.
|
2027
|
+
._styles-module__btn-cancel__KDkNh {
|
1999
2028
|
min-width: 120px !important;
|
2000
2029
|
padding: 12px !important;
|
2001
2030
|
border-radius: 6px !important;
|
2002
2031
|
background-color: transparent !important; }
|
2003
2032
|
|
2004
|
-
.
|
2033
|
+
._styles-module__dropdown-academy-item__1-srV {
|
2005
2034
|
font-size: 14px;
|
2006
2035
|
line-height: 1; }
|
2007
|
-
.
|
2036
|
+
._styles-module__dropdown-academy-item__1-srV:active {
|
2008
2037
|
background-color: transparent !important; }
|
2009
2038
|
|
2010
|
-
.
|
2039
|
+
._styles-module__dropdown-content-language__88rAE {
|
2011
2040
|
width: 210px;
|
2012
2041
|
top: 40px !important;
|
2013
2042
|
left: -80px !important;
|
@@ -2016,32 +2045,32 @@
|
|
2016
2045
|
box-shadow: 0px 8px 15px #989898;
|
2017
2046
|
border: none;
|
2018
2047
|
padding: 0 8px; }
|
2019
|
-
.
|
2048
|
+
._styles-module__dropdown-content-language__88rAE:after {
|
2020
2049
|
display: none; }
|
2021
|
-
.
|
2050
|
+
._styles-module__dropdown-content-language__88rAE ._styles-module__dropdown-change__1Hcs4 {
|
2022
2051
|
background: transparent; }
|
2023
2052
|
|
2024
|
-
.
|
2053
|
+
._styles-module__dropdown-item-language__2jjUW {
|
2025
2054
|
color: #242424;
|
2026
2055
|
display: flex;
|
2027
2056
|
padding: 8px;
|
2028
2057
|
border-radius: 6px; }
|
2029
|
-
.
|
2058
|
+
._styles-module__dropdown-item-language__2jjUW:hover {
|
2030
2059
|
background-color: #f1faff; }
|
2031
2060
|
|
2032
|
-
.
|
2061
|
+
._styles-module__dropdown-item-language-active__27lik {
|
2033
2062
|
background-color: #f1faff; }
|
2034
2063
|
|
2035
|
-
.
|
2064
|
+
._styles-module__item-address__tGib4 {
|
2036
2065
|
font-weight: 600;
|
2037
2066
|
border-top: 1px solid #27347d29;
|
2038
2067
|
padding-top: 10px; }
|
2039
|
-
.
|
2068
|
+
._styles-module__item-address__tGib4._styles-module__item-logout__1MXIb {
|
2040
2069
|
color: #8b0000; }
|
2041
|
-
.
|
2070
|
+
._styles-module__item-address__tGib4 ._styles-module__title-address__A_I15 {
|
2042
2071
|
margin-right: 12px; }
|
2043
2072
|
|
2044
|
-
.
|
2073
|
+
._styles-module__image-academy__3zxbi {
|
2045
2074
|
width: 40px;
|
2046
2075
|
height: 40px;
|
2047
2076
|
border-radius: 50%;
|
@@ -2053,7 +2082,7 @@
|
|
2053
2082
|
font-weight: 600;
|
2054
2083
|
line-height: 1;
|
2055
2084
|
color: #FFF; }
|
2056
|
-
.
|
2085
|
+
._styles-module__image-academy__3zxbi img {
|
2057
2086
|
width: 100%;
|
2058
2087
|
height: 100%;
|
2059
2088
|
border-radius: 50%;
|
@@ -2061,24 +2090,24 @@
|
|
2061
2090
|
object-fit: cover;
|
2062
2091
|
border: 1px solid #DFE3E8; }
|
2063
2092
|
|
2064
|
-
.
|
2093
|
+
._styles-module__slick-dots__VlpW7 li {
|
2065
2094
|
display: inline-block;
|
2066
2095
|
margin: 0 5px;
|
2067
2096
|
padding: 0; }
|
2068
2097
|
|
2069
|
-
.
|
2098
|
+
._styles-module__slick-dots__VlpW7 li, ._styles-module__slick-dots__VlpW7 li button {
|
2070
2099
|
cursor: pointer;
|
2071
2100
|
height: 20px;
|
2072
2101
|
width: 20px; }
|
2073
2102
|
|
2074
|
-
.
|
2103
|
+
._styles-module__slick-dots__VlpW7 li button {
|
2075
2104
|
border: 0;
|
2076
2105
|
display: block;
|
2077
2106
|
font-size: 0;
|
2078
2107
|
line-height: 0;
|
2079
2108
|
padding: 5px; }
|
2080
2109
|
|
2081
|
-
.
|
2110
|
+
._styles-module__slick-dots__VlpW7 li button:before {
|
2082
2111
|
color: #000;
|
2083
2112
|
content: "\2022";
|
2084
2113
|
font-size: 6px;
|
@@ -2091,11 +2120,11 @@
|
|
2091
2120
|
top: 0;
|
2092
2121
|
width: 20px; }
|
2093
2122
|
|
2094
|
-
.
|
2123
|
+
._styles-module__slick-dots__VlpW7 li._styles-module__slick-active__1zzu9 button:before {
|
2095
2124
|
color: #000;
|
2096
2125
|
opacity: .75; }
|
2097
2126
|
|
2098
|
-
.
|
2127
|
+
._styles-module__slider-container__1lCoM {
|
2099
2128
|
min-height: 0;
|
2100
2129
|
min-width: 0;
|
2101
2130
|
padding: 20px; }
|
@@ -2105,7 +2134,7 @@ h3 {
|
|
2105
2134
|
margin: 10px;
|
2106
2135
|
padding: 2% 0; }
|
2107
2136
|
|
2108
|
-
.
|
2137
|
+
._styles-module__button___sLSD {
|
2109
2138
|
border-radius: 5px;
|
2110
2139
|
cursor: pointer;
|
2111
2140
|
display: inline-block;
|
@@ -2114,39 +2143,39 @@ h3 {
|
|
2114
2143
|
padding: 1em;
|
2115
2144
|
width: auto; }
|
2116
2145
|
|
2117
|
-
.
|
2146
|
+
._styles-module__button___sLSD, ._styles-module__variable-width__1AnqW ._styles-module__slick-slide__3ZJaN p {
|
2118
2147
|
font-family: verdana; }
|
2119
2148
|
|
2120
|
-
.
|
2149
|
+
._styles-module__variable-width__1AnqW ._styles-module__slick-slide__3ZJaN p {
|
2121
2150
|
height: 100px;
|
2122
2151
|
margin: 5px; }
|
2123
2152
|
|
2124
|
-
.
|
2153
|
+
._styles-module__center__jUOZF ._styles-module__slick-center__35s6t h3 {
|
2125
2154
|
color: #e67e22;
|
2126
2155
|
opacity: 1;
|
2127
2156
|
transform: scale(1.08); }
|
2128
2157
|
|
2129
|
-
.
|
2158
|
+
._styles-module__center__jUOZF h3 {
|
2130
2159
|
opacity: .8;
|
2131
2160
|
transition: .3s; }
|
2132
2161
|
|
2133
|
-
.
|
2162
|
+
._styles-module__content__1dQdx {
|
2134
2163
|
margin: auto;
|
2135
2164
|
padding: 20px;
|
2136
2165
|
width: 90%; }
|
2137
2166
|
|
2138
|
-
.
|
2167
|
+
._styles-module__slick-slide__3ZJaN ._styles-module__image__1feWs {
|
2139
2168
|
padding: 10px; }
|
2140
2169
|
|
2141
|
-
.
|
2170
|
+
._styles-module__slick-slide__3ZJaN img {
|
2142
2171
|
border: 5px solid #fff;
|
2143
2172
|
display: block;
|
2144
2173
|
margin: auto; }
|
2145
2174
|
|
2146
|
-
.
|
2175
|
+
._styles-module__slick-slide__3ZJaN img._styles-module__slick-loading__FchLZ {
|
2147
2176
|
border: 0; }
|
2148
2177
|
|
2149
|
-
.
|
2178
|
+
._styles-module__slick-slider__1T7zW {
|
2150
2179
|
-webkit-touch-callout: none;
|
2151
2180
|
touch-action: pan-y;
|
2152
2181
|
-webkit-user-select: none;
|
@@ -2155,93 +2184,93 @@ h3 {
|
|
2155
2184
|
-khtml-user-select: none;
|
2156
2185
|
margin: 30px auto 50px; }
|
2157
2186
|
|
2158
|
-
.
|
2187
|
+
._styles-module__slick-dots__VlpW7 {
|
2159
2188
|
margin-left: 0; }
|
2160
2189
|
|
2161
|
-
.
|
2190
|
+
._styles-module__slick-dots__VlpW7 li button:before, ._styles-module__slick-dots__VlpW7 li._styles-module__slick-active__1zzu9 button:before {
|
2162
2191
|
color: var(--ifm-color-primary) !important; }
|
2163
2192
|
|
2164
|
-
.
|
2193
|
+
._styles-module__slick-thumb__o2Tkt {
|
2165
2194
|
bottom: -45px; }
|
2166
2195
|
|
2167
|
-
.
|
2196
|
+
._styles-module__slick-thumb__o2Tkt li {
|
2168
2197
|
height: 45px;
|
2169
2198
|
width: 60px; }
|
2170
2199
|
|
2171
|
-
.
|
2200
|
+
._styles-module__slick-thumb__o2Tkt li img {
|
2172
2201
|
filter: grayscale(100%); }
|
2173
2202
|
|
2174
|
-
.
|
2203
|
+
._styles-module__slick-thumb__o2Tkt li._styles-module__slick-active__1zzu9 img {
|
2175
2204
|
filter: grayscale(0); }
|
2176
2205
|
|
2177
|
-
.
|
2206
|
+
._styles-module__slides__1FY2k ._styles-module__slick-next__23Pi9, ._styles-module__slides__1FY2k ._styles-module__slick-prev__2g2iD {
|
2178
2207
|
position: absolute;
|
2179
2208
|
top: 50%;
|
2180
2209
|
z-index: 1; }
|
2181
2210
|
|
2182
|
-
.
|
2211
|
+
._styles-module__heroBanner_qdFl__2y7lQ {
|
2183
2212
|
overflow: hidden;
|
2184
2213
|
padding: 4rem 0;
|
2185
2214
|
text-align: center; }
|
2186
2215
|
|
2187
|
-
.
|
2216
|
+
._styles-module__buttons_AeoN__KMW2P {
|
2188
2217
|
align-items: center;
|
2189
2218
|
display: flex; }
|
2190
2219
|
|
2191
|
-
.
|
2220
|
+
._styles-module__buttons_AeoN__KMW2P, ._styles-module__mdxPageWrapper_j9I6__3dqhE {
|
2192
2221
|
justify-content: center; }
|
2193
2222
|
|
2194
2223
|
@media (min-width: 997px) {
|
2195
|
-
.
|
2224
|
+
._styles-module__collapseSidebarButton_PEFL__24wBH, ._styles-module__expandButton_TmdG__2LXBj {
|
2196
2225
|
background-color: var(--docusaurus-collapse-button-bg); }
|
2197
2226
|
:root {
|
2198
2227
|
--docusaurus-announcement-bar-height: 30px
|
2199
2228
|
; }
|
2200
|
-
.
|
2229
|
+
._styles-module__announcementBarClose_gvF7__32uEE, ._styles-module__announcementBarPlaceholder_vyr4__2PagL {
|
2201
2230
|
flex-basis: 50px; }
|
2202
|
-
.
|
2231
|
+
._styles-module__navbarSearchContainer_Bca1__3Uiqm {
|
2203
2232
|
padding: var(--ifm-navbar-item-padding-vertical) var(--ifm-navbar-item-padding-horizontal); }
|
2204
|
-
.
|
2233
|
+
._styles-module__lastUpdated_vwxv__1UNOJ {
|
2205
2234
|
text-align: right; }
|
2206
|
-
.
|
2235
|
+
._styles-module__tocMobile_ITEo__qcGlb {
|
2207
2236
|
display: none; }
|
2208
|
-
.
|
2237
|
+
._styles-module__collapseSidebarButton_PEFL__24wBH {
|
2209
2238
|
border: 1px solid var(--ifm-toc-border-color);
|
2210
2239
|
border-radius: 0;
|
2211
2240
|
bottom: 0;
|
2212
2241
|
display: block !important;
|
2213
2242
|
height: 40px;
|
2214
2243
|
position: sticky; }
|
2215
|
-
.
|
2244
|
+
._styles-module__collapseSidebarButtonIcon_kv0___2G6Hz {
|
2216
2245
|
margin-top: 4px;
|
2217
2246
|
transform: rotate(180deg); }
|
2218
|
-
.
|
2247
|
+
._styles-module__expandButtonIcon_i1dp__1IMu8, [dir=rtl] ._styles-module__collapseSidebarButtonIcon_kv0___2G6Hz {
|
2219
2248
|
transform: rotate(0); }
|
2220
|
-
.
|
2249
|
+
._styles-module__collapseSidebarButton_PEFL__24wBH:focus, ._styles-module__collapseSidebarButton_PEFL__24wBH:hover, ._styles-module__expandButton_TmdG__2LXBj:focus, ._styles-module__expandButton_TmdG__2LXBj:hover {
|
2221
2250
|
background-color: var(--docusaurus-collapse-button-bg-hover); }
|
2222
|
-
.
|
2251
|
+
._styles-module__menuHtmlItem_M9Kj__1YUka {
|
2223
2252
|
padding: var(--ifm-menu-link-padding-vertical) var(--ifm-menu-link-padding-horizontal); }
|
2224
|
-
.
|
2253
|
+
._styles-module__menu_SIkG__FgMDa {
|
2225
2254
|
flex-grow: 1;
|
2226
2255
|
padding: .5rem; }
|
2227
2256
|
@supports (scrollbar-gutter: stable) {
|
2228
|
-
.
|
2257
|
+
._styles-module__menu_SIkG__FgMDa {
|
2229
2258
|
padding: .5rem 0 .5rem .5rem;
|
2230
2259
|
scrollbar-gutter: stable; } }
|
2231
|
-
.
|
2260
|
+
._styles-module__menuWithAnnouncementBar_GW3s__zUamI {
|
2232
2261
|
margin-bottom: var(--docusaurus-announcement-bar-height); }
|
2233
|
-
.
|
2262
|
+
._styles-module__sidebar_njMd__3E4Oo {
|
2234
2263
|
display: flex;
|
2235
2264
|
flex-direction: column;
|
2236
2265
|
height: 100%;
|
2237
2266
|
padding-top: var(--ifm-navbar-height);
|
2238
2267
|
width: var(--doc-sidebar-width); }
|
2239
|
-
.
|
2268
|
+
._styles-module__sidebarWithHideableNavbar_wUlq__3xviA {
|
2240
2269
|
padding-top: 0; }
|
2241
|
-
.
|
2270
|
+
._styles-module__sidebarHidden_VK0M__cWHWX {
|
2242
2271
|
opacity: 0;
|
2243
2272
|
visibility: hidden; }
|
2244
|
-
.
|
2273
|
+
._styles-module__sidebarLogo_isFc__UMHGX {
|
2245
2274
|
align-items: center;
|
2246
2275
|
color: inherit !important;
|
2247
2276
|
display: flex !important;
|
@@ -2249,10 +2278,10 @@ h3 {
|
|
2249
2278
|
max-height: var(--ifm-navbar-height);
|
2250
2279
|
min-height: var(--ifm-navbar-height);
|
2251
2280
|
text-decoration: none !important; }
|
2252
|
-
.
|
2281
|
+
._styles-module__sidebarLogo_isFc__UMHGX img {
|
2253
2282
|
height: 2rem;
|
2254
2283
|
margin-right: .5rem; }
|
2255
|
-
.
|
2284
|
+
._styles-module__expandButton_TmdG__2LXBj {
|
2256
2285
|
align-items: center;
|
2257
2286
|
display: flex;
|
2258
2287
|
height: 100%;
|
@@ -2262,9 +2291,9 @@ h3 {
|
|
2262
2291
|
top: 0;
|
2263
2292
|
transition: background-color var(--ifm-transition-fast) ease;
|
2264
2293
|
width: 100%; }
|
2265
|
-
[dir=rtl] .
|
2294
|
+
[dir=rtl] ._styles-module__expandButtonIcon_i1dp__1IMu8 {
|
2266
2295
|
transform: rotate(180deg); }
|
2267
|
-
.
|
2296
|
+
._styles-module__docSidebarContainer_YfHR__1SwXt {
|
2268
2297
|
border-right: 1px solid var(--ifm-toc-border-color);
|
2269
2298
|
clip-path: inset(0);
|
2270
2299
|
display: block;
|
@@ -2272,107 +2301,107 @@ h3 {
|
|
2272
2301
|
transition: width var(--ifm-transition-fast) ease;
|
2273
2302
|
width: var(--doc-sidebar-width);
|
2274
2303
|
will-change: width; }
|
2275
|
-
.
|
2304
|
+
._styles-module__docSidebarContainerHidden_DPk8__3h6KW {
|
2276
2305
|
cursor: pointer;
|
2277
2306
|
width: var(--doc-sidebar-hidden-width); }
|
2278
|
-
.
|
2307
|
+
._styles-module__sidebarViewport_aRkj__2OCK_ {
|
2279
2308
|
height: 100%;
|
2280
2309
|
max-height: 100vh;
|
2281
2310
|
position: sticky;
|
2282
2311
|
top: 0; }
|
2283
|
-
.
|
2312
|
+
._styles-module__docMainContainer_TBSr__FuxZS {
|
2284
2313
|
flex-grow: 1;
|
2285
2314
|
max-width: calc(100% - var(--doc-sidebar-width)); }
|
2286
|
-
.
|
2315
|
+
._styles-module__docMainContainerEnhanced_lQrH__ZUdP4 {
|
2287
2316
|
max-width: calc(100% - var(--doc-sidebar-hidden-width)); }
|
2288
|
-
.
|
2317
|
+
._styles-module__docItemWrapperEnhanced_JWYK__2AmPG {
|
2289
2318
|
max-width: calc(var(--ifm-container-width) + var(--doc-sidebar-width)) !important; }
|
2290
|
-
.
|
2319
|
+
._styles-module__docItemCol_VOVn__3GmBr {
|
2291
2320
|
max-width: 75% !important; } }
|
2292
2321
|
|
2293
2322
|
@media (min-width: 1440px) {
|
2294
|
-
.
|
2323
|
+
._styles-module__container__1UB4R {
|
2295
2324
|
max-width: var(--ifm-container-width-xl); } }
|
2296
2325
|
|
2297
2326
|
@media (max-width: 996px) {
|
2298
|
-
.
|
2327
|
+
._styles-module__col__csNus {
|
2299
2328
|
--ifm-col-width:100%;
|
2300
2329
|
flex-basis: var(--ifm-col-width);
|
2301
2330
|
margin-left: 0; }
|
2302
|
-
.
|
2331
|
+
._styles-module__footer__gceZJ {
|
2303
2332
|
--ifm-footer-padding-horizontal: 0
|
2304
2333
|
; }
|
2305
|
-
.
|
2334
|
+
._styles-module__colorModeToggle_DEke__OawS_, ._styles-module__footer__link-separator__3fzLh, ._styles-module__navbar__item__1wyV6, ._styles-module__tableOfContents_bqdL__3tGM4 {
|
2306
2335
|
display: none; }
|
2307
|
-
.
|
2336
|
+
._styles-module__footer__col__3DllA {
|
2308
2337
|
margin-bottom: calc(var(--ifm-spacing-vertical)*3); }
|
2309
|
-
.
|
2338
|
+
._styles-module__footer__link-item__2ibTz {
|
2310
2339
|
display: block; }
|
2311
|
-
.
|
2340
|
+
._styles-module__hero__369-d {
|
2312
2341
|
padding-left: 0;
|
2313
2342
|
padding-right: 0; }
|
2314
|
-
.
|
2343
|
+
._styles-module__navbar__5LWZt > ._styles-module__container__1UB4R, ._styles-module__navbar__5LWZt > ._styles-module__container-fluid__2GcNI {
|
2315
2344
|
padding: 0; }
|
2316
|
-
.
|
2345
|
+
._styles-module__navbar__toggle__2YjZl {
|
2317
2346
|
display: inherit; }
|
2318
|
-
.
|
2347
|
+
._styles-module__navbar__search-input__3__u0 {
|
2319
2348
|
width: 9rem; }
|
2320
|
-
.
|
2349
|
+
._styles-module__pills--block__2f7GT, ._styles-module__tabs--block__3xrdo {
|
2321
2350
|
flex-direction: column; }
|
2322
|
-
.
|
2351
|
+
._styles-module__navbarSearchContainer_Bca1__3Uiqm {
|
2323
2352
|
position: absolute;
|
2324
2353
|
right: var(--ifm-navbar-padding-horizontal); }
|
2325
|
-
.
|
2354
|
+
._styles-module__docItemContainer_F8PC__6P_Dr {
|
2326
2355
|
padding: 0 .3rem; } }
|
2327
2356
|
|
2328
2357
|
@media screen and (max-width: 996px) {
|
2329
|
-
.
|
2358
|
+
._styles-module__heroBanner_qdFl__2y7lQ {
|
2330
2359
|
padding: 2rem; } }
|
2331
2360
|
|
2332
2361
|
@media (max-width: 768px) {
|
2333
2362
|
h3 {
|
2334
2363
|
font-size: 24px;
|
2335
2364
|
padding: 0; }
|
2336
|
-
.
|
2365
|
+
._styles-module__center__jUOZF {
|
2337
2366
|
margin-left: -40px;
|
2338
2367
|
margin-right: -40px; }
|
2339
|
-
.
|
2368
|
+
._styles-module__center__jUOZF ._styles-module__slick-center__35s6t h3 {
|
2340
2369
|
color: #e67e22;
|
2341
2370
|
opacity: 1;
|
2342
2371
|
transform: scale(1); }
|
2343
|
-
.
|
2372
|
+
._styles-module__center__jUOZF h3 {
|
2344
2373
|
opacity: .8;
|
2345
2374
|
transform: scale(0.95);
|
2346
2375
|
transition: .3s; } }
|
2347
2376
|
|
2348
2377
|
@media (max-width: 576px) {
|
2349
|
-
.
|
2378
|
+
._styles-module__markdown__2xZt0 h1:first-child {
|
2350
2379
|
--ifm-h1-font-size:2rem
|
2351
2380
|
; }
|
2352
|
-
.
|
2381
|
+
._styles-module__markdown__2xZt0 > h2 {
|
2353
2382
|
--ifm-h2-font-size: 1.5rem
|
2354
2383
|
; }
|
2355
|
-
.
|
2384
|
+
._styles-module__markdown__2xZt0 > h3 {
|
2356
2385
|
--ifm-h3-font-size: 1.25rem
|
2357
2386
|
; } }
|
2358
2387
|
|
2359
2388
|
@media (hover: hover) {
|
2360
|
-
.
|
2389
|
+
._styles-module__backToTopButton_sjWU__2bUwo:hover {
|
2361
2390
|
background-color: var(--ifm-color-emphasis-300); } }
|
2362
2391
|
|
2363
2392
|
@media (pointer: fine) {
|
2364
|
-
.
|
2393
|
+
._styles-module__thin-scrollbar__1mrmJ {
|
2365
2394
|
scrollbar-width: thin; }
|
2366
|
-
.
|
2395
|
+
._styles-module__thin-scrollbar__1mrmJ::-webkit-scrollbar {
|
2367
2396
|
height: var(--ifm-scrollbar-size);
|
2368
2397
|
width: var(--ifm-scrollbar-size); }
|
2369
|
-
.
|
2398
|
+
._styles-module__thin-scrollbar__1mrmJ::-webkit-scrollbar-track {
|
2370
2399
|
background: var(--ifm-scrollbar-track-background-color);
|
2371
2400
|
border-radius: 10px; }
|
2372
|
-
.
|
2401
|
+
._styles-module__thin-scrollbar__1mrmJ::-webkit-scrollbar-thumb {
|
2373
2402
|
background: var(--ifm-scrollbar-thumb-background-color);
|
2374
2403
|
border-radius: 10px; }
|
2375
|
-
.
|
2404
|
+
._styles-module__thin-scrollbar__1mrmJ::-webkit-scrollbar-thumb:hover {
|
2376
2405
|
background: var(--ifm-scrollbar-thumb-hover-background-color); } }
|
2377
2406
|
|
2378
2407
|
@media (prefers-reduced-motion: reduce) {
|
@@ -2382,14 +2411,14 @@ h3 {
|
|
2382
2411
|
; } }
|
2383
2412
|
|
2384
2413
|
@media print {
|
2385
|
-
.
|
2414
|
+
._styles-module__announcementBar_mb4j__2oveE, ._styles-module__footer__gceZJ, ._styles-module__menu__14IWx, ._styles-module__navbar__5LWZt, ._styles-module__pagination-nav__3S8xG, ._styles-module__table-of-contents__SnjS9, ._styles-module__tocMobile_ITEo__qcGlb {
|
2386
2415
|
display: none; }
|
2387
|
-
.
|
2416
|
+
._styles-module__tabs__qpa-q {
|
2388
2417
|
page-break-inside: avoid; }
|
2389
|
-
.
|
2418
|
+
._styles-module__codeBlockLines_e6Vv__2ou2J {
|
2390
2419
|
white-space: pre-wrap; } }
|
2391
2420
|
|
2392
|
-
.
|
2421
|
+
._style-module__action-btn__1jXbz {
|
2393
2422
|
border-radius: 50%;
|
2394
2423
|
width: 36px;
|
2395
2424
|
height: 36px;
|
@@ -2397,16 +2426,16 @@ h3 {
|
|
2397
2426
|
justify-content: center;
|
2398
2427
|
align-items: center;
|
2399
2428
|
margin-inline: 0.25rem; }
|
2400
|
-
.
|
2429
|
+
._style-module__action-btn__1jXbz svg {
|
2401
2430
|
width: 0.75rem; }
|
2402
|
-
.
|
2431
|
+
._style-module__action-btn--pencil__at4xP {
|
2403
2432
|
stroke: #FFF;
|
2404
2433
|
width: 1rem !important; }
|
2405
2434
|
|
2406
|
-
.
|
2435
|
+
._style-module__icon-rotate-180__12gv9 {
|
2407
2436
|
transform: rotate(180deg); }
|
2408
2437
|
|
2409
|
-
.
|
2438
|
+
._style-module__drop-area__R4bn5 {
|
2410
2439
|
border: 1px dashed #DDD;
|
2411
2440
|
border-radius: 0.5rem;
|
2412
2441
|
height: 200px;
|
@@ -2414,187 +2443,44 @@ h3 {
|
|
2414
2443
|
justify-content: center;
|
2415
2444
|
align-items: center;
|
2416
2445
|
cursor: pointer; }
|
2417
|
-
.
|
2446
|
+
._style-module__drop-area__R4bn5 input {
|
2418
2447
|
width: 100%;
|
2419
2448
|
height: 100%; }
|
2420
2449
|
|
2421
|
-
.
|
2450
|
+
._styles-module__question__2uc_W {
|
2422
2451
|
padding: 0.5rem 1.5rem;
|
2423
2452
|
border-radius: 6px;
|
2424
2453
|
border: 1px solid #EBEBFF; }
|
2425
|
-
.
|
2454
|
+
._styles-module__question-article__2p7kY {
|
2426
2455
|
font-weight: 700;
|
2427
2456
|
font-size: 14px; }
|
2428
|
-
.
|
2457
|
+
._styles-module__question-title__2tHmc {
|
2429
2458
|
font-weight: 700;
|
2430
2459
|
font-size: 14px;
|
2431
2460
|
color: #414E62; }
|
2432
2461
|
|
2433
|
-
.
|
2434
|
-
.
|
2462
|
+
._styles-module__question-label__26ATj > span:last-child,
|
2463
|
+
._styles-module__question-label__26ATj {
|
2435
2464
|
font-weight: 600 !important;
|
2436
2465
|
font-size: 13px !important;
|
2437
2466
|
color: #202B37 !important; }
|
2438
2467
|
|
2439
|
-
.
|
2468
|
+
._styles-module__question-input__3R8PR {
|
2440
2469
|
font-weight: 600;
|
2441
2470
|
font-size: 13px;
|
2442
2471
|
border: 1px solid #97A1AF;
|
2443
2472
|
padding: 12px; }
|
2444
|
-
.
|
2473
|
+
._styles-module__question-input__3R8PR:focus {
|
2445
2474
|
box-shadow: none; }
|
2446
2475
|
|
2447
|
-
.
|
2476
|
+
._styles-module__question-btn__1VZac:hover {
|
2448
2477
|
color: #FFF; }
|
2449
2478
|
|
2450
|
-
.
|
2451
|
-
width: 70vw;
|
2452
|
-
height: calc(100dvh - 78px);
|
2453
|
-
position: fixed;
|
2454
|
-
right: -100%;
|
2455
|
-
bottom: 0;
|
2456
|
-
z-index: 99;
|
2457
|
-
transition: right 0.3s ease-in-out; }
|
2458
|
-
._11aYm._3Ydwm {
|
2459
|
-
right: 0; }
|
2460
|
-
|
2461
|
-
._3SQDf {
|
2462
|
-
width: 100vw;
|
2463
|
-
height: 100vh;
|
2464
|
-
background-color: rgba(0, 0, 0, 0);
|
2465
|
-
position: fixed;
|
2466
|
-
right: 0;
|
2467
|
-
bottom: 0;
|
2468
|
-
transition: background-color 0.1s 0.2s ease-in-out;
|
2469
|
-
z-index: -1; }
|
2470
|
-
._3SQDf._3Ydwm {
|
2471
|
-
background-color: rgba(0, 0, 0, 0.3);
|
2472
|
-
z-index: 98; }
|
2473
|
-
|
2474
|
-
._2BwOx {
|
2475
|
-
background: #F9FAFB;
|
2476
|
-
border-bottom: 1px solid #E4E7EC;
|
2477
|
-
padding: 1rem 1.5rem; }
|
2478
|
-
._2BwOx button {
|
2479
|
-
padding: 0.5rem 1rem; }
|
2480
|
-
._2BwOx button span {
|
2481
|
-
font-size: 13px;
|
2482
|
-
font-weight: 700; }
|
2483
|
-
|
2484
|
-
._2Zo7R {
|
2485
|
-
height: calc(100% - 70.5px);
|
2486
|
-
padding: 1rem 1.5rem 2rem;
|
2487
|
-
overflow-y: auto; }
|
2488
|
-
|
2489
|
-
._1lzjD {
|
2490
|
-
width: 100%;
|
2491
|
-
top: calc(100% + 4px) !important;
|
2492
|
-
left: unset !important;
|
2493
|
-
right: 0 !important;
|
2494
|
-
transform: none !important;
|
2495
|
-
border-radius: 6px;
|
2496
|
-
box-shadow: 0px 8px 15px #989898;
|
2497
|
-
border: none;
|
2498
|
-
padding: 0 8px; }
|
2499
|
-
._1lzjD:after {
|
2500
|
-
display: none; }
|
2501
|
-
._1lzjD ._1y7K9 {
|
2502
|
-
background: transparent; }
|
2503
|
-
|
2504
|
-
._1Y-55 {
|
2505
|
-
font-size: 14px;
|
2506
|
-
line-height: 1; }
|
2507
|
-
._1Y-55:active {
|
2508
|
-
background-color: transparent !important; }
|
2509
|
-
|
2510
|
-
._1fBXY {
|
2511
|
-
width: 210px;
|
2512
|
-
top: 40px !important;
|
2513
|
-
left: -80px !important;
|
2514
|
-
transform: none !important;
|
2515
|
-
border-radius: 6px;
|
2516
|
-
box-shadow: 0px 8px 15px #989898;
|
2517
|
-
border: none;
|
2518
|
-
padding: 0 8px; }
|
2519
|
-
._1fBXY:after {
|
2520
|
-
display: none; }
|
2521
|
-
._1fBXY ._1y7K9 {
|
2522
|
-
background: transparent; }
|
2523
|
-
|
2524
|
-
._3Szun {
|
2525
|
-
color: #242424;
|
2526
|
-
display: flex;
|
2527
|
-
padding: 8px;
|
2528
|
-
border-radius: 6px; }
|
2529
|
-
._3Szun:hover {
|
2530
|
-
background-color: #f1faff; }
|
2531
|
-
|
2532
|
-
._2HhLb {
|
2533
|
-
background-color: #f1faff; }
|
2534
|
-
|
2535
|
-
._3WYHC {
|
2536
|
-
font-weight: 600;
|
2537
|
-
border-top: 1px solid #27347d29;
|
2538
|
-
padding-top: 10px; }
|
2539
|
-
._3WYHC._2-9ix {
|
2540
|
-
color: #8b0000; }
|
2541
|
-
._3WYHC ._1r4pn {
|
2542
|
-
margin-right: 12px; }
|
2543
|
-
|
2544
|
-
._2ZozT {
|
2545
|
-
width: 40px;
|
2546
|
-
height: 40px;
|
2547
|
-
border-radius: 50%;
|
2548
|
-
margin-right: 12px;
|
2549
|
-
display: flex;
|
2550
|
-
justify-content: center;
|
2551
|
-
align-items: center;
|
2552
|
-
font-size: 20px;
|
2553
|
-
font-weight: 600;
|
2554
|
-
line-height: 1;
|
2555
|
-
color: #FFF; }
|
2556
|
-
._2ZozT img {
|
2557
|
-
width: 100%;
|
2558
|
-
height: 100%;
|
2559
|
-
border-radius: 50%;
|
2560
|
-
-o-object-fit: cover;
|
2561
|
-
object-fit: cover;
|
2562
|
-
border: 1px solid #DFE3E8; }
|
2563
|
-
|
2564
|
-
._8niRT {
|
2479
|
+
._styles-module__avatar__8niRT {
|
2565
2480
|
width: 42px;
|
2566
2481
|
height: 42px; }
|
2567
2482
|
|
2568
|
-
.
|
2569
|
-
padding: 0.5rem 1.5rem;
|
2570
|
-
border-radius: 6px;
|
2571
|
-
border: 1px solid #EBEBFF; }
|
2572
|
-
._2FdrR {
|
2573
|
-
font-weight: 700;
|
2574
|
-
font-size: 14px; }
|
2575
|
-
._3mgRf {
|
2576
|
-
font-weight: 700;
|
2577
|
-
font-size: 14px;
|
2578
|
-
color: #414E62; }
|
2579
|
-
|
2580
|
-
._2h0kA > span:last-child,
|
2581
|
-
._2h0kA {
|
2582
|
-
font-weight: 600 !important;
|
2583
|
-
font-size: 13px !important;
|
2584
|
-
color: #202B37 !important; }
|
2585
|
-
|
2586
|
-
._exAl- {
|
2587
|
-
font-weight: 600;
|
2588
|
-
font-size: 13px;
|
2589
|
-
border: 1px solid #97A1AF;
|
2590
|
-
padding: 12px; }
|
2591
|
-
._exAl-:focus {
|
2592
|
-
box-shadow: none; }
|
2593
|
-
|
2594
|
-
._2ksp8:hover {
|
2595
|
-
color: #FFF; }
|
2596
|
-
|
2597
|
-
._2Kt_g {
|
2483
|
+
._style-module__action-btn__2Kt_g {
|
2598
2484
|
border-radius: 50%;
|
2599
2485
|
width: 36px;
|
2600
2486
|
height: 36px;
|
@@ -2602,19 +2488,19 @@ h3 {
|
|
2602
2488
|
justify-content: center;
|
2603
2489
|
align-items: center;
|
2604
2490
|
margin-inline: 0.25rem; }
|
2605
|
-
.
|
2491
|
+
._style-module__action-btn__2Kt_g svg {
|
2606
2492
|
width: 0.75rem; }
|
2607
|
-
.
|
2493
|
+
._style-module__action-btn--pencil__3T_TG {
|
2608
2494
|
stroke: #FFF;
|
2609
2495
|
width: 1rem !important; }
|
2610
2496
|
|
2611
|
-
.
|
2497
|
+
._style-module__btn-cancel__3j6Kd {
|
2612
2498
|
min-width: 120px !important;
|
2613
2499
|
padding: 12px !important;
|
2614
2500
|
border-radius: 6px !important;
|
2615
2501
|
background-color: transparent !important; }
|
2616
2502
|
|
2617
|
-
.
|
2503
|
+
._style-module__btn-register__XA4vl {
|
2618
2504
|
min-width: 120px !important;
|
2619
2505
|
padding: 12px !important;
|
2620
2506
|
border-radius: 6px !important; }
|