Tutor LMS – eLearning and online course solution - Version 1.8.0

Version Description

  • February 03, 2021 =

New: Search filter in Assignments New: Confirmation message while saving data added New: Frontend and backend UX for Assignments redesigned New: Thank you notice when instructors submit a course for review added Update: All the email notification templates moved to Pro version Update: HTML tag support in Quiz description added Update: Date time column in Student enrolment report added Update: User capability check in announcements Ajax action added Fix: Redundant or duplicate email issue when student enrolments are changed. Fix: Add New Course, Explore Addons buttons issue in Tutor LMS setup wizard Fix: Incorrect lesson count (due to trashed course) in the report page Fix: Profile and cover photo saving issue in frontend dashboard Fix: Graph issue in the Earnings tab in the Report addon Fix: Remove item issue in WooCommerce cart page Fix: Quiz fails to import issue

Download this release

Release Info

Developer themeum
Plugin Icon wp plugin Tutor LMS – eLearning and online course solution
Version 1.8.0
Comparing to
See all releases

Code changes from version 1.7.9 to 1.8.0

Files changed (64) hide show
  1. assets/css/tutor-admin.css +3048 -2283
  2. assets/css/tutor-admin.min.css +12 -0
  3. assets/css/tutor-front.css +175 -32
  4. assets/css/tutor-front.min.css +1 -1
  5. assets/js/tutor-admin.js +22 -3
  6. assets/js/tutor-front.js +19 -0
  7. assets/js/tutor-setup.js +19 -0
  8. assets/js/tutor.js +63 -4
  9. classes/Ajax.php +17 -4
  10. classes/Assets.php +3 -2
  11. classes/Course.php +14 -6
  12. classes/Course_Settings_Tabs.php +1 -1
  13. classes/Quiz.php +30 -3
  14. classes/Tutor_List_Table.php +66 -1
  15. classes/Tutor_Setup.php +1 -0
  16. classes/Utils.php +69 -12
  17. languages/tutor.pot +226 -390
  18. readme.txt +19 -1
  19. templates/dashboard/announcements.php +12 -16
  20. templates/dashboard/announcements/create.php +2 -2
  21. templates/dashboard/announcements/update.php +2 -2
  22. templates/dashboard/assignments.php +94 -44
  23. templates/dashboard/assignments/course.php +0 -52
  24. templates/dashboard/assignments/review.php +24 -7
  25. templates/dashboard/assignments/submitted.php +119 -74
  26. templates/dashboard/create-course.php +16 -0
  27. templates/dashboard/earning.php +1 -1
  28. templates/dashboard/my-quiz-attempts/attempts-details.php +0 -1
  29. templates/dashboard/withdraw.php +2 -2
  30. templates/email/to_admin_course_updated.php +0 -17
  31. templates/email/to_admin_new_course_published.php +0 -18
  32. templates/email/to_admin_new_course_submitted_for_review.php +0 -18
  33. templates/email/to_admin_new_instructor_signup.php +0 -16
  34. templates/email/to_admin_new_student_signup.php +0 -16
  35. templates/email/to_admin_new_withdrawal_request.php +0 -11
  36. templates/email/to_instructor_asked_question_by_student.php +0 -17
  37. templates/email/to_instructor_become_application_approved.php +0 -14
  38. templates/email/to_instructor_become_application_received.php +0 -13
  39. templates/email/to_instructor_become_application_rejected.php +0 -13
  40. templates/email/to_instructor_course_completed.php +0 -13
  41. templates/email/to_instructor_course_enrolled.php +0 -13
  42. templates/email/to_instructor_lesson_completed.php +0 -13
  43. templates/email/to_instructor_quiz_completed.php +0 -13
  44. templates/email/to_instructor_student_submitted_assignment.php +0 -22
  45. templates/email/to_instructor_withdrawal_request_approved.php +0 -13
  46. templates/email/to_instructor_withdrawal_request_received.php +0 -13
  47. templates/email/to_instructor_withdrawal_request_rejected.php +0 -13
  48. templates/email/to_student_announcement_updated.php +0 -15
  49. templates/email/to_student_assignment_evaluate.php +0 -15
  50. templates/email/to_student_course_completed.php +0 -13
  51. templates/email/to_student_course_enrolled.php +0 -14
  52. templates/email/to_student_feedback_submitted_for_quiz.php +0 -17
  53. templates/email/to_student_new_announcement_posted.php +0 -15
  54. templates/email/to_student_new_lqa_published.php +0 -13
  55. templates/email/to_student_question_answered.php +0 -17
  56. templates/email/to_student_quiz_completed.php +0 -13
  57. templates/email/to_student_rate_course_and_instructor.php +0 -17
  58. templates/email/to_student_remove_from_course.php +0 -19
  59. tutor.php +3 -3
  60. views/modal/edit-lesson.php +3 -1
  61. views/modal/edit_quiz.php +2 -2
  62. views/options/options_generator.php +1 -1
  63. views/pages/announcements.php +4 -4
  64. views/pages/view_attempt.php +1 -1
assets/css/tutor-admin.css CHANGED
@@ -3,115 +3,129 @@
3
  @author: themeum
4
  */
5
  :root {
6
- --tutor-primary-color: #1b52d8;
7
- --tutor-primary-hover-color: #1b52a9;
8
- --tutor-text-color: #4b5981;
9
- --tutor-light-color: #b1b8c9;
10
- --tutor-success-button-color: #86b223;
11
  }
12
 
13
  .ui-slider {
14
- position: relative;
15
- text-align: left;
16
  }
 
17
  .ui-slider .ui-slider-handle {
18
- position: absolute;
19
- z-index: 2;
20
- width: 15px;
21
- height: 15px;
22
- cursor: default;
23
- top: -6.5px;
24
- cursor: pointer;
25
  }
 
26
  .ui-slider .ui-slider-range {
27
- position: absolute;
28
- z-index: 1;
29
- font-size: 0.7em;
30
- display: block;
31
- border: 0;
32
- background-position: 0 0;
33
  }
34
 
35
  .ui-slider-horizontal {
36
- height: 0.8em;
37
  }
 
38
  .ui-slider-horizontal .ui-slider-range {
39
- top: 0;
40
- height: 100%;
41
  }
 
42
  .ui-slider-horizontal .ui-slider-range-min {
43
- left: 0;
44
  }
 
45
  .ui-slider-horizontal .ui-slider-range-max {
46
- right: 0;
47
  }
48
 
49
  .ui-slider-vertical {
50
- width: 0.8em;
51
- height: 100px;
52
  }
 
53
  .ui-slider-vertical .ui-slider-handle {
54
- left: -0.3em;
55
- margin-left: 0;
56
- margin-bottom: -0.6em;
57
  }
 
58
  .ui-slider-vertical .ui-slider-range {
59
- left: 0;
60
- width: 100%;
61
  }
 
62
  .ui-slider-vertical .ui-slider-range-min {
63
- bottom: 0;
64
  }
 
65
  .ui-slider-vertical .ui-slider-range-max {
66
- top: 0;
67
  }
68
 
69
  /*----------------------------------
70
- Component containers
71
- ----------------------------------*/
72
  .ui-widget-content {
73
- border: 1px solid #aaaaaa;
74
- background: #ffffff;
75
- color: #222222;
76
  }
 
77
  .ui-widget-content a {
78
- color: #222222;
79
  }
 
80
  .ui-widget-header {
81
- border: 1px solid #aaaaaa;
82
- background: #cccccc;
83
- color: #222222;
84
- font-weight: bold;
85
  }
 
86
  .ui-widget-header a {
87
- color: #222222;
88
  }
89
 
90
  /* Interaction states
91
- ----------------------------------*/
92
  .ui-state-default,
93
  .ui-widget-content .ui-state-default,
94
  .ui-widget-header .ui-state-default {
95
- border: 1px solid #d3d3d3;
96
- background: #e6e6e6;
97
- font-weight: normal;
98
- color: #555555;
99
  }
 
100
  /* Interaction Cues
101
- ----------------------------------*/
102
  .ui-state-highlight,
103
  .ui-widget-content .ui-state-highlight,
104
  .ui-widget-header .ui-state-highlight {
105
- border: 1px solid #fcefa1 /*{borderColorHighlight}*/;
106
- background: #fbf9ee;
107
- color: #363636;
108
  }
109
 
110
  .tutor-option-nav-tabs li {
111
- position: relative;
112
- display: inline-block;
113
- margin-right: -1px;
114
  }
 
115
  /*.tutor-option-nav-tabs li:after {*/
116
  /*content: "|";*/
117
  /*position: absolute;*/
@@ -119,73 +133,82 @@
119
  /*right: -10px;*/
120
  /*}*/
121
  .tutor-option-nav-tabs li:last-child:after {
122
- content: "";
123
  }
 
124
  .tutor-option-nav-tabs li a {
125
- display: block;
126
- font-weight: bold;
127
- text-decoration: none;
128
- background: #fff;
129
- padding: 5px 10px;
130
- border: 1px solid #dddddd;
131
  }
 
132
  .tutor-option-nav-tabs li.current a {
133
- color: #333333;
134
  }
 
135
  .tutor-option-nav-tabs li a:focus {
136
- box-shadow: none;
 
137
  }
138
 
139
  /**
140
- Withdraw Methods Nav
141
- */
142
-
143
  .withdraw-method-nav {
144
- margin-bottom: 20px;
145
  }
 
146
  .withdraw-method-nav li {
147
- position: relative;
148
- display: inline-block;
149
  }
 
150
  .withdraw-method-nav li a {
151
- display: block;
152
- text-decoration: none;
153
- padding: 5px 10px;
154
- border-right: 1px solid #cccccc;
155
  }
 
156
  .withdraw-method-nav li:last-child a {
157
- border-right: none;
158
  }
159
- /**
160
- Option Field
161
- */
162
 
 
 
 
163
  .tutor-option-field-row {
164
- border-bottom: 1px solid #e4e4e4;
165
- padding: 20px 0;
166
- font-size: 14px;
167
- line-height: 1.3;
168
  }
 
169
  .tutor-option-field-row:last-child {
170
- border-bottom: none;
171
  }
 
172
  .tutor-option-field-row input[type="text"],
173
  .tutor-option-field-row input[type="email"],
174
  .tutor-option-field-row input[type="number"],
175
  .tutor-option-field-row input[type="password"],
176
  .tutor-option-field-row textarea,
177
  .tutor-option-field-row .tutor-field-type-slider {
178
- background-color: #fff;
179
- border: 1px solid #ddd;
180
- border-radius: 3px;
181
- box-shadow: none;
182
- color: #333;
183
- display: inline-block;
184
- vertical-align: middle;
185
- padding: 7px 12px;
186
- margin: 0 10px 0 0;
187
- width: 400px;
188
- min-height: 35px;
 
189
  }
190
 
191
  .tutor_lesson_modal_form .tutor-option-field-row input[type="text"],
@@ -194,80 +217,93 @@ Option Field
194
  .tutor_lesson_modal_form .tutor-option-field-row input[type="password"],
195
  .tutor_lesson_modal_form .tutor-option-field-row textarea,
196
  .tutor_lesson_modal_form .tutor-option-field-row .tutor-field-type-slider {
197
- width: 100%;
198
- display: block;
199
  }
200
 
201
  .tutor-option-field {
202
- display: block;
203
- margin: 0 0 0 200px;
204
- max-width: 800px;
205
  }
 
206
  .rtl .tutor-option-field {
207
- margin: 0 200px 0 0;
208
  }
 
209
  .tutor_lesson_modal_form .tutor-option-field {
210
- display: block;
211
- margin: 0;
212
- max-width: none;
213
  }
 
214
  .tutor-option-field-label {
215
- display: block;
216
- float: left;
217
- width: 200px;
218
  }
 
219
  .rtl .tutor-option-field-label {
220
- float: right;
221
  }
 
222
  .tutor_lesson_modal_form .tutor-option-field-label {
223
- display: block;
224
- float: none;
225
- width: 100%;
226
- margin-bottom: 15px;
227
  }
228
 
229
  .tutor-lesson-attachments-metabox {
230
- margin-top: 30px;
231
  }
232
 
233
  .tutor-option-field-label label {
234
- display: block;
235
- font-weight: 600;
236
  }
 
237
  .tutor-option-field p.desc {
238
- font-style: italic;
239
- color: #666;
240
- font-size: 12px;
241
- line-height: 1.5;
242
  }
 
243
  .tutor-option-field-row h2 {
244
- color: #444;
245
- font-size: 18px;
246
- font-weight: 700;
247
- margin: 0;
248
  }
 
249
  .tutor-option-field-row .option-media-wrap {
250
- margin-bottom: 10px;
251
  }
 
252
  .tutor-option-field-row .option-media-wrap img {
253
- max-height: 100px;
254
- width: auto;
255
- padding: 5px;
256
- border: 1px solid #cccccc;
257
  }
 
258
  .select2-container {
259
- min-width: 250px !important;
260
  }
 
261
  .membership_course_categories .select2-container {
262
- min-width: 50% !important;
263
  }
 
264
  /**
265
- Group Field Option
266
- */
267
  .tutor-option-group-field {
268
- display: inline-block;
269
- vertical-align: top;
270
  }
 
271
  .tutor-option-group-field input[type="text"],
272
  .tutor-option-group-field input[type="email"],
273
  .tutor-option-group-field input[type="number"],
@@ -275,322 +311,376 @@ Group Field Option
275
  .tutor-option-group-field textarea,
276
  .tutor-option-group-field .tutor-field-type-slider,
277
  .tutor-option-group-field select {
278
- width: 100px;
279
- margin-right: 5px;
280
  }
 
281
  .option-type-radio-wrap {
282
- margin-top: 0;
283
  }
284
 
285
  /**
286
- * Course adding page
287
- * Course Builder
288
- */
289
  #tutor-course-topics a {
290
- text-decoration: none;
291
  }
 
292
  #tutor-course-topics .tutor-topics-wrap {
293
- border-bottom: 1px solid #e7e7e7;
294
- padding-bottom: 0;
295
- margin: 0;
296
  }
 
297
  .tutor-untopics-lessons .course-content-item,
298
  .course-contents .course-content-item {
299
- padding: 10px;
300
- border-bottom: 1px solid #d9d9d9;
301
- background-color: #ebeef0;
302
  }
 
303
  .tutor-lessons.ui-sortable {
304
- min-height: 20px;
305
  }
 
306
  #tutor-course-topics .drop-lessons p {
307
- margin: 0;
308
  }
 
309
  #tutor-course-topics .course-content-item:hover {
310
- background-color: #ebeef0;
311
  }
 
312
  #tutor-course-topics .tutor-lessons {
313
- padding-left: 0;
314
  }
 
315
  #tutor-course-topics .tutor-lesson-top,
316
  #tutor-course-topics .tutor-lesson-top i {
317
- font-size: 15px;
318
  }
 
319
  #tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i {
320
- display: inline-block;
321
- vertical-align: middle;
322
- margin-right: 5px;
323
  }
 
324
  .rtl #tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i {
325
- margin-right: 0;
326
- margin-left: 5px;
327
  }
 
328
  #tutor-course-topics .tutor-lesson-top {
329
- display: -webkit-box;
330
- display: -ms-flexbox;
331
- display: flex;
332
- font-size: 14px;
333
  }
 
334
  #tutor-course-topics .tutor-lesson-top .open-tutor-lesson-modal,
335
  .tutor-quiz .open-tutor-quiz-modal,
336
  .course-content-item .open-tutor-assignment-modal,
337
  .course-content-item .tutor-zoom-meeting-modal-open-btn {
338
- -webkit-box-flex: 1;
339
- -ms-flex: 1;
340
- flex: 1;
341
  }
 
342
  #tutor-course-topics .tutor-lesson-top i.tutor-icon-move {
343
- margin-right: 10px;
344
- cursor: ns-resize;
345
  }
 
346
  .rtl #tutor-course-topics .tutor-lesson-top i.tutor-icon-move {
347
- margin-right: 0;
348
- margin-left: 10px;
349
  }
 
350
  #tutor-course-topics .tutor-lesson-top i.tutor-icon-pencil {
351
- margin: 0 10px;
352
  }
 
353
  #tutor-course-topics .tutor-lesson-top a {
354
- color: #393c40;
355
  }
356
 
357
  #tutor-course-topics .tutor-lesson-top a.tutor-updating-message i {
358
- display: none;
359
  }
360
 
361
  .tutor-topics-wrap,
362
  .course-move-handle {
363
- margin-right: 5px;
364
  }
 
365
  .course-move-handle {
366
- align-self: center;
367
- cursor: row-resize;
 
368
  }
 
369
  .new-topic-btn-wrap {
370
- padding: 20px;
371
  }
 
372
  p.course-empty-content {
373
- padding-left: 20px;
374
  }
 
375
  .tutor_btn_lg {
376
- line-height: 45px;
377
- background-color: var(--tutor-primary-color);
378
- color: #ffffff;
379
- padding: 0 20px;
380
- display: inline-block;
381
- border-radius: 2px;
382
- font-size: 14px;
383
- font-weight: 300;
384
- border: none;
385
- box-shadow: none;
386
- cursor: pointer;
 
387
  }
 
388
  .tutor_btn_lg:focus {
389
- box-shadow: none;
390
- border: none;
391
- outline: none;
 
392
  }
 
393
  .tutor_btn_lg:focus,
394
  .tutor_btn_lg:hover {
395
- background-color: var(--tutor-primary-color);
396
- color: #ffffff;
397
  }
398
 
399
  .ui-sortable-placeholder {
400
- visibility: visible;
401
- background-color: #dddd;
402
  }
 
403
  .tutor-untopics-lessons {
404
- margin-top: 0;
405
- border: 1px solid #eee;
406
- padding: 20px;
407
- margin-bottom: 20px;
408
- background-color: #fbfbfb;
409
  }
 
410
  .tutor-untopics-lessons h3 {
411
- font-weight: 300;
412
- margin-top: 0px;
413
  }
 
414
  .tutor-untopics-lessons .tutor-lessons {
415
- padding-left: 0 !important;
416
  }
 
417
  .create-new-lesson-wrap {
418
- text-align: center;
419
  }
 
420
  .tutor-metabox-add-topics,
421
  .tutor-topics-edit-form {
422
- background: #f1f1f1;
423
- padding: 20px;
424
  }
 
425
  .tutor-metabox-add-topics .tutor-option-field-row {
426
- padding: 15px 0;
427
  }
 
428
  .tutor-metabox-add-topics .tutor-option-field-row:last-child,
429
  .tutor-topics-edit-form .tutor-option-field-row:last-child {
430
- border-bottom: none;
431
  }
 
432
  .topic-edit-icon {
433
- cursor: pointer;
434
  }
 
435
  .tutor-topic-title {
436
- display: -webkit-box;
437
- display: -ms-flexbox;
438
- display: flex;
439
- font-size: 16px;
440
- font-weight: 300;
441
- margin: 0;
442
- line-height: 40px;
443
- padding-left: 15px;
444
  }
 
445
  .rtl .tutor-topic-title {
446
- padding-left: 0;
447
- padding-right: 15px;
448
  }
 
449
  .tutor-topic-title a {
450
- color: #393c40;
451
  }
452
 
453
  .tutor-topic-title .topic-inner-title {
454
- -webkit-box-flex: 1;
455
- -ms-flex: 1 0 auto;
456
- flex: 1 0 auto;
457
- cursor: pointer;
458
- max-width: calc(100% - 154px);
459
  }
 
460
  .tutor-topic-title span {
461
- padding: 0 5px;
462
  }
 
463
  .tutor-topic-title span.expand-collapse-wrap {
464
- border-left: 1px solid #e7e7e7;
465
  }
 
466
  .rtl .tutor-topic-title span.expand-collapse-wrap {
467
- border-left: none;
468
- border-right: 1px solid #e7e7e7;
469
  }
 
470
  .tutor-topic-title span.expand-collapse-wrap a {
471
- display: block;
472
- padding: 0 13px;
473
  }
 
474
  .topic-delete-btn {
475
- float: right;
476
  }
 
477
  .text-muted {
478
- color: #cccccc;
479
  }
 
480
  .topic-delete-btn a {
481
- padding: 0 10px;
482
  }
 
483
  .topic-delete-btn a:hover {
484
- color: #ff0000;
485
  }
 
486
  .topic-delete-btn .dashicons {
487
- width: 12px;
488
- height: 12px;
489
- font-size: 12px;
490
  }
491
 
492
  #tutor-course-topics {
493
- position: relative;
494
  }
 
495
  #tutor-course-topics .inside {
496
- padding: 0;
497
- margin: 0;
498
  }
 
499
  #tutor-course-topics a:focus {
500
- box-shadow: none;
 
501
  }
 
502
  #tutor-course-topics .toggle-indicator:before {
503
- margin-top: 20px;
504
  }
 
505
  .tutor-course-builder-header {
506
- line-height: 50px;
507
- position: absolute;
508
- top: -69px;
509
- right: 40px;
510
  }
 
511
  .rtl .tutor-course-builder-header {
512
- right: auto;
513
- left: 40px;
514
  }
 
515
  .tutor-topics-wrap:nth-child(2n) {
516
- background: #f8f8f8;
517
  }
 
518
  #tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body {
519
- background: #ebeef0;
520
- padding: 15px 20px;
521
  }
 
522
  /*#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body .create-lesson-in-topic-btn,*/
523
  /*#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body .tutor-add-quiz-btn,*/
524
  /*#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body .tutor-create-assignments-btn*/
525
  /*
526
- .tutor-course-builder-button{
527
- line-height: 35px;
528
- color: #393c40;
529
- display: inline-block;
530
- padding: 0 20px;
531
- border-radius: 2px;
532
- margin-right: 10px;
533
- border: 1px solid #d3d4d5;
534
- background-color: #f2f2f2;
535
- cursor: pointer;
536
- vertical-align: top;
537
- transition: 200ms;
538
- }
539
-
540
- .tutor-course-builder-button.tutor-updating-message i{
541
- display: none;
542
- }
543
-
544
- .tutor-course-builder-button.tutor-btn-lg{
545
- line-height: 40px;
546
- }
547
-
548
- .tutor-course-builder-button.active,
549
- .tutor-course-builder-button:hover{
550
- color: #fff;
551
- background: var(--tutor-primary-color);
552
- border-color: var(--tutor-primary-color);
553
- }
554
-
555
-
556
- .tutor-course-builder-button.active:hover{
557
- background: #393C40;
558
- border-color: #393c40;
559
- }
560
-
561
- .tutor-course-builder-button i{
562
- color: var(--tutor-primary-color);
563
- vertical-align: middle;
564
- margin-right: 5px;
565
- font-size: 16px;
566
- }
567
-
568
- .tutor-course-builder-button.active i,
569
- .tutor-course-builder-button:hover i{
570
- color: #fff;
571
- }
572
-
573
- */
574
-
575
  .single_add_to_cart_button,
576
  a.tutor-button,
577
  .tutor-button,
578
  a.tutor-btn,
579
  .tutor-btn {
580
- color: #fff;
581
- border: 1px solid var(--tutor-primary-color);
582
- background-color: var(--tutor-primary-color);
583
- display: inline-block;
584
- padding: 12px 18px;
585
- border-radius: 4px;
586
- text-transform: capitalize;
587
- line-height: 20px;
588
- font-size: 14px;
589
- font-weight: 500;
590
- cursor: pointer;
591
- transition: 300ms;
592
- overflow: hidden;
593
- vertical-align: top;
 
594
  }
595
 
596
  .single_add_to_cart_button i,
@@ -598,903 +688,1049 @@ a.tutor-button i,
598
  .tutor-button i,
599
  a.tutor-btn i,
600
  .tutor-btn i {
601
- float: left;
602
- line-height: 20px;
603
- margin-right: 7px;
604
- font-size: 20px;
605
  }
606
 
607
  a.tutor-button.default-btn i,
608
  .tutor-button.default-btn i,
609
  a.tutor-btn.default-btn i,
610
  .tutor-btn.default-btn i {
611
- color: var(--tutor-primary-color);
612
  }
613
 
614
  a.tutor-button.bordered-button,
615
  .tutor-button.bordered-button,
616
  a.tutor-btn.bordered-btn,
617
  .tutor-btn.bordered-btn {
618
- color: var(--tutor-primary-color);
619
- border: 1px solid var(--tutor-primary-color);
620
- background-color: transparent;
621
  }
622
 
623
  a.tutor-button:hover,
624
  .tutor-button:hover,
625
  a.tutor-btn:hover,
626
  .tutor-btn:hover {
627
- background-color: var(--tutor-primary-hover-color);
628
- border-color: var(--tutor-primary-hover-color);
629
- color: #fff;
630
  }
631
 
632
  a.tutor-button:hover i,
633
  .tutor-button:hover i,
634
  a.tutor-btn:hover i,
635
  .tutor-btn:hover i {
636
- color: #fff;
637
  }
638
 
639
  a.tutor-button.default-btn,
640
  .tutor-button.default-btn,
641
  a.tutor-btn.default-btn,
642
  .tutor-btn.default-btn {
643
- color: #393c40;
644
- border: 1px solid #b8babe;
645
- background: #fff;
646
  }
647
 
648
  a.tutor-button.default-btn:hover,
649
  .tutor-button.default-btn:hover,
650
  a.tutor-btn.default-btn:hover,
651
  .tutor-btn.default-btn:hover {
652
- background-color: var(--tutor-primary-color);
653
- border-color: var(--tutor-primary-color);
654
- color: #fff;
655
  }
656
 
657
  .tutor-add-quiz-button-wrap > * + * {
658
- margin-left: 15px;
659
  }
660
 
661
  a.tutor-button.bordered-button:hover,
662
  .tutor-button.bordered-button:hover,
663
  a.tutor-btn.bordered-btn:hover,
664
  .tutor-btn.bordered-btn:hover {
665
- border: 1px solid var(--tutor-primary-color);
666
- background-color: var(--tutor-primary-color);
667
  }
668
 
669
  .tutor-updating-message i {
670
- display: none;
671
  }
672
 
673
  .tutor-button.tutor-danger {
674
- background-color: #e53935;
675
- border-color: #e53935;
676
  }
 
677
  .tutor-button.tutor-danger:hover {
678
- background-color: #e53935;
679
- border-color: #e53935;
680
- filter: brightness(0.9);
 
681
  }
 
682
  .tutor-button.tutor-success {
683
- background: var(--tutor-success-button-color);
684
- border-color: var(--tutor-success-button-color);
685
  }
686
 
687
  .tutor-button.tutor-success:hover {
688
- background: var(--tutor-success-button-color);
689
- border-color: var(--tutor-success-button-color);
690
- filter: brightness(0.9);
 
691
  }
692
 
693
  /**
694
- Instructor
695
- */
696
  .tutor-required-fields {
697
- color: #f13a3a;
698
  }
 
699
  /**
700
- Meta Box Heading
701
- */
702
  #tutor-course-topics h2,
703
  #tutor-instructors h2 {
704
- padding: 15px;
705
- line-height: 30px;
706
  }
 
707
  #tutor-course-topics h2:before,
708
  #tutor-instructors h2:before {
709
- color: var(--tutor-primary-color);
710
- font-family: "tutor" !important;
711
- speak: none;
712
- font-style: normal;
713
- font-weight: normal;
714
- font-variant: normal;
715
- text-transform: none;
716
- line-height: 1;
717
- -webkit-font-smoothing: antialiased;
718
- -moz-osx-font-smoothing: grayscale;
719
- margin-right: 10px;
720
  }
 
721
  #tutor-course-topics h2:before {
722
- content: "\e936";
723
  }
 
724
  #tutor-instructors h2:before {
725
- content: "\e93c";
726
  }
727
- /**
728
- End Metabox Heading
729
- */
730
 
731
  /**
732
- Video MetaBox
733
- */
734
-
 
 
735
  .tutor-video-metabox-wrap {
736
- margin-bottom: 50px;
737
  }
 
738
  .video-metabox-source-input-wrap {
739
- /*padding: 30px;*/
740
- /*background-color: #F4F7F8;*/
741
- /*border: 1px solid #DCDFE5;*/
742
- /*border-radius: 3px;*/
743
  }
 
744
  .video-metabox-source-html5-upload {
745
- background-color: #fff;
746
- text-align: center;
747
- padding: 40px 20px;
748
- border: 1px solid #dcdfe5;
749
- border-radius: 3px;
750
  }
 
751
  .video-metabox-source-html5-upload p {
752
- margin-bottom: 5px;
753
  }
 
754
  .tutor-video-metabox-wrap p {
755
- margin: 0;
756
- padding: 0;
757
  }
 
758
  .video-metabox-source-html5-upload .video-upload-icon i {
759
- font-size: 50px;
760
- color: #1b52d8;
761
- line-height: 45px;
762
  }
 
763
  .video_source_upload_wrap_html5 {
764
- margin-top: 10px;
765
  }
 
766
  .video-metabox-source-html5-poster {
767
- padding-top: 20px;
768
  }
 
769
  .video_source_wrap_html5 {
770
- width: 100%;
771
  }
 
772
  .button-transparent {
773
- background: transparent !important;
774
  }
 
775
  .button-transparent:hover {
776
- background: var(--tutor-primary-color) !important;
777
  }
 
778
  .builder-course-thumbnail-upload-wrap .button-transparent {
779
- float: right;
780
  }
781
 
782
  .html5-video-poster img {
783
- height: 100%;
784
- width: auto;
785
  }
 
786
  .html5-video-poster {
787
- height: 100px;
788
- display: -webkit-box;
789
- display: -ms-flexbox;
790
- display: flex;
791
- -webkit-box-align: center;
792
- -ms-flex-align: center;
793
- align-items: center;
794
  }
795
 
796
  .html5-video-poster .tutor-builder-course-video-poster-text {
797
- text-align: left;
798
- padding-left: 20px;
799
  }
 
800
  .rtl .html5-video-poster .tutor-builder-course-video-poster-text {
801
- padding-left: 0;
802
- padding-right: 20px;
803
  }
 
804
  .html5-video-poster .tutor-builder-course-video-poster-text h5 {
805
- font-size: 14px;
806
- font-weight: 700;
807
- margin: 0 0 5px;
808
  }
809
 
810
  .html5-video-poster .tutor-builder-course-video-poster-text span {
811
- font-size: 14px;
812
- font-weight: 400;
813
  }
814
 
815
  .html5-video-poster img {
816
- height: 100%;
817
- width: auto;
818
  }
819
- /** END Video metabox */
820
 
 
821
  .builder-course-thumbnail-img-src {
822
- position: relative;
823
  }
 
824
  .builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn {
825
- position: absolute;
826
- top: 12px;
827
- left: 15px;
828
- color: #e53935;
829
- -webkit-transition: 300ms;
830
- transition: 300ms;
831
- text-decoration: none;
832
  }
 
833
  .video-metabox-source-html5-poster .tutor-row {
834
- display: flex;
835
- flex-wrap: wrap;
836
- justify-content: space-between;
837
- align-items: center;
 
 
 
 
 
 
 
838
  }
 
839
  .video-metabox-source-html5-poster .tutor-row .tutor-col-5 {
840
- width: 38%;
841
  }
 
842
  .video-metabox-source-html5-poster .tutor-col-7 {
843
- width: 62%;
844
  }
845
 
846
  .video-metabox-source-html5-poster
847
- .tutor-row
848
- .tutor-course-thumbnail-upload-btn {
849
- margin: 10px 0;
850
  }
851
 
852
  .tutor-course-builder-attachements * {
853
- box-sizing: border-box;
 
854
  }
855
 
856
  .tutor-course-builder-attachements {
857
- display: flex;
858
- margin-left: -20px;
859
- flex-wrap: wrap;
860
- box-sizing: border-box;
861
- padding: 0 0 10px;
 
 
 
 
862
  }
 
863
  .tutor-course-builder-attachements:empty {
864
- display: none;
865
  }
 
866
  .tutor-course-builder-attachements .tutor-added-attachment {
867
- flex: 0 0 153px;
868
- max-width: 153px;
869
- border: 1px solid #dcdfe5;
870
- padding: 35px 20px 20px;
871
- position: relative;
872
- text-align: center;
873
- margin-left: 20px;
874
- margin-bottom: 20px;
875
- border-radius: 4px;
876
- transition: 300ms;
877
- min-width: 153px;
878
- }
879
- .tutor-course-builder-attachements.is-lesson .tutor-added-attachment {
 
880
  }
 
881
  .tutor-course-builder-attachements .tutor-added-attachment i {
882
- font-size: 58px;
883
- line-height: 58px;
884
- margin-bottom: 25px;
885
- display: block;
886
  }
 
887
  .tutor-course-builder-attachements
888
- .tutor-added-attachment
889
- .tutor-delete-attachment {
890
- position: absolute;
891
- height: 22px;
892
- width: 22px;
893
- border: 1px solid #dcdfe5;
894
- text-align: center;
895
- line-height: 22px;
896
- top: -1px;
897
- right: -1px;
898
- font-size: 10px;
899
- border-top-right-radius: 4px;
900
- color: #d71830;
901
- opacity: 0;
902
- transition: 300ms;
903
- text-decoration: none;
 
904
  }
 
905
  .tutor-course-builder-attachements .tutor-added-attachment:hover,
906
  .tutor-course-builder-attachements
907
- .tutor-added-attachment:hover
908
- .tutor-delete-attachment {
909
- border-color: #d71830;
910
- opacity: 1;
911
  }
 
912
  .tutor-course-builder-attachements .tutor-added-attachment span {
913
- display: block;
914
  }
 
915
  .tutor-course-builder-attachements .tutor-added-attachment span a {
916
- font-size: 14px;
917
- display: block;
918
- line-height: 20px;
919
- color: #606c8f;
920
- text-decoration: none;
921
  }
922
 
923
  .tutor-course-builder-btn-group {
924
- display: flex;
925
- justify-content: space-between;
926
- flex-wrap: wrap;
927
- flex-direction: row-reverse;
 
 
 
 
 
 
 
 
928
  }
 
929
  .tutor-status-context {
930
- padding: 5px 10px;
931
- margin: 5px 0;
932
- display: inline-block;
933
  }
 
934
  .tutor-status-pending-context,
935
  .attempt_started {
936
- background-color: #eeeeee;
937
  }
 
938
  a.tutor-button,
939
  button.tutor-button {
940
- white-space: nowrap;
941
- padding: 10px 20px;
942
- text-decoration: none;
943
- /*margin-right: 20px;*/
944
  }
 
945
  a.tutor-button-small,
946
  button.tutor-button-small {
947
- white-space: nowrap;
948
- padding: 5px 10px;
949
- text-decoration: none;
950
  }
 
951
  .tutor-button-small,
952
  a.tutor-button-small,
953
  button.tutor-button-small {
954
- font-size: 14px;
955
- font-weight: 300;
956
- border: none;
957
  }
 
958
  .tutor-button-small i,
959
  a.tutor-button-small i,
960
  button.tutor-button-small i {
961
- font-size: 16px;
962
  }
 
963
  .tutor-button-primary {
964
- background-color: var(--tutor-primary-color);
965
- color: #ffffff;
966
- display: inline-block;
967
- border-radius: 2px;
968
- font-size: 14px;
969
- font-weight: 300;
970
- border: none;
971
- box-shadow: none;
972
- cursor: pointer;
 
973
  }
 
974
  .tutor-button-primary:hover {
975
- background-color: #2446a6;
976
  }
 
977
  .tutor-status-approved-context,
978
  .tutor-button.button-success,
979
  .tutor-status-completed {
980
- background-color: var(--tutor-success-button-color);
981
- color: #ffffff;
982
- border-radius: 2px;
983
  }
 
984
  .tutor-status-blocked-context,
985
  .attempt_timeout,
986
  .tutor-button.button-danger {
987
- background-color: #ff0000;
988
- color: #ffffff;
989
- border-radius: 2px;
990
  }
 
991
  .tutor-button.button-warning {
992
- background-color: #ffb36d;
993
- color: #ffffff;
994
  }
 
995
  .tutor-button {
996
- border: 0;
997
- box-shadow: none !important;
 
998
  }
 
999
  .tutor-button .dashicons {
1000
- border: 0;
1001
- box-shadow: none !important;
1002
- line-height: inherit;
 
1003
  }
 
1004
  .tutor-status-approved-context,
1005
  .tutor-status-blocked-context {
1006
- display: inline-block;
1007
  }
 
1008
  table.tutor_status_table td.help {
1009
- width: 1em;
1010
  }
 
1011
  table.tutor_status_table td:first-child {
1012
- width: 25%;
1013
  }
 
1014
  table.tutor_status_table h2 {
1015
- font-size: 16px;
1016
- margin: 0;
1017
  }
 
1018
  table.tutor_status_table td mark.yes,
1019
  table.tutor_status_table th mark.yes {
1020
- color: var(--tutor-success-button-color);
1021
- background-color: transparent;
1022
  }
1023
 
1024
  .tutor-text-avatar {
1025
- border-radius: 50%;
1026
- width: 40px;
1027
- height: 40px;
1028
- text-align: center;
1029
- display: block;
1030
- line-height: 40px;
1031
- color: #ffffff;
1032
- font-size: 14px;
1033
  }
 
1034
  .tutor_original_question {
1035
- display: -webkit-box;
1036
- display: -ms-flexbox;
1037
- display: flex;
1038
- margin-bottom: 5px;
1039
- padding: 20px;
1040
  }
 
1041
  .tutor_original_question .question-left {
1042
- -webkit-box-flex: 0;
1043
- -ms-flex: 0 0 60px;
1044
- flex: 0 0 60px;
1045
  }
 
1046
  .tutor_original_question .question-left img {
1047
- max-width: 60px;
1048
- height: auto;
1049
- margin-right: 10px;
1050
- border: 1px solid #eeee88;
1051
- padding: 3px;
1052
  }
 
1053
  .question-right {
1054
- width: 100%;
1055
  }
 
1056
  .tutor_admin_answers_list_wrap .tutor_original_question {
1057
- margin-left: 50px;
1058
  }
 
1059
  .tutor-bg-white {
1060
- background-color: #ffffff;
1061
  }
 
1062
  .tutor-bg-light {
1063
- background-color: #fdfdfd;
1064
  }
 
1065
  .tutor-announcement {
1066
- border: 1px solid #eee;
1067
- padding: 10px;
1068
- margin-bottom: 10px;
1069
  }
 
1070
  .announcement-delete-btn {
1071
- float: right;
1072
  }
 
1073
  .announcement-delete-btn a {
1074
- display: block;
1075
- color: #393c40;
1076
- padding: 0 6px;
1077
- text-decoration: none;
1078
- cursor: pointer;
1079
  }
 
1080
  .announcement-delete-btn a:hover {
1081
- color: #ff0000;
1082
  }
1083
 
1084
  #tutor-announcements .submit {
1085
- margin: 0;
1086
- padding: 0;
1087
  }
1088
 
1089
  .tutor-label-success {
1090
- background-color: var(--tutor-success-button-color);
1091
- color: #ffffff;
1092
- padding: 3px 7px;
1093
  }
 
1094
  .tutor-addons .plugin-card-bottom .plugin-version {
1095
- display: inline-block;
1096
  }
 
1097
  .tutor-addons .addon-regular-price {
1098
- color: #cccccc;
1099
- padding: 3px;
1100
  }
 
1101
  .tutor-addons .addon-current-price {
1102
- color: var(--tutor-success-button-color);
1103
- font-size: 18px;
1104
- padding: 3px;
1105
  }
 
1106
  .tutor-addons-last-checked-time {
1107
- color: #6f5757 !important;
1108
  }
 
1109
  .tutor-addons .wp-filter {
1110
- margin: 10px 0 0;
1111
  }
 
1112
  a.addon-buynow-link {
1113
- background: var(--tutor-primary-color);
1114
- color: #fff;
1115
- padding: 5px 10px;
1116
- display: inline-block;
1117
  }
 
1118
  /**
1119
- Add-ons list
1120
- */
1121
  .tutor-addons-list {
1122
- background-color: #fff;
1123
- min-height: 500px;
1124
- padding: 20px;
1125
  }
 
1126
  h3.addon-list-heading {
1127
- background-color: #eeeeee;
1128
- padding: 10px;
1129
  }
 
1130
  table.tutor-addons-list-table {
1131
- width: 100%;
1132
- }
1133
- table.tutor-addons-list-table tr {
1134
  }
 
1135
  table.tutor-addons-list-table td,
1136
  table.tutor-addons-list-table th {
1137
- padding: 10px;
1138
- border-bottom: 1px solid #eeeeee;
1139
- text-align: left;
1140
  }
 
1141
  .tutor-addons-list .plugin-icon {
1142
- height: 120px;
1143
  }
 
1144
  .tutor-addons-list .plugin-card .desc {
1145
- margin-right: 0;
1146
  }
 
1147
  .tutor-addons-list .plugin-card .name {
1148
- margin-right: 50px;
1149
  }
1150
 
1151
  /* RTL Style for name and desc */
1152
- .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .desc,
1153
- .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .name{
1154
- margin-right: 148px !important;
1155
  }
1156
 
1157
- .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .desc{
1158
- margin-left: 0 !important;
1159
  }
1160
 
1161
- .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .name{
1162
- margin-left: 53px !important;
1163
  }
1164
 
1165
-
1166
  .btn-switch {
1167
- display: inline-block;
1168
- height: 22px;
1169
- position: relative;
1170
- width: 40px;
1171
  }
 
1172
  .btn-switch input {
1173
- display: none;
1174
  }
 
1175
  .btn-slider {
1176
- background-color: #ccc;
1177
- bottom: 0;
1178
- cursor: pointer;
1179
- left: 0;
1180
- position: absolute;
1181
- right: 0;
1182
- top: 0;
1183
- -webkit-transition: 0.4s;
1184
- transition: 0.4s;
1185
  }
 
1186
  .btn-slider:before {
1187
- background-color: #fff;
1188
- bottom: 3px;
1189
- content: "";
1190
- height: 16px;
1191
- left: 4px;
1192
- position: absolute;
1193
- -webkit-transition: 0.4s;
1194
- transition: 0.4s;
1195
- width: 16px;
1196
  }
 
1197
  input:checked + .btn-slider {
1198
- background-color: var(--tutor-primary-color);
1199
  }
 
1200
  input:checked + .btn-slider:before {
1201
- -webkit-transform: translateX(16px);
1202
- transform: translateX(16px);
1203
  }
 
1204
  .btn-slider.btn-round {
1205
- border-radius: 34px;
1206
  }
 
1207
  .btn-slider.btn-round:before {
1208
- border-radius: 50%;
1209
  }
 
1210
  .required-plugin-cards {
1211
- background: #fff8e5;
1212
- padding: 12px 20px;
1213
  }
 
1214
  .required-plugin-cards p {
1215
- margin: 0;
1216
  }
 
1217
  /**
1218
- Quiz-question
1219
- */
1220
  .quiz-question-form-wrap {
1221
- margin-top: 20px;
1222
- margin-bottom: 20px;
1223
  }
 
1224
  .quiz-question-flex-wrap,
1225
  .tutor-flex-row {
1226
- display: -webkit-box;
1227
- display: -ms-flexbox;
1228
- display: flex;
1229
- -webkit-box-orient: horizontal;
1230
- -webkit-box-direction: normal;
1231
- -ms-flex-direction: row;
1232
- flex-direction: row;
1233
  }
 
1234
  .tutor-flex-col {
1235
- margin: 0 20px;
1236
  }
 
1237
  .tutor-flex-col:first-child {
1238
- margin-left: 0;
1239
  }
 
1240
  .tutor-flex-col:last-child {
1241
- margin-right: 0;
1242
  }
 
1243
  .tutor-add-question-wrap {
1244
- margin: 20px 0;
1245
- background-color: #f4f4f4;
1246
- padding: 10px;
1247
  }
 
1248
  .tutor-add-question-wrap input[type="text"] {
1249
- border: 1px solid #ddd;
1250
- border-radius: 0;
1251
- box-shadow: none;
1252
- color: #333;
1253
- display: inline-block;
1254
- vertical-align: middle;
1255
- padding: 7px 12px;
1256
- margin: 0;
1257
- width: 300px;
1258
- min-height: 35px;
 
1259
  }
 
1260
  .tutor-add-question-wrap select {
1261
- margin: 0;
1262
- padding: 0;
1263
- border-radius: 0;
1264
- border: none;
1265
- box-shadow: none;
1266
- height: 35px;
 
1267
  }
 
1268
  .tutor-add-question-wrap .button {
1269
- height: 35px;
1270
- margin-left: 10px;
1271
  }
 
1272
  .question-actions-wrap {
1273
- padding-right: 0 !important;
1274
  }
 
1275
  .question-actions-wrap a {
1276
- display: inline-block;
1277
  }
 
1278
  .tutor-loading-icon-wrap.button {
1279
- vertical-align: unset;
1280
- border: none;
1281
- background-color: transparent;
1282
- box-shadow: none;
 
1283
  }
1284
 
1285
  .tutor-input-text-error {
1286
- border: 1px solid #ff0000 !important;
1287
  }
 
1288
  .tutor-info-msg,
1289
  .tutor-success-msg,
1290
  .tutor-warning-msg,
1291
  .tutor-error-msg {
1292
- margin: 10px 0;
1293
- padding: 10px;
1294
- border-radius: 3px 3px 3px 3px;
1295
  }
 
1296
  .tutor-info-msg {
1297
- color: var(--tutor-primary-color);
1298
- background-color: #bef;
1299
- border: 1px solid var(--tutor-primary-color);
1300
  }
 
1301
  .tutor-success-msg {
1302
- color: var(--tutor-success-button-color);
1303
- background-color: #dff2bf;
1304
- border: 1px solid var(--tutor-success-button-color);
1305
  }
 
1306
  .tutor-warning-msg {
1307
- color: #9f6000;
1308
- background-color: #feefb3;
1309
- border: 1px solid #9f6000;
1310
  }
 
1311
  .tutor-error-msg {
1312
- color: #d8000c;
1313
- background-color: #fbdcdc;
1314
- border: 1px solid #d8000c;
1315
  }
1316
 
1317
  /**
1318
- Quiz Modal
1319
- */
1320
-
1321
  .tutor-modal-wrap {
1322
- opacity: 0;
1323
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
1324
- display: none;
1325
- position: fixed;
1326
- top: 0;
1327
- left: 0;
1328
- right: 0;
1329
- bottom: 0;
1330
- z-index: -1;
1331
- background-color: rgba(0, 0, 0, 0.5);
1332
  }
 
1333
  .tutor-modal-wrap.show {
1334
- display: -webkit-box;
1335
- display: -ms-flexbox;
1336
- display: flex;
1337
- opacity: 1;
1338
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
1339
- z-index: 99999;
1340
- -webkit-box-align: center;
1341
- -ms-flex-align: center;
1342
- align-items: center;
1343
- -webkit-box-pack: center;
1344
- -ms-flex-pack: center;
1345
- justify-content: center;
1346
  }
 
1347
  .tutor-modal-wrap.loading .tutor-modal-content:before {
1348
- position: absolute;
1349
- top: 0;
1350
- left: 0;
1351
- right: 0;
1352
- bottom: 0;
1353
- display: block;
1354
- content: "";
1355
- z-index: 9;
1356
- background: url("../images/spinner.gif") no-repeat center center;
1357
  }
 
1358
  .tutor-modal-wrap .tutor-modal-content {
1359
- max-height: 90%;
1360
- overflow-y: auto;
1361
- overflow-x: hidden;
1362
- background-color: #fff;
1363
- max-width: 730px;
1364
- margin: 0;
1365
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
1366
- position: relative;
1367
- -webkit-transition: all 200ms ease-out;
1368
- transition: all 200ms ease-out;
1369
- width: 90%;
 
1370
  }
1371
 
1372
  .admin-bar .tutor-modal-wrap .tutor-modal-content {
1373
- max-height: calc(90% - 32px);
1374
- margin-top: 32px;
1375
  }
1376
 
1377
  .admin-bar.mceContentBody .tutor-modal-wrap .tutor-modal-content {
1378
- max-height: calc(90% - 88px);
1379
- margin-top: 88px;
1380
  }
1381
 
1382
  .tutor-modal-wrap .modal-footer {
1383
- padding: 20px;
1384
- border-top: 1px solid #eee;
1385
  }
 
1386
  .tutor-modal-wrap .modal-container {
1387
- min-height: 200px;
1388
- padding: 20px;
1389
  }
 
1390
  .tutor-modal-wrap .modal-container p {
1391
- margin: 5px 0 15px;
1392
  }
1393
 
1394
  .tutor-instructors-modal-wrap.tutor-modal-wrap .modal-container {
1395
- padding: 20px;
1396
- background: #fff;
1397
- min-height: auto;
1398
  }
1399
 
1400
  .tutor-modal-wrap .modal-header {
1401
- display: -webkit-box;
1402
- display: -ms-flexbox;
1403
- display: flex;
1404
  }
 
1405
  .tutor-modal-wrap .search-bar {
1406
- -ms-flex-preferred-size: 0;
1407
- flex-basis: 0;
1408
- -webkit-box-flex: 1;
1409
- -ms-flex-positive: 1;
1410
- flex-grow: 1;
1411
- padding-top: 10px;
1412
- padding-left: 20px;
1413
- padding-right: 20px;
1414
  }
 
1415
  .tutor-modal-wrap .search-bar input[type="text"] {
1416
- width: 100%;
1417
- border: 1px solid #eee;
1418
- box-shadow: none;
1419
- padding: 10px;
 
1420
  }
1421
 
1422
  .tutor-modal-wrap .modal-title {
1423
- -ms-flex-preferred-size: 0;
1424
- flex-basis: 0;
1425
- -webkit-box-flex: 1;
1426
- -ms-flex-positive: 1;
1427
- flex-grow: 1;
1428
  }
 
1429
  .tutor-modal-wrap a.modal-close-btn {
1430
- background: #ffffff;
1431
- width: 50px;
1432
- height: 59px;
1433
- display: inline-block;
1434
- text-align: center;
1435
- line-height: 57px;
1436
- color: #3a3d42;
1437
- font-size: 15px;
1438
- position: absolute;
1439
- right: 0;
1440
- top: 0;
1441
- text-decoration: none;
1442
  }
 
1443
  .tutor-modal-wrap .modal-header {
1444
- padding: 15px 20px;
1445
- border-bottom: 1px solid #eeeff1;
1446
- padding-right: 50px;
1447
- align-items: center;
 
 
1448
  }
1449
 
1450
  .tutor-modal-wrap .modal-header .tutor-classic-editor-btn {
1451
- color: var(--tutor-primary-color);
1452
  }
1453
 
1454
  .tutor-modal-wrap .modal-header h1 {
1455
- padding: 0;
1456
- margin: 0;
1457
- line-height: 30px;
1458
- font-size: 23px;
1459
  }
 
1460
  .tutor-modal-wrap .modal-container {
1461
- background-color: #f1f1f1;
1462
- padding: 0;
1463
  }
 
1464
  #tutor-quiz-modal-tab-items-wrap {
1465
- background-color: #fff;
1466
- font-size: 0;
1467
- overflow: hidden;
1468
  }
 
1469
  #tutor-quiz-builder-modal-tabs-container {
1470
- padding: 20px;
1471
  }
 
1472
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item {
1473
- padding: 15px 25px;
1474
- display: inline-block;
1475
- color: #393c40;
1476
- border-left: 1px solid #f1f1f1;
1477
- font-size: 14px;
1478
- overflow: hidden;
1479
- line-height: 17px;
1480
- vertical-align: middle;
1481
  }
 
1482
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active {
1483
- background-color: #f1f1f1;
1484
  }
 
1485
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item i {
1486
- float: left;
1487
- font-size: 17px;
1488
- line-height: 1;
1489
- margin-right: 5px;
1490
  }
 
1491
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active i {
1492
- color: var(--tutor-primary-color);
1493
  }
 
1494
  .quiz-modal-tab-navigation-btn {
1495
- padding: 10px 20px;
1496
- border-radius: 3px;
1497
  }
 
1498
  .quiz-modal-btn-next,
1499
  .quiz-modal-btn-next:focus,
1500
  .quiz-modal-btn-first-step,
@@ -1503,116 +1739,126 @@ Quiz Modal
1503
  .quiz-modal-question-save-btn:focus,
1504
  .quiz-modal-settings-save-btn,
1505
  .quiz-modal-settings-save-btn:focus {
1506
- background-color: var(--tutor-primary-color);
1507
- color: #ffffff;
1508
  }
 
1509
  .quiz-modal-btn-next:hover,
1510
  .quiz-modal-btn-first-step:hover,
1511
  .quiz-modal-question-save-btn:hover,
1512
  .quiz-modal-settings-save-btn:hover {
1513
- color: #ffffff;
1514
  }
 
1515
  .quiz-modal-btn-cancel,
1516
  .quiz-modal-btn-back {
1517
- color: #4b5981;
1518
- border: 1px solid #d4dadb;
1519
  }
 
1520
  .tutor-quiz-builder-form-row .quiz-form-warning {
1521
- color: #e88e06;
1522
  }
 
1523
  .tutor-assignment-builder-modal-wrap .modal-container {
1524
- padding: 10px;
1525
  }
 
1526
  .assignment-modal-form-wrap
1527
- .tutor-option-field.tutor-assignment-modal-title-wrap {
1528
- margin: 0;
1529
  }
 
1530
  .tutor-quiz-question-answers-form {
1531
- background-color: #fff;
1532
- padding: 20px;
1533
- -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
1534
- transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
1535
- border: 1px solid #dedede;
1536
- border-radius: 3px;
1537
- margin-bottom: 20px;
1538
  }
 
1539
  .advanced-options-tab-item {
1540
- float: right;
1541
  }
1542
 
1543
  .modal-container .modal-classic-btn-wrap {
1544
- position: absolute;
1545
- right: 45px;
1546
- top: 20px;
1547
  }
 
1548
  .rtl .modal-container .modal-classic-btn-wrap {
1549
- left: 20px;
1550
- right: auto;
1551
  }
 
1552
  .modal-container .modal-classic-btn-wrap .tutor-classic-editor-btn {
1553
- color: var(--tutor-primary-color);
1554
  }
1555
 
1556
  /** Tutor Quiz Modal Form */
1557
-
1558
  /*notice*/
1559
  .tutor-quiz-builder-modal-tabs-notice {
1560
- background: #d8d8d8;
1561
- line-height: 20px;
1562
- padding: 10px 30px;
1563
- color: #a4a4a4;
1564
  }
 
1565
  #tutor-course-topics .tutor-quiz-builder-modal-tabs-notice a {
1566
- color: #a4a4a4;
1567
- text-decoration: underline;
1568
  }
1569
- /*end notice*/
1570
 
 
1571
  /* .tutor-quiz-builder-group */
1572
-
1573
  .tutor-quiz-builder-group {
1574
- margin-bottom: 25px;
1575
  }
1576
 
1577
  .tutor-quiz-builder-group > p.warning {
1578
- color: red;
1579
- font-size: 12px;
1580
  }
 
1581
  .tutor-quiz-builder-group > p.help {
1582
- color: #a4a4a4;
1583
- font-size: 12px;
1584
- margin-top: 7px;
1585
  }
1586
 
1587
  .tutor-quiz-builder-group h4 {
1588
- font-size: 14px;
1589
- color: #393c40;
1590
- font-weight: 600;
1591
- margin: 0 0 15px;
1592
  }
1593
 
1594
  .tutor-quiz-builder-row {
1595
- display: -webkit-box;
1596
- display: -ms-flexbox;
1597
- display: flex;
1598
- -webkit-box-align: center;
1599
- -ms-flex-align: center;
1600
- align-items: center;
1601
- margin-left: -10px;
1602
- margin-right: -10px;
1603
  }
1604
 
1605
  .tutor-quiz-builder-col {
1606
- padding-left: 10px;
1607
- padding-right: 10px;
1608
- -webkit-box-flex: 1;
1609
- -ms-flex-positive: 1;
1610
- flex-grow: 1;
1611
  }
 
1612
  .tutor-quiz-builder-col.auto-width {
1613
- -webkit-box-flex: 0;
1614
- -ms-flex: 0 0 auto;
1615
- flex: 0 0 auto;
1616
  }
1617
 
1618
  .tutor-quiz-builder-group textarea,
@@ -1620,771 +1866,865 @@ Quiz Modal
1620
  .tutor-quiz-builder-group input[type="email"],
1621
  .tutor-quiz-builder-group input[type="number"],
1622
  .tutor-quiz-builder-group input[type="password"] {
1623
- line-height: 40px;
1624
- padding: 5px 0;
1625
- text-indent: 15px;
1626
- background: #fff;
1627
- display: inline-block;
1628
- border: 1px solid #dedede;
1629
- border-radius: 3px;
1630
- box-shadow: none;
1631
- height: 40px;
1632
- margin: 0;
1633
- width: 100%;
1634
- color: #393c40;
1635
- font-size: 14px;
 
1636
  }
 
1637
  .tutor-quiz-builder-group textarea:focus,
1638
  .tutor-quiz-builder-group input[type="text"]:focus,
1639
  .tutor-quiz-builder-group input[type="email"]:focus,
1640
  .tutor-quiz-builder-group input[type="number"]:focus,
1641
  .tutor-quiz-builder-group input[type="password"]:focus {
1642
- border-color: var(--tutor-primary-color);
1643
  }
1644
 
1645
  .tutor-quiz-builder-group textarea {
1646
- height: 80px;
1647
- resize: none;
1648
- text-indent: 0;
1649
- padding: 11px 15px;
1650
- line-height: 22px;
1651
  }
1652
 
1653
  .tutor-quiz-builder-group textarea[name="quiz_description"] {
1654
- height: 150px;
1655
  }
1656
 
1657
  .tutor-quiz-builder-group select {
1658
- border: 1px solid #ccc;
1659
- box-shadow: none;
1660
- height: 42px !important;
1661
- padding: 0 24px 0 12px!important;
1662
- margin: 0;
 
1663
  }
1664
 
1665
  .tutor-quiz-builder-modal-control-btn-group {
1666
- display: -webkit-box;
1667
- display: -ms-flexbox;
1668
- display: flex;
1669
- margin-top: 20px;
1670
  }
1671
 
1672
  .question_form_inner {
1673
- padding: 0 20px 20px;
1674
- margin-top: 0;
1675
  }
1676
 
1677
  .tutor-quiz-builder-modal-control-btn-group .quiz-builder-btn-group-left {
1678
- -webkit-box-flex: 1;
1679
- -ms-flex: 1;
1680
- flex: 1;
1681
  }
 
1682
  .tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn {
1683
- display: inline-block;
1684
  }
 
1685
  .tutor-quiz-builder-modal-control-btn-group
1686
- .quiz-modal-tab-navigation-btn:not(:last-child) {
1687
- margin-right: 6px;
1688
  }
 
1689
  .modal-container .tutor-quiz-add-question-btn {
1690
- border: 1px solid #c6c9cf;
1691
- padding: 10px 15px;
1692
- color: #393c40;
1693
- display: inline-block;
1694
- border-radius: 3px;
1695
  }
 
1696
  .modal-container .tutor-quiz-add-question-btn i {
1697
- color: var(--tutor-primary-color);
1698
- line-height: 16px;
1699
- margin-right: 3px;
1700
  }
1701
 
1702
  .quiz-form-field-col {
1703
- margin-right: 20px;
1704
  }
 
1705
  .quiz-form-field-col.result-fail {
1706
- width: 100%;
1707
  }
 
1708
  .quiz-modal-switch-field {
1709
- display: -webkit-box;
1710
- display: -ms-flexbox;
1711
- display: flex;
1712
- margin-top: 30px;
1713
  }
 
1714
  .quiz-modal-switch-field label.btn-switch {
1715
- margin-right: 20px;
1716
- position: relative;
1717
  }
1718
 
1719
  label.btn-switch input:checked + .btn-slider {
1720
- background-color: var(--tutor-success-button-color);
1721
  }
1722
 
1723
  .btn-switch + span {
1724
- line-height: 24px;
1725
- display: inline-block;
1726
- margin-left: 8px;
1727
- font-weight: 700;
1728
- font-size: 14px;
1729
  }
1730
 
1731
  .tutor-select {
1732
- position: relative;
1733
  }
 
1734
  .tutor-select .select-header {
1735
- border: 1px solid #dedede;
1736
- margin: 0;
1737
- padding: 10px;
1738
- width: 100%;
1739
- box-shadow: none;
1740
- background-color: #fff;
1741
- display: -webkit-box;
1742
- display: -ms-flexbox;
1743
- display: flex;
1744
- cursor: pointer;
1745
- box-sizing: border-box;
1746
- border-radius: 3px;
 
 
1747
  }
 
1748
  .tutor-select .select-header .lead-option {
1749
- -webkit-box-flex: 1;
1750
- -ms-flex: 1;
1751
- flex: 1;
1752
  }
 
1753
  .tutor-select .select-header .select-dropdown {
1754
- line-height: 22px;
1755
  }
 
1756
  .tutor-select .select-header .lead-option .question-type-pro {
1757
- display: none;
1758
  }
 
1759
  .tutor-select .tutor-select-options {
1760
- border: 1px solid #dedede;
1761
- background-color: #fff;
1762
- padding: 22px 10px 8px;
1763
- width: calc(100% - 22px);
1764
- position: absolute;
1765
- font-size: 0;
1766
- z-index: 9;
1767
- display: -webkit-box;
1768
- display: -ms-flexbox;
1769
- display: flex;
1770
- -ms-flex-wrap: wrap;
1771
- flex-wrap: wrap;
1772
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
1773
- top: 55px;
1774
- border-radius: 3px;
 
1775
  }
 
1776
  .tutor-select .tutor-select-options .tutor-select-option {
1777
- width: calc(33.3333% - 22px);
1778
- display: inline-block;
1779
- padding: 9px;
1780
- cursor: pointer;
1781
- position: relative;
1782
- box-sizing: border-box;
1783
- margin: 0 11px 15px;
1784
- border: 1px solid #e2e2e2;
1785
- border-radius: 3px;
 
1786
  }
 
1787
  .tutor-select .tutor-select-options .tutor-select-option:hover {
1788
- border-color: var(--tutor-primary-color);
1789
  }
 
1790
  .question-type-pro {
1791
- color: #fff;
1792
- font-size: 9px;
1793
- right: 11px;
1794
- position: absolute;
1795
- top: 50%;
1796
- -webkit-transform: translateY(-50%);
1797
- transform: translateY(-50%);
1798
  }
 
1799
  i.tutor-icon-block {
1800
- padding: 0;
1801
- color: #fff;
1802
- border-radius: 3px;
1803
- margin-right: 2px;
1804
- display: inline-block;
1805
- width: 22px;
1806
- height: 22px;
1807
- text-align: center;
1808
- line-height: 22px;
1809
  }
 
1810
  i.tutor-icon-block.tutor-icon-short-ans {
1811
- background-color: #f37512;
1812
  }
 
1813
  i.tutor-icon-block.tutor-icon-image-ans {
1814
- background-color: #a322f9;
1815
  }
 
1816
  i.tutor-icon-block.tutor-icon-yes-no {
1817
- background-color: var(--tutor-primary-color);
1818
  }
 
1819
  i.tutor-icon-block.tutor-icon-multiple-choice {
1820
- background-color: #9034a9;
1821
  }
 
1822
  i.tutor-icon-block.tutor-icon-mark {
1823
- background-color: #00b890;
1824
  }
 
1825
  i.tutor-icon-block.tutor-icon-open-ended {
1826
- background-color: #fe3129;
1827
  }
 
1828
  i.tutor-icon-block.tutor-icon-fill-gaps {
1829
- background-color: #ffbf00;
1830
  }
 
1831
  i.tutor-icon-block.tutor-icon-answer-shorting {
1832
- background-color: #f80089;
1833
  }
 
1834
  i.tutor-icon-block.tutor-icon-assesment {
1835
- background-color: #274055;
1836
  }
 
1837
  i.tutor-icon-block.tutor-icon-matching {
1838
- background-color: #8a4a1b;
1839
  }
 
1840
  i.tutor-icon-block.tutor-icon-image-matching {
1841
- background-color: #8a4a1b;
1842
  }
 
1843
  i.tutor-icon-block.tutor-icon-ordering {
1844
- background-color: var(--tutor-primary-color);
1845
  }
 
1846
  i.tutor-icon-block.tutor-icon-plus-square-button,
1847
  i.tutor-icon-block.tutor-icon-plus {
1848
- background-color: var(--tutor-success-button-color);
1849
  }
1850
 
1851
  .create-lesson-in-topic-btn i.tutor-icon-block.tutor-icon-plus {
1852
- background-color: var(--tutor-primary-color);
1853
  }
1854
 
1855
  a.back-to-quiz-questions-btn {
1856
- font-size: 16px;
1857
- font-weight: 300;
1858
- color: #393c40;
1859
- margin-bottom: 10px;
1860
- display: block;
1861
  }
1862
 
1863
  a.back-to-quiz-questions-btn.tutor-updating-message i {
1864
- display: none;
1865
  }
1866
 
1867
  .modal-container .quiz-questions-form {
1868
- padding: 20px;
1869
  }
1870
 
1871
  #quiz-builder-tab-advanced-options
1872
- .tutor-quiz-builder-form-cols-row
1873
- .quiz-form-field-col:first-child {
1874
- -webkit-box-flex: 0;
1875
- -ms-flex: 0 0 150px;
1876
- flex: 0 0 150px;
1877
  }
 
1878
  .question-form-header {
1879
- margin-bottom: 20px;
1880
  }
 
1881
  .quiz-question-form-body {
1882
- margin-bottom: 25px;
1883
  }
 
1884
  .quiz-builder-question-wrap {
1885
- display: -webkit-box;
1886
- display: -ms-flexbox;
1887
- display: flex;
1888
- margin-bottom: 15px;
1889
  }
 
1890
  .quiz-builder-question {
1891
- -webkit-box-flex: 1;
1892
- -ms-flex: 1;
1893
- flex: 1;
1894
- display: -webkit-box;
1895
- display: -ms-flexbox;
1896
- display: flex;
1897
- background: #fff;
1898
- padding: 10px;
1899
- border: 1px solid #e2e2e2;
1900
- border-radius: 3px;
1901
- max-width: calc(100% - 52px);
1902
  }
 
1903
  .quiz-builder-question .question-sorting {
1904
- margin-right: 10px;
1905
- line-height: 22px;
1906
  }
 
1907
  .quiz-builder-question .question-sorting i {
1908
- display: block;
1909
- line-height: 24px;
1910
  }
 
1911
  .quiz-builder-question .question-edit-icon {
1912
- line-height: 22px;
1913
  }
 
1914
  .quiz-builder-question
1915
- .question-edit-icon
1916
- .tutor-quiz-open-question-form.tutor-updating-message
1917
- i {
1918
- display: none;
1919
  }
 
1920
  .quiz-builder-question .question-title {
1921
- -webkit-box-flex: 1;
1922
- -ms-flex: 1;
1923
- flex: 1;
1924
- line-height: 22px;
1925
- text-overflow: ellipsis;
1926
- overflow: hidden;
1927
- white-space: nowrap;
1928
- margin-right: 10px;
1929
  }
 
1930
  .quiz-builder-question .question-icon {
1931
- -webkit-box-flex: 0;
1932
- -ms-flex: 0 0 155px;
1933
- flex: 0 0 155px;
1934
  }
 
1935
  .quiz-builder-qustion-trash a {
1936
- display: block;
1937
- padding: 0 0 0 10px;
1938
- font-size: 20px;
1939
- color: rgba(57, 60, 64, 0.4);
1940
- line-height: 44px;
1941
  }
 
1942
  .tutor-quiz-builder-modal-wrap .tutor-field-type-slider {
1943
- border: 1px solid #dedede;
1944
- padding: 20px 70px 20px 10px;
1945
- background-color: #ffffff;
1946
- position: relative;
1947
- border-radius: 4px;
1948
  }
 
1949
  .tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content {
1950
- background-color: var(--tutor-primary-color);
1951
- border: none;
1952
- height: 4px;
1953
- border-radius: 4px;
1954
  }
 
1955
  .tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-header {
1956
- background: #dedede;
1957
- border-radius: 4px;
1958
  }
 
1959
  .tutor-quiz-builder-modal-wrap
1960
- .tutor-field-type-slider
1961
- .ui-widget-content
1962
- .ui-state-default {
1963
- background-color: var(--tutor-primary-color);
1964
- border: 1px solid var(--tutor-primary-color);
1965
- border-radius: 50%;
1966
  }
 
1967
  .tutor-quiz-builder-modal-wrap
1968
- .tutor-field-type-slider
1969
- .tutor-field-type-slider-value {
1970
- font-size: 16px;
1971
- font-weight: 600;
1972
- background: var(--tutor-primary-color);
1973
- position: absolute;
1974
- right: 5px;
1975
- top: 50%;
1976
- margin: 0;
1977
- -webkit-transform: translateY(-50%);
1978
- transform: translateY(-50%);
1979
- line-height: 34px;
1980
- width: 43px;
1981
- text-align: center;
1982
- border-radius: 4px;
1983
- color: #fff;
1984
  }
 
1985
  .tutor-quiz-builder-modal-wrap
1986
- .tutor-field-type-slider
1987
- .tutor-field-type-slider-value:before {
1988
- content: "";
1989
- position: absolute;
1990
- border: 7px solid transparent;
1991
- top: 50%;
1992
- border-right-color: var(--tutor-primary-color);
1993
- right: 100%;
1994
- -webkit-transform: translateY(-50%);
1995
- transform: translateY(-50%);
1996
  }
 
1997
  .tutor-quiz-answer-wrap {
1998
- display: -webkit-box;
1999
- display: -ms-flexbox;
2000
- display: flex;
2001
  }
 
2002
  .tutor-quiz-answer {
2003
- background-color: #fff;
2004
- -webkit-box-flex: 1;
2005
- -ms-flex: 1;
2006
- flex: 1;
2007
- padding: 10px 15px;
2008
- border: 1px solid #dedede;
2009
- display: -webkit-box;
2010
- display: -ms-flexbox;
2011
- display: flex;
2012
- line-height: 22px;
2013
- border-radius: 3px;
2014
- margin-bottom: 15px;
2015
  }
 
2016
  .tutor-quiz-answer .tutor-quiz-answer-edit a {
2017
- display: block;
2018
- padding: 0px 9px;
2019
  }
 
2020
  .tutor-quiz-answer-trash-wrap a.answer-trash-btn {
2021
- padding: 0 10px;
2022
- display: inline-block;
2023
- line-height: 44px;
2024
  }
 
2025
  span.tutor-quiz-answer-title {
2026
- -webkit-box-flex: 1;
2027
- -ms-flex: 1;
2028
- flex: 1;
2029
  }
 
2030
  .tutor-quiz-answer-media .option-media-preview {
2031
- margin-bottom: 20px;
2032
  }
 
2033
  .tutor-quiz-answer-media .option-media-preview img {
2034
- max-width: 80px;
2035
- height: auto;
2036
  }
 
2037
  .tutor-question-answer-image {
2038
- margin-right: 10px;
2039
  }
 
2040
  .tutor-question-answer-image img {
2041
- max-height: 25px;
2042
- width: auto;
2043
  }
 
2044
  button#quiz-answer-save-btn,
2045
  button#quiz-answer-edit-btn {
2046
- background-color: var(--tutor-success-button-color);
2047
- color: #fff;
2048
- padding: 10px 15px;
2049
- border: none;
2050
- cursor: pointer;
2051
  }
 
2052
  button#quiz-answer-save-btn:hover,
2053
  button#quiz-answer-edit-btn:hover {
2054
- background-color: var(--tutor-success-button-color);
2055
  }
2056
- /**
2057
- Tutor Media Upload
2058
- */
2059
 
 
 
 
2060
  .tutor-media-upload-wrap {
2061
- border: 1px solid #dedede;
2062
- display: -webkit-box;
2063
- display: -ms-flexbox;
2064
- display: flex;
2065
- width: 130px;
2066
  }
 
2067
  .tutor-media-upload-wrap img {
2068
- max-width: 100%;
2069
  }
 
2070
  .tutor-media-preview {
2071
- -webkit-box-flex: 1;
2072
- -ms-flex: 1;
2073
- flex: 1;
2074
  }
 
2075
  .tutor-media-upload-btn {
2076
- display: block;
2077
- padding: 10px;
2078
- font-size: 50px;
2079
- line-height: 50px;
2080
- text-align: center;
2081
- color: #dedede;
2082
  }
 
2083
  .tutor-media-upload-trash-wrap {
2084
- border-left: 1px solid #dedede;
2085
  }
 
2086
  .tutor-media-upload-trash {
2087
- color: #dedede;
2088
- display: block;
2089
- line-height: 50px;
2090
- padding: 12px;
2091
  }
 
2092
  .tutor-quiz-answers-form-footer.tutor-quiz-builder-form-row {
2093
- margin-top: 40px;
2094
- margin-bottom: 10px;
2095
  }
2096
 
2097
  /**
2098
- #End Quiz Modal
2099
- */
2100
-
2101
  .tutor-available-quizzes .added-quiz-item {
2102
- background-color: #f5f5f5;
2103
- padding: 10px;
2104
- margin-bottom: 2px;
2105
- display: -webkit-box;
2106
- display: -ms-flexbox;
2107
- display: flex;
2108
  }
 
2109
  .tutor-available-quizzes .added-quiz-item .quiz-name {
2110
- -ms-flex-preferred-size: 0;
2111
- flex-basis: 0;
2112
- -webkit-box-flex: 1;
2113
- -ms-flex-positive: 1;
2114
- flex-grow: 1;
2115
  }
 
2116
  .tutor-add-quiz-button-wrap {
2117
- margin: 20px 0;
2118
  }
 
2119
  .tutor-add-quiz-button-wrap a {
2120
- color: #2756d1;
2121
  }
 
2122
  .tutor-quiz-delete-btn {
2123
- color: #ff0000;
2124
  }
 
2125
  p.quiz-search-suggest-text {
2126
- margin-top: 30px;
2127
- font-style: italic;
2128
- font-size: 12px;
2129
  }
 
2130
  span.result-pass {
2131
- background-color: var(--tutor-success-button-color);
2132
- color: #fff;
2133
- padding: 3px 5px;
2134
- border-radius: 2px;
2135
  }
 
2136
  span.result-fail {
2137
- color: #ff0000;
2138
  }
 
2139
  span.result-review-required {
2140
- background: #f5b30d;
2141
- color: #fff;
2142
- padding: 3px 5px;
2143
- border-radius: 2px;
2144
  }
2145
 
2146
  .tutor-emails-lists-wrap {
2147
- background-color: #ffffff;
2148
- padding: 20px;
2149
  }
 
2150
  .tutor-emails-lists-wrap .wp-list-table td {
2151
- padding: 10px 20px;
2152
  }
2153
- /*
2154
- Tutor Instructor
2155
- */
2156
 
 
 
 
2157
  .tutor-course-instructors-metabox-wrap {
2158
- margin-top: 10px;
2159
- margin-left: -10px;
2160
  }
 
2161
  .tutor-add-instructor-button-wrap {
2162
- padding-left: 10px;
2163
  }
 
2164
  .tutor-course-available-instructors {
2165
- display: -webkit-box;
2166
- display: -ms-flexbox;
2167
- display: flex;
2168
- -ms-flex-wrap: wrap;
2169
- flex-wrap: wrap;
2170
  }
2171
 
2172
  .tutor-course-available-instructors .added-instructor-item {
2173
- -webkit-box-flex: 0;
2174
- -ms-flex: 0 0 calc(50% - 20px);
2175
- flex: 0 0 calc(50% - 20px);
2176
- max-width: calc(50% - 20px);
2177
- border: 1px solid #dcdfe5;
2178
- padding: 13px;
2179
- display: -webkit-inline-box;
2180
- display: -ms-inline-flexbox;
2181
- display: inline-flex;
2182
- -webkit-box-align: center;
2183
- -ms-flex-align: center;
2184
- align-items: center;
2185
- border-radius: 4px;
2186
- position: relative;
2187
- box-sizing: border-box;
2188
- margin: 0px 10px 20px;
 
2189
  }
2190
 
2191
  @media (min-width: 1300px) {
2192
- .tutor-course-available-instructors .added-instructor-item {
2193
- -ms-flex: 0 0 calc(33.333% - 20px);
2194
- flex: 0 0 calc(33.333% - 20px);
2195
- max-width: calc(33.333% - 20px);
2196
- }
 
2197
  }
 
2198
  @media (max-width: 546px) {
2199
- .tutor-course-available-instructors .added-instructor-item {
2200
- -ms-flex: 0 0 100%;
2201
- flex: 0 0 100%;
2202
- max-width: 100%;
2203
- }
 
2204
  }
2205
 
2206
  .tutor-course-available-instructors .added-instructor-item .instructor-name {
2207
- position: relative;
2208
  }
2209
 
2210
  .tutor-course-available-instructors
2211
- .added-instructor-item
2212
- .instructor-name
2213
- img {
2214
- display: inline-block;
2215
- margin-left: 10px;
2216
- width: 18px;
2217
  }
2218
 
2219
  .tutor-course-available-instructors
2220
- .added-instructor-item
2221
- .instructor-name
2222
- img:hover
2223
- + i.instructor-name-tooltip {
2224
- opacity: 1;
2225
  }
2226
 
2227
  .tutor-course-available-instructors
2228
- .added-instructor-item
2229
- i.instructor-name-tooltip {
2230
- -webkit-transition: 300ms;
2231
- transition: 300ms;
2232
- opacity: 0;
2233
- position: absolute;
2234
- bottom: 34px;
2235
- right: 9px;
2236
- background: #2a344f;
2237
- -webkit-transform: translateX(50%);
2238
- transform: translateX(50%);
2239
- color: #fff;
2240
- font-size: 12px;
2241
- font-style: normal;
2242
- padding: 0 8px;
2243
- border-radius: 15px;
2244
- line-height: 20px;
2245
- z-index: 1;
2246
  }
2247
 
2248
  .tutor-course-available-instructors
2249
- .added-instructor-item
2250
- i.instructor-name-tooltip::before {
2251
- content: "";
2252
- position: absolute;
2253
- border: 5px solid #2a344f;
2254
- bottom: -3px;
2255
- left: 50%;
2256
- margin-left: -5px;
2257
- -webkit-transform: rotate(45deg);
2258
- transform: rotate(45deg);
2259
- z-index: -1;
2260
  }
2261
 
2262
  .tutor-course-available-instructors .added-instructor-item .instructor-control {
2263
- position: absolute;
2264
- right: 14px;
2265
- top: 50%;
2266
- font-size: 12px;
2267
- -webkit-transform: translateY(-50%);
2268
- transform: translateY(-50%);
2269
- opacity: 0;
2270
- -webkit-transition: 300ms;
2271
- transition: 300ms;
2272
  }
2273
 
2274
  .tutor-course-available-instructors
2275
- .added-instructor-item
2276
- .instructor-control
2277
- a {
2278
- color: red;
2279
- text-decoration: none;
2280
  }
2281
 
2282
  .tutor-course-available-instructors
2283
- .added-instructor-item:hover
2284
- .instructor-control {
2285
- opacity: 1;
2286
  }
2287
 
2288
  .tutor-course-available-instructors .added-instructor-item .instructor-icon {
2289
- height: 45px;
2290
- width: 45px;
2291
- overflow: hidden;
2292
- border-radius: 50px;
2293
- margin-right: 15px;
2294
  }
 
2295
  .tutor-course-available-instructors
2296
- .added-instructor-item
2297
- .instructor-icon
2298
- img {
2299
- width: 100%;
2300
- height: auto;
2301
  }
 
2302
  /*@media (min-width: 547px){*/
2303
  /*.tutor-course-available-instructors .added-instructor-item:nth-child(2n) {*/
2304
  /*margin-left: 30px;*/
2305
  /*}*/
2306
  /*}*/
2307
-
2308
  /*
2309
- End new
2310
- */
2311
-
2312
  .answer-image-matched-wrap {
2313
- display: -webkit-box;
2314
- display: -ms-flexbox;
2315
- display: flex;
2316
  }
 
2317
  .image-matching-item {
2318
- -webkit-box-flex: 0;
2319
- -ms-flex: 0 0 50px;
2320
- flex: 0 0 50px;
2321
- margin-right: 10px;
2322
  }
 
2323
  .image-matching-item p {
2324
- margin-bottom: 5px;
2325
- margin-top: 0;
2326
- color: #878a8f;
2327
  }
 
2328
  .image-matching-item img {
2329
- max-width: 80px;
2330
  }
 
2331
  span.filled_dash_unser {
2332
- font-weight: bold;
2333
- text-decoration: underline;
2334
- margin: 0 5px;
2335
  }
 
2336
  /**
2337
- Uninstall
2338
- */
2339
  .wrap.tutor-uninstall-wrap {
2340
- background: #fff;
2341
- padding: 20px;
2342
  }
 
2343
  .tutor-uninstall-btn-group {
2344
- margin: 50px 0;
2345
  }
2346
 
2347
  /**
2348
- Updating Messsage
2349
- */
2350
  .tutor-updating-message:before {
2351
- display: inline-block;
2352
- font-family: "tutor";
2353
- -webkit-font-smoothing: antialiased;
2354
- -moz-osx-font-smoothing: grayscale;
2355
- vertical-align: top;
2356
- content: "\e91d";
2357
- -webkit-animation: rotation 2s infinite linear;
2358
- animation: rotation 2s infinite linear;
2359
- margin-right: 6px;
2360
  }
 
2361
  .rtl .tutor-updating-message:before {
2362
- margin-right: 0;
2363
- margin-left: 6px;
2364
  }
2365
 
2366
  /**
2367
- Lesson Edit Modal
2368
- */
2369
-
2370
  .lesson-modal-form-wrap .lesson-modal-field-row {
2371
- padding: 10px 0;
2372
  }
 
2373
  .lesson-modal-field.tutor-lesson-modal-title-wrap {
2374
- width: 95%;
2375
  }
 
2376
  .tutor-lesson-modal-title-wrap input {
2377
- width: 100%;
2378
  }
 
2379
  .lesson-modal-form-wrap .assignment-modal-field-row,
2380
  .lesson-modal-form-wrap .tutor-lesson-attachments-metabox,
2381
  .lesson-modal-form-wrap .tutor-option-field-row {
2382
- padding: 10px 0;
2383
- /*margin-bottom: 20px;
2384
- border-bottom: none;*/
2385
  }
 
2386
  .lesson-modal-form-wrap .tutor-option-field-row:last-child {
2387
- border-bottom: none;
2388
  }
2389
 
2390
  .lesson-modal-form-wrap .tutor-option-field-row textarea,
@@ -2392,1370 +2732,1663 @@ Lesson Edit Modal
2392
  .lesson-modal-form-wrap .tutor-option-field-row input[type="email"],
2393
  .lesson-modal-form-wrap .tutor-option-field-row input[type="number"],
2394
  .lesson-modal-form-wrap .tutor-option-field-row input[type="password"] {
2395
- line-height: 40px;
2396
- padding: 5px 0;
2397
- text-indent: 15px;
2398
- background: #fff;
2399
- display: inline-block;
2400
- border: 1px solid #dedede;
2401
- border-radius: 3px;
2402
- box-shadow: none;
2403
- height: 40px;
2404
- margin: 0;
2405
- width: 100%;
2406
- color: #393c40;
2407
- font-size: 14px;
2408
- transition: 300ms;
 
 
2409
  }
 
2410
  .lesson-modal-form-wrap .tutor-option-field-row textarea {
2411
- line-height: 26px;
2412
- min-height: 150px;
2413
- text-indent: 0;
2414
- padding: 15px;
2415
  }
 
2416
  .lesson-modal-form-wrap .tutor-option-field-row textarea:focus,
2417
  .lesson-modal-form-wrap .tutor-option-field-row input[type="text"]:focus,
2418
  .lesson-modal-form-wrap .tutor-option-field-row input[type="email"]:focus,
2419
  .lesson-modal-form-wrap .tutor-option-field-row input[type="number"]:focus,
2420
  .lesson-modal-form-wrap .tutor-option-field-row input[type="password"]:focus {
2421
- border-color: var(--tutor-primary-color);
2422
  }
2423
 
2424
  .lesson-modal-form-wrap .tutor-option-field-row select {
2425
- height: 40px;
2426
  }
2427
 
2428
  .lesson-modal-form-wrap .tutor-lesson-attachments-metabox {
2429
- margin-top: 0;
2430
  }
2431
 
2432
  .assignment-modal-form-wrap,
2433
  .lesson-modal-form-wrap {
2434
- padding: 20px;
2435
- padding-bottom: 48px;
2436
  }
 
2437
  .tutor-lesson-modal-wrap .modal-footer {
2438
- padding: 10px 20px;
2439
- background-color: #fff;
2440
- width: 100%;
2441
- position: sticky;
2442
- bottom: 0;
2443
- position: -webkit-sticky;
2444
  }
 
2445
  .tutor-option-field .tutor-lesson-edit-feature-img {
2446
- width: 100px;
2447
- position: relative;
2448
  }
 
2449
  .tutor-option-field .tutor-lesson-edit-feature-img img {
2450
- width: 100%;
2451
- height: auto;
2452
  }
 
2453
  a.tutor-lesson-thumbnail-delete-btn {
2454
- position: absolute;
2455
- top: 0;
2456
- right: 0;
2457
- color: red;
2458
- background: #fff;
2459
- padding: 3px 5px;
2460
- border-radius: 5px;
2461
  }
 
2462
  .tutor-get-pro-text {
2463
- color: #e02424;
2464
  }
 
2465
  .updating-icon:before {
2466
- font-family: "tutor";
2467
- margin-right: 5px;
2468
- content: "\e91d";
2469
- -webkit-animation: spin 1s steps(8) infinite;
2470
- animation: spin 1s steps(8) infinite;
2471
- display: inline-block;
2472
  }
 
2473
  .tutor-notice-warning {
2474
- background-color: #fcf8e3;
2475
- border-color: #faebcc;
2476
- padding: 20px;
2477
- margin-bottom: 10px;
2478
  }
2479
 
2480
  /**
2481
- Withdraw table
2482
- */
2483
  .withdraw-method-data-row {
2484
- display: -webkit-box;
2485
- display: -ms-flexbox;
2486
- display: flex;
2487
  }
 
2488
  span.withdraw-method-label {
2489
- width: 140px;
2490
  }
 
2491
  .withdraw-method-value {
2492
- margin-left: 3px;
2493
  }
 
2494
  .withdraw-status.withdraw-status-approved {
2495
- background: var(--tutor-success-button-color);
2496
- color: #fff;
2497
- padding: 5px 10px;
2498
  }
 
2499
  .withdraw-status.withdraw-status-pending {
2500
- background: #f0efef;
2501
- color: #666666;
2502
- padding: 5px 10px;
2503
  }
 
2504
  .withdraw-status.withdraw-status-rejected {
2505
- background: #ff3842;
2506
- color: #fff;
2507
- padding: 5px 10px;
2508
  }
 
2509
  .withdraw-list-row-actions {
2510
- font-weight: bold;
2511
  }
 
2512
  .withdraw-list-row-actions .approved a {
2513
- color: var(--tutor-success-button-color);
2514
  }
 
2515
  .withdraw-list-row-actions .rejected a {
2516
- color: #ff3842;
2517
  }
2518
 
2519
  /**
2520
- Assignments
2521
- */
2522
-
2523
  .submitted-assignment-wrap {
2524
- background-color: #ffffff;
2525
- padding: 20px;
2526
- margin-top: 20px;
2527
  }
 
2528
  .tutor-individual-attachment-file {
2529
- margin-bottom: 20px;
2530
  }
 
2531
  .tutor-individual-attachment-file p {
2532
- margin: 0 !important;
2533
  }
2534
 
2535
  /**
2536
- Tutor Notice
2537
- */
2538
  .tnotice {
2539
- text-align: left;
2540
- padding: 10px 0;
2541
- background-color: #fff;
2542
- border-radius: 4px;
2543
- position: relative;
2544
- margin-bottom: 10px;
2545
  }
 
2546
  .tnotice:before {
2547
- content: "";
2548
- position: absolute;
2549
- top: 0;
2550
- left: 0;
2551
- width: 4px;
2552
- height: 100%;
2553
- border-top-left-radius: 4px;
2554
- border-bottom-left-radius: 4px;
2555
  }
 
2556
  .tnotice__icon {
2557
- position: absolute;
2558
- top: 50%;
2559
- left: 22px;
2560
- transform: translateY(-50%);
2561
- width: 14px;
2562
- height: 14px;
2563
- padding: 7px;
2564
- border-radius: 50%;
2565
- display: inline-block;
2566
-
2567
- color: #fff;
2568
- text-align: center;
2569
- line-height: 11px;
2570
  }
 
2571
  .tnotice__type {
2572
- color: #3e3e3e;
2573
- font-weight: 700;
2574
- margin-top: 0;
2575
- margin-bottom: 0;
2576
  }
 
2577
  .tnotice__message {
2578
- font-size: 14px;
2579
- margin-top: 0;
2580
- margin-bottom: 0;
2581
- color: #878787;
2582
  }
 
2583
  .tnotice__content {
2584
- padding-left: 70px;
2585
- padding-right: 60px;
2586
  }
 
2587
  .tnotice__close {
2588
- position: absolute;
2589
- right: 22px;
2590
- top: 50%;
2591
- width: 14px;
2592
- cursor: pointer;
2593
- height: 14px;
2594
- fill: #878787;
2595
- transform: translateY(-50%);
 
2596
  }
 
2597
  .tnotice--success .tnotice__icon {
2598
- background-color: #2bde3f;
2599
  }
 
2600
  .tnotice--success:before {
2601
- background-color: #2bde3f;
2602
  }
 
2603
  .tnotice--blue .tnotice__icon {
2604
- background-color: #1d72f3;
2605
  }
 
2606
  .tnotice--blue:before {
2607
- background-color: #1d72f3;
2608
  }
 
2609
  .tnotice--danger .tnotice__icon {
2610
- background-color: #f31e1c;
2611
  }
 
2612
  .tnotice--danger:before {
2613
- background-color: #f31e1c;
2614
  }
2615
 
2616
  /***************************
2617
- * Quiz attempts table
2618
- **************************/
2619
-
2620
  .tutor-quiz-attempt-history td:last-child {
2621
- text-align: center;
2622
  }
 
2623
  .tutor-quiz-attempt-history td:last-child a {
2624
- display: block;
2625
- padding: 10px;
2626
  }
 
2627
  .attempt-review-title {
2628
- font-size: 18px;
2629
- color: var(--tutor-text-size);
2630
- font-weight: 600;
2631
- display: flex;
2632
- align-items: center;
2633
- margin-bottom: 60px;
 
 
 
 
2634
  }
 
2635
  .attempt-review-title i {
2636
- margin-right: 12px;
2637
- color: var(--tutor-primary-color);
2638
  }
 
2639
  .tutor-quiz-attempt-info-row .attempt-view-bottom,
2640
  .tutor-quiz-attempt-info-row .attempt-view-top {
2641
- display: flex;
2642
- justify-content: space-between;
 
 
 
 
2643
  }
 
2644
  .tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col,
2645
  .tutor-quiz-attempt-info-row .attempt-view-top .attempt-info-col {
2646
- display: inline-flex;
2647
- align-items: center;
2648
- max-width: 30%;
 
 
 
 
2649
  }
 
2650
  .tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col {
2651
- align-items: flex-start;
 
 
2652
  }
 
2653
  .tutor-quiz-attempt-info-row .attempt-info-content span.result-pass,
2654
  .tutor-quiz-attempt-info-row .attempt-info-content span.result-fail {
2655
- background: #df3247;
2656
- font-size: 14px;
2657
- font-weight: 400;
2658
- color: #fff;
2659
- padding: 1px 4px;
2660
- margin-right: 13px;
2661
- border-radius: 2px;
2662
  }
 
2663
  .tutor-quiz-attempt-info-row .attempt-info-content span.result-pass {
2664
- background: var(--tutor-success-button-color);
2665
  }
 
2666
  .tutor-quiz-attempt-info-row .attempt-info-content h4,
2667
  .tutor-quiz-attempt-info-row .attempt-info-content h5 {
2668
- font-size: 14px;
2669
- line-height: 25px;
2670
- margin: 0;
2671
- color: #7a7f85;
2672
- font-weight: 400;
2673
  }
 
2674
  .tutor-quiz-attempt-info-row .attempt-info-content h4 a,
2675
  .tutor-quiz-attempt-info-row .attempt-info-content h4 {
2676
- font-weight: 700;
2677
- color: var(--tutor-text-color);
2678
- margin-top: 7px;
2679
  }
 
2680
  .tutor-quiz-attempt-info-row .attempt-view-top {
2681
- padding-bottom: 30px;
2682
- margin-bottom: 30px;
2683
- border-bottom: 1px solid #dcdfe5;
2684
  }
 
2685
  .tutor-quiz-attempt-info-row .attempt-view-bottom {
2686
- margin-bottom: 60px;
2687
  }
 
2688
  .attempt-user-details {
2689
- display: flex;
2690
- align-items: center;
 
 
 
 
2691
  }
 
2692
  .attempt-user-details .attempt-user-avatar {
2693
- padding-right: 20px;
2694
  }
 
2695
  .attempt-user-details .attempt-user-avatar img {
2696
- display: block;
2697
- width: 70px;
2698
- height: 70px;
2699
- border-radius: 50%;
2700
  }
 
2701
  .attempt-user-details .attempt-info-content h4 {
2702
- font-size: 18px;
2703
  }
 
2704
  .attempt-review-notice-wrap {
2705
- display: flex;
2706
- margin-bottom: 60px;
2707
- justify-content: space-between;
 
 
 
 
2708
  }
 
2709
  .attempt-review-notice-wrap p {
2710
- margin: 0;
2711
- display: inline-flex;
2712
- align-items: center;
 
 
 
 
2713
  }
 
2714
  .attempt-review-notice-wrap p.attempt-review-notice i {
2715
- font-size: 16px;
2716
- color: #f5c813;
2717
- margin-right: 9px;
2718
  }
 
2719
  .attempt-review-notice-wrap p.attempt-review-at > span {
2720
- color: var(--tutor-primary-color);
2721
- margin-right: 7px;
2722
- font-size: 16px;
2723
  }
 
2724
  .attempt-review-notice-wrap p > strong {
2725
- font-weight: 400;
2726
- margin-right: 5px;
2727
  }
 
2728
  .quiz-attempt-answers-wrap table th {
2729
- background: #fcfcfc;
2730
- font-size: 12px;
2731
- text-transform: inherit;
2732
  }
 
2733
  .quiz-attempt-answers-wrap table td {
2734
- background-color: #fff;
2735
  }
 
2736
  .quiz-attempt-answers-wrap table th,
2737
  .quiz-attempt-answers-wrap table td {
2738
- padding: 17px 20px !important;
2739
- border-top: 1px solid #eaeaea;
2740
- border-bottom: 1px solid #eaeaea;
2741
- vertical-align: middle;
2742
- text-align: left;
2743
  }
 
2744
  .quiz-attempt-answers-wrap table th p,
2745
  .quiz-attempt-answers-wrap table td p {
2746
- margin: 0;
2747
  }
 
2748
  .quiz-attempt-answers-wrap table .quiz-manual-review-action {
2749
- border: 1px solid #d4dadb;
2750
- color: #d4dadb;
2751
- height: 30px;
2752
- width: 30px;
2753
- border-radius: 2px;
2754
- font-size: 13px;
2755
- display: inline-block;
2756
- text-align: center;
2757
- line-height: 30px;
2758
- transition: 300ms;
2759
- text-decoration: none;
 
2760
  }
 
2761
  .quiz-attempt-answers-wrap table .quiz-manual-review-action:first-child:hover {
2762
- border: 1px solid var(--tutor-success-button-color);
2763
- color: var(--tutor-success-button-color);
2764
  }
 
2765
  .quiz-attempt-answers-wrap table .quiz-manual-review-action:last-child:hover {
2766
- border: 1px solid #df3247;
2767
- color: #df3247;
2768
  }
 
2769
  .quiz-attempt-answers-wrap table .quiz-manual-review-action:not(:last-child) {
2770
- margin-right: 17px;
2771
  }
 
2772
  .quiz-attempt-answers-wrap table .quiz-incorrect-answer-text i,
2773
  .quiz-attempt-answers-wrap table .quiz-correct-answer-text i {
2774
- font-size: 12px;
2775
- height: 20px;
2776
- width: 20px;
2777
- text-align: center;
2778
- line-height: 20px;
2779
- background: var(--tutor-success-button-color);
2780
- color: #fff;
2781
- display: inline-block;
2782
- border-radius: 2px;
2783
- margin-right: 6px;
2784
  }
 
2785
  .quiz-attempt-answers-wrap table .quiz-incorrect-answer-text i {
2786
- background: #df3247;
2787
- font-size: 10px;
2788
  }
 
2789
  .answer-image-matched-wrap {
2790
- display: flex;
 
 
2791
  }
 
2792
  .answer-image-matched-wrap .image-matching-item {
2793
- margin: 0 5px;
2794
- max-width: 70px;
2795
  }
 
2796
  .answer-image-matched-wrap .image-matching-item .dragged-caption {
2797
- font-size: 14px;
2798
- margin-top: 4px;
2799
  }
2800
 
2801
  .tutor-quiz-attempt-review-wrap {
2802
- padding: 20px;
2803
- background: #ffffff;
2804
- margin-right: 15px;
2805
- margin-top: 15px;
2806
  }
2807
 
2808
  .tutor-quiz-attempt-review-wrap table {
2809
- width: 100%;
2810
- border-collapse: collapse;
2811
  }
2812
 
2813
  .tutor-quiz-attempt-review-wrap img {
2814
- max-width: 100%;
2815
  }
2816
 
2817
  /**
2818
- Upgrade Notice
2819
- */
2820
  #tutor-update .dummy {
2821
- display: none;
2822
  }
 
2823
  #tutor-update .tutor_plugin_update_notice {
2824
- padding: 20px 0 !important;
2825
  }
2826
 
2827
  #tutor-update .tutor_plugin_update_notice {
2828
- font-weight: 400;
2829
- background: #fff8e5 !important;
2830
- border-left: 4px solid #ffb900;
2831
- border-top: 1px solid #ffb900;
2832
- padding: 9px 0 9px 12px !important;
2833
- margin: 0 -12px 0 -16px !important;
2834
  }
2835
 
2836
  #tutor-update .tutor_plugin_update_notice .version::before {
2837
- content: "\f348";
2838
- display: inline-block;
2839
- font: 400 18px/1 dashicons;
2840
- speak: none;
2841
- margin: 0 8px 0 -2px;
2842
- vertical-align: top;
2843
  }
 
2844
  /**
2845
- Course Settings Tabs
2846
- */
2847
  #tutor-metabox-course-settings-tabs {
2848
- background-color: #fff;
2849
- border: 1px solid #e5e5e5;
2850
- margin: 1em 0;
2851
  }
 
2852
  .inside #tutor-metabox-course-settings-tabs {
2853
- border: 0;
2854
- margin: 0;
2855
  }
 
2856
  .settings-tabs-heading {
2857
- padding: 1em;
2858
- border-bottom: 1px solid #e5e5e5;
2859
  }
 
2860
  .settings-tabs-heading h3 {
2861
- font-size: 14px;
2862
- margin: 0;
2863
- line-height: 1.4;
2864
  }
 
2865
  .course-settings-tabs-container {
2866
- display: flex;
 
 
2867
  }
 
2868
  .course-settings-tabs-container .settings-tabs-navs-wrap {
2869
- flex: 0 0 200px;
2870
- background: #f5f5f5;
 
 
2871
  }
 
2872
  .settings-tabs-navs-wrap .settings-tabs-navs {
2873
- margin: 0;
2874
  }
 
2875
  .settings-tabs-navs-wrap .settings-tabs-navs li {
2876
- margin: 0;
2877
  }
 
2878
  .settings-tabs-navs-wrap .settings-tabs-navs li a {
2879
- display: block;
2880
- padding-top: 10px;
2881
- padding-bottom: 10px;
2882
- padding-left: 15px;
2883
- padding-right: 15px;
2884
- color: #23282d;
2885
- text-decoration: none;
2886
- background: #f5f5f5;
2887
- text-transform: capitalize;
2888
- border-bottom: 1px solid #e5e5e5;
2889
- border-left: 3px solid transparent;
2890
  }
 
2891
  .settings-tabs-navs-wrap .settings-tabs-navs li:last-child a {
2892
- border-bottom: none;
2893
  }
 
2894
  .settings-tabs-navs-wrap .settings-tabs-navs li a:focus {
2895
- box-shadow: none;
 
2896
  }
 
2897
  .settings-tabs-navs-wrap .settings-tabs-navs li.active a {
2898
- background-color: #ffffff;
2899
- border-bottom: 1px solid #e5e5e5;
2900
- color: var(--tutor-primary-color);
2901
- border-left: 3px solid var(--tutor-primary-color);
2902
  }
 
2903
  .course-settings-tabs-container .settings-tabs-container {
2904
- padding: 1em;
2905
- flex: 1;
 
 
2906
  }
 
2907
  .tutor-field-radio p {
2908
- margin-top: 0;
2909
  }
2910
 
2911
  /**
2912
- Content Drip (Pro)
2913
- */
2914
  .lesson-modal-form-wrap .lesson-content-drip-wrap {
2915
- padding: 10px;
2916
- border: 1px solid #e4e4e4;
2917
  }
 
2918
  .lesson-modal-form-wrap .lesson-content-drip-wrap h3 {
2919
- margin: 0 0 10px 0;
2920
  }
 
2921
  .select2-dropdown.increasezindex {
2922
- z-index: 9999999999999;
2923
  }
2924
 
2925
  /*!
2926
- * jQuery UI Datepicker 1.9.0
2927
- * http://jqueryui.com
2928
- *
2929
- * Copyright 2012 jQuery Foundation and other contributors
2930
- * Released under the MIT license.
2931
- * http://jquery.org/license
2932
- *
2933
- * http://docs.jquery.com/UI/Datepicker#theming
2934
- */
2935
  .ui-datepicker {
2936
- background-color: #fff;
2937
- border: 1px solid #eeeeee;
2938
- display: none;
2939
- margin-top: 4px;
2940
- padding: 5px;
2941
- width: 180px;
2942
  }
 
2943
  .ui-datepicker a,
2944
  .ui-datepicker a:hover {
2945
- text-decoration: none;
2946
  }
 
2947
  .ui-datepicker a:hover,
2948
  .ui-datepicker td:hover a {
2949
- color: #2a6496;
2950
- -webkit-transition: color 0.1s ease-in-out;
2951
- -moz-transition: color 0.1s ease-in-out;
2952
- -o-transition: color 0.1s ease-in-out;
2953
- transition: color 0.1s ease-in-out;
2954
  }
 
2955
  .ui-datepicker .ui-datepicker-header {
2956
- margin-bottom: 4px;
2957
- text-align: center;
2958
  }
 
2959
  .ui-datepicker .ui-datepicker-title {
2960
- font-weight: 700;
2961
  }
 
2962
  .ui-datepicker .ui-datepicker-prev,
2963
  .ui-datepicker .ui-datepicker-next {
2964
- cursor: default;
2965
- font-family: "tutor";
2966
- -webkit-font-smoothing: antialiased;
2967
- font-style: normal;
2968
- font-weight: normal;
2969
- height: 20px;
2970
- line-height: 1;
2971
- margin-top: 2px;
2972
- width: 30px;
2973
  }
 
2974
  .ui-datepicker .ui-datepicker-prev {
2975
- float: left;
2976
- text-align: left;
2977
  }
 
2978
  .ui-datepicker .ui-datepicker-next {
2979
- float: right;
2980
- text-align: right;
2981
  }
 
2982
  .ui-datepicker .ui-datepicker-prev:before {
2983
- content: "\e921";
2984
  }
 
2985
  .ui-datepicker .ui-datepicker-next:before {
2986
- content: "\e903";
2987
  }
 
2988
  .ui-datepicker .ui-icon {
2989
- display: none;
2990
  }
 
2991
  .ui-datepicker .ui-datepicker-calendar {
2992
- table-layout: fixed;
2993
- width: 100%;
2994
  }
 
2995
  .ui-datepicker .ui-datepicker-calendar th,
2996
  .ui-datepicker .ui-datepicker-calendar td {
2997
- text-align: center;
2998
- padding: 0;
2999
  }
 
3000
  .ui-datepicker .ui-datepicker-calendar td {
3001
- border-radius: 4px;
3002
- -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
3003
- -moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
3004
- -o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
3005
- transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
3006
  }
 
3007
  .ui-datepicker .ui-datepicker-calendar td:hover {
3008
- background-color: #eee;
3009
- cursor: pointer;
3010
  }
 
3011
  .ui-datepicker .ui-datepicker-calendar td a {
3012
- text-decoration: none;
3013
  }
 
3014
  .ui-datepicker .ui-datepicker-current-day {
3015
- background-color: #4289cc;
3016
  }
 
3017
  .ui-datepicker .ui-datepicker-current-day a {
3018
- color: #fff;
3019
  }
 
3020
  .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
3021
- background-color: #fff;
3022
- cursor: default;
3023
  }
3024
 
3025
  .ui-datepicker-calendar .ui-state-default {
3026
- border: none;
3027
- background: none;
3028
  }
 
3029
  .ui-datepicker-calendar .ui-state-default.ui-state-highlight {
3030
- background: #eeeeee;
3031
- padding: 3px;
3032
- display: block;
3033
  }
3034
- /** END Calender */
3035
 
 
3036
  /**
3037
- * report.css
3038
- *Moved report.css from pro add to here
3039
- */
3040
  h2.tutor-page-heading {
3041
- background-color: #ffffff;
3042
- padding: 30px !important;
3043
- margin: 0 !important;
3044
- border-bottom: 1px solid #ecedef;
3045
  }
 
3046
  .tutor-report-left-menus {
3047
- background-color: #fcfcfc;
3048
- margin-bottom: 50px;
3049
  }
 
3050
  .tutor-report-left-menus ul {
3051
- margin: 0;
3052
  }
 
3053
  .report-main-wrap {
3054
- /*display: flex;*/
3055
  }
 
3056
  .report-main-wrap h3 {
3057
- font-weight: 300;
3058
- font-size: 20px;
3059
  }
 
3060
  .tutor-report-left-menus ul li {
3061
- display: inline-block;
3062
- margin: 0;
3063
  }
 
3064
  .tutor-report-left-menus ul li a {
3065
- text-decoration: none;
3066
- line-height: 60px;
3067
- display: block;
3068
- padding: 0 15px;
3069
- color: #393c40;
3070
  }
 
3071
  .tutor-report-left-menus ul li a:focus {
3072
- outline: none !important;
3073
- border: 0;
3074
- box-shadow: none;
 
3075
  }
 
3076
  .tutor-report-left-menus ul li.active a {
3077
- color: #1e55dd;
3078
- border-bottom: 3px solid #3057d5;
3079
  }
 
3080
  .tutor-report-content {
3081
- flex: 1;
 
 
3082
  }
 
3083
  .report-top-sub-menu {
3084
- margin: 0;
3085
- flex: 1;
 
 
3086
  }
 
3087
  .report-top-sub-menu a {
3088
- text-decoration: none;
3089
- padding: 10px 15px;
3090
- border: 1px solid #d7dadf;
3091
- color: #aaaeb3;
3092
- border-radius: 3px;
3093
- display: inline-block;
3094
  }
 
3095
  .report-top-sub-menu a.active {
3096
- background-color: #3057d5;
3097
- color: #ffffff;
3098
- border: 1px solid #3057d5;
3099
  }
 
3100
  .top-course-enrolled {
3101
- margin-top: 20px;
3102
- margin-bottom: 20px;
3103
  }
 
3104
  .top-course-enrolled h1,
3105
  .top-course-enrolled h2,
3106
  .top-course-enrolled h3 {
3107
- margin: 30px 0;
3108
  }
 
3109
  .report-stats {
3110
- display: flex;
3111
- flex-flow: row wrap;
 
 
 
 
 
3112
  }
 
3113
  .report-stat-box {
3114
- padding: 0;
3115
- margin-bottom: 30px;
3116
- width: 25%;
3117
- display: inline-flex;
3118
- flex: 0 0 25%;
 
 
 
 
3119
  }
 
3120
  .report-stat-box-body {
3121
- background-color: #ffffff;
3122
- display: flex;
3123
- width: 100%;
3124
- margin-right: 30px;
 
 
3125
  }
 
3126
  .report-stat-box:nth-child(4n) .report-stat-box-body {
3127
- margin-right: 0;
3128
  }
 
3129
  .report-stat-box .box-icon {
3130
- font-size: 50px;
3131
- line-height: 46px;
3132
- padding: 13px;
3133
- color: #3057d5;
3134
  }
 
3135
  .report-stat-box h4,
3136
  .report-stat-box p {
3137
- margin: 5px 0;
3138
  }
 
3139
  .report-stat-box .box-stats-text h3,
3140
  .report-stat-box .box-stats-text p {
3141
- margin: 5px 0;
3142
  }
 
3143
  .report-stat-box .box-stats-text {
3144
- padding: 12px 0;
3145
  }
 
3146
  .report-stat-box .box-stats-text h3 {
3147
- font-size: 20px;
3148
- font-weight: 300;
3149
  }
 
3150
  .report-stat-box .box-stats-text p {
3151
- color: #888b90;
3152
  }
 
3153
  .box-padding {
3154
- padding: 30px;
3155
  }
 
3156
  .box-padding h3 {
3157
- margin-top: 0;
3158
  }
 
3159
  .box-bg-green {
3160
- background-color: #00d611;
3161
- color: #ffffff;
3162
  }
 
3163
  .box-bg-primary {
3164
- background-color: #3057d5;
3165
- color: #ffffff;
3166
  }
 
3167
  .box-bg-light {
3168
- background-color: #eeeeee;
3169
- color: #555555;
3170
  }
 
3171
  .box-bg-warning {
3172
- background-color: #eea504;
3173
- color: #ffffff;
3174
  }
 
3175
  .box-bg-dark {
3176
- background-color: #333333;
3177
- color: #ffffff;
3178
  }
 
3179
  .box-bg-danger {
3180
- background-color: #ff000c;
3181
- color: #ffffff;
3182
  }
 
3183
  .box-bg-pink {
3184
- background-color: #ff00da;
3185
- color: #ffffff;
3186
  }
 
3187
  .box-bg-violate {
3188
- background-color: #9c25ea;
3189
- color: #ffffff;
3190
  }
 
3191
  .tutor-report-overview-section {
3192
- display: flex;
3193
- margin: 20px 0;
 
 
3194
  }
 
3195
  .overview-section-col6 {
3196
- width: 50%;
3197
  }
 
3198
  .overview-section-col6 {
3199
- margin-right: 1%;
3200
- margin-left: 1%;
3201
  }
 
3202
  .overview-section-col6:first-child {
3203
- margin-left: 0;
3204
  }
 
3205
  .overview-section-col6:last-child {
3206
- margin-right: 0;
3207
  }
 
3208
  .last-revews-wrap {
3209
- width: 100%;
3210
  }
 
3211
  table.tutor-report-table {
3212
- border: none;
3213
- box-shadow: none;
 
3214
  }
 
3215
  .tutor-report-table th {
3216
- background-color: #fcfcfc;
3217
- border-top: 1px solid #eaeaea;
3218
- border-bottom: 1px solid #eaeaea;
3219
- padding: 20px;
3220
- color: #878a8f;
3221
  }
 
3222
  .tutor-report-table td {
3223
- border-bottom: 1px solid #eaeaea;
3224
- padding: 20px;
3225
  }
 
3226
  .tutor-report-table td img.avatar {
3227
- float: left;
3228
- margin-right: 5px;
3229
  }
 
3230
  /**
3231
- Icon
3232
- */
3233
  .tutor-icon-star-full,
3234
  .tutor-icon-star-line {
3235
- color: #ffd700;
3236
  }
 
3237
  .tutor-delete-link {
3238
- color: #ff282a !important;
3239
  }
 
3240
  /**
3241
- Pagination
3242
- */
3243
  .tutor-pagination {
3244
- margin: 50px 0;
3245
  }
 
3246
  .tutor-pagination .page-numbers {
3247
- display: inline-block;
3248
- padding: 5px 10px;
3249
- margin: 0 2px 0 0;
3250
- border: 1px solid #eee;
3251
- line-height: 1;
3252
- text-decoration: none;
3253
- font-weight: 600;
3254
  }
 
3255
  .tutor-pagination .page-numbers.current,
3256
  .tutor-pagination a.page-numbers:hover {
3257
- background: #f9f9f9;
3258
  }
 
3259
  .report-date-range-form {
3260
- display: flex;
 
 
3261
  }
 
3262
  .date-range-input {
3263
- position: relative;
3264
- margin-right: 10px;
3265
  }
 
3266
  .date-range-input:last-child {
3267
- margin-right: 0;
3268
  }
 
3269
  .date-range-input input {
3270
- border: 1px solid #d7dadf;
3271
- box-shadow: none;
3272
- line-height: 32px;
3273
- margin: 0;
3274
- padding-right: 30px;
 
3275
  }
 
3276
  .date-range-input i.tutor-icon-calendar {
3277
- position: absolute;
3278
- right: 10px;
3279
- top: 13px;
3280
  }
 
3281
  .date-range-input button {
3282
- background-color: #3057d5;
3283
- color: #ffffff;
3284
- border: none;
3285
- line-height: 39px;
3286
- padding: 0 15px;
3287
  }
 
3288
  .tutor-date-range-filter-wrap {
3289
- display: flex;
3290
- margin: 30px 0;
 
 
3291
  }
 
3292
  .report-download-csv-icon {
3293
- float: right;
3294
  }
 
3295
  .report-download-csv-icon a {
3296
- text-decoration: none;
3297
  }
3298
- /** END Report.css */
3299
 
 
3300
  /**
3301
- * Alert CSS
3302
- * since v.1.4.2
3303
- */
3304
  .tutor-alert {
3305
- border: 1px solid #f8a201;
3306
- background: #fffff2;
3307
- position: relative;
3308
- border-radius: 3px;
3309
- padding: 20px 25px 20px 95px;
3310
- color: #a86d00;
3311
- margin-bottom: 10px;
3312
  }
 
3313
  .tutor-alert.tutor-alert-danger {
3314
- border: 1px solid #fe1a1a;
3315
- background: #fff2f2;
3316
- color: #a50000;
3317
  }
 
3318
  .tutor-alert.tutor-alert-success {
3319
- border: 1px solid #69bc0d;
3320
- background: #f6fff2;
3321
- color: #3d7400;
3322
  }
 
3323
  .tutor-alert.tutor-alert-info {
3324
- border: 1px solid #13aaf6;
3325
- background: #eaf8ff;
3326
- color: #0586c7;
3327
  }
 
3328
  .tutor-alert::before {
3329
- content: "\e95f";
3330
- position: absolute;
3331
- font-size: 30px;
3332
- font-family: "tutor" !important;
3333
- speak: none;
3334
- font-style: normal;
3335
- font-weight: normal;
3336
- font-variant: normal;
3337
- text-transform: none;
3338
- line-height: 1;
3339
- -webkit-font-smoothing: antialiased;
3340
- -moz-osx-font-smoothing: grayscale;
3341
- width: 70px;
3342
- top: 0;
3343
- left: 0;
3344
- text-align: center;
3345
- background: #f8a201;
3346
- height: 100%;
3347
- display: flex;
3348
- justify-content: center;
3349
- align-items: center;
3350
- color: #ffffff;
 
 
 
 
 
 
3351
  }
 
3352
  .tutor-alert.tutor-alert-danger::before {
3353
- content: "\e913";
3354
- background: #fe1a1a;
3355
  }
 
3356
  .tutor-alert.tutor-alert-success::before {
3357
- content: "\e90f";
3358
- background: #69bc0d;
3359
  }
 
3360
  .tutor-alert.tutor-alert-info::before {
3361
- content: "\e96c";
3362
- background: #13aaf6;
3363
  }
 
3364
  .tutor-alert-content p {
3365
- margin: 0;
3366
  }
3367
- /**
3368
- *END Alert CSS
3369
- */
3370
 
3371
  /**
3372
- * Tutor Table
3373
- */
 
 
 
3374
  table.tutor-table {
3375
- border-spacing: 0;
3376
- width: 100%;
3377
- border-collapse: collapse;
3378
- border: 1px solid #dcdfe5;
3379
  }
 
3380
  table.tutor-table td,
3381
  table.tutor-table th {
3382
- padding: 1em 1.41575em;
3383
- text-align: left;
3384
- vertical-align: top;
3385
- border-bottom: 1px solid #dcdfe5;
3386
  }
 
3387
  table.tutor-table td p:last-child,
3388
  table.tutor-table th p:last-child {
3389
- margin-bottom: 0;
3390
  }
 
3391
  table.tutor-table th {
3392
- font-weight: 600;
3393
  }
 
3394
  table.tutor-table thead th {
3395
- padding: 1.41575em;
3396
- vertical-align: middle;
3397
  }
 
3398
  table.tutor-table tbody h2 {
3399
- font-size: 1em;
3400
- letter-spacing: normal;
3401
- font-weight: normal;
3402
  }
 
3403
  table.tutor-table tbody h2 a {
3404
- font-weight: normal;
3405
  }
 
3406
  table.tutor-table th {
3407
- background-color: #fafbfc;
3408
  }
 
3409
  table.tutor-table tbody td {
3410
- background-color: #ffffff;
3411
  }
 
3412
  table.tutor-table tbody tr:nth-child(2n) td {
3413
- background-color: #fafbfc;
3414
  }
 
3415
  table.tutor-table a {
3416
- text-decoration: none;
3417
  }
 
3418
  table.tutor-table p {
3419
- margin: 0;
3420
  }
3421
 
3422
  /**
3423
- * END Tutor Table
3424
- */
3425
-
3426
  /**
3427
- Tools Nav
3428
- */
3429
  .tutor-nav-tab-wrapper {
3430
- margin-bottom: 10px;
3431
  }
 
3432
  .nav-tab-item {
3433
- float: left;
3434
- border: 1px solid #ccc;
3435
- border-bottom: none;
3436
- margin-left: 0.5em;
3437
- padding: 10px 14px;
3438
- font-size: 14px;
3439
- line-height: 1.33;
3440
- font-weight: 600;
3441
- background: #e5e5e5;
3442
- color: #555;
3443
- text-decoration: none;
3444
- white-space: nowrap;
3445
  }
 
3446
  .nav-tab-item:first-child {
3447
- margin-left: 0;
3448
  }
 
3449
  .nav-tab-item:focus,
3450
  .nav-tab-item:hover {
3451
- background-color: #fff;
3452
- color: #444;
3453
  }
 
3454
  .nav-tab-item-active,
3455
  .nav-tab-item:focus:active {
3456
- box-shadow: none;
 
3457
  }
 
3458
  .nav-tab-item-active {
3459
- margin-bottom: -1px;
3460
- color: #444;
3461
  }
 
3462
  .nav-tab-item-active,
3463
  .nav-tab-item-active:focus,
3464
  .nav-tab-item-active:focus:active,
3465
  .nav-tab-item-active:hover {
3466
- border-bottom: 1px solid #f1f1f1;
3467
- background: #f1f1f1;
3468
- color: #000;
3469
  }
3470
- /**
3471
- * END Tools
3472
- */
3473
 
3474
  /**
3475
- * Quiz Feedback Mode - UI fix
3476
- */
3477
-
 
 
3478
  .tutor-quiz-feedback-mode {
3479
- position: relative;
3480
  }
 
3481
  .tutor-quiz-feedback-mode:not(:last-child) {
3482
- margin-right: 16px;
3483
  }
3484
 
3485
  .tutor-quiz-feedback-mode-option {
3486
- border-radius: 3px;
3487
- border: solid 1px #dedede;
3488
- padding: 15px 15px 15px 40px;
3489
- transition: 0.2s ease;
3490
- max-width: 210px;
 
3491
  }
3492
 
3493
  .tutor-quiz-feedback-option-option-title {
3494
- margin-bottom: 10px !important;
3495
  }
3496
 
3497
  .tutor-quiz-feedback-option-subtitle {
3498
- margin: 0 !important;
3499
- font-size: 12px;
3500
- line-height: 1.67;
3501
- color: #505469;
3502
  }
 
3503
  .tutor-quiz-feedback-option-subtitle a {
3504
- font-weight: 500;
3505
- color: inherit;
3506
- text-decoration: underline !important;
3507
  }
3508
 
3509
  .tutor-quiz-feedback-mode input[type="radio"] {
3510
- display: none;
3511
  }
3512
 
3513
  .tutor-quiz-feedback-mode .radio-icon {
3514
- position: absolute;
3515
- top: 16px;
3516
- left: 16px;
3517
- z-index: 1;
3518
- margin: 0;
3519
- width: 16px;
3520
- height: 16px;
3521
- border-radius: 50%;
3522
- box-shadow: inset 0 0 0 2px #dcdce1;
3523
- transition: 0.2s ease;
 
 
3524
  }
 
3525
  .tutor-quiz-feedback-mode input[type="radio"]:checked + .radio-icon {
3526
- box-shadow: inset 0 0 0 5px #3e64de;
3527
- background: #fff;
 
3528
  }
 
3529
  .tutor-quiz-feedback-mode
3530
- input[type="radio"]:checked
3531
- ~ .tutor-quiz-feedback-mode-option {
3532
- background: #fff;
3533
  }
3534
 
3535
  /* Fixing course builder css overlap issue */
3536
  #tutor-course-topics h2, #tutor-instructors h2 {
3537
- display: block;
3538
  }
 
3539
  #tutor-course-topics .tutor-course-builder-header.has-postbox-header {
3540
- top: -56px;
3541
- right: 96px;
3542
  }
3543
 
3544
  #settings-tab-general .tutor-option-field-row input[type="number"] {
3545
- width: 185px;
3546
  }
3547
 
3548
  /* Instructor list layout style */
3549
  .instructor-layout-templates-fields {
3550
- display: flex;
3551
- flex-wrap: wrap;
 
 
 
3552
  }
 
3553
  .instructor-layout-template {
3554
- max-width: 150px;
3555
- padding: 5px;
3556
- margin: 3px;
3557
  }
 
3558
  .instructor-layout-template img {
3559
- max-width: 100%;
3560
- height: auto;
3561
- display: block;
3562
- border : 6px solid transparent;
3563
- transition: border-color 400ms;
 
3564
  }
 
3565
  .instructor-layout-template.selected-template img,
3566
- .instructor-layout-template:hover img{
3567
- border : 6px solid #3057d6;
3568
  }
3569
 
3570
  /*
3571
- * Since 1.7.9
3572
- * announcements style
3573
- */
3574
-
3575
- .tutor-announcement-content-wrap{
3576
- display: flex;
3577
- justify-content: space-between;
3578
- align-items: center;
 
 
 
 
 
3579
  }
3580
- .tutor-announcement-buttons :nth-child(1){
3581
- margin-right: 20px;
 
3582
  }
 
3583
  .tutor-announcements-header {
3584
- display: flex;
3585
- gap: 10px;
3586
- align-items: center;
 
 
 
 
3587
  }
 
3588
  .tutor-announcement-date,
3589
  .tutor-announcement-content > span {
3590
- font-weight: bold !important;
3591
  }
 
3592
  .tutor-announcement-date {
3593
- width: 100px !important;
3594
  }
 
3595
  .tutor-announcements-modal-wrap .tutor-modal-content {
3596
- max-width: 660px !important;
3597
  }
 
3598
  .tutor-announcements-modal-wrap button {
3599
- padding: 10px 20px !important
3600
  }
3601
 
3602
- .tutor-announcements-update-form
3603
  .tutor-option-field-row,
3604
- .tutor-announcements-form
3605
- .tutor-option-field-row
3606
- {
3607
- padding: 10px 18px 10px 18px
3608
  }
 
3609
  .tutor-announcements-update-form .tutor-option-field-row input[type=text],
3610
- .tutor-announcements-update-form textarea ,
3611
  .tutor-announcements-form .tutor-option-field-row input[type=text],
3612
  .tutor-announcements-form textarea {
3613
- width: 100%;
3614
- margin-top: 8px;
3615
  }
3616
- .tutor-announcements-form select ,
 
3617
  .tutor-announcements-update-form select {
3618
- width: 100%;
3619
- max-width: 100% !important;
3620
- padding: 7px 12px;
3621
- margin-top: 8px;
3622
  }
 
3623
  .tutor-announcements-update-form
3624
- .tutor-option-field-row ,
3625
  .tutor-announcements-form
3626
  .tutor-option-field-row {
3627
- border: none !important;
3628
  }
 
3629
  .tutor-announcements-form
3630
- .modal-footer button,
3631
  .tutor-announcements-update-form
3632
- .modal-footer button{
3633
- cursor: pointer !important;
3634
  }
 
3635
  .tutor-announcements-form
3636
- .modal-footer,
3637
  .tutor-announcements-update-form
3638
- .modal-footer{
3639
- background-color: #fff !important;
3640
  }
3641
 
3642
  .tutor-announcement-close-btn {
3643
- text-decoration: none;
3644
- color: #525252;
3645
-
3646
  }
 
3647
  .tutor-announcement-table td {
3648
- vertical-align: middle !important;
3649
  }
 
3650
  .tutor-announcement-content {
3651
- line-height: 10px;
3652
- }
3653
- .tutor-announcement-pagination {
3654
- padding:20px 20px 0px 20px;
3655
- font-weight: 500;
3656
- font-size: 15px;
3657
- float: right;
3658
  }
3659
 
3660
  /*over ride default modal on announcement*/
3661
- .tutor-accouncement-update-modal
3662
  .modal-header,
3663
- .tutor-announcement-create-modal
3664
  .modal-header {
3665
- padding-right: 15px !important;
3666
  }
3667
- .tutor-accouncement-update-modal
 
3668
  .tutor-modal-content,
3669
- .tutor-announcement-create-modal
3670
  .tutor-modal-content {
3671
- border-radius: 20px !important;
3672
  }
3673
 
3674
  /**
3675
- * announcement css
3676
- * @since v1.7.9
3677
- */
3678
  .tutor-admin-search-box-container {
3679
- display: flex;
3680
- justify-content: space-between;
3681
- align-items: flex-end;
3682
- flex-wrap: wrap;
3683
- margin-top: 45px;
 
 
 
 
 
 
 
3684
  }
 
3685
  .tutor-admin-search-box-container > div:nth-child(1) {
3686
- margin-right: 40px;
3687
- position: relative;
3688
  }
3689
 
3690
  .tutor-admin-search-box-container > div:nth-child(1) {
3691
- flex: 2;
 
 
3692
  }
3693
 
3694
  .tutor-admin-search-box-container > div:nth-child(2),
3695
  .tutor-admin-search-box-container > div:nth-child(3),
3696
  .tutor-admin-search-box-container > div:nth-child(4) {
3697
- flex: 1.5;
 
 
3698
  }
3699
 
3700
  .tutor-admin-search-box-container > div:not(:last-child) {
3701
- margin-right: 40px;
3702
  }
3703
 
3704
  .tutor-admin-search-box-container .tutor-report-search-btn {
3705
- position: absolute;
3706
- width: 40px;
3707
- height: 40px;
3708
- bottom: 0;
3709
- right: 0;
3710
- border: 0;
3711
- background: transparent;
3712
- color: #3e64de;
3713
- font-size: 20px;
3714
- cursor: pointer;
3715
- outline: none;
3716
  }
 
3717
  .tutor-admin-search-box-container > div:nth-child(1) input {
3718
- /* height: 50px; */
3719
- padding-right: 45px;
3720
  }
3721
 
3722
  .tutor-admin-search-box-container input[type="text"],
3723
  .tutor-admin-search-box-container select {
3724
- width: 100%;
3725
- height: 40px;
3726
- border-radius: 3px;
3727
- border: solid 1px #dcdce1;
3728
- background-color: #ffffff;
3729
- padding: 0 14px;
3730
- transition: 0.2s;
 
3731
  }
3732
 
3733
  .tutor-admin-search-box-container .date-range-input i.tutor-icon-calendar {
3734
- position: absolute;
3735
- width: 42px;
3736
- height: 40px;
3737
- right: 0;
3738
- top: 0;
3739
- color: #3e64de;
3740
- font-size: 18px;
3741
- text-align: center;
3742
- line-height: 40px;
3743
  }
 
3744
  .tutor-admin-search-box-container .menu-label {
3745
- font-size: 14px;
3746
- font-weight: 400;
3747
- color: #737787;
3748
- margin-bottom: 7px;
3749
  }
 
3750
  .tutor-admin-search-box-container > div:nth-child(4) input::-webkit-input-placeholder {
3751
- color: #3f435b;
3752
- font-size: 15px;
3753
  }
3754
 
3755
  .tutor-admin-search-box-container > div:nth-child(1) input::-webkit-input-placeholder {
3756
- font-size: 16px;
3757
- font-weight: 400;
3758
- color: #737787;
3759
  }
3760
 
3761
  .tutor-admin-search-box-container input[type="text"]:hover,
@@ -3764,374 +4397,506 @@ Tools Nav
3764
  .tutor-admin-search-box-container select:focus,
3765
  .tutor-date-range-wrap .date-range-input input:hover,
3766
  .tutor-date-range-wrap .date-range-input input:focus {
3767
- border-color: var(--tutor-primary-color) !important;
3768
- box-shadow: none !important;
3769
- outline: none !important;
 
3770
  }
 
3771
  @media (max-width: 767px) {
3772
- .tutor-admin-search-box-container {
3773
- display: grid;
3774
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
3775
- grid-gap: 15px;
3776
- }
3777
- .tutor-admin-search-box-container > div {
3778
- margin-right: 0 !important;
3779
- }
3780
  }
3781
 
3782
-
3783
-
3784
  /**
3785
- * Common CSS .tutor-list-* - start
3786
- * .tutor-list-wrap > .tutor-list-header + .tutor-list-table + .tutor-list-footer
3787
- */
3788
  .tutor-list-wrap {
3789
- border-radius: 3px;
3790
- background-color: #ffffff;
3791
- margin-top: 40px;
3792
  }
3793
 
3794
  .tutor-list-wrap .tutor-list-header,
3795
  .tutor-list-wrap .tutor-list-footer {
3796
- padding: 30px;
3797
  }
3798
 
3799
  .tutor-list-wrap .heading {
3800
- font-size: 20px;
3801
- line-height: 1.5;
3802
- color: #3f435b;
3803
  }
3804
 
3805
  .tutor-list-wrap .tutor-list-table {
3806
- width: 100%;
3807
- text-align: left;
3808
- border-collapse: collapse;
3809
  }
 
3810
  .tutor-list-wrap .tutor-list-table .table-toggle {
3811
- display: none;
3812
  }
 
3813
  .tutor-list-wrap .tutor-list-table .table-toggle.open {
3814
- display: table-row;
3815
  }
 
3816
  [class^="tutor-report-"] .tutor-list-table tbody td.detail {
3817
- vertical-align: top;
3818
  }
3819
 
3820
  .tutor-list-wrap .tutor-list-table thead,
3821
  .tutor-list-wrap .tutor-list-table tr:first-child th {
3822
- background-color: #f7f7f9;
3823
- border-top: 1px solid #eaeaea;
3824
- border-bottom: 1px solid #eaeaea;
3825
  }
3826
 
3827
  .tutor-list-wrap .tutor-list-table th {
3828
- font-size: 12px;
3829
- font-weight: 400;
3830
- line-height: 1.75;
3831
- letter-spacing: 0.7px;
3832
- color: #737787;
3833
- text-transform: uppercase;
3834
  }
3835
 
3836
  .tutor-list-wrap .tutor-list-table td,
3837
  .tutor-list-wrap .tutor-list-table td p {
3838
- font-size: 14px;
3839
- font-weight: 300;
3840
- line-height: 1.75;
3841
- color: #3f435b;
3842
  }
3843
 
3844
  .report-course-list-wrap .tutor-list-table th i {
3845
- margin-left: 3px;
3846
  }
3847
 
3848
  .tutor-list-wrap .tutor-list-table tr th,
3849
  .tutor-list-wrap .tutor-list-table tr td {
3850
- padding: 15px 20px;
3851
  }
3852
 
3853
  .tutor-list-wrap .tutor-list-header,
3854
  .tutor-list-wrap .tutor-list-table th:last-child,
3855
  .tutor-list-wrap .tutor-list-table td:last-child,
3856
  .tutor-report-course-list .tutor-list-footer {
3857
- padding-right: 36px;
3858
  }
3859
 
3860
  .tutor-list-wrap .tutor-list-header,
3861
  .tutor-list-wrap .tutor-list-table th:first-child,
3862
  .tutor-list-wrap .tutor-list-table td:first-child {
3863
- padding-left: 30px;
3864
  }
3865
 
3866
  .tutor-list-wrap .tutor-list-table tbody td {
3867
- padding: 25px 20px;
3868
- vertical-align: top;
3869
  }
3870
 
3871
  .tutor-list-wrap .tutor-list-table tbody tr:not(:last-child) {
3872
- border-bottom: 1px solid #dcdce1;
3873
  }
3874
 
3875
  .tutor-list-footer {
3876
- display: flex;
3877
- justify-content: space-between;
3878
- align-items: center;
3879
- border-top: 1px solid #dcdce1;
 
 
 
 
 
 
3880
  }
3881
 
3882
  .tutor-list-footer .tutor-report-count {
3883
- font-size: 14px;
3884
- line-height: 1.71;
3885
- color: #737787;
3886
  }
3887
 
3888
  .tutor-list-footer .tutor-report-count strong {
3889
- color: #3f435b;
3890
  }
3891
 
3892
  .tutor-list-footer .page-numbers.current {
3893
- border-color: #3e64de;
3894
- background: transparent;
3895
  }
3896
 
3897
  .tutor-list-footer .page-numbers {
3898
- border-radius: 4px;
3899
- border: solid 1px #dcdce1;
3900
- padding: 11px 14px;
3901
- font-size: 14px;
3902
- font-weight: 400;
3903
- color: #737787;
3904
- background: #fff;
3905
- outline: none;
3906
- transition: 0.2s;
 
3907
  }
3908
 
3909
  .tutor-list-footer .page-numbers:hover,
3910
  .tutor-list-footer .page-numbers:focus {
3911
- border-color: #3e64de;
3912
- background: #3e64de !important;
3913
- color: #fff;
3914
- box-shadow: none;
 
3915
  }
3916
 
3917
  .tutor-list-footer .page-numbers.current:hover,
3918
  .tutor-list-footer .page-numbers.current:focus {
3919
- background: transparent !important;
3920
- color: inherit;
3921
  }
3922
 
3923
  .tutor-list-footer .tutor-pagination {
3924
- margin: 0;
3925
  }
3926
 
3927
  .tutor-list-table td .details-button a,
3928
  .tutor-list-table .link-icon {
3929
- font-size: 16px;
3930
- color: #b9bac3;
3931
- transition: 0.2s;
 
3932
  }
 
3933
  .tutor-list-table td .details-button a:first-child {
3934
- font-size: 12px;
3935
- font-weight: 500;
3936
- line-height: 1.75;
3937
- text-align: center;
3938
- color: #737787;
3939
- border-radius: 3px;
3940
- border: solid 1px #dcdce1;
3941
- padding: 5px 11px;
3942
- margin-right: 15px;
3943
- text-decoration: none;
3944
  }
3945
 
3946
  .tutor-list-table td .details-button {
3947
- text-align: right;
3948
- display: flex;
3949
- align-items: center;
 
 
 
 
3950
  }
3951
 
3952
  .tutor-list-table .course-link a {
3953
- color: inherit;
3954
- text-decoration: none;
3955
  }
 
3956
  .tutor-list-table .tutor-icon-detail-link,
3957
  .profile-table .tutor-icon-detail-link {
3958
- font-size: 14px;
3959
  }
3960
 
3961
  @media (max-width: 991px) {
3962
- .tutor-list-wrap {
3963
- overflow-x: scroll;
3964
- }
3965
  }
3966
- /**
3967
- * Common CSS /.tutor-list-* - end
3968
- */
3969
 
 
 
 
3970
  /* .report-course-list - start */
3971
  .report-course-list-header {
3972
- display: flex;
3973
- align-items: center;
3974
- justify-content: space-between;
 
 
 
 
 
 
3975
  }
3976
 
3977
  .report-course-list-wrap .tutor-list-table td {
3978
- font-size: 16px;
3979
  }
3980
 
3981
  .report-course-list-wrap .tutor-list-table td:nth-child(2) {
3982
- font-size: 14px;
3983
- font-weight: 400;
3984
  }
3985
 
3986
  .report-course-list-wrap .tutor-list-table td:last-child {
3987
- text-align: right;
3988
  }
3989
 
3990
  .report-course-list-wrap .tutor-list-table th:nth-child(2),
3991
  .report-course-list-wrap .tutor-list-table td:nth-child(2) {
3992
- width: 40%;
3993
  }
3994
 
3995
  .report-course-list-wrap .tutor-list-table .total {
3996
- color: #9698a5;
3997
  }
3998
 
3999
  .report-course-list-wrap .tutor-list-table [class$="-link"] {
4000
- color: #b9bac3;
4001
  }
4002
 
4003
  .report-course-list-wrap .tutor-list-table a:hover {
4004
- color: #3057d5;
4005
  }
4006
 
4007
  .report-course-list-wrap .tutor-list-table .course-link {
4008
- font-size: 12px;
4009
- margin-left: 5px;
4010
  }
4011
 
4012
  .tutor-list-table .course-percentage {
4013
- width: 90px;
4014
- height: 4px;
4015
- border-radius: 2px;
4016
- background-color: #dcdce1;
4017
- position: relative;
4018
  }
4019
 
4020
  .tutor-list-table .course-percentage::before {
4021
- content: "";
4022
- position: absolute;
4023
- width: var(--percent);
4024
- height: 4px;
4025
- border-radius: 2px;
4026
- background-color: #3e64de;
4027
  }
4028
 
4029
  .report-course-list-wrap
4030
- > .tutor-list-table
4031
- tbody
4032
- td:not(.detail):nth-last-child(3) {
4033
- vertical-align: middle;
4034
  }
4035
 
4036
  .report-course-list-wrap .tutor-list-table .details-link {
4037
- font-size: 21px;
4038
  }
4039
 
4040
  .tutor-report-content a {
4041
- transition: 0.2s ease;
 
4042
  }
4043
 
4044
  .tutor-report-content a:hover,
4045
  .tutor-report-content a:focus,
4046
  .report-student-profile .profile-table a:hover {
4047
- color: #3057d5;
4048
  }
4049
 
4050
  @media (max-width: 991px) {
4051
- .report-course-list-wrap .tutor-list-table th:nth-child(n + 7),
4052
- .report-course-list-wrap .tutor-list-table td:nth-child(n + 7) {
4053
- display: none;
4054
- }
4055
  }
4056
 
4057
  .report-course-list-header .status span,
4058
  .report-course-list-wrap .detail .status span {
4059
- font-size: 14px;
4060
- font-weight: 300;
4061
- line-height: 1;
4062
- color: #737787;
4063
- margin-left: 25px;
4064
- padding-left: 14px;
4065
- position: relative;
4066
- display: inline-flex;
4067
- align-items: center;
 
 
 
 
4068
  }
4069
 
4070
  .report-course-list-header .status span::before,
4071
  .report-course-list-wrap .detail .status span::before {
4072
- content: "";
4073
- position: absolute;
4074
- width: 8px;
4075
- height: 8px;
4076
- background: #b9bac3;
4077
- border-radius: 50%;
4078
- left: 0;
4079
  }
4080
 
4081
  .report-course-list-wrap .detail .status span {
4082
- margin-left: 0;
4083
- padding-left: 16px;
4084
  }
4085
 
4086
  .report-course-list-wrap .detail .status span::before {
4087
- width: 6px;
4088
- height: 6px;
4089
  }
4090
 
4091
  .report-course-list-header .status .running::before,
4092
  .report-course-list-wrap .detail .status .running::before {
4093
- background-color: #3e64de;
4094
  }
4095
 
4096
  .report-course-list-header .status .complete::before,
4097
  .report-course-list-wrap .detail .status .complete::before {
4098
- background-color: #7bbc30;
4099
  }
4100
 
4101
  .report-course-list-wrap .detail .heading {
4102
- font-size: 16px;
4103
- line-height: 1.75;
4104
- color: #3f435b;
4105
- margin-bottom: 10px;
4106
  }
4107
 
4108
  .report-course-list-wrap .detail {
4109
- padding: unset !important;
4110
- text-align: left !important;
4111
- font-size: 14px !important;
4112
- font-weight: 400 !important;
4113
  }
4114
 
4115
  .report-course-list-wrap .tutor-list-table td > table {
4116
- width: 100%;
4117
  }
4118
 
4119
  .report-course-list .course-list-details {
4120
- display: grid;
4121
- grid-auto-flow: column;
4122
- grid-auto-columns: 1fr;
4123
- grid-gap: 20px;
4124
- grid-template-columns: repeat(3, 1fr);
4125
  }
4126
 
4127
  .tutor-list-wrap .tutor-list-table a:hover,
4128
  .tutor-list-wrap .tutor-list-table a:focus {
4129
- color: #3e64de;
4130
  }
4131
 
4132
  .tutor-list-wrap .no-data-found {
4133
- display: flex;
4134
- align-items: center;
4135
- padding: 0 0 30px 0;
4136
- }
4137
- /* /.report-course-list - end */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  @author: themeum
4
  */
5
  :root {
6
+ --tutor-primary-color: #1b52d8;
7
+ --tutor-primary-hover-color: #1b52a9;
8
+ --tutor-text-color: #4b5981;
9
+ --tutor-light-color: #b1b8c9;
10
+ --tutor-success-button-color: #86b223;
11
  }
12
 
13
  .ui-slider {
14
+ position: relative;
15
+ text-align: left;
16
  }
17
+
18
  .ui-slider .ui-slider-handle {
19
+ position: absolute;
20
+ z-index: 2;
21
+ width: 15px;
22
+ height: 15px;
23
+ cursor: default;
24
+ top: -6.5px;
25
+ cursor: pointer;
26
  }
27
+
28
  .ui-slider .ui-slider-range {
29
+ position: absolute;
30
+ z-index: 1;
31
+ font-size: 0.7em;
32
+ display: block;
33
+ border: 0;
34
+ background-position: 0 0;
35
  }
36
 
37
  .ui-slider-horizontal {
38
+ height: 0.8em;
39
  }
40
+
41
  .ui-slider-horizontal .ui-slider-range {
42
+ top: 0;
43
+ height: 100%;
44
  }
45
+
46
  .ui-slider-horizontal .ui-slider-range-min {
47
+ left: 0;
48
  }
49
+
50
  .ui-slider-horizontal .ui-slider-range-max {
51
+ right: 0;
52
  }
53
 
54
  .ui-slider-vertical {
55
+ width: 0.8em;
56
+ height: 100px;
57
  }
58
+
59
  .ui-slider-vertical .ui-slider-handle {
60
+ left: -0.3em;
61
+ margin-left: 0;
62
+ margin-bottom: -0.6em;
63
  }
64
+
65
  .ui-slider-vertical .ui-slider-range {
66
+ left: 0;
67
+ width: 100%;
68
  }
69
+
70
  .ui-slider-vertical .ui-slider-range-min {
71
+ bottom: 0;
72
  }
73
+
74
  .ui-slider-vertical .ui-slider-range-max {
75
+ top: 0;
76
  }
77
 
78
  /*----------------------------------
79
+ Component containers
80
+ ----------------------------------*/
81
  .ui-widget-content {
82
+ border: 1px solid #aaaaaa;
83
+ background: #ffffff;
84
+ color: #222222;
85
  }
86
+
87
  .ui-widget-content a {
88
+ color: #222222;
89
  }
90
+
91
  .ui-widget-header {
92
+ border: 1px solid #aaaaaa;
93
+ background: #cccccc;
94
+ color: #222222;
95
+ font-weight: bold;
96
  }
97
+
98
  .ui-widget-header a {
99
+ color: #222222;
100
  }
101
 
102
  /* Interaction states
103
+ ----------------------------------*/
104
  .ui-state-default,
105
  .ui-widget-content .ui-state-default,
106
  .ui-widget-header .ui-state-default {
107
+ border: 1px solid #d3d3d3;
108
+ background: #e6e6e6;
109
+ font-weight: normal;
110
+ color: #555555;
111
  }
112
+
113
  /* Interaction Cues
114
+ ----------------------------------*/
115
  .ui-state-highlight,
116
  .ui-widget-content .ui-state-highlight,
117
  .ui-widget-header .ui-state-highlight {
118
+ border: 1px solid #fcefa1;
119
+ background: #fbf9ee;
120
+ color: #363636;
121
  }
122
 
123
  .tutor-option-nav-tabs li {
124
+ position: relative;
125
+ display: inline-block;
126
+ margin-right: -1px;
127
  }
128
+
129
  /*.tutor-option-nav-tabs li:after {*/
130
  /*content: "|";*/
131
  /*position: absolute;*/
133
  /*right: -10px;*/
134
  /*}*/
135
  .tutor-option-nav-tabs li:last-child:after {
136
+ content: "";
137
  }
138
+
139
  .tutor-option-nav-tabs li a {
140
+ display: block;
141
+ font-weight: bold;
142
+ text-decoration: none;
143
+ background: #fff;
144
+ padding: 5px 10px;
145
+ border: 1px solid #dddddd;
146
  }
147
+
148
  .tutor-option-nav-tabs li.current a {
149
+ color: #333333;
150
  }
151
+
152
  .tutor-option-nav-tabs li a:focus {
153
+ -webkit-box-shadow: none;
154
+ box-shadow: none;
155
  }
156
 
157
  /**
158
+ Withdraw Methods Nav
159
+ */
 
160
  .withdraw-method-nav {
161
+ margin-bottom: 20px;
162
  }
163
+
164
  .withdraw-method-nav li {
165
+ position: relative;
166
+ display: inline-block;
167
  }
168
+
169
  .withdraw-method-nav li a {
170
+ display: block;
171
+ text-decoration: none;
172
+ padding: 5px 10px;
173
+ border-right: 1px solid #cccccc;
174
  }
175
+
176
  .withdraw-method-nav li:last-child a {
177
+ border-right: none;
178
  }
 
 
 
179
 
180
+ /**
181
+ Option Field
182
+ */
183
  .tutor-option-field-row {
184
+ border-bottom: 1px solid #e4e4e4;
185
+ padding: 20px 0;
186
+ font-size: 14px;
187
+ line-height: 1.3;
188
  }
189
+
190
  .tutor-option-field-row:last-child {
191
+ border-bottom: none;
192
  }
193
+
194
  .tutor-option-field-row input[type="text"],
195
  .tutor-option-field-row input[type="email"],
196
  .tutor-option-field-row input[type="number"],
197
  .tutor-option-field-row input[type="password"],
198
  .tutor-option-field-row textarea,
199
  .tutor-option-field-row .tutor-field-type-slider {
200
+ background-color: #fff;
201
+ border: 1px solid #ddd;
202
+ border-radius: 3px;
203
+ -webkit-box-shadow: none;
204
+ box-shadow: none;
205
+ color: #333;
206
+ display: inline-block;
207
+ vertical-align: middle;
208
+ padding: 7px 12px;
209
+ margin: 0 10px 0 0;
210
+ width: 400px;
211
+ min-height: 35px;
212
  }
213
 
214
  .tutor_lesson_modal_form .tutor-option-field-row input[type="text"],
217
  .tutor_lesson_modal_form .tutor-option-field-row input[type="password"],
218
  .tutor_lesson_modal_form .tutor-option-field-row textarea,
219
  .tutor_lesson_modal_form .tutor-option-field-row .tutor-field-type-slider {
220
+ width: 100%;
221
+ display: block;
222
  }
223
 
224
  .tutor-option-field {
225
+ display: block;
226
+ margin: 0 0 0 200px;
227
+ max-width: 800px;
228
  }
229
+
230
  .rtl .tutor-option-field {
231
+ margin: 0 200px 0 0;
232
  }
233
+
234
  .tutor_lesson_modal_form .tutor-option-field {
235
+ display: block;
236
+ margin: 0;
237
+ max-width: none;
238
  }
239
+
240
  .tutor-option-field-label {
241
+ display: block;
242
+ float: left;
243
+ width: 200px;
244
  }
245
+
246
  .rtl .tutor-option-field-label {
247
+ float: right;
248
  }
249
+
250
  .tutor_lesson_modal_form .tutor-option-field-label {
251
+ display: block;
252
+ float: none;
253
+ width: 100%;
254
+ margin-bottom: 15px;
255
  }
256
 
257
  .tutor-lesson-attachments-metabox {
258
+ margin-top: 30px;
259
  }
260
 
261
  .tutor-option-field-label label {
262
+ display: block;
263
+ font-weight: 600;
264
  }
265
+
266
  .tutor-option-field p.desc {
267
+ font-style: italic;
268
+ color: #666;
269
+ font-size: 12px;
270
+ line-height: 1.5;
271
  }
272
+
273
  .tutor-option-field-row h2 {
274
+ color: #444;
275
+ font-size: 18px;
276
+ font-weight: 700;
277
+ margin: 0;
278
  }
279
+
280
  .tutor-option-field-row .option-media-wrap {
281
+ margin-bottom: 10px;
282
  }
283
+
284
  .tutor-option-field-row .option-media-wrap img {
285
+ max-height: 100px;
286
+ width: auto;
287
+ padding: 5px;
288
+ border: 1px solid #cccccc;
289
  }
290
+
291
  .select2-container {
292
+ min-width: 250px !important;
293
  }
294
+
295
  .membership_course_categories .select2-container {
296
+ min-width: 50% !important;
297
  }
298
+
299
  /**
300
+ Group Field Option
301
+ */
302
  .tutor-option-group-field {
303
+ display: inline-block;
304
+ vertical-align: top;
305
  }
306
+
307
  .tutor-option-group-field input[type="text"],
308
  .tutor-option-group-field input[type="email"],
309
  .tutor-option-group-field input[type="number"],
311
  .tutor-option-group-field textarea,
312
  .tutor-option-group-field .tutor-field-type-slider,
313
  .tutor-option-group-field select {
314
+ width: 100px;
315
+ margin-right: 5px;
316
  }
317
+
318
  .option-type-radio-wrap {
319
+ margin-top: 0;
320
  }
321
 
322
  /**
323
+ * Course adding page
324
+ * Course Builder
325
+ */
326
  #tutor-course-topics a {
327
+ text-decoration: none;
328
  }
329
+
330
  #tutor-course-topics .tutor-topics-wrap {
331
+ border-bottom: 1px solid #e7e7e7;
332
+ padding-bottom: 0;
333
+ margin: 0;
334
  }
335
+
336
  .tutor-untopics-lessons .course-content-item,
337
  .course-contents .course-content-item {
338
+ padding: 10px;
339
+ border-bottom: 1px solid #d9d9d9;
340
+ background-color: #ebeef0;
341
  }
342
+
343
  .tutor-lessons.ui-sortable {
344
+ min-height: 20px;
345
  }
346
+
347
  #tutor-course-topics .drop-lessons p {
348
+ margin: 0;
349
  }
350
+
351
  #tutor-course-topics .course-content-item:hover {
352
+ background-color: #ebeef0;
353
  }
354
+
355
  #tutor-course-topics .tutor-lessons {
356
+ padding-left: 0;
357
  }
358
+
359
  #tutor-course-topics .tutor-lesson-top,
360
  #tutor-course-topics .tutor-lesson-top i {
361
+ font-size: 15px;
362
  }
363
+
364
  #tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i {
365
+ display: inline-block;
366
+ vertical-align: middle;
367
+ margin-right: 5px;
368
  }
369
+
370
  .rtl #tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i {
371
+ margin-right: 0;
372
+ margin-left: 5px;
373
  }
374
+
375
  #tutor-course-topics .tutor-lesson-top {
376
+ display: -webkit-box;
377
+ display: -ms-flexbox;
378
+ display: flex;
379
+ font-size: 14px;
380
  }
381
+
382
  #tutor-course-topics .tutor-lesson-top .open-tutor-lesson-modal,
383
  .tutor-quiz .open-tutor-quiz-modal,
384
  .course-content-item .open-tutor-assignment-modal,
385
  .course-content-item .tutor-zoom-meeting-modal-open-btn {
386
+ -webkit-box-flex: 1;
387
+ -ms-flex: 1;
388
+ flex: 1;
389
  }
390
+
391
  #tutor-course-topics .tutor-lesson-top i.tutor-icon-move {
392
+ margin-right: 10px;
393
+ cursor: ns-resize;
394
  }
395
+
396
  .rtl #tutor-course-topics .tutor-lesson-top i.tutor-icon-move {
397
+ margin-right: 0;
398
+ margin-left: 10px;
399
  }
400
+
401
  #tutor-course-topics .tutor-lesson-top i.tutor-icon-pencil {
402
+ margin: 0 10px;
403
  }
404
+
405
  #tutor-course-topics .tutor-lesson-top a {
406
+ color: #393c40;
407
  }
408
 
409
  #tutor-course-topics .tutor-lesson-top a.tutor-updating-message i {
410
+ display: none;
411
  }
412
 
413
  .tutor-topics-wrap,
414
  .course-move-handle {
415
+ margin-right: 5px;
416
  }
417
+
418
  .course-move-handle {
419
+ -ms-flex-item-align: center;
420
+ align-self: center;
421
+ cursor: row-resize;
422
  }
423
+
424
  .new-topic-btn-wrap {
425
+ padding: 20px;
426
  }
427
+
428
  p.course-empty-content {
429
+ padding-left: 20px;
430
  }
431
+
432
  .tutor_btn_lg {
433
+ line-height: 45px;
434
+ background-color: var(--tutor-primary-color);
435
+ color: #ffffff;
436
+ padding: 0 20px;
437
+ display: inline-block;
438
+ border-radius: 2px;
439
+ font-size: 14px;
440
+ font-weight: 300;
441
+ border: none;
442
+ -webkit-box-shadow: none;
443
+ box-shadow: none;
444
+ cursor: pointer;
445
  }
446
+
447
  .tutor_btn_lg:focus {
448
+ -webkit-box-shadow: none;
449
+ box-shadow: none;
450
+ border: none;
451
+ outline: none;
452
  }
453
+
454
  .tutor_btn_lg:focus,
455
  .tutor_btn_lg:hover {
456
+ background-color: var(--tutor-primary-color);
457
+ color: #ffffff;
458
  }
459
 
460
  .ui-sortable-placeholder {
461
+ visibility: visible;
462
+ background-color: #dddd;
463
  }
464
+
465
  .tutor-untopics-lessons {
466
+ margin-top: 0;
467
+ border: 1px solid #eee;
468
+ padding: 20px;
469
+ margin-bottom: 20px;
470
+ background-color: #fbfbfb;
471
  }
472
+
473
  .tutor-untopics-lessons h3 {
474
+ font-weight: 300;
475
+ margin-top: 0px;
476
  }
477
+
478
  .tutor-untopics-lessons .tutor-lessons {
479
+ padding-left: 0 !important;
480
  }
481
+
482
  .create-new-lesson-wrap {
483
+ text-align: center;
484
  }
485
+
486
  .tutor-metabox-add-topics,
487
  .tutor-topics-edit-form {
488
+ background: #f1f1f1;
489
+ padding: 20px;
490
  }
491
+
492
  .tutor-metabox-add-topics .tutor-option-field-row {
493
+ padding: 15px 0;
494
  }
495
+
496
  .tutor-metabox-add-topics .tutor-option-field-row:last-child,
497
  .tutor-topics-edit-form .tutor-option-field-row:last-child {
498
+ border-bottom: none;
499
  }
500
+
501
  .topic-edit-icon {
502
+ cursor: pointer;
503
  }
504
+
505
  .tutor-topic-title {
506
+ display: -webkit-box;
507
+ display: -ms-flexbox;
508
+ display: flex;
509
+ font-size: 16px;
510
+ font-weight: 300;
511
+ margin: 0;
512
+ line-height: 40px;
513
+ padding-left: 15px;
514
  }
515
+
516
  .rtl .tutor-topic-title {
517
+ padding-left: 0;
518
+ padding-right: 15px;
519
  }
520
+
521
  .tutor-topic-title a {
522
+ color: #393c40;
523
  }
524
 
525
  .tutor-topic-title .topic-inner-title {
526
+ -webkit-box-flex: 1;
527
+ -ms-flex: 1 0 auto;
528
+ flex: 1 0 auto;
529
+ cursor: pointer;
530
+ max-width: calc(100% - 154px);
531
  }
532
+
533
  .tutor-topic-title span {
534
+ padding: 0 5px;
535
  }
536
+
537
  .tutor-topic-title span.expand-collapse-wrap {
538
+ border-left: 1px solid #e7e7e7;
539
  }
540
+
541
  .rtl .tutor-topic-title span.expand-collapse-wrap {
542
+ border-left: none;
543
+ border-right: 1px solid #e7e7e7;
544
  }
545
+
546
  .tutor-topic-title span.expand-collapse-wrap a {
547
+ display: block;
548
+ padding: 0 13px;
549
  }
550
+
551
  .topic-delete-btn {
552
+ float: right;
553
  }
554
+
555
  .text-muted {
556
+ color: #cccccc;
557
  }
558
+
559
  .topic-delete-btn a {
560
+ padding: 0 10px;
561
  }
562
+
563
  .topic-delete-btn a:hover {
564
+ color: #ff0000;
565
  }
566
+
567
  .topic-delete-btn .dashicons {
568
+ width: 12px;
569
+ height: 12px;
570
+ font-size: 12px;
571
  }
572
 
573
  #tutor-course-topics {
574
+ position: relative;
575
  }
576
+
577
  #tutor-course-topics .inside {
578
+ padding: 0;
579
+ margin: 0;
580
  }
581
+
582
  #tutor-course-topics a:focus {
583
+ -webkit-box-shadow: none;
584
+ box-shadow: none;
585
  }
586
+
587
  #tutor-course-topics .toggle-indicator:before {
588
+ margin-top: 20px;
589
  }
590
+
591
  .tutor-course-builder-header {
592
+ line-height: 50px;
593
+ position: absolute;
594
+ top: -69px;
595
+ right: 40px;
596
  }
597
+
598
  .rtl .tutor-course-builder-header {
599
+ right: auto;
600
+ left: 40px;
601
  }
602
+
603
  .tutor-topics-wrap:nth-child(2n) {
604
+ background: #f8f8f8;
605
  }
606
+
607
  #tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body {
608
+ background: #ebeef0;
609
+ padding: 15px 20px;
610
  }
611
+
612
  /*#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body .create-lesson-in-topic-btn,*/
613
  /*#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body .tutor-add-quiz-btn,*/
614
  /*#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body .tutor-create-assignments-btn*/
615
  /*
616
+ .tutor-course-builder-button{
617
+ line-height: 35px;
618
+ color: #393c40;
619
+ display: inline-block;
620
+ padding: 0 20px;
621
+ border-radius: 2px;
622
+ margin-right: 10px;
623
+ border: 1px solid #d3d4d5;
624
+ background-color: #f2f2f2;
625
+ cursor: pointer;
626
+ vertical-align: top;
627
+ transition: 200ms;
628
+ }
629
+
630
+ .tutor-course-builder-button.tutor-updating-message i{
631
+ display: none;
632
+ }
633
+
634
+ .tutor-course-builder-button.tutor-btn-lg{
635
+ line-height: 40px;
636
+ }
637
+
638
+ .tutor-course-builder-button.active,
639
+ .tutor-course-builder-button:hover{
640
+ color: #fff;
641
+ background: var(--tutor-primary-color);
642
+ border-color: var(--tutor-primary-color);
643
+ }
644
+
645
+
646
+ .tutor-course-builder-button.active:hover{
647
+ background: #393C40;
648
+ border-color: #393c40;
649
+ }
650
+
651
+ .tutor-course-builder-button i{
652
+ color: var(--tutor-primary-color);
653
+ vertical-align: middle;
654
+ margin-right: 5px;
655
+ font-size: 16px;
656
+ }
657
+
658
+ .tutor-course-builder-button.active i,
659
+ .tutor-course-builder-button:hover i{
660
+ color: #fff;
661
+ }
662
+
663
+ */
 
664
  .single_add_to_cart_button,
665
  a.tutor-button,
666
  .tutor-button,
667
  a.tutor-btn,
668
  .tutor-btn {
669
+ color: #fff;
670
+ border: 1px solid var(--tutor-primary-color);
671
+ background-color: var(--tutor-primary-color);
672
+ display: inline-block;
673
+ padding: 12px 18px;
674
+ border-radius: 4px;
675
+ text-transform: capitalize;
676
+ line-height: 20px;
677
+ font-size: 14px;
678
+ font-weight: 500;
679
+ cursor: pointer;
680
+ -webkit-transition: 300ms;
681
+ transition: 300ms;
682
+ overflow: hidden;
683
+ vertical-align: top;
684
  }
685
 
686
  .single_add_to_cart_button i,
688
  .tutor-button i,
689
  a.tutor-btn i,
690
  .tutor-btn i {
691
+ float: left;
692
+ line-height: 20px;
693
+ margin-right: 7px;
694
+ font-size: 20px;
695
  }
696
 
697
  a.tutor-button.default-btn i,
698
  .tutor-button.default-btn i,
699
  a.tutor-btn.default-btn i,
700
  .tutor-btn.default-btn i {
701
+ color: var(--tutor-primary-color);
702
  }
703
 
704
  a.tutor-button.bordered-button,
705
  .tutor-button.bordered-button,
706
  a.tutor-btn.bordered-btn,
707
  .tutor-btn.bordered-btn {
708
+ color: var(--tutor-primary-color);
709
+ border: 1px solid var(--tutor-primary-color);
710
+ background-color: transparent;
711
  }
712
 
713
  a.tutor-button:hover,
714
  .tutor-button:hover,
715
  a.tutor-btn:hover,
716
  .tutor-btn:hover {
717
+ background-color: var(--tutor-primary-hover-color);
718
+ border-color: var(--tutor-primary-hover-color);
719
+ color: #fff;
720
  }
721
 
722
  a.tutor-button:hover i,
723
  .tutor-button:hover i,
724
  a.tutor-btn:hover i,
725
  .tutor-btn:hover i {
726
+ color: #fff;
727
  }
728
 
729
  a.tutor-button.default-btn,
730
  .tutor-button.default-btn,
731
  a.tutor-btn.default-btn,
732
  .tutor-btn.default-btn {
733
+ color: #393c40;
734
+ border: 1px solid #b8babe;
735
+ background: #fff;
736
  }
737
 
738
  a.tutor-button.default-btn:hover,
739
  .tutor-button.default-btn:hover,
740
  a.tutor-btn.default-btn:hover,
741
  .tutor-btn.default-btn:hover {
742
+ background-color: var(--tutor-primary-color);
743
+ border-color: var(--tutor-primary-color);
744
+ color: #fff;
745
  }
746
 
747
  .tutor-add-quiz-button-wrap > * + * {
748
+ margin-left: 15px;
749
  }
750
 
751
  a.tutor-button.bordered-button:hover,
752
  .tutor-button.bordered-button:hover,
753
  a.tutor-btn.bordered-btn:hover,
754
  .tutor-btn.bordered-btn:hover {
755
+ border: 1px solid var(--tutor-primary-color);
756
+ background-color: var(--tutor-primary-color);
757
  }
758
 
759
  .tutor-updating-message i {
760
+ display: none;
761
  }
762
 
763
  .tutor-button.tutor-danger {
764
+ background-color: #e53935;
765
+ border-color: #e53935;
766
  }
767
+
768
  .tutor-button.tutor-danger:hover {
769
+ background-color: #e53935;
770
+ border-color: #e53935;
771
+ -webkit-filter: brightness(0.9);
772
+ filter: brightness(0.9);
773
  }
774
+
775
  .tutor-button.tutor-success {
776
+ background: var(--tutor-success-button-color);
777
+ border-color: var(--tutor-success-button-color);
778
  }
779
 
780
  .tutor-button.tutor-success:hover {
781
+ background: var(--tutor-success-button-color);
782
+ border-color: var(--tutor-success-button-color);
783
+ -webkit-filter: brightness(0.9);
784
+ filter: brightness(0.9);
785
  }
786
 
787
  /**
788
+ Instructor
789
+ */
790
  .tutor-required-fields {
791
+ color: #f13a3a;
792
  }
793
+
794
  /**
795
+ Meta Box Heading
796
+ */
797
  #tutor-course-topics h2,
798
  #tutor-instructors h2 {
799
+ padding: 15px;
800
+ line-height: 30px;
801
  }
802
+
803
  #tutor-course-topics h2:before,
804
  #tutor-instructors h2:before {
805
+ color: var(--tutor-primary-color);
806
+ font-family: "tutor" !important;
807
+ speak: none;
808
+ font-style: normal;
809
+ font-weight: normal;
810
+ font-variant: normal;
811
+ text-transform: none;
812
+ line-height: 1;
813
+ -webkit-font-smoothing: antialiased;
814
+ -moz-osx-font-smoothing: grayscale;
815
+ margin-right: 10px;
816
  }
817
+
818
  #tutor-course-topics h2:before {
819
+ content: "\e936";
820
  }
821
+
822
  #tutor-instructors h2:before {
823
+ content: "\e93c";
824
  }
 
 
 
825
 
826
  /**
827
+ End Metabox Heading
828
+ */
829
+ /**
830
+ Video MetaBox
831
+ */
832
  .tutor-video-metabox-wrap {
833
+ margin-bottom: 50px;
834
  }
835
+
836
  .video-metabox-source-input-wrap {
837
+ /*padding: 30px;*/
838
+ /*background-color: #F4F7F8;*/
839
+ /*border: 1px solid #DCDFE5;*/
840
+ /*border-radius: 3px;*/
841
  }
842
+
843
  .video-metabox-source-html5-upload {
844
+ background-color: #fff;
845
+ text-align: center;
846
+ padding: 40px 20px;
847
+ border: 1px solid #dcdfe5;
848
+ border-radius: 3px;
849
  }
850
+
851
  .video-metabox-source-html5-upload p {
852
+ margin-bottom: 5px;
853
  }
854
+
855
  .tutor-video-metabox-wrap p {
856
+ margin: 0;
857
+ padding: 0;
858
  }
859
+
860
  .video-metabox-source-html5-upload .video-upload-icon i {
861
+ font-size: 50px;
862
+ color: #1b52d8;
863
+ line-height: 45px;
864
  }
865
+
866
  .video_source_upload_wrap_html5 {
867
+ margin-top: 10px;
868
  }
869
+
870
  .video-metabox-source-html5-poster {
871
+ padding-top: 20px;
872
  }
873
+
874
  .video_source_wrap_html5 {
875
+ width: 100%;
876
  }
877
+
878
  .button-transparent {
879
+ background: transparent !important;
880
  }
881
+
882
  .button-transparent:hover {
883
+ background: var(--tutor-primary-color) !important;
884
  }
885
+
886
  .builder-course-thumbnail-upload-wrap .button-transparent {
887
+ float: right;
888
  }
889
 
890
  .html5-video-poster img {
891
+ height: 100%;
892
+ width: auto;
893
  }
894
+
895
  .html5-video-poster {
896
+ height: 100px;
897
+ display: -webkit-box;
898
+ display: -ms-flexbox;
899
+ display: flex;
900
+ -webkit-box-align: center;
901
+ -ms-flex-align: center;
902
+ align-items: center;
903
  }
904
 
905
  .html5-video-poster .tutor-builder-course-video-poster-text {
906
+ text-align: left;
907
+ padding-left: 20px;
908
  }
909
+
910
  .rtl .html5-video-poster .tutor-builder-course-video-poster-text {
911
+ padding-left: 0;
912
+ padding-right: 20px;
913
  }
914
+
915
  .html5-video-poster .tutor-builder-course-video-poster-text h5 {
916
+ font-size: 14px;
917
+ font-weight: 700;
918
+ margin: 0 0 5px;
919
  }
920
 
921
  .html5-video-poster .tutor-builder-course-video-poster-text span {
922
+ font-size: 14px;
923
+ font-weight: 400;
924
  }
925
 
926
  .html5-video-poster img {
927
+ height: 100%;
928
+ width: auto;
929
  }
 
930
 
931
+ /** END Video metabox */
932
  .builder-course-thumbnail-img-src {
933
+ position: relative;
934
  }
935
+
936
  .builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn {
937
+ position: absolute;
938
+ top: 12px;
939
+ left: 15px;
940
+ color: #e53935;
941
+ -webkit-transition: 300ms;
942
+ transition: 300ms;
943
+ text-decoration: none;
944
  }
945
+
946
  .video-metabox-source-html5-poster .tutor-row {
947
+ display: -webkit-box;
948
+ display: -ms-flexbox;
949
+ display: flex;
950
+ -ms-flex-wrap: wrap;
951
+ flex-wrap: wrap;
952
+ -webkit-box-pack: justify;
953
+ -ms-flex-pack: justify;
954
+ justify-content: space-between;
955
+ -webkit-box-align: center;
956
+ -ms-flex-align: center;
957
+ align-items: center;
958
  }
959
+
960
  .video-metabox-source-html5-poster .tutor-row .tutor-col-5 {
961
+ width: 38%;
962
  }
963
+
964
  .video-metabox-source-html5-poster .tutor-col-7 {
965
+ width: 62%;
966
  }
967
 
968
  .video-metabox-source-html5-poster
969
+ .tutor-row
970
+ .tutor-course-thumbnail-upload-btn {
971
+ margin: 10px 0;
972
  }
973
 
974
  .tutor-course-builder-attachements * {
975
+ -webkit-box-sizing: border-box;
976
+ box-sizing: border-box;
977
  }
978
 
979
  .tutor-course-builder-attachements {
980
+ display: -webkit-box;
981
+ display: -ms-flexbox;
982
+ display: flex;
983
+ margin-left: -20px;
984
+ -ms-flex-wrap: wrap;
985
+ flex-wrap: wrap;
986
+ -webkit-box-sizing: border-box;
987
+ box-sizing: border-box;
988
+ padding: 0 0 10px;
989
  }
990
+
991
  .tutor-course-builder-attachements:empty {
992
+ display: none;
993
  }
994
+
995
  .tutor-course-builder-attachements .tutor-added-attachment {
996
+ -webkit-box-flex: 0;
997
+ -ms-flex: 0 0 153px;
998
+ flex: 0 0 153px;
999
+ max-width: 153px;
1000
+ border: 1px solid #dcdfe5;
1001
+ padding: 35px 20px 20px;
1002
+ position: relative;
1003
+ text-align: center;
1004
+ margin-left: 20px;
1005
+ margin-bottom: 20px;
1006
+ border-radius: 4px;
1007
+ -webkit-transition: 300ms;
1008
+ transition: 300ms;
1009
+ min-width: 153px;
1010
  }
1011
+
1012
  .tutor-course-builder-attachements .tutor-added-attachment i {
1013
+ font-size: 58px;
1014
+ line-height: 58px;
1015
+ margin-bottom: 25px;
1016
+ display: block;
1017
  }
1018
+
1019
  .tutor-course-builder-attachements
1020
+ .tutor-added-attachment
1021
+ .tutor-delete-attachment {
1022
+ position: absolute;
1023
+ height: 22px;
1024
+ width: 22px;
1025
+ border: 1px solid #dcdfe5;
1026
+ text-align: center;
1027
+ line-height: 22px;
1028
+ top: -1px;
1029
+ right: -1px;
1030
+ font-size: 10px;
1031
+ border-top-right-radius: 4px;
1032
+ color: #d71830;
1033
+ opacity: 0;
1034
+ -webkit-transition: 300ms;
1035
+ transition: 300ms;
1036
+ text-decoration: none;
1037
  }
1038
+
1039
  .tutor-course-builder-attachements .tutor-added-attachment:hover,
1040
  .tutor-course-builder-attachements
1041
+ .tutor-added-attachment:hover
1042
+ .tutor-delete-attachment {
1043
+ border-color: #d71830;
1044
+ opacity: 1;
1045
  }
1046
+
1047
  .tutor-course-builder-attachements .tutor-added-attachment span {
1048
+ display: block;
1049
  }
1050
+
1051
  .tutor-course-builder-attachements .tutor-added-attachment span a {
1052
+ font-size: 14px;
1053
+ display: block;
1054
+ line-height: 20px;
1055
+ color: #606c8f;
1056
+ text-decoration: none;
1057
  }
1058
 
1059
  .tutor-course-builder-btn-group {
1060
+ display: -webkit-box;
1061
+ display: -ms-flexbox;
1062
+ display: flex;
1063
+ -webkit-box-pack: justify;
1064
+ -ms-flex-pack: justify;
1065
+ justify-content: space-between;
1066
+ -ms-flex-wrap: wrap;
1067
+ flex-wrap: wrap;
1068
+ -webkit-box-orient: horizontal;
1069
+ -webkit-box-direction: reverse;
1070
+ -ms-flex-direction: row-reverse;
1071
+ flex-direction: row-reverse;
1072
  }
1073
+
1074
  .tutor-status-context {
1075
+ padding: 5px 10px;
1076
+ margin: 5px 0;
1077
+ display: inline-block;
1078
  }
1079
+
1080
  .tutor-status-pending-context,
1081
  .attempt_started {
1082
+ background-color: #eeeeee;
1083
  }
1084
+
1085
  a.tutor-button,
1086
  button.tutor-button {
1087
+ white-space: nowrap;
1088
+ padding: 10px 20px;
1089
+ text-decoration: none;
1090
+ /*margin-right: 20px;*/
1091
  }
1092
+
1093
  a.tutor-button-small,
1094
  button.tutor-button-small {
1095
+ white-space: nowrap;
1096
+ padding: 5px 10px;
1097
+ text-decoration: none;
1098
  }
1099
+
1100
  .tutor-button-small,
1101
  a.tutor-button-small,
1102
  button.tutor-button-small {
1103
+ font-size: 14px;
1104
+ font-weight: 300;
1105
+ border: none;
1106
  }
1107
+
1108
  .tutor-button-small i,
1109
  a.tutor-button-small i,
1110
  button.tutor-button-small i {
1111
+ font-size: 16px;
1112
  }
1113
+
1114
  .tutor-button-primary {
1115
+ background-color: var(--tutor-primary-color);
1116
+ color: #ffffff;
1117
+ display: inline-block;
1118
+ border-radius: 2px;
1119
+ font-size: 14px;
1120
+ font-weight: 300;
1121
+ border: none;
1122
+ -webkit-box-shadow: none;
1123
+ box-shadow: none;
1124
+ cursor: pointer;
1125
  }
1126
+
1127
  .tutor-button-primary:hover {
1128
+ background-color: #2446a6;
1129
  }
1130
+
1131
  .tutor-status-approved-context,
1132
  .tutor-button.button-success,
1133
  .tutor-status-completed {
1134
+ background-color: var(--tutor-success-button-color);
1135
+ color: #ffffff;
1136
+ border-radius: 2px;
1137
  }
1138
+
1139
  .tutor-status-blocked-context,
1140
  .attempt_timeout,
1141
  .tutor-button.button-danger {
1142
+ background-color: #ff0000;
1143
+ color: #ffffff;
1144
+ border-radius: 2px;
1145
  }
1146
+
1147
  .tutor-button.button-warning {
1148
+ background-color: #ffb36d;
1149
+ color: #ffffff;
1150
  }
1151
+
1152
  .tutor-button {
1153
+ border: 0;
1154
+ -webkit-box-shadow: none !important;
1155
+ box-shadow: none !important;
1156
  }
1157
+
1158
  .tutor-button .dashicons {
1159
+ border: 0;
1160
+ -webkit-box-shadow: none !important;
1161
+ box-shadow: none !important;
1162
+ line-height: inherit;
1163
  }
1164
+
1165
  .tutor-status-approved-context,
1166
  .tutor-status-blocked-context {
1167
+ display: inline-block;
1168
  }
1169
+
1170
  table.tutor_status_table td.help {
1171
+ width: 1em;
1172
  }
1173
+
1174
  table.tutor_status_table td:first-child {
1175
+ width: 25%;
1176
  }
1177
+
1178
  table.tutor_status_table h2 {
1179
+ font-size: 16px;
1180
+ margin: 0;
1181
  }
1182
+
1183
  table.tutor_status_table td mark.yes,
1184
  table.tutor_status_table th mark.yes {
1185
+ color: var(--tutor-success-button-color);
1186
+ background-color: transparent;
1187
  }
1188
 
1189
  .tutor-text-avatar {
1190
+ border-radius: 50%;
1191
+ width: 40px;
1192
+ height: 40px;
1193
+ text-align: center;
1194
+ display: block;
1195
+ line-height: 40px;
1196
+ color: #ffffff;
1197
+ font-size: 14px;
1198
  }
1199
+
1200
  .tutor_original_question {
1201
+ display: -webkit-box;
1202
+ display: -ms-flexbox;
1203
+ display: flex;
1204
+ margin-bottom: 5px;
1205
+ padding: 20px;
1206
  }
1207
+
1208
  .tutor_original_question .question-left {
1209
+ -webkit-box-flex: 0;
1210
+ -ms-flex: 0 0 60px;
1211
+ flex: 0 0 60px;
1212
  }
1213
+
1214
  .tutor_original_question .question-left img {
1215
+ max-width: 60px;
1216
+ height: auto;
1217
+ margin-right: 10px;
1218
+ border: 1px solid #eeee88;
1219
+ padding: 3px;
1220
  }
1221
+
1222
  .question-right {
1223
+ width: 100%;
1224
  }
1225
+
1226
  .tutor_admin_answers_list_wrap .tutor_original_question {
1227
+ margin-left: 50px;
1228
  }
1229
+
1230
  .tutor-bg-white {
1231
+ background-color: #ffffff;
1232
  }
1233
+
1234
  .tutor-bg-light {
1235
+ background-color: #fdfdfd;
1236
  }
1237
+
1238
  .tutor-announcement {
1239
+ border: 1px solid #eee;
1240
+ padding: 10px;
1241
+ margin-bottom: 10px;
1242
  }
1243
+
1244
  .announcement-delete-btn {
1245
+ float: right;
1246
  }
1247
+
1248
  .announcement-delete-btn a {
1249
+ display: block;
1250
+ color: #393c40;
1251
+ padding: 0 6px;
1252
+ text-decoration: none;
1253
+ cursor: pointer;
1254
  }
1255
+
1256
  .announcement-delete-btn a:hover {
1257
+ color: #ff0000;
1258
  }
1259
 
1260
  #tutor-announcements .submit {
1261
+ margin: 0;
1262
+ padding: 0;
1263
  }
1264
 
1265
  .tutor-label-success {
1266
+ background-color: var(--tutor-success-button-color);
1267
+ color: #ffffff;
1268
+ padding: 3px 7px;
1269
  }
1270
+
1271
  .tutor-addons .plugin-card-bottom .plugin-version {
1272
+ display: inline-block;
1273
  }
1274
+
1275
  .tutor-addons .addon-regular-price {
1276
+ color: #cccccc;
1277
+ padding: 3px;
1278
  }
1279
+
1280
  .tutor-addons .addon-current-price {
1281
+ color: var(--tutor-success-button-color);
1282
+ font-size: 18px;
1283
+ padding: 3px;
1284
  }
1285
+
1286
  .tutor-addons-last-checked-time {
1287
+ color: #6f5757 !important;
1288
  }
1289
+
1290
  .tutor-addons .wp-filter {
1291
+ margin: 10px 0 0;
1292
  }
1293
+
1294
  a.addon-buynow-link {
1295
+ background: var(--tutor-primary-color);
1296
+ color: #fff;
1297
+ padding: 5px 10px;
1298
+ display: inline-block;
1299
  }
1300
+
1301
  /**
1302
+ Add-ons list
1303
+ */
1304
  .tutor-addons-list {
1305
+ background-color: #fff;
1306
+ min-height: 500px;
1307
+ padding: 20px;
1308
  }
1309
+
1310
  h3.addon-list-heading {
1311
+ background-color: #eeeeee;
1312
+ padding: 10px;
1313
  }
1314
+
1315
  table.tutor-addons-list-table {
1316
+ width: 100%;
 
 
1317
  }
1318
+
1319
  table.tutor-addons-list-table td,
1320
  table.tutor-addons-list-table th {
1321
+ padding: 10px;
1322
+ border-bottom: 1px solid #eeeeee;
1323
+ text-align: left;
1324
  }
1325
+
1326
  .tutor-addons-list .plugin-icon {
1327
+ height: 120px;
1328
  }
1329
+
1330
  .tutor-addons-list .plugin-card .desc {
1331
+ margin-right: 0;
1332
  }
1333
+
1334
  .tutor-addons-list .plugin-card .name {
1335
+ margin-right: 50px;
1336
  }
1337
 
1338
  /* RTL Style for name and desc */
1339
+ .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .desc,
1340
+ .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .name {
1341
+ margin-right: 148px !important;
1342
  }
1343
 
1344
+ .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .desc {
1345
+ margin-left: 0 !important;
1346
  }
1347
 
1348
+ .tutor-lms-pro_page_tutor-addons.rtl .plugin-card .name {
1349
+ margin-left: 53px !important;
1350
  }
1351
 
 
1352
  .btn-switch {
1353
+ display: inline-block;
1354
+ height: 22px;
1355
+ position: relative;
1356
+ width: 40px;
1357
  }
1358
+
1359
  .btn-switch input {
1360
+ display: none;
1361
  }
1362
+
1363
  .btn-slider {
1364
+ background-color: #ccc;
1365
+ bottom: 0;
1366
+ cursor: pointer;
1367
+ left: 0;
1368
+ position: absolute;
1369
+ right: 0;
1370
+ top: 0;
1371
+ -webkit-transition: 0.4s;
1372
+ transition: 0.4s;
1373
  }
1374
+
1375
  .btn-slider:before {
1376
+ background-color: #fff;
1377
+ bottom: 3px;
1378
+ content: "";
1379
+ height: 16px;
1380
+ left: 4px;
1381
+ position: absolute;
1382
+ -webkit-transition: 0.4s;
1383
+ transition: 0.4s;
1384
+ width: 16px;
1385
  }
1386
+
1387
  input:checked + .btn-slider {
1388
+ background-color: var(--tutor-primary-color);
1389
  }
1390
+
1391
  input:checked + .btn-slider:before {
1392
+ -webkit-transform: translateX(16px);
1393
+ transform: translateX(16px);
1394
  }
1395
+
1396
  .btn-slider.btn-round {
1397
+ border-radius: 34px;
1398
  }
1399
+
1400
  .btn-slider.btn-round:before {
1401
+ border-radius: 50%;
1402
  }
1403
+
1404
  .required-plugin-cards {
1405
+ background: #fff8e5;
1406
+ padding: 12px 20px;
1407
  }
1408
+
1409
  .required-plugin-cards p {
1410
+ margin: 0;
1411
  }
1412
+
1413
  /**
1414
+ Quiz-question
1415
+ */
1416
  .quiz-question-form-wrap {
1417
+ margin-top: 20px;
1418
+ margin-bottom: 20px;
1419
  }
1420
+
1421
  .quiz-question-flex-wrap,
1422
  .tutor-flex-row {
1423
+ display: -webkit-box;
1424
+ display: -ms-flexbox;
1425
+ display: flex;
1426
+ -webkit-box-orient: horizontal;
1427
+ -webkit-box-direction: normal;
1428
+ -ms-flex-direction: row;
1429
+ flex-direction: row;
1430
  }
1431
+
1432
  .tutor-flex-col {
1433
+ margin: 0 20px;
1434
  }
1435
+
1436
  .tutor-flex-col:first-child {
1437
+ margin-left: 0;
1438
  }
1439
+
1440
  .tutor-flex-col:last-child {
1441
+ margin-right: 0;
1442
  }
1443
+
1444
  .tutor-add-question-wrap {
1445
+ margin: 20px 0;
1446
+ background-color: #f4f4f4;
1447
+ padding: 10px;
1448
  }
1449
+
1450
  .tutor-add-question-wrap input[type="text"] {
1451
+ border: 1px solid #ddd;
1452
+ border-radius: 0;
1453
+ -webkit-box-shadow: none;
1454
+ box-shadow: none;
1455
+ color: #333;
1456
+ display: inline-block;
1457
+ vertical-align: middle;
1458
+ padding: 7px 12px;
1459
+ margin: 0;
1460
+ width: 300px;
1461
+ min-height: 35px;
1462
  }
1463
+
1464
  .tutor-add-question-wrap select {
1465
+ margin: 0;
1466
+ padding: 0;
1467
+ border-radius: 0;
1468
+ border: none;
1469
+ -webkit-box-shadow: none;
1470
+ box-shadow: none;
1471
+ height: 35px;
1472
  }
1473
+
1474
  .tutor-add-question-wrap .button {
1475
+ height: 35px;
1476
+ margin-left: 10px;
1477
  }
1478
+
1479
  .question-actions-wrap {
1480
+ padding-right: 0 !important;
1481
  }
1482
+
1483
  .question-actions-wrap a {
1484
+ display: inline-block;
1485
  }
1486
+
1487
  .tutor-loading-icon-wrap.button {
1488
+ vertical-align: unset;
1489
+ border: none;
1490
+ background-color: transparent;
1491
+ -webkit-box-shadow: none;
1492
+ box-shadow: none;
1493
  }
1494
 
1495
  .tutor-input-text-error {
1496
+ border: 1px solid #ff0000 !important;
1497
  }
1498
+
1499
  .tutor-info-msg,
1500
  .tutor-success-msg,
1501
  .tutor-warning-msg,
1502
  .tutor-error-msg {
1503
+ margin: 10px 0;
1504
+ padding: 10px;
1505
+ border-radius: 3px 3px 3px 3px;
1506
  }
1507
+
1508
  .tutor-info-msg {
1509
+ color: var(--tutor-primary-color);
1510
+ background-color: #bef;
1511
+ border: 1px solid var(--tutor-primary-color);
1512
  }
1513
+
1514
  .tutor-success-msg {
1515
+ color: var(--tutor-success-button-color);
1516
+ background-color: #dff2bf;
1517
+ border: 1px solid var(--tutor-success-button-color);
1518
  }
1519
+
1520
  .tutor-warning-msg {
1521
+ color: #9f6000;
1522
+ background-color: #feefb3;
1523
+ border: 1px solid #9f6000;
1524
  }
1525
+
1526
  .tutor-error-msg {
1527
+ color: #d8000c;
1528
+ background-color: #fbdcdc;
1529
+ border: 1px solid #d8000c;
1530
  }
1531
 
1532
  /**
1533
+ Quiz Modal
1534
+ */
 
1535
  .tutor-modal-wrap {
1536
+ opacity: 0;
1537
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
1538
+ display: none;
1539
+ position: fixed;
1540
+ top: 0;
1541
+ left: 0;
1542
+ right: 0;
1543
+ bottom: 0;
1544
+ z-index: -1;
1545
+ background-color: rgba(0, 0, 0, 0.5);
1546
  }
1547
+
1548
  .tutor-modal-wrap.show {
1549
+ display: -webkit-box;
1550
+ display: -ms-flexbox;
1551
+ display: flex;
1552
+ opacity: 1;
1553
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
1554
+ z-index: 99999;
1555
+ -webkit-box-align: center;
1556
+ -ms-flex-align: center;
1557
+ align-items: center;
1558
+ -webkit-box-pack: center;
1559
+ -ms-flex-pack: center;
1560
+ justify-content: center;
1561
  }
1562
+
1563
  .tutor-modal-wrap.loading .tutor-modal-content:before {
1564
+ position: absolute;
1565
+ top: 0;
1566
+ left: 0;
1567
+ right: 0;
1568
+ bottom: 0;
1569
+ display: block;
1570
+ content: "";
1571
+ z-index: 9;
1572
+ background: url("../images/spinner.gif") no-repeat center center;
1573
  }
1574
+
1575
  .tutor-modal-wrap .tutor-modal-content {
1576
+ max-height: 90%;
1577
+ overflow-y: auto;
1578
+ overflow-x: hidden;
1579
+ background-color: #fff;
1580
+ max-width: 730px;
1581
+ margin: 0;
1582
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
1583
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
1584
+ position: relative;
1585
+ -webkit-transition: all 200ms ease-out;
1586
+ transition: all 200ms ease-out;
1587
+ width: 90%;
1588
  }
1589
 
1590
  .admin-bar .tutor-modal-wrap .tutor-modal-content {
1591
+ max-height: calc(90% - 32px);
1592
+ margin-top: 32px;
1593
  }
1594
 
1595
  .admin-bar.mceContentBody .tutor-modal-wrap .tutor-modal-content {
1596
+ max-height: calc(90% - 88px);
1597
+ margin-top: 88px;
1598
  }
1599
 
1600
  .tutor-modal-wrap .modal-footer {
1601
+ padding: 20px;
1602
+ border-top: 1px solid #eee;
1603
  }
1604
+
1605
  .tutor-modal-wrap .modal-container {
1606
+ min-height: 200px;
1607
+ padding: 20px;
1608
  }
1609
+
1610
  .tutor-modal-wrap .modal-container p {
1611
+ margin: 5px 0 15px;
1612
  }
1613
 
1614
  .tutor-instructors-modal-wrap.tutor-modal-wrap .modal-container {
1615
+ padding: 20px;
1616
+ background: #fff;
1617
+ min-height: auto;
1618
  }
1619
 
1620
  .tutor-modal-wrap .modal-header {
1621
+ display: -webkit-box;
1622
+ display: -ms-flexbox;
1623
+ display: flex;
1624
  }
1625
+
1626
  .tutor-modal-wrap .search-bar {
1627
+ -ms-flex-preferred-size: 0;
1628
+ flex-basis: 0;
1629
+ -webkit-box-flex: 1;
1630
+ -ms-flex-positive: 1;
1631
+ flex-grow: 1;
1632
+ padding-top: 10px;
1633
+ padding-left: 20px;
1634
+ padding-right: 20px;
1635
  }
1636
+
1637
  .tutor-modal-wrap .search-bar input[type="text"] {
1638
+ width: 100%;
1639
+ border: 1px solid #eee;
1640
+ -webkit-box-shadow: none;
1641
+ box-shadow: none;
1642
+ padding: 10px;
1643
  }
1644
 
1645
  .tutor-modal-wrap .modal-title {
1646
+ -ms-flex-preferred-size: 0;
1647
+ flex-basis: 0;
1648
+ -webkit-box-flex: 1;
1649
+ -ms-flex-positive: 1;
1650
+ flex-grow: 1;
1651
  }
1652
+
1653
  .tutor-modal-wrap a.modal-close-btn {
1654
+ background: #ffffff;
1655
+ width: 50px;
1656
+ height: 59px;
1657
+ display: inline-block;
1658
+ text-align: center;
1659
+ line-height: 57px;
1660
+ color: #3a3d42;
1661
+ font-size: 15px;
1662
+ position: absolute;
1663
+ right: 0;
1664
+ top: 0;
1665
+ text-decoration: none;
1666
  }
1667
+
1668
  .tutor-modal-wrap .modal-header {
1669
+ padding: 15px 20px;
1670
+ border-bottom: 1px solid #eeeff1;
1671
+ padding-right: 50px;
1672
+ -webkit-box-align: center;
1673
+ -ms-flex-align: center;
1674
+ align-items: center;
1675
  }
1676
 
1677
  .tutor-modal-wrap .modal-header .tutor-classic-editor-btn {
1678
+ color: var(--tutor-primary-color);
1679
  }
1680
 
1681
  .tutor-modal-wrap .modal-header h1 {
1682
+ padding: 0;
1683
+ margin: 0;
1684
+ line-height: 30px;
1685
+ font-size: 23px;
1686
  }
1687
+
1688
  .tutor-modal-wrap .modal-container {
1689
+ background-color: #f1f1f1;
1690
+ padding: 0;
1691
  }
1692
+
1693
  #tutor-quiz-modal-tab-items-wrap {
1694
+ background-color: #fff;
1695
+ font-size: 0;
1696
+ overflow: hidden;
1697
  }
1698
+
1699
  #tutor-quiz-builder-modal-tabs-container {
1700
+ padding: 20px;
1701
  }
1702
+
1703
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item {
1704
+ padding: 15px 25px;
1705
+ display: inline-block;
1706
+ color: #393c40;
1707
+ border-left: 1px solid #f1f1f1;
1708
+ font-size: 14px;
1709
+ overflow: hidden;
1710
+ line-height: 17px;
1711
+ vertical-align: middle;
1712
  }
1713
+
1714
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active {
1715
+ background-color: #f1f1f1;
1716
  }
1717
+
1718
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item i {
1719
+ float: left;
1720
+ font-size: 17px;
1721
+ line-height: 1;
1722
+ margin-right: 5px;
1723
  }
1724
+
1725
  #tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active i {
1726
+ color: var(--tutor-primary-color);
1727
  }
1728
+
1729
  .quiz-modal-tab-navigation-btn {
1730
+ padding: 10px 20px;
1731
+ border-radius: 3px;
1732
  }
1733
+
1734
  .quiz-modal-btn-next,
1735
  .quiz-modal-btn-next:focus,
1736
  .quiz-modal-btn-first-step,
1739
  .quiz-modal-question-save-btn:focus,
1740
  .quiz-modal-settings-save-btn,
1741
  .quiz-modal-settings-save-btn:focus {
1742
+ background-color: var(--tutor-primary-color);
1743
+ color: #ffffff;
1744
  }
1745
+
1746
  .quiz-modal-btn-next:hover,
1747
  .quiz-modal-btn-first-step:hover,
1748
  .quiz-modal-question-save-btn:hover,
1749
  .quiz-modal-settings-save-btn:hover {
1750
+ color: #ffffff;
1751
  }
1752
+
1753
  .quiz-modal-btn-cancel,
1754
  .quiz-modal-btn-back {
1755
+ color: #4b5981;
1756
+ border: 1px solid #d4dadb;
1757
  }
1758
+
1759
  .tutor-quiz-builder-form-row .quiz-form-warning {
1760
+ color: #e88e06;
1761
  }
1762
+
1763
  .tutor-assignment-builder-modal-wrap .modal-container {
1764
+ padding: 10px;
1765
  }
1766
+
1767
  .assignment-modal-form-wrap
1768
+ .tutor-option-field.tutor-assignment-modal-title-wrap {
1769
+ margin: 0;
1770
  }
1771
+
1772
  .tutor-quiz-question-answers-form {
1773
+ background-color: #fff;
1774
+ padding: 20px;
1775
+ -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
1776
+ transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
1777
+ border: 1px solid #dedede;
1778
+ border-radius: 3px;
1779
+ margin-bottom: 20px;
1780
  }
1781
+
1782
  .advanced-options-tab-item {
1783
+ float: right;
1784
  }
1785
 
1786
  .modal-container .modal-classic-btn-wrap {
1787
+ position: absolute;
1788
+ right: 45px;
1789
+ top: 20px;
1790
  }
1791
+
1792
  .rtl .modal-container .modal-classic-btn-wrap {
1793
+ left: 20px;
1794
+ right: auto;
1795
  }
1796
+
1797
  .modal-container .modal-classic-btn-wrap .tutor-classic-editor-btn {
1798
+ color: var(--tutor-primary-color);
1799
  }
1800
 
1801
  /** Tutor Quiz Modal Form */
 
1802
  /*notice*/
1803
  .tutor-quiz-builder-modal-tabs-notice {
1804
+ background: #d8d8d8;
1805
+ line-height: 20px;
1806
+ padding: 10px 30px;
1807
+ color: #a4a4a4;
1808
  }
1809
+
1810
  #tutor-course-topics .tutor-quiz-builder-modal-tabs-notice a {
1811
+ color: #a4a4a4;
1812
+ text-decoration: underline;
1813
  }
 
1814
 
1815
+ /*end notice*/
1816
  /* .tutor-quiz-builder-group */
 
1817
  .tutor-quiz-builder-group {
1818
+ margin-bottom: 25px;
1819
  }
1820
 
1821
  .tutor-quiz-builder-group > p.warning {
1822
+ color: red;
1823
+ font-size: 12px;
1824
  }
1825
+
1826
  .tutor-quiz-builder-group > p.help {
1827
+ color: #a4a4a4;
1828
+ font-size: 12px;
1829
+ margin-top: 7px;
1830
  }
1831
 
1832
  .tutor-quiz-builder-group h4 {
1833
+ font-size: 14px;
1834
+ color: #393c40;
1835
+ font-weight: 600;
1836
+ margin: 0 0 15px;
1837
  }
1838
 
1839
  .tutor-quiz-builder-row {
1840
+ display: -webkit-box;
1841
+ display: -ms-flexbox;
1842
+ display: flex;
1843
+ -webkit-box-align: center;
1844
+ -ms-flex-align: center;
1845
+ align-items: center;
1846
+ margin-left: -10px;
1847
+ margin-right: -10px;
1848
  }
1849
 
1850
  .tutor-quiz-builder-col {
1851
+ padding-left: 10px;
1852
+ padding-right: 10px;
1853
+ -webkit-box-flex: 1;
1854
+ -ms-flex-positive: 1;
1855
+ flex-grow: 1;
1856
  }
1857
+
1858
  .tutor-quiz-builder-col.auto-width {
1859
+ -webkit-box-flex: 0;
1860
+ -ms-flex: 0 0 auto;
1861
+ flex: 0 0 auto;
1862
  }
1863
 
1864
  .tutor-quiz-builder-group textarea,
1866
  .tutor-quiz-builder-group input[type="email"],
1867
  .tutor-quiz-builder-group input[type="number"],
1868
  .tutor-quiz-builder-group input[type="password"] {
1869
+ line-height: 40px;
1870
+ padding: 5px 0;
1871
+ text-indent: 15px;
1872
+ background: #fff;
1873
+ display: inline-block;
1874
+ border: 1px solid #dedede;
1875
+ border-radius: 3px;
1876
+ -webkit-box-shadow: none;
1877
+ box-shadow: none;
1878
+ height: 40px;
1879
+ margin: 0;
1880
+ width: 100%;
1881
+ color: #393c40;
1882
+ font-size: 14px;
1883
  }
1884
+
1885
  .tutor-quiz-builder-group textarea:focus,
1886
  .tutor-quiz-builder-group input[type="text"]:focus,
1887
  .tutor-quiz-builder-group input[type="email"]:focus,
1888
  .tutor-quiz-builder-group input[type="number"]:focus,
1889
  .tutor-quiz-builder-group input[type="password"]:focus {
1890
+ border-color: var(--tutor-primary-color);
1891
  }
1892
 
1893
  .tutor-quiz-builder-group textarea {
1894
+ height: 80px;
1895
+ resize: none;
1896
+ text-indent: 0;
1897
+ padding: 11px 15px;
1898
+ line-height: 22px;
1899
  }
1900
 
1901
  .tutor-quiz-builder-group textarea[name="quiz_description"] {
1902
+ height: 150px;
1903
  }
1904
 
1905
  .tutor-quiz-builder-group select {
1906
+ border: 1px solid #ccc;
1907
+ -webkit-box-shadow: none;
1908
+ box-shadow: none;
1909
+ height: 42px !important;
1910
+ padding: 0 24px 0 12px !important;
1911
+ margin: 0;
1912
  }
1913
 
1914
  .tutor-quiz-builder-modal-control-btn-group {
1915
+ display: -webkit-box;
1916
+ display: -ms-flexbox;
1917
+ display: flex;
1918
+ margin-top: 20px;
1919
  }
1920
 
1921
  .question_form_inner {
1922
+ padding: 0 20px 20px;
1923
+ margin-top: 0;
1924
  }
1925
 
1926
  .tutor-quiz-builder-modal-control-btn-group .quiz-builder-btn-group-left {
1927
+ -webkit-box-flex: 1;
1928
+ -ms-flex: 1;
1929
+ flex: 1;
1930
  }
1931
+
1932
  .tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn {
1933
+ display: inline-block;
1934
  }
1935
+
1936
  .tutor-quiz-builder-modal-control-btn-group
1937
+ .quiz-modal-tab-navigation-btn:not(:last-child) {
1938
+ margin-right: 6px;
1939
  }
1940
+
1941
  .modal-container .tutor-quiz-add-question-btn {
1942
+ border: 1px solid #c6c9cf;
1943
+ padding: 10px 15px;
1944
+ color: #393c40;
1945
+ display: inline-block;
1946
+ border-radius: 3px;
1947
  }
1948
+
1949
  .modal-container .tutor-quiz-add-question-btn i {
1950
+ color: var(--tutor-primary-color);
1951
+ line-height: 16px;
1952
+ margin-right: 3px;
1953
  }
1954
 
1955
  .quiz-form-field-col {
1956
+ margin-right: 20px;
1957
  }
1958
+
1959
  .quiz-form-field-col.result-fail {
1960
+ width: 100%;
1961
  }
1962
+
1963
  .quiz-modal-switch-field {
1964
+ display: -webkit-box;
1965
+ display: -ms-flexbox;
1966
+ display: flex;
1967
+ margin-top: 30px;
1968
  }
1969
+
1970
  .quiz-modal-switch-field label.btn-switch {
1971
+ margin-right: 20px;
1972
+ position: relative;
1973
  }
1974
 
1975
  label.btn-switch input:checked + .btn-slider {
1976
+ background-color: var(--tutor-success-button-color);
1977
  }
1978
 
1979
  .btn-switch + span {
1980
+ line-height: 24px;
1981
+ display: inline-block;
1982
+ margin-left: 8px;
1983
+ font-weight: 700;
1984
+ font-size: 14px;
1985
  }
1986
 
1987
  .tutor-select {
1988
+ position: relative;
1989
  }
1990
+
1991
  .tutor-select .select-header {
1992
+ border: 1px solid #dedede;
1993
+ margin: 0;
1994
+ padding: 10px;
1995
+ width: 100%;
1996
+ -webkit-box-shadow: none;
1997
+ box-shadow: none;
1998
+ background-color: #fff;
1999
+ display: -webkit-box;
2000
+ display: -ms-flexbox;
2001
+ display: flex;
2002
+ cursor: pointer;
2003
+ -webkit-box-sizing: border-box;
2004
+ box-sizing: border-box;
2005
+ border-radius: 3px;
2006
  }
2007
+
2008
  .tutor-select .select-header .lead-option {
2009
+ -webkit-box-flex: 1;
2010
+ -ms-flex: 1;
2011
+ flex: 1;
2012
  }
2013
+
2014
  .tutor-select .select-header .select-dropdown {
2015
+ line-height: 22px;
2016
  }
2017
+
2018
  .tutor-select .select-header .lead-option .question-type-pro {
2019
+ display: none;
2020
  }
2021
+
2022
  .tutor-select .tutor-select-options {
2023
+ border: 1px solid #dedede;
2024
+ background-color: #fff;
2025
+ padding: 22px 10px 8px;
2026
+ width: calc(100% - 22px);
2027
+ position: absolute;
2028
+ font-size: 0;
2029
+ z-index: 9;
2030
+ display: -webkit-box;
2031
+ display: -ms-flexbox;
2032
+ display: flex;
2033
+ -ms-flex-wrap: wrap;
2034
+ flex-wrap: wrap;
2035
+ -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
2036
+ box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
2037
+ top: 55px;
2038
+ border-radius: 3px;
2039
  }
2040
+
2041
  .tutor-select .tutor-select-options .tutor-select-option {
2042
+ width: calc(33.3333% - 22px);
2043
+ display: inline-block;
2044
+ padding: 9px;
2045
+ cursor: pointer;
2046
+ position: relative;
2047
+ -webkit-box-sizing: border-box;
2048
+ box-sizing: border-box;
2049
+ margin: 0 11px 15px;
2050
+ border: 1px solid #e2e2e2;
2051
+ border-radius: 3px;
2052
  }
2053
+
2054
  .tutor-select .tutor-select-options .tutor-select-option:hover {
2055
+ border-color: var(--tutor-primary-color);
2056
  }
2057
+
2058
  .question-type-pro {
2059
+ color: #fff;
2060
+ font-size: 9px;
2061
+ right: 11px;
2062
+ position: absolute;
2063
+ top: 50%;
2064
+ -webkit-transform: translateY(-50%);
2065
+ transform: translateY(-50%);
2066
  }
2067
+
2068
  i.tutor-icon-block {
2069
+ padding: 0;
2070
+ color: #fff;
2071
+ border-radius: 3px;
2072
+ margin-right: 2px;
2073
+ display: inline-block;
2074
+ width: 22px;
2075
+ height: 22px;
2076
+ text-align: center;
2077
+ line-height: 22px;
2078
  }
2079
+
2080
  i.tutor-icon-block.tutor-icon-short-ans {
2081
+ background-color: #f37512;
2082
  }
2083
+
2084
  i.tutor-icon-block.tutor-icon-image-ans {
2085
+ background-color: #a322f9;
2086
  }
2087
+
2088
  i.tutor-icon-block.tutor-icon-yes-no {
2089
+ background-color: var(--tutor-primary-color);
2090
  }
2091
+
2092
  i.tutor-icon-block.tutor-icon-multiple-choice {
2093
+ background-color: #9034a9;
2094
  }
2095
+
2096
  i.tutor-icon-block.tutor-icon-mark {
2097
+ background-color: #00b890;
2098
  }
2099
+
2100
  i.tutor-icon-block.tutor-icon-open-ended {
2101
+ background-color: #fe3129;
2102
  }
2103
+
2104
  i.tutor-icon-block.tutor-icon-fill-gaps {
2105
+ background-color: #ffbf00;
2106
  }
2107
+
2108
  i.tutor-icon-block.tutor-icon-answer-shorting {
2109
+ background-color: #f80089;
2110
  }
2111
+
2112
  i.tutor-icon-block.tutor-icon-assesment {
2113
+ background-color: #274055;
2114
  }
2115
+
2116
  i.tutor-icon-block.tutor-icon-matching {
2117
+ background-color: #8a4a1b;
2118
  }
2119
+
2120
  i.tutor-icon-block.tutor-icon-image-matching {
2121
+ background-color: #8a4a1b;
2122
  }
2123
+
2124
  i.tutor-icon-block.tutor-icon-ordering {
2125
+ background-color: var(--tutor-primary-color);
2126
  }
2127
+
2128
  i.tutor-icon-block.tutor-icon-plus-square-button,
2129
  i.tutor-icon-block.tutor-icon-plus {
2130
+ background-color: var(--tutor-success-button-color);
2131
  }
2132
 
2133
  .create-lesson-in-topic-btn i.tutor-icon-block.tutor-icon-plus {
2134
+ background-color: var(--tutor-primary-color);
2135
  }
2136
 
2137
  a.back-to-quiz-questions-btn {
2138
+ font-size: 16px;
2139
+ font-weight: 300;
2140
+ color: #393c40;
2141
+ margin-bottom: 10px;
2142
+ display: block;
2143
  }
2144
 
2145
  a.back-to-quiz-questions-btn.tutor-updating-message i {
2146
+ display: none;
2147
  }
2148
 
2149
  .modal-container .quiz-questions-form {
2150
+ padding: 20px;
2151
  }
2152
 
2153
  #quiz-builder-tab-advanced-options
2154
+ .tutor-quiz-builder-form-cols-row
2155
+ .quiz-form-field-col:first-child {
2156
+ -webkit-box-flex: 0;
2157
+ -ms-flex: 0 0 150px;
2158
+ flex: 0 0 150px;
2159
  }
2160
+
2161
  .question-form-header {
2162
+ margin-bottom: 20px;
2163
  }
2164
+
2165
  .quiz-question-form-body {
2166
+ margin-bottom: 25px;
2167
  }
2168
+
2169
  .quiz-builder-question-wrap {
2170
+ display: -webkit-box;
2171
+ display: -ms-flexbox;
2172
+ display: flex;
2173
+ margin-bottom: 15px;
2174
  }
2175
+
2176
  .quiz-builder-question {
2177
+ -webkit-box-flex: 1;
2178
+ -ms-flex: 1;
2179
+ flex: 1;
2180
+ display: -webkit-box;
2181
+ display: -ms-flexbox;
2182
+ display: flex;
2183
+ background: #fff;
2184
+ padding: 10px;
2185
+ border: 1px solid #e2e2e2;
2186
+ border-radius: 3px;
2187
+ max-width: calc(100% - 52px);
2188
  }
2189
+
2190
  .quiz-builder-question .question-sorting {
2191
+ margin-right: 10px;
2192
+ line-height: 22px;
2193
  }
2194
+
2195
  .quiz-builder-question .question-sorting i {
2196
+ display: block;
2197
+ line-height: 24px;
2198
  }
2199
+
2200
  .quiz-builder-question .question-edit-icon {
2201
+ line-height: 22px;
2202
  }
2203
+
2204
  .quiz-builder-question
2205
+ .question-edit-icon
2206
+ .tutor-quiz-open-question-form.tutor-updating-message
2207
+ i {
2208
+ display: none;
2209
  }
2210
+
2211
  .quiz-builder-question .question-title {
2212
+ -webkit-box-flex: 1;
2213
+ -ms-flex: 1;
2214
+ flex: 1;
2215
+ line-height: 22px;
2216
+ text-overflow: ellipsis;
2217
+ overflow: hidden;
2218
+ white-space: nowrap;
2219
+ margin-right: 10px;
2220
  }
2221
+
2222
  .quiz-builder-question .question-icon {
2223
+ -webkit-box-flex: 0;
2224
+ -ms-flex: 0 0 155px;
2225
+ flex: 0 0 155px;
2226
  }
2227
+
2228
  .quiz-builder-qustion-trash a {
2229
+ display: block;
2230
+ padding: 0 0 0 10px;
2231
+ font-size: 20px;
2232
+ color: rgba(57, 60, 64, 0.4);
2233
+ line-height: 44px;
2234
  }
2235
+
2236
  .tutor-quiz-builder-modal-wrap .tutor-field-type-slider {
2237
+ border: 1px solid #dedede;
2238
+ padding: 20px 70px 20px 10px;
2239
+ background-color: #ffffff;
2240
+ position: relative;
2241
+ border-radius: 4px;
2242
  }
2243
+
2244
  .tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content {
2245
+ background-color: var(--tutor-primary-color);
2246
+ border: none;
2247
+ height: 4px;
2248
+ border-radius: 4px;
2249
  }
2250
+
2251
  .tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-header {
2252
+ background: #dedede;
2253
+ border-radius: 4px;
2254
  }
2255
+
2256
  .tutor-quiz-builder-modal-wrap
2257
+ .tutor-field-type-slider
2258
+ .ui-widget-content
2259
+ .ui-state-default {
2260
+ background-color: var(--tutor-primary-color);
2261
+ border: 1px solid var(--tutor-primary-color);
2262
+ border-radius: 50%;
2263
  }
2264
+
2265
  .tutor-quiz-builder-modal-wrap
2266
+ .tutor-field-type-slider
2267
+ .tutor-field-type-slider-value {
2268
+ font-size: 16px;
2269
+ font-weight: 600;
2270
+ background: var(--tutor-primary-color);
2271
+ position: absolute;
2272
+ right: 5px;
2273
+ top: 50%;
2274
+ margin: 0;
2275
+ -webkit-transform: translateY(-50%);
2276
+ transform: translateY(-50%);
2277
+ line-height: 34px;
2278
+ width: 43px;
2279
+ text-align: center;
2280
+ border-radius: 4px;
2281
+ color: #fff;
2282
  }
2283
+
2284
  .tutor-quiz-builder-modal-wrap
2285
+ .tutor-field-type-slider
2286
+ .tutor-field-type-slider-value:before {
2287
+ content: "";
2288
+ position: absolute;
2289
+ border: 7px solid transparent;
2290
+ top: 50%;
2291
+ border-right-color: var(--tutor-primary-color);
2292
+ right: 100%;
2293
+ -webkit-transform: translateY(-50%);
2294
+ transform: translateY(-50%);
2295
  }
2296
+
2297
  .tutor-quiz-answer-wrap {
2298
+ display: -webkit-box;
2299
+ display: -ms-flexbox;
2300
+ display: flex;
2301
  }
2302
+
2303
  .tutor-quiz-answer {
2304
+ background-color: #fff;
2305
+ -webkit-box-flex: 1;
2306
+ -ms-flex: 1;
2307
+ flex: 1;
2308
+ padding: 10px 15px;
2309
+ border: 1px solid #dedede;
2310
+ display: -webkit-box;
2311
+ display: -ms-flexbox;
2312
+ display: flex;
2313
+ line-height: 22px;
2314
+ border-radius: 3px;
2315
+ margin-bottom: 15px;
2316
  }
2317
+
2318
  .tutor-quiz-answer .tutor-quiz-answer-edit a {
2319
+ display: block;
2320
+ padding: 0px 9px;
2321
  }
2322
+
2323
  .tutor-quiz-answer-trash-wrap a.answer-trash-btn {
2324
+ padding: 0 10px;
2325
+ display: inline-block;
2326
+ line-height: 44px;
2327
  }
2328
+
2329
  span.tutor-quiz-answer-title {
2330
+ -webkit-box-flex: 1;
2331
+ -ms-flex: 1;
2332
+ flex: 1;
2333
  }
2334
+
2335
  .tutor-quiz-answer-media .option-media-preview {
2336
+ margin-bottom: 20px;
2337
  }
2338
+
2339
  .tutor-quiz-answer-media .option-media-preview img {
2340
+ max-width: 80px;
2341
+ height: auto;
2342
  }
2343
+
2344
  .tutor-question-answer-image {
2345
+ margin-right: 10px;
2346
  }
2347
+
2348
  .tutor-question-answer-image img {
2349
+ max-height: 25px;
2350
+ width: auto;
2351
  }
2352
+
2353
  button#quiz-answer-save-btn,
2354
  button#quiz-answer-edit-btn {
2355
+ background-color: var(--tutor-success-button-color);
2356
+ color: #fff;
2357
+ padding: 10px 15px;
2358
+ border: none;
2359
+ cursor: pointer;
2360
  }
2361
+
2362
  button#quiz-answer-save-btn:hover,
2363
  button#quiz-answer-edit-btn:hover {
2364
+ background-color: var(--tutor-success-button-color);
2365
  }
 
 
 
2366
 
2367
+ /**
2368
+ Tutor Media Upload
2369
+ */
2370
  .tutor-media-upload-wrap {
2371
+ border: 1px solid #dedede;
2372
+ display: -webkit-box;
2373
+ display: -ms-flexbox;
2374
+ display: flex;
2375
+ width: 130px;
2376
  }
2377
+
2378
  .tutor-media-upload-wrap img {
2379
+ max-width: 100%;
2380
  }
2381
+
2382
  .tutor-media-preview {
2383
+ -webkit-box-flex: 1;
2384
+ -ms-flex: 1;
2385
+ flex: 1;
2386
  }
2387
+
2388
  .tutor-media-upload-btn {
2389
+ display: block;
2390
+ padding: 10px;
2391
+ font-size: 50px;
2392
+ line-height: 50px;
2393
+ text-align: center;
2394
+ color: #dedede;
2395
  }
2396
+
2397
  .tutor-media-upload-trash-wrap {
2398
+ border-left: 1px solid #dedede;
2399
  }
2400
+
2401
  .tutor-media-upload-trash {
2402
+ color: #dedede;
2403
+ display: block;
2404
+ line-height: 50px;
2405
+ padding: 12px;
2406
  }
2407
+
2408
  .tutor-quiz-answers-form-footer.tutor-quiz-builder-form-row {
2409
+ margin-top: 40px;
2410
+ margin-bottom: 10px;
2411
  }
2412
 
2413
  /**
2414
+ #End Quiz Modal
2415
+ */
 
2416
  .tutor-available-quizzes .added-quiz-item {
2417
+ background-color: #f5f5f5;
2418
+ padding: 10px;
2419
+ margin-bottom: 2px;
2420
+ display: -webkit-box;
2421
+ display: -ms-flexbox;
2422
+ display: flex;
2423
  }
2424
+
2425
  .tutor-available-quizzes .added-quiz-item .quiz-name {
2426
+ -ms-flex-preferred-size: 0;
2427
+ flex-basis: 0;
2428
+ -webkit-box-flex: 1;
2429
+ -ms-flex-positive: 1;
2430
+ flex-grow: 1;
2431
  }
2432
+
2433
  .tutor-add-quiz-button-wrap {
2434
+ margin: 20px 0;
2435
  }
2436
+
2437
  .tutor-add-quiz-button-wrap a {
2438
+ color: #2756d1;
2439
  }
2440
+
2441
  .tutor-quiz-delete-btn {
2442
+ color: #ff0000;
2443
  }
2444
+
2445
  p.quiz-search-suggest-text {
2446
+ margin-top: 30px;
2447
+ font-style: italic;
2448
+ font-size: 12px;
2449
  }
2450
+
2451
  span.result-pass {
2452
+ background-color: var(--tutor-success-button-color);
2453
+ color: #fff;
2454
+ padding: 3px 5px;
2455
+ border-radius: 2px;
2456
  }
2457
+
2458
  span.result-fail {
2459
+ color: #ff0000;
2460
  }
2461
+
2462
  span.result-review-required {
2463
+ background: #f5b30d;
2464
+ color: #fff;
2465
+ padding: 3px 5px;
2466
+ border-radius: 2px;
2467
  }
2468
 
2469
  .tutor-emails-lists-wrap {
2470
+ background-color: #ffffff;
2471
+ padding: 20px;
2472
  }
2473
+
2474
  .tutor-emails-lists-wrap .wp-list-table td {
2475
+ padding: 10px 20px;
2476
  }
 
 
 
2477
 
2478
+ /*
2479
+ Tutor Instructor
2480
+ */
2481
  .tutor-course-instructors-metabox-wrap {
2482
+ margin-top: 10px;
2483
+ margin-left: -10px;
2484
  }
2485
+
2486
  .tutor-add-instructor-button-wrap {
2487
+ padding-left: 10px;
2488
  }
2489
+
2490
  .tutor-course-available-instructors {
2491
+ display: -webkit-box;
2492
+ display: -ms-flexbox;
2493
+ display: flex;
2494
+ -ms-flex-wrap: wrap;
2495
+ flex-wrap: wrap;
2496
  }
2497
 
2498
  .tutor-course-available-instructors .added-instructor-item {
2499
+ -webkit-box-flex: 0;
2500
+ -ms-flex: 0 0 calc(50% - 20px);
2501
+ flex: 0 0 calc(50% - 20px);
2502
+ max-width: calc(50% - 20px);
2503
+ border: 1px solid #dcdfe5;
2504
+ padding: 13px;
2505
+ display: -webkit-inline-box;
2506
+ display: -ms-inline-flexbox;
2507
+ display: inline-flex;
2508
+ -webkit-box-align: center;
2509
+ -ms-flex-align: center;
2510
+ align-items: center;
2511
+ border-radius: 4px;
2512
+ position: relative;
2513
+ -webkit-box-sizing: border-box;
2514
+ box-sizing: border-box;
2515
+ margin: 0px 10px 20px;
2516
  }
2517
 
2518
  @media (min-width: 1300px) {
2519
+ .tutor-course-available-instructors .added-instructor-item {
2520
+ -ms-flex: 0 0 calc(33.333% - 20px);
2521
+ -webkit-box-flex: 0;
2522
+ flex: 0 0 calc(33.333% - 20px);
2523
+ max-width: calc(33.333% - 20px);
2524
+ }
2525
  }
2526
+
2527
  @media (max-width: 546px) {
2528
+ .tutor-course-available-instructors .added-instructor-item {
2529
+ -ms-flex: 0 0 100%;
2530
+ -webkit-box-flex: 0;
2531
+ flex: 0 0 100%;
2532
+ max-width: 100%;
2533
+ }
2534
  }
2535
 
2536
  .tutor-course-available-instructors .added-instructor-item .instructor-name {
2537
+ position: relative;
2538
  }
2539
 
2540
  .tutor-course-available-instructors
2541
+ .added-instructor-item
2542
+ .instructor-name
2543
+ img {
2544
+ display: inline-block;
2545
+ margin-left: 10px;
2546
+ width: 18px;
2547
  }
2548
 
2549
  .tutor-course-available-instructors
2550
+ .added-instructor-item
2551
+ .instructor-name
2552
+ img:hover
2553
+ + i.instructor-name-tooltip {
2554
+ opacity: 1;
2555
  }
2556
 
2557
  .tutor-course-available-instructors
2558
+ .added-instructor-item
2559
+ i.instructor-name-tooltip {
2560
+ -webkit-transition: 300ms;
2561
+ transition: 300ms;
2562
+ opacity: 0;
2563
+ position: absolute;
2564
+ bottom: 34px;
2565
+ right: 9px;
2566
+ background: #2a344f;
2567
+ -webkit-transform: translateX(50%);
2568
+ transform: translateX(50%);
2569
+ color: #fff;
2570
+ font-size: 12px;
2571
+ font-style: normal;
2572
+ padding: 0 8px;
2573
+ border-radius: 15px;
2574
+ line-height: 20px;
2575
+ z-index: 1;
2576
  }
2577
 
2578
  .tutor-course-available-instructors
2579
+ .added-instructor-item
2580
+ i.instructor-name-tooltip::before {
2581
+ content: "";
2582
+ position: absolute;
2583
+ border: 5px solid #2a344f;
2584
+ bottom: -3px;
2585
+ left: 50%;
2586
+ margin-left: -5px;
2587
+ -webkit-transform: rotate(45deg);
2588
+ transform: rotate(45deg);
2589
+ z-index: -1;
2590
  }
2591
 
2592
  .tutor-course-available-instructors .added-instructor-item .instructor-control {
2593
+ position: absolute;
2594
+ right: 14px;
2595
+ top: 50%;
2596
+ font-size: 12px;
2597
+ -webkit-transform: translateY(-50%);
2598
+ transform: translateY(-50%);
2599
+ opacity: 0;
2600
+ -webkit-transition: 300ms;
2601
+ transition: 300ms;
2602
  }
2603
 
2604
  .tutor-course-available-instructors
2605
+ .added-instructor-item
2606
+ .instructor-control
2607
+ a {
2608
+ color: red;
2609
+ text-decoration: none;
2610
  }
2611
 
2612
  .tutor-course-available-instructors
2613
+ .added-instructor-item:hover
2614
+ .instructor-control {
2615
+ opacity: 1;
2616
  }
2617
 
2618
  .tutor-course-available-instructors .added-instructor-item .instructor-icon {
2619
+ height: 45px;
2620
+ width: 45px;
2621
+ overflow: hidden;
2622
+ border-radius: 50px;
2623
+ margin-right: 15px;
2624
  }
2625
+
2626
  .tutor-course-available-instructors
2627
+ .added-instructor-item
2628
+ .instructor-icon
2629
+ img {
2630
+ width: 100%;
2631
+ height: auto;
2632
  }
2633
+
2634
  /*@media (min-width: 547px){*/
2635
  /*.tutor-course-available-instructors .added-instructor-item:nth-child(2n) {*/
2636
  /*margin-left: 30px;*/
2637
  /*}*/
2638
  /*}*/
 
2639
  /*
2640
+ End new
2641
+ */
 
2642
  .answer-image-matched-wrap {
2643
+ display: -webkit-box;
2644
+ display: -ms-flexbox;
2645
+ display: flex;
2646
  }
2647
+
2648
  .image-matching-item {
2649
+ -webkit-box-flex: 0;
2650
+ -ms-flex: 0 0 50px;
2651
+ flex: 0 0 50px;
2652
+ margin-right: 10px;
2653
  }
2654
+
2655
  .image-matching-item p {
2656
+ margin-bottom: 5px;
2657
+ margin-top: 0;
2658
+ color: #878a8f;
2659
  }
2660
+
2661
  .image-matching-item img {
2662
+ max-width: 80px;
2663
  }
2664
+
2665
  span.filled_dash_unser {
2666
+ font-weight: bold;
2667
+ text-decoration: underline;
2668
+ margin: 0 5px;
2669
  }
2670
+
2671
  /**
2672
+ Uninstall
2673
+ */
2674
  .wrap.tutor-uninstall-wrap {
2675
+ background: #fff;
2676
+ padding: 20px;
2677
  }
2678
+
2679
  .tutor-uninstall-btn-group {
2680
+ margin: 50px 0;
2681
  }
2682
 
2683
  /**
2684
+ Updating Messsage
2685
+ */
2686
  .tutor-updating-message:before {
2687
+ display: inline-block;
2688
+ font-family: "tutor";
2689
+ -webkit-font-smoothing: antialiased;
2690
+ -moz-osx-font-smoothing: grayscale;
2691
+ vertical-align: top;
2692
+ content: "\e91d";
2693
+ -webkit-animation: rotation 2s infinite linear;
2694
+ animation: rotation 2s infinite linear;
2695
+ margin-right: 6px;
2696
  }
2697
+
2698
  .rtl .tutor-updating-message:before {
2699
+ margin-right: 0;
2700
+ margin-left: 6px;
2701
  }
2702
 
2703
  /**
2704
+ Lesson Edit Modal
2705
+ */
 
2706
  .lesson-modal-form-wrap .lesson-modal-field-row {
2707
+ padding: 10px 0;
2708
  }
2709
+
2710
  .lesson-modal-field.tutor-lesson-modal-title-wrap {
2711
+ width: 95%;
2712
  }
2713
+
2714
  .tutor-lesson-modal-title-wrap input {
2715
+ width: 100%;
2716
  }
2717
+
2718
  .lesson-modal-form-wrap .assignment-modal-field-row,
2719
  .lesson-modal-form-wrap .tutor-lesson-attachments-metabox,
2720
  .lesson-modal-form-wrap .tutor-option-field-row {
2721
+ padding: 10px 0;
2722
+ /*margin-bottom: 20px;
2723
+ border-bottom: none;*/
2724
  }
2725
+
2726
  .lesson-modal-form-wrap .tutor-option-field-row:last-child {
2727
+ border-bottom: none;
2728
  }
2729
 
2730
  .lesson-modal-form-wrap .tutor-option-field-row textarea,
2732
  .lesson-modal-form-wrap .tutor-option-field-row input[type="email"],
2733
  .lesson-modal-form-wrap .tutor-option-field-row input[type="number"],
2734
  .lesson-modal-form-wrap .tutor-option-field-row input[type="password"] {
2735
+ line-height: 40px;
2736
+ padding: 5px 0;
2737
+ text-indent: 15px;
2738
+ background: #fff;
2739
+ display: inline-block;
2740
+ border: 1px solid #dedede;
2741
+ border-radius: 3px;
2742
+ -webkit-box-shadow: none;
2743
+ box-shadow: none;
2744
+ height: 40px;
2745
+ margin: 0;
2746
+ width: 100%;
2747
+ color: #393c40;
2748
+ font-size: 14px;
2749
+ -webkit-transition: 300ms;
2750
+ transition: 300ms;
2751
  }
2752
+
2753
  .lesson-modal-form-wrap .tutor-option-field-row textarea {
2754
+ line-height: 26px;
2755
+ min-height: 150px;
2756
+ text-indent: 0;
2757
+ padding: 15px;
2758
  }
2759
+
2760
  .lesson-modal-form-wrap .tutor-option-field-row textarea:focus,
2761
  .lesson-modal-form-wrap .tutor-option-field-row input[type="text"]:focus,
2762
  .lesson-modal-form-wrap .tutor-option-field-row input[type="email"]:focus,
2763
  .lesson-modal-form-wrap .tutor-option-field-row input[type="number"]:focus,
2764
  .lesson-modal-form-wrap .tutor-option-field-row input[type="password"]:focus {
2765
+ border-color: var(--tutor-primary-color);
2766
  }
2767
 
2768
  .lesson-modal-form-wrap .tutor-option-field-row select {
2769
+ height: 40px;
2770
  }
2771
 
2772
  .lesson-modal-form-wrap .tutor-lesson-attachments-metabox {
2773
+ margin-top: 0;
2774
  }
2775
 
2776
  .assignment-modal-form-wrap,
2777
  .lesson-modal-form-wrap {
2778
+ padding: 20px;
2779
+ padding-bottom: 48px;
2780
  }
2781
+
2782
  .tutor-lesson-modal-wrap .modal-footer {
2783
+ padding: 10px 20px;
2784
+ background-color: #fff;
2785
+ width: 100%;
2786
+ position: sticky;
2787
+ bottom: 0;
2788
+ position: -webkit-sticky;
2789
  }
2790
+
2791
  .tutor-option-field .tutor-lesson-edit-feature-img {
2792
+ width: 100px;
2793
+ position: relative;
2794
  }
2795
+
2796
  .tutor-option-field .tutor-lesson-edit-feature-img img {
2797
+ width: 100%;
2798
+ height: auto;
2799
  }
2800
+
2801
  a.tutor-lesson-thumbnail-delete-btn {
2802
+ position: absolute;
2803
+ top: 0;
2804
+ right: 0;
2805
+ color: red;
2806
+ background: #fff;
2807
+ padding: 3px 5px;
2808
+ border-radius: 5px;
2809
  }
2810
+
2811
  .tutor-get-pro-text {
2812
+ color: #e02424;
2813
  }
2814
+
2815
  .updating-icon:before {
2816
+ font-family: "tutor";
2817
+ margin-right: 5px;
2818
+ content: "\e91d";
2819
+ -webkit-animation: spin 1s steps(8) infinite;
2820
+ animation: spin 1s steps(8) infinite;
2821
+ display: inline-block;
2822
  }
2823
+
2824
  .tutor-notice-warning {
2825
+ background-color: #fcf8e3;
2826
+ border-color: #faebcc;
2827
+ padding: 20px;
2828
+ margin-bottom: 10px;
2829
  }
2830
 
2831
  /**
2832
+ Withdraw table
2833
+ */
2834
  .withdraw-method-data-row {
2835
+ display: -webkit-box;
2836
+ display: -ms-flexbox;
2837
+ display: flex;
2838
  }
2839
+
2840
  span.withdraw-method-label {
2841
+ width: 140px;
2842
  }
2843
+
2844
  .withdraw-method-value {
2845
+ margin-left: 3px;
2846
  }
2847
+
2848
  .withdraw-status.withdraw-status-approved {
2849
+ background: var(--tutor-success-button-color);
2850
+ color: #fff;
2851
+ padding: 5px 10px;
2852
  }
2853
+
2854
  .withdraw-status.withdraw-status-pending {
2855
+ background: #f0efef;
2856
+ color: #666666;
2857
+ padding: 5px 10px;
2858
  }
2859
+
2860
  .withdraw-status.withdraw-status-rejected {
2861
+ background: #ff3842;
2862
+ color: #fff;
2863
+ padding: 5px 10px;
2864
  }
2865
+
2866
  .withdraw-list-row-actions {
2867
+ font-weight: bold;
2868
  }
2869
+
2870
  .withdraw-list-row-actions .approved a {
2871
+ color: var(--tutor-success-button-color);
2872
  }
2873
+
2874
  .withdraw-list-row-actions .rejected a {
2875
+ color: #ff3842;
2876
  }
2877
 
2878
  /**
2879
+ Assignments
2880
+ */
 
2881
  .submitted-assignment-wrap {
2882
+ background-color: #ffffff;
2883
+ padding: 30px;
2884
+ margin-left: -20px;
2885
  }
2886
+
2887
  .tutor-individual-attachment-file {
2888
+ margin-bottom: 20px;
2889
  }
2890
+
2891
  .tutor-individual-attachment-file p {
2892
+ margin: 0 !important;
2893
  }
2894
 
2895
  /**
2896
+ Tutor Notice
2897
+ */
2898
  .tnotice {
2899
+ text-align: left;
2900
+ padding: 10px 0;
2901
+ background-color: #fff;
2902
+ border-radius: 4px;
2903
+ position: relative;
2904
+ margin-bottom: 10px;
2905
  }
2906
+
2907
  .tnotice:before {
2908
+ content: "";
2909
+ position: absolute;
2910
+ top: 0;
2911
+ left: 0;
2912
+ width: 4px;
2913
+ height: 100%;
2914
+ border-top-left-radius: 4px;
2915
+ border-bottom-left-radius: 4px;
2916
  }
2917
+
2918
  .tnotice__icon {
2919
+ position: absolute;
2920
+ top: 50%;
2921
+ left: 22px;
2922
+ -webkit-transform: translateY(-50%);
2923
+ transform: translateY(-50%);
2924
+ width: 14px;
2925
+ height: 14px;
2926
+ padding: 7px;
2927
+ border-radius: 50%;
2928
+ display: inline-block;
2929
+ color: #fff;
2930
+ text-align: center;
2931
+ line-height: 11px;
2932
  }
2933
+
2934
  .tnotice__type {
2935
+ color: #3e3e3e;
2936
+ font-weight: 700;
2937
+ margin-top: 0;
2938
+ margin-bottom: 0;
2939
  }
2940
+
2941
  .tnotice__message {
2942
+ font-size: 14px;
2943
+ margin-top: 0;
2944
+ margin-bottom: 0;
2945
+ color: #878787;
2946
  }
2947
+
2948
  .tnotice__content {
2949
+ padding-left: 70px;
2950
+ padding-right: 60px;
2951
  }
2952
+
2953
  .tnotice__close {
2954
+ position: absolute;
2955
+ right: 22px;
2956
+ top: 50%;
2957
+ width: 14px;
2958
+ cursor: pointer;
2959
+ height: 14px;
2960
+ fill: #878787;
2961
+ -webkit-transform: translateY(-50%);
2962
+ transform: translateY(-50%);
2963
  }
2964
+
2965
  .tnotice--success .tnotice__icon {
2966
+ background-color: #2bde3f;
2967
  }
2968
+
2969
  .tnotice--success:before {
2970
+ background-color: #2bde3f;
2971
  }
2972
+
2973
  .tnotice--blue .tnotice__icon {
2974
+ background-color: #1d72f3;
2975
  }
2976
+
2977
  .tnotice--blue:before {
2978
+ background-color: #1d72f3;
2979
  }
2980
+
2981
  .tnotice--danger .tnotice__icon {
2982
+ background-color: #f31e1c;
2983
  }
2984
+
2985
  .tnotice--danger:before {
2986
+ background-color: #f31e1c;
2987
  }
2988
 
2989
  /***************************
2990
+ * Quiz attempts table
2991
+ **************************/
 
2992
  .tutor-quiz-attempt-history td:last-child {
2993
+ text-align: center;
2994
  }
2995
+
2996
  .tutor-quiz-attempt-history td:last-child a {
2997
+ display: block;
2998
+ padding: 10px;
2999
  }
3000
+
3001
  .attempt-review-title {
3002
+ font-size: 18px;
3003
+ color: var(--tutor-text-size);
3004
+ font-weight: 600;
3005
+ display: -webkit-box;
3006
+ display: -ms-flexbox;
3007
+ display: flex;
3008
+ -webkit-box-align: center;
3009
+ -ms-flex-align: center;
3010
+ align-items: center;
3011
+ margin-bottom: 60px;
3012
  }
3013
+
3014
  .attempt-review-title i {
3015
+ margin-right: 12px;
3016
+ color: var(--tutor-primary-color);
3017
  }
3018
+
3019
  .tutor-quiz-attempt-info-row .attempt-view-bottom,
3020
  .tutor-quiz-attempt-info-row .attempt-view-top {
3021
+ display: -webkit-box;
3022
+ display: -ms-flexbox;
3023
+ display: flex;
3024
+ -webkit-box-pack: justify;
3025
+ -ms-flex-pack: justify;
3026
+ justify-content: space-between;
3027
  }
3028
+
3029
  .tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col,
3030
  .tutor-quiz-attempt-info-row .attempt-view-top .attempt-info-col {
3031
+ display: -webkit-inline-box;
3032
+ display: -ms-inline-flexbox;
3033
+ display: inline-flex;
3034
+ -webkit-box-align: center;
3035
+ -ms-flex-align: center;
3036
+ align-items: center;
3037
+ max-width: 30%;
3038
  }
3039
+
3040
  .tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col {
3041
+ -webkit-box-align: start;
3042
+ -ms-flex-align: start;
3043
+ align-items: flex-start;
3044
  }
3045
+
3046
  .tutor-quiz-attempt-info-row .attempt-info-content span.result-pass,
3047
  .tutor-quiz-attempt-info-row .attempt-info-content span.result-fail {
3048
+ background: #df3247;
3049
+ font-size: 14px;
3050
+ font-weight: 400;
3051
+ color: #fff;
3052
+ padding: 1px 4px;
3053
+ margin-right: 13px;
3054
+ border-radius: 2px;
3055
  }
3056
+
3057
  .tutor-quiz-attempt-info-row .attempt-info-content span.result-pass {
3058
+ background: var(--tutor-success-button-color);
3059
  }
3060
+
3061
  .tutor-quiz-attempt-info-row .attempt-info-content h4,
3062
  .tutor-quiz-attempt-info-row .attempt-info-content h5 {
3063
+ font-size: 14px;
3064
+ line-height: 25px;
3065
+ margin: 0;
3066
+ color: #7a7f85;
3067
+ font-weight: 400;
3068
  }
3069
+
3070
  .tutor-quiz-attempt-info-row .attempt-info-content h4 a,
3071
  .tutor-quiz-attempt-info-row .attempt-info-content h4 {
3072
+ font-weight: 700;
3073
+ color: var(--tutor-text-color);
3074
+ margin-top: 7px;
3075
  }
3076
+
3077
  .tutor-quiz-attempt-info-row .attempt-view-top {
3078
+ padding-bottom: 30px;
3079
+ margin-bottom: 30px;
3080
+ border-bottom: 1px solid #dcdfe5;
3081
  }
3082
+
3083
  .tutor-quiz-attempt-info-row .attempt-view-bottom {
3084
+ margin-bottom: 60px;
3085
  }
3086
+
3087
  .attempt-user-details {
3088
+ display: -webkit-box;
3089
+ display: -ms-flexbox;
3090
+ display: flex;
3091
+ -webkit-box-align: center;
3092
+ -ms-flex-align: center;
3093
+ align-items: center;
3094
  }
3095
+
3096
  .attempt-user-details .attempt-user-avatar {
3097
+ padding-right: 20px;
3098
  }
3099
+
3100
  .attempt-user-details .attempt-user-avatar img {
3101
+ display: block;
3102
+ width: 70px;
3103
+ height: 70px;
3104
+ border-radius: 50%;
3105
  }
3106
+
3107
  .attempt-user-details .attempt-info-content h4 {
3108
+ font-size: 18px;
3109
  }
3110
+
3111
  .attempt-review-notice-wrap {
3112
+ display: -webkit-box;
3113
+ display: -ms-flexbox;
3114
+ display: flex;
3115
+ margin-bottom: 60px;
3116
+ -webkit-box-pack: justify;
3117
+ -ms-flex-pack: justify;
3118
+ justify-content: space-between;
3119
  }
3120
+
3121
  .attempt-review-notice-wrap p {
3122
+ margin: 0;
3123
+ display: -webkit-inline-box;
3124
+ display: -ms-inline-flexbox;
3125
+ display: inline-flex;
3126
+ -webkit-box-align: center;
3127
+ -ms-flex-align: center;
3128
+ align-items: center;
3129
  }
3130
+
3131
  .attempt-review-notice-wrap p.attempt-review-notice i {
3132
+ font-size: 16px;
3133
+ color: #f5c813;
3134
+ margin-right: 9px;
3135
  }
3136
+
3137
  .attempt-review-notice-wrap p.attempt-review-at > span {
3138
+ color: var(--tutor-primary-color);
3139
+ margin-right: 7px;
3140
+ font-size: 16px;
3141
  }
3142
+
3143
  .attempt-review-notice-wrap p > strong {
3144
+ font-weight: 400;
3145
+ margin-right: 5px;
3146
  }
3147
+
3148
  .quiz-attempt-answers-wrap table th {
3149
+ background: #fcfcfc;
3150
+ font-size: 12px;
3151
+ text-transform: inherit;
3152
  }
3153
+
3154
  .quiz-attempt-answers-wrap table td {
3155
+ background-color: #fff;
3156
  }
3157
+
3158
  .quiz-attempt-answers-wrap table th,
3159
  .quiz-attempt-answers-wrap table td {
3160
+ padding: 17px 20px !important;
3161
+ border-top: 1px solid #eaeaea;
3162
+ border-bottom: 1px solid #eaeaea;
3163
+ vertical-align: middle;
3164
+ text-align: left;
3165
  }
3166
+
3167
  .quiz-attempt-answers-wrap table th p,
3168
  .quiz-attempt-answers-wrap table td p {
3169
+ margin: 0;
3170
  }
3171
+
3172
  .quiz-attempt-answers-wrap table .quiz-manual-review-action {
3173
+ border: 1px solid #d4dadb;
3174
+ color: #d4dadb;
3175
+ height: 30px;
3176
+ width: 30px;
3177
+ border-radius: 2px;
3178
+ font-size: 13px;
3179
+ display: inline-block;
3180
+ text-align: center;
3181
+ line-height: 30px;
3182
+ -webkit-transition: 300ms;
3183
+ transition: 300ms;
3184
+ text-decoration: none;
3185
  }
3186
+
3187
  .quiz-attempt-answers-wrap table .quiz-manual-review-action:first-child:hover {
3188
+ border: 1px solid var(--tutor-success-button-color);
3189
+ color: var(--tutor-success-button-color);
3190
  }
3191
+
3192
  .quiz-attempt-answers-wrap table .quiz-manual-review-action:last-child:hover {
3193
+ border: 1px solid #df3247;
3194
+ color: #df3247;
3195
  }
3196
+
3197
  .quiz-attempt-answers-wrap table .quiz-manual-review-action:not(:last-child) {
3198
+ margin-right: 17px;
3199
  }
3200
+
3201
  .quiz-attempt-answers-wrap table .quiz-incorrect-answer-text i,
3202
  .quiz-attempt-answers-wrap table .quiz-correct-answer-text i {
3203
+ font-size: 12px;
3204
+ height: 20px;
3205
+ width: 20px;
3206
+ text-align: center;
3207
+ line-height: 20px;
3208
+ background: var(--tutor-success-button-color);
3209
+ color: #fff;
3210
+ display: inline-block;
3211
+ border-radius: 2px;
3212
+ margin-right: 6px;
3213
  }
3214
+
3215
  .quiz-attempt-answers-wrap table .quiz-incorrect-answer-text i {
3216
+ background: #df3247;
3217
+ font-size: 10px;
3218
  }
3219
+
3220
  .answer-image-matched-wrap {
3221
+ display: -webkit-box;
3222
+ display: -ms-flexbox;
3223
+ display: flex;
3224
  }
3225
+
3226
  .answer-image-matched-wrap .image-matching-item {
3227
+ margin: 0 5px;
3228
+ max-width: 70px;
3229
  }
3230
+
3231
  .answer-image-matched-wrap .image-matching-item .dragged-caption {
3232
+ font-size: 14px;
3233
+ margin-top: 4px;
3234
  }
3235
 
3236
  .tutor-quiz-attempt-review-wrap {
3237
+ padding: 20px;
3238
+ background: #ffffff;
3239
+ margin-right: 15px;
3240
+ margin-top: 15px;
3241
  }
3242
 
3243
  .tutor-quiz-attempt-review-wrap table {
3244
+ width: 100%;
3245
+ border-collapse: collapse;
3246
  }
3247
 
3248
  .tutor-quiz-attempt-review-wrap img {
3249
+ max-width: 100%;
3250
  }
3251
 
3252
  /**
3253
+ Upgrade Notice
3254
+ */
3255
  #tutor-update .dummy {
3256
+ display: none;
3257
  }
3258
+
3259
  #tutor-update .tutor_plugin_update_notice {
3260
+ padding: 20px 0 !important;
3261
  }
3262
 
3263
  #tutor-update .tutor_plugin_update_notice {
3264
+ font-weight: 400;
3265
+ background: #fff8e5 !important;
3266
+ border-left: 4px solid #ffb900;
3267
+ border-top: 1px solid #ffb900;
3268
+ padding: 9px 0 9px 12px !important;
3269
+ margin: 0 -12px 0 -16px !important;
3270
  }
3271
 
3272
  #tutor-update .tutor_plugin_update_notice .version::before {
3273
+ content: "\f348";
3274
+ display: inline-block;
3275
+ font: 400 18px/1 dashicons;
3276
+ speak: none;
3277
+ margin: 0 8px 0 -2px;
3278
+ vertical-align: top;
3279
  }
3280
+
3281
  /**
3282
+ Course Settings Tabs
3283
+ */
3284
  #tutor-metabox-course-settings-tabs {
3285
+ background-color: #fff;
3286
+ border: 1px solid #e5e5e5;
3287
+ margin: 1em 0;
3288
  }
3289
+
3290
  .inside #tutor-metabox-course-settings-tabs {
3291
+ border: 0;
3292
+ margin: 0;
3293
  }
3294
+
3295
  .settings-tabs-heading {
3296
+ padding: 1em;
3297
+ border-bottom: 1px solid #e5e5e5;
3298
  }
3299
+
3300
  .settings-tabs-heading h3 {
3301
+ font-size: 14px;
3302
+ margin: 0;
3303
+ line-height: 1.4;
3304
  }
3305
+
3306
  .course-settings-tabs-container {
3307
+ display: -webkit-box;
3308
+ display: -ms-flexbox;
3309
+ display: flex;
3310
  }
3311
+
3312
  .course-settings-tabs-container .settings-tabs-navs-wrap {
3313
+ -webkit-box-flex: 0;
3314
+ -ms-flex: 0 0 200px;
3315
+ flex: 0 0 200px;
3316
+ background: #f5f5f5;
3317
  }
3318
+
3319
  .settings-tabs-navs-wrap .settings-tabs-navs {
3320
+ margin: 0;
3321
  }
3322
+
3323
  .settings-tabs-navs-wrap .settings-tabs-navs li {
3324
+ margin: 0;
3325
  }
3326
+
3327
  .settings-tabs-navs-wrap .settings-tabs-navs li a {
3328
+ display: block;
3329
+ padding-top: 10px;
3330
+ padding-bottom: 10px;
3331
+ padding-left: 15px;
3332
+ padding-right: 15px;
3333
+ color: #23282d;
3334
+ text-decoration: none;
3335
+ background: #f5f5f5;
3336
+ text-transform: capitalize;
3337
+ border-bottom: 1px solid #e5e5e5;
3338
+ border-left: 3px solid transparent;
3339
  }
3340
+
3341
  .settings-tabs-navs-wrap .settings-tabs-navs li:last-child a {
3342
+ border-bottom: none;
3343
  }
3344
+
3345
  .settings-tabs-navs-wrap .settings-tabs-navs li a:focus {
3346
+ -webkit-box-shadow: none;
3347
+ box-shadow: none;
3348
  }
3349
+
3350
  .settings-tabs-navs-wrap .settings-tabs-navs li.active a {
3351
+ background-color: #ffffff;
3352
+ border-bottom: 1px solid #e5e5e5;
3353
+ color: var(--tutor-primary-color);
3354
+ border-left: 3px solid var(--tutor-primary-color);
3355
  }
3356
+
3357
  .course-settings-tabs-container .settings-tabs-container {
3358
+ padding: 1em;
3359
+ -webkit-box-flex: 1;
3360
+ -ms-flex: 1;
3361
+ flex: 1;
3362
  }
3363
+
3364
  .tutor-field-radio p {
3365
+ margin-top: 0;
3366
  }
3367
 
3368
  /**
3369
+ Content Drip (Pro)
3370
+ */
3371
  .lesson-modal-form-wrap .lesson-content-drip-wrap {
3372
+ padding: 10px;
3373
+ border: 1px solid #e4e4e4;
3374
  }
3375
+
3376
  .lesson-modal-form-wrap .lesson-content-drip-wrap h3 {
3377
+ margin: 0 0 10px 0;
3378
  }
3379
+
3380
  .select2-dropdown.increasezindex {
3381
+ z-index: 9999999999999;
3382
  }
3383
 
3384
  /*!
3385
+ * jQuery UI Datepicker 1.9.0
3386
+ * http://jqueryui.com
3387
+ *
3388
+ * Copyright 2012 jQuery Foundation and other contributors
3389
+ * Released under the MIT license.
3390
+ * http://jquery.org/license
3391
+ *
3392
+ * http://docs.jquery.com/UI/Datepicker#theming
3393
+ */
3394
  .ui-datepicker {
3395
+ background-color: #fff;
3396
+ border: 1px solid #eeeeee;
3397
+ display: none;
3398
+ margin-top: 4px;
3399
+ padding: 5px;
3400
+ width: 180px;
3401
  }
3402
+
3403
  .ui-datepicker a,
3404
  .ui-datepicker a:hover {
3405
+ text-decoration: none;
3406
  }
3407
+
3408
  .ui-datepicker a:hover,
3409
  .ui-datepicker td:hover a {
3410
+ color: #2a6496;
3411
+ -webkit-transition: color 0.1s ease-in-out;
3412
+ transition: color 0.1s ease-in-out;
 
 
3413
  }
3414
+
3415
  .ui-datepicker .ui-datepicker-header {
3416
+ margin-bottom: 4px;
3417
+ text-align: center;
3418
  }
3419
+
3420
  .ui-datepicker .ui-datepicker-title {
3421
+ font-weight: 700;
3422
  }
3423
+
3424
  .ui-datepicker .ui-datepicker-prev,
3425
  .ui-datepicker .ui-datepicker-next {
3426
+ cursor: default;
3427
+ font-family: "tutor";
3428
+ -webkit-font-smoothing: antialiased;
3429
+ font-style: normal;
3430
+ font-weight: normal;
3431
+ height: 20px;
3432
+ line-height: 1;
3433
+ margin-top: 2px;
3434
+ width: 30px;
3435
  }
3436
+
3437
  .ui-datepicker .ui-datepicker-prev {
3438
+ float: left;
3439
+ text-align: left;
3440
  }
3441
+
3442
  .ui-datepicker .ui-datepicker-next {
3443
+ float: right;
3444
+ text-align: right;
3445
  }
3446
+
3447
  .ui-datepicker .ui-datepicker-prev:before {
3448
+ content: "\e921";
3449
  }
3450
+
3451
  .ui-datepicker .ui-datepicker-next:before {
3452
+ content: "\e903";
3453
  }
3454
+
3455
  .ui-datepicker .ui-icon {
3456
+ display: none;
3457
  }
3458
+
3459
  .ui-datepicker .ui-datepicker-calendar {
3460
+ table-layout: fixed;
3461
+ width: 100%;
3462
  }
3463
+
3464
  .ui-datepicker .ui-datepicker-calendar th,
3465
  .ui-datepicker .ui-datepicker-calendar td {
3466
+ text-align: center;
3467
+ padding: 0;
3468
  }
3469
+
3470
  .ui-datepicker .ui-datepicker-calendar td {
3471
+ border-radius: 4px;
3472
+ -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
3473
+ transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
 
 
3474
  }
3475
+
3476
  .ui-datepicker .ui-datepicker-calendar td:hover {
3477
+ background-color: #eee;
3478
+ cursor: pointer;
3479
  }
3480
+
3481
  .ui-datepicker .ui-datepicker-calendar td a {
3482
+ text-decoration: none;
3483
  }
3484
+
3485
  .ui-datepicker .ui-datepicker-current-day {
3486
+ background-color: #4289cc;
3487
  }
3488
+
3489
  .ui-datepicker .ui-datepicker-current-day a {
3490
+ color: #fff;
3491
  }
3492
+
3493
  .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
3494
+ background-color: #fff;
3495
+ cursor: default;
3496
  }
3497
 
3498
  .ui-datepicker-calendar .ui-state-default {
3499
+ border: none;
3500
+ background: none;
3501
  }
3502
+
3503
  .ui-datepicker-calendar .ui-state-default.ui-state-highlight {
3504
+ background: #eeeeee;
3505
+ padding: 3px;
3506
+ display: block;
3507
  }
 
3508
 
3509
+ /** END Calender */
3510
  /**
3511
+ * report.css
3512
+ *Moved report.css from pro add to here
3513
+ */
3514
  h2.tutor-page-heading {
3515
+ background-color: #ffffff;
3516
+ padding: 30px !important;
3517
+ margin: 0 !important;
3518
+ border-bottom: 1px solid #ecedef;
3519
  }
3520
+
3521
  .tutor-report-left-menus {
3522
+ background-color: #fcfcfc;
3523
+ margin-bottom: 50px;
3524
  }
3525
+
3526
  .tutor-report-left-menus ul {
3527
+ margin: 0;
3528
  }
3529
+
3530
  .report-main-wrap {
3531
+ /*display: flex;*/
3532
  }
3533
+
3534
  .report-main-wrap h3 {
3535
+ font-weight: 300;
3536
+ font-size: 20px;
3537
  }
3538
+
3539
  .tutor-report-left-menus ul li {
3540
+ display: inline-block;
3541
+ margin: 0;
3542
  }
3543
+
3544
  .tutor-report-left-menus ul li a {
3545
+ text-decoration: none;
3546
+ line-height: 60px;
3547
+ display: block;
3548
+ padding: 0 15px;
3549
+ color: #393c40;
3550
  }
3551
+
3552
  .tutor-report-left-menus ul li a:focus {
3553
+ outline: none !important;
3554
+ border: 0;
3555
+ -webkit-box-shadow: none;
3556
+ box-shadow: none;
3557
  }
3558
+
3559
  .tutor-report-left-menus ul li.active a {
3560
+ color: #1e55dd;
3561
+ border-bottom: 3px solid #3057d5;
3562
  }
3563
+
3564
  .tutor-report-content {
3565
+ -webkit-box-flex: 1;
3566
+ -ms-flex: 1;
3567
+ flex: 1;
3568
  }
3569
+
3570
  .report-top-sub-menu {
3571
+ margin: 0;
3572
+ -webkit-box-flex: 1;
3573
+ -ms-flex: 1;
3574
+ flex: 1;
3575
  }
3576
+
3577
  .report-top-sub-menu a {
3578
+ text-decoration: none;
3579
+ padding: 10px 15px;
3580
+ border: 1px solid #d7dadf;
3581
+ color: #aaaeb3;
3582
+ border-radius: 3px;
3583
+ display: inline-block;
3584
  }
3585
+
3586
  .report-top-sub-menu a.active {
3587
+ background-color: #3057d5;
3588
+ color: #ffffff;
3589
+ border: 1px solid #3057d5;
3590
  }
3591
+
3592
  .top-course-enrolled {
3593
+ margin-top: 20px;
3594
+ margin-bottom: 20px;
3595
  }
3596
+
3597
  .top-course-enrolled h1,
3598
  .top-course-enrolled h2,
3599
  .top-course-enrolled h3 {
3600
+ margin: 30px 0;
3601
  }
3602
+
3603
  .report-stats {
3604
+ display: -webkit-box;
3605
+ display: -ms-flexbox;
3606
+ display: flex;
3607
+ -webkit-box-orient: horizontal;
3608
+ -webkit-box-direction: normal;
3609
+ -ms-flex-flow: row wrap;
3610
+ flex-flow: row wrap;
3611
  }
3612
+
3613
  .report-stat-box {
3614
+ padding: 0;
3615
+ margin-bottom: 30px;
3616
+ width: 25%;
3617
+ display: -webkit-inline-box;
3618
+ display: -ms-inline-flexbox;
3619
+ display: inline-flex;
3620
+ -webkit-box-flex: 0;
3621
+ -ms-flex: 0 0 25%;
3622
+ flex: 0 0 25%;
3623
  }
3624
+
3625
  .report-stat-box-body {
3626
+ background-color: #ffffff;
3627
+ display: -webkit-box;
3628
+ display: -ms-flexbox;
3629
+ display: flex;
3630
+ width: 100%;
3631
+ margin-right: 30px;
3632
  }
3633
+
3634
  .report-stat-box:nth-child(4n) .report-stat-box-body {
3635
+ margin-right: 0;
3636
  }
3637
+
3638
  .report-stat-box .box-icon {
3639
+ font-size: 50px;
3640
+ line-height: 46px;
3641
+ padding: 13px;
3642
+ color: #3057d5;
3643
  }
3644
+
3645
  .report-stat-box h4,
3646
  .report-stat-box p {
3647
+ margin: 5px 0;
3648
  }
3649
+
3650
  .report-stat-box .box-stats-text h3,
3651
  .report-stat-box .box-stats-text p {
3652
+ margin: 5px 0;
3653
  }
3654
+
3655
  .report-stat-box .box-stats-text {
3656
+ padding: 12px 0;
3657
  }
3658
+
3659
  .report-stat-box .box-stats-text h3 {
3660
+ font-size: 20px;
3661
+ font-weight: 300;
3662
  }
3663
+
3664
  .report-stat-box .box-stats-text p {
3665
+ color: #888b90;
3666
  }
3667
+
3668
  .box-padding {
3669
+ padding: 30px;
3670
  }
3671
+
3672
  .box-padding h3 {
3673
+ margin-top: 0;
3674
  }
3675
+
3676
  .box-bg-green {
3677
+ background-color: #00d611;
3678
+ color: #ffffff;
3679
  }
3680
+
3681
  .box-bg-primary {
3682
+ background-color: #3057d5;
3683
+ color: #ffffff;
3684
  }
3685
+
3686
  .box-bg-light {
3687
+ background-color: #eeeeee;
3688
+ color: #555555;
3689
  }
3690
+
3691
  .box-bg-warning {
3692
+ background-color: #eea504;
3693
+ color: #ffffff;
3694
  }
3695
+
3696
  .box-bg-dark {
3697
+ background-color: #333333;
3698
+ color: #ffffff;
3699
  }
3700
+
3701
  .box-bg-danger {
3702
+ background-color: #ff000c;
3703
+ color: #ffffff;
3704
  }
3705
+
3706
  .box-bg-pink {
3707
+ background-color: #ff00da;
3708
+ color: #ffffff;
3709
  }
3710
+
3711
  .box-bg-violate {
3712
+ background-color: #9c25ea;
3713
+ color: #ffffff;
3714
  }
3715
+
3716
  .tutor-report-overview-section {
3717
+ display: -webkit-box;
3718
+ display: -ms-flexbox;
3719
+ display: flex;
3720
+ margin: 20px 0;
3721
  }
3722
+
3723
  .overview-section-col6 {
3724
+ width: 50%;
3725
  }
3726
+
3727
  .overview-section-col6 {
3728
+ margin-right: 1%;
3729
+ margin-left: 1%;
3730
  }
3731
+
3732
  .overview-section-col6:first-child {
3733
+ margin-left: 0;
3734
  }
3735
+
3736
  .overview-section-col6:last-child {
3737
+ margin-right: 0;
3738
  }
3739
+
3740
  .last-revews-wrap {
3741
+ width: 100%;
3742
  }
3743
+
3744
  table.tutor-report-table {
3745
+ border: none;
3746
+ -webkit-box-shadow: none;
3747
+ box-shadow: none;
3748
  }
3749
+
3750
  .tutor-report-table th {
3751
+ background-color: #fcfcfc;
3752
+ border-top: 1px solid #eaeaea;
3753
+ border-bottom: 1px solid #eaeaea;
3754
+ padding: 20px;
3755
+ color: #878a8f;
3756
  }
3757
+
3758
  .tutor-report-table td {
3759
+ border-bottom: 1px solid #eaeaea;
3760
+ padding: 20px;
3761
  }
3762
+
3763
  .tutor-report-table td img.avatar {
3764
+ float: left;
3765
+ margin-right: 5px;
3766
  }
3767
+
3768
  /**
3769
+ Icon
3770
+ */
3771
  .tutor-icon-star-full,
3772
  .tutor-icon-star-line {
3773
+ color: #ffd700;
3774
  }
3775
+
3776
  .tutor-delete-link {
3777
+ color: #ff282a !important;
3778
  }
3779
+
3780
  /**
3781
+ Pagination
3782
+ */
3783
  .tutor-pagination {
3784
+ margin: 50px 0;
3785
  }
3786
+
3787
  .tutor-pagination .page-numbers {
3788
+ display: inline-block;
3789
+ padding: 5px 10px;
3790
+ margin: 0 2px 0 0;
3791
+ border: 1px solid #eee;
3792
+ line-height: 1;
3793
+ text-decoration: none;
3794
+ font-weight: 600;
3795
  }
3796
+
3797
  .tutor-pagination .page-numbers.current,
3798
  .tutor-pagination a.page-numbers:hover {
3799
+ background: #f9f9f9;
3800
  }
3801
+
3802
  .report-date-range-form {
3803
+ display: -webkit-box;
3804
+ display: -ms-flexbox;
3805
+ display: flex;
3806
  }
3807
+
3808
  .date-range-input {
3809
+ position: relative;
3810
+ margin-right: 10px;
3811
  }
3812
+
3813
  .date-range-input:last-child {
3814
+ margin-right: 0;
3815
  }
3816
+
3817
  .date-range-input input {
3818
+ border: 1px solid #d7dadf;
3819
+ -webkit-box-shadow: none;
3820
+ box-shadow: none;
3821
+ line-height: 32px;
3822
+ margin: 0;
3823
+ padding-right: 30px;
3824
  }
3825
+
3826
  .date-range-input i.tutor-icon-calendar {
3827
+ position: absolute;
3828
+ right: 10px;
3829
+ top: 13px;
3830
  }
3831
+
3832
  .date-range-input button {
3833
+ background-color: #3057d5;
3834
+ color: #ffffff;
3835
+ border: none;
3836
+ line-height: 39px;
3837
+ padding: 0 15px;
3838
  }
3839
+
3840
  .tutor-date-range-filter-wrap {
3841
+ display: -webkit-box;
3842
+ display: -ms-flexbox;
3843
+ display: flex;
3844
+ margin: 30px 0;
3845
  }
3846
+
3847
  .report-download-csv-icon {
3848
+ float: right;
3849
  }
3850
+
3851
  .report-download-csv-icon a {
3852
+ text-decoration: none;
3853
  }
 
3854
 
3855
+ /** END Report.css */
3856
  /**
3857
+ * Alert CSS
3858
+ * since v.1.4.2
3859
+ */
3860
  .tutor-alert {
3861
+ border: 1px solid #f8a201;
3862
+ background: #fffff2;
3863
+ position: relative;
3864
+ border-radius: 3px;
3865
+ padding: 20px 25px 20px 95px;
3866
+ color: #a86d00;
3867
+ margin-bottom: 10px;
3868
  }
3869
+
3870
  .tutor-alert.tutor-alert-danger {
3871
+ border: 1px solid #fe1a1a;
3872
+ background: #fff2f2;
3873
+ color: #a50000;
3874
  }
3875
+
3876
  .tutor-alert.tutor-alert-success {
3877
+ border: 1px solid #69bc0d;
3878
+ background: #f6fff2;
3879
+ color: #3d7400;
3880
  }
3881
+
3882
  .tutor-alert.tutor-alert-info {
3883
+ border: 1px solid #13aaf6;
3884
+ background: #eaf8ff;
3885
+ color: #0586c7;
3886
  }
3887
+
3888
  .tutor-alert::before {
3889
+ content: "\e95f";
3890
+ position: absolute;
3891
+ font-size: 30px;
3892
+ font-family: "tutor" !important;
3893
+ speak: none;
3894
+ font-style: normal;
3895
+ font-weight: normal;
3896
+ font-variant: normal;
3897
+ text-transform: none;
3898
+ line-height: 1;
3899
+ -webkit-font-smoothing: antialiased;
3900
+ -moz-osx-font-smoothing: grayscale;
3901
+ width: 70px;
3902
+ top: 0;
3903
+ left: 0;
3904
+ text-align: center;
3905
+ background: #f8a201;
3906
+ height: 100%;
3907
+ display: -webkit-box;
3908
+ display: -ms-flexbox;
3909
+ display: flex;
3910
+ -webkit-box-pack: center;
3911
+ -ms-flex-pack: center;
3912
+ justify-content: center;
3913
+ -webkit-box-align: center;
3914
+ -ms-flex-align: center;
3915
+ align-items: center;
3916
+ color: #ffffff;
3917
  }
3918
+
3919
  .tutor-alert.tutor-alert-danger::before {
3920
+ content: "\e913";
3921
+ background: #fe1a1a;
3922
  }
3923
+
3924
  .tutor-alert.tutor-alert-success::before {
3925
+ content: "\e90f";
3926
+ background: #69bc0d;
3927
  }
3928
+
3929
  .tutor-alert.tutor-alert-info::before {
3930
+ content: "\e96c";
3931
+ background: #13aaf6;
3932
  }
3933
+
3934
  .tutor-alert-content p {
3935
+ margin: 0;
3936
  }
 
 
 
3937
 
3938
  /**
3939
+ *END Alert CSS
3940
+ */
3941
+ /**
3942
+ * Tutor Table
3943
+ */
3944
  table.tutor-table {
3945
+ border-spacing: 0;
3946
+ width: 100%;
3947
+ border-collapse: collapse;
3948
+ border: 1px solid #dcdfe5;
3949
  }
3950
+
3951
  table.tutor-table td,
3952
  table.tutor-table th {
3953
+ padding: 1em 1.41575em;
3954
+ text-align: left;
3955
+ vertical-align: top;
3956
+ border-bottom: 1px solid #dcdfe5;
3957
  }
3958
+
3959
  table.tutor-table td p:last-child,
3960
  table.tutor-table th p:last-child {
3961
+ margin-bottom: 0;
3962
  }
3963
+
3964
  table.tutor-table th {
3965
+ font-weight: 600;
3966
  }
3967
+
3968
  table.tutor-table thead th {
3969
+ padding: 1.41575em;
3970
+ vertical-align: middle;
3971
  }
3972
+
3973
  table.tutor-table tbody h2 {
3974
+ font-size: 1em;
3975
+ letter-spacing: normal;
3976
+ font-weight: normal;
3977
  }
3978
+
3979
  table.tutor-table tbody h2 a {
3980
+ font-weight: normal;
3981
  }
3982
+
3983
  table.tutor-table th {
3984
+ background-color: #fafbfc;
3985
  }
3986
+
3987
  table.tutor-table tbody td {
3988
+ background-color: #ffffff;
3989
  }
3990
+
3991
  table.tutor-table tbody tr:nth-child(2n) td {
3992
+ background-color: #fafbfc;
3993
  }
3994
+
3995
  table.tutor-table a {
3996
+ text-decoration: none;
3997
  }
3998
+
3999
  table.tutor-table p {
4000
+ margin: 0;
4001
  }
4002
 
4003
  /**
4004
+ * END Tutor Table
4005
+ */
 
4006
  /**
4007
+ Tools Nav
4008
+ */
4009
  .tutor-nav-tab-wrapper {
4010
+ margin-bottom: 10px;
4011
  }
4012
+
4013
  .nav-tab-item {
4014
+ float: left;
4015
+ border: 1px solid #ccc;
4016
+ border-bottom: none;
4017
+ margin-left: 0.5em;
4018
+ padding: 10px 14px;
4019
+ font-size: 14px;
4020
+ line-height: 1.33;
4021
+ font-weight: 600;
4022
+ background: #e5e5e5;
4023
+ color: #555;
4024
+ text-decoration: none;
4025
+ white-space: nowrap;
4026
  }
4027
+
4028
  .nav-tab-item:first-child {
4029
+ margin-left: 0;
4030
  }
4031
+
4032
  .nav-tab-item:focus,
4033
  .nav-tab-item:hover {
4034
+ background-color: #fff;
4035
+ color: #444;
4036
  }
4037
+
4038
  .nav-tab-item-active,
4039
  .nav-tab-item:focus:active {
4040
+ -webkit-box-shadow: none;
4041
+ box-shadow: none;
4042
  }
4043
+
4044
  .nav-tab-item-active {
4045
+ margin-bottom: -1px;
4046
+ color: #444;
4047
  }
4048
+
4049
  .nav-tab-item-active,
4050
  .nav-tab-item-active:focus,
4051
  .nav-tab-item-active:focus:active,
4052
  .nav-tab-item-active:hover {
4053
+ border-bottom: 1px solid #f1f1f1;
4054
+ background: #f1f1f1;
4055
+ color: #000;
4056
  }
 
 
 
4057
 
4058
  /**
4059
+ * END Tools
4060
+ */
4061
+ /**
4062
+ * Quiz Feedback Mode - UI fix
4063
+ */
4064
  .tutor-quiz-feedback-mode {
4065
+ position: relative;
4066
  }
4067
+
4068
  .tutor-quiz-feedback-mode:not(:last-child) {
4069
+ margin-right: 16px;
4070
  }
4071
 
4072
  .tutor-quiz-feedback-mode-option {
4073
+ border-radius: 3px;
4074
+ border: solid 1px #dedede;
4075
+ padding: 15px 15px 15px 40px;
4076
+ -webkit-transition: 0.2s ease;
4077
+ transition: 0.2s ease;
4078
+ max-width: 210px;
4079
  }
4080
 
4081
  .tutor-quiz-feedback-option-option-title {
4082
+ margin-bottom: 10px !important;
4083
  }
4084
 
4085
  .tutor-quiz-feedback-option-subtitle {
4086
+ margin: 0 !important;
4087
+ font-size: 12px;
4088
+ line-height: 1.67;
4089
+ color: #505469;
4090
  }
4091
+
4092
  .tutor-quiz-feedback-option-subtitle a {
4093
+ font-weight: 500;
4094
+ color: inherit;
4095
+ text-decoration: underline !important;
4096
  }
4097
 
4098
  .tutor-quiz-feedback-mode input[type="radio"] {
4099
+ display: none;
4100
  }
4101
 
4102
  .tutor-quiz-feedback-mode .radio-icon {
4103
+ position: absolute;
4104
+ top: 16px;
4105
+ left: 16px;
4106
+ z-index: 1;
4107
+ margin: 0;
4108
+ width: 16px;
4109
+ height: 16px;
4110
+ border-radius: 50%;
4111
+ -webkit-box-shadow: inset 0 0 0 2px #dcdce1;
4112
+ box-shadow: inset 0 0 0 2px #dcdce1;
4113
+ -webkit-transition: 0.2s ease;
4114
+ transition: 0.2s ease;
4115
  }
4116
+
4117
  .tutor-quiz-feedback-mode input[type="radio"]:checked + .radio-icon {
4118
+ -webkit-box-shadow: inset 0 0 0 5px #3e64de;
4119
+ box-shadow: inset 0 0 0 5px #3e64de;
4120
+ background: #fff;
4121
  }
4122
+
4123
  .tutor-quiz-feedback-mode
4124
+ input[type="radio"]:checked
4125
+ ~ .tutor-quiz-feedback-mode-option {
4126
+ background: #fff;
4127
  }
4128
 
4129
  /* Fixing course builder css overlap issue */
4130
  #tutor-course-topics h2, #tutor-instructors h2 {
4131
+ display: block;
4132
  }
4133
+
4134
  #tutor-course-topics .tutor-course-builder-header.has-postbox-header {
4135
+ top: -56px;
4136
+ right: 96px;
4137
  }
4138
 
4139
  #settings-tab-general .tutor-option-field-row input[type="number"] {
4140
+ width: 185px;
4141
  }
4142
 
4143
  /* Instructor list layout style */
4144
  .instructor-layout-templates-fields {
4145
+ display: -webkit-box;
4146
+ display: -ms-flexbox;
4147
+ display: flex;
4148
+ -ms-flex-wrap: wrap;
4149
+ flex-wrap: wrap;
4150
  }
4151
+
4152
  .instructor-layout-template {
4153
+ max-width: 150px;
4154
+ padding: 5px;
4155
+ margin: 3px;
4156
  }
4157
+
4158
  .instructor-layout-template img {
4159
+ max-width: 100%;
4160
+ height: auto;
4161
+ display: block;
4162
+ border: 6px solid transparent;
4163
+ -webkit-transition: border-color 400ms;
4164
+ transition: border-color 400ms;
4165
  }
4166
+
4167
  .instructor-layout-template.selected-template img,
4168
+ .instructor-layout-template:hover img {
4169
+ border: 6px solid #3057d6;
4170
  }
4171
 
4172
  /*
4173
+ * Since 1.7.9
4174
+ * announcements style
4175
+ */
4176
+ .tutor-announcement-content-wrap {
4177
+ display: -webkit-box;
4178
+ display: -ms-flexbox;
4179
+ display: flex;
4180
+ -webkit-box-pack: justify;
4181
+ -ms-flex-pack: justify;
4182
+ justify-content: space-between;
4183
+ -webkit-box-align: center;
4184
+ -ms-flex-align: center;
4185
+ align-items: center;
4186
  }
4187
+
4188
+ .tutor-announcement-buttons :nth-child(1) {
4189
+ margin-right: 20px;
4190
  }
4191
+
4192
  .tutor-announcements-header {
4193
+ display: -webkit-box;
4194
+ display: -ms-flexbox;
4195
+ display: flex;
4196
+ gap: 10px;
4197
+ -webkit-box-align: center;
4198
+ -ms-flex-align: center;
4199
+ align-items: center;
4200
  }
4201
+
4202
  .tutor-announcement-date,
4203
  .tutor-announcement-content > span {
4204
+ font-weight: bold !important;
4205
  }
4206
+
4207
  .tutor-announcement-date {
4208
+ width: 100px !important;
4209
  }
4210
+
4211
  .tutor-announcements-modal-wrap .tutor-modal-content {
4212
+ max-width: 660px !important;
4213
  }
4214
+
4215
  .tutor-announcements-modal-wrap button {
4216
+ padding: 10px 20px !important;
4217
  }
4218
 
4219
+ .tutor-announcements-update-form
4220
  .tutor-option-field-row,
4221
+ .tutor-announcements-form
4222
+ .tutor-option-field-row {
4223
+ padding: 10px 18px 10px 18px;
 
4224
  }
4225
+
4226
  .tutor-announcements-update-form .tutor-option-field-row input[type=text],
4227
+ .tutor-announcements-update-form textarea,
4228
  .tutor-announcements-form .tutor-option-field-row input[type=text],
4229
  .tutor-announcements-form textarea {
4230
+ width: 100%;
4231
+ margin-top: 8px;
4232
  }
4233
+
4234
+ .tutor-announcements-form select,
4235
  .tutor-announcements-update-form select {
4236
+ width: 100%;
4237
+ max-width: 100% !important;
4238
+ padding: 7px 12px;
4239
+ margin-top: 8px;
4240
  }
4241
+
4242
  .tutor-announcements-update-form
4243
+ .tutor-option-field-row,
4244
  .tutor-announcements-form
4245
  .tutor-option-field-row {
4246
+ border: none !important;
4247
  }
4248
+
4249
  .tutor-announcements-form
4250
+ .modal-footer button,
4251
  .tutor-announcements-update-form
4252
+ .modal-footer button {
4253
+ cursor: pointer !important;
4254
  }
4255
+
4256
  .tutor-announcements-form
4257
+ .modal-footer,
4258
  .tutor-announcements-update-form
4259
+ .modal-footer {
4260
+ background-color: #fff !important;
4261
  }
4262
 
4263
  .tutor-announcement-close-btn {
4264
+ text-decoration: none;
4265
+ color: #525252;
 
4266
  }
4267
+
4268
  .tutor-announcement-table td {
4269
+ vertical-align: middle !important;
4270
  }
4271
+
4272
  .tutor-announcement-content {
4273
+ line-height: 10px;
 
 
 
 
 
 
4274
  }
4275
 
4276
  /*over ride default modal on announcement*/
4277
+ .tutor-accouncement-update-modal
4278
  .modal-header,
4279
+ .tutor-announcement-create-modal
4280
  .modal-header {
4281
+ padding-right: 15px !important;
4282
  }
4283
+
4284
+ .tutor-accouncement-update-modal
4285
  .tutor-modal-content,
4286
+ .tutor-announcement-create-modal
4287
  .tutor-modal-content {
4288
+ border-radius: 20px !important;
4289
  }
4290
 
4291
  /**
4292
+ * announcement css
4293
+ * @since v1.7.9
4294
+ */
4295
  .tutor-admin-search-box-container {
4296
+ display: -webkit-box;
4297
+ display: -ms-flexbox;
4298
+ display: flex;
4299
+ -webkit-box-pack: justify;
4300
+ -ms-flex-pack: justify;
4301
+ justify-content: space-between;
4302
+ -webkit-box-align: end;
4303
+ -ms-flex-align: end;
4304
+ align-items: flex-end;
4305
+ -ms-flex-wrap: wrap;
4306
+ flex-wrap: wrap;
4307
+ margin-top: 45px;
4308
  }
4309
+
4310
  .tutor-admin-search-box-container > div:nth-child(1) {
4311
+ margin-right: 40px;
4312
+ position: relative;
4313
  }
4314
 
4315
  .tutor-admin-search-box-container > div:nth-child(1) {
4316
+ -webkit-box-flex: 2;
4317
+ -ms-flex: 2;
4318
+ flex: 2;
4319
  }
4320
 
4321
  .tutor-admin-search-box-container > div:nth-child(2),
4322
  .tutor-admin-search-box-container > div:nth-child(3),
4323
  .tutor-admin-search-box-container > div:nth-child(4) {
4324
+ -webkit-box-flex: 1.5;
4325
+ -ms-flex: 1.5;
4326
+ flex: 1.5;
4327
  }
4328
 
4329
  .tutor-admin-search-box-container > div:not(:last-child) {
4330
+ margin-right: 40px;
4331
  }
4332
 
4333
  .tutor-admin-search-box-container .tutor-report-search-btn {
4334
+ position: absolute;
4335
+ width: 40px;
4336
+ height: 40px;
4337
+ bottom: 0;
4338
+ right: 0;
4339
+ border: 0;
4340
+ background: transparent;
4341
+ color: #3e64de;
4342
+ font-size: 20px;
4343
+ cursor: pointer;
4344
+ outline: none;
4345
  }
4346
+
4347
  .tutor-admin-search-box-container > div:nth-child(1) input {
4348
+ /* height: 50px; */
4349
+ padding-right: 45px;
4350
  }
4351
 
4352
  .tutor-admin-search-box-container input[type="text"],
4353
  .tutor-admin-search-box-container select {
4354
+ width: 100%;
4355
+ height: 40px;
4356
+ border-radius: 3px;
4357
+ border: solid 1px #dcdce1;
4358
+ background-color: #ffffff;
4359
+ padding: 0 14px;
4360
+ -webkit-transition: 0.2s;
4361
+ transition: 0.2s;
4362
  }
4363
 
4364
  .tutor-admin-search-box-container .date-range-input i.tutor-icon-calendar {
4365
+ position: absolute;
4366
+ width: 42px;
4367
+ height: 40px;
4368
+ right: 0;
4369
+ top: 0;
4370
+ color: #3e64de;
4371
+ font-size: 18px;
4372
+ text-align: center;
4373
+ line-height: 40px;
4374
  }
4375
+
4376
  .tutor-admin-search-box-container .menu-label {
4377
+ font-size: 14px;
4378
+ font-weight: 400;
4379
+ color: #737787;
4380
+ margin-bottom: 7px;
4381
  }
4382
+
4383
  .tutor-admin-search-box-container > div:nth-child(4) input::-webkit-input-placeholder {
4384
+ color: #3f435b;
4385
+ font-size: 15px;
4386
  }
4387
 
4388
  .tutor-admin-search-box-container > div:nth-child(1) input::-webkit-input-placeholder {
4389
+ font-size: 16px;
4390
+ font-weight: 400;
4391
+ color: #737787;
4392
  }
4393
 
4394
  .tutor-admin-search-box-container input[type="text"]:hover,
4397
  .tutor-admin-search-box-container select:focus,
4398
  .tutor-date-range-wrap .date-range-input input:hover,
4399
  .tutor-date-range-wrap .date-range-input input:focus {
4400
+ border-color: var(--tutor-primary-color) !important;
4401
+ -webkit-box-shadow: none !important;
4402
+ box-shadow: none !important;
4403
+ outline: none !important;
4404
  }
4405
+
4406
  @media (max-width: 767px) {
4407
+ .tutor-admin-search-box-container {
4408
+ display: grid;
4409
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
4410
+ grid-gap: 15px;
4411
+ }
4412
+ .tutor-admin-search-box-container > div {
4413
+ margin-right: 0 !important;
4414
+ }
4415
  }
4416
 
 
 
4417
  /**
4418
+ * Common CSS .tutor-list-* - start
4419
+ * .tutor-list-wrap > .tutor-list-header + .tutor-list-table + .tutor-list-footer
4420
+ */
4421
  .tutor-list-wrap {
4422
+ border-radius: 3px;
4423
+ background-color: #ffffff;
4424
+ margin-top: 40px;
4425
  }
4426
 
4427
  .tutor-list-wrap .tutor-list-header,
4428
  .tutor-list-wrap .tutor-list-footer {
4429
+ padding: 30px;
4430
  }
4431
 
4432
  .tutor-list-wrap .heading {
4433
+ font-size: 20px;
4434
+ line-height: 1.5;
4435
+ color: #3f435b;
4436
  }
4437
 
4438
  .tutor-list-wrap .tutor-list-table {
4439
+ width: 100%;
4440
+ text-align: left;
4441
+ border-collapse: collapse;
4442
  }
4443
+
4444
  .tutor-list-wrap .tutor-list-table .table-toggle {
4445
+ display: none;
4446
  }
4447
+
4448
  .tutor-list-wrap .tutor-list-table .table-toggle.open {
4449
+ display: table-row;
4450
  }
4451
+
4452
  [class^="tutor-report-"] .tutor-list-table tbody td.detail {
4453
+ vertical-align: top;
4454
  }
4455
 
4456
  .tutor-list-wrap .tutor-list-table thead,
4457
  .tutor-list-wrap .tutor-list-table tr:first-child th {
4458
+ background-color: #f7f7f9;
4459
+ border-top: 1px solid #eaeaea;
4460
+ border-bottom: 1px solid #eaeaea;
4461
  }
4462
 
4463
  .tutor-list-wrap .tutor-list-table th {
4464
+ font-size: 12px;
4465
+ font-weight: 400;
4466
+ line-height: 1.75;
4467
+ letter-spacing: 0.7px;
4468
+ color: #737787;
4469
+ text-transform: uppercase;
4470
  }
4471
 
4472
  .tutor-list-wrap .tutor-list-table td,
4473
  .tutor-list-wrap .tutor-list-table td p {
4474
+ font-size: 14px;
4475
+ font-weight: 300;
4476
+ line-height: 1.75;
4477
+ color: #3f435b;
4478
  }
4479
 
4480
  .report-course-list-wrap .tutor-list-table th i {
4481
+ margin-left: 3px;
4482
  }
4483
 
4484
  .tutor-list-wrap .tutor-list-table tr th,
4485
  .tutor-list-wrap .tutor-list-table tr td {
4486
+ padding: 15px 20px;
4487
  }
4488
 
4489
  .tutor-list-wrap .tutor-list-header,
4490
  .tutor-list-wrap .tutor-list-table th:last-child,
4491
  .tutor-list-wrap .tutor-list-table td:last-child,
4492
  .tutor-report-course-list .tutor-list-footer {
4493
+ padding-right: 36px;
4494
  }
4495
 
4496
  .tutor-list-wrap .tutor-list-header,
4497
  .tutor-list-wrap .tutor-list-table th:first-child,
4498
  .tutor-list-wrap .tutor-list-table td:first-child {
4499
+ padding-left: 30px;
4500
  }
4501
 
4502
  .tutor-list-wrap .tutor-list-table tbody td {
4503
+ padding: 25px 20px;
4504
+ vertical-align: top;
4505
  }
4506
 
4507
  .tutor-list-wrap .tutor-list-table tbody tr:not(:last-child) {
4508
+ border-bottom: 1px solid #dcdce1;
4509
  }
4510
 
4511
  .tutor-list-footer {
4512
+ display: -webkit-box;
4513
+ display: -ms-flexbox;
4514
+ display: flex;
4515
+ -webkit-box-pack: justify;
4516
+ -ms-flex-pack: justify;
4517
+ justify-content: space-between;
4518
+ -webkit-box-align: center;
4519
+ -ms-flex-align: center;
4520
+ align-items: center;
4521
+ border-top: 1px solid #dcdce1;
4522
  }
4523
 
4524
  .tutor-list-footer .tutor-report-count {
4525
+ font-size: 14px;
4526
+ line-height: 1.71;
4527
+ color: #737787;
4528
  }
4529
 
4530
  .tutor-list-footer .tutor-report-count strong {
4531
+ color: #3f435b;
4532
  }
4533
 
4534
  .tutor-list-footer .page-numbers.current {
4535
+ border-color: #3e64de;
4536
+ background: transparent;
4537
  }
4538
 
4539
  .tutor-list-footer .page-numbers {
4540
+ border-radius: 4px;
4541
+ border: solid 1px #dcdce1;
4542
+ padding: 11px 14px;
4543
+ font-size: 14px;
4544
+ font-weight: 400;
4545
+ color: #737787;
4546
+ background: #fff;
4547
+ outline: none;
4548
+ -webkit-transition: 0.2s;
4549
+ transition: 0.2s;
4550
  }
4551
 
4552
  .tutor-list-footer .page-numbers:hover,
4553
  .tutor-list-footer .page-numbers:focus {
4554
+ border-color: #3e64de;
4555
+ background: #3e64de !important;
4556
+ color: #fff;
4557
+ -webkit-box-shadow: none;
4558
+ box-shadow: none;
4559
  }
4560
 
4561
  .tutor-list-footer .page-numbers.current:hover,
4562
  .tutor-list-footer .page-numbers.current:focus {
4563
+ background: transparent !important;
4564
+ color: inherit;
4565
  }
4566
 
4567
  .tutor-list-footer .tutor-pagination {
4568
+ margin: 0;
4569
  }
4570
 
4571
  .tutor-list-table td .details-button a,
4572
  .tutor-list-table .link-icon {
4573
+ font-size: 16px;
4574
+ color: #b9bac3;
4575
+ -webkit-transition: 0.2s;
4576
+ transition: 0.2s;
4577
  }
4578
+
4579
  .tutor-list-table td .details-button a:first-child {
4580
+ font-size: 12px;
4581
+ font-weight: 500;
4582
+ line-height: 1.75;
4583
+ text-align: center;
4584
+ color: #737787;
4585
+ border-radius: 3px;
4586
+ border: solid 1px #dcdce1;
4587
+ padding: 5px 11px;
4588
+ margin-right: 15px;
4589
+ text-decoration: none;
4590
  }
4591
 
4592
  .tutor-list-table td .details-button {
4593
+ text-align: right;
4594
+ display: -webkit-box;
4595
+ display: -ms-flexbox;
4596
+ display: flex;
4597
+ -webkit-box-align: center;
4598
+ -ms-flex-align: center;
4599
+ align-items: center;
4600
  }
4601
 
4602
  .tutor-list-table .course-link a {
4603
+ color: inherit;
4604
+ text-decoration: none;
4605
  }
4606
+
4607
  .tutor-list-table .tutor-icon-detail-link,
4608
  .profile-table .tutor-icon-detail-link {
4609
+ font-size: 14px;
4610
  }
4611
 
4612
  @media (max-width: 991px) {
4613
+ .tutor-list-wrap {
4614
+ overflow-x: scroll;
4615
+ }
4616
  }
 
 
 
4617
 
4618
+ /**
4619
+ * Common CSS /.tutor-list-* - end
4620
+ */
4621
  /* .report-course-list - start */
4622
  .report-course-list-header {
4623
+ display: -webkit-box;
4624
+ display: -ms-flexbox;
4625
+ display: flex;
4626
+ -webkit-box-align: center;
4627
+ -ms-flex-align: center;
4628
+ align-items: center;
4629
+ -webkit-box-pack: justify;
4630
+ -ms-flex-pack: justify;
4631
+ justify-content: space-between;
4632
  }
4633
 
4634
  .report-course-list-wrap .tutor-list-table td {
4635
+ font-size: 16px;
4636
  }
4637
 
4638
  .report-course-list-wrap .tutor-list-table td:nth-child(2) {
4639
+ font-size: 14px;
4640
+ font-weight: 400;
4641
  }
4642
 
4643
  .report-course-list-wrap .tutor-list-table td:last-child {
4644
+ text-align: right;
4645
  }
4646
 
4647
  .report-course-list-wrap .tutor-list-table th:nth-child(2),
4648
  .report-course-list-wrap .tutor-list-table td:nth-child(2) {
4649
+ width: 40%;
4650
  }
4651
 
4652
  .report-course-list-wrap .tutor-list-table .total {
4653
+ color: #9698a5;
4654
  }
4655
 
4656
  .report-course-list-wrap .tutor-list-table [class$="-link"] {
4657
+ color: #b9bac3;
4658
  }
4659
 
4660
  .report-course-list-wrap .tutor-list-table a:hover {
4661
+ color: #3057d5;
4662
  }
4663
 
4664
  .report-course-list-wrap .tutor-list-table .course-link {
4665
+ font-size: 12px;
4666
+ margin-left: 5px;
4667
  }
4668
 
4669
  .tutor-list-table .course-percentage {
4670
+ width: 90px;
4671
+ height: 4px;
4672
+ border-radius: 2px;
4673
+ background-color: #dcdce1;
4674
+ position: relative;
4675
  }
4676
 
4677
  .tutor-list-table .course-percentage::before {
4678
+ content: "";
4679
+ position: absolute;
4680
+ width: var(--percent);
4681
+ height: 4px;
4682
+ border-radius: 2px;
4683
+ background-color: #3e64de;
4684
  }
4685
 
4686
  .report-course-list-wrap
4687
+ > .tutor-list-table
4688
+ tbody
4689
+ td:not(.detail):nth-last-child(3) {
4690
+ vertical-align: middle;
4691
  }
4692
 
4693
  .report-course-list-wrap .tutor-list-table .details-link {
4694
+ font-size: 21px;
4695
  }
4696
 
4697
  .tutor-report-content a {
4698
+ -webkit-transition: 0.2s ease;
4699
+ transition: 0.2s ease;
4700
  }
4701
 
4702
  .tutor-report-content a:hover,
4703
  .tutor-report-content a:focus,
4704
  .report-student-profile .profile-table a:hover {
4705
+ color: #3057d5;
4706
  }
4707
 
4708
  @media (max-width: 991px) {
4709
+ .report-course-list-wrap .tutor-list-table th:nth-child(n + 7),
4710
+ .report-course-list-wrap .tutor-list-table td:nth-child(n + 7) {
4711
+ display: none;
4712
+ }
4713
  }
4714
 
4715
  .report-course-list-header .status span,
4716
  .report-course-list-wrap .detail .status span {
4717
+ font-size: 14px;
4718
+ font-weight: 300;
4719
+ line-height: 1;
4720
+ color: #737787;
4721
+ margin-left: 25px;
4722
+ padding-left: 14px;
4723
+ position: relative;
4724
+ display: -webkit-inline-box;
4725
+ display: -ms-inline-flexbox;
4726
+ display: inline-flex;
4727
+ -webkit-box-align: center;
4728
+ -ms-flex-align: center;
4729
+ align-items: center;
4730
  }
4731
 
4732
  .report-course-list-header .status span::before,
4733
  .report-course-list-wrap .detail .status span::before {
4734
+ content: "";
4735
+ position: absolute;
4736
+ width: 8px;
4737
+ height: 8px;
4738
+ background: #b9bac3;
4739
+ border-radius: 50%;
4740
+ left: 0;
4741
  }
4742
 
4743
  .report-course-list-wrap .detail .status span {
4744
+ margin-left: 0;
4745
+ padding-left: 16px;
4746
  }
4747
 
4748
  .report-course-list-wrap .detail .status span::before {
4749
+ width: 6px;
4750
+ height: 6px;
4751
  }
4752
 
4753
  .report-course-list-header .status .running::before,
4754
  .report-course-list-wrap .detail .status .running::before {
4755
+ background-color: #3e64de;
4756
  }
4757
 
4758
  .report-course-list-header .status .complete::before,
4759
  .report-course-list-wrap .detail .status .complete::before {
4760
+ background-color: #7bbc30;
4761
  }
4762
 
4763
  .report-course-list-wrap .detail .heading {
4764
+ font-size: 16px;
4765
+ line-height: 1.75;
4766
+ color: #3f435b;
4767
+ margin-bottom: 10px;
4768
  }
4769
 
4770
  .report-course-list-wrap .detail {
4771
+ padding: unset !important;
4772
+ text-align: left !important;
4773
+ font-size: 14px !important;
4774
+ font-weight: 400 !important;
4775
  }
4776
 
4777
  .report-course-list-wrap .tutor-list-table td > table {
4778
+ width: 100%;
4779
  }
4780
 
4781
  .report-course-list .course-list-details {
4782
+ display: grid;
4783
+ grid-auto-flow: column;
4784
+ grid-auto-columns: 1fr;
4785
+ grid-gap: 20px;
4786
+ grid-template-columns: repeat(3, 1fr);
4787
  }
4788
 
4789
  .tutor-list-wrap .tutor-list-table a:hover,
4790
  .tutor-list-wrap .tutor-list-table a:focus {
4791
+ color: #3e64de;
4792
  }
4793
 
4794
  .tutor-list-wrap .no-data-found {
4795
+ display: -webkit-box;
4796
+ display: -ms-flexbox;
4797
+ display: flex;
4798
+ -webkit-box-align: center;
4799
+ -ms-flex-align: center;
4800
+ align-items: center;
4801
+ padding: 0 0 30px 0;
4802
+ }
4803
+
4804
+ /* /.report-course-list - end */
4805
+ .tutor-toast-parent {
4806
+ position: fixed;
4807
+ right: 25px;
4808
+ bottom: 50px;
4809
+ right: 50px;
4810
+ left: auto;
4811
+ max-height: 400px;
4812
+ width: 350px;
4813
+ overflow-x: hidden;
4814
+ overflow-y: auto;
4815
+ background: transparent;
4816
+ }
4817
+
4818
+ .tutor-toast-parent:empty {
4819
+ display: none;
4820
+ }
4821
+
4822
+ .tutor-toast-parent > div {
4823
+ background: white;
4824
+ padding: 10px;
4825
+ margin: 15px;
4826
+ border-radius: 15px;
4827
+ z-index: 99999999;
4828
+ -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.363);
4829
+ box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.363);
4830
+ border: 1px solid #E8E8E8;
4831
+ background: white;
4832
+ border: none;
4833
+ display: -webkit-box;
4834
+ display: -ms-flexbox;
4835
+ display: flex;
4836
+ display: -o-flex;
4837
+ display: -ms-flex;
4838
+ display: -moz-flex;
4839
+ display: -webkit-flex;
4840
+ -ms-flex-line-pack: center;
4841
+ align-content: center;
4842
+ -o-align-content: center;
4843
+ -ms-align-content: center;
4844
+ -moz-align-content: center;
4845
+ -webkit-align-content: center;
4846
+ -webkit-box-align: center;
4847
+ -ms-flex-align: center;
4848
+ align-items: center;
4849
+ -o-align-items: center;
4850
+ -ms-align-items: center;
4851
+ -moz-align-items: center;
4852
+ -webkit-align-items: center;
4853
+ }
4854
+
4855
+ .tutor-toast-parent > div > div {
4856
+ padding: 8px;
4857
+ }
4858
+
4859
+ .tutor-toast-parent > div > div:nth-child(1), .tutor-toast-parent > div > div:nth-child(3) {
4860
+ -webkit-box-pack: center;
4861
+ -ms-flex-pack: center;
4862
+ justify-content: center;
4863
+ -o-justify-content: center;
4864
+ -ms-justify-content: center;
4865
+ -moz-justify-content: center;
4866
+ -webkit-justify-content: center;
4867
+ }
4868
+
4869
+ .tutor-toast-parent > div > div:nth-child(2) {
4870
+ -webkit-box-flex: 1;
4871
+ flex: 1;
4872
+ -o-flex: 1;
4873
+ -ms-flex: 1;
4874
+ -moz-flex: 1;
4875
+ -webkit-flex: 1;
4876
+ }
4877
+
4878
+ .tutor-toast-parent > div img {
4879
+ width: 100%;
4880
+ height: auto;
4881
+ }
4882
+
4883
+ .tutor-toast-parent > div b {
4884
+ font-weight: 600;
4885
+ display: block;
4886
+ }
4887
+
4888
+ .tutor-toast-parent > div span {
4889
+ color: #333333;
4890
+ }
4891
+
4892
+ .tutor-toast-parent > div i {
4893
+ cursor: pointer;
4894
+ font-size: 14px;
4895
+ }
4896
+
4897
+ body.rtl .tutor-toast-parent {
4898
+ right: auto;
4899
+ left: 50px;
4900
+ }
4901
+
4902
+ /*# sourceMappingURL=tutor-admin.css.map */
assets/css/tutor-admin.min.css ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root{--tutor-primary-color: #1b52d8;--tutor-primary-hover-color: #1b52a9;--tutor-text-color: #4b5981;--tutor-light-color: #b1b8c9;--tutor-success-button-color: #86b223}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:15px;height:15px;cursor:default;top:-6.5px;cursor:pointer}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:0.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:0.8em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:0.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-0.3em;margin-left:0;margin-bottom:-0.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-widget-content{border:1px solid #aaaaaa;background:#ffffff;color:#222222}.ui-widget-content a{color:#222222}.ui-widget-header{border:1px solid #aaaaaa;background:#cccccc;color:#222222;font-weight:bold}.ui-widget-header a{color:#222222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6;font-weight:normal;color:#555555}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee;color:#363636}.tutor-option-nav-tabs li{position:relative;display:inline-block;margin-right:-1px}.tutor-option-nav-tabs li:last-child:after{content:""}.tutor-option-nav-tabs li a{display:block;font-weight:bold;text-decoration:none;background:#fff;padding:5px 10px;border:1px solid #dddddd}.tutor-option-nav-tabs li.current a{color:#333333}.tutor-option-nav-tabs li a:focus{-webkit-box-shadow:none;box-shadow:none}.withdraw-method-nav{margin-bottom:20px}.withdraw-method-nav li{position:relative;display:inline-block}.withdraw-method-nav li a{display:block;text-decoration:none;padding:5px 10px;border-right:1px solid #cccccc}.withdraw-method-nav li:last-child a{border-right:none}.tutor-option-field-row{border-bottom:1px solid #e4e4e4;padding:20px 0;font-size:14px;line-height:1.3}.tutor-option-field-row:last-child{border-bottom:none}.tutor-option-field-row input[type="text"],.tutor-option-field-row input[type="email"],.tutor-option-field-row input[type="number"],.tutor-option-field-row input[type="password"],.tutor-option-field-row textarea,.tutor-option-field-row .tutor-field-type-slider{background-color:#fff;border:1px solid #ddd;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;color:#333;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0 10px 0 0;width:400px;min-height:35px}.tutor_lesson_modal_form .tutor-option-field-row input[type="text"],.tutor_lesson_modal_form .tutor-option-field-row input[type="email"],.tutor_lesson_modal_form .tutor-option-field-row input[type="number"],.tutor_lesson_modal_form .tutor-option-field-row input[type="password"],.tutor_lesson_modal_form .tutor-option-field-row textarea,.tutor_lesson_modal_form .tutor-option-field-row .tutor-field-type-slider{width:100%;display:block}.tutor-option-field{display:block;margin:0 0 0 200px;max-width:800px}.rtl .tutor-option-field{margin:0 200px 0 0}.tutor_lesson_modal_form .tutor-option-field{display:block;margin:0;max-width:none}.tutor-option-field-label{display:block;float:left;width:200px}.rtl .tutor-option-field-label{float:right}.tutor_lesson_modal_form .tutor-option-field-label{display:block;float:none;width:100%;margin-bottom:15px}.tutor-lesson-attachments-metabox{margin-top:30px}.tutor-option-field-label label{display:block;font-weight:600}.tutor-option-field p.desc{font-style:italic;color:#666;font-size:12px;line-height:1.5}.tutor-option-field-row h2{color:#444;font-size:18px;font-weight:700;margin:0}.tutor-option-field-row .option-media-wrap{margin-bottom:10px}.tutor-option-field-row .option-media-wrap img{max-height:100px;width:auto;padding:5px;border:1px solid #cccccc}.select2-container{min-width:250px !important}.membership_course_categories .select2-container{min-width:50% !important}.tutor-option-group-field{display:inline-block;vertical-align:top}.tutor-option-group-field input[type="text"],.tutor-option-group-field input[type="email"],.tutor-option-group-field input[type="number"],.tutor-option-group-field input[type="password"],.tutor-option-group-field textarea,.tutor-option-group-field .tutor-field-type-slider,.tutor-option-group-field select{width:100px;margin-right:5px}.option-type-radio-wrap{margin-top:0}#tutor-course-topics a{text-decoration:none}#tutor-course-topics .tutor-topics-wrap{border-bottom:1px solid #e7e7e7;padding-bottom:0;margin:0}.tutor-untopics-lessons .course-content-item,.course-contents .course-content-item{padding:10px;border-bottom:1px solid #d9d9d9;background-color:#ebeef0}.tutor-lessons.ui-sortable{min-height:20px}#tutor-course-topics .drop-lessons p{margin:0}#tutor-course-topics .course-content-item:hover{background-color:#ebeef0}#tutor-course-topics .tutor-lessons{padding-left:0}#tutor-course-topics .tutor-lesson-top,#tutor-course-topics .tutor-lesson-top i{font-size:15px}#tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i{display:inline-block;vertical-align:middle;margin-right:5px}.rtl #tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i{margin-right:0;margin-left:5px}#tutor-course-topics .tutor-lesson-top{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px}#tutor-course-topics .tutor-lesson-top .open-tutor-lesson-modal,.tutor-quiz .open-tutor-quiz-modal,.course-content-item .open-tutor-assignment-modal,.course-content-item .tutor-zoom-meeting-modal-open-btn{-webkit-box-flex:1;-ms-flex:1;flex:1}#tutor-course-topics .tutor-lesson-top i.tutor-icon-move{margin-right:10px;cursor:ns-resize}.rtl #tutor-course-topics .tutor-lesson-top i.tutor-icon-move{margin-right:0;margin-left:10px}#tutor-course-topics .tutor-lesson-top i.tutor-icon-pencil{margin:0 10px}#tutor-course-topics .tutor-lesson-top a{color:#393c40}#tutor-course-topics .tutor-lesson-top a.tutor-updating-message i{display:none}.tutor-topics-wrap,.course-move-handle{margin-right:5px}.course-move-handle{-ms-flex-item-align:center;align-self:center;cursor:row-resize}.new-topic-btn-wrap{padding:20px}p.course-empty-content{padding-left:20px}.tutor_btn_lg{line-height:45px;background-color:var(--tutor-primary-color);color:#ffffff;padding:0 20px;display:inline-block;border-radius:2px;font-size:14px;font-weight:300;border:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.tutor_btn_lg:focus{-webkit-box-shadow:none;box-shadow:none;border:none;outline:none}.tutor_btn_lg:focus,.tutor_btn_lg:hover{background-color:var(--tutor-primary-color);color:#ffffff}.ui-sortable-placeholder{visibility:visible;background-color:#dddd}.tutor-untopics-lessons{margin-top:0;border:1px solid #eee;padding:20px;margin-bottom:20px;background-color:#fbfbfb}.tutor-untopics-lessons h3{font-weight:300;margin-top:0px}.tutor-untopics-lessons .tutor-lessons{padding-left:0 !important}.create-new-lesson-wrap{text-align:center}.tutor-metabox-add-topics,.tutor-topics-edit-form{background:#f1f1f1;padding:20px}.tutor-metabox-add-topics .tutor-option-field-row{padding:15px 0}.tutor-metabox-add-topics .tutor-option-field-row:last-child,.tutor-topics-edit-form .tutor-option-field-row:last-child{border-bottom:none}.topic-edit-icon{cursor:pointer}.tutor-topic-title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:300;margin:0;line-height:40px;padding-left:15px}.rtl .tutor-topic-title{padding-left:0;padding-right:15px}.tutor-topic-title a{color:#393c40}.tutor-topic-title .topic-inner-title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;max-width:calc(100% - 154px)}.tutor-topic-title span{padding:0 5px}.tutor-topic-title span.expand-collapse-wrap{border-left:1px solid #e7e7e7}.rtl .tutor-topic-title span.expand-collapse-wrap{border-left:none;border-right:1px solid #e7e7e7}.tutor-topic-title span.expand-collapse-wrap a{display:block;padding:0 13px}.topic-delete-btn{float:right}.text-muted{color:#cccccc}.topic-delete-btn a{padding:0 10px}.topic-delete-btn a:hover{color:#ff0000}.topic-delete-btn .dashicons{width:12px;height:12px;font-size:12px}#tutor-course-topics{position:relative}#tutor-course-topics .inside{padding:0;margin:0}#tutor-course-topics a:focus{-webkit-box-shadow:none;box-shadow:none}#tutor-course-topics .toggle-indicator:before{margin-top:20px}.tutor-course-builder-header{line-height:50px;position:absolute;top:-69px;right:40px}.rtl .tutor-course-builder-header{right:auto;left:40px}.tutor-topics-wrap:nth-child(2n){background:#f8f8f8}#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body{background:#ebeef0;padding:15px 20px}.single_add_to_cart_button,a.tutor-button,.tutor-button,a.tutor-btn,.tutor-btn{color:#fff;border:1px solid var(--tutor-primary-color);background-color:var(--tutor-primary-color);display:inline-block;padding:12px 18px;border-radius:4px;text-transform:capitalize;line-height:20px;font-size:14px;font-weight:500;cursor:pointer;-webkit-transition:300ms;transition:300ms;overflow:hidden;vertical-align:top}.single_add_to_cart_button i,a.tutor-button i,.tutor-button i,a.tutor-btn i,.tutor-btn i{float:left;line-height:20px;margin-right:7px;font-size:20px}a.tutor-button.default-btn i,.tutor-button.default-btn i,a.tutor-btn.default-btn i,.tutor-btn.default-btn i{color:var(--tutor-primary-color)}a.tutor-button.bordered-button,.tutor-button.bordered-button,a.tutor-btn.bordered-btn,.tutor-btn.bordered-btn{color:var(--tutor-primary-color);border:1px solid var(--tutor-primary-color);background-color:transparent}a.tutor-button:hover,.tutor-button:hover,a.tutor-btn:hover,.tutor-btn:hover{background-color:var(--tutor-primary-hover-color);border-color:var(--tutor-primary-hover-color);color:#fff}a.tutor-button:hover i,.tutor-button:hover i,a.tutor-btn:hover i,.tutor-btn:hover i{color:#fff}a.tutor-button.default-btn,.tutor-button.default-btn,a.tutor-btn.default-btn,.tutor-btn.default-btn{color:#393c40;border:1px solid #b8babe;background:#fff}a.tutor-button.default-btn:hover,.tutor-button.default-btn:hover,a.tutor-btn.default-btn:hover,.tutor-btn.default-btn:hover{background-color:var(--tutor-primary-color);border-color:var(--tutor-primary-color);color:#fff}.tutor-add-quiz-button-wrap>*+*{margin-left:15px}a.tutor-button.bordered-button:hover,.tutor-button.bordered-button:hover,a.tutor-btn.bordered-btn:hover,.tutor-btn.bordered-btn:hover{border:1px solid var(--tutor-primary-color);background-color:var(--tutor-primary-color)}.tutor-updating-message i{display:none}.tutor-button.tutor-danger{background-color:#e53935;border-color:#e53935}.tutor-button.tutor-danger:hover{background-color:#e53935;border-color:#e53935;-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-button.tutor-success{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color)}.tutor-button.tutor-success:hover{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-required-fields{color:#f13a3a}#tutor-course-topics h2,#tutor-instructors h2{padding:15px;line-height:30px}#tutor-course-topics h2:before,#tutor-instructors h2:before{color:var(--tutor-primary-color);font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:10px}#tutor-course-topics h2:before{content:"\e936"}#tutor-instructors h2:before{content:"\e93c"}.tutor-video-metabox-wrap{margin-bottom:50px}.video-metabox-source-html5-upload{background-color:#fff;text-align:center;padding:40px 20px;border:1px solid #dcdfe5;border-radius:3px}.video-metabox-source-html5-upload p{margin-bottom:5px}.tutor-video-metabox-wrap p{margin:0;padding:0}.video-metabox-source-html5-upload .video-upload-icon i{font-size:50px;color:#1b52d8;line-height:45px}.video_source_upload_wrap_html5{margin-top:10px}.video-metabox-source-html5-poster{padding-top:20px}.video_source_wrap_html5{width:100%}.button-transparent{background:transparent !important}.button-transparent:hover{background:var(--tutor-primary-color) !important}.builder-course-thumbnail-upload-wrap .button-transparent{float:right}.html5-video-poster img{height:100%;width:auto}.html5-video-poster{height:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.html5-video-poster .tutor-builder-course-video-poster-text{text-align:left;padding-left:20px}.rtl .html5-video-poster .tutor-builder-course-video-poster-text{padding-left:0;padding-right:20px}.html5-video-poster .tutor-builder-course-video-poster-text h5{font-size:14px;font-weight:700;margin:0 0 5px}.html5-video-poster .tutor-builder-course-video-poster-text span{font-size:14px;font-weight:400}.html5-video-poster img{height:100%;width:auto}.builder-course-thumbnail-img-src{position:relative}.builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn{position:absolute;top:12px;left:15px;color:#e53935;-webkit-transition:300ms;transition:300ms;text-decoration:none}.video-metabox-source-html5-poster .tutor-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.video-metabox-source-html5-poster .tutor-row .tutor-col-5{width:38%}.video-metabox-source-html5-poster .tutor-col-7{width:62%}.video-metabox-source-html5-poster .tutor-row .tutor-course-thumbnail-upload-btn{margin:10px 0}.tutor-course-builder-attachements *{-webkit-box-sizing:border-box;box-sizing:border-box}.tutor-course-builder-attachements{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-20px;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 0 10px}.tutor-course-builder-attachements:empty{display:none}.tutor-course-builder-attachements .tutor-added-attachment{-webkit-box-flex:0;-ms-flex:0 0 153px;flex:0 0 153px;max-width:153px;border:1px solid #dcdfe5;padding:35px 20px 20px;position:relative;text-align:center;margin-left:20px;margin-bottom:20px;border-radius:4px;-webkit-transition:300ms;transition:300ms;min-width:153px}.tutor-course-builder-attachements .tutor-added-attachment i{font-size:58px;line-height:58px;margin-bottom:25px;display:block}.tutor-course-builder-attachements .tutor-added-attachment .tutor-delete-attachment{position:absolute;height:22px;width:22px;border:1px solid #dcdfe5;text-align:center;line-height:22px;top:-1px;right:-1px;font-size:10px;border-top-right-radius:4px;color:#d71830;opacity:0;-webkit-transition:300ms;transition:300ms;text-decoration:none}.tutor-course-builder-attachements .tutor-added-attachment:hover,.tutor-course-builder-attachements .tutor-added-attachment:hover .tutor-delete-attachment{border-color:#d71830;opacity:1}.tutor-course-builder-attachements .tutor-added-attachment span{display:block}.tutor-course-builder-attachements .tutor-added-attachment span a{font-size:14px;display:block;line-height:20px;color:#606c8f;text-decoration:none}.tutor-course-builder-btn-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.tutor-status-context{padding:5px 10px;margin:5px 0;display:inline-block}.tutor-status-pending-context,.attempt_started{background-color:#eeeeee}a.tutor-button,button.tutor-button{white-space:nowrap;padding:10px 20px;text-decoration:none}a.tutor-button-small,button.tutor-button-small{white-space:nowrap;padding:5px 10px;text-decoration:none}.tutor-button-small,a.tutor-button-small,button.tutor-button-small{font-size:14px;font-weight:300;border:none}.tutor-button-small i,a.tutor-button-small i,button.tutor-button-small i{font-size:16px}.tutor-button-primary{background-color:var(--tutor-primary-color);color:#ffffff;display:inline-block;border-radius:2px;font-size:14px;font-weight:300;border:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.tutor-button-primary:hover{background-color:#2446a6}.tutor-status-approved-context,.tutor-button.button-success,.tutor-status-completed{background-color:var(--tutor-success-button-color);color:#ffffff;border-radius:2px}.tutor-status-blocked-context,.attempt_timeout,.tutor-button.button-danger{background-color:#ff0000;color:#ffffff;border-radius:2px}.tutor-button.button-warning{background-color:#ffb36d;color:#ffffff}.tutor-button{border:0;-webkit-box-shadow:none !important;box-shadow:none !important}.tutor-button .dashicons{border:0;-webkit-box-shadow:none !important;box-shadow:none !important;line-height:inherit}.tutor-status-approved-context,.tutor-status-blocked-context{display:inline-block}table.tutor_status_table td.help{width:1em}table.tutor_status_table td:first-child{width:25%}table.tutor_status_table h2{font-size:16px;margin:0}table.tutor_status_table td mark.yes,table.tutor_status_table th mark.yes{color:var(--tutor-success-button-color);background-color:transparent}.tutor-text-avatar{border-radius:50%;width:40px;height:40px;text-align:center;display:block;line-height:40px;color:#ffffff;font-size:14px}.tutor_original_question{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:5px;padding:20px}.tutor_original_question .question-left{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px}.tutor_original_question .question-left img{max-width:60px;height:auto;margin-right:10px;border:1px solid #eeee88;padding:3px}.question-right{width:100%}.tutor_admin_answers_list_wrap .tutor_original_question{margin-left:50px}.tutor-bg-white{background-color:#ffffff}.tutor-bg-light{background-color:#fdfdfd}.tutor-announcement{border:1px solid #eee;padding:10px;margin-bottom:10px}.announcement-delete-btn{float:right}.announcement-delete-btn a{display:block;color:#393c40;padding:0 6px;text-decoration:none;cursor:pointer}.announcement-delete-btn a:hover{color:#ff0000}#tutor-announcements .submit{margin:0;padding:0}.tutor-label-success{background-color:var(--tutor-success-button-color);color:#ffffff;padding:3px 7px}.tutor-addons .plugin-card-bottom .plugin-version{display:inline-block}.tutor-addons .addon-regular-price{color:#cccccc;padding:3px}.tutor-addons .addon-current-price{color:var(--tutor-success-button-color);font-size:18px;padding:3px}.tutor-addons-last-checked-time{color:#6f5757 !important}.tutor-addons .wp-filter{margin:10px 0 0}a.addon-buynow-link{background:var(--tutor-primary-color);color:#fff;padding:5px 10px;display:inline-block}.tutor-addons-list{background-color:#fff;min-height:500px;padding:20px}h3.addon-list-heading{background-color:#eeeeee;padding:10px}table.tutor-addons-list-table{width:100%}table.tutor-addons-list-table td,table.tutor-addons-list-table th{padding:10px;border-bottom:1px solid #eeeeee;text-align:left}.tutor-addons-list .plugin-icon{height:120px}.tutor-addons-list .plugin-card .desc{margin-right:0}.tutor-addons-list .plugin-card .name{margin-right:50px}.tutor-lms-pro_page_tutor-addons.rtl .plugin-card .desc,.tutor-lms-pro_page_tutor-addons.rtl .plugin-card .name{margin-right:148px !important}.tutor-lms-pro_page_tutor-addons.rtl .plugin-card .desc{margin-left:0 !important}.tutor-lms-pro_page_tutor-addons.rtl .plugin-card .name{margin-left:53px !important}.btn-switch{display:inline-block;height:22px;position:relative;width:40px}.btn-switch input{display:none}.btn-slider{background-color:#ccc;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;-webkit-transition:0.4s;transition:0.4s}.btn-slider:before{background-color:#fff;bottom:3px;content:"";height:16px;left:4px;position:absolute;-webkit-transition:0.4s;transition:0.4s;width:16px}input:checked+.btn-slider{background-color:var(--tutor-primary-color)}input:checked+.btn-slider:before{-webkit-transform:translateX(16px);transform:translateX(16px)}.btn-slider.btn-round{border-radius:34px}.btn-slider.btn-round:before{border-radius:50%}.required-plugin-cards{background:#fff8e5;padding:12px 20px}.required-plugin-cards p{margin:0}.quiz-question-form-wrap{margin-top:20px;margin-bottom:20px}.quiz-question-flex-wrap,.tutor-flex-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.tutor-flex-col{margin:0 20px}.tutor-flex-col:first-child{margin-left:0}.tutor-flex-col:last-child{margin-right:0}.tutor-add-question-wrap{margin:20px 0;background-color:#f4f4f4;padding:10px}.tutor-add-question-wrap input[type="text"]{border:1px solid #ddd;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#333;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0;width:300px;min-height:35px}.tutor-add-question-wrap select{margin:0;padding:0;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;height:35px}.tutor-add-question-wrap .button{height:35px;margin-left:10px}.question-actions-wrap{padding-right:0 !important}.question-actions-wrap a{display:inline-block}.tutor-loading-icon-wrap.button{vertical-align:unset;border:none;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.tutor-input-text-error{border:1px solid #ff0000 !important}.tutor-info-msg,.tutor-success-msg,.tutor-warning-msg,.tutor-error-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.tutor-info-msg{color:var(--tutor-primary-color);background-color:#bef;border:1px solid var(--tutor-primary-color)}.tutor-success-msg{color:var(--tutor-success-button-color);background-color:#dff2bf;border:1px solid var(--tutor-success-button-color)}.tutor-warning-msg{color:#9f6000;background-color:#feefb3;border:1px solid #9f6000}.tutor-error-msg{color:#d8000c;background-color:#fbdcdc;border:1px solid #d8000c}.tutor-modal-wrap{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:-1;background-color:rgba(0,0,0,0.5)}.tutor-modal-wrap.show{display:-webkit-box;display:-ms-flexbox;display:flex;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";z-index:99999;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tutor-modal-wrap.loading .tutor-modal-content:before{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:"";z-index:9;background:url("../images/spinner.gif") no-repeat center center}.tutor-modal-wrap .tutor-modal-content{max-height:90%;overflow-y:auto;overflow-x:hidden;background-color:#fff;max-width:730px;margin:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);position:relative;-webkit-transition:all 200ms ease-out;transition:all 200ms ease-out;width:90%}.admin-bar .tutor-modal-wrap .tutor-modal-content{max-height:calc(90% - 32px);margin-top:32px}.admin-bar.mceContentBody .tutor-modal-wrap .tutor-modal-content{max-height:calc(90% - 88px);margin-top:88px}.tutor-modal-wrap .modal-footer{padding:20px;border-top:1px solid #eee}.tutor-modal-wrap .modal-container{min-height:200px;padding:20px}.tutor-modal-wrap .modal-container p{margin:5px 0 15px}.tutor-instructors-modal-wrap.tutor-modal-wrap .modal-container{padding:20px;background:#fff;min-height:auto}.tutor-modal-wrap .modal-header{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-modal-wrap .search-bar{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-top:10px;padding-left:20px;padding-right:20px}.tutor-modal-wrap .search-bar input[type="text"]{width:100%;border:1px solid #eee;-webkit-box-shadow:none;box-shadow:none;padding:10px}.tutor-modal-wrap .modal-title{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-modal-wrap a.modal-close-btn{background:#ffffff;width:50px;height:59px;display:inline-block;text-align:center;line-height:57px;color:#3a3d42;font-size:15px;position:absolute;right:0;top:0;text-decoration:none}.tutor-modal-wrap .modal-header{padding:15px 20px;border-bottom:1px solid #eeeff1;padding-right:50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-modal-wrap .modal-header .tutor-classic-editor-btn{color:var(--tutor-primary-color)}.tutor-modal-wrap .modal-header h1{padding:0;margin:0;line-height:30px;font-size:23px}.tutor-modal-wrap .modal-container{background-color:#f1f1f1;padding:0}#tutor-quiz-modal-tab-items-wrap{background-color:#fff;font-size:0;overflow:hidden}#tutor-quiz-builder-modal-tabs-container{padding:20px}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item{padding:15px 25px;display:inline-block;color:#393c40;border-left:1px solid #f1f1f1;font-size:14px;overflow:hidden;line-height:17px;vertical-align:middle}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active{background-color:#f1f1f1}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item i{float:left;font-size:17px;line-height:1;margin-right:5px}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active i{color:var(--tutor-primary-color)}.quiz-modal-tab-navigation-btn{padding:10px 20px;border-radius:3px}.quiz-modal-btn-next,.quiz-modal-btn-next:focus,.quiz-modal-btn-first-step,.quiz-modal-btn-first-step:focus,.quiz-modal-question-save-btn,.quiz-modal-question-save-btn:focus,.quiz-modal-settings-save-btn,.quiz-modal-settings-save-btn:focus{background-color:var(--tutor-primary-color);color:#ffffff}.quiz-modal-btn-next:hover,.quiz-modal-btn-first-step:hover,.quiz-modal-question-save-btn:hover,.quiz-modal-settings-save-btn:hover{color:#ffffff}.quiz-modal-btn-cancel,.quiz-modal-btn-back{color:#4b5981;border:1px solid #d4dadb}.tutor-quiz-builder-form-row .quiz-form-warning{color:#e88e06}.tutor-assignment-builder-modal-wrap .modal-container{padding:10px}.assignment-modal-form-wrap .tutor-option-field.tutor-assignment-modal-title-wrap{margin:0}.tutor-quiz-question-answers-form{background-color:#fff;padding:20px;-webkit-transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);border:1px solid #dedede;border-radius:3px;margin-bottom:20px}.advanced-options-tab-item{float:right}.modal-container .modal-classic-btn-wrap{position:absolute;right:45px;top:20px}.rtl .modal-container .modal-classic-btn-wrap{left:20px;right:auto}.modal-container .modal-classic-btn-wrap .tutor-classic-editor-btn{color:var(--tutor-primary-color)}.tutor-quiz-builder-modal-tabs-notice{background:#d8d8d8;line-height:20px;padding:10px 30px;color:#a4a4a4}#tutor-course-topics .tutor-quiz-builder-modal-tabs-notice a{color:#a4a4a4;text-decoration:underline}.tutor-quiz-builder-group{margin-bottom:25px}.tutor-quiz-builder-group>p.warning{color:red;font-size:12px}.tutor-quiz-builder-group>p.help{color:#a4a4a4;font-size:12px;margin-top:7px}.tutor-quiz-builder-group h4{font-size:14px;color:#393c40;font-weight:600;margin:0 0 15px}.tutor-quiz-builder-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:-10px;margin-right:-10px}.tutor-quiz-builder-col{padding-left:10px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-quiz-builder-col.auto-width{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-quiz-builder-group textarea,.tutor-quiz-builder-group input[type="text"],.tutor-quiz-builder-group input[type="email"],.tutor-quiz-builder-group input[type="number"],.tutor-quiz-builder-group input[type="password"]{line-height:40px;padding:5px 0;text-indent:15px;background:#fff;display:inline-block;border:1px solid #dedede;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;width:100%;color:#393c40;font-size:14px}.tutor-quiz-builder-group textarea:focus,.tutor-quiz-builder-group input[type="text"]:focus,.tutor-quiz-builder-group input[type="email"]:focus,.tutor-quiz-builder-group input[type="number"]:focus,.tutor-quiz-builder-group input[type="password"]:focus{border-color:var(--tutor-primary-color)}.tutor-quiz-builder-group textarea{height:80px;resize:none;text-indent:0;padding:11px 15px;line-height:22px}.tutor-quiz-builder-group textarea[name="quiz_description"]{height:150px}.tutor-quiz-builder-group select{border:1px solid #ccc;-webkit-box-shadow:none;box-shadow:none;height:42px !important;padding:0 24px 0 12px !important;margin:0}.tutor-quiz-builder-modal-control-btn-group{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px}.question_form_inner{padding:0 20px 20px;margin-top:0}.tutor-quiz-builder-modal-control-btn-group .quiz-builder-btn-group-left{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn{display:inline-block}.tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn:not(:last-child){margin-right:6px}.modal-container .tutor-quiz-add-question-btn{border:1px solid #c6c9cf;padding:10px 15px;color:#393c40;display:inline-block;border-radius:3px}.modal-container .tutor-quiz-add-question-btn i{color:var(--tutor-primary-color);line-height:16px;margin-right:3px}.quiz-form-field-col{margin-right:20px}.quiz-form-field-col.result-fail{width:100%}.quiz-modal-switch-field{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:30px}.quiz-modal-switch-field label.btn-switch{margin-right:20px;position:relative}label.btn-switch input:checked+.btn-slider{background-color:var(--tutor-success-button-color)}.btn-switch+span{line-height:24px;display:inline-block;margin-left:8px;font-weight:700;font-size:14px}.tutor-select{position:relative}.tutor-select .select-header{border:1px solid #dedede;margin:0;padding:10px;width:100%;-webkit-box-shadow:none;box-shadow:none;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px}.tutor-select .select-header .lead-option{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-select .select-header .select-dropdown{line-height:22px}.tutor-select .select-header .lead-option .question-type-pro{display:none}.tutor-select .tutor-select-options{border:1px solid #dedede;background-color:#fff;padding:22px 10px 8px;width:calc(100% - 22px);position:absolute;font-size:0;z-index:9;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-shadow:0px 2px 10px rgba(0,0,0,0.08);box-shadow:0px 2px 10px rgba(0,0,0,0.08);top:55px;border-radius:3px}.tutor-select .tutor-select-options .tutor-select-option{width:calc(33.3333% - 22px);display:inline-block;padding:9px;cursor:pointer;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 11px 15px;border:1px solid #e2e2e2;border-radius:3px}.tutor-select .tutor-select-options .tutor-select-option:hover{border-color:var(--tutor-primary-color)}.question-type-pro{color:#fff;font-size:9px;right:11px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}i.tutor-icon-block{padding:0;color:#fff;border-radius:3px;margin-right:2px;display:inline-block;width:22px;height:22px;text-align:center;line-height:22px}i.tutor-icon-block.tutor-icon-short-ans{background-color:#f37512}i.tutor-icon-block.tutor-icon-image-ans{background-color:#a322f9}i.tutor-icon-block.tutor-icon-yes-no{background-color:var(--tutor-primary-color)}i.tutor-icon-block.tutor-icon-multiple-choice{background-color:#9034a9}i.tutor-icon-block.tutor-icon-mark{background-color:#00b890}i.tutor-icon-block.tutor-icon-open-ended{background-color:#fe3129}i.tutor-icon-block.tutor-icon-fill-gaps{background-color:#ffbf00}i.tutor-icon-block.tutor-icon-answer-shorting{background-color:#f80089}i.tutor-icon-block.tutor-icon-assesment{background-color:#274055}i.tutor-icon-block.tutor-icon-matching{background-color:#8a4a1b}i.tutor-icon-block.tutor-icon-image-matching{background-color:#8a4a1b}i.tutor-icon-block.tutor-icon-ordering{background-color:var(--tutor-primary-color)}i.tutor-icon-block.tutor-icon-plus-square-button,i.tutor-icon-block.tutor-icon-plus{background-color:var(--tutor-success-button-color)}.create-lesson-in-topic-btn i.tutor-icon-block.tutor-icon-plus{background-color:var(--tutor-primary-color)}a.back-to-quiz-questions-btn{font-size:16px;font-weight:300;color:#393c40;margin-bottom:10px;display:block}a.back-to-quiz-questions-btn.tutor-updating-message i{display:none}.modal-container .quiz-questions-form{padding:20px}#quiz-builder-tab-advanced-options .tutor-quiz-builder-form-cols-row .quiz-form-field-col:first-child{-webkit-box-flex:0;-ms-flex:0 0 150px;flex:0 0 150px}.question-form-header{margin-bottom:20px}.quiz-question-form-body{margin-bottom:25px}.quiz-builder-question-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:15px}.quiz-builder-question{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff;padding:10px;border:1px solid #e2e2e2;border-radius:3px;max-width:calc(100% - 52px)}.quiz-builder-question .question-sorting{margin-right:10px;line-height:22px}.quiz-builder-question .question-sorting i{display:block;line-height:24px}.quiz-builder-question .question-edit-icon{line-height:22px}.quiz-builder-question .question-edit-icon .tutor-quiz-open-question-form.tutor-updating-message i{display:none}.quiz-builder-question .question-title{-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:22px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-right:10px}.quiz-builder-question .question-icon{-webkit-box-flex:0;-ms-flex:0 0 155px;flex:0 0 155px}.quiz-builder-qustion-trash a{display:block;padding:0 0 0 10px;font-size:20px;color:rgba(57,60,64,0.4);line-height:44px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider{border:1px solid #dedede;padding:20px 70px 20px 10px;background-color:#ffffff;position:relative;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content{background-color:var(--tutor-primary-color);border:none;height:4px;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-header{background:#dedede;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content .ui-state-default{background-color:var(--tutor-primary-color);border:1px solid var(--tutor-primary-color);border-radius:50%}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .tutor-field-type-slider-value{font-size:16px;font-weight:600;background:var(--tutor-primary-color);position:absolute;right:5px;top:50%;margin:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);line-height:34px;width:43px;text-align:center;border-radius:4px;color:#fff}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .tutor-field-type-slider-value:before{content:"";position:absolute;border:7px solid transparent;top:50%;border-right-color:var(--tutor-primary-color);right:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tutor-quiz-answer-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-quiz-answer{background-color:#fff;-webkit-box-flex:1;-ms-flex:1;flex:1;padding:10px 15px;border:1px solid #dedede;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:22px;border-radius:3px;margin-bottom:15px}.tutor-quiz-answer .tutor-quiz-answer-edit a{display:block;padding:0px 9px}.tutor-quiz-answer-trash-wrap a.answer-trash-btn{padding:0 10px;display:inline-block;line-height:44px}span.tutor-quiz-answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-quiz-answer-media .option-media-preview{margin-bottom:20px}.tutor-quiz-answer-media .option-media-preview img{max-width:80px;height:auto}.tutor-question-answer-image{margin-right:10px}.tutor-question-answer-image img{max-height:25px;width:auto}button#quiz-answer-save-btn,button#quiz-answer-edit-btn{background-color:var(--tutor-success-button-color);color:#fff;padding:10px 15px;border:none;cursor:pointer}button#quiz-answer-save-btn:hover,button#quiz-answer-edit-btn:hover{background-color:var(--tutor-success-button-color)}.tutor-media-upload-wrap{border:1px solid #dedede;display:-webkit-box;display:-ms-flexbox;display:flex;width:130px}.tutor-media-upload-wrap img{max-width:100%}.tutor-media-preview{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-media-upload-btn{display:block;padding:10px;font-size:50px;line-height:50px;text-align:center;color:#dedede}.tutor-media-upload-trash-wrap{border-left:1px solid #dedede}.tutor-media-upload-trash{color:#dedede;display:block;line-height:50px;padding:12px}.tutor-quiz-answers-form-footer.tutor-quiz-builder-form-row{margin-top:40px;margin-bottom:10px}.tutor-available-quizzes .added-quiz-item{background-color:#f5f5f5;padding:10px;margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-available-quizzes .added-quiz-item .quiz-name{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-add-quiz-button-wrap{margin:20px 0}.tutor-add-quiz-button-wrap a{color:#2756d1}.tutor-quiz-delete-btn{color:#ff0000}p.quiz-search-suggest-text{margin-top:30px;font-style:italic;font-size:12px}span.result-pass{background-color:var(--tutor-success-button-color);color:#fff;padding:3px 5px;border-radius:2px}span.result-fail{color:#ff0000}span.result-review-required{background:#f5b30d;color:#fff;padding:3px 5px;border-radius:2px}.tutor-emails-lists-wrap{background-color:#ffffff;padding:20px}.tutor-emails-lists-wrap .wp-list-table td{padding:10px 20px}.tutor-course-instructors-metabox-wrap{margin-top:10px;margin-left:-10px}.tutor-add-instructor-button-wrap{padding-left:10px}.tutor-course-available-instructors{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-available-instructors .added-instructor-item{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 20px);flex:0 0 calc(50% - 20px);max-width:calc(50% - 20px);border:1px solid #dcdfe5;padding:13px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0px 10px 20px}@media (min-width: 1300px){.tutor-course-available-instructors .added-instructor-item{-ms-flex:0 0 calc(33.333% - 20px);-webkit-box-flex:0;flex:0 0 calc(33.333% - 20px);max-width:calc(33.333% - 20px)}}@media (max-width: 546px){.tutor-course-available-instructors .added-instructor-item{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}}.tutor-course-available-instructors .added-instructor-item .instructor-name{position:relative}.tutor-course-available-instructors .added-instructor-item .instructor-name img{display:inline-block;margin-left:10px;width:18px}.tutor-course-available-instructors .added-instructor-item .instructor-name img:hover+i.instructor-name-tooltip{opacity:1}.tutor-course-available-instructors .added-instructor-item i.instructor-name-tooltip{-webkit-transition:300ms;transition:300ms;opacity:0;position:absolute;bottom:34px;right:9px;background:#2a344f;-webkit-transform:translateX(50%);transform:translateX(50%);color:#fff;font-size:12px;font-style:normal;padding:0 8px;border-radius:15px;line-height:20px;z-index:1}.tutor-course-available-instructors .added-instructor-item i.instructor-name-tooltip::before{content:"";position:absolute;border:5px solid #2a344f;bottom:-3px;left:50%;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);z-index:-1}.tutor-course-available-instructors .added-instructor-item .instructor-control{position:absolute;right:14px;top:50%;font-size:12px;-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0;-webkit-transition:300ms;transition:300ms}.tutor-course-available-instructors .added-instructor-item .instructor-control a{color:red;text-decoration:none}.tutor-course-available-instructors .added-instructor-item:hover .instructor-control{opacity:1}.tutor-course-available-instructors .added-instructor-item .instructor-icon{height:45px;width:45px;overflow:hidden;border-radius:50px;margin-right:15px}.tutor-course-available-instructors .added-instructor-item .instructor-icon img{width:100%;height:auto}.answer-image-matched-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.image-matching-item{-webkit-box-flex:0;-ms-flex:0 0 50px;flex:0 0 50px;margin-right:10px}.image-matching-item p{margin-bottom:5px;margin-top:0;color:#878a8f}.image-matching-item img{max-width:80px}span.filled_dash_unser{font-weight:bold;text-decoration:underline;margin:0 5px}.wrap.tutor-uninstall-wrap{background:#fff;padding:20px}.tutor-uninstall-btn-group{margin:50px 0}.tutor-updating-message:before{display:inline-block;font-family:"tutor";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;content:"\e91d";-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear;margin-right:6px}.rtl .tutor-updating-message:before{margin-right:0;margin-left:6px}.lesson-modal-form-wrap .lesson-modal-field-row{padding:10px 0}.lesson-modal-field.tutor-lesson-modal-title-wrap{width:95%}.tutor-lesson-modal-title-wrap input{width:100%}.lesson-modal-form-wrap .assignment-modal-field-row,.lesson-modal-form-wrap .tutor-lesson-attachments-metabox,.lesson-modal-form-wrap .tutor-option-field-row{padding:10px 0}.lesson-modal-form-wrap .tutor-option-field-row:last-child{border-bottom:none}.lesson-modal-form-wrap .tutor-option-field-row textarea,.lesson-modal-form-wrap .tutor-option-field-row input[type="text"],.lesson-modal-form-wrap .tutor-option-field-row input[type="email"],.lesson-modal-form-wrap .tutor-option-field-row input[type="number"],.lesson-modal-form-wrap .tutor-option-field-row input[type="password"]{line-height:40px;padding:5px 0;text-indent:15px;background:#fff;display:inline-block;border:1px solid #dedede;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;width:100%;color:#393c40;font-size:14px;-webkit-transition:300ms;transition:300ms}.lesson-modal-form-wrap .tutor-option-field-row textarea{line-height:26px;min-height:150px;text-indent:0;padding:15px}.lesson-modal-form-wrap .tutor-option-field-row textarea:focus,.lesson-modal-form-wrap .tutor-option-field-row input[type="text"]:focus,.lesson-modal-form-wrap .tutor-option-field-row input[type="email"]:focus,.lesson-modal-form-wrap .tutor-option-field-row input[type="number"]:focus,.lesson-modal-form-wrap .tutor-option-field-row input[type="password"]:focus{border-color:var(--tutor-primary-color)}.lesson-modal-form-wrap .tutor-option-field-row select{height:40px}.lesson-modal-form-wrap .tutor-lesson-attachments-metabox{margin-top:0}.assignment-modal-form-wrap,.lesson-modal-form-wrap{padding:20px;padding-bottom:48px}.tutor-lesson-modal-wrap .modal-footer{padding:10px 20px;background-color:#fff;width:100%;position:sticky;bottom:0;position:-webkit-sticky}.tutor-option-field .tutor-lesson-edit-feature-img{width:100px;position:relative}.tutor-option-field .tutor-lesson-edit-feature-img img{width:100%;height:auto}a.tutor-lesson-thumbnail-delete-btn{position:absolute;top:0;right:0;color:red;background:#fff;padding:3px 5px;border-radius:5px}.tutor-get-pro-text{color:#e02424}.updating-icon:before{font-family:"tutor";margin-right:5px;content:"\e91d";-webkit-animation:spin 1s steps(8) infinite;animation:spin 1s steps(8) infinite;display:inline-block}.tutor-notice-warning{background-color:#fcf8e3;border-color:#faebcc;padding:20px;margin-bottom:10px}.withdraw-method-data-row{display:-webkit-box;display:-ms-flexbox;display:flex}span.withdraw-method-label{width:140px}.withdraw-method-value{margin-left:3px}.withdraw-status.withdraw-status-approved{background:var(--tutor-success-button-color);color:#fff;padding:5px 10px}.withdraw-status.withdraw-status-pending{background:#f0efef;color:#666666;padding:5px 10px}.withdraw-status.withdraw-status-rejected{background:#ff3842;color:#fff;padding:5px 10px}.withdraw-list-row-actions{font-weight:bold}.withdraw-list-row-actions .approved a{color:var(--tutor-success-button-color)}.withdraw-list-row-actions .rejected a{color:#ff3842}.submitted-assignment-wrap{background-color:#ffffff;padding:30px;margin-left:-20px}.tutor-individual-attachment-file{margin-bottom:20px}.tutor-individual-attachment-file p{margin:0 !important}.tnotice{text-align:left;padding:10px 0;background-color:#fff;border-radius:4px;position:relative;margin-bottom:10px}.tnotice:before{content:"";position:absolute;top:0;left:0;width:4px;height:100%;border-top-left-radius:4px;border-bottom-left-radius:4px}.tnotice__icon{position:absolute;top:50%;left:22px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:14px;height:14px;padding:7px;border-radius:50%;display:inline-block;color:#fff;text-align:center;line-height:11px}.tnotice__type{color:#3e3e3e;font-weight:700;margin-top:0;margin-bottom:0}.tnotice__message{font-size:14px;margin-top:0;margin-bottom:0;color:#878787}.tnotice__content{padding-left:70px;padding-right:60px}.tnotice__close{position:absolute;right:22px;top:50%;width:14px;cursor:pointer;height:14px;fill:#878787;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tnotice--success .tnotice__icon{background-color:#2bde3f}.tnotice--success:before{background-color:#2bde3f}.tnotice--blue .tnotice__icon{background-color:#1d72f3}.tnotice--blue:before{background-color:#1d72f3}.tnotice--danger .tnotice__icon{background-color:#f31e1c}.tnotice--danger:before{background-color:#f31e1c}.tutor-quiz-attempt-history td:last-child{text-align:center}.tutor-quiz-attempt-history td:last-child a{display:block;padding:10px}.attempt-review-title{font-size:18px;color:var(--tutor-text-size);font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:60px}.attempt-review-title i{margin-right:12px;color:var(--tutor-primary-color)}.tutor-quiz-attempt-info-row .attempt-view-bottom,.tutor-quiz-attempt-info-row .attempt-view-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col,.tutor-quiz-attempt-info-row .attempt-view-top .attempt-info-col{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:30%}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass,.tutor-quiz-attempt-info-row .attempt-info-content span.result-fail{background:#df3247;font-size:14px;font-weight:400;color:#fff;padding:1px 4px;margin-right:13px;border-radius:2px}.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-info-row .attempt-info-content h4,.tutor-quiz-attempt-info-row .attempt-info-content h5{font-size:14px;line-height:25px;margin:0;color:#7a7f85;font-weight:400}.tutor-quiz-attempt-info-row .attempt-info-content h4 a,.tutor-quiz-attempt-info-row .attempt-info-content h4{font-weight:700;color:var(--tutor-text-color);margin-top:7px}.tutor-quiz-attempt-info-row .attempt-view-top{padding-bottom:30px;margin-bottom:30px;border-bottom:1px solid #dcdfe5}.tutor-quiz-attempt-info-row .attempt-view-bottom{margin-bottom:60px}.attempt-user-details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attempt-user-details .attempt-user-avatar{padding-right:20px}.attempt-user-details .attempt-user-avatar img{display:block;width:70px;height:70px;border-radius:50%}.attempt-user-details .attempt-info-content h4{font-size:18px}.attempt-review-notice-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:60px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.attempt-review-notice-wrap p{margin:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attempt-review-notice-wrap p.attempt-review-notice i{font-size:16px;color:#f5c813;margin-right:9px}.attempt-review-notice-wrap p.attempt-review-at>span{color:var(--tutor-primary-color);margin-right:7px;font-size:16px}.attempt-review-notice-wrap p>strong{font-weight:400;margin-right:5px}.quiz-attempt-answers-wrap table th{background:#fcfcfc;font-size:12px;text-transform:inherit}.quiz-attempt-answers-wrap table td{background-color:#fff}.quiz-attempt-answers-wrap table th,.quiz-attempt-answers-wrap table td{padding:17px 20px !important;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;vertical-align:middle;text-align:left}.quiz-attempt-answers-wrap table th p,.quiz-attempt-answers-wrap table td p{margin:0}.quiz-attempt-answers-wrap table .quiz-manual-review-action{border:1px solid #d4dadb;color:#d4dadb;height:30px;width:30px;border-radius:2px;font-size:13px;display:inline-block;text-align:center;line-height:30px;-webkit-transition:300ms;transition:300ms;text-decoration:none}.quiz-attempt-answers-wrap table .quiz-manual-review-action:first-child:hover{border:1px solid var(--tutor-success-button-color);color:var(--tutor-success-button-color)}.quiz-attempt-answers-wrap table .quiz-manual-review-action:last-child:hover{border:1px solid #df3247;color:#df3247}.quiz-attempt-answers-wrap table .quiz-manual-review-action:not(:last-child){margin-right:17px}.quiz-attempt-answers-wrap table .quiz-incorrect-answer-text i,.quiz-attempt-answers-wrap table .quiz-correct-answer-text i{font-size:12px;height:20px;width:20px;text-align:center;line-height:20px;background:var(--tutor-success-button-color);color:#fff;display:inline-block;border-radius:2px;margin-right:6px}.quiz-attempt-answers-wrap table .quiz-incorrect-answer-text i{background:#df3247;font-size:10px}.answer-image-matched-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.answer-image-matched-wrap .image-matching-item{margin:0 5px;max-width:70px}.answer-image-matched-wrap .image-matching-item .dragged-caption{font-size:14px;margin-top:4px}.tutor-quiz-attempt-review-wrap{padding:20px;background:#ffffff;margin-right:15px;margin-top:15px}.tutor-quiz-attempt-review-wrap table{width:100%;border-collapse:collapse}.tutor-quiz-attempt-review-wrap img{max-width:100%}#tutor-update .dummy{display:none}#tutor-update .tutor_plugin_update_notice{padding:20px 0 !important}#tutor-update .tutor_plugin_update_notice{font-weight:400;background:#fff8e5 !important;border-left:4px solid #ffb900;border-top:1px solid #ffb900;padding:9px 0 9px 12px !important;margin:0 -12px 0 -16px !important}#tutor-update .tutor_plugin_update_notice .version::before{content:"\f348";display:inline-block;font:400 18px/1 dashicons;speak:none;margin:0 8px 0 -2px;vertical-align:top}#tutor-metabox-course-settings-tabs{background-color:#fff;border:1px solid #e5e5e5;margin:1em 0}.inside #tutor-metabox-course-settings-tabs{border:0;margin:0}.settings-tabs-heading{padding:1em;border-bottom:1px solid #e5e5e5}.settings-tabs-heading h3{font-size:14px;margin:0;line-height:1.4}.course-settings-tabs-container{display:-webkit-box;display:-ms-flexbox;display:flex}.course-settings-tabs-container .settings-tabs-navs-wrap{-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;background:#f5f5f5}.settings-tabs-navs-wrap .settings-tabs-navs{margin:0}.settings-tabs-navs-wrap .settings-tabs-navs li{margin:0}.settings-tabs-navs-wrap .settings-tabs-navs li a{display:block;padding-top:10px;padding-bottom:10px;padding-left:15px;padding-right:15px;color:#23282d;text-decoration:none;background:#f5f5f5;text-transform:capitalize;border-bottom:1px solid #e5e5e5;border-left:3px solid transparent}.settings-tabs-navs-wrap .settings-tabs-navs li:last-child a{border-bottom:none}.settings-tabs-navs-wrap .settings-tabs-navs li a:focus{-webkit-box-shadow:none;box-shadow:none}.settings-tabs-navs-wrap .settings-tabs-navs li.active a{background-color:#ffffff;border-bottom:1px solid #e5e5e5;color:var(--tutor-primary-color);border-left:3px solid var(--tutor-primary-color)}.course-settings-tabs-container .settings-tabs-container{padding:1em;-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-field-radio p{margin-top:0}.lesson-modal-form-wrap .lesson-content-drip-wrap{padding:10px;border:1px solid #e4e4e4}.lesson-modal-form-wrap .lesson-content-drip-wrap h3{margin:0 0 10px 0}.select2-dropdown.increasezindex{z-index:9999999999999}/*!
2
+ * jQuery UI Datepicker 1.9.0
3
+ * http://jqueryui.com
4
+ *
5
+ * Copyright 2012 jQuery Foundation and other contributors
6
+ * Released under the MIT license.
7
+ * http://jquery.org/license
8
+ *
9
+ * http://docs.jquery.com/UI/Datepicker#theming
10
+ */.ui-datepicker{background-color:#fff;border:1px solid #eeeeee;display:none;margin-top:4px;padding:5px;width:180px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2a6496;-webkit-transition:color 0.1s ease-in-out;transition:color 0.1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{cursor:default;font-family:"tutor";-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;height:20px;line-height:1;margin-top:2px;width:30px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:right}.ui-datepicker .ui-datepicker-prev:before{content:"\e921"}.ui-datepicker .ui-datepicker-next:before{content:"\e903"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar th,.ui-datepicker .ui-datepicker-calendar td{text-align:center;padding:0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color 0.1s ease-in-out, color 0.1s ease-in-out;transition:background-color 0.1s ease-in-out, color 0.1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.ui-datepicker-calendar .ui-state-default{border:none;background:none}.ui-datepicker-calendar .ui-state-default.ui-state-highlight{background:#eeeeee;padding:3px;display:block}h2.tutor-page-heading{background-color:#ffffff;padding:30px !important;margin:0 !important;border-bottom:1px solid #ecedef}.tutor-report-left-menus{background-color:#fcfcfc;margin-bottom:50px}.tutor-report-left-menus ul{margin:0}.report-main-wrap h3{font-weight:300;font-size:20px}.tutor-report-left-menus ul li{display:inline-block;margin:0}.tutor-report-left-menus ul li a{text-decoration:none;line-height:60px;display:block;padding:0 15px;color:#393c40}.tutor-report-left-menus ul li a:focus{outline:none !important;border:0;-webkit-box-shadow:none;box-shadow:none}.tutor-report-left-menus ul li.active a{color:#1e55dd;border-bottom:3px solid #3057d5}.tutor-report-content{-webkit-box-flex:1;-ms-flex:1;flex:1}.report-top-sub-menu{margin:0;-webkit-box-flex:1;-ms-flex:1;flex:1}.report-top-sub-menu a{text-decoration:none;padding:10px 15px;border:1px solid #d7dadf;color:#aaaeb3;border-radius:3px;display:inline-block}.report-top-sub-menu a.active{background-color:#3057d5;color:#ffffff;border:1px solid #3057d5}.top-course-enrolled{margin-top:20px;margin-bottom:20px}.top-course-enrolled h1,.top-course-enrolled h2,.top-course-enrolled h3{margin:30px 0}.report-stats{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.report-stat-box{padding:0;margin-bottom:30px;width:25%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}.report-stat-box-body{background-color:#ffffff;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;margin-right:30px}.report-stat-box:nth-child(4n) .report-stat-box-body{margin-right:0}.report-stat-box .box-icon{font-size:50px;line-height:46px;padding:13px;color:#3057d5}.report-stat-box h4,.report-stat-box p{margin:5px 0}.report-stat-box .box-stats-text h3,.report-stat-box .box-stats-text p{margin:5px 0}.report-stat-box .box-stats-text{padding:12px 0}.report-stat-box .box-stats-text h3{font-size:20px;font-weight:300}.report-stat-box .box-stats-text p{color:#888b90}.box-padding{padding:30px}.box-padding h3{margin-top:0}.box-bg-green{background-color:#00d611;color:#ffffff}.box-bg-primary{background-color:#3057d5;color:#ffffff}.box-bg-light{background-color:#eeeeee;color:#555555}.box-bg-warning{background-color:#eea504;color:#ffffff}.box-bg-dark{background-color:#333333;color:#ffffff}.box-bg-danger{background-color:#ff000c;color:#ffffff}.box-bg-pink{background-color:#ff00da;color:#ffffff}.box-bg-violate{background-color:#9c25ea;color:#ffffff}.tutor-report-overview-section{display:-webkit-box;display:-ms-flexbox;display:flex;margin:20px 0}.overview-section-col6{width:50%}.overview-section-col6{margin-right:1%;margin-left:1%}.overview-section-col6:first-child{margin-left:0}.overview-section-col6:last-child{margin-right:0}.last-revews-wrap{width:100%}table.tutor-report-table{border:none;-webkit-box-shadow:none;box-shadow:none}.tutor-report-table th{background-color:#fcfcfc;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px;color:#878a8f}.tutor-report-table td{border-bottom:1px solid #eaeaea;padding:20px}.tutor-report-table td img.avatar{float:left;margin-right:5px}.tutor-icon-star-full,.tutor-icon-star-line{color:#ffd700}.tutor-delete-link{color:#ff282a !important}.tutor-pagination{margin:50px 0}.tutor-pagination .page-numbers{display:inline-block;padding:5px 10px;margin:0 2px 0 0;border:1px solid #eee;line-height:1;text-decoration:none;font-weight:600}.tutor-pagination .page-numbers.current,.tutor-pagination a.page-numbers:hover{background:#f9f9f9}.report-date-range-form{display:-webkit-box;display:-ms-flexbox;display:flex}.date-range-input{position:relative;margin-right:10px}.date-range-input:last-child{margin-right:0}.date-range-input input{border:1px solid #d7dadf;-webkit-box-shadow:none;box-shadow:none;line-height:32px;margin:0;padding-right:30px}.date-range-input i.tutor-icon-calendar{position:absolute;right:10px;top:13px}.date-range-input button{background-color:#3057d5;color:#ffffff;border:none;line-height:39px;padding:0 15px}.tutor-date-range-filter-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin:30px 0}.report-download-csv-icon{float:right}.report-download-csv-icon a{text-decoration:none}.tutor-alert{border:1px solid #f8a201;background:#fffff2;position:relative;border-radius:3px;padding:20px 25px 20px 95px;color:#a86d00;margin-bottom:10px}.tutor-alert.tutor-alert-danger{border:1px solid #fe1a1a;background:#fff2f2;color:#a50000}.tutor-alert.tutor-alert-success{border:1px solid #69bc0d;background:#f6fff2;color:#3d7400}.tutor-alert.tutor-alert-info{border:1px solid #13aaf6;background:#eaf8ff;color:#0586c7}.tutor-alert::before{content:"\e95f";position:absolute;font-size:30px;font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:70px;top:0;left:0;text-align:center;background:#f8a201;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#ffffff}.tutor-alert.tutor-alert-danger::before{content:"\e913";background:#fe1a1a}.tutor-alert.tutor-alert-success::before{content:"\e90f";background:#69bc0d}.tutor-alert.tutor-alert-info::before{content:"\e96c";background:#13aaf6}.tutor-alert-content p{margin:0}table.tutor-table{border-spacing:0;width:100%;border-collapse:collapse;border:1px solid #dcdfe5}table.tutor-table td,table.tutor-table th{padding:1em 1.41575em;text-align:left;vertical-align:top;border-bottom:1px solid #dcdfe5}table.tutor-table td p:last-child,table.tutor-table th p:last-child{margin-bottom:0}table.tutor-table th{font-weight:600}table.tutor-table thead th{padding:1.41575em;vertical-align:middle}table.tutor-table tbody h2{font-size:1em;letter-spacing:normal;font-weight:normal}table.tutor-table tbody h2 a{font-weight:normal}table.tutor-table th{background-color:#fafbfc}table.tutor-table tbody td{background-color:#ffffff}table.tutor-table tbody tr:nth-child(2n) td{background-color:#fafbfc}table.tutor-table a{text-decoration:none}table.tutor-table p{margin:0}.tutor-nav-tab-wrapper{margin-bottom:10px}.nav-tab-item{float:left;border:1px solid #ccc;border-bottom:none;margin-left:0.5em;padding:10px 14px;font-size:14px;line-height:1.33;font-weight:600;background:#e5e5e5;color:#555;text-decoration:none;white-space:nowrap}.nav-tab-item:first-child{margin-left:0}.nav-tab-item:focus,.nav-tab-item:hover{background-color:#fff;color:#444}.nav-tab-item-active,.nav-tab-item:focus:active{-webkit-box-shadow:none;box-shadow:none}.nav-tab-item-active{margin-bottom:-1px;color:#444}.nav-tab-item-active,.nav-tab-item-active:focus,.nav-tab-item-active:focus:active,.nav-tab-item-active:hover{border-bottom:1px solid #f1f1f1;background:#f1f1f1;color:#000}.tutor-quiz-feedback-mode{position:relative}.tutor-quiz-feedback-mode:not(:last-child){margin-right:16px}.tutor-quiz-feedback-mode-option{border-radius:3px;border:solid 1px #dedede;padding:15px 15px 15px 40px;-webkit-transition:0.2s ease;transition:0.2s ease;max-width:210px}.tutor-quiz-feedback-option-option-title{margin-bottom:10px !important}.tutor-quiz-feedback-option-subtitle{margin:0 !important;font-size:12px;line-height:1.67;color:#505469}.tutor-quiz-feedback-option-subtitle a{font-weight:500;color:inherit;text-decoration:underline !important}.tutor-quiz-feedback-mode input[type="radio"]{display:none}.tutor-quiz-feedback-mode .radio-icon{position:absolute;top:16px;left:16px;z-index:1;margin:0;width:16px;height:16px;border-radius:50%;-webkit-box-shadow:inset 0 0 0 2px #dcdce1;box-shadow:inset 0 0 0 2px #dcdce1;-webkit-transition:0.2s ease;transition:0.2s ease}.tutor-quiz-feedback-mode input[type="radio"]:checked+.radio-icon{-webkit-box-shadow:inset 0 0 0 5px #3e64de;box-shadow:inset 0 0 0 5px #3e64de;background:#fff}.tutor-quiz-feedback-mode input[type="radio"]:checked ~ .tutor-quiz-feedback-mode-option{background:#fff}#tutor-course-topics h2,#tutor-instructors h2{display:block}#tutor-course-topics .tutor-course-builder-header.has-postbox-header{top:-56px;right:96px}#settings-tab-general .tutor-option-field-row input[type="number"]{width:185px}.instructor-layout-templates-fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.instructor-layout-template{max-width:150px;padding:5px;margin:3px}.instructor-layout-template img{max-width:100%;height:auto;display:block;border:6px solid transparent;-webkit-transition:border-color 400ms;transition:border-color 400ms}.instructor-layout-template.selected-template img,.instructor-layout-template:hover img{border:6px solid #3057d6}.tutor-announcement-content-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-announcement-buttons :nth-child(1){margin-right:20px}.tutor-announcements-header{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-announcement-date,.tutor-announcement-content>span{font-weight:bold !important}.tutor-announcement-date{width:100px !important}.tutor-announcements-modal-wrap .tutor-modal-content{max-width:660px !important}.tutor-announcements-modal-wrap button{padding:10px 20px !important}.tutor-announcements-update-form .tutor-option-field-row,.tutor-announcements-form .tutor-option-field-row{padding:10px 18px 10px 18px}.tutor-announcements-update-form .tutor-option-field-row input[type=text],.tutor-announcements-update-form textarea,.tutor-announcements-form .tutor-option-field-row input[type=text],.tutor-announcements-form textarea{width:100%;margin-top:8px}.tutor-announcements-form select,.tutor-announcements-update-form select{width:100%;max-width:100% !important;padding:7px 12px;margin-top:8px}.tutor-announcements-update-form .tutor-option-field-row,.tutor-announcements-form .tutor-option-field-row{border:none !important}.tutor-announcements-form .modal-footer button,.tutor-announcements-update-form .modal-footer button{cursor:pointer !important}.tutor-announcements-form .modal-footer,.tutor-announcements-update-form .modal-footer{background-color:#fff !important}.tutor-announcement-close-btn{text-decoration:none;color:#525252}.tutor-announcement-table td{vertical-align:middle !important}.tutor-announcement-content{line-height:10px}.tutor-accouncement-update-modal .modal-header,.tutor-announcement-create-modal .modal-header{padding-right:15px !important}.tutor-accouncement-update-modal .tutor-modal-content,.tutor-announcement-create-modal .tutor-modal-content{border-radius:20px !important}.tutor-admin-search-box-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:45px}.tutor-admin-search-box-container>div:nth-child(1){margin-right:40px;position:relative}.tutor-admin-search-box-container>div:nth-child(1){-webkit-box-flex:2;-ms-flex:2;flex:2}.tutor-admin-search-box-container>div:nth-child(2),.tutor-admin-search-box-container>div:nth-child(3),.tutor-admin-search-box-container>div:nth-child(4){-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5}.tutor-admin-search-box-container>div:not(:last-child){margin-right:40px}.tutor-admin-search-box-container .tutor-report-search-btn{position:absolute;width:40px;height:40px;bottom:0;right:0;border:0;background:transparent;color:#3e64de;font-size:20px;cursor:pointer;outline:none}.tutor-admin-search-box-container>div:nth-child(1) input{padding-right:45px}.tutor-admin-search-box-container input[type="text"],.tutor-admin-search-box-container select{width:100%;height:40px;border-radius:3px;border:solid 1px #dcdce1;background-color:#ffffff;padding:0 14px;-webkit-transition:0.2s;transition:0.2s}.tutor-admin-search-box-container .date-range-input i.tutor-icon-calendar{position:absolute;width:42px;height:40px;right:0;top:0;color:#3e64de;font-size:18px;text-align:center;line-height:40px}.tutor-admin-search-box-container .menu-label{font-size:14px;font-weight:400;color:#737787;margin-bottom:7px}.tutor-admin-search-box-container>div:nth-child(4) input::-webkit-input-placeholder{color:#3f435b;font-size:15px}.tutor-admin-search-box-container>div:nth-child(1) input::-webkit-input-placeholder{font-size:16px;font-weight:400;color:#737787}.tutor-admin-search-box-container input[type="text"]:hover,.tutor-admin-search-box-container input[type="text"]:focus,.tutor-admin-search-box-container select:hover,.tutor-admin-search-box-container select:focus,.tutor-date-range-wrap .date-range-input input:hover,.tutor-date-range-wrap .date-range-input input:focus{border-color:var(--tutor-primary-color) !important;-webkit-box-shadow:none !important;box-shadow:none !important;outline:none !important}@media (max-width: 767px){.tutor-admin-search-box-container{display:grid;grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));grid-gap:15px}.tutor-admin-search-box-container>div{margin-right:0 !important}}.tutor-list-wrap{border-radius:3px;background-color:#ffffff;margin-top:40px}.tutor-list-wrap .tutor-list-header,.tutor-list-wrap .tutor-list-footer{padding:30px}.tutor-list-wrap .heading{font-size:20px;line-height:1.5;color:#3f435b}.tutor-list-wrap .tutor-list-table{width:100%;text-align:left;border-collapse:collapse}.tutor-list-wrap .tutor-list-table .table-toggle{display:none}.tutor-list-wrap .tutor-list-table .table-toggle.open{display:table-row}[class^="tutor-report-"] .tutor-list-table tbody td.detail{vertical-align:top}.tutor-list-wrap .tutor-list-table thead,.tutor-list-wrap .tutor-list-table tr:first-child th{background-color:#f7f7f9;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea}.tutor-list-wrap .tutor-list-table th{font-size:12px;font-weight:400;line-height:1.75;letter-spacing:0.7px;color:#737787;text-transform:uppercase}.tutor-list-wrap .tutor-list-table td,.tutor-list-wrap .tutor-list-table td p{font-size:14px;font-weight:300;line-height:1.75;color:#3f435b}.report-course-list-wrap .tutor-list-table th i{margin-left:3px}.tutor-list-wrap .tutor-list-table tr th,.tutor-list-wrap .tutor-list-table tr td{padding:15px 20px}.tutor-list-wrap .tutor-list-header,.tutor-list-wrap .tutor-list-table th:last-child,.tutor-list-wrap .tutor-list-table td:last-child,.tutor-report-course-list .tutor-list-footer{padding-right:36px}.tutor-list-wrap .tutor-list-header,.tutor-list-wrap .tutor-list-table th:first-child,.tutor-list-wrap .tutor-list-table td:first-child{padding-left:30px}.tutor-list-wrap .tutor-list-table tbody td{padding:25px 20px;vertical-align:top}.tutor-list-wrap .tutor-list-table tbody tr:not(:last-child){border-bottom:1px solid #dcdce1}.tutor-list-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid #dcdce1}.tutor-list-footer .tutor-report-count{font-size:14px;line-height:1.71;color:#737787}.tutor-list-footer .tutor-report-count strong{color:#3f435b}.tutor-list-footer .page-numbers.current{border-color:#3e64de;background:transparent}.tutor-list-footer .page-numbers{border-radius:4px;border:solid 1px #dcdce1;padding:11px 14px;font-size:14px;font-weight:400;color:#737787;background:#fff;outline:none;-webkit-transition:0.2s;transition:0.2s}.tutor-list-footer .page-numbers:hover,.tutor-list-footer .page-numbers:focus{border-color:#3e64de;background:#3e64de !important;color:#fff;-webkit-box-shadow:none;box-shadow:none}.tutor-list-footer .page-numbers.current:hover,.tutor-list-footer .page-numbers.current:focus{background:transparent !important;color:inherit}.tutor-list-footer .tutor-pagination{margin:0}.tutor-list-table td .details-button a,.tutor-list-table .link-icon{font-size:16px;color:#b9bac3;-webkit-transition:0.2s;transition:0.2s}.tutor-list-table td .details-button a:first-child{font-size:12px;font-weight:500;line-height:1.75;text-align:center;color:#737787;border-radius:3px;border:solid 1px #dcdce1;padding:5px 11px;margin-right:15px;text-decoration:none}.tutor-list-table td .details-button{text-align:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-list-table .course-link a{color:inherit;text-decoration:none}.tutor-list-table .tutor-icon-detail-link,.profile-table .tutor-icon-detail-link{font-size:14px}@media (max-width: 991px){.tutor-list-wrap{overflow-x:scroll}}.report-course-list-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.report-course-list-wrap .tutor-list-table td{font-size:16px}.report-course-list-wrap .tutor-list-table td:nth-child(2){font-size:14px;font-weight:400}.report-course-list-wrap .tutor-list-table td:last-child{text-align:right}.report-course-list-wrap .tutor-list-table th:nth-child(2),.report-course-list-wrap .tutor-list-table td:nth-child(2){width:40%}.report-course-list-wrap .tutor-list-table .total{color:#9698a5}.report-course-list-wrap .tutor-list-table [class$="-link"]{color:#b9bac3}.report-course-list-wrap .tutor-list-table a:hover{color:#3057d5}.report-course-list-wrap .tutor-list-table .course-link{font-size:12px;margin-left:5px}.tutor-list-table .course-percentage{width:90px;height:4px;border-radius:2px;background-color:#dcdce1;position:relative}.tutor-list-table .course-percentage::before{content:"";position:absolute;width:var(--percent);height:4px;border-radius:2px;background-color:#3e64de}.report-course-list-wrap>.tutor-list-table tbody td:not(.detail):nth-last-child(3){vertical-align:middle}.report-course-list-wrap .tutor-list-table .details-link{font-size:21px}.tutor-report-content a{-webkit-transition:0.2s ease;transition:0.2s ease}.tutor-report-content a:hover,.tutor-report-content a:focus,.report-student-profile .profile-table a:hover{color:#3057d5}@media (max-width: 991px){.report-course-list-wrap .tutor-list-table th:nth-child(n+7),.report-course-list-wrap .tutor-list-table td:nth-child(n+7){display:none}}.report-course-list-header .status span,.report-course-list-wrap .detail .status span{font-size:14px;font-weight:300;line-height:1;color:#737787;margin-left:25px;padding-left:14px;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.report-course-list-header .status span::before,.report-course-list-wrap .detail .status span::before{content:"";position:absolute;width:8px;height:8px;background:#b9bac3;border-radius:50%;left:0}.report-course-list-wrap .detail .status span{margin-left:0;padding-left:16px}.report-course-list-wrap .detail .status span::before{width:6px;height:6px}.report-course-list-header .status .running::before,.report-course-list-wrap .detail .status .running::before{background-color:#3e64de}.report-course-list-header .status .complete::before,.report-course-list-wrap .detail .status .complete::before{background-color:#7bbc30}.report-course-list-wrap .detail .heading{font-size:16px;line-height:1.75;color:#3f435b;margin-bottom:10px}.report-course-list-wrap .detail{padding:unset !important;text-align:left !important;font-size:14px !important;font-weight:400 !important}.report-course-list-wrap .tutor-list-table td>table{width:100%}.report-course-list .course-list-details{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;grid-gap:20px;grid-template-columns:repeat(3, 1fr)}.tutor-list-wrap .tutor-list-table a:hover,.tutor-list-wrap .tutor-list-table a:focus{color:#3e64de}.tutor-list-wrap .no-data-found{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 0 30px 0}.tutor-toast-parent{position:fixed;right:25px;bottom:50px;right:50px;left:auto;max-height:400px;width:350px;overflow-x:hidden;overflow-y:auto;background:transparent}.tutor-toast-parent:empty{display:none}.tutor-toast-parent>div{background:white;padding:10px;margin:15px;border-radius:15px;z-index:99999999;-webkit-box-shadow:3px 3px 10px rgba(0,0,0,0.363);box-shadow:3px 3px 10px rgba(0,0,0,0.363);border:1px solid #E8E8E8;background:white;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-ms-flex-line-pack:center;align-content:center;-o-align-content:center;-ms-align-content:center;-moz-align-content:center;-webkit-align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center}.tutor-toast-parent>div>div{padding:8px}.tutor-toast-parent>div>div:nth-child(1),.tutor-toast-parent>div>div:nth-child(3){-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}.tutor-toast-parent>div>div:nth-child(2){-webkit-box-flex:1;flex:1;-o-flex:1;-ms-flex:1;-moz-flex:1;-webkit-flex:1}.tutor-toast-parent>div img{width:100%;height:auto}.tutor-toast-parent>div b{font-weight:600;display:block}.tutor-toast-parent>div span{color:#333}.tutor-toast-parent>div i{cursor:pointer;font-size:14px}body.rtl .tutor-toast-parent{right:auto;left:50px}
11
+
12
+ /*# sourceMappingURL=tutor-admin.min.css.map */
assets/css/tutor-front.css CHANGED
@@ -8541,37 +8541,141 @@ label[for="tutor_withdraw_amount"] {
8541
  font-style: italic;
8542
  }
8543
 
8544
- .tutor-dashboard-assignment-table tr th, .tutor-dashboard-assignment-table tr td {
8545
- border: 1px solid #DCDFE5;
8546
- vertical-align: middle;
8547
- padding: 20px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8548
  }
8549
 
8550
- .tutor-dashboard-assignment-table tr th:not(:first-child), .tutor-dashboard-assignment-table tr td:not(:first-child) {
 
 
 
 
 
 
 
 
 
 
8551
  text-align: center;
8552
  }
8553
 
8554
- .tutor-dashboard-assignment-table tr h5 {
8555
- margin: 0;
8556
- font-size: 16px;
8557
- line-height: 18px;
8558
- font-weight: 700;
8559
- color: var(--tutor-text-color);
8560
  }
8561
 
8562
- .tutor-dashboard-assignment-table tr h5:not(:last-child) {
8563
- margin-bottom: 7px;
 
 
 
 
 
 
 
8564
  }
8565
 
8566
- .tutor-dashboard-assignment-table tr a {
 
 
 
 
 
 
 
 
8567
  font-weight: 400;
8568
  color: var(--tutor-text-color);
8569
  }
8570
 
8571
- .tutor-dashboard-assignment-table tr a:hover {
8572
- color: var(--tutor-primary-color);
8573
- -webkit-transition: 300ms;
8574
- transition: 300ms;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8575
  }
8576
 
8577
  .tutor-announcement-content-wrap {
@@ -8615,36 +8719,74 @@ label[for="tutor_withdraw_amount"] {
8615
  flex-basis: 30%;
8616
  }
8617
 
8618
- .tutor-dashboard-announcement-table tr {
8619
- border: 1px solid #dcdbdc;
8620
  border-collapse: collapse;
 
8621
  }
8622
 
8623
- .tutor-dashboard-announcement-table th,
8624
- .tutor-dashboard-announcement-table td {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8625
  border: 0;
 
 
 
 
 
 
8626
  }
8627
 
8628
- .tutor-dashboard-announcement-table th:last-child,
8629
- .tutor-dashboard-announcement-table td:last-child {
 
 
 
 
8630
  padding-right: 30px;
8631
  }
8632
 
8633
  .tutor-dashboard-announcement-table th {
8634
- padding: 15px 40px;
8635
  background-color: #f3f3f3;
8636
  }
8637
 
8638
  .tutor-dashboard-announcement-table td {
8639
- padding: 30px 40px;
 
 
 
 
 
 
 
 
8640
  }
8641
 
8642
  .tutor-announcement-datepicker {
8643
  position: relative;
8644
  }
8645
 
8646
- .tutor-announcement-datepicker input,
8647
- .tutor-announcement-datepicker i {
8648
  position: absolute;
8649
  }
8650
 
@@ -8670,11 +8812,12 @@ label[for="tutor_withdraw_amount"] {
8670
  .tutor-dropdown {
8671
  position: relative;
8672
  cursor: pointer;
8673
- margin-left: 30px;
8674
  }
8675
 
8676
  .tutor-dropdown .tutor-icon-action {
8677
  padding: 5px 10px;
 
8678
  }
8679
 
8680
  .tutor-dropdown .tutor-icon-action:hover {
@@ -8705,7 +8848,7 @@ label[for="tutor_withdraw_amount"] {
8705
  width: 100%;
8706
  position: absolute;
8707
  top: 40px;
8708
- right: -3px;
8709
  display: none;
8710
  border-radius: 5px;
8711
  padding: 0;
@@ -8784,7 +8927,7 @@ label[for="tutor_withdraw_amount"] {
8784
  }
8785
 
8786
  .modal-container.tutor-announcement-details-container {
8787
- padding: 20px 70px !important;
8788
  }
8789
 
8790
  .balance-info .tutor-announcement-big-icon {
@@ -8822,7 +8965,7 @@ label[for="tutor_withdraw_amount"] {
8822
  font-size: 16px;
8823
  color: #7a7a7a;
8824
  margin-top: 15px;
8825
- margin-bottom: 25px;
8826
  }
8827
 
8828
  .tutor-detail-course-content-wrap {
8541
  font-style: italic;
8542
  }
8543
 
8544
+ .submitted-assignment-title a, .submitted-assignment-title h3 {
8545
+ margin-bottom: 20px;
8546
+ }
8547
+
8548
+ .submitted-assignments-sorting-wrap {
8549
+ margin-bottom: 30px;
8550
+ }
8551
+
8552
+ .submitted-assignments-sorting-wrap .tutor-form-group {
8553
+ display: -webkit-box;
8554
+ display: -ms-flexbox;
8555
+ display: flex;
8556
+ -webkit-box-align: center;
8557
+ -ms-flex-align: center;
8558
+ align-items: center;
8559
+ -ms-flex-preferred-size: 35% !important;
8560
+ flex-basis: 35% !important;
8561
+ }
8562
+
8563
+ .submitted-assignments-sorting-wrap .tutor-form-group label, .submitted-assignments-sorting-wrap .tutor-form-group select {
8564
+ margin-bottom: 0;
8565
+ }
8566
+
8567
+ .submitted-assignments-sorting-wrap .tutor-form-group label {
8568
+ -ms-flex-preferred-size: 35%;
8569
+ flex-basis: 35%;
8570
+ }
8571
+
8572
+ .submitted-assignments-sorting-wrap .tutor-form-group select {
8573
+ height: 40px;
8574
+ }
8575
+
8576
+ .tutor-dashboard-assignment-table .student-column {
8577
+ display: -webkit-box;
8578
+ display: -ms-flexbox;
8579
+ display: flex;
8580
+ -webkit-box-align: center;
8581
+ -ms-flex-align: center;
8582
+ align-items: center;
8583
+ }
8584
+
8585
+ .tutor-dashboard-assignment-table .student-column .student-avatar {
8586
+ width: 34px;
8587
+ margin-right: 10px;
8588
  }
8589
 
8590
+ .tutor-dashboard-assignment-table .student-column .student-avatar img {
8591
+ border-radius: 50%;
8592
+ }
8593
+
8594
+ .tutor-dashboard-assignment-table .student-column .student-avatar span {
8595
+ display: block;
8596
+ width: 34px;
8597
+ height: 34px;
8598
+ line-height: 34px;
8599
+ border-radius: 50%;
8600
+ font-size: 12px;
8601
  text-align: center;
8602
  }
8603
 
8604
+ .tutor-dashboard-assignment-table .student-column .student-details h4, .tutor-dashboard-assignment-table .student-column .student-details p {
8605
+ line-height: 1.3;
8606
+ margin-bottom: 0;
 
 
 
8607
  }
8608
 
8609
+ .tutor-dashboard-assignment-table span.review-required,
8610
+ .tutor-dashboard-assignment-table span.result-pass,
8611
+ .tutor-dashboard-assignment-table span.result-fail {
8612
+ background: #df3247;
8613
+ font-size: 14px;
8614
+ font-weight: bold;
8615
+ color: #fff;
8616
+ padding: 4px 11px;
8617
+ border-radius: 2px;
8618
  }
8619
 
8620
+ .tutor-dashboard-assignment-table span.result-pass {
8621
+ background: var(--tutor-success-button-color);
8622
+ }
8623
+
8624
+ .tutor-dashboard-assignment-table span.review-required {
8625
+ background: #f5b30d;
8626
+ }
8627
+
8628
+ .tutor-assignment-review-header p span {
8629
  font-weight: 400;
8630
  color: var(--tutor-text-color);
8631
  }
8632
 
8633
+ .tutor-assignment-submitted-page {
8634
+ border-bottom: none;
8635
+ }
8636
+
8637
+ .tutor-assignment-submitted-page .assignment-info {
8638
+ display: -webkit-box;
8639
+ display: -ms-flexbox;
8640
+ display: flex;
8641
+ -webkit-box-align: center;
8642
+ -ms-flex-align: center;
8643
+ align-items: center;
8644
+ }
8645
+
8646
+ .tutor-assignment-submitted-page .assignment-info p {
8647
+ margin-right: 15px;
8648
+ }
8649
+
8650
+ .tutor-assignment-submitted-page h3 {
8651
+ margin: 5px 0;
8652
+ }
8653
+
8654
+ .tutor-dashboard-assignment-submitted-content {
8655
+ margin-top: 30px;
8656
+ margin-bottom: 50px;
8657
+ }
8658
+
8659
+ .tutor-dashboard-assignment-review .tutor-assignment-evaluate-row {
8660
+ margin-bottom: 30px;
8661
+ }
8662
+
8663
+ .tutor-dashboard-assignment-review .tutor-assignment-evaluate-row .input-mark {
8664
+ display: -webkit-box;
8665
+ display: -ms-flexbox;
8666
+ display: flex;
8667
+ -webkit-box-align: center;
8668
+ -ms-flex-align: center;
8669
+ align-items: center;
8670
+ }
8671
+
8672
+ .tutor-dashboard-assignment-review .tutor-assignment-evaluate-row .input-mark input {
8673
+ margin: 0;
8674
+ }
8675
+
8676
+ .tutor-dashboard-assignment-review .tutor-assignment-evaluate-row .input-mark p {
8677
+ margin-top: 0;
8678
+ margin-left: 15px;
8679
  }
8680
 
8681
  .tutor-announcement-content-wrap {
8719
  flex-basis: 30%;
8720
  }
8721
 
8722
+ .tutor-dashboard-announcement-table {
8723
+ border-spacing: 0;
8724
  border-collapse: collapse;
8725
+ border: 1px solid #ccd0d4;
8726
  }
8727
 
8728
+ .tutor-dashboard-announcement-table thead th, .tutor-dashboard-announcement-table thead td {
8729
+ border-bottom: 1px solid #ccd0d4;
8730
+ }
8731
+
8732
+ .tutor-dashboard-announcement-table tbody tr:last-child {
8733
+ border-bottom: 1px solid #ccd0d4;
8734
+ }
8735
+
8736
+ .tutor-dashboard-announcement-table tbody td:first-child {
8737
+ padding-left: 30px;
8738
+ line-height: 24px;
8739
+ }
8740
+
8741
+ .tutor-dashboard-announcement-table tr {
8742
+ background-color: #F3F3F3;
8743
+ }
8744
+
8745
+ .tutor-dashboard-announcement-table tr:nth-child(odd) {
8746
+ background-color: #fff;
8747
+ }
8748
+
8749
+ .tutor-dashboard-announcement-table th, .tutor-dashboard-announcement-table td {
8750
  border: 0;
8751
+ vertical-align: middle;
8752
+ }
8753
+
8754
+ .tutor-dashboard-announcement-table th h4, .tutor-dashboard-announcement-table td h4 {
8755
+ font-size: 16px;
8756
+ margin-bottom: 0;
8757
  }
8758
 
8759
+ .tutor-dashboard-announcement-table th p, .tutor-dashboard-announcement-table th a, .tutor-dashboard-announcement-table td p, .tutor-dashboard-announcement-table td a {
8760
+ font-size: 13px;
8761
+ margin-bottom: 0;
8762
+ }
8763
+
8764
+ .tutor-dashboard-announcement-table th:last-child, .tutor-dashboard-announcement-table td:last-child {
8765
  padding-right: 30px;
8766
  }
8767
 
8768
  .tutor-dashboard-announcement-table th {
8769
+ padding: 15px 0;
8770
  background-color: #f3f3f3;
8771
  }
8772
 
8773
  .tutor-dashboard-announcement-table td {
8774
+ padding: 30px 0;
8775
+ }
8776
+
8777
+ .tutor-dashboard-announcement-table th:first-child {
8778
+ padding-left: 40px;
8779
+ }
8780
+
8781
+ .tutor-dashboard-announcement-table th:last-child {
8782
+ padding-right: 40px;
8783
  }
8784
 
8785
  .tutor-announcement-datepicker {
8786
  position: relative;
8787
  }
8788
 
8789
+ .tutor-announcement-datepicker input, .tutor-announcement-datepicker i {
 
8790
  position: absolute;
8791
  }
8792
 
8812
  .tutor-dropdown {
8813
  position: relative;
8814
  cursor: pointer;
8815
+ margin-left: 20px;
8816
  }
8817
 
8818
  .tutor-dropdown .tutor-icon-action {
8819
  padding: 5px 10px;
8820
+ margin-right: -10px;
8821
  }
8822
 
8823
  .tutor-dropdown .tutor-icon-action:hover {
8848
  width: 100%;
8849
  position: absolute;
8850
  top: 40px;
8851
+ right: -13px;
8852
  display: none;
8853
  border-radius: 5px;
8854
  padding: 0;
8927
  }
8928
 
8929
  .modal-container.tutor-announcement-details-container {
8930
+ padding: 45px 70px !important;
8931
  }
8932
 
8933
  .balance-info .tutor-announcement-big-icon {
8965
  font-size: 16px;
8966
  color: #7a7a7a;
8967
  margin-top: 15px;
8968
+ margin-bottom: 10px;
8969
  }
8970
 
8971
  .tutor-detail-course-content-wrap {
assets/css/tutor-front.min.css CHANGED
@@ -1,3 +1,3 @@
1
- :root{--tutor-primary-color: #1B52D8;--tutor-primary-hover-color: #1b52a9;--tutor-text-color: #4B5981;--tutor-light-color: #B1B8C9;--tutor-primary-button-color: #3E64DE;--tutor-danger-button-color: #F44337;--tutor-success-button-color: #4BD863;--tutor-warning-button-color: #ED9700;--tutor-text-size: 16px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tutor-wrap{color:var(--tutor-text-color)}.tutor-wrap img{max-width:100%;height:auto}.tutor-custom-list-style{list-style:none;margin:0;padding:0}.tutor-custom-list-style li{position:relative;margin-bottom:5px;line-height:30px;padding-left:25px}.tutor-custom-list-style li:before{content:'\e90f';position:absolute;left:0;font-family:'tutor';color:var(--tutor-primary-color)}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:15px;height:15px;top:-6.5px;cursor:pointer}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.tutor-styled-radio>span{position:relative;padding-left:30px;cursor:pointer}.tutor-styled-radio>span::before{content:'';height:18px;width:18px;background:#F1F3F7;border:1px solid #DCDFE5;border-radius:50%;position:absolute;top:50%;margin-top:-9px;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:200ms;transition:200ms}.tutor-styled-radio>input{display:none !important}.tutor-styled-radio>input:checked+span::before{border:5px solid var(--tutor-primary-color)}.tutor-container{padding-left:15px;padding-right:15px;max-width:1140px;margin-right:auto;margin-left:auto;width:100%}.tutor-container.tutor-fluid{max-width:100%}.tutor-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.tutor-col-auto,.tutor-col,.tutor-col-3,.tutor-col-4,.tutor-col-5,.tutor-col-6,.tutor-col-7,.tutor-col-8,.tutor-col-9,.tutor-col-12{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.tutor-col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.tutor-col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.tutor-col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.tutor-col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.tutor-col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.tutor-col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.tutor-col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.tutor-col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666666%;flex:0 0 66.666666%;max-width:66.666666%}.tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.tutor-col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.tutor-align-items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width: 991px){.tutor-col-auto,.tutor-col,.tutor-col-3,.tutor-col-4,.tutor-col-6,.tutor-col-8,.tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.tutor-col-md-100{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (max-width: 767px){.tutor-col-auto,.tutor-col,.tutor-col-3,.tutor-col-4,.tutor-col-6,.tutor-col-8,.tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.tutor-segment-title,.tutor-single-course-segment .tutor-segment-title{font-size:18px;line-height:23px;font-weight:500;margin-bottom:13px;color:#000}.tutor-single-course-segment{margin-bottom:45px}.tutor-full-width-course-top h4,.tutor-full-width-course-top h5,.tutor-full-width-course-top h6{color:#000;font-weight:500}.tutor-full-width-course-top h6{font-size:14px}.tutor-leadinfo-top-meta{font-size:14px;margin-bottom:10px}.tutor-leadinfo-top-meta span{display:inline-block;margin-right:10px}.tutor-leadinfo-top-meta span i::before{margin-left:0}.tutor-leadinfo-top-meta i{margin-right:4px}.tutor-single-course-rating{color:#F8C51C;font-size:16px}.tutor-single-course-rating .tutor-single-rating-count{color:var(--tutor-text-color);font-weight:500}.tutor-single-course-rating .tutor-single-rating-count i{color:var(--tutor-light-color);font-style:normal;display:inline-block;margin-left:4px}.tutor-course-header-h1{font-size:36px;line-height:46px;color:var(--tutor-text-color);font-weight:500;margin:0 0 29px;padding:0}@media (max-width: 767px){.tutor-course-header-h1{font-size:26px;line-height:36px}}.tutor-course-summery{margin-bottom:40px}.tutor-single-course-meta{color:var(--tutor-text-color)}.tutor-single-course-meta ul{list-style:none;margin:0;padding:10px 0;overflow:hidden;line-height:21px}.tutor-single-course-meta.tutor-meta-top ul{padding-top:0;padding-bottom:15px}.tutor-single-course-meta ul li{float:left;vertical-align:top;margin-right:40px;margin-top:5px;margin-bottom:5px;min-width:95px}@media (max-width: 575px){.tutor-single-course-meta ul li{margin-right:10px}}.tutor-single-course-meta ul li:last-child{margin-right:0}.tutor-single-course-meta .tutor-single-course-avatar img{height:21px;width:21px;display:block;border-radius:50%;margin-right:3px}.tutor-single-course-meta ul li .tutor-single-course-avatar span{height:21px;width:21px;font-size:9px;text-align:center;line-height:21px;border-radius:50%;display:block;color:#ffffff}.tutor-single-course-meta ul li>div{display:inline-block;vertical-align:top}.tutor-single-course-meta ul li strong{margin:0;display:inline-block;line-height:21px;font-weight:400;color:var(--tutor-light-color);font-size:var(--tutor-text-size)}.tutor-single-course-meta ul li a{color:var(--tutor-text-color);font-weight:500;-webkit-transition:300ms;transition:300ms}.tutor-single-course-meta ul li a:hover{color:var(--tutor-primary-color)}.tutor-single-course-meta.tutor-meta-top ul li,.tutor-single-course-meta.tutor-meta-top ul li a{font-weight:700}.tutor-single-course-meta ul li{font-weight:500;color:var(--tutor-text-color)}.tutor-single-course-meta ul li span{color:var(--tutor-light-color);font-weight:400}.tutor-single-course-meta.tutor-lead-meta{margin-bottom:33px;border-top:1px solid #DCDFE5;border-bottom:1px solid #DCDFE5}@media (max-width: 991px){.tutor-single-course-meta.tutor-lead-meta{border-bottom:none}.tutor-single-course-meta.tutor-lead-meta ul{padding-bottom:0}.tutor-single-course-meta.tutor-lead-meta ul li{margin:5px;padding:5px 15px;border:1px solid #ddd;border-radius:4px}}.tutor-single-course-meta.tutor-lead-meta ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width: 991px){.tutor-single-course-meta.tutor-lead-meta ul{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.tutor-single-course-meta.tutor-lead-meta ul li span{display:block;margin-bottom:5px;color:var(--tutor-light-color)}.tutor-single-course-meta.tutor-lead-meta ul li a{color:var(--tutor-text-color);-webkit-transition:300ms;transition:300ms}.tutor-single-course-meta.tutor-lead-meta ul li a:hover{color:var(--tutor-primary-color)}.tutor-single-course-meta.tutor-lead-meta ul li a:not(:last-child):after{content:',';margin-right:4px}@media (max-width: 575px){.tutor-single-course-meta.tutor-lead-meta ul{display:block}.tutor-single-course-meta.tutor-lead-meta ul li{display:block;border:none;margin:0;width:100%;padding:0 0 10px}.tutor-single-course-meta.tutor-lead-meta ul li span{display:inline-block;color:var(--tutor-text-color);font-weight:700}.tutor-single-course-meta.tutor-lead-meta ul li span::after{content:':';color:var(--tutor-text-color)}}.tutor-course-benefits-content ul{list-style:none;display:block;overflow:hidden;-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:30px;-moz-column-gap:30px;column-gap:30px;margin:0}.tutor-course-topics-header{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:8px}.tutor-course-topics-header .tutor-course-topics-header-right span:not(:first-child){margin-left:45px}.tutor-course-topics-contents h4{font-size:var(--tutor-text-size);font-weight:500;margin-bottom:0;color:var(--tutor-text-color)}.tutor-course-topics-contents .tutor-course-title{cursor:pointer}.tutor-course-topics-contents .tutor-course-title h4{color:var(--tutor-primary-color);font-size:16px;line-height:25px;overflow:hidden;margin-top:0}.tutor-course-topic.tutor-active .tutor-course-title h4>i:before{content:"\e910"}.tutor-course-topics-contents .tutor-course-title h4 i{font-size:15px;line-height:25px;float:left;margin-right:10px}.tutor-course-topics-contents .tutor-course-topic{border:1px solid #DCE4E6;margin-bottom:20px;border-radius:5px;overflow:hidden}.tutor-course-title,.tutor-course-lesson{padding:14px 20px}.tutor-course-lesson{border-top:1px solid #DCE4E6}.tutor-course-lesson h5{line-height:22px;font-size:var(--tutor-text-size);margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;color:inherit;margin-top:0}.tutor-course-lesson h5 a{color:var(--tutor-primary-color);-webkit-transition:300ms;transition:300ms}.tutor-course-lesson h5 a:hover{color:var(--tutor-primary-hover-color)}.tutor-course-lesson h5 i{line-height:22px;vertical-align:text-top;margin-right:10px;color:var(--tutor-light-color);display:block}.tutor-course-lesson h5 .lesson-preview-icon i{margin-right:0;margin-left:10px}.tutor-course-lesson h5 .tutor-lesson-duration{margin-left:auto;padding-left:5px;-ms-flex-item-align:start;align-self:flex-start}.tutor-course-lesson .lesson-preview-title{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}table.course-single-gradebooks .datetime{margin:0;font-size:80%}.tutor-course-lessons .tutor-course-lesson h5 i.tutor-lesson-thumbnail-icon{height:50px;width:70px;border-radius:3px;text-align:center;line-height:50px;color:#fff;margin-right:10px;position:relative;z-index:1;overflow:hidden;font-size:20px;background-position:center center !important;background-size:cover !important}.tutor-course-lessons .tutor-course-lesson h5 i.tutor-lesson-thumbnail-icon:after{position:absolute;content:'';left:0;top:0;height:100%;width:100%;background:rgba(0,0,0,0.5);z-index:-1}.tutor-single-lesson-button-group,.tutor-topics-lesson-list .tutor-topics-in-single-lesson{border-radius:4px;margin-bottom:30px;border:1px solid #e8eff1}.tutor-single-lesson-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.tutor-lesson-sidebar{-webkit-box-flex:0;-ms-flex:0 0 400px;flex:0 0 400px}@media (max-width: 991px){.tutor-lesson-sidebar{position:absolute;left:0;top:70px;width:400px;max-width:95%;height:calc(100% - 70px);z-index:9;background:#fff;overflow-y:auto;display:none}}.tutor-spotlight-mode .tutor-lesson-sidebar{position:fixed;left:0;width:400px;height:100vh;overflow-y:scroll;background:#f4f8fa}.tutor-spotlight-mode #tutor-single-entry-content{padding-left:400px;min-height:calc(100vh - 46px)}.tutor-spotlight-mode #tutor-single-entry-content.sidebar-hidden{padding-left:0}@media (max-width: 991px){.tutor-spotlight-mode .tutor-lesson-sidebar{position:absolute;width:350px;height:auto}.tutor-spotlight-mode #tutor-single-entry-content{padding-left:0}}.admin-bar .tutor-spotlight-mode .tutor-lesson-sidebar{height:calc(100vh - 32px)}.tutor-single-entry-content{-webkit-box-flex:999;-ms-flex-positive:999;flex-grow:999}.tutor-single-lesson-button-group .tutor-single-lesson-button a,.tutor-topics-in-single-lesson .tutor-single-lesson-items a{padding:14px 100px 14px 17px;display:-webkit-box;display:-ms-flexbox;display:flex;color:var(--tutor-text-color);position:relative;border-top:1px solid #e8eff1}.tutor-single-lesson-button-group .tutor-single-lesson-button:first-child a{border-top:none}.tutor-lessons-under-topic .tutor-single-lesson-items.active a{background:rgba(233,235,238,0.35)}.tutor-topics-in-single-lesson{margin-bottom:5px;background-color:#ffffff;padding:0}.tutor-topics-in-single-lesson .tutor-single-lesson-items a span{margin:0;display:inline;color:var(--tutor-text-color)}.tutor-topics-in-single-lesson .tutor-topics-title{position:relative}.tutor-topics-in-single-lesson .tutor-topics-title button{position:absolute;right:15px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);padding:0 5px;font-size:16px;background:transparent;border:none;color:var(--tutor-text-color)}.tutor-topics-in-single-lesson.tutor-topic-active .tutor-topics-title button i::before{content:"\e910"}.tutor-topics-in-single-lesson .tutor-topics-title h3{margin:0;padding:10px 37px 10px 17px;font-size:16px;color:var(--tutor-primary-color);font-weight:500}.tutor-topics-in-single-lesson .tutor-topics-title h3{cursor:pointer;line-height:30px}span.toogle-informaiton-icon{background:#ccc;color:#fff;height:15px;width:15px;text-align:center;display:inline-block;line-height:15px;font-size:15px;border-radius:50%;margin-left:10px}.tutor-topics-in-single-lesson .tutor-topics-title h3 i{font-size:10px;margin-left:6px}.tutor-topics-in-single-lesson .tutor-topics-tutor-loop-rating-wraptitle h3 i{font-size:10px;vertical-align:middle;display:inline-block;padding:5px;color:#c7c7c7;-webkit-transition:300ms;transition:300ms;cursor:pointer}.tutor-topics-in-single-lesson .tutor-topics-title h3 i:hover{color:var(--tutor-primary-color)}.tutor-single-lesson-button-group .tutor-single-lesson-button a>i:first-child,.tutor-topics-in-single-lesson .tutor-single-lesson-items a>i:first-child{color:#c7c7c7;line-height:22px;display:inline-block;vertical-align:middle;margin-right:10px}.tutor-topics-in-single-lesson .tutor-single-lesson-items a>i.tutor-icon-doubt{color:var(--tutor-primary-color)}.tutor-topics-in-single-lesson .tutor-topics-summery{padding:14px;border-top:1px solid #dce4e6;display:none}.tutor-lessons-under-topic .tutor-lesson-right-icons{position:absolute;right:15px;top:14px}.tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete{height:16px;width:16px;border:1px solid #e8eff1;border-radius:50%;font-size:9px;display:inline-block;line-height:16px;text-align:center;margin:0;vertical-align:middle;margin-left:8px}.tutor-lessons-under-topic .tutor-single-lesson-items.active .tutor-lesson-right-icons .tutor-lesson-complete{border-color:#b7d6b7}.tutor-lessons-under-topic .tutor-single-lesson-items.active .tutor-lesson-right-icons .tutor-lesson-complete.tutor-done,.tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete.tutor-done{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);color:#fff}.tutor-lessons-under-topic .tutor-lesson-right-icons i{font-style:normal}.tutor-single-page-top-bar{background-color:var(--tutor-primary-color);height:70px;margin-bottom:50px;color:#ffffff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:15px}.tutor-single-page-top-bar .tutor-single-lesson-segment form,.tutor-single-page-top-bar .tutor-single-lesson-segment{margin-bottom:0}.tutor-single-page-top-bar a{color:#ffffff;vertical-align:middle;display:inline-block;overflow:hidden}.tutor-single-page-top-bar a i{float:left}@media (max-width: 546px){.tutor-single-page-top-bar a{font-size:14px}}.tutor-topbar-home-btn i{margin-right:7px}.tutor-topbar-home-btn{margin-left:20px}@media screen and (max-width: 546px){.tutor-topbar-home-btn{margin-left:10px}}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{background:transparent;color:#fff;padding-bottom:13px;cursor:pointer;border:1px solid #fff}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button i{font-size:14px}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button i::before{display:block;padding-top:2px}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button:hover{color:#fff;background:var(--tutor-primary-hover-color);border-color:var(--tutor-primary-hover-color)}.tutor-single-page-top-bar a:hover{color:#ffffff}.tutor-single-page-top-bar .tutor-topbar-content-title-wrap{text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-box-flex:999999;-ms-flex-positive:999999;flex-grow:999999}.tutor-single-page-top-bar .tutor-hide-sidebar-bar{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-single-page-top-bar .tutor-topbar-mark-to-done{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}@media (max-width: 767px){.tutor-single-page-top-bar .tutor-topbar-content-title-wrap{display:none}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{padding:9px 14px}}@media (max-width: 767px){.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{padding:7px 12px;font-size:14px}}.tutor-single-page-top-bar .tutor-topbar-content-title-wrap i{vertical-align:middle;line-height:1;margin-right:3px}.tutor-lesson-content-area,.tutor-quiz-single-wrap{margin:0 100px 80px}@media (max-width: 1366px){.tutor-lesson-content-area,.tutor-quiz-single-wrap{margin:0 60px 80px}}@media (max-width: 991px){.tutor-lesson-content-area,.tutor-quiz-single-wrap{margin:0 40px}}.tutor-lesson-sidebar-hide-bar{background-color:var(--tutor-primary-hover-color);color:#ffffff;padding:0 12px;display:inline-block;line-height:70px}@media only screen and (max-width: 546px){.tutor-lesson-sidebar-hide-bar{padding:0 10px}}.tutor-single-page-top-bar a.tutor-lesson-sidebar-hide-bar i{font-size:20px;display:block;padding:25px 0}@media only screen and (max-width: 546px){.tutor-single-page-top-bar a.tutor-lesson-sidebar-hide-bar i{font-size:19px}}.sidebar-hidden a.tutor-lesson-sidebar-hide-bar .tutor-icon-angle-left:before{content:"\e903"}.tutor-sidebar-tabs-wrap{border-top:1px solid #e0e9ec}.tutor-tabs-btn-group{height:70px;display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-tabs-btn-group a{background-color:#f1f6f8;color:var(--tutor-text-color);display:block;line-height:70px;width:100%;text-align:center;border:1px solid #e0e9ec;border-top:none}.tutor-tabs-btn-group a span,.tutor-tabs-btn-group a i{font-size:24px;display:inline-block;vertical-align:top;line-height:70px}.tutor-tabs-btn-group a i{color:var(--tutor-primary-color)}.tutor-tabs-btn-group a span{font-size:15px;padding-left:3px}.tutor-tabs-btn-group a.active{background-color:#ffffff;border:none}.tutor-tabs-btn-group a:focus{outline:none}.tutor-single-lesson-segment{margin-bottom:35px}.tutor-single-lesson-wrap{background:#f4f8fa}.tutor-lesson-video-wrap .plyr--video{border-radius:4px}#tutor-lesson-sidebar-qa-tab-content{background-color:#ffffff;padding:20px}#tutor-lesson-sidebar-qa-tab-content .tutor-add-question-wrap{border-top:1px solid #e8eff1;padding-top:25px}#tutor-lesson-sidebar-qa-tab-content .tutor-add-question-wrap h3{color:var(--tutor-primary-color)}#tutor-lesson-sidebar-qa-tab-content .tutor-add-question-wrap button.tutor_ask_question_btn{display:block;width:100%;background-color:var(--tutor-primary-color);border-color:var(--tutor-primary-color)}#tutor-lesson-sidebar-qa-tab-content .tutor_question_answer_wrap .tutor_original_question{margin-bottom:20px;margin-top:20px}.tutor-lesson-sidebar-emptyqa-wrap{text-align:center;padding:50px 20px;color:var(--tutor-text-color)}.tutor-lesson-sidebar-emptyqa-wrap h3{margin:0;padding:0 0 25px}.tutor-lesson-sidebar-emptyqa-wrap i{font-size:150px;color:#e8eff1;line-height:0.8}.tutor-attachments-wrap{margin:-3px -3px 15px -3px}.tutor-attachments-wrap .tutor-lesson-attachment{display:inline-block;border:1px solid #e8eff1;border-radius:4px;padding:10px 16px 10px 12px;overflow:hidden;background:#f4f7f8;margin:3px;-webkit-transition:300ms;transition:300ms}.tutor-attachments-wrap .tutor-lesson-attachment:hover{-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15)}.tutor-attachments-wrap .tutor-attachment-icon{font-size:30px;float:left;color:var(--tutor-text-color)}.tutor-attachments-wrap .tutor-attachment-icon i{display:block}.tutor-attachment-info{padding-left:10px;float:left}.tutor-attachment-info span{display:block;font-size:14px;line-height:16px;color:var(--tutor-text-color)}.tutor-attachment-info span+span{font-size:11px;color:var(--tutor-light-color)}.tutor-progress-bar-wrap{width:100%;margin:0 0 30px;display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-progress-bar{height:8px;color:#000000;line-height:25px;position:relative;background:#f1f1f1;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%;border-radius:30px;margin-top:7.5px}.tutor-progress-bar .tutor-progress-filled{background-color:var(--tutor-primary-color);height:8px;border-radius:30px;width:var(--tutor-progress-left)}.tutor-dashboard-content-inner .tutor-progress-bar{margin-top:9.5px;height:5px}.tutor-dashboard-content-inner .tutor-progress-bar .tutor-progress-filled{height:5px}.tutor-progress-bar .tutor-progress-filled:after{content:"";position:absolute;height:15px;width:15px;border:7.5px solid var(--tutor-primary-color);border-radius:50%;background:#fff;left:var(--tutor-progress-left);-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);top:50%;-webkit-box-sizing:border-box;box-sizing:border-box}.tutor-progress-percent{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none;padding-left:20px}.tutor-course-purchase-box{margin-bottom:0}.tutor-price-preview-box .tutor-course-purchase-box button{display:block;width:100%;background:var(--tutor-primary-color);border-radius:3px;text-transform:uppercase;font-weight:500;cursor:pointer}.tutor-price-preview-box .tutor-course-purchase-box button i{margin-right:8px}.tutor-price-preview-box .tutor-course-enrolled-wrap,.tutor-price-preview-box .tutor-course-login-wrap,.tutor-price-preview-box .tutor-course-login-wrap form,.tutor-course-purchase-box form{margin-bottom:0}.tutor-price-preview-box .tutor-course-material-includes-wrap{margin-bottom:25px}.tutor-alert-warning.tutor-instructor-alert{padding:25px 25px 15px}.tutor-lead-info-btn-group{display:block;overflow:hidden;margin:0 -20px 25px;border-bottom:1px solid rgba(220,223,229,0.4);padding:0 20px 30px}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap{display:block;margin-top:15px}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap form{margin:0}.tutor-lead-info-btn-group a.tutor-button,.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap button{display:block;padding:18px 20px;border:none;text-align:center;border-radius:4px;text-transform:uppercase;line-height:1;-webkit-transition:300ms;transition:300ms;font-weight:700}.tutor-lead-info-btn-group a.tutor-button,.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap{width:100%;text-align:center;display:block}@media (max-width: 991px){.tutor-lead-info-btn-group a.tutor-button,.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap{width:auto}}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap button{display:block;width:100%;background:#e8eff1;color:var(--tutor-light-color)}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap button:hover{background:var(--tutor-primary-color);color:#ffffff}.tutor-single-add-to-cart-box .tutor-enroll-form{margin:0}.tutor-single-add-to-cart-box .tutor-enroll-form .tutor-course-enroll-wrap{padding:0}.tutor-single-add-to-cart-box .tutor-enroll-form .tutor-course-enroll-wrap button{display:block;width:100%;text-align:center}.tutor-single-add-to-cart-box.cart-required-login{position:relative}.tutor-single-add-to-cart-box.cart-required-login:before{position:absolute;content:"";top:0;bottom:0;left:0;right:0;z-index:99;cursor:pointer}.tutor-course-enrolled-review-wrap .write-course-review-link-btn{color:#fff;background-color:var(--tutor-primary-color);border-color:var(--tutor-primary-color);display:inline-block;padding:15px 30px;border-radius:4px;text-transform:capitalize;line-height:1;-webkit-transition:300ms;transition:300ms}.tutor-course-enrolled-review-wrap .write-course-review-link-btn:hover{background-color:var(--tutor-primary-hover-color);border-color:var(--tutor-primary-hover-color)}.tutor-course-enrolled-review-wrap .tutor-form-group{margin-bottom:10px}.tutor-course-enrolled-review-wrap .tutor-form-group textarea{height:120px;background:#f7f7f7;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;border-radius:4px;line-height:1.5;text-indent:0;padding:15px}.tutor-write-review-form{margin-top:30px}.tutor-form-row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-15px;margin-right:-15px}.tutor-form-col-4,.tutor-form-col-6,.tutor-form-col-12{padding-left:15px;padding-right:15px}.tutor-form-col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.tutor-form-col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.tutor-form-col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333%;flex:0 0 33.3333%;max-width:33.3333%}@media (max-width: 768px){.tutor-form-row{-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-form-col-4,.tutor-form-col-6,.tutor-form-col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}ul.tutor-required-fields{list-style:none;padding:10px;margin:0}.tutor-star-rating-group{color:#f4c150;display:inline-block;text-align:left}.tutor-star-rating-group i{margin-right:4px}@media (max-width: 546px){.tutor-write-review-box .tutor-star-rating-group{font-size:26px;display:block;text-align:center}}.tutor-write-review-box .tutor-star-rating-group i{margin-right:4px;cursor:pointer}.tutor-queston-and-answer-wrap{margin:20px 0}.tutor-question-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.tutor-ask-question-btn{text-align:right}.tutor-question-search-form{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%}.tutor-question-search-form form{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-question-search-form input[type="text"]{max-width:60%}.tutor-add-question-wrap{margin:20px 0}.tutor-add-question-wrap .tutor-form-group{margin-bottom:10px}.tutor_question_cancel{margin-right:5px}.updating-icon:before{font-family:"tutor";margin-right:5px;content:"\e91d";-webkit-animation:spin 1s steps(8) infinite;animation:spin 1s steps(8) infinite;display:inline-block}.loading-lesson .tutor-lesson-video-wrap:before{font-family:"tutor";content:"\e91d";-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;display:inline-block;z-index:9;position:absolute;left:50%;top:50%;font-size:50px;margin-left:-25px;margin-top:-12px}.loading-lesson .tutor-lesson-video-wrap:after{position:absolute;content:"";top:0;left:0;background:rgba(255,255,255,0.8);width:100%;height:100%}.tutor-lesson-video-wrap{position:relative}.tutor_question_area{padding:25px 20px;background:#f4f7f8;border-radius:4px}.tutor_question_area p:last-child{margin-bottom:0}.tutor_add_answer_row{text-align:right;margin-top:20px}.tutor_add_answer_row .tutor-form-group:last-child{margin-top:20px}.tutor_admin_answers_list_wrap+.tutor_add_answer_row,.tutor_admin_answers_list_wrap{margin-left:100px}@media (max-width: 991px){.tutor_admin_answers_list_wrap+.tutor_add_answer_row,.tutor_admin_answers_list_wrap{margin-left:30px}}.tutor_original_question{margin-bottom:30px}.tutor_admin_answers_list_wrap .tutor_individual_answer{margin-bottom:40px}.tutor_admin_answers_list_wrap .tutor_question_area{background:#edf9f1}.question-top-meta .tutor-question-avater a{display:inline-block}.question-top-meta .tutor-question-avater a span{height:50px;width:50px;border-radius:50%;display:block;line-height:50px;text-align:center;font-size:17px}.question-top-meta .tutor-question-avater a img{width:50px;height:50px;border-radius:50%}.question-top-meta{overflow:hidden;margin-bottom:20px}.question-top-meta .tutor-question-avater{float:left}.question-top-meta .review-meta{float:left;margin-bottom:0;margin-left:10px}.question-top-meta .review-meta a{display:block;font-size:18px;color:var(--tutor-text-color);line-height:20px}.question-top-meta .review-meta span{color:var(--tutor-light-color);vertical-align:text-top;display:block}.tutor_wp_editor_wrap .tutor-form-group a.tutor-button{margin-right:6px}.tutor-no-announcements{text-align:center}.tutor-announcement-meta{margin-bottom:10px;font-size:13px}.tutor-announcement{border:1px solid #eee;padding:20px;margin-top:30px;border-radius:4px}.announcement-delete-btn{float:right}.announcement-delete-btn a{color:var(--tutor-light-color);-webkit-transition:300ms;transition:300ms}.announcement-delete-btn a:hover{color:red}.tutor-announcement-title-wrap h3{color:var(--tutor-text-color);font-weight:500;margin-bottom:10px}.tutor-quiz-header span{background:#f88f1c;color:#ffffff;display:inline-block;padding:4px 10px;border-radius:4px;line-height:1;text-transform:uppercase;font-size:10px}.tutor-quiz-header h2{color:var(--tutor-text-color);font-size:36px;line-height:46px;font-weight:500;margin-bottom:15px}.tutor-quiz-header h5{color:var(--tutor-light-color)}.tutor-quiz-header h5 a{color:var(--tutor-text-color);font-weight:500}.tutor-quiz-header .tutor-quiz-meta{list-style:none;margin:20px 0 40px;padding:15px 0;border-top:1px solid #dcdfe5;border-bottom:1px solid #dcdfe5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-header .tutor-quiz-meta li{display:inline-block;color:var(--tutor-text-color)}.tutor-quiz-header .tutor-quiz-meta li strong{display:block;color:var(--tutor-light-color);font-weight:400}@media (max-width: 767px){.tutor-quiz-header .tutor-quiz-meta{display:block;border:none;padding:0}.tutor-quiz-header .tutor-quiz-meta li{display:block;color:var(--tutor-text-color);margin:5px;border:none;padding:0;border-radius:0}.tutor-quiz-header .tutor-quiz-meta li strong{display:inline-block;margin-right:5px}}@media (max-width: 1199.98px){.tutor-quiz-attempt-history{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}}.tutor-quiz-attempt-history-title{font-size:18px;color:var(--tutor-light-color);line-height:23px;font-weight:500;margin-bottom:15px;margin-top:70px}.tutor-quiz-attempt-history table{border-collapse:collapse;border-radius:4px;margin-bottom:0}.tutor-quiz-attempt-history th{font-weight:400}.tutor-quiz-attempt-history table,.tutor-quiz-attempt-history th,.tutor-quiz-attempt-history td{border:1px solid #e8eff1;padding:10px !important}.tutor-quiz-attempt-history table span.result-fail,.tutor-quiz-attempt-history table span.result-pass{display:inline-block;color:#fff;border-radius:2px;width:47px;height:26px;line-height:26px;text-align:center}.tutor-quiz-attempt-history table span.result-fail{background:#df3247}.tutor-quiz-attempt-history table span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-history table span.result-review-required{background:#f5b30d;padding:3px 5px;color:#fff;border-radius:2px;text-align:center;font-size:90%}.quiz-head-meta-info{color:var(--tutor-light-color);margin-bottom:40px}.quiz-head-meta-info span{color:var(--tutor-text-color)}#tutor-quiz-attempt-questions-wrap{margin-bottom:50px}.tutor-quiz-single-wrap .question-text{color:var(--tutor-text-color);font-size:20px;font-weight:600}.tutor-quiz-single-wrap .question-description{color:var(--tutor-text-color)}.quiz-attempt-single-question{margin-bottom:80px}.fill-in-the-blank-field .fill-in-the-blank-text-input{display:inline;border-top:none;border-left:none;border-right:none;border-bottom:1px dashed;background-color:transparent;padding:0px;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:0 10px}.fill-in-the-blank-field .fill-in-the-blank-text-input:focus{background:none;outline:none}.tutor-quiz-answers-wrap{margin-bottom:50px}.tutor-quiz-answers-wrap textarea{background:transparent;border:1px solid #d4dadb;height:175px;border-radius:5px;-webkit-box-shadow:none;box-shadow:none;min-width:100%;margin-bottom:5px}.tutor-quiz-answers-wrap textarea:focus{background:transparent;outline:none !important}.tutor-quiz-answers-wrap p{margin:0;line-height:26px}.quiz-answer-input-body .quiz-answer-image-wrap{margin-top:10px;margin-bottom:10px;max-width:200px}.quiz-answer-image-wrap img{max-width:100%;height:auto}.tutor-quiz-answers-wrap label{display:block;margin-bottom:15px;cursor:pointer}.tutor-quiz-answers-wrap label.answer-view-image,.tutor-quiz-answers-wrap label.answer-view-text_image{text-align:center;margin:0 10px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;max-width:25%}.quiz-answer-input-bottom{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:20px}.quiz-answer-input-bottom.wrong-answer{color:#e27c89}.quiz-answer-input-bottom.wrong-answer .quiz-answer-input-field{border:1px solid #e27c89;padding:5px 10px}.quiz-answer-input-bottom.right-answer{color:#86b324}.quiz-answer-input-bottom.right-answer .quiz-answer-input-field{border:1px solid #bbd58c;padding:5px 10px}.wrong-right-text{padding:5px 10px}.tutor-quiz-answers-wrap label input{display:none}.tutor-quiz-answers-wrap label input+span{width:20px;height:20px;border:1px solid #dedede;display:inline-block;border-radius:2px;position:relative;margin-right:5px}.tutor-quiz-answers-wrap label input:checked+span{background:var(--tutor-primary-color);border-color:var(--tutor-primary-color)}.tutor-quiz-answers-wrap label input:checked+span:after{content:"\e90f";position:absolute;font-family:"tutor";color:#fff;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);font-size:11px;line-height:1}.tutor-quiz-answers-wrap label input[type="radio"]+span{content:"";border-radius:50%;margin-right:4px;vertical-align:top;font-size:1em}.tutor-quiz-answers-wrap label input[type="radio"]+span:after{content:"";height:8px;width:8px;background:#fff;border-radius:50%;left:50%}.question-type-ordering-item{border:1px solid #d4dadb;padding:10px;margin-bottom:10px;width:250px;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.question-type-ordering-item.ui-sortable-placeholder{background-color:transparent}.question-type-ordering-item .answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.question-type-ordering-item .answer-sorting-bar{cursor:pointer}.quiz-answer-item-matching{padding:10px;display:-webkit-box;display:-ms-flexbox;display:flex;width:25%}.answer-type-matching .quiz-answer-matching-items-wrap .quiz-answer-item-matching{display:inline-block;max-width:none;width:25%;padding:0 10px;vertical-align:top}@media (max-width: 767px){.answer-type-matching .quiz-answer-matching-items-wrap .quiz-answer-item-matching{width:50%}}@media (max-width: 575px){.answer-type-matching .quiz-answer-matching-items-wrap .quiz-answer-item-matching{width:100%}}.answer-type-matching .quiz-answer-matching-items-wrap{margin:0 -10px}.quiz-answer-matching-droppable{height:48px;min-width:200px;border:1px dashed #d4dadb}.quiz-draggable-answer-item{padding:10px 20px;border:1px solid #d4dadb;margin-right:10px;margin-bottom:10px;background-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.quiz-draggable-answer-item .draggable-answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.quiz-draggable-rand-answers{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:80px}.drop-hover{display:none}.quiz-answer-matching-droppable .drop-hover{background-color:#eeeeee;height:100%;width:100%;display:inline-block;float:left}.quiz-answer-matching-droppable .quiz-draggable-answer-item{width:100%;max-width:100%}.quiz-draggable-answer-item .draggable-answer-icon{margin-left:15px}.answer-type-image_matching .quiz-answer-item-matching{display:block}.answer-type-image_matching .quiz-answer-matching-items-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-10px;margin-right:-10px}.answer-type-image_matching .quiz-answer-matching-droppable{width:100%;min-width:100%}.answer-type-image_matching img{width:100%;height:auto}.tutor-quiz-questions-pagination ul{margin:0;padding:0;list-style:none}.tutor-quiz-questions-pagination ul li{display:inline-block}.tutor-quiz-questions-pagination ul li a{background-color:var(--tutor-primary-color);padding:7px 13px;display:block;border-radius:50%;margin-right:10px;color:#ffffff}.tutor-quiz-questions-pagination ul li a:hover,.tutor-quiz-questions-pagination ul li a.active{background-color:var(--tutor-primary-color)}.quiz-image-answering-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-left:-10px;margin-right:-10px}.quiz-image-answering-wrap img{max-width:100%;height:auto}.quiz-image-answering-answer{margin-right:10px;margin-left:10px;width:15%}.quiz-image-answering-image-wrap{margin-bottom:20px}.tutor-quiz-answers-wrap .quiz-image-answering-input-field-wrap input{width:100%;display:block;border:1px solid #d4dadb;-webkit-box-shadow:none;box-shadow:none;background:transparent;border-radius:2px;height:42px}.tutor-quiz-answers-wrap .quiz-image-answering-input-field-wrap input:focus{background:transparent;outline-offset:0 !important}.tutor-next-previous-pagination-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-next-previous-pagination-wrap a{color:var(--tutor-primary-color)}.tutor-course-filter-wrapper{overflow:auto;max-width:1140px !important;margin:0 auto !important}.tutor-course-filter-wrapper>div{padding:12px}.tutor-course-filter-wrapper>div:first-child{width:250px;float:left}.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field{border:1px solid #BABABA;border-radius:6px;overflow:hidden;padding:0 6px;height:auto}.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field input,.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field input:focus,.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field input:active{border:none;outline:0;padding:0;display:inline-block;width:calc(100% - 24px);font-weight:normal;font-size:16px;color:#7A7A7A;height:35px}.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field i{font-size:17px;cursor:pointer;color:#3E64DE}.tutor-course-filter-wrapper>div:first-child h4{font-weight:normal;font-size:20px;color:#161616;margin:16px 0px 12px}.tutor-course-filter-wrapper>div:first-child label{display:block;cursor:pointer;font-weight:normal;font-size:16px;color:#353535}.tutor-course-filter-wrapper>div:last-child{width:calc(100% - 250px);float:right}.tutor-course-filter-wrapper>div:last-child select[name=tutor_course_filter]{border:1px solid #7A7A7A;color:#7A7A7A;padding:3px 4px;font-size:16px;border-radius:6px;cursor:pointer}.tutor-course-filter-wrapper>div .tutor-course-filter-loop-container{display:none}.tutor-course-filter-wrapper .tutor-clear-all-filter{margin-top:28px;display:none}.tutor-course-filter-wrapper .tutor-clear-all-filter>a{height:21px;background:#E8E8E8;border-radius:22px;line-height:21px;text-align:center;font-size:13px;font-weight:500;margin-top:20px;color:#7a7a7a;padding:5px 10px}.tutor-course-filter-wrapper .tutor-clear-all-filter a>i{font-size:10px}@media (max-width: 767px){.tutor-course-filter-wrapper>div{width:100% !important;float:none !important}.tutor-course-filter-wrapper .tutor-course-filter-container>div{overflow:auto}.tutor-course-filter-wrapper .tutor-course-filter-container>div>div{width:50%;float:left}.tutor-course-filter-wrapper .tutor-course-filter-container>div>div:first-child{width:100%}}div[class*="tutor-course-col"]{padding-left:15px;padding-right:15px;margin-bottom:30px}.tutor-course-loop{background:#fff;color:#29303b;overflow:hidden;position:relative;vertical-align:top;border-radius:4px;-webkit-transition:300ms;transition:300ms;border:1px solid rgba(0,0,0,0.05);height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-course-loop a,.tutor-widget-course a{text-decoration:none !important}.tutor-course-header{position:relative}.tutor-course-loop-header-meta{position:absolute;left:0;top:13px;width:100%;padding-left:13px;padding-right:13px;overflow:hidden}.tutor-course-loop-header-meta .tutor-course-wishlist{float:right;background:#fff;font-size:19px;padding:5px 5px;border-radius:3px;-webkit-transition:300ms;transition:300ms}.tutor-course-loop-header-meta .tutor-course-wishlist a{display:block;color:var(--tutor-primary-color);-webkit-transition:300ms;transition:300ms}.tutor-course-loop-header-meta .tutor-course-wishlist:hover{background:var(--tutor-primary-color)}.tutor-course-loop-header-meta .tutor-course-wishlist:hover a{color:#fff}.tutor-course-loop-header-meta .tutor-course-wishlist a:focus{outline:none}.tutor-course-loop-header-meta .tutor-course-wishlist a.has-wish-listed:before{content:"\e908"}.tutor-course-loop-header-meta .tutor-course-wishlist a.updating-icon:before{content:"\e91d";margin-right:0}.tutor-course-loop-level{display:inline-block;background:#9013fe;padding:0 7px;color:#fff;font-size:12px;line-height:20px;border-radius:2px;-webkit-box-shadow:0 0 1px rgba(0,0,0,0.1);box-shadow:0 0 1px rgba(0,0,0,0.1)}.tutor-course-loop:hover{-webkit-box-shadow:0 4px 23px rgba(0,0,0,0.1);box-shadow:0 4px 23px rgba(0,0,0,0.1)}.tutor-course-loop p{margin:0}.tutor-course-loop .tutor-course-header a,.tutor-course-loop .tutor-course-header a img{display:block;border-top-left-radius:4px;border-top-right-radius:4px}.tutor-loop-course-container{padding:25px 19px}.tutor-loop-rating-wrap{color:#f8c51c;margin-bottom:2px;font-size:16px}.tutor-rating-count{color:var(--tutor-text-color)}.tutor-rating-count i{font-style:normal;display:inline-block;margin-left:5px}.tutor-loop-rating-wrap i:before{margin-right:4px;margin-left:0}.tutor-course-loop-title h2{font-size:20px;line-height:28px;font-weight:600;margin-bottom:17px}.tutor-course-loop-title h2 a{color:var(--tutor-text-color)}.tutor-course-loop-title h2 a:hover{color:var(--tutor-primary-color)}.tutor-course-loop-meta{margin-bottom:15px;color:var(--tutor-text-color);font-size:var(--tutor-text-size)}.tutor-course-loop-meta>div{display:inline-block}.tutor-course-loop-meta>div i{font-size:16px;margin-right:4px}.tutor-course-loop-meta>div i,.tutor-course-loop-meta>div span{vertical-align:middle}.tutor-course-loop-meta>div+div{margin-left:10px}.tutor-loop-course-footer{padding:15px;border-top:1px solid rgba(0,0,0,0.05);color:#838791;font-size:12px;line-height:25px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;font-weight:400}.tutor-loop-course-footer:after{content:"";display:table;clear:both}.tutor-loop-course-footer span.woocommerce-Price-currencySymbol{vertical-align:top}.tutor-course-loop-price{color:var(--tutor-text-color);font-size:16px}.tutor-course-loop-price .price del{font-weight:400}.tutor-course-loop-price .price del span{text-decoration:line-through;color:var(--tutor-light-color)}.tutor-course-loop-price .price del>span{margin-right:6px}.tutor-course-loop-price .price del+ins{background:transparent;margin-left:0;text-decoration:none}.tutor-course-loop-price>.price{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-weight:600;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-loop-price>.price .subscription-details{font-size:15px;margin-left:4px;font-weight:400}.tutor-course-loop-price>.price .subscription-details+.tutor-loop-cart-btn-wrap{margin-left:0;margin-top:4px}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a{color:var(--tutor-text-color);position:relative;line-height:20px;vertical-align:top;display:block;font-weight:400;background:transparent;padding:0}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a:hover{color:var(--tutor-primary-color)}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap{margin-left:auto}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a.added{display:none}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a::before{content:"\e915";font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:20px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:5px;vertical-align:top;color:var(--tutor-primary-color)}@-webkit-keyframes mymove{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mymove{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.tutor-course-loop:hover .tutor-loop-course-footer .tutor-loop-cart-btn-wrap{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-course-col-4{width:25%}.tutor-course-col-3{width:33.33%}.tutor-course-col-2{width:50%}.tutor-course-col-1{width:100%}.tutor-course-col-1 .tutor-course-loop{width:100%}.tutor-course-col-5{width:20%}.tutor-course-col-6{width:16.66%}@media (max-width: 991px){.tutor-course-col-6,.tutor-course-col-5,.tutor-course-col-4,.tutor-course-col-3,.tutor-course-col-2{width:50%}}@media (max-width: 575px){.tutor-course-col-6,.tutor-course-col-5,.tutor-course-col-4,.tutor-course-col-3,.tutor-course-col-2{width:100%}}.tutor-course-filter-wrap{margin-bottom:50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-filter-form{display:inline-block;margin:0}.tutor-courses{clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;padding:0}.tutor-loop-course-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:100%}.clearfix:before,.clearfix:after{display:block;clear:both;content:""}.tutor-loop-author,.tutor-meta{color:#bac0cf}.tutor-text-mute{color:#bac0cf;font-weight:400}.tutor-loop-author{overflow:hidden;font-size:var(--tutor-text-size)}.tutor-loop-author .tutor-single-course-avatar img{width:25px;height:25px;display:block;border-radius:50%;margin-right:6px}.tutor-loop-author .tutor-single-course-avatar .tutor-text-avatar{height:25px;width:25px;display:inline-block;border-radius:50%;text-align:center;line-height:25px;font-size:11px;margin-right:6px}.tutor-loop-author>div{display:inline-block;float:left}.tutor-loop-author>div a{color:var(--tutor-text-color);font-weight:500;-webkit-transition:300ms;transition:300ms}.tutor-loop-author>div a:hover{color:var(--tutor-primary-color)}.tutor-loop-author>div span{display:inline-block;margin:0 2px 0 2px;color:var(--tutor-light-color);line-height:25px;font-weight:400}.tutor-course-lising-category a:not(:last-child):after{content:", ";margin-right:5px}.tutor-course-enrolled-wrap{margin:0 -20px -20px !important;padding:12px 20px;overflow:hidden;border-top:1px solid #dcdfe5;font-size:14px}.tutor-course-enrolled-wrap p{font-weight:600;margin:0}.tutor-course-enrolled-wrap p i{padding-right:9px;float:left;font-size:20px;line-height:20px}.tutor-course-enrolled-wrap p i,.tutor-course-enrolled-wrap p span{color:var(--tutor-success-button-color)}.tutor-notice-warning{background-color:#fcf8e3;border-color:#faebcc;padding:20px;margin-bottom:10px}.tutor-info-msg,.tutor-success-msg,.tutor-warning-msg,.tutor-error-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.tutor-info-msg{color:var(--tutor-primary-color);background-color:#bef}.tutor-success-msg{color:var(--tutor-success-button-color);background-color:#dff2bf}.tutor-warning-msg{color:#9f6000;background-color:#feefb3}.tutor-error-msg{color:#d8000c;background-color:#fbdcdc;border:1px solid #d8000c}.cart-required-login,.cart-required-login a,.cart-required-login form{cursor:pointer}.single_add_to_cart_button,a.tutor-button,.tutor-button,a.tutor-btn,.tutor-btn{color:#fff;border:1px solid var(--tutor-primary-button-color);background-color:var(--tutor-primary-button-color);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px 20px;border-radius:4px;text-transform:capitalize;line-height:20px;font-size:14px;font-weight:600;cursor:pointer;-webkit-transition:300ms;transition:300ms;overflow:hidden;vertical-align:top}.single_add_to_cart_button i,a.tutor-button i,.tutor-button i,a.tutor-btn i,.tutor-btn i{line-height:19px;margin-right:7px;font-size:16px}.single_add_to_cart_button.btn-sm,a.tutor-button.btn-sm,.tutor-button.btn-sm,a.tutor-btn.btn-sm,.tutor-btn.btn-sm{padding:9px 14px;line-height:19px}a.tutor-button.bordered-button,.tutor-button.bordered-button,a.tutor-btn.bordered-btn,.tutor-btn.bordered-btn{color:var(--tutor-primary-button-color);border:1px solid var(--tutor-primary-button-color);background-color:transparent !important}a.tutor-button.default-btn,.tutor-button.default-btn,a.tutor-btn.default-btn,.tutor-btn.default-btn{color:#393c40;border:1px solid #b8babe;background:var(--tutor-primary-button-color)}a.tutor-button.default-btn i,.tutor-button.default-btn i,a.tutor-btn.default-btn i,.tutor-btn.default-btn i{color:#fff}a.tutor-button.default-btn:hover,.tutor-button.default-btn:hover,a.tutor-btn.default-btn:hover,.tutor-btn.default-btn:hover{background-color:var(--tutor-primary-button-color);border-color:var(--tutor-primary-color);color:#fff}a.tutor-button.default-btn:hover i,.tutor-button.default-btn:hover i,a.tutor-btn.default-btn:hover i,.tutor-btn.default-btn:hover i{color:#fff}a.tutor-button:hover,.tutor-button:hover,a.tutor-btn:hover,.tutor-btn:hover{background-color:var(--tutor-primary-button-color);border-color:var(--tutor-primary-button-color);color:#fff;-webkit-filter:brightness(0.9);filter:brightness(0.9)}a.tutor-button.bordered-button:hover,.tutor-button.bordered-button:hover,a.tutor-btn.bordered-btn:hover,.tutor-btn.bordered-btn:hover{border:1px solid var(--tutor-primary-button-color);background-color:var(--tutor-primary-button-color) !important;color:#fff !important}a.tutor-button.button-light,.tutor-button.button-light{color:#b1b8c9;background-color:#dae4e6;border:1px solid #dae4e6}a.tutor-button.button-light:hover,.tutor-button.button-light:hover{color:#939bae;background-color:#e8eff1;border:1px solid #e8eff1}.tutor-button.tutor-danger{background-color:var(--tutor-danger-button-color);border-color:#e53935}.tutor-button.tutor-danger:hover{background-color:var(--tutor-danger-button-color);border-color:var(--tutor-danger-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-button.tutor-success{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color)}.tutor-button.tutor-success:hover{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-button.tutor-warning{background:var(--tutor-warning-button-color);border-color:var(--tutor-warning-button-color)}.tutor-button.tutor-warning:hover{background:var(--tutor-warning-button-color);border-color:var(--tutor-warning-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.course-enrolled-nav-wrap{border-bottom:1px solid #dedfe0;margin-bottom:45px}.tutor-button:disabled,.tutor-button[disabled],.tutor-button:disabled:hover,.tutor-button[disabled]:hover{display:block;border:0px;background-color:#DCDCE1;color:#737787;cursor:default}.tutor-button span{font-size:12px;display:block}.tutor-button-block{width:100%;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tutor-wrap{width:100%}.tutor-wrap nav.course-enrolled-nav ul{list-style:none;margin:0 0 -1px;padding:0}.tutor-wrap nav.course-enrolled-nav ul li{display:inline-block}.tutor-wrap nav.course-enrolled-nav ul li a{display:block;font-size:16px;padding:5px 0 20px;margin-right:20px;color:var(--tutor-light-color);border-bottom:2px solid transparent}.tutor-wrap nav.course-enrolled-nav ul li:not(:first-child) a{margin-left:20px}.tutor-wrap nav.course-enrolled-nav ul li.active a{border-bottom:2px solid var(--tutor-primary-color);color:var(--tutor-text-color)}@media (max-width: 575px){.tutor-wrap nav.course-enrolled-nav ul li{display:inline-block}.tutor-wrap nav.course-enrolled-nav ul li:not(:first-child) a,.tutor-wrap nav.course-enrolled-nav ul li a{padding:8px;margin:0}.tutor-wrap nav.course-enrolled-nav ul li.active a{border:none;color:var(--tutor-primary-color)}}.tutor-updating-message i{display:none}.tutor-profile-photo-upload-wrap{width:200px;height:auto;margin-bottom:70px;position:relative}.tutor-profile-photo-upload-wrap img{width:100%;height:auto;display:block}a.tutor-profile-photo-upload-btn,button.tutor-profile-photo-upload-btn{position:absolute;top:100%;background-color:var(--tutor-primary-color);color:#fff;display:block;width:100%;text-align:CENTER;padding:9px 0}a.tutor-profile-photo-upload-btn:hover,button.tutor-profile-photo-upload-btn:hover{background-color:var(--tutor-primary-hover-color);color:#fff}.tutor-profile-photo-delete-btn{position:absolute;color:#ff000c;right:10px;top:10px}.single-instructor-wrap{border:1px solid #e8eff1;margin-bottom:30px;border-radius:4px}.single-instructor-wrap .single-instructor-top{padding:20px;border-bottom:1px solid #e8eff1;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width: 767px){.single-instructor-wrap .single-instructor-top{-ms-flex-wrap:wrap;flex-wrap:wrap}}.single-instructor-wrap .single-instructor-top h3,.single-instructor-wrap .single-instructor-top h4{margin:0;padding:0}.single-instructor-wrap .tutor-instructor-left{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:30px}@media (max-width: 767px){.single-instructor-wrap .tutor-instructor-left{width:100%;margin-bottom:15px}}.single-instructor-wrap .instructor-avatar{float:left}.single-instructor-wrap .instructor-avatar img{max-width:50px;height:auto;border-radius:50%}.single-instructor-wrap .instructor-name{float:left;padding-left:20px;max-width:180px}.single-instructor-wrap .instructor-name h3{font-size:16px;color:var(--tutor-text-color);font-weight:600}.single-instructor-wrap .instructor-name h3 a{font-weight:500;color:var(--tutor-text-color)}.single-instructor-wrap .instructor-name h4{font-weight:500;color:var(--tutor-light-color)}.single-instructor-wrap .single-instructor-bottom{padding:15px 20px;text-align:right;overflow:hidden}@media (max-width: 767px){.single-instructor-wrap .single-instructor-bottom{text-align:left}}.single-instructor-wrap .single-instructor-bottom p{margin:0}.single-instructor-wrap .single-instructor-bottom .ratings{float:left}.single-instructor-wrap .single-instructor-bottom .ratings i{margin-right:4px}.single-instructor-wrap .single-instructor-bottom .courses,.single-instructor-wrap .single-instructor-bottom .students{display:inline-block;margin-left:20px}.single-instructor-wrap .single-instructor-bottom .courses i,.single-instructor-wrap .single-instructor-bottom .students i{font-size:18px;display:inline-block;margin-right:2px;vertical-align:middle}.single-instructor-wrap .single-instructor-bottom .ratings .rating-total-meta{color:#bac0cf}.single-instructor-wrap .single-instructor-bottom .ratings .rating-generated{color:#f8c51c}.tutor-dashboard-pagination-results-stats{margin:10px 0 30px}.statement-address{margin:10px 0;color:#555}.statement-order-completed{background:var(--tutor-success-button-color);color:#fff;padding:2px 5px;border:none}.tutor-login-wrap{max-width:520px;margin:0 auto;padding:40px 55px;-webkit-box-shadow:0 0 15px rgba(0,0,0,0.1);box-shadow:0 0 15px rgba(0,0,0,0.1);border-radius:5px}.tutor-login-wrap form{margin:0}.tutor-login-wrap .tutor-login-title{margin-bottom:25px;padding:0 40px;text-align:center}.tutor-login-form-wrap{max-width:450px;margin:auto}.tutor-login-form-wrap p{margin-bottom:0}.tutor-login-form-wrap label{display:block !important;margin-bottom:4px}.tutor-login-form-wrap .tutor-alert{margin-bottom:20px}.tutor-login-form-wrap input[type="password"],.tutor-login-form-wrap input[type="text"]{width:100%;display:block;border:1px solid #e8eff1;-webkit-box-shadow:none;box-shadow:none;margin-bottom:20px;border-radius:4px;background:#eceef4;line-height:48px;padding:0;text-indent:15px}.tutor-login-form-wrap input[type="password"]:focus,.tutor-login-form-wrap input[type="text"]:focus{background:#ffffff;border-color:var(--tutor-primary-color)}.tutor-login-form-wrap input::-webkit-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input::-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input:-ms-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input:-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-rememeber-wrap{overflow:hidden;text-align:right;margin-bottom:30px}.tutor-login-rememeber-wrap p{display:inline-block;float:left}.tutor-login-rememeber-wrap p,.tutor-login-rememeber-wrap label{margin:0}.tutor-form-register-wrap a,.tutor-login-rememeber-wrap a,.tutor-login-rememeber-wrap label{color:#606c8f;vertical-align:middle;opacity:0.5;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";-webkit-transition:300ms;transition:300ms}.tutor-form-register-wrap a:hover,.tutor-login-rememeber-wrap a:hover,.tutor-login-rememeber-wrap label:hover{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input[type="submit"]{color:#fff;background-color:var(--tutor-primary-button-color);border-color:var(--tutor-primary-button-color);padding:15px 30px;border-radius:4px;text-transform:uppercase;line-height:1;display:block;width:100%;-webkit-transition:300ms;transition:300ms}.tutor-login-form-wrap input[type="checkbox"]{margin-right:4px}.tutor-form-register-wrap{text-align:center;margin-top:15px}.tutor-course-login-wrap h4{font-size:42px;line-height:1.2;margin-bottom:20px;color:var(--tutor-text-color)}.tutor-cart-box-login-form{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.6);z-index:99;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.login-overlay-close{position:absolute;background:transparent;width:100%;height:100%;z-index:-1}.course-login-title{margin-bottom:50px}.tutor-cart-box-login-form .tutor-cart-box-login-form-inner{background:#fff;padding:50px 40px;position:relative;width:400px;font-size:16px;font-weight:400;max-height:90%;overflow:auto}.tutor-cart-box-login-form-inner button.tutor-popup-form-close{position:absolute;padding:0;margin:0;border:none;background-color:transparent;top:14px;right:20px;opacity:0.4;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";cursor:pointer;-webkit-transition:300ms;transition:300ms;color:var(--tutor-text-color)}.tutor-cart-box-login-form-inner button.tutor-popup-form-close:hover{color:red}.tutor-option-field-row label,.tutor-form-group label{display:block;margin-bottom:10px}.tutor-option-field textarea,.tutor-option-field select,.tutor-option-field input[type="text"],.tutor-option-field input[type="number"],.tutor-option-field input[type="pas.tutor-dashboard-content-innersword"],.tutor-form-group textarea,.tutor-form-group select,.tutor-form-group input[type="text"],.tutor-form-group input[type="number"],.tutor-form-group input[type="password"]{width:100%;display:block;border:1px solid #dcdfe5;-webkit-box-shadow:none;box-shadow:none;margin-bottom:20px;border-radius:4px;background:#ffffff;line-height:48px;padding:0;text-indent:15px;-webkit-transition:300ms;transition:300ms;font-size:16px}.tutor-form-group{position:relative}.tutor-form-group span.tutor-input-prepand{position:absolute;height:calc(100% - 2px);font-size:21px;line-height:50px;padding:0 12px;background:transparent;border-right:1px solid #dcdfe5;top:1px}.tutor-form-group span.tutor-input-prepand+input{padding-left:35px}.tutor-course-builder-form-elem{margin-bottom:20px}.tutor-option-field .select2-container,.tutor-form-group .select2-container{margin-bottom:20px;width:100% !important}.tutor-option-field .select2-container ul.select2-selection__rendered,.tutor-form-group .select2-container ul.select2-selection__rendered{padding:4px 9px;display:block}.tutor-option-field .select2-container li.select2-selection__choice,.tutor-form-group .select2-container li.select2-selection__choice{background:#ebeef0;color:#606c8f;line-height:29px;border-radius:3px;padding:0 9px;margin:5px;border:none;font-weight:600}.tutor-option-field .select2-container .select2-search__field,.tutor-form-group .select2-container .select2-search__field{padding:8px 3px 8px 6px;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0}.tutor-option-field .select2-container .select2-search__field::-webkit-input-placeholder,.tutor-form-group .select2-container .select2-search__field::-webkit-input-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-search__field::-moz-placeholder,.tutor-form-group .select2-container .select2-search__field::-moz-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-search__field:-ms-input-placeholder,.tutor-form-group .select2-container .select2-search__field:-ms-input-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-search__field:-moz-placeholder,.tutor-form-group .select2-container .select2-search__field:-moz-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-selection--single,.tutor-option-field .select2-container .select2-selection--multiple,.tutor-form-group .select2-container .select2-selection--single,.tutor-form-group .select2-container .select2-selection--multiple{border-color:#dcdfe5}.tutor-option-field .select2-container.select2-container--focus .select2-selection--single,.tutor-option-field .select2-container.select2-container--focus .select2-selection--multiple,.tutor-form-group .select2-container.select2-container--focus .select2-selection--single,.tutor-form-group .select2-container.select2-container--focus .select2-selection--multiple{border-color:var(--tutor-primary-color)}.tutor-option-field textarea,.tutor-form-group textarea{line-height:26px;text-indent:0;padding:15px;height:180px}.tutor-option-field textarea:focus,.tutor-form-group textarea:focus,.tutor-option-field input:focus,.tutor-form-group input:focus{outline:none}.tutor-dashboard-course-builder-wrap .tutor-option-field textarea,.tutor-dashboard-course-builder-wrap .tutor-form-group textarea{height:100px}.tutor-option-field textarea:focus,.tutor-option-field input:not([type="submit"]):focus,.tutor-form-group textarea:focus,.tutor-form-group input:not([type="submit"]):focus{background:#ffffff;border-color:var(--tutor-primary-color)}.tutor-option-field textarea::-webkit-input-placeholder,.tutor-option-field input::-webkit-input-placeholder,.tutor-form-group textarea::-webkit-input-placeholder,.tutor-form-group input::-webkit-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field textarea::-moz-placeholder,.tutor-option-field input::-moz-placeholder,.tutor-form-group textarea::-moz-placeholder,.tutor-form-group input::-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field textarea:-ms-input-placeholder,.tutor-option-field input:-ms-input-placeholder,.tutor-form-group textarea:-ms-input-placeholder,.tutor-form-group input:-ms-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field textarea:-moz-placeholder,.tutor-option-field input:-moz-placeholder,.tutor-form-group textarea:-moz-placeholder,.tutor-form-group input:-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field select,.tutor-form-group select{padding:2px 5px;height:50px}.tutor-form-group.tutor-reg-form-btn-wrap{text-align:right}.tutor-option-field p.desc{margin:-10px 0 20px;font-size:13px;font-style:italic;opacity:0.7}.tutor-option-field:last-child .tutor-option-field p.desc{margin-bottom:0}.tutor-option-gorup-fields-wrap .tutor-lesson-video-runtime{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-option-gorup-fields-wrap .tutor-lesson-video-runtime .tutor-option-group-field{padding-right:30px}.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:46px}.select2-container--default .select2-selection--single .select2-selection__arrow{height:46px}.select2-container .select2-selection--single .select2-selection__rendered{padding-left:13px;font-size:16px}.select2-container .select2-selection--single{height:48px}.select2-container .select2-selection--multiple{min-height:50px}.tutor-price-preview-box{border:1px solid #dcdfe5;padding:20px;margin-bottom:30px;border-radius:4px;overflow:hidden}.tutor-price-box-thumbnail{margin:-20px -20px 20px}.tutor-price-box-thumbnail .tutor-single-lesson-segment{margin-bottom:0}.tutor-price-box-description h6{font-size:23px;margin:15px 0 5px}.tutor-price-box-description ul{list-style:none}.tutor-course-purchase-box a{display:block;text-align:center;margin-top:6px}.tutor-price-preview-box .price{font-size:35px;font-weight:500;margin:0 0 20px;overflow:hidden;line-height:1}.tutor-price-preview-box .price .subscription-details{font-size:var(--tutor-text-size);display:block;margin-top:12px;line-height:1.2em}.tutor-price-preview-box .price>.price{margin-bottom:0}.tutor-price-preview-box .price del+ins{margin-left:0;float:left}.tutor-course-reviews-wrap{border:1px solid #e8eff1;border-radius:4px}.tutor-course-avg-rating-total{color:var(--tutor-light-color)}.tutor-course-avg-rating-total span{color:var(--tutor-text-color)}.tutor-review-individual-item{border-top:1px solid #e8eff1;padding:30px;overflow:hidden}.tutor-review-individual-item p{margin:0;padding:0}.course-avg-rating-wrap{padding:20px 20px 20px 40px}.tutor-review-individual-item .review-left{width:200px;float:left;overflow:hidden}.tutor-review-individual-item .review-content{padding-left:200px}@media (max-width: 991px){.tutor-review-individual-item .review-left{width:100%;float:none;margin-bottom:25px}.tutor-review-individual-item .review-content{padding-left:0}}@media (max-width: 991px){.tutor-single-course-sidebar{margin-top:30px}}.tutor-review-individual-item .review-avatar{width:50px;float:left}.tutor-review-individual-item .review-avatar img{border-radius:50%;margin:0;border:none;max-width:100%;height:auto}.tutor-review-individual-item .tutor-review-user-info{float:left;padding-left:20px}.tutor-review-individual-item .tutor-review-user-info p{margin-bottom:0}.tutor-review-individual-item .tutor-review-user-info a{color:var(--tutor-text-color)}.review-avatar .tutor-text-avatar,.tutor-dashboard-avater .tutor-text-avatar,.instructor-avatar .tutor-text-avatar{border-radius:50%;width:50px;height:50px;text-align:center;display:block;line-height:50px;color:#ffffff;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.course-avg-rating-wrap .course-avg-rating{font-size:76px;line-height:1;font-weight:400}.course-avg-rating-wrap p{margin:0}.tutor-review-individual-item .tutor-review-name{font-size:16px;font-weight:600}.tutor-review-individual-item .review-meta{color:var(--tutor-light-color)}.individual-review-rating-wrap{color:#f8c51c}.individual-review-rating-wrap i,.course-avg-rating-html i{margin-right:4px;color:#f8c51c}.course-rating-meter{display:-webkit-box;display:-ms-flexbox;display:flex}.course-rating-meter i.tutor-icon-star-full{color:#f8c51c}.rating-meter-bar-wrap{-webkit-box-flex:1;-ms-flex:1;flex:1}.rating-meter-col{margin:0 3px}.course-rating-meter{margin-bottom:8px}.rating-meter-bar{height:5px;width:100%;background:#e8eff1;margin-top:11px;border-radius:15px;overflow:hidden}.rating-meter-fill-bar{background:#f8c51c;height:5px}.rating-meter-col.rating-text-col{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-pagination,.tutor-pagination-wrap{text-align:center;margin:20px 0}.tutor-pagination a,.tutor-pagination span,.tutor-pagination-wrap a,.tutor-pagination-wrap span{padding:3px;display:inline-block}.tutor-pagination-wrap a:hover,.tutor-pagination a:hover{color:var(--tutor-primary-color)}.tutor-course-tags{margin:-5px}.tutor-course-tags a{padding:6px 15px;background:#e8eff1;display:inline-block;margin:5px;color:var(--tutor-text-color);border-radius:2px;-webkit-transition:300ms;transition:300ms}.tutor-course-tags a:hover{color:#000}.certificate-download-btn{margin-top:20px;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;text-align:center;text-transform:uppercase !important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#tutor-single-entry-content .tutor-course-prerequisites{padding:60px}.prerequisites-course-lists{padding:0;list-style:none;margin:0}.prerequisites-course-lists li a{padding:13px 15px;border:1px solid #dcdfe5;margin-bottom:20px;border-radius:4px;font-weight:500;color:var(--tutor-primary-color);font-size:16px}.prerequisites-course-lists li:first-child{padding:13px 40px 13px 60px;border:1px solid #f7e5b9;margin-bottom:20px;border-radius:4px;font-weight:500;background:#fffff5;color:#b39f70;position:relative}.prerequisites-course-lists li:first-child>span{position:absolute;left:20px;top:13px}.prerequisites-course-lists li .prerequisites-course-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.prerequisites-course-feature-image img{width:70px;border-radius:2px;height:auto;margin:0 !important;-webkit-box-shadow:0 0 1px rgba(0,0,0,0.08);box-shadow:0 0 1px rgba(0,0,0,0.08)}.prerequisites-course-lists li .prerequisites-course-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-left:15px;-webkit-transition:300ms;transition:300ms}.prerequisites-course-lists li a:hover .prerequisites-course-title{color:var(--tutor-primary-color)}.prerequisites-course-checkmark{line-height:24px;height:24px;text-transform:uppercase;font-size:12px;font-weight:700;min-width:107px}.prerequisites-course-checkmark i{height:24px;width:24px;background:#dbdddd;color:#dbdddd;display:inline-block;text-align:center;border-radius:2px;margin-right:3px}.prerequisites-course-checkmark.is-complete i{background:var(--tutor-success-button-color);color:#fff}.tutor-single-course-meta ul li.tutor-social-share{float:right;margin-right:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width: 575px){.tutor-single-course-meta ul li.tutor-social-share{display:none}}.tutor-single-course-meta ul li.tutor-social-share button{margin:0;border:none;background:transparent;color:var(--tutor-light-color);-webkit-transition:300ms;transition:300ms;padding:0 4px;cursor:pointer}.tutor-single-course-meta ul li.tutor-social-share button:hover{color:var(--tutor-primary-color)}.rtl .tutor-single-course-meta ul li.tutor-social-share{float:left}.rtl .tutor-single-course-meta ul li,.rtl .tutor-loop-author>div{float:right}.rtl .tutor-single-course-meta ul li{margin-right:0;margin-left:40px}.rtl .tutor-wrap nav.course-enrolled-nav ul li a{margin-right:0;margin-left:20px}.rtl .tutor-progress-bar .tutor-progress-filled:after{left:auto;right:var(--tutor-progress-left);-webkit-transform:translateY(-50%) translateX(50%);transform:translateY(-50%) translateX(50%)}.rtl .tutor-progress-percent{padding-left:0;padding-right:20px}.rtl .tutor-course-lesson h5 i{margin-right:0;margin-left:10px}.rtl .tutor-course-lesson h5 .lesson-preview-icon i{margin-right:10px;margin-left:0}.rtl .tutor-course-lesson h5 .tutor-lesson-duration{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:left}.rtl .tutor-custom-list-style li{padding-right:25px;padding-left:0px}.rtl .tutor-custom-list-style li:before{left:auto;right:0}.rtl .single-instructor-wrap .instructor-name,.rtl .single-instructor-wrap .instructor-avatar{float:right}.rtl .single-instructor-wrap .instructor-name{padding-left:0;padding-right:20px}.rtl .single-instructor-wrap .instructor-bio{padding-left:0;padding-right:260px}.rtl .tutor-single-page-top-bar .tutor-topbar-back-to-curse-wrap{margin-left:30px;margin-right:0}.rtl .tutor-single-lesson-button-group .tutor-single-lesson-button a,.rtl .tutor-topics-in-single-lesson .tutor-single-lesson-items a{padding:14px 17px 14px 100px}.rtl .tutor-lessons-under-topic .tutor-lesson-right-icons{right:auto;left:15px}.rtl .tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete{margin-left:0;margin-right:8px}.rtl .tutor-single-lesson-button-group .tutor-single-lesson-button a>i:first-child,.rtl .tutor-topics-in-single-lesson .tutor-single-lesson-items a>i:first-child{margin-right:0;margin-left:10px}.rtl .tutor-topbar-home-btn{margin-left:0;margin-right:20px}@media screen and (max-width: 546px){.rtl .tutor-topbar-home-btn{margin-right:10px}}.rtl .tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{margin-left:15px;margin-right:0}.tutor-frontend-modal{position:fixed;width:100%;height:100%;left:0;top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:999999}.tutor-frontend-modal .tutor-frontend-modal-overlay{background:rgba(0,0,0,0.7);height:100%;width:100%;position:fixed;left:0;top:0;z-index:-1;cursor:url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.852 12.004L.23 22.7a.764.764 0 0 0 0 1.076.75.75 0 0 0 1.068 0L12 13l10.703 10.778a.75.75 0 0 0 1.069 0 .764.764 0 0 0 0-1.076L13.148 12.004l10.63-10.706a.764.764 0 0 0 0-1.075.752.752 0 0 0-1.067 0L12 11.008 1.289.223a.752.752 0 0 0-1.068 0 .764.764 0 0 0 0 1.076l10.631 10.705z' fill='%23F0576A' fill-rule='evenodd'/%3E%3C/svg%3E"),auto}.tutor-frontend-modal .tutor-frontend-modal-content{position:relative;background:#fff;padding:60px;width:90%;max-width:750px;max-height:90%;overflow-y:auto}@media (max-width: 768px){.tutor-frontend-modal .tutor-frontend-modal-content{padding:40px}}@media (max-width: 540px){.tutor-frontend-modal .tutor-frontend-modal-content{padding:20px}}button.tm-close.tutor-icon-line-cross{position:absolute;right:23px;top:23px;background:transparent;padding:0;font-size:24px;border:none;color:var(--tutor-light-color)}button.tm-close.tutor-icon-line-cross:hover{color:red}.label-order-status{padding:3px 5px;border-radius:3px}.label-status-completed{background-color:#4bd863;color:#ffffff}.label-status-cancelled{background-color:#fd6a03;color:#ffffff}.label-status-on-hold{background-color:#db5382;color:#ffffff}.tutor-lesson-content-area h2{margin-bottom:25px;margin-top:20px;font-weight:500}.assignment-result-wrap{text-align:center;padding:10px 0}.submitted-assignment-grade-pass{color:var(--tutor-success-button-color)}.submitted-assignment-grade-failed{color:red}.received-marks{color:var(--tutor-primary-color)}.tutor-dashboard-course-builder-wrap .tutor-form-row{margin-top:20px;margin-bottom:20px}.video_source_wrap_html5{width:100px;text-align:center}.video-poster-img img{max-width:200px;height:auto}.tutor-assignment-information{font-size:16px}.tutor-assignment-information ul{padding:0;margin:0 0 22px;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-assignment-information ul li strong{font-weight:700}.tutor-assignment-attachment-upload-wrap .tutor-form-group{display:inline-block}.tutor-assignment-attachment-upload-wrap .tutor-form-group label+input{display:none}.tutor-assignment-attachment-upload-wrap .tutor-form-group label{padding:15px 17px;border:1px solid #dcdfe5;overflow:hidden;margin-right:15px;border-radius:4px;cursor:pointer}.tutor-assignment-attachment-upload-wrap .tutor-form-group label i{font-size:30px;line-height:30px;float:left;margin-right:12px}.tutor-assignment-attachment-upload-wrap .tutor-form-group label span{line-height:30px}.tutor-assignment-attachment-upload-wrap{margin-bottom:40px}#tutor-course-topics a{text-decoration:none}#tutor-course-topics .tutor-topics-wrap{border-bottom:1px solid #f6f8fa;padding-bottom:0;margin:0}.tutor-untopics-lessons .course-content-item,.course-contents .course-content-item{padding:10px 12px 10px 25px;border-bottom:1px solid #d9d9d9;background-color:#ebeef0}.tutor-untopics-lessons .course-content-item .tutor-lesson-top,.course-contents .course-content-item .tutor-lesson-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-untopics-lessons .course-content-item .tutor-lesson-top a:last-child,.course-contents .course-content-item .tutor-lesson-top a:last-child{margin-left:auto}.tutor-untopics-lessons .course-content-item .tutor-lesson-top a.open-tutor-lesson-modal,.course-contents .course-content-item .tutor-lesson-top a.open-tutor-lesson-modal{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-untopics-lessons .course-content-item .tutor-lesson-top a,.course-contents .course-content-item .tutor-lesson-top a{color:#393c40;font-weight:400;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-untopics-lessons .course-content-item .tutor-lesson-top i,.course-contents .course-content-item .tutor-lesson-top i{padding-right:7px;color:#393c40}.tutor-untopics-lessons .course-content-item .tutor-lesson-top .tutor-updating-message i,.course-contents .course-content-item .tutor-lesson-top .tutor-updating-message i{display:none}.tutor-untopics-lessons .course-content-item .tutor-lesson-top i.tutor-icon-garbage:hover,.course-contents .course-content-item .tutor-lesson-top i.tutor-icon-garbage:hover{color:red}.tutor-lessons.ui-sortable{min-height:20px}#tutor-course-topics .drop-lessons p{margin:0}#tutor-course-topics .course-content-item:hover{background-color:#ebeef0}#tutor-course-topics .tutor-lessons{padding-left:0}#tutor-course-topics .tutor-lesson-top,#tutor-course-topics .tutor-lesson-top i{font-size:15px}#tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i{display:inline-block;vertical-align:middle;margin-right:5px}#tutor-course-topics .tutor-lesson-top{display:-webkit-box;display:-ms-flexbox;display:flex}#tutor-course-topics .tutor-lesson-top .open-tutor-lesson-modal,.tutor-quiz .open-tutor-quiz-modal,.course-content-item .open-tutor-assignment-modal{-webkit-box-flex:1;-ms-flex:1;flex:1}#tutor-course-topics .tutor-lesson-top i.tutor-icon-move{margin-right:10px;cursor:ns-resize}.rtl #tutor-course-topics .tutor-lesson-top i.tutor-icon-move{margin-right:0;margin-left:10px}#tutor-course-topics .tutor-lesson-top i.tutor-icon-pencil{margin:0 10px}#tutor-course-topics .tutor-lesson-top a{color:#393c40}#tutor-course-topics .tutor-lesson-top a.tutor-updating-message i{display:none}.course-move-handle{cursor:row-resize}.new-topic-btn-wrap{padding:20px}p.course-empty-content{padding-left:20px;padding-right:20px}.tutor_btn_lg{line-height:45px;background-color:var(--tutor-primary-color);color:#ffffff;padding:0 20px;display:inline-block;border-radius:2px;font-weight:300;border:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.tutor_btn_lg:focus{-webkit-box-shadow:none;box-shadow:none;border:none;outline:none}.tutor_btn_lg:focus,.tutor_btn_lg:hover{background-color:var(--tutor-primary-color);color:#ffffff}.ui-sortable-placeholder{visibility:visible;background-color:#dddd}.tutor-untopics-lessons{border:1px solid #eee;padding:20px;margin:0 -1px -1px;background-color:#fbfbfb}.tutor-untopics-lessons h3{font-weight:300}.tutor-untopics-lessons .tutor-lessons{padding-left:0 !important}.create-new-lesson-wrap{text-align:center}.tutor-metabox-add-topics .tutor-option-field-row:last-child,.tutor-topics-edit-form .tutor-option-field-row:last-child{border-bottom:none}.tutor-metabox-add-topics .tutor-option-field-row textarea{height:120px}.topic-edit-icon{cursor:pointer}.tutor-topic-title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:300;margin:0;line-height:45px;padding-left:15px}.rtl .tutor-topic-title{padding-left:0;padding-right:15px}.tutor-topic-title a{color:#393c40}.tutor-topic-title .topic-inner-title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;max-width:calc(100% - 137px);font-weight:400;font-size:16px}.tutor-topic-title span{padding:0 5px}.tutor-topic-title span.expand-collapse-wrap{border-left:1px solid #e7e7e7}.tutor-topic-title span.expand-collapse-wrap a{display:block;padding:0 13px}.topic-delete-btn{float:right}.text-muted{color:#cccccc}.topic-delete-btn a{padding:0 10px}.topic-delete-btn a:hover{color:#ff0000}.topic-delete-btn .dashicons{width:12px;height:12px;font-size:12px}#tutor-course-topics{position:relative}#tutor-course-topics .inside{padding:0;margin:0}#tutor-course-topics a:focus{-webkit-box-shadow:none;box-shadow:none}#tutor-course-topics .toggle-indicator:before{margin-top:20px}.tutor-topics-wrap:nth-child(2n){background:#f6f8fa}#tutor-course-content-wrap{border:1px solid #ddd;margin-top:20px}#tutor-course-content-wrap .tutor-topics-edit-form,#tutor-course-content-wrap .tutor-metabox-add-topics{border-left:none;border-right:none;margin-top:0}#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body{background:#ebeef0;padding:0px}.tutor-course-builder-button{line-height:35px;color:#393c40;display:inline-block;padding:0 20px;border-radius:4px;margin-right:10px;border:1px solid #d3d4d5;background-color:#f2f2f2;cursor:pointer;vertical-align:top;-webkit-transition:300ms;transition:300ms;font-weight:400}.tutor-course-builder-button i{line-height:35px;display:inline-block;vertical-align:top;margin-right:6px}.tutor-course-builder-button.tutor-updating-message i{display:none}.tutor-course-builder-button.tutor-btn-lg{line-height:40px}.tutor-add-quiz-button-wrap{padding:15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-add-quiz-button-wrap>*+*{margin-left:15px}.tutor-course-builder-button.active{color:#fff;background:var(--tutor-primary-color);border-color:var(--tutor-primary-color)}.tutor-course-builder-button:hover{-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-btn-lg i{color:var(--tutor-primary-color);vertical-align:top;margin-right:5px;font-size:16px;display:inline-block;line-height:40px}.tutor-course-builder-button.active i,.tutor-course-builder-button:hover i{color:#fff}.tutor-course-builder-button.tutor-success{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);color:#fff}.tutor-updating-message:before{display:inline-block;font-family:"tutor";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;content:"\e91d";-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;margin-right:6px}.rtl .tutor-updating-message:before{margin-right:0;margin-left:6px}.lesson-modal-close-wrap a{background:#ffffff;width:50px;height:59px;display:inline-block;text-align:center;line-height:57px;color:#3a3d42;font-size:15px;position:absolute;right:0;top:0}.lesson-modal-close-wrap a:hover{color:red}.lesson-modal-form-wrap .lesson-modal-field-row{padding:10px 0}.lesson-modal-field.tutor-lesson-modal-title-wrap{width:95%}.lesson-modal-field-row input[type="text"]{background-color:#fff;border:1px solid #ddd;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;color:#333;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0 10px 0 0;min-width:400px;min-height:35px}.tutor-lesson-modal-title-wrap input{width:100%}.lesson-modal-form-wrap .tutor-option-field-row{padding:10px 0}.lesson-modal-form-wrap .tutor-option-field-row:last-child{border-bottom:none}.tutor-lesson-modal-wrap .modal-footer{padding:10px 20px;background-color:#fff;width:100%;position:sticky;bottom:0;position:-webkit-sticky}.tutor-option-field .tutor-lesson-edit-feature-img{width:100px;position:relative}.tutor-option-field .tutor-lesson-edit-feature-img img{width:100%;height:auto}a.tutor-lesson-thumbnail-delete-btn{position:absolute;top:0;right:0;color:red;background:#fff;padding:3px 5px;border-radius:5px}.tutor-get-pro-text{color:#e02424}.updating-icon:before{font-family:"tutor";content:"\e91d";-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;display:inline-block}.tutor-notice-warning{background-color:#fcf8e3;border-color:#faebcc;padding:20px;margin-bottom:10px}.tutor-modal-wrap{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:-1;background-color:rgba(0,0,0,0.5)}.tutor-modal-wrap.show{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";z-index:99999;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tutor-modal-wrap.loading .tutor-modal-content:before{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:"";z-index:9;background:url("../images/spinner.gif") no-repeat center center}.tutor-modal-wrap .tutor-modal-content{max-height:90%;overflow-y:auto;overflow-x:hidden;background-color:#fff;max-width:730px;margin:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);position:relative;-webkit-transition:all 200ms ease-out;transition:all 200ms ease-out;width:90%}.admin-bar .tutor-modal-wrap .tutor-modal-content{max-height:calc(90% - 32px);margin-top:32px}.tutor-modal-wrap .modal-footer{padding:20px 0;border-top:1px solid #eee}.tutor-modal-wrap .modal-footer.has-padding{padding:20px 15px}.tutor-modal-wrap .modal-container{padding:20px 20px 0}.tutor-modal-wrap.tutor-instructors-modal-wrap .modal-container p{margin-top:0}.tutor-modal-wrap .modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:15px 20px;border-bottom:1px solid #eeeff1}.tutor-modal-wrap .modal-title{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-modal-wrap .modal-header h1{padding:0;margin:0;font-size:23px;line-height:30px}.modal-container .modal-classic-btn-wrap{position:absolute;right:45px;top:14px}.modal-container .modal-classic-btn-wrap a{color:var(--tutor-primary-color)}.tutor-modal-wrap .modal-header h1::before,.tutor-modal-wrap .modal-header h1::after{display:none}.tutor-modal-wrap .search-bar{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-top:20px;padding-left:20px;padding-right:20px}.tutor-modal-wrap .search-bar input[type="text"]{width:100%;border:1px solid #eee;-webkit-box-shadow:none;box-shadow:none;padding:10px}.tutor-modal-wrap .modal-close-wrap a.modal-close-btn{width:50px;height:50px;background:#000;display:inline-block;text-align:center;line-height:47px;color:#fff;font-size:25px;position:absolute;right:0}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-title{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-close-wrap a.modal-close-btn{background:#ffffff;width:20px;height:20px;display:inline-block;text-align:center;line-height:28px;color:#3a3d42;font-size:22px;position:relative}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-header{padding:15px 20px;border-bottom:1px solid #eeeff1}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-header h1{padding:0}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-container{background-color:#f1f1f1;padding:0}#tutor-quiz-modal-tab-items-wrap{background-color:#fff;font-size:0;overflow:hidden}#tutor-quiz-builder-modal-tabs-container{padding:20px}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item{padding:15px 25px;display:inline-block;color:#393c40;border-left:1px solid #f1f1f1;overflow:hidden;line-height:17px;vertical-align:middle;font-size:14px !important}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active{background-color:#f1f1f1}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item i{float:left;font-size:17px;line-height:1;margin-right:5px}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active i{color:var(--tutor-primary-color)}.quiz-modal-tab-navigation-btn{padding:10px 20px;border-radius:3px}.quiz-modal-btn-next,.quiz-modal-btn-next:focus,.quiz-modal-btn-first-step,.quiz-modal-btn-first-step:focus,.quiz-modal-question-save-btn,.quiz-modal-question-save-btn:focus,.quiz-modal-settings-save-btn,.quiz-modal-settings-save-btn:focus{background-color:var(--tutor-primary-color);color:#ffffff}.quiz-modal-btn-next:hover,.quiz-modal-btn-first-step:hover,.quiz-modal-question-save-btn:hover,.quiz-modal-settings-save-btn:hover{color:#ffffff}.quiz-modal-btn-cancel,.quiz-modal-btn-back{color:#4b5981;border:1px solid #d4dadb}.tutor-quiz-builder-form-row .quiz-form-warning{color:#e88e06}.tutor-assignment-builder-modal-wrap .modal-container{padding:10px}.assignment-modal-form-wrap .tutor-option-field.tutor-assignment-modal-title-wrap{margin:0}.tutor-quiz-question-answers-form{background-color:#fff;padding:20px;-webkit-transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);border:1px solid #dedede;border-radius:3px;margin-bottom:20px}.advanced-options-tab-item{float:right}.tutor-course-builder-wrap{border:1px dashed #dcdfe5}.tutor-quiz-builder-modal-tabs-notice{background:#d8d8d8;line-height:20px;padding:10px 30px;color:#a4a4a4}.tutor-quiz-builder-modal-tabs-notice a{color:#a4a4a4;text-decoration:underline}.tutor-quiz-builder-group{margin-bottom:25px}.tutor-quiz-builder-group>p.warning{color:red;font-size:12px}.tutor-quiz-builder-group>p.help{color:#a4a4a4;font-size:12px;margin-top:7px}.tutor-quiz-builder-group>h4{color:#393c40;font-weight:600;margin:0 0 15px}.tutor-quiz-builder-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:-10px;margin-right:-10px}.tutor-quiz-builder-col{padding-left:10px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-quiz-builder-col.auto-width{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-quiz-builder-group textarea,.tutor-quiz-builder-group input[type="text"],.tutor-quiz-builder-group input[type="email"],.tutor-quiz-builder-group input[type="number"],.tutor-quiz-builder-group input[type="password"]{line-height:40px;padding:5px 0;text-indent:15px;background:#fff;display:inline-block;border:1px solid #dedede;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;width:100%;color:#393c40}.tutor-quiz-builder-group textarea:focus,.tutor-quiz-builder-group input[type="text"]:focus,.tutor-quiz-builder-group input[type="email"]:focus,.tutor-quiz-builder-group input[type="number"]:focus,.tutor-quiz-builder-group input[type="password"]:focus{border-color:var(--tutor-primary-color)}.tutor-quiz-builder-group textarea{height:80px;resize:none;text-indent:0;padding:11px 15px;line-height:22px}.tutor-quiz-builder-group textarea[name="quiz_description"]{height:150px}.tutor-quiz-builder-group select{border:1px solid #ccc;-webkit-box-shadow:none;box-shadow:none;height:42px !important;padding:0 12px !important;margin:0}.tutor-quiz-builder-modal-control-btn-group{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px}.question_form_inner{padding:0 20px 20px;margin-top:0}.tutor-quiz-builder-modal-control-btn-group .quiz-builder-btn-group-left{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn{display:inline-block}.tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn:not(:last-child){margin-right:6px}.modal-container .tutor-quiz-add-question-btn{border:1px solid #c6c9cf;padding:10px 15px;color:#393c40;display:inline-block;border-radius:3px}.modal-container .tutor-quiz-add-question-btn i{color:var(--tutor-primary-color);line-height:16px;margin-right:3px}.quiz-form-field-col{margin-right:20px}.quiz-form-field-col.result-fail{width:100%}.quiz-modal-switch-field{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:30px}.quiz-modal-switch-field label.btn-switch{margin-right:20px;position:relative;vertical-align:top}label.btn-switch input:checked+.btn-slider{background-color:var(--tutor-success-button-color)}.btn-switch+span{line-height:24px;display:inline-block;margin-left:8px;font-weight:700;vertical-align:top}.tutor-select{position:relative}.tutor-select .select-header{border:1px solid #dedede;margin:0;padding:10px;width:100%;-webkit-box-shadow:none;box-shadow:none;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px}.tutor-select .select-header .lead-option{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-select .select-header .select-dropdown{line-height:22px}.tutor-select .select-header .lead-option .question-type-pro{display:none}.tutor-select .tutor-select-options{border:1px solid #dedede;background-color:#fff;padding:22px 10px 8px;width:calc(100% - 22px);position:absolute;font-size:0;z-index:9;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-shadow:0px 2px 10px rgba(0,0,0,0.08);box-shadow:0px 2px 10px rgba(0,0,0,0.08);top:55px;border-radius:3px}.tutor-select .tutor-select-options .tutor-select-option{width:calc(33.3333% - 22px);display:inline-block;padding:9px;cursor:pointer;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 11px 15px;border:1px solid #e2e2e2;border-radius:3px;font-size:13px}.tutor-select .tutor-select-options .tutor-select-option:hover{border-color:var(--tutor-primary-color)}.question-type-pro{color:#fff;font-size:9px;right:11px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}i.tutor-icon-block{padding:0;color:#fff;border-radius:3px;margin-right:2px;display:inline-block;width:22px;height:22px;text-align:center;line-height:22px}i.tutor-icon-block.tutor-icon-short-ans{background-color:#f37512}i.tutor-icon-block.tutor-icon-image-ans{background-color:#a322f9}i.tutor-icon-block.tutor-icon-yes-no{background-color:var(--tutor-primary-color)}i.tutor-icon-block.tutor-icon-multiple-choice{background-color:#9034a9}i.tutor-icon-block.tutor-icon-mark{background-color:#00b890}i.tutor-icon-block.tutor-icon-open-ended{background-color:#fe3129}i.tutor-icon-block.tutor-icon-fill-gaps{background-color:#ffbf00}i.tutor-icon-block.tutor-icon-answer-shorting{background-color:#f80089}i.tutor-icon-block.tutor-icon-assesment{background-color:#274055}i.tutor-icon-block.tutor-icon-matching{background-color:#8a4a1b}i.tutor-icon-block.tutor-icon-image-matching{background-color:#f37512}i.tutor-icon-block.tutor-icon-ordering{background-color:var(--tutor-primary-color)}i.tutor-icon-block.tutor-icon-plus-square-button,i.tutor-icon-block.tutor-icon-plus{background-color:var(--tutor-success-button-color)}.create-lesson-in-topic-btn i.tutor-icon-block.tutor-icon-plus{background-color:var(--tutor-primary-color)}a.back-to-quiz-questions-btn{font-size:16px;font-weight:300;color:#393c40;margin-bottom:10px;display:block}a.back-to-quiz-questions-btn.tutor-updating-message i{display:none}.modal-container .quiz-questions-form{padding:20px}#quiz-builder-tab-advanced-options .tutor-quiz-builder-form-cols-row .quiz-form-field-col:first-child{-webkit-box-flex:0;-ms-flex:0 0 150px;flex:0 0 150px}.question-form-header{margin-bottom:20px}.quiz-question-form-body{margin-bottom:25px}.quiz-builder-question-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:15px}.quiz-builder-question{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff;padding:10px;border:1px solid #e2e2e2;border-radius:3px;max-width:calc(100% - 52px)}.quiz-builder-question .question-sorting{margin-right:10px;line-height:22px}.quiz-builder-question .question-sorting i{display:block;line-height:24px}.quiz-builder-question .question-edit-icon{line-height:22px}.quiz-builder-question .question-edit-icon .tutor-quiz-open-question-form.tutor-updating-message i{display:none}.quiz-builder-question .question-title{-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:22px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-right:10px}.quiz-builder-question .question-icon{-webkit-box-flex:0;-ms-flex:0 0 155px;flex:0 0 155px}.quiz-builder-qustion-trash a{display:block;padding:0 0 0 10px;font-size:20px;color:rgba(57,60,64,0.4);line-height:44px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider{border:1px solid #dedede;padding:20px 70px 20px 10px;background-color:#ffffff;position:relative;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content{background:var(--tutor-primary-color);border:none;height:4px;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-header{background:#dedede;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content .ui-state-default{background:var(--tutor-primary-color);border:1px solid var(--tutor-primary-color);border-radius:50%;margin-top:-2px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .tutor-field-type-slider-value{font-size:16px;font-weight:600;background:var(--tutor-primary-color);position:absolute;right:5px;top:50%;margin:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);line-height:34px;width:43px;text-align:center;border-radius:4px;color:#fff}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .tutor-field-type-slider-value:before{content:"";position:absolute;border:7px solid transparent;top:50%;border-right-color:var(--tutor-primary-color);right:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tutor-quiz-answer-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-quiz-answer{background-color:#fff;-webkit-box-flex:1;-ms-flex:1;flex:1;padding:10px 15px;border:1px solid #dedede;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:22px;border-radius:3px;margin-bottom:15px}.tutor-quiz-answer .tutor-quiz-answer-edit a{display:block;padding:0px 9px}.tutor-quiz-answer-trash-wrap a.answer-trash-btn{padding:0 10px;display:inline-block;line-height:44px}span.tutor-quiz-answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-quiz-answer-media .option-media-preview{margin-bottom:20px}.tutor-quiz-answer-media .option-media-preview img{max-width:80px;height:auto}.tutor-question-answer-image{margin-right:10px}.tutor-question-answer-image img{max-height:25px;width:auto}button#quiz-answer-save-btn,button#quiz-answer-edit-btn{background-color:var(--tutor-success-button-color);color:#fff;padding:10px 15px;border:none;cursor:pointer}button#quiz-answer-save-btn:hover,button#quiz-answer-edit-btn:hover{background-color:var(--tutor-success-button-color)}.tutor-media-upload-wrap{border:1px solid #dedede;display:-webkit-box;display:-ms-flexbox;display:flex;width:130px}.tutor-media-upload-wrap img{max-width:100%}.tutor-media-preview{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-media-upload-btn{display:block;padding:10px;font-size:50px;line-height:50px;text-align:center;color:#dedede}.tutor-media-upload-trash-wrap{border-left:1px solid #dedede}.tutor-media-upload-trash{color:#dedede;display:block;line-height:50px;padding:12px}.tutor-quiz-answers-form-footer.tutor-quiz-builder-form-row{margin-top:40px;margin-bottom:10px}.tutor-metabox-add-topics,.tutor-topics-edit-form{background-color:#f7f7f7;border:1px solid #dcdfe5;margin-top:25px;padding:20px}.tutor-course-builder-section{margin-bottom:60px}.tutor-course-builder-section-title h3{font-size:20px;font-weight:700;color:#1d1f37;position:relative;overflow:hidden;z-index:1;margin:0 0 25px;cursor:pointer}.tutor-course-builder-section-title h3::after{content:"";position:absolute;top:50%;left:0;width:100%;height:1px;background:var(--tutor-primary-color);z-index:-1}.tutor-course-builder-section-title h3 span,.tutor-course-builder-section-title h3 i{float:left;background-color:#fff;font-size:20px;line-height:20px}.tutor-course-builder-section-title h3 i{color:var(--tutor-primary-color);font-size:14px}.tutor-course-builder-section-title h3 span{padding:0 15px 0 9px}.tutor-frontend-builder-item-scope{margin-bottom:30px}.tutor-frontend-builder-item-scope:last-child{margin-bottom:0}.tutor-builder-item-heading{font-weight:500;line-height:21px;margin-bottom:10px;display:block}.builder-course-thumbnail-upload-wrap>div{font-size:var(--tutor-text-size);line-height:25px;margin-bottom:20px;font-weight:400}.builder-course-thumbnail-img-src{position:relative}.builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn{font-size:10px;position:absolute;top:-4px;left:-4px;color:#e53935;-webkit-transition:300ms;transition:300ms;border-radius:50%;width:20px;height:20px;line-height:20px;background:#fff;text-align:center}.builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn i{line-height:20px}.tutor-course-builder-header{text-align:right;font-size:12px}.tutor-course-builder-section .course-empty-content{margin:15px 0}.tutor-course-builder-section .tutor-course-builder-header a{color:#393c40}.tutor-course-builder-section .tutor-course-builder-header a:first-child{padding-right:7px}.tutor-course-builder-section .tutor-course-builder-header a:last-child{padding-left:7px}.tutor-course-builder-section .tutor-course-builder-header{margin-top:-15px}.tutor-course-builder-section .new-topic-btn-wrap{padding:0;margin-top:20px}.tutor-course-available-instructors{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-available-instructors .added-instructor-item{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 15px);flex:0 0 calc(50% - 15px);max-width:calc(50% - 15px);border:1px solid #dcdfe5;padding:13px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;position:relative;margin-bottom:30px}.tutor-course-available-instructors .added-instructor-item .instructor-control{position:absolute;right:14px;top:50%;font-size:12px;-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0;-webkit-transition:300ms;transition:300ms}.tutor-course-available-instructors .added-instructor-item .instructor-control a{color:red}.tutor-course-available-instructors .added-instructor-item:hover .instructor-control{opacity:1}.tutor-course-available-instructors .added-instructor-item .instructor-icon{height:45px;width:45px;overflow:hidden;border-radius:50px;margin-right:15px}.tutor-course-available-instructors .added-instructor-item .instructor-icon img{width:100%}.tutor-course-available-instructors .added-instructor-item .instructor-name{position:relative}.tutor-course-available-instructors .added-instructor-item .instructor-name img{display:inline-block;margin-left:10px;width:18px}.tutor-course-available-instructors .added-instructor-item .instructor-name img:hover+i.instructor-name-tooltip{opacity:1}.tutor-course-available-instructors .added-instructor-item i.instructor-name-tooltip{-webkit-transition:300ms;transition:300ms;opacity:0;position:absolute;bottom:34px;right:9px;background:#2a344f;-webkit-transform:translateX(50%);transform:translateX(50%);color:#fff;font-size:12px;font-style:normal;padding:0 8px;border-radius:15px;line-height:20px;z-index:1}.tutor-course-available-instructors .added-instructor-item i.instructor-name-tooltip::before{content:"";position:absolute;border:5px solid #2a344f;bottom:-3px;left:50%;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);z-index:-1}.tutor-course-available-instructors .added-instructor-item:nth-child(2n){margin-left:30px}.tutor-addons-list .plugin-icon{height:120px}.btn-switch{display:inline-block;height:22px;position:relative;width:40px}.btn-switch input{display:none}.btn-slider{background-color:#ccc;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;-webkit-transition:0.4s;transition:0.4s}.btn-slider:before{background-color:#fff;bottom:3px;content:"";height:16px;left:4px;position:absolute;-webkit-transition:0.4s;transition:0.4s;width:16px}input:checked+.btn-slider{background-color:var(--tutor-primary-color)}input:checked+.btn-slider:before{-webkit-transform:translateX(16px);transform:translateX(16px)}.btn-slider.btn-round{border-radius:34px}.btn-slider.btn-round:before{border-radius:50%}.tutor-video-embeded-wrap{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%}.tutor-video-embeded-wrap iframe,.tutor-video-embeded-wrap object,.tutor-video-embeded-wrap embed{position:absolute;top:0;left:0;width:100%;height:100%}.select2-selection__rendered [class^="tutor-icon-"]{display:inline-block;vertical-align:top;margin-right:6px}.select2-results__options [class^="tutor-icon-"]{color:var(--tutor-primary-color);display:inline-block;vertical-align:top;margin-right:6px}.select2-results__option--highlighted [class^="tutor-icon-"]{color:#fff}.tutor-video-metabox-wrap{margin-bottom:50px}.video-metabox-source-input-wrap{padding:30px;background-color:#f4f7f8;border:1px solid #dcdfe5;border-radius:3px}.video-metabox-source-html5-upload{background-color:#fff;text-align:center;padding:40px 20px;border:1px solid #dcdfe5;border-radius:3px}.video-metabox-source-html5-upload p{margin-bottom:5px}.tutor-video-metabox-wrap p{margin:0;padding:0}.video-metabox-source-html5-upload .video-upload-icon i{font-size:50px;color:var(--tutor-primary-color)}.video_source_upload_wrap_html5{margin-top:10px}.video-metabox-source-html5-poster{padding-top:30px}.video_source_wrap_html5{width:100%}.builder-course-thumbnail-upload-wrap .button-transparent{float:right;background:transparent !important}.builder-course-thumbnail-upload-wrap .button-transparent:hover{background:var(--tutor-primary-color) !important}.html5-video-poster{height:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.html5-video-poster .tutor-builder-course-video-poster-text{text-align:left;padding-left:20px}.html5-video-poster .tutor-builder-course-video-poster-text h5{font-size:14px;font-weight:700;margin:0 0 6px;line-height:1}.html5-video-poster .tutor-builder-course-video-poster-text span{font-size:14px;font-weight:400}.html5-video-poster img{height:100%;width:auto}.no-memberhsip-msg-wrap p{margin:0}.content-drip-message-wrap.tutor-error-msg{margin:40px 50px}.content-drip-message-wrap{margin:120px}.content-drip-wrap-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.content-drip-wrap-flex .content-drip-left{margin-right:50px}.content-drip-wrap-flex ul{margin:0;list-style-position:inside}.content-drip-wrap-flex ul li a{color:var(--tutor-primary-color)}.tutor-alert{border:1px solid #f8a201;background:#fffff2;position:relative;border-radius:3px;padding:20px 25px 20px 95px;color:#a86d00;margin-bottom:20px}.tutor-alert p{margin-bottom:10px}.tutor-alert p:last-child{margin:0}.tutor-alert.tutor-alert-info{border:1px solid #13aaf6;background:#eaf8ff;color:#0586c7}.tutor-alert.tutor-alert-info::before{content:"\e96c";background:#13aaf6}.tutor-alert.tutor-alert-danger{border:1px solid #fe1a1a;background:#fff2f2;color:#a50000}.tutor-alert.tutor-alert-success{border:1px solid #69bc0d;background:#f6fff2;color:#3d7400}.tutor-alert::before{content:"\e95f";position:absolute;font-size:30px;font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:70px;top:0;left:0;text-align:center;background:#f8a201;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#ffffff}.tutor-alert.tutor-alert-danger::before{content:"\e913";background:#fe1a1a}.tutor-alert.tutor-alert-success::before{content:"\e90f";background:#69bc0d}.tutor-alert-content p{margin:0}.gradename-bg{text-align:center;color:#ffffff;height:32px;min-width:32px;font-size:16px;line-height:32px;padding:0 8px;display:inline-block;border-radius:20px;font-weight:bold;margin-right:7px}.gradename-outline{text-align:center;height:32px;min-width:32px;font-size:16px;line-height:26px;padding:0 8px;display:inline-block;border-radius:20px;border:2px solid;margin-right:7px}.generate-course-gradebook-btn-wrap{margin:10px 0}.gradebook-result-for-label{margin:0;padding:4px 7px;background-color:#e8eff1;display:inline-block;margin-bottom:10px}table.course-single-gradebooks{border-spacing:0;width:100%;border-collapse:collapse;border:1px solid #dcdfe5}table.course-single-gradebooks th{padding:1em 1.41575em;text-align:left;vertical-align:top;border-bottom:1px solid #dcdfe5}table.course-single-gradebooks th{font-weight:600}table.course-single-gradebooks thead th{background-color:rgba(220,223,229,0.14);padding:1.41575em;vertical-align:middle}table.course-single-gradebooks tbody td{border-bottom:1px solid #dcdfe5;background-color:#ffffff !important}table.course-single-gradebooks a{color:#4b5981}.text-label{margin:0;padding:4px 7px;background-color:#e8eff1;display:inline-block;border-radius:3px}.text-label.submitted-assignment-grade-pass{background-color:#86b223;color:#ffffff}.text-label.submitted-assignment-grade-failed{background-color:#d71830;color:#ffffff}.tutor-bp-message-recipient-header{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.tutor-bp-recipient-info-wrap{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-bp-message-recipient-avatar-wrap img{width:70px;height:70px;border-radius:50%}.tutor-bp-message-recipient-avatar-wrap{margin-right:35px}.tutor-bp-message-recipient-header .tutor-bp-thread-recipient-name h3{margin:10px 0 8px !important;font-size:22px;font-weight:600;line-height:28px}.tutor-bp-message-recipient-header .tutor-bp-thread-recipient-name h4{margin:0 0 20px !important;font-size:16px;line-height:1;font-weight:500}.tutor-bp-enrolled-courses-wrap{margin:0}.tutor-bp-enrolled-courses-wrap .tutor-bp-enrolled-total-course-notice{font-weight:400;color:#1c294b;margin:10px 0 8px !important}.tutor-bp-enrolled-courses-wrap ul{padding:0 0 0 17px;margin:0;color:#50616f}.tutor-bp-enrolled-courses-wrap ul li a{line-height:1.7;display:block;color:#54616d;padding-left:10px}.tutor-bp-enrolled-courses-wrap ul li a:hover{color:var(--tutor-primary-color);opacity:1;-webkit-transition:300ms;transition:300ms;text-decoration:underline !important}.oxy-tutor-element{width:100%}.tutor-dashboard-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:30px;border-bottom:1px solid #dcdfe5;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-dashboard-header .tutor-btn.bordered-btn{background-color:transparent;text-transform:uppercase;font-weight:400;border-radius:2px}.tutor-dashboard-header .tutor-btn.bordered-btn i{font-size:20px}.tutor-dashboard-header .tutor-star-rating-group{margin-right:3px}.tutor-dashboard-header-avatar img{display:block;width:150px;height:150px;border-radius:50%}.tutor-dashboard-header-info{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-left:24px;padding-top:15px;padding-bottom:15px}.tutor-dashboard-header-button{padding-top:15px}.tutor-dashboard-header-display-name h4{font-size:30px;margin-top:0px;margin-bottom:10px;line-height:34px}.tutor-dashboard-header-stats{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:25px}.tutor-dashboard-header-stats>div:not(:first-child){margin-left:30px}.tutor-dashboard-social-icons{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-dashboard-social-icons h4{margin:0 10px 0 0;font-size:var(--tutor-text-size);line-height:25px}.tutor-dashboard-social-icons a{display:inline-block;font-size:12px;padding:0 5px;line-height:25px;color:#393c40;-webkit-transition:300ms;transition:300ms}.tutor-dashboard-social-icons a:hover{color:var(--tutor-primary-color)}.tutor-profile-completion-warning{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 0;border-bottom:1px solid #dcdfe5}.tutor-profile-completion-warning .profile-completion-warning-icon{margin-top:10px}.tutor-profile-completion-warning .profile-completion-warning-icon span{font-size:40px;color:#ed9700;padding:0 20px}.tutor-profile-completion-warning .profile-completion-warning-content{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-positive:1;flex-grow:1;-webkit-box-flex:1}.tutor-profile-completion-warning .profile-completion-warning-content h4{font-size:20px;line-height:30px;margin:0;padding:0;width:100%}.tutor-profile-completion-warning .profile-completion-warning-content p{margin-bottom:10px;font-size:14px;font-weight:300;color:#737787}.tutor-profile-completion-warning .profile-completion-warning-content p a{font-weight:400;color:#3e64de}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details{-ms-flex-positive:1;flex-grow:1;-webkit-box-flex:1}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul{margin:0;list-style:none}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li{display:inline;position:relative;padding-left:16px;color:#737787}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li:not(:last-child){margin-right:21px}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li::before{content:"\2022";position:absolute;color:#f44337;font-weight:bold;display:inline-block;left:0}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li span{color:#3f435b}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status p span{font-weight:400}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status .tutor-progress-bar-wrap .tutor-progress-bar{height:6px;border-radius:8.5px;background-color:#ededf0}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status .tutor-progress-bar-wrap .tutor-progress-filled{height:6px;border-radius:3px;background-color:#ed9700}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status .tutor-progress-bar-wrap .tutor-progress-filled::after{display:none}.tutor-dashboard-info-table-wrap{margin-bottom:30px}.tutor-dashboard-info-table-wrap table{margin-bottom:0;border-collapse:collapse;border:1px solid #dcdfe5;border-radius:4px;width:100%}.tutor-dashboard-info-table-wrap>h3{font-size:20px;font-weight:500;border:1px solid #dcdfe5;border-bottom:none;margin:0;padding:30px;border-radius:4px 4px 0 0}.tutor-dashboard-info-table-wrap>h3+table{border-radius:0 0 4px 4px}.tutor-dashboard-info-table thead{background:#fafbfc}.tutor-dashboard-info-table thead tr td{padding:15px}.tutor-dashboard-info-table tbody tr td{background:transparent !important;padding:20px 15px}.tutor-dashboard-info-table thead tr,.tutor-dashboard-info-table tbody tr{border:1px solid #dcdfe5}.tutor-dashboard-info-table thead tr td:first-child,.tutor-dashboard-info-table tbody tr td:first-child{padding-left:25px}.tutor-dashboard-info-table span.pending,.tutor-dashboard-info-table span.pass,.tutor-dashboard-info-table span.fail{color:#fff;font-size:14px;line-height:18px;padding:1px 6px;border-radius:2px}.tutor-dashboard-info-table span.pending{background-color:#f5a623}.tutor-dashboard-info-table span.fail{background-color:#d71830}.tutor-dashboard-info-table span.pass{background-color:var(--tutor-success-button-color)}.tutor-dashboard-single-review{border:1px solid #dcdfe5;border-radius:4px;margin-bottom:30px}.tutor-dashboard-review-heading{padding:10px 20px;border-bottom:1px solid #dcdfe5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.individual-dashboard-review-body{padding:10px 20px}.tutor-dashboard-review-title{font-size:18px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:300}.tutor-dashboard-review-title a{font-weight:500;color:var(--tutor-primary-color)}.tutor-dashboard-review-title a:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-review-links{white-space:nowrap;font-weight:400}.tutor-dashboard-review-links a{color:#8c94a8;margin-left:10px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px}.tutor-dashboard-review-links a i{line-height:inherit;font-size:14px;margin-right:5px}.individual-dashboard-review-body .review-meta{font-size:85%;margin:0;color:#8c94a8}.individual-star-rating-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-edit-review-modal-wrap .modal-close-wrap a.modal-close-btn{color:#222222;background:none;font-size:20px;top:8px}.tutor-modal-wrap form{margin-bottom:20px}.tutor-dashboard-info-cards{margin:0 -15px 15px;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-dashboard-info-cards .tutor-dashboard-info-card{padding:15px;min-width:33.333%}.tutor-dashboard-info-cards .tutor-dashboard-info-card p{margin:0;padding:15px 25px;background:#282c36;color:#ffffff;border-radius:4px}.tutor-dashboard-info-cards .tutor-dashboard-info-card p span.tutor-dashboard-info-val{display:block;font-weight:700;font-size:30px;line-height:1.618}.tutor-dashboard-info-cards .tutor-dashboard-info-card p span span{display:inline-block}.tutor-dashboard-info-cards .tutor-dashboard-info-card p>*{vertical-align:middle}.tutor-dashboard-content{margin-bottom:60px}.tutor-dashboard-content>h2{margin-bottom:20px}.prev-btn{font-size:16px;line-height:1.88;color:#3f435b}.prev-btn span{font-size:18px;font-weight:800;color:#3e64de;margin-right:7px}.tutor-dashboard-content .tutor-quiz-attempt-history tr th,.tutor-dashboard-content .tutor-quiz-attempt-history tr td{vertical-align:middle;border:none}.tutor-dashboard-content .tutor-quiz-attempt-history tr td:first-child{padding:15px 13px !important}.tutor-dashboard-content .tutor-quiz-attempt-history table span.result-fail,.tutor-dashboard-content .tutor-quiz-attempt-history table span.result-pass{width:auto;height:auto;line-height:19px;padding:0 6.5px;margin-right:4px}.label-course-status{background-color:#cccccc;padding:3px 5px;color:#ffffff;font-size:12px;text-transform:capitalize}.label-course-publish{background-color:var(--tutor-success-button-color)}.tutor-dashboard-content .quiz-attempt-answers-wrap table th{font-size:14px;font-weight:400;line-height:1.5;letter-spacing:0.12px;color:#737787;padding:15px 10px}.tutor-dashboard-content .tutor-quiz-attempt-history table thead tr,.single-quiz-page.tutor-quiz-attempt-history table thead tr{background-color:#fafbfc}.tutor-dashboard-content .tutor-quiz-attempt-history table tr,.single-quiz-page.tutor-quiz-attempt-history table tr{border:0;background-color:#fff}.tutor-dashboard-content .tutor-quiz-attempt-history table tr:first-child,.single-quiz-page.tutor-quiz-attempt-history table tr:first-child{background-color:#fafbfc}.tutor-dashboard-content .tutor-quiz-attempt-history table th,.tutor-dashboard-content .tutor-quiz-attempt-history table td,.single-quiz-page.tutor-quiz-attempt-history table th,.single-quiz-page.tutor-quiz-attempt-history table td{border:1px solid #dcdfe5 !important;vertical-align:middle}.tutor-dashboard-content .tutor-quiz-attempt-history table th:first-child,.tutor-dashboard-content .tutor-quiz-attempt-history table td:first-child,.single-quiz-page.tutor-quiz-attempt-history table th:first-child,.single-quiz-page.tutor-quiz-attempt-history table td:first-child{width:62%}.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(2),.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(4),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(2),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(4),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(2),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(4),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(2),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(4){width:11%}.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(3),.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(5),.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(6),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(3),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(5),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(6),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(3),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(5),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(6),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(3),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(5),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(6){width:9%}.tutor-dashboard-content .tutor-quiz-attempt-history table th,.single-quiz-page.tutor-quiz-attempt-history table th{font-size:14px;font-weight:500;line-height:1.14;color:#8792b2}.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(n+3),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(n+3){text-align:center}.tutor-dashboard-content .tutor-quiz-attempt-history table td,.single-quiz-page.tutor-quiz-attempt-history table td{background-color:#fff;font-size:14px;font-weight:400;color:#4b5981}.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(n+3),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(n+3){font-weight:500;text-align:center;padding-left:3px !important;padding-right:3px !important}.tutor-dashboard-content .tutor-quiz-attempt-history table td:last-child,.single-quiz-page.tutor-quiz-attempt-history table td:last-child{padding-left:0px !important;padding-right:0px !important}.tutor-dashboard-content .tutor-quiz-attempt-history table td a,.single-quiz-page.tutor-quiz-attempt-history table td a{font-weight:500;color:#4b5981;text-decoration:underline;word-break:initial}.tutor-dashboard-content .tutor-quiz-attempt-history table td .course a,.single-quiz-page.tutor-quiz-attempt-history table td .course a{font-weight:600;line-height:1.29;color:#4b5981;text-decoration:none}.tutor-dashboard-content .tutor-quiz-attempt-history table td .course-meta,.single-quiz-page.tutor-quiz-attempt-history table td .course-meta{display:inline-block;margin-top:5px}.tutor-dashboard-content .tutor-quiz-attempt-history table td .course-meta span:nth-child(2),.single-quiz-page.tutor-quiz-attempt-history table td .course-meta span:nth-child(2){margin:0 17px}.tutor-dashboard-content .tutor-quiz-attempt-history table td .student,.single-quiz-page.tutor-quiz-attempt-history table td .student{font-weight:600;line-height:1.29;color:#4b5981}.tutor-dashboard-content .tutor-quiz-attempt-history table td .student-meta,.single-quiz-page.tutor-quiz-attempt-history table td .student-meta{display:inline-block;margin-top:5px}.single-quiz-page.tutor-quiz-attempt-history table{margin-bottom:30px}.tutor-dashboard-content .tutor-quiz-attempt-history table a{color:var(--tutor-primary-color);font-weight:700;line-height:24px}.tutor-dashboard-content .tutor-quiz-attempt-history table a:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-content .tutor-quiz-attempt-history table a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-item-group{padding:25px;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:30px}.tutor-dashboard-item-group>h4{font-size:20px;color:var(--tutor-primary-color);font-weight:500}.tutor-dashboard-item-group>h4:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-assignment-submitted-table tr td{text-align:center}.tutor-dashboard-assignment-submitted-table tr td a{color:#8c94a8;-webkit-transition:300ms;transition:300ms}.tutor-dashboard-assignment-submitted-table tr td a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-assignment-submitted-table tr td,.tutor-dashboard-assignment-submitted-table tr th{border:1px solid #dcdfe5}.tutor-assignment-review-header{margin-bottom:30px}.tutor-assignment-review-header h3{margin-bottom:10px;line-height:28px}.tutor-assignment-evaluate-wraps h3,.tutor-assignment-review-header h3 a{font-size:22px;font-weight:700;color:var(--tutor-text-color);display:block}.tutor-assignment-review-header p{margin:0;color:var(--tutor-text-color);font-weight:700}.tutor-assignment-review-header p a{font-weight:400;color:var(--tutor-text-color)}.tutor-assignment-review-header a{-webkit-transition:300ms;transition:300ms}.tutor-assignment-review-header a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-assignment-review{background:rgba(220,223,229,0.14);border:1px solid #dcdfe5;padding:25px;font-weight:400;border-radius:4px;margin-bottom:40px}.tutor-dashboard-assignment-review h5,.tutor-dashboard-assignment-review h4{font-size:16px;line-height:23px;font-weight:700;color:var(--tutor-text-color)}.tutor-dashboard-assignment-review h5{margin-bottom:15px}.tutor-dashboard-assignment-files{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-9px}.tutor-dashboard-assignment-files .uploaded-files{background-color:#fff;border:1px solid #dcdfe5;border-radius:4px;margin:9px;-webkit-transition:300ms;transition:300ms}.tutor-dashboard-assignment-files .uploaded-files:hover{-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.1);box-shadow:0 5px 10px rgba(0,0,0,0.1)}.tutor-dashboard-assignment-files .uploaded-files a i{margin-right:12px;color:#606c8f;float:left;font-size:28px;line-height:28px}.tutor-dashboard-assignment-files .uploaded-files a{color:var(--tutor-primary-color);display:block;overflow:hidden;line-height:28px;padding:15px 17px}.tutor-dashboard-assignment-files .uploaded-files a:hover{color:var(--tutor-primary-hover-color)}.tutor-assignment-evaluate-row{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-assignment-evaluate-row .tutor-option-field-label{-webkit-box-flex:0;-ms-flex:0 0 135px;flex:0 0 135px}.tutor-assignment-evaluate-row .tutor-option-field{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-assignment-evaluate-row .tutor-option-field-label label{display:block;padding-top:12px}.tutor-option-field-label label br{display:none}.tutor-option-field-label label p{margin:0;display:inline-block}.tutor-assignment-evaluate-row textarea,.tutor-assignment-evaluate-row .tutor-option-field input{border:1px solid #dcdfe5;height:50px;padding:0 15px;border-radius:4px;width:100px;background-color:#fff}.tutor-assignment-evaluate-row textarea{height:165px;width:100%}.tutor-assignment-evaluate-row{margin-bottom:60px}.tutor-assignment-evaluate-row p.desc{margin-bottom:0;margin-top:6px;font-style:italic}.tutor-dashboard-profile .tutor-dashboard-profile-item{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-dashboard-profile .tutor-dashboard-profile-item .heading{min-width:190px}@media (max-width: 480px){.tutor-dashboard-profile .tutor-dashboard-profile-item{-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-dashboard-profile .tutor-dashboard-profile-item .heading{min-width:100%;width:100%;font-weight:700;margin-bottom:6px}}.tutor-dashboard-profile .tutor-dashboard-profile-item .content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-dashboard-profile .tutor-dashboard-profile-item .content small{font-size:inherit;font-style:italic}.tutor-dashboard-profile .tutor-dashboard-profile-item .content small a{color:var(--tutor-primary-color)}.tutor-dashboard-profile .tutor-dashboard-profile-item .content small a:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-avater img{width:70px;height:70px;display:block;border-radius:50%}.tutor-dashboard-student-info h4{font-size:18px;color:var(--tutor-light-color);margin-bottom:0}.tutor-dashboard-student-info h4 a{color:var(--tutor-text-color)}.tutor-dashboard-user-role{font-weight:400}.tutor-dashboard-inline-links{margin-bottom:30px}.tutor-dashboard-inline-links ul{margin:0;padding:0;border-bottom:1px solid #dfe1e5}.tutor-dashboard-inline-links ul li{display:inline-block}.tutor-dashboard-inline-links ul li a{display:block;padding:5px 10px;color:var(--tutor-primary-color);margin-bottom:-1px;line-height:40px}.tutor-dashboard-inline-links ul li a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-inline-links ul li a:hover,.tutor-dashboard-inline-links ul li.active a{color:var(--tutor-primary-color);border-bottom:1px solid var(--tutor-primary-color);padding-bottom:4px}.tutor-dashboard-student-meta ul li:first-child{margin-left:0}@media (max-width: 767px){.tutor-dashboard-student-meta ul{display:block;border:none;padding:0}.tutor-dashboard-student-meta ul li{display:inline-block;color:var(--tutor-text-color);margin:5px;border:1px solid #dddddd;padding:5px 10px;border-radius:4px}}.tutor-dashboard-student-meta ul li strong{display:block;color:var(--tutor-light-color);font-weight:400}.tutor-dashboard-permalinks{list-style:none;margin:0px 0 20px;padding:20px 0;border-right:1px solid #dcdfe5}.tutor-dashboard-permalinks li a:hover{background-color:#edf0f9}.tutor-dashboard-permalinks li.active a{background-color:var(--tutor-primary-color);color:#ffffff}.tutor-dashboard-permalinks li.active a:hover{background-color:var(--tutor-primary-hover-color)}@media (max-width: 991px){.tutor-dashboard-student .tutor-col-3,.tutor-dashboard-student .tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.profile-completion-warning-details{margin-bottom:10px}}.tutor-dashboard-permalinks a{display:block;color:var(--tutor-text-color);padding:10px 20px;line-height:28px}.tutor-dashboard-permalinks a:before{content:"\e968";font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:15px;vertical-align:middle;color:var(--tutor-primary-color);opacity:0.6;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";font-size:17px}.tutor-dashboard-permalinks a:hover::before{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";color:var(--tutor-primary-hover-color)}.tutor-dashboard-permalinks li.active a:before{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";color:#fff}.tutor-dashboard-menu-bio a:before,.tutor-dashboard-menu-my-profile a:before{content:"\e963"}.tutor-dashboard-menu-enrolled-courses a:before{content:"\e969"}.tutor-dashboard-menu-courses_taken a:before,.tutor-dashboard-menu-my-courses a:before{content:"\e965"}.tutor-dashboard-menu-announcements a:before{content:"\e93f"}.tutor-dashboard-menu-wishlist a:before{content:"\e908"}.tutor-dashboard-menu-reviews a:before{content:"\e917"}.tutor-dashboard-menu-my-quiz-attempts a:before{content:"\e9ab"}.tutor-dashboard-menu-quiz-attempts a:before{content:"\e91f"}.tutor-dashboard-menu-question-answer a:before{content:"\e948"}.tutor-dashboard-menu-earning a:before{content:"\e96b"}.tutor-dashboard-menu-withdraw a:before{content:"\e960"}.tutor-dashboard-menu-settings a:before{content:"\e961"}.tutor-dashboard-menu-logout a:before{content:"\e962"}.tutor-dashboard-menu-purchase_history a:before{content:"\e964"}.tutor-dashboard-menu-assignments a:before{content:"\e98b"}.tutor-dashboard-content{padding-top:30px}.quiz-attempts-title,.tutor-quiz-attempt-history-title{font-size:22px;font-weight:600;line-height:1.27;color:#4b5981;margin-bottom:31px}.tutor-date-range-filter-wrap{margin:15px 0 20px;font-size:12px}.report-top-sub-menu{margin:0 10px 5px 0;display:inline-block;font-size:0}.report-top-sub-menu a{text-decoration:none;padding:5px 8px;border:1px solid #d7dadf;color:#aaaeb3;white-space:nowrap;display:inline-block;font-size:12px}.report-top-sub-menu a:not(:first-child){margin-left:-1px}.report-top-sub-menu a:hover{background:#edf0f9;color:#333}.report-top-sub-menu a.active{background-color:var(--tutor-primary-color);color:#ffffff;border:1px solid var(--tutor-primary-hover-color)}.tutor-dashboard-menu-divider{height:1px;margin:10px 0;overflow:hidden;background-color:#dcdfe5}.tutor-dashboard-menu-divider-header{color:#acacac;padding:10px 20px;cursor:default}.tutor-date-range-wrap{display:inline-block}.report-date-range-form{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0;max-width:370px}.date-range-input{position:relative}.date-range-input input{border-radius:0 !important;margin:0 !important;border-right:none !important;font-size:14px}.date-range-input:last-child{margin-right:0}.date-range-input:last-child button{border-radius:0}.date-range-input input,.date-range-input input[type="text"]{border:1px solid #d7dadf;-webkit-box-shadow:none;box-shadow:none;line-height:29px;margin:0;padding-right:30px;padding-top:0;padding-bottom:0;width:100%}.date-range-input i.tutor-icon-calendar{position:absolute;right:10px;top:7px}.date-range-input button{background-color:var(--tutor-primary-color);color:#ffffff;border:none;line-height:30px;padding:0 15px}.date-range-input button:hover{background-color:var(--tutor-primary-hover-color)}.report-download-csv-icon{float:right}.report-download-csv-icon a{text-decoration:none}.tutor-dashboard-statement-table-wrap{overflow-x:auto}table.tutor-dashboard-statement-table p{margin:0;padding:0}table.tutor-dashboard-statement-table p.small-text{font-size:12px;color:#666666}.tutor-mycourse-thumbnail{-webkit-box-flex:0;-ms-flex:0 0 250px;flex:0 0 250px;background-size:cover;background-position:center}.tutor-mycourse-content{padding:20px;-webkit-box-flex:1;-ms-flex:1;flex:1}@media (max-width: 580px){.tutor-mycourse-thumbnail{height:200px}.tutor-mycourse-thumbnail,.tutor-mycourse-content{min-width:100%;width:100%}.profile-completion-warning-details li{display:block !important}}.tutor-mycourse-content h3{margin:0 0 9px}.tutor-mycourse-content h3 a:hover{color:var(--tutor-primary-color)}.tutor-mycourse-rating{color:#f8c51c;font-size:14px}.tutor-mycourse-rating i{margin-right:4px}.tutor-mycourse-view,.tutor-mycourse-edit,.tutor-mycourse-delete{color:var(--tutor-light-color);-webkit-transition:300ms;transition:300ms}.tutor-mycourse-view i,.tutor-mycourse-edit i,.tutor-mycourse-delete i{line-height:inherit;display:inline-block;vertical-align:top;color:var(--tutor-primary-color)}.tutor-mycourse-view:hover,.tutor-mycourse-edit:hover,.tutor-mycourse-delete:hover{color:var(--tutor-primary-color)}.tutor-dashboard-content-inner .tutor-mycourse-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:30px;border:1px solid #dcdfe5;border-radius:4px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;overflow:hidden;position:relative}@media (max-width: 580px){.tutor-dashboard-content-inner .tutor-mycourse-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-course-status h4{display:none}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-mycourse-rating{margin-bottom:3px}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-mycourse-rating a{font-weight:400;margin-left:5px;color:#8c94a8}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-mycourse-rating a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-content-inner .tutor-mycourse-wrap p:last-child{margin-bottom:0}.tutor-mycourse-content .mycourse-footer{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-mycourse-content .mycourse-footer .tutor-mycourses-stats{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-dashboard-content-inner .tutor-mycourses-stats>*{margin-right:8px}.tutor-mycourse-status{margin-right:15px}.tutor-dashboard-content-inner h3 a{color:var(--tutor-text-color);font-size:22px;line-height:28px;font-weight:500;display:block}.tutor-dashboard-content-inner .tutor-course-metadata ul{display:block;list-style:none;margin:0 0 10px;padding:0}.tutor-dashboard-content-inner .tutor-progress-bar-wrap{margin-bottom:0}.tutor-dashboard-content-inner .tutor-course-metadata li{display:inline-block;color:var(--tutor-light-color);margin-left:20px}.tutor-dashboard-content-inner .tutor-course-metadata li:first-child{margin-left:0}.tutor-dashboard-content-inner .tutor-course-metadata li span{color:var(--tutor-text-color);margin-left:5px}.ui-datepicker{background-color:#fff;border:1px solid #eeeeee;display:none;margin-top:4px;padding:5px;width:180px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2a6496;-webkit-transition:color 0.1s ease-in-out;transition:color 0.1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{cursor:default;font-family:"tutor";-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;height:20px;line-height:1;margin-top:2px;width:30px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:right}.ui-datepicker .ui-datepicker-prev:before{content:"\e921"}.ui-datepicker .ui-datepicker-next:before{content:"\e903"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar th,.ui-datepicker .ui-datepicker-calendar td{text-align:center;padding:0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color 0.1s ease-in-out, color 0.1s ease-in-out;transition:background-color 0.1s ease-in-out, color 0.1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.ui-datepicker-calendar .ui-state-default{border:none;background:none}.ui-datepicker-calendar .ui-state-default.ui-state-highlight{background:#eeeeee;padding:3px;display:block}.tutor-table{width:100%}.tutor-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.tutor-course-delete-popup{text-align:center;font-size:16px;line-height:25px;font-weight:400;color:#8C94A8}.tutor-course-delete-popup img{width:110px;margin:0 auto}.tutor-course-delete-popup h3{font-weight:500;font-size:30px;margin:15px 0 25px}.tutor-modal-button-group{margin-top:55px}.tutor-modal-button-group button{line-height:30px;padding:10px 25px;color:#C7CCDA;border:2px solid #DDDFE7;border-radius:2px;background:#fff;min-width:220px;text-align:center;text-transform:uppercase;-webkit-transition:300ms;transition:300ms}.tutor-modal-button-group button+button{margin-left:20px}.tutor-modal-button-group button.tutor-danger{background:#F0576A;border-color:#F0576A;color:#ffffff}.tutor-modal-button-group button:hover{background:#fff;color:#333;border-color:#333}.tutor-modal-button-group button.tutor-danger:hover{background:#cd4a5a;border-color:#cd4a5a;color:#ffffff}@media (max-width: 768px){.tutor-modal-button-group button{padding:5px 20px;min-width:auto;margin-bottom:6px}.tutor-modal-button-group{margin-top:20px}}.withdraw-method-select-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -15px 40px}.withdraw-method-select-wrap .withdraw-method-select{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding:0 15px;margin-bottom:30px}.withdraw-method-select-wrap .withdraw-method-select label{display:block;padding:20px;margin:0;cursor:pointer;overflow:hidden;border:1px solid #DCDFE5;border-radius:4px;position:relative}.withdraw-method-select-wrap .withdraw-method-select input:checked+label{border-color:var(--tutor-success-button-color);-webkit-box-shadow:0 0 0 1px var(--tutor-success-button-color);box-shadow:0 0 0 1px var(--tutor-success-button-color)}.withdraw-method-select-wrap .withdraw-method-select label:after{content:'\e90f';position:absolute;right:-1px;top:-1px;border:1px solid #DCDFE5;height:22px;width:22px;text-align:center;line-height:22px;color:transparent}.withdraw-method-select-wrap .withdraw-method-select input:checked+label:after{color:#fff;background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);font-family:'tutor' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;font-size:13px}.withdraw-method-select-wrap .withdraw-method-select p{margin:0}.withdraw-method-select-wrap .withdraw-method-select label>p{font-size:20px;font-weight:600;color:var(--tutor-primary-color)}.withdraw-method-select-wrap .withdraw-method-select label span{color:#B0B6C8;font-weight:400}.withdraw-method-form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -15px}.withdraw-method-form>div{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:50%;padding:0 15px 20px}@media (max-width: 480px){.withdraw-method-form>div{width:100%}}.withdraw-method-form>div.withdraw-account-save-btn-wrap{width:100%}.withdraw-form-field-amount input[type='text'],.withdraw-method-forms-wrap .withdraw-method-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),.withdraw-method-forms-wrap .withdraw-method-form textarea{border:1px solid #DCDFE5;display:block;width:100%;background:transparent;-webkit-box-shadow:none;box-shadow:none;border-radius:4px}label[for="tutor_withdraw_amount"]{margin-bottom:7px;display:block}.withdraw-form-field-amount input[type='text']{margin-bottom:10px;height:45px}.withdraw-method-forms-wrap .withdraw-method-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):focus,.withdraw-method-forms-wrap .withdraw-method-form textarea:focus{border-color:var(--tutor-primary-color);outline:none}.withdraw-method-forms-wrap .withdraw-method-form textarea{min-height:80px}.withdraw-method-forms-wrap .withdraw-method-form label{color:#989EAF;margin-bottom:8px;display:block}.withdraw-method-forms-wrap .withdraw-method-form .withdraw-field-desc{font-size:12px;margin:5px 0 0;font-style:italic}.tutor-dashboard-assignment-table tr th,.tutor-dashboard-assignment-table tr td{border:1px solid #DCDFE5;vertical-align:middle;padding:20px}.tutor-dashboard-assignment-table tr th:not(:first-child),.tutor-dashboard-assignment-table tr td:not(:first-child){text-align:center}.tutor-dashboard-assignment-table tr h5{margin:0;font-size:16px;line-height:18px;font-weight:700;color:var(--tutor-text-color)}.tutor-dashboard-assignment-table tr h5:not(:last-child){margin-bottom:7px}.tutor-dashboard-assignment-table tr a{font-weight:400;color:var(--tutor-text-color)}.tutor-dashboard-assignment-table tr a:hover{color:var(--tutor-primary-color);-webkit-transition:300ms;transition:300ms}.tutor-announcement-content-wrap{text-align:left !important;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-announcement-content-wrap p{margin:0}.tutor-dashboard-announcement-sorting-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-column-gap:15px;-moz-column-gap:15px;column-gap:15px}.tutor-dashboard-announcement-sorting-wrap div:nth-child(1){-ms-flex-preferred-size:50%;flex-basis:50%}.tutor-dashboard-announcement-sorting-wrap div:nth-child(2){-ms-flex-preferred-size:20%;flex-basis:20%}.tutor-dashboard-announcement-sorting-wrap div:nth-child(3){-ms-flex-preferred-size:30%;flex-basis:30%}.tutor-dashboard-announcement-table tr{border:1px solid #dcdbdc;border-collapse:collapse}.tutor-dashboard-announcement-table th,.tutor-dashboard-announcement-table td{border:0}.tutor-dashboard-announcement-table th:last-child,.tutor-dashboard-announcement-table td:last-child{padding-right:30px}.tutor-dashboard-announcement-table th{padding:15px 40px;background-color:#f3f3f3}.tutor-dashboard-announcement-table td{padding:30px 40px}.tutor-announcement-datepicker{position:relative}.tutor-announcement-datepicker input,.tutor-announcement-datepicker i{position:absolute}.tutor-announcement-datepicker i{top:50%;right:10px;color:#3e64de}.tutor-announcement-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-announcement-buttons li{list-style:none}.tutor-dropdown{position:relative;cursor:pointer;margin-left:30px}.tutor-dropdown .tutor-icon-action{padding:5px 10px}.tutor-dropdown .tutor-icon-action:hover{background:#f3f3f3;border-radius:50%}.tutor-dropdown.show .tutor-dropdown-menu{display:block !important}.tutor-dropdown-menu:before{content:"";position:absolute;right:10px;background:linear-gradient(-45deg, transparent 50%, black 50%);height:10px;width:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg);top:-4px}.tutor-dropdown-menu{min-width:140px;background:#353535;color:white;width:100%;position:absolute;top:40px;right:-3px;display:none;border-radius:5px;padding:0;margin:0}.tutor-dropdown-menu li{list-style:none !important;padding:5px 15px 5px 15px;cursor:pointer}.tutor-dropdown-menu li:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.tutor-dropdown-menu li:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.tutor-dropdown-menu li:hover{background-color:#6b6b6b}.tutor-dropdwown-menu li i{padding-right:4px}.tutor-announcements-update-form .tutor-option-field-row input[type="text"],.tutor-announcements-update-form textarea,.tutor-announcements-form .tutor-option-field-row input[type="text"],.tutor-announcements-form textarea{width:100%;margin-top:8px}.tutor-announcements-form select,.tutor-announcements-update-form select{width:100%;max-width:100% !important;padding:7px 12px;margin-top:8px}.tutor-announcements-update-form .tutor-option-field-row,.tutor-announcements-form .tutor-option-field-row{border:none !important}.tutor-announcement-modal-content{border-radius:20px}.tutor-announcement-modal-footer-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-announcement-cancel-btn{background:#e8e8e8 !important;border-radius:3px !important;color:#7a7a7a !important}.tutor-announcement-details-modal-content>a{cursor:pointer;padding:20px;float:right}.modal-container.tutor-announcement-details-container{padding:20px 70px !important}.balance-info .tutor-announcement-big-icon{margin-right:10px}.tutor-announcement-big-icon{font-size:32px;width:76px;height:76px;border-radius:100%;background:#e9edfb;text-align:center;color:#3e64de}.tutor-announcement-big-icon .tutor-icon-speaker{position:relative !important;top:30% !important}.tutor-announcement-detail-content{margin-top:35px}.tutor-announcement-detail-content h3{font-size:24px;font-weight:bold;color:#161616}.tutor-announcement-detail-content p{font-style:normal;font-weight:normal;font-size:16px;color:#7a7a7a;margin-top:15px;margin-bottom:25px}.tutor-detail-course-content-wrap{background-color:#f3f3f3}.tutor-detail-course-content{padding:30px 70px 70px}.tutor-detail-course-info-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:50px}.tutor-announce-detail-popup-button-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.announcement-detail-edit-delete-button>.tutor-announcement-delete{background:#e8e8e8 !important;color:#7a7a7a !important}.tutor-border-none{border:none !important}.announcement-detail-edit-delete-button>button{padding:10px 20px !important}.announcement-detail-edit-delete-button{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px}.tutor-announcement-detail-course-info p,.tutor-announcement-detail-date-info p{font-size:16px;color:#161616;font-weight:700;max-width:95%}.tutor-announcements-modal-wrap .tutor-modal-content{max-width:660px !important}.tutor-announcements-modal-wrap .modal-footer{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-attempt-history td:last-child{text-align:center}.tutor-quiz-attempt-history td:last-child a{display:block;padding:10px}.attempt-review-title{font-size:18px;color:var(--tutor-text-size);font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:60px}.attempt-review-title i{margin-right:12px;color:var(--tutor-primary-color)}.tutor-quiz-attempt-info-row .attempt-view-bottom,.tutor-quiz-attempt-info-row .attempt-view-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col,.tutor-quiz-attempt-info-row .attempt-view-top .attempt-info-col{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:30%}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.tutor-quiz-attempt-info-row .attempt-info-content span.result-review-required,.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass,.tutor-quiz-attempt-info-row .attempt-info-content span.result-fail{background:#df3247;font-size:14px;font-weight:400;color:#fff;padding:1px 4px;margin-right:13px;border-radius:2px}.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-info-row .attempt-info-content span.result-review-required{background:#f5b30d}.tutor-quiz-attempt-info-row .attempt-info-content h4,.tutor-quiz-attempt-info-row .attempt-info-content h5{font-size:14px;line-height:25px;margin:0;color:#7a7f85;font-weight:400}.tutor-quiz-attempt-info-row .attempt-info-content h4 a,.tutor-quiz-attempt-info-row .attempt-info-content h4{font-weight:700;color:var(--tutor-text-color);margin-top:7px}.tutor-quiz-attempt-info-row .attempt-view-top{padding-bottom:30px;margin-bottom:30px;border-bottom:1px solid #dcdfe5}.tutor-quiz-attempt-info-row .attempt-view-bottom{margin-bottom:60px}.attempt-user-details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attempt-user-details .attempt-user-avatar{padding-right:20px}.attempt-user-details .attempt-user-avatar img{display:block;width:70px;height:70px;border-radius:50%}.attempt-user-details .attempt-info-content h4{font-size:18px}.attempt-review-notice-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:60px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.attempt-review-notice-wrap p{margin:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attempt-review-notice-wrap p.attempt-review-notice i{font-size:16px;color:#f5c813;margin-right:9px}.attempt-review-notice-wrap p.attempt-review-at>span{color:var(--tutor-primary-color);margin-right:7px;font-size:16px}.attempt-review-notice-wrap p>strong{font-weight:400;margin-right:5px}.quiz-attempt-answers-wrap{background:#fff;margin:0 0 1.5em}.quiz-attempt-answers-wrap .attempt-answers-header{padding:30px 20px}.quiz-attempt-answers-wrap .attempt-answers-header h3{font-size:20px;line-height:1.5;color:#3f435b}.quiz-attempt-answers-wrap table{border-collapse:collapse;border:none}.quiz-attempt-answers-wrap table tr{background-color:#fff}.quiz-attempt-answers-wrap table tr:first-child{background-color:#f7f7f9;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea !important}.quiz-attempt-answers-wrap table tr:not(:first-child){border-top:1px solid #dcdce1}.quiz-attempt-answers-wrap table tr:not(:last-child){border-bottom:1px solid #dcdce1}.quiz-attempt-answers-wrap table th{font-size:12px;text-transform:inherit}.quiz-attempt-answers-wrap table th,.quiz-attempt-answers-wrap table td{padding:17px 20px;vertical-align:middle;border:none;font-size:14px;line-height:1.71;letter-spacing:normal;color:#393c40}.quiz-attempt-answers-wrap table th p,.quiz-attempt-answers-wrap table td p{margin:0}.quiz-attempt-answers-wrap table th .tutor-icon-block,.quiz-attempt-answers-wrap table td .tutor-icon-block{font-size:14px;width:30px;height:30px;line-height:30px}.quiz-attempt-answers-wrap table .quiz-manual-review-action{border:1px solid #d4dadb;color:#d4dadb;height:30px;width:30px;border-radius:2px;font-size:13px;display:inline-block;text-align:center;line-height:30px;-webkit-transition:300ms;transition:300ms}.quiz-attempt-answers-wrap table .quiz-manual-review-action:first-child:hover{border:1px solid var(--tutor-success-button-color);color:var(--tutor-success-button-color)}.quiz-attempt-answers-wrap table .quiz-manual-review-action:last-child:hover{border:1px solid #df3247;color:#df3247}.quiz-attempt-answers-wrap table .quiz-manual-review-action:not(:last-child){margin-right:17px}.tutor-quiz-attempt-review-wrap .attempt-answers-header{background:#fff;padding:20px;margin-top:20px}.tutor-quiz-attempt-review-wrap .attempt-answers-header a{color:#3f435b}.tutor-quiz-attempt-review-wrap .attempt-answers-header>p{color:#737787;margin-top:10px;margin-bottom:0}.tutor-quiz-attempt-review-wrap .attempt-answers-header h3{font-size:20px;line-height:1.5;color:#3f435b}.tutor-quiz-attempt-review-wrap .instructor-feedback-content{padding:0px 20px 10px 20px}.tutor-quiz-attempt-review-wrap .instructor-feedback-content>p{margin-bottom:1em}.tutor-quiz-attempt-review-wrap table{border-collapse:collapse;border:none}.tutor-quiz-attempt-review-wrap table tr{background-color:#fff}.tutor-quiz-attempt-review-wrap table tr:first-child{background-color:#f7f7f9;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea}.tutor-quiz-attempt-review-wrap table tr:first-child th,.tutor-quiz-attempt-review-wrap table tr:first-child td{padding-top:14px;padding-bottom:14px}.tutor-quiz-attempt-review-wrap table tr:not(:first-child){border-top:1px solid #dcdce1}.tutor-quiz-attempt-review-wrap table tr:not(:first-child) th,.tutor-quiz-attempt-review-wrap table tr:not(:first-child) td{padding-top:20px;padding-bottom:20px}.tutor-quiz-attempt-review-wrap table tr:not(:last-child){border-bottom:1px solid #dcdce1}.tutor-quiz-attempt-review-wrap table th,.tutor-quiz-attempt-review-wrap table td{border:none;vertical-align:top;font-size:14px;font-weight:400;line-height:1.71;padding:15px 6px}.tutor-quiz-attempt-review-wrap table th:first-child,.tutor-quiz-attempt-review-wrap table td:first-child{padding:12px}.tutor-quiz-attempt-review-wrap table th:last-child,.tutor-quiz-attempt-review-wrap table td:last-child{padding:12px 10px}.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table th:nth-child(3),.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table th:nth-child(4),.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table td:nth-child(3),.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table td:nth-child(4){width:28%}.tutor-quiz-attempt-review-wrap span.result-review-required,.tutor-quiz-attempt-review-wrap span.result-pass,.tutor-quiz-attempt-review-wrap span.result-fail{background:#df3247;font-size:14px;font-weight:bold;color:#fff;padding:4px 11px;border-radius:2px}.tutor-quiz-attempt-review-wrap span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-review-wrap span.result-review-required{background:#f5b30d}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip],.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]{position:relative;z-index:2;cursor:pointer}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:before,.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:after,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:before,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none;-webkit-transform:translateY(15px);transform:translateY(15px);-webkit-transition:0.15s ease;transition:0.15s ease}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:before,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:before{content:attr(data-tooltip);position:absolute;bottom:40px;left:50%;margin-bottom:0px;margin-left:-60px;min-width:122px;text-align:center;padding:4px 7px;font-size:14px;line-height:1.2;font-weight:300;border-radius:12px;background-color:#3f435b;color:#fff;z-index:99999}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:after,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:after{position:absolute;content:"";bottom:34px;left:50%;margin-left:-10px;border-top:8px solid #3f435b;border-right:10px solid transparent;border-left:10px solid transparent}.tutor-quiz-attempt-review-wrap .active[data-tooltip]:before,.tutor-quiz-attempt-review-wrap .active[data-tooltip]:after,.tutor-quiz-attempt-review-wrap .active[data-tooltip]:before,.tutor-quiz-attempt-review-wrap .active[data-tooltip]:after,.quiz-attempt-answers-wrap .active[data-tooltip]:before,.quiz-attempt-answers-wrap .active[data-tooltip]:after,.quiz-attempt-answers-wrap .active[data-tooltip]:before,.quiz-attempt-answers-wrap .active[data-tooltip]:after{visibility:visible;opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}.tutor-status-blocked-context i,.tutor-status-approved-context i,.quiz-correct-answer-text i,.quiz-incorrect-answer-text i{font-size:14px;height:20px;width:20px;text-align:center;line-height:20px;background:#7bbc30;color:#fff;display:inline-block;border-radius:2px;margin-right:6px}.tutor-status-blocked-context i,.quiz-incorrect-answer-text i{background:#f44337;font-size:10px;font-weight:900}.answer-image-matched-wrap{display:block}.answer-image-matched-wrap .image-matching-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.answer-image-matched-wrap .image-matching-item:not(:last-child){margin-bottom:12px}.answer-image-matched-wrap .image-matching-item img{max-width:35px}.answer-image-matched-wrap .image-matching-item .dragged-caption{font-size:14px;margin-left:12px}.correct-answer-wrap .matching-type{display:-webkit-box;display:-ms-flexbox;display:flex}.correct-answer-wrap .text-image-type{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.correct-answer-wrap .text-image-type:not(:last-child){margin-bottom:12px}.correct-answer-wrap .text-image-type .image{margin-right:12px}.correct-answer-wrap .text-image-type img{max-width:35px}#tutor_profile_cover_photo_editor{height:344px;position:relative}#tutor_profile_cover_photo_editor #tutor_photo_meta_area{text-align:right;padding-left:190px;margin-top:16px}@media (max-width: 492px){#tutor_profile_cover_photo_editor #tutor_photo_meta_area{padding-left:120px}}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>img,#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span{display:inline-block;vertical-align:middle}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span{white-space:nowrap;font-style:normal;font-weight:normal;font-size:13px;line-height:18px;color:#7A7A7A}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span>span{color:black}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span.loader-area{display:none}#tutor_profile_cover_photo_editor #tutor_cover_area{height:245px;background-color:#E9EDFB;background-position:center center;background-size:cover;background-repeat:no-repeat;border-radius:6px;position:relative;overflow:hidden}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_overlay{height:70%;position:absolute;left:0;bottom:0;right:0;background-image:-webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0,0,0,0.6)));background-image:linear-gradient(transparent, rgba(0,0,0,0.6))}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader{background:#3E64DE;border-radius:3px;color:white;border:none;cursor:pointer;font-style:normal;font-weight:600;font-size:12px;color:#FFFFFF;position:absolute;padding:8px 20px;right:22px;bottom:22px}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader:hover{background:#2f52c4}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader>span{margin-left:6px}@media (max-width: 432px){#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader>span{display:none}}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_deleter{position:absolute;color:white;background:rgba(0,0,0,0.247);text-align:center;width:36px;border-radius:50%;font-size:17px;line-height:40px;height:36px;right:22px;top:22px;cursor:pointer}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_deleter:hover{background:rgba(0,0,0,0.438)}#tutor_profile_cover_photo_editor #tutor_profile_area{width:142px;height:142px;left:35px;top:145px;border-radius:50%;border:5px solid white;position:absolute;overflow:hidden;background-color:#E9EDFB;background-position:center center;background-size:cover;background-repeat:no-repeat}@media (max-width: 688px){#tutor_profile_cover_photo_editor #tutor_profile_area{width:120px;height:120px;left:31px;top:168px}}#tutor_profile_cover_photo_editor #tutor_profile_area .tutor_overlay{position:absolute;right:0;left:0;bottom:0;background:rgba(0,0,0,0.253);padding:0;height:37px;cursor:pointer;color:white;display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}#tutor_profile_cover_photo_editor #tutor_profile_area .tutor_overlay:hover{background:rgba(0,0,0,0.411)}#tutor_profile_cover_photo_editor #tutor_pp_option{position:absolute;background:#353535;width:157px;top:294px;left:27px;border-radius:6px;color:white;z-index:99;display:none}@media (max-width: 688px){#tutor_profile_cover_photo_editor #tutor_pp_option{top:294px;left:10px}}#tutor_profile_cover_photo_editor #tutor_pp_option span{display:block;padding:5px 10px;cursor:pointer;overflow:hidden;font-style:normal;font-weight:normal;font-size:16px;line-height:26px;color:#FFFFFF}#tutor_profile_cover_photo_editor #tutor_pp_option span:first-of-type{border-top-left-radius:6px;border-top-right-radius:6px}#tutor_profile_cover_photo_editor #tutor_pp_option span:last-of-type{border-bottom-left-radius:6px;border-bottom-right-radius:6px}#tutor_profile_cover_photo_editor #tutor_pp_option span:hover{background:#6b6b6b}#tutor_profile_cover_photo_editor #tutor_pp_option .up-arrow{text-align:center;height:0}#tutor_profile_cover_photo_editor #tutor_pp_option .up-arrow i{display:inline-block;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;position:relative;top:-17px;border-bottom:5px solid #353535}#tutor_profile_cover_photo_editor #tutor_pp_option>*:not(:last-child){position:relative;z-index:1}#tutor_profile_cover_photo_editor #tutor_pp_option>div:last-child{position:fixed;left:0;right:0;top:0;bottom:0;background:transparent;z-index:0;z-index:0}#tutor_profile_cover_photo_editor.pop-up-opened #tutor_pp_option{display:block}#tutor_profile_cover_photo_editor #tutor_photo_dialogue_box{display:none}.tutor-user-public-profile .photo-area{overflow:hidden;height:414px;margin-top:30px}.tutor-user-public-profile .photo-area .cover-area{position:relative;border-radius:6px;overflow:hidden}.tutor-user-public-profile .photo-area .cover-area>div:first-child{height:375px;background-position:center center;background-repeat:no-repeat;background-size:cover}.tutor-user-public-profile .photo-area .cover-area>div:last-child{position:absolute;left:0;right:0;bottom:0;height:70%;background-image:-webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0,0,0,0.6)));background-image:linear-gradient(transparent, rgba(0,0,0,0.6))}.tutor-user-public-profile .photo-area .pp-area{position:relative;top:-111px;padding-left:49px;display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center}.tutor-user-public-profile .photo-area .pp-area .profile-pic{background-position:center center;background-repeat:no-repeat;background-size:cover;display:inline-block;border:8px solid white}.tutor-user-public-profile .photo-area .pp-area .profile-name{padding-left:23px;padding-bottom:30px}.tutor-user-public-profile .photo-area .pp-area .profile-name h3{font-style:normal;font-weight:600;font-size:40px;line-height:48px;color:#FFFFFF;margin:0}.tutor-user-public-profile .photo-area .pp-area .profile-name>span{font-style:normal;font-weight:500;font-size:15px;color:#757575;margin-right:10px}.tutor-user-public-profile .photo-area .pp-area .profile-name>span>span{color:white}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media{text-align:right;padding-right:30px;padding-bottom:20px;-webkit-box-flex:1;flex:1;-o-flex:1;-ms-flex:1;-moz-flex:1;-webkit-flex:1}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container{font-size:16px}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container .rating-digits{color:white}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container .rating-total-meta{color:#757575}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container{margin-top:15px;text-align:right}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container a{display:inline-block;margin-left:20px;color:whitesmoke;cursor:pointer;text-decoration:none;font-size:16px}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container a:hover{color:white}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-pic{border-radius:50%;height:153px;width:153px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area{overflow:initial}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-pic{border-radius:10px;height:200px;width:153px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-rating-media{padding-bottom:75px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .tutor-user-profile-sidebar{margin-top:79px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area{height:auto}.tutor-user-public-profile.tutor-user-public-profile-no-cp .cover-area{display:none}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{top:0}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-pic{border-radius:50%;height:153px;width:153px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding-top:49px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span>span{color:black !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{position:absolute;left:226px;top:15px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media .rating-digits{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-rating-container{text-align:left}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{text-align:left !important;margin-top:5px !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container a{margin-left:0 !important;margin-right:20px;color:#757575 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container a:hover{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{width:calc(100% - 157px)}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{position:absolute;right:36px;left:auto}@media (min-width: 768px){.tutor-user-public-profile .content-for-mobile{display:none}.tutor-user-public-profile .content-for-desktop{display:block}}@media (max-width: 767px){.tutor-user-public-profile .content-for-mobile{display:block;margin:22px 0 0 0;padding:0 !important}.tutor-user-public-profile .content-for-desktop{display:none}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .photo-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area{height:auto}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .photo-area .cover-area>div:first-child,.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area .cover-area>div:first-child,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .cover-area>div:first-child{height:220px}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{padding-left:0 !important;top:-82px !important;flex-wrap:wrap;-o-flex-wrap:wrap;-ms-flex-wrap:wrap;-moz-flex-wrap:wrap;-webkit-flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-rating-media{width:100% !important;text-align:center !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name>span>span,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span>span,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name>span>span{color:black !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name>span:nth-of-type(2)>span,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span:nth-of-type(2)>span,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name>span:nth-of-type(2)>span{color:#C4C4C4 !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name h3,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name h3{color:#161616 !important;font-size:30px !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .rating-digits,.tutor-user-public-profile.tutor-user-public-profile-no-cp .rating-digits,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .rating-digits{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{top:-98px !important}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-pic{height:160px !important;width:153px !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container,.tutor-user-public-profile.tutor-user-public-profile-no-cp .ratings{position:static !important;top:0 !important;text-align:center !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding:0 !important}.tutor-user-public-profile .tutor-social-container{margin:15px 0 0 0 !important}.tutor-user-public-profile .tutor-social-container a{color:#7A7A7A !important}.tutor-user-public-profile .profile-name{padding:0 !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{margin-top:-83px !important;position:relative !important;top:0 !important}.tutor-user-public-profile .tutor-user-profile-sidebar{margin-top:0 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{-webkit-box-pack:left !important;-ms-flex-pack:left !important;justify-content:left !important;-o-justify-content:left !important;-ms-justify-content:left !important;-moz-justify-content:left !important;-webkit-justify-content:left !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area *{text-align:left !important}}.tutor-user-public-profile .tutor-user-profile-sidebar{padding:15px;width:223px;float:left}.tutor-user-public-profile .tutor-user-profile-content{width:calc(100% - 228px);float:left;margin-bottom:30px}.tutor-user-public-profile .tutor-user-profile-content>h3{font-style:normal;font-weight:normal;font-size:24px;line-height:34px;color:#161616;margin-top:20px}.tutor-user-public-profile .tutor-user-profile-content>h3:first-child{margin-top:0}@media (max-width: 800px){.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{padding-left:0 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{left:178px !important}.tutor-user-public-profile .tutor-user-profile-sidebar,.tutor-user-public-profile .tutor-user-profile-content{width:100%;float:none}}.tutor-dashboard-builder-header{padding:10px 0px;border-bottom:2px solid #DCDFE5;position:fixed;top:0px;background:#fff;width:100%;z-index:99}@media (max-width: 991px){.tutor-dashboard-builder-header{position:static}}.tutor-dashboard-builder-header .tutor-row{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width: 991px){.tutor-dashboard-builder-header .tutor-row .tutor-col-auto{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.tutor-dashboard-builder-header .tutor-row .tutor-col-auto:first-child{margin-bottom:15px}}.tutor-dashboard-builder-header .tutor-button{white-space:nowrap;margin-left:auto}@media (max-width: 991px){.tutor-dashboard-builder-header .tutor-button{padding:6px 10px}}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left .tutor-dashboard-builder-logo{padding:0 25px;position:relative}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left .tutor-dashboard-builder-logo img{max-height:32px}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button{margin:0;padding:0px 25px;line-height:30px;border:none;border-left:1px solid #DCDFE5;background:transparent;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;color:var(--tutor-text-color);-webkit-transition:300ms;transition:300ms;font-weight:500;white-space:nowrap}@media (max-width: 991px){.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button{border-left:none}}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button i{font-size:24px;line-height:30px;margin-right:9px}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button:hover{color:var(--tutor-primary-color);background:transparent}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button:hover i{color:var(--tutor-primary-color)}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right a{color:var(--tutor-text-color);font-weight:500;line-height:36px;padding:0 25px;-webkit-transition:300ms;transition:300ms;white-space:nowrap}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right a i{font-size:36px;line-height:36px;display:inline-block;vertical-align:top;padding-right:9px}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right a:hover{color:var(--tutor-primary-color)}.tutor-frontend-course-builder-section{padding:113px 0 45px;background-color:#ffffff}@media (max-width: 991px){.tutor-frontend-course-builder-section{padding-top:60px}.tutor-frontend-course-builder-section .tutor-col-8,.tutor-frontend-course-builder-section .tutor-col-4{width:100%;max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.admin-bar .tutor-dashboard-builder-header{top:32px}@media (max-width: 783px){.admin-bar .tutor-dashboard-builder-header{top:46px}}.tutor-course-builder-upload-tips{position:fixed;max-width:370px}@media (max-width: 991px){.tutor-course-builder-upload-tips{position:static}}.tutor-course-builder-upload-tips .tutor-course-builder-tips-title{font-size:16px;color:#8C94A8;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-course-builder-upload-tips .tutor-course-builder-tips-title i{font-size:24px;color:var(--tutor-primary-color);margin-right:11px}.tutor-course-builder-upload-tips ul{margin:0;padding:0 0 0 35px;list-style:none}.tutor-course-builder-upload-tips ul li{position:relative;margin-bottom:8px;line-height:24px}.tutor-course-builder-upload-tips ul li::after{content:'';position:absolute;height:8px;width:8px;border-radius:50%;background:#DCDFE5;left:-26px;top:9px}.tutor-course-level-meta{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-course-level-meta label{margin:0 40px 0 0;font-weight:600}.tutor-frontend-builder-course-price .tutor-form-group input{margin-bottom:0}.tutor-frontend-builder-course-price .tutor-styled-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-course-builder-attachements{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-builder-attachements .tutor-added-attachment{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - 30px);flex:0 0 calc(25% - 30px);max-width:calc(25% - 30px);border:1px solid #DCDFE5;padding:35px 20px 20px;position:relative;text-align:center;margin-left:30px;margin-bottom:30px;border-radius:4px;-webkit-transition:300ms;transition:300ms;min-width:120px}@media (max-width: 480px){.tutor-course-builder-attachements .tutor-added-attachment{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 30px);flex:0 0 calc(50% - 30px);max-width:calc(50% - 30px)}}.tutor-course-builder-attachements .tutor-added-attachment i{font-size:58px;line-height:58px;margin-bottom:25px;display:block}.tutor-course-builder-attachements .tutor-added-attachment .tutor-delete-attachment{position:absolute;height:22px;width:22px;border:1px solid #DCDFE5;text-align:center;line-height:22px;top:-1px;right:-1px;font-size:10px;border-top-right-radius:4px;color:transparent;-webkit-transition:300ms;transition:300ms}.tutor-course-builder-attachements .tutor-added-attachment:hover,.tutor-course-builder-attachements .tutor-added-attachment:hover .tutor-delete-attachment{border-color:#D71830;color:#D71830}.tutor-course-builder-attachements .tutor-added-attachment span{display:block}.tutor-course-builder-attachements .tutor-added-attachment span a{font-size:14px;display:block;line-height:20px;color:#606C8F}.tutor-course-builder-btn-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}#tutor-metabox-course-settings-tabs{background-color:#fff;border:1px solid #e5e5e5;margin:1em 0}.inside #tutor-metabox-course-settings-tabs{border:0;margin:0}.settings-tabs-heading{padding:1em;border-bottom:1px solid #e5e5e5}.settings-tabs-heading h3{font-size:14px;margin:0;line-height:1.4}.course-settings-tabs-container{display:-webkit-box;display:-ms-flexbox;display:flex}.course-settings-tabs-container .settings-tabs-navs-wrap{-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;background:#F5F5F5}.settings-tabs-navs-wrap .settings-tabs-navs{margin:0;list-style:none}.settings-tabs-navs-wrap .settings-tabs-navs li{margin:0}.settings-tabs-navs-wrap .settings-tabs-navs li a{display:block;padding-top:10px;padding-bottom:10px;padding-left:15px;padding-right:15px;color:#23282d;text-decoration:none;background:#F5F5F5;text-transform:capitalize;border-bottom:1px solid #e5e5e5;border-left:3px solid transparent}.settings-tabs-navs-wrap .settings-tabs-navs li:last-child a{border-bottom:none}.settings-tabs-navs-wrap .settings-tabs-navs li a:focus{-webkit-box-shadow:none;box-shadow:none}.settings-tabs-navs-wrap .settings-tabs-navs li.active a{background-color:#ffffff;border-bottom:1px solid #e5e5e5;color:var(--tutor-primary-color);border-left:3px solid var(--tutor-primary-color)}.course-settings-tabs-container .settings-tabs-container{padding:1em;-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-field-radio p{margin-top:0}.lesson-modal-form-wrap .lesson-content-drip-wrap{padding:10px;border:1px solid #e4e4e4}.lesson-modal-form-wrap .lesson-content-drip-wrap h3{margin:0 0 10px 0}.select2-dropdown.increasezindex{z-index:9999999999999}.tutor-topic-title i.tutor-icon-move{line-height:unset}.select2-selection__rendered [class^="tutor-icon-"]{vertical-align:middle}@media (min-width: 992px){.tutor-option-tooltip.tutor-option-field{position:relative}.tutor-option-tooltip.tutor-option-field p.desc{position:absolute;left:calc(100% + 16px);background:#2A344F;width:160px;padding:10px 13px;opacity:0;visibility:hidden;-webkit-transition:300ms;transition:300ms;z-index:98;top:10px;color:#fff;border-radius:12px;font-size:12px;font-style:normal}.tutor-option-tooltip.tutor-option-field p.desc::before{content:url("data:image/svg+xml,%3Csvg width='14' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.139C5.339 5.482 8.671 2.903 9.998.403c1.99-3.75 5.481 21.94 1.567 16.037C8.955 12.505 5.1 9.738 0 8.139z' fill='%232A344F' fill-rule='evenodd'/%3E%3C/svg%3E");position:absolute;left:-10px;top:16px}.tutor-option-tooltip.tutor-option-field:hover p.desc{opacity:1;visibility:visible}.tutor-option-tooltip.tutor-option-field input:focus+p.desc,.tutor-option-tooltip.tutor-option-field textarea:focus+p.desc{opacity:1;visibility:visible}}.tutor-instructor-pending-content{text-align:center}.tutor-instructor-pending-content a{margin-top:26px}.tutor-instructor-pending-content img{margin-bottom:69px;border-radius:10px}.tutor-instructor-thankyou-text h2{line-height:48px;font-size:40px;font-style:normal;font-weight:500;letter-spacing:0px;color:#161616;margin-bottom:26px}.tutor-instructor-extra-text{font-size:20px;font-style:normal;font-weight:400;letter-spacing:0px;color:#525252;line-height:30px}.tutor-frontend-dashboard-withdrawal h4{margin-bottom:25px}.withdraw-history-table-title h4{margin-top:45px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border:1px solid #DCDBDC;border-radius:6px;padding:25px 35px 25px 30px;margin-bottom:15px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info img{margin-right:15px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info small{font-size:16px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info p{font-size:20px;line-height:26px;margin:0}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a,.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:hover,.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:focus,.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:active{text-decoration:none;background:#3E64DE;border-radius:3px;display:inline-block;padding:8px 18px;font-weight:500;font-size:16px;color:white;cursor:pointer}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:hover{background:#2548bb}.tutor-frontend-dashboard-withdrawal h4{font-weight:500;font-size:24px}.tutor-frontend-dashboard-withdrawal .withdrawal-preference{font-size:15px;color:#7A7A7A}.tutor-frontend-dashboard-withdrawal .inline-image-text>img{width:23px;display:inline-block !important}.tutor-frontend-dashboard-withdrawal .inline-image-text>*{vertical-align:middle}.tutor-frontend-dashboard-withdrawal .inline-image-text.is-inline-block>*{display:inline-block}.tutor-frontend-dashboard-withdrawal .inline-image-text a{text-decoration:underline;color:#444}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap{display:none}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div{width:100%;height:100%;padding:15px;overflow:hidden;position:fixed;left:0;right:0;top:0;bottom:0;z-index:9999999999;background:rgba(0,0,0,0.589);display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div{display:inline-block;max-height:100%;width:100%;max-width:690px;background:white;overflow:auto;border-radius:15px;position:relative;padding:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div{padding:50px 70px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child>.tutor-icon-line-cross{position:absolute;cursor:pointer;top:30px;right:30px;font-size:20px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child tr,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child td,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child table,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child tbody{border:none;margin:0;padding:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child h3{margin:7px 0px;font-weight:600;padding:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:last-child{border-top:1px solid #E8E8E8;background:#F3F3F3}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount{border:1px solid #BABABA;border-radius:6px;background:white;height:43px;overflow:hidden;margin-bottom:12px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount>span{display:block;text-align:center;width:40px;float:left;height:100%;background:#f3f3f3;border-right:1px solid #BABABA}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount>span>span{font-size:18px;font-weight:bold;display:inline-block;line-height:41px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount input,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount input:focus,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount input:active{border:none;outline:0;height:100%;width:calc(100% - 40px);display:inline-block;margin:0;padding:0;padding-left:7px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-button-container{margin:50px 0 0;overflow:auto}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-button-container>button:last-child{float:right}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response{position:fixed;left:50px;bottom:50px;border:1px solid #E8E8E8;background:white;border-radius:10px;margin:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response:empty{display:none}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response>*{background:white;border:none}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response img{width:34px;margin:5px 13px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response b{font-weight:600}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response span{color:#333}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap button.close-withdraw-form-btn{background:#F3F3F3;border:1px solid #DCDBDC;color:#7A7A7A}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap button.close-withdraw-form-btn:hover{background:#e6e6e6}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdrawal-pop-up-success img{display:inline-block !important}.tutor-frontend-dashboard-withdrawal table.withdrawals-history{border:1px solid #DCDBDC;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th{background:#F3F3F3}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td{padding:10px;border:none;font-weight:normal;font-size:13px;text-align:left;vertical-align:middle}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td{border-bottom:1px solid #DCDBDC;border-collapse:collapse}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th:first-child,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td:first-child{padding:10px 0 15px 15px}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th:last-child,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td:last-child{text-align:right;padding-right:15px;width:50px}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th:nth-child(4),.tutor-frontend-dashboard-withdrawal table.withdrawals-history td:nth-child(4){width:105px}.tutor-frontend-dashboard-withdrawal table.withdrawals-history .withdraw-method-name{line-height:20px;font-size:15px;display:block}.tutor-frontend-dashboard-withdrawal table.withdrawals-history small{font-size:13px}.tutor-frontend-dashboard-withdrawal .tutor-status-text-container .tool-tip-container{position:relative;display:inline-block;height:24px;cursor:pointer}.tutor-frontend-dashboard-withdrawal .tutor-status-text-container .tool-tip-container img{display:inline-block !important;width:16px}.tutor-frontend-dashboard-withdrawal .tutor-status-text{display:inline-block;font-weight:bold;font-size:13px;color:#FFFFFF;background:gray;border-radius:2px;padding:3px 9px}.tutor-frontend-dashboard-withdrawal .tutor-status-text.status-approved{background:#24A148}.tutor-frontend-dashboard-withdrawal .tutor-status-text.status-pending{background:#ED9700}.tutor-frontend-dashboard-withdrawal .tutor-status-text.status-rejected{background:#F44337}.tutor-tooltip-inside .tooltip{position:absolute;z-index:2;overflow:hidden;clip:rect(0, 0, 0, 0);-webkit-box-sizing:border-box;box-sizing:border-box;width:0;height:0;padding:0;cursor:default;color:#fff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-size:1.4rem;line-height:normal;text-align:center;white-space:nowrap;border-width:0;border-style:solid;border-color:#6d6e71;border-top-color:#373739;background-color:#373739;opacity:0;-webkit-transition:opacity .3s ease-in .3s;transition:opacity .3s ease-in .3s;font-size:13px;color:#FFFFFF;height:auto;text-align:center;white-space:normal;font-size:12px;background:#353535;border-radius:10px;padding:7px}.tutor-tooltip-inside .tooltip.isVisible{overflow:visible;clip:auto;width:150px;height:auto;padding:10px 15px;border-width:1px;opacity:1}.tutor-tooltip-inside .tooltip,.tutor-tooltip-inside .tooltip.tip-bottom,.tutor-tooltip-inside .tooltip.tip-top{left:50%;-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0)}.tutor-tooltip-inside .tooltip,.tutor-tooltip-inside .tooltip.tip-bottom,.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-bottom-right{top:110%;top:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-top,.tutor-tooltip-inside .tooltip.tip-top-left,.tutor-tooltip-inside .tooltip.tip-top-right{top:auto;bottom:110%;bottom:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-bottom-right,.tutor-tooltip-inside .tooltip.tip-top-left,.tutor-tooltip-inside .tooltip.tip-top-right{-webkit-transform:none;transform:none}.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-top-left{right:50%;left:auto;margin-right:-25px}.tutor-tooltip-inside .tooltip.tip-bottom-right,.tutor-tooltip-inside .tooltip.tip-top-right{margin-left:-25px}.tutor-tooltip-inside .tooltip.tip-left,.tutor-tooltip-inside .tooltip.tip-right{top:50%;-webkit-transform:translate(0, -50%);transform:translate(0, -50%)}.tutor-tooltip-inside .tooltip.tip-left{right:110%;right:calc(100% + 13px);left:auto}.tutor-tooltip-inside .tooltip.tip-right{left:110%;left:calc(100% + 13px)}.tutor-tooltip-inside .tooltip:after{content:' ';display:block;position:absolute;width:0;height:0;border-width:10px;border-style:solid;pointer-events:none}.tutor-tooltip-inside .tooltip:after,.tutor-tooltip-inside .tooltip.tip-bottom:after,.tutor-tooltip-inside .tooltip.tip-top:after{left:50%;margin-left:-10px}.tutor-tooltip-inside .tooltip:after,.tutor-tooltip-inside .tooltip.tip-bottom:after,.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-bottom-right:after{top:-20px;border-color:transparent transparent #373739 transparent}.tutor-tooltip-inside .tooltip.tip-top:after,.tutor-tooltip-inside .tooltip.tip-top-left:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{top:auto;bottom:-20px;border-color:#373739 transparent transparent transparent}.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-bottom-right:after,.tutor-tooltip-inside .tooltip.tip-top-left:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{margin-left:0}.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-top-left:after{right:15px;left:auto}.tutor-tooltip-inside .tooltip.tip-bottom-right:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{left:15px}.tutor-tooltip-inside .tooltip.tip-left:after,.tutor-tooltip-inside .tooltip.tip-right:after{top:50%;margin-top:-10px;margin-left:auto}.tutor-tooltip-inside .tooltip.tip-left:after{right:-20px;left:auto;border-color:transparent transparent transparent #373739}.tutor-tooltip-inside .tooltip.tip-right:after{left:-20px;border-color:transparent #373739 transparent transparent}.tutor-instructor-list,.tutor-instructor-list:focus,.tutor-instructor-list:active{outline:none;cursor:pointer;text-decoration:none !important;background:#FFFFFF;border:1px solid #DCDBDC;border-radius:6px}.tutor-instructor-list .tutor-instructor-profile-photo,.tutor-instructor-list .tutor-instructor-cover-photo{background-size:cover;background-repeat:no-repeat;background-position:center center}.tutor-instructor-list .tutor-instructor-profile-photo{border-radius:50%;width:60px;height:60px}.tutor-instructor-list .tutor-instructor-name{font-style:normal;font-weight:500;font-size:24px;color:#161616;margin:0}.tutor-instructor-list .tutor-instructor-course-count{margin-bottom:10px}.tutor-instructor-list .tutor-instructor-course-count>span{font-style:normal;font-weight:500;font-size:15px;color:#161616}.tutor-instructor-list .tutor-instructor-course-count>span:last-child{color:#808080}.tutor-instructor-list .tutor-instructor-rating *{font-size:16px}.tutor-instructor-list .tutor-instructor-rating .rating-digits{color:#161616}.tutor-instructor-list .tutor-instructor-rating .rating-total-meta{color:#7A7A7A}.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-cover-photo{width:100%;height:153px}.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-profile-photo{border:4px solid white;margin:-31px 15px 0}.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-rating{padding:0 15px}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-cover-photo{display:none}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-profile-photo{border-radius:0%;width:100%;height:160px}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-rating{padding:0 15px}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-name{margin-top:15px}.tutor-instructor-list.tutor-instructor-list-pp-top-left{padding:15px}.tutor-instructor-list.tutor-instructor-list-pp-top-left .tutor-instructor-cover-photo{display:none}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-cover-photo,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-cover-photo{display:none}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-profile-photo,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-profile-photo{border-radius:0%;height:102px;width:102px;top:0px;position:absolute}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-rating,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-rating{margin-left:118px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100% - 110px);display:inline-block;position:relative;top:6px}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-rating,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-rating{top:7px;position:relative}.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-profile-photo{border-radius:50%;height:82px;width:82px;margin:10px}.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-name{top:11px}.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-course-count{top:46px}
2
 
3
  /*# sourceMappingURL=tutor-front.min.css.map */
1
+ :root{--tutor-primary-color: #1B52D8;--tutor-primary-hover-color: #1b52a9;--tutor-text-color: #4B5981;--tutor-light-color: #B1B8C9;--tutor-primary-button-color: #3E64DE;--tutor-danger-button-color: #F44337;--tutor-success-button-color: #4BD863;--tutor-warning-button-color: #ED9700;--tutor-text-size: 16px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tutor-wrap{color:var(--tutor-text-color)}.tutor-wrap img{max-width:100%;height:auto}.tutor-custom-list-style{list-style:none;margin:0;padding:0}.tutor-custom-list-style li{position:relative;margin-bottom:5px;line-height:30px;padding-left:25px}.tutor-custom-list-style li:before{content:'\e90f';position:absolute;left:0;font-family:'tutor';color:var(--tutor-primary-color)}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:15px;height:15px;top:-6.5px;cursor:pointer}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.tutor-styled-radio>span{position:relative;padding-left:30px;cursor:pointer}.tutor-styled-radio>span::before{content:'';height:18px;width:18px;background:#F1F3F7;border:1px solid #DCDFE5;border-radius:50%;position:absolute;top:50%;margin-top:-9px;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:200ms;transition:200ms}.tutor-styled-radio>input{display:none !important}.tutor-styled-radio>input:checked+span::before{border:5px solid var(--tutor-primary-color)}.tutor-container{padding-left:15px;padding-right:15px;max-width:1140px;margin-right:auto;margin-left:auto;width:100%}.tutor-container.tutor-fluid{max-width:100%}.tutor-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.tutor-col-auto,.tutor-col,.tutor-col-3,.tutor-col-4,.tutor-col-5,.tutor-col-6,.tutor-col-7,.tutor-col-8,.tutor-col-9,.tutor-col-12{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.tutor-col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.tutor-col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.tutor-col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.tutor-col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.tutor-col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.tutor-col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.tutor-col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.tutor-col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666666%;flex:0 0 66.666666%;max-width:66.666666%}.tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.tutor-col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.tutor-align-items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width: 991px){.tutor-col-auto,.tutor-col,.tutor-col-3,.tutor-col-4,.tutor-col-6,.tutor-col-8,.tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.tutor-col-md-100{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (max-width: 767px){.tutor-col-auto,.tutor-col,.tutor-col-3,.tutor-col-4,.tutor-col-6,.tutor-col-8,.tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.tutor-segment-title,.tutor-single-course-segment .tutor-segment-title{font-size:18px;line-height:23px;font-weight:500;margin-bottom:13px;color:#000}.tutor-single-course-segment{margin-bottom:45px}.tutor-full-width-course-top h4,.tutor-full-width-course-top h5,.tutor-full-width-course-top h6{color:#000;font-weight:500}.tutor-full-width-course-top h6{font-size:14px}.tutor-leadinfo-top-meta{font-size:14px;margin-bottom:10px}.tutor-leadinfo-top-meta span{display:inline-block;margin-right:10px}.tutor-leadinfo-top-meta span i::before{margin-left:0}.tutor-leadinfo-top-meta i{margin-right:4px}.tutor-single-course-rating{color:#F8C51C;font-size:16px}.tutor-single-course-rating .tutor-single-rating-count{color:var(--tutor-text-color);font-weight:500}.tutor-single-course-rating .tutor-single-rating-count i{color:var(--tutor-light-color);font-style:normal;display:inline-block;margin-left:4px}.tutor-course-header-h1{font-size:36px;line-height:46px;color:var(--tutor-text-color);font-weight:500;margin:0 0 29px;padding:0}@media (max-width: 767px){.tutor-course-header-h1{font-size:26px;line-height:36px}}.tutor-course-summery{margin-bottom:40px}.tutor-single-course-meta{color:var(--tutor-text-color)}.tutor-single-course-meta ul{list-style:none;margin:0;padding:10px 0;overflow:hidden;line-height:21px}.tutor-single-course-meta.tutor-meta-top ul{padding-top:0;padding-bottom:15px}.tutor-single-course-meta ul li{float:left;vertical-align:top;margin-right:40px;margin-top:5px;margin-bottom:5px;min-width:95px}@media (max-width: 575px){.tutor-single-course-meta ul li{margin-right:10px}}.tutor-single-course-meta ul li:last-child{margin-right:0}.tutor-single-course-meta .tutor-single-course-avatar img{height:21px;width:21px;display:block;border-radius:50%;margin-right:3px}.tutor-single-course-meta ul li .tutor-single-course-avatar span{height:21px;width:21px;font-size:9px;text-align:center;line-height:21px;border-radius:50%;display:block;color:#ffffff}.tutor-single-course-meta ul li>div{display:inline-block;vertical-align:top}.tutor-single-course-meta ul li strong{margin:0;display:inline-block;line-height:21px;font-weight:400;color:var(--tutor-light-color);font-size:var(--tutor-text-size)}.tutor-single-course-meta ul li a{color:var(--tutor-text-color);font-weight:500;-webkit-transition:300ms;transition:300ms}.tutor-single-course-meta ul li a:hover{color:var(--tutor-primary-color)}.tutor-single-course-meta.tutor-meta-top ul li,.tutor-single-course-meta.tutor-meta-top ul li a{font-weight:700}.tutor-single-course-meta ul li{font-weight:500;color:var(--tutor-text-color)}.tutor-single-course-meta ul li span{color:var(--tutor-light-color);font-weight:400}.tutor-single-course-meta.tutor-lead-meta{margin-bottom:33px;border-top:1px solid #DCDFE5;border-bottom:1px solid #DCDFE5}@media (max-width: 991px){.tutor-single-course-meta.tutor-lead-meta{border-bottom:none}.tutor-single-course-meta.tutor-lead-meta ul{padding-bottom:0}.tutor-single-course-meta.tutor-lead-meta ul li{margin:5px;padding:5px 15px;border:1px solid #ddd;border-radius:4px}}.tutor-single-course-meta.tutor-lead-meta ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width: 991px){.tutor-single-course-meta.tutor-lead-meta ul{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.tutor-single-course-meta.tutor-lead-meta ul li span{display:block;margin-bottom:5px;color:var(--tutor-light-color)}.tutor-single-course-meta.tutor-lead-meta ul li a{color:var(--tutor-text-color);-webkit-transition:300ms;transition:300ms}.tutor-single-course-meta.tutor-lead-meta ul li a:hover{color:var(--tutor-primary-color)}.tutor-single-course-meta.tutor-lead-meta ul li a:not(:last-child):after{content:',';margin-right:4px}@media (max-width: 575px){.tutor-single-course-meta.tutor-lead-meta ul{display:block}.tutor-single-course-meta.tutor-lead-meta ul li{display:block;border:none;margin:0;width:100%;padding:0 0 10px}.tutor-single-course-meta.tutor-lead-meta ul li span{display:inline-block;color:var(--tutor-text-color);font-weight:700}.tutor-single-course-meta.tutor-lead-meta ul li span::after{content:':';color:var(--tutor-text-color)}}.tutor-course-benefits-content ul{list-style:none;display:block;overflow:hidden;-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:30px;-moz-column-gap:30px;column-gap:30px;margin:0}.tutor-course-topics-header{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:8px}.tutor-course-topics-header .tutor-course-topics-header-right span:not(:first-child){margin-left:45px}.tutor-course-topics-contents h4{font-size:var(--tutor-text-size);font-weight:500;margin-bottom:0;color:var(--tutor-text-color)}.tutor-course-topics-contents .tutor-course-title{cursor:pointer}.tutor-course-topics-contents .tutor-course-title h4{color:var(--tutor-primary-color);font-size:16px;line-height:25px;overflow:hidden;margin-top:0}.tutor-course-topic.tutor-active .tutor-course-title h4>i:before{content:"\e910"}.tutor-course-topics-contents .tutor-course-title h4 i{font-size:15px;line-height:25px;float:left;margin-right:10px}.tutor-course-topics-contents .tutor-course-topic{border:1px solid #DCE4E6;margin-bottom:20px;border-radius:5px;overflow:hidden}.tutor-course-title,.tutor-course-lesson{padding:14px 20px}.tutor-course-lesson{border-top:1px solid #DCE4E6}.tutor-course-lesson h5{line-height:22px;font-size:var(--tutor-text-size);margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;color:inherit;margin-top:0}.tutor-course-lesson h5 a{color:var(--tutor-primary-color);-webkit-transition:300ms;transition:300ms}.tutor-course-lesson h5 a:hover{color:var(--tutor-primary-hover-color)}.tutor-course-lesson h5 i{line-height:22px;vertical-align:text-top;margin-right:10px;color:var(--tutor-light-color);display:block}.tutor-course-lesson h5 .lesson-preview-icon i{margin-right:0;margin-left:10px}.tutor-course-lesson h5 .tutor-lesson-duration{margin-left:auto;padding-left:5px;-ms-flex-item-align:start;align-self:flex-start}.tutor-course-lesson .lesson-preview-title{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}table.course-single-gradebooks .datetime{margin:0;font-size:80%}.tutor-course-lessons .tutor-course-lesson h5 i.tutor-lesson-thumbnail-icon{height:50px;width:70px;border-radius:3px;text-align:center;line-height:50px;color:#fff;margin-right:10px;position:relative;z-index:1;overflow:hidden;font-size:20px;background-position:center center !important;background-size:cover !important}.tutor-course-lessons .tutor-course-lesson h5 i.tutor-lesson-thumbnail-icon:after{position:absolute;content:'';left:0;top:0;height:100%;width:100%;background:rgba(0,0,0,0.5);z-index:-1}.tutor-single-lesson-button-group,.tutor-topics-lesson-list .tutor-topics-in-single-lesson{border-radius:4px;margin-bottom:30px;border:1px solid #e8eff1}.tutor-single-lesson-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.tutor-lesson-sidebar{-webkit-box-flex:0;-ms-flex:0 0 400px;flex:0 0 400px}@media (max-width: 991px){.tutor-lesson-sidebar{position:absolute;left:0;top:70px;width:400px;max-width:95%;height:calc(100% - 70px);z-index:9;background:#fff;overflow-y:auto;display:none}}.tutor-spotlight-mode .tutor-lesson-sidebar{position:fixed;left:0;width:400px;height:100vh;overflow-y:scroll;background:#f4f8fa}.tutor-spotlight-mode #tutor-single-entry-content{padding-left:400px;min-height:calc(100vh - 46px)}.tutor-spotlight-mode #tutor-single-entry-content.sidebar-hidden{padding-left:0}@media (max-width: 991px){.tutor-spotlight-mode .tutor-lesson-sidebar{position:absolute;width:350px;height:auto}.tutor-spotlight-mode #tutor-single-entry-content{padding-left:0}}.admin-bar .tutor-spotlight-mode .tutor-lesson-sidebar{height:calc(100vh - 32px)}.tutor-single-entry-content{-webkit-box-flex:999;-ms-flex-positive:999;flex-grow:999}.tutor-single-lesson-button-group .tutor-single-lesson-button a,.tutor-topics-in-single-lesson .tutor-single-lesson-items a{padding:14px 100px 14px 17px;display:-webkit-box;display:-ms-flexbox;display:flex;color:var(--tutor-text-color);position:relative;border-top:1px solid #e8eff1}.tutor-single-lesson-button-group .tutor-single-lesson-button:first-child a{border-top:none}.tutor-lessons-under-topic .tutor-single-lesson-items.active a{background:rgba(233,235,238,0.35)}.tutor-topics-in-single-lesson{margin-bottom:5px;background-color:#ffffff;padding:0}.tutor-topics-in-single-lesson .tutor-single-lesson-items a span{margin:0;display:inline;color:var(--tutor-text-color)}.tutor-topics-in-single-lesson .tutor-topics-title{position:relative}.tutor-topics-in-single-lesson .tutor-topics-title button{position:absolute;right:15px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);padding:0 5px;font-size:16px;background:transparent;border:none;color:var(--tutor-text-color)}.tutor-topics-in-single-lesson.tutor-topic-active .tutor-topics-title button i::before{content:"\e910"}.tutor-topics-in-single-lesson .tutor-topics-title h3{margin:0;padding:10px 37px 10px 17px;font-size:16px;color:var(--tutor-primary-color);font-weight:500}.tutor-topics-in-single-lesson .tutor-topics-title h3{cursor:pointer;line-height:30px}span.toogle-informaiton-icon{background:#ccc;color:#fff;height:15px;width:15px;text-align:center;display:inline-block;line-height:15px;font-size:15px;border-radius:50%;margin-left:10px}.tutor-topics-in-single-lesson .tutor-topics-title h3 i{font-size:10px;margin-left:6px}.tutor-topics-in-single-lesson .tutor-topics-tutor-loop-rating-wraptitle h3 i{font-size:10px;vertical-align:middle;display:inline-block;padding:5px;color:#c7c7c7;-webkit-transition:300ms;transition:300ms;cursor:pointer}.tutor-topics-in-single-lesson .tutor-topics-title h3 i:hover{color:var(--tutor-primary-color)}.tutor-single-lesson-button-group .tutor-single-lesson-button a>i:first-child,.tutor-topics-in-single-lesson .tutor-single-lesson-items a>i:first-child{color:#c7c7c7;line-height:22px;display:inline-block;vertical-align:middle;margin-right:10px}.tutor-topics-in-single-lesson .tutor-single-lesson-items a>i.tutor-icon-doubt{color:var(--tutor-primary-color)}.tutor-topics-in-single-lesson .tutor-topics-summery{padding:14px;border-top:1px solid #dce4e6;display:none}.tutor-lessons-under-topic .tutor-lesson-right-icons{position:absolute;right:15px;top:14px}.tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete{height:16px;width:16px;border:1px solid #e8eff1;border-radius:50%;font-size:9px;display:inline-block;line-height:16px;text-align:center;margin:0;vertical-align:middle;margin-left:8px}.tutor-lessons-under-topic .tutor-single-lesson-items.active .tutor-lesson-right-icons .tutor-lesson-complete{border-color:#b7d6b7}.tutor-lessons-under-topic .tutor-single-lesson-items.active .tutor-lesson-right-icons .tutor-lesson-complete.tutor-done,.tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete.tutor-done{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);color:#fff}.tutor-lessons-under-topic .tutor-lesson-right-icons i{font-style:normal}.tutor-single-page-top-bar{background-color:var(--tutor-primary-color);height:70px;margin-bottom:50px;color:#ffffff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:15px}.tutor-single-page-top-bar .tutor-single-lesson-segment form,.tutor-single-page-top-bar .tutor-single-lesson-segment{margin-bottom:0}.tutor-single-page-top-bar a{color:#ffffff;vertical-align:middle;display:inline-block;overflow:hidden}.tutor-single-page-top-bar a i{float:left}@media (max-width: 546px){.tutor-single-page-top-bar a{font-size:14px}}.tutor-topbar-home-btn i{margin-right:7px}.tutor-topbar-home-btn{margin-left:20px}@media screen and (max-width: 546px){.tutor-topbar-home-btn{margin-left:10px}}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{background:transparent;color:#fff;padding-bottom:13px;cursor:pointer;border:1px solid #fff}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button i{font-size:14px}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button i::before{display:block;padding-top:2px}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button:hover{color:#fff;background:var(--tutor-primary-hover-color);border-color:var(--tutor-primary-hover-color)}.tutor-single-page-top-bar a:hover{color:#ffffff}.tutor-single-page-top-bar .tutor-topbar-content-title-wrap{text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-box-flex:999999;-ms-flex-positive:999999;flex-grow:999999}.tutor-single-page-top-bar .tutor-hide-sidebar-bar{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-single-page-top-bar .tutor-topbar-mark-to-done{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}@media (max-width: 767px){.tutor-single-page-top-bar .tutor-topbar-content-title-wrap{display:none}.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{padding:9px 14px}}@media (max-width: 767px){.tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{padding:7px 12px;font-size:14px}}.tutor-single-page-top-bar .tutor-topbar-content-title-wrap i{vertical-align:middle;line-height:1;margin-right:3px}.tutor-lesson-content-area,.tutor-quiz-single-wrap{margin:0 100px 80px}@media (max-width: 1366px){.tutor-lesson-content-area,.tutor-quiz-single-wrap{margin:0 60px 80px}}@media (max-width: 991px){.tutor-lesson-content-area,.tutor-quiz-single-wrap{margin:0 40px}}.tutor-lesson-sidebar-hide-bar{background-color:var(--tutor-primary-hover-color);color:#ffffff;padding:0 12px;display:inline-block;line-height:70px}@media only screen and (max-width: 546px){.tutor-lesson-sidebar-hide-bar{padding:0 10px}}.tutor-single-page-top-bar a.tutor-lesson-sidebar-hide-bar i{font-size:20px;display:block;padding:25px 0}@media only screen and (max-width: 546px){.tutor-single-page-top-bar a.tutor-lesson-sidebar-hide-bar i{font-size:19px}}.sidebar-hidden a.tutor-lesson-sidebar-hide-bar .tutor-icon-angle-left:before{content:"\e903"}.tutor-sidebar-tabs-wrap{border-top:1px solid #e0e9ec}.tutor-tabs-btn-group{height:70px;display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-tabs-btn-group a{background-color:#f1f6f8;color:var(--tutor-text-color);display:block;line-height:70px;width:100%;text-align:center;border:1px solid #e0e9ec;border-top:none}.tutor-tabs-btn-group a span,.tutor-tabs-btn-group a i{font-size:24px;display:inline-block;vertical-align:top;line-height:70px}.tutor-tabs-btn-group a i{color:var(--tutor-primary-color)}.tutor-tabs-btn-group a span{font-size:15px;padding-left:3px}.tutor-tabs-btn-group a.active{background-color:#ffffff;border:none}.tutor-tabs-btn-group a:focus{outline:none}.tutor-single-lesson-segment{margin-bottom:35px}.tutor-single-lesson-wrap{background:#f4f8fa}.tutor-lesson-video-wrap .plyr--video{border-radius:4px}#tutor-lesson-sidebar-qa-tab-content{background-color:#ffffff;padding:20px}#tutor-lesson-sidebar-qa-tab-content .tutor-add-question-wrap{border-top:1px solid #e8eff1;padding-top:25px}#tutor-lesson-sidebar-qa-tab-content .tutor-add-question-wrap h3{color:var(--tutor-primary-color)}#tutor-lesson-sidebar-qa-tab-content .tutor-add-question-wrap button.tutor_ask_question_btn{display:block;width:100%;background-color:var(--tutor-primary-color);border-color:var(--tutor-primary-color)}#tutor-lesson-sidebar-qa-tab-content .tutor_question_answer_wrap .tutor_original_question{margin-bottom:20px;margin-top:20px}.tutor-lesson-sidebar-emptyqa-wrap{text-align:center;padding:50px 20px;color:var(--tutor-text-color)}.tutor-lesson-sidebar-emptyqa-wrap h3{margin:0;padding:0 0 25px}.tutor-lesson-sidebar-emptyqa-wrap i{font-size:150px;color:#e8eff1;line-height:0.8}.tutor-attachments-wrap{margin:-3px -3px 15px -3px}.tutor-attachments-wrap .tutor-lesson-attachment{display:inline-block;border:1px solid #e8eff1;border-radius:4px;padding:10px 16px 10px 12px;overflow:hidden;background:#f4f7f8;margin:3px;-webkit-transition:300ms;transition:300ms}.tutor-attachments-wrap .tutor-lesson-attachment:hover{-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.15);box-shadow:0 2px 4px rgba(0,0,0,0.15)}.tutor-attachments-wrap .tutor-attachment-icon{font-size:30px;float:left;color:var(--tutor-text-color)}.tutor-attachments-wrap .tutor-attachment-icon i{display:block}.tutor-attachment-info{padding-left:10px;float:left}.tutor-attachment-info span{display:block;font-size:14px;line-height:16px;color:var(--tutor-text-color)}.tutor-attachment-info span+span{font-size:11px;color:var(--tutor-light-color)}.tutor-progress-bar-wrap{width:100%;margin:0 0 30px;display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-progress-bar{height:8px;color:#000000;line-height:25px;position:relative;background:#f1f1f1;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%;border-radius:30px;margin-top:7.5px}.tutor-progress-bar .tutor-progress-filled{background-color:var(--tutor-primary-color);height:8px;border-radius:30px;width:var(--tutor-progress-left)}.tutor-dashboard-content-inner .tutor-progress-bar{margin-top:9.5px;height:5px}.tutor-dashboard-content-inner .tutor-progress-bar .tutor-progress-filled{height:5px}.tutor-progress-bar .tutor-progress-filled:after{content:"";position:absolute;height:15px;width:15px;border:7.5px solid var(--tutor-primary-color);border-radius:50%;background:#fff;left:var(--tutor-progress-left);-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);top:50%;-webkit-box-sizing:border-box;box-sizing:border-box}.tutor-progress-percent{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none;padding-left:20px}.tutor-course-purchase-box{margin-bottom:0}.tutor-price-preview-box .tutor-course-purchase-box button{display:block;width:100%;background:var(--tutor-primary-color);border-radius:3px;text-transform:uppercase;font-weight:500;cursor:pointer}.tutor-price-preview-box .tutor-course-purchase-box button i{margin-right:8px}.tutor-price-preview-box .tutor-course-enrolled-wrap,.tutor-price-preview-box .tutor-course-login-wrap,.tutor-price-preview-box .tutor-course-login-wrap form,.tutor-course-purchase-box form{margin-bottom:0}.tutor-price-preview-box .tutor-course-material-includes-wrap{margin-bottom:25px}.tutor-alert-warning.tutor-instructor-alert{padding:25px 25px 15px}.tutor-lead-info-btn-group{display:block;overflow:hidden;margin:0 -20px 25px;border-bottom:1px solid rgba(220,223,229,0.4);padding:0 20px 30px}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap{display:block;margin-top:15px}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap form{margin:0}.tutor-lead-info-btn-group a.tutor-button,.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap button{display:block;padding:18px 20px;border:none;text-align:center;border-radius:4px;text-transform:uppercase;line-height:1;-webkit-transition:300ms;transition:300ms;font-weight:700}.tutor-lead-info-btn-group a.tutor-button,.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap{width:100%;text-align:center;display:block}@media (max-width: 991px){.tutor-lead-info-btn-group a.tutor-button,.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap{width:auto}}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap button{display:block;width:100%;background:#e8eff1;color:var(--tutor-light-color)}.tutor-lead-info-btn-group .tutor-course-compelte-form-wrap button:hover{background:var(--tutor-primary-color);color:#ffffff}.tutor-single-add-to-cart-box .tutor-enroll-form{margin:0}.tutor-single-add-to-cart-box .tutor-enroll-form .tutor-course-enroll-wrap{padding:0}.tutor-single-add-to-cart-box .tutor-enroll-form .tutor-course-enroll-wrap button{display:block;width:100%;text-align:center}.tutor-single-add-to-cart-box.cart-required-login{position:relative}.tutor-single-add-to-cart-box.cart-required-login:before{position:absolute;content:"";top:0;bottom:0;left:0;right:0;z-index:99;cursor:pointer}.tutor-course-enrolled-review-wrap .write-course-review-link-btn{color:#fff;background-color:var(--tutor-primary-color);border-color:var(--tutor-primary-color);display:inline-block;padding:15px 30px;border-radius:4px;text-transform:capitalize;line-height:1;-webkit-transition:300ms;transition:300ms}.tutor-course-enrolled-review-wrap .write-course-review-link-btn:hover{background-color:var(--tutor-primary-hover-color);border-color:var(--tutor-primary-hover-color)}.tutor-course-enrolled-review-wrap .tutor-form-group{margin-bottom:10px}.tutor-course-enrolled-review-wrap .tutor-form-group textarea{height:120px;background:#f7f7f7;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;border-radius:4px;line-height:1.5;text-indent:0;padding:15px}.tutor-write-review-form{margin-top:30px}.tutor-form-row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-15px;margin-right:-15px}.tutor-form-col-4,.tutor-form-col-6,.tutor-form-col-12{padding-left:15px;padding-right:15px}.tutor-form-col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.tutor-form-col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.tutor-form-col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333%;flex:0 0 33.3333%;max-width:33.3333%}@media (max-width: 768px){.tutor-form-row{-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-form-col-4,.tutor-form-col-6,.tutor-form-col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}ul.tutor-required-fields{list-style:none;padding:10px;margin:0}.tutor-star-rating-group{color:#f4c150;display:inline-block;text-align:left}.tutor-star-rating-group i{margin-right:4px}@media (max-width: 546px){.tutor-write-review-box .tutor-star-rating-group{font-size:26px;display:block;text-align:center}}.tutor-write-review-box .tutor-star-rating-group i{margin-right:4px;cursor:pointer}.tutor-queston-and-answer-wrap{margin:20px 0}.tutor-question-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.tutor-ask-question-btn{text-align:right}.tutor-question-search-form{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%}.tutor-question-search-form form{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-question-search-form input[type="text"]{max-width:60%}.tutor-add-question-wrap{margin:20px 0}.tutor-add-question-wrap .tutor-form-group{margin-bottom:10px}.tutor_question_cancel{margin-right:5px}.updating-icon:before{font-family:"tutor";margin-right:5px;content:"\e91d";-webkit-animation:spin 1s steps(8) infinite;animation:spin 1s steps(8) infinite;display:inline-block}.loading-lesson .tutor-lesson-video-wrap:before{font-family:"tutor";content:"\e91d";-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;display:inline-block;z-index:9;position:absolute;left:50%;top:50%;font-size:50px;margin-left:-25px;margin-top:-12px}.loading-lesson .tutor-lesson-video-wrap:after{position:absolute;content:"";top:0;left:0;background:rgba(255,255,255,0.8);width:100%;height:100%}.tutor-lesson-video-wrap{position:relative}.tutor_question_area{padding:25px 20px;background:#f4f7f8;border-radius:4px}.tutor_question_area p:last-child{margin-bottom:0}.tutor_add_answer_row{text-align:right;margin-top:20px}.tutor_add_answer_row .tutor-form-group:last-child{margin-top:20px}.tutor_admin_answers_list_wrap+.tutor_add_answer_row,.tutor_admin_answers_list_wrap{margin-left:100px}@media (max-width: 991px){.tutor_admin_answers_list_wrap+.tutor_add_answer_row,.tutor_admin_answers_list_wrap{margin-left:30px}}.tutor_original_question{margin-bottom:30px}.tutor_admin_answers_list_wrap .tutor_individual_answer{margin-bottom:40px}.tutor_admin_answers_list_wrap .tutor_question_area{background:#edf9f1}.question-top-meta .tutor-question-avater a{display:inline-block}.question-top-meta .tutor-question-avater a span{height:50px;width:50px;border-radius:50%;display:block;line-height:50px;text-align:center;font-size:17px}.question-top-meta .tutor-question-avater a img{width:50px;height:50px;border-radius:50%}.question-top-meta{overflow:hidden;margin-bottom:20px}.question-top-meta .tutor-question-avater{float:left}.question-top-meta .review-meta{float:left;margin-bottom:0;margin-left:10px}.question-top-meta .review-meta a{display:block;font-size:18px;color:var(--tutor-text-color);line-height:20px}.question-top-meta .review-meta span{color:var(--tutor-light-color);vertical-align:text-top;display:block}.tutor_wp_editor_wrap .tutor-form-group a.tutor-button{margin-right:6px}.tutor-no-announcements{text-align:center}.tutor-announcement-meta{margin-bottom:10px;font-size:13px}.tutor-announcement{border:1px solid #eee;padding:20px;margin-top:30px;border-radius:4px}.announcement-delete-btn{float:right}.announcement-delete-btn a{color:var(--tutor-light-color);-webkit-transition:300ms;transition:300ms}.announcement-delete-btn a:hover{color:red}.tutor-announcement-title-wrap h3{color:var(--tutor-text-color);font-weight:500;margin-bottom:10px}.tutor-quiz-header span{background:#f88f1c;color:#ffffff;display:inline-block;padding:4px 10px;border-radius:4px;line-height:1;text-transform:uppercase;font-size:10px}.tutor-quiz-header h2{color:var(--tutor-text-color);font-size:36px;line-height:46px;font-weight:500;margin-bottom:15px}.tutor-quiz-header h5{color:var(--tutor-light-color)}.tutor-quiz-header h5 a{color:var(--tutor-text-color);font-weight:500}.tutor-quiz-header .tutor-quiz-meta{list-style:none;margin:20px 0 40px;padding:15px 0;border-top:1px solid #dcdfe5;border-bottom:1px solid #dcdfe5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-header .tutor-quiz-meta li{display:inline-block;color:var(--tutor-text-color)}.tutor-quiz-header .tutor-quiz-meta li strong{display:block;color:var(--tutor-light-color);font-weight:400}@media (max-width: 767px){.tutor-quiz-header .tutor-quiz-meta{display:block;border:none;padding:0}.tutor-quiz-header .tutor-quiz-meta li{display:block;color:var(--tutor-text-color);margin:5px;border:none;padding:0;border-radius:0}.tutor-quiz-header .tutor-quiz-meta li strong{display:inline-block;margin-right:5px}}@media (max-width: 1199.98px){.tutor-quiz-attempt-history{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}}.tutor-quiz-attempt-history-title{font-size:18px;color:var(--tutor-light-color);line-height:23px;font-weight:500;margin-bottom:15px;margin-top:70px}.tutor-quiz-attempt-history table{border-collapse:collapse;border-radius:4px;margin-bottom:0}.tutor-quiz-attempt-history th{font-weight:400}.tutor-quiz-attempt-history table,.tutor-quiz-attempt-history th,.tutor-quiz-attempt-history td{border:1px solid #e8eff1;padding:10px !important}.tutor-quiz-attempt-history table span.result-fail,.tutor-quiz-attempt-history table span.result-pass{display:inline-block;color:#fff;border-radius:2px;width:47px;height:26px;line-height:26px;text-align:center}.tutor-quiz-attempt-history table span.result-fail{background:#df3247}.tutor-quiz-attempt-history table span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-history table span.result-review-required{background:#f5b30d;padding:3px 5px;color:#fff;border-radius:2px;text-align:center;font-size:90%}.quiz-head-meta-info{color:var(--tutor-light-color);margin-bottom:40px}.quiz-head-meta-info span{color:var(--tutor-text-color)}#tutor-quiz-attempt-questions-wrap{margin-bottom:50px}.tutor-quiz-single-wrap .question-text{color:var(--tutor-text-color);font-size:20px;font-weight:600}.tutor-quiz-single-wrap .question-description{color:var(--tutor-text-color)}.quiz-attempt-single-question{margin-bottom:80px}.fill-in-the-blank-field .fill-in-the-blank-text-input{display:inline;border-top:none;border-left:none;border-right:none;border-bottom:1px dashed;background-color:transparent;padding:0px;border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin:0 10px}.fill-in-the-blank-field .fill-in-the-blank-text-input:focus{background:none;outline:none}.tutor-quiz-answers-wrap{margin-bottom:50px}.tutor-quiz-answers-wrap textarea{background:transparent;border:1px solid #d4dadb;height:175px;border-radius:5px;-webkit-box-shadow:none;box-shadow:none;min-width:100%;margin-bottom:5px}.tutor-quiz-answers-wrap textarea:focus{background:transparent;outline:none !important}.tutor-quiz-answers-wrap p{margin:0;line-height:26px}.quiz-answer-input-body .quiz-answer-image-wrap{margin-top:10px;margin-bottom:10px;max-width:200px}.quiz-answer-image-wrap img{max-width:100%;height:auto}.tutor-quiz-answers-wrap label{display:block;margin-bottom:15px;cursor:pointer}.tutor-quiz-answers-wrap label.answer-view-image,.tutor-quiz-answers-wrap label.answer-view-text_image{text-align:center;margin:0 10px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;max-width:25%}.quiz-answer-input-bottom{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:20px}.quiz-answer-input-bottom.wrong-answer{color:#e27c89}.quiz-answer-input-bottom.wrong-answer .quiz-answer-input-field{border:1px solid #e27c89;padding:5px 10px}.quiz-answer-input-bottom.right-answer{color:#86b324}.quiz-answer-input-bottom.right-answer .quiz-answer-input-field{border:1px solid #bbd58c;padding:5px 10px}.wrong-right-text{padding:5px 10px}.tutor-quiz-answers-wrap label input{display:none}.tutor-quiz-answers-wrap label input+span{width:20px;height:20px;border:1px solid #dedede;display:inline-block;border-radius:2px;position:relative;margin-right:5px}.tutor-quiz-answers-wrap label input:checked+span{background:var(--tutor-primary-color);border-color:var(--tutor-primary-color)}.tutor-quiz-answers-wrap label input:checked+span:after{content:"\e90f";position:absolute;font-family:"tutor";color:#fff;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);font-size:11px;line-height:1}.tutor-quiz-answers-wrap label input[type="radio"]+span{content:"";border-radius:50%;margin-right:4px;vertical-align:top;font-size:1em}.tutor-quiz-answers-wrap label input[type="radio"]+span:after{content:"";height:8px;width:8px;background:#fff;border-radius:50%;left:50%}.question-type-ordering-item{border:1px solid #d4dadb;padding:10px;margin-bottom:10px;width:250px;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.question-type-ordering-item.ui-sortable-placeholder{background-color:transparent}.question-type-ordering-item .answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.question-type-ordering-item .answer-sorting-bar{cursor:pointer}.quiz-answer-item-matching{padding:10px;display:-webkit-box;display:-ms-flexbox;display:flex;width:25%}.answer-type-matching .quiz-answer-matching-items-wrap .quiz-answer-item-matching{display:inline-block;max-width:none;width:25%;padding:0 10px;vertical-align:top}@media (max-width: 767px){.answer-type-matching .quiz-answer-matching-items-wrap .quiz-answer-item-matching{width:50%}}@media (max-width: 575px){.answer-type-matching .quiz-answer-matching-items-wrap .quiz-answer-item-matching{width:100%}}.answer-type-matching .quiz-answer-matching-items-wrap{margin:0 -10px}.quiz-answer-matching-droppable{height:48px;min-width:200px;border:1px dashed #d4dadb}.quiz-draggable-answer-item{padding:10px 20px;border:1px solid #d4dadb;margin-right:10px;margin-bottom:10px;background-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.quiz-draggable-answer-item .draggable-answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.quiz-draggable-rand-answers{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:80px}.drop-hover{display:none}.quiz-answer-matching-droppable .drop-hover{background-color:#eeeeee;height:100%;width:100%;display:inline-block;float:left}.quiz-answer-matching-droppable .quiz-draggable-answer-item{width:100%;max-width:100%}.quiz-draggable-answer-item .draggable-answer-icon{margin-left:15px}.answer-type-image_matching .quiz-answer-item-matching{display:block}.answer-type-image_matching .quiz-answer-matching-items-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-10px;margin-right:-10px}.answer-type-image_matching .quiz-answer-matching-droppable{width:100%;min-width:100%}.answer-type-image_matching img{width:100%;height:auto}.tutor-quiz-questions-pagination ul{margin:0;padding:0;list-style:none}.tutor-quiz-questions-pagination ul li{display:inline-block}.tutor-quiz-questions-pagination ul li a{background-color:var(--tutor-primary-color);padding:7px 13px;display:block;border-radius:50%;margin-right:10px;color:#ffffff}.tutor-quiz-questions-pagination ul li a:hover,.tutor-quiz-questions-pagination ul li a.active{background-color:var(--tutor-primary-color)}.quiz-image-answering-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-left:-10px;margin-right:-10px}.quiz-image-answering-wrap img{max-width:100%;height:auto}.quiz-image-answering-answer{margin-right:10px;margin-left:10px;width:15%}.quiz-image-answering-image-wrap{margin-bottom:20px}.tutor-quiz-answers-wrap .quiz-image-answering-input-field-wrap input{width:100%;display:block;border:1px solid #d4dadb;-webkit-box-shadow:none;box-shadow:none;background:transparent;border-radius:2px;height:42px}.tutor-quiz-answers-wrap .quiz-image-answering-input-field-wrap input:focus{background:transparent;outline-offset:0 !important}.tutor-next-previous-pagination-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-next-previous-pagination-wrap a{color:var(--tutor-primary-color)}.tutor-course-filter-wrapper{overflow:auto;max-width:1140px !important;margin:0 auto !important}.tutor-course-filter-wrapper>div{padding:12px}.tutor-course-filter-wrapper>div:first-child{width:250px;float:left}.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field{border:1px solid #BABABA;border-radius:6px;overflow:hidden;padding:0 6px;height:auto}.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field input,.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field input:focus,.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field input:active{border:none;outline:0;padding:0;display:inline-block;width:calc(100% - 24px);font-weight:normal;font-size:16px;color:#7A7A7A;height:35px}.tutor-course-filter-wrapper>div:first-child .tutor-course-search-field i{font-size:17px;cursor:pointer;color:#3E64DE}.tutor-course-filter-wrapper>div:first-child h4{font-weight:normal;font-size:20px;color:#161616;margin:16px 0px 12px}.tutor-course-filter-wrapper>div:first-child label{display:block;cursor:pointer;font-weight:normal;font-size:16px;color:#353535}.tutor-course-filter-wrapper>div:last-child{width:calc(100% - 250px);float:right}.tutor-course-filter-wrapper>div:last-child select[name=tutor_course_filter]{border:1px solid #7A7A7A;color:#7A7A7A;padding:3px 4px;font-size:16px;border-radius:6px;cursor:pointer}.tutor-course-filter-wrapper>div .tutor-course-filter-loop-container{display:none}.tutor-course-filter-wrapper .tutor-clear-all-filter{margin-top:28px;display:none}.tutor-course-filter-wrapper .tutor-clear-all-filter>a{height:21px;background:#E8E8E8;border-radius:22px;line-height:21px;text-align:center;font-size:13px;font-weight:500;margin-top:20px;color:#7a7a7a;padding:5px 10px}.tutor-course-filter-wrapper .tutor-clear-all-filter a>i{font-size:10px}@media (max-width: 767px){.tutor-course-filter-wrapper>div{width:100% !important;float:none !important}.tutor-course-filter-wrapper .tutor-course-filter-container>div{overflow:auto}.tutor-course-filter-wrapper .tutor-course-filter-container>div>div{width:50%;float:left}.tutor-course-filter-wrapper .tutor-course-filter-container>div>div:first-child{width:100%}}div[class*="tutor-course-col"]{padding-left:15px;padding-right:15px;margin-bottom:30px}.tutor-course-loop{background:#fff;color:#29303b;overflow:hidden;position:relative;vertical-align:top;border-radius:4px;-webkit-transition:300ms;transition:300ms;border:1px solid rgba(0,0,0,0.05);height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-course-loop a,.tutor-widget-course a{text-decoration:none !important}.tutor-course-header{position:relative}.tutor-course-loop-header-meta{position:absolute;left:0;top:13px;width:100%;padding-left:13px;padding-right:13px;overflow:hidden}.tutor-course-loop-header-meta .tutor-course-wishlist{float:right;background:#fff;font-size:19px;padding:5px 5px;border-radius:3px;-webkit-transition:300ms;transition:300ms}.tutor-course-loop-header-meta .tutor-course-wishlist a{display:block;color:var(--tutor-primary-color);-webkit-transition:300ms;transition:300ms}.tutor-course-loop-header-meta .tutor-course-wishlist:hover{background:var(--tutor-primary-color)}.tutor-course-loop-header-meta .tutor-course-wishlist:hover a{color:#fff}.tutor-course-loop-header-meta .tutor-course-wishlist a:focus{outline:none}.tutor-course-loop-header-meta .tutor-course-wishlist a.has-wish-listed:before{content:"\e908"}.tutor-course-loop-header-meta .tutor-course-wishlist a.updating-icon:before{content:"\e91d";margin-right:0}.tutor-course-loop-level{display:inline-block;background:#9013fe;padding:0 7px;color:#fff;font-size:12px;line-height:20px;border-radius:2px;-webkit-box-shadow:0 0 1px rgba(0,0,0,0.1);box-shadow:0 0 1px rgba(0,0,0,0.1)}.tutor-course-loop:hover{-webkit-box-shadow:0 4px 23px rgba(0,0,0,0.1);box-shadow:0 4px 23px rgba(0,0,0,0.1)}.tutor-course-loop p{margin:0}.tutor-course-loop .tutor-course-header a,.tutor-course-loop .tutor-course-header a img{display:block;border-top-left-radius:4px;border-top-right-radius:4px}.tutor-loop-course-container{padding:25px 19px}.tutor-loop-rating-wrap{color:#f8c51c;margin-bottom:2px;font-size:16px}.tutor-rating-count{color:var(--tutor-text-color)}.tutor-rating-count i{font-style:normal;display:inline-block;margin-left:5px}.tutor-loop-rating-wrap i:before{margin-right:4px;margin-left:0}.tutor-course-loop-title h2{font-size:20px;line-height:28px;font-weight:600;margin-bottom:17px}.tutor-course-loop-title h2 a{color:var(--tutor-text-color)}.tutor-course-loop-title h2 a:hover{color:var(--tutor-primary-color)}.tutor-course-loop-meta{margin-bottom:15px;color:var(--tutor-text-color);font-size:var(--tutor-text-size)}.tutor-course-loop-meta>div{display:inline-block}.tutor-course-loop-meta>div i{font-size:16px;margin-right:4px}.tutor-course-loop-meta>div i,.tutor-course-loop-meta>div span{vertical-align:middle}.tutor-course-loop-meta>div+div{margin-left:10px}.tutor-loop-course-footer{padding:15px;border-top:1px solid rgba(0,0,0,0.05);color:#838791;font-size:12px;line-height:25px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;font-weight:400}.tutor-loop-course-footer:after{content:"";display:table;clear:both}.tutor-loop-course-footer span.woocommerce-Price-currencySymbol{vertical-align:top}.tutor-course-loop-price{color:var(--tutor-text-color);font-size:16px}.tutor-course-loop-price .price del{font-weight:400}.tutor-course-loop-price .price del span{text-decoration:line-through;color:var(--tutor-light-color)}.tutor-course-loop-price .price del>span{margin-right:6px}.tutor-course-loop-price .price del+ins{background:transparent;margin-left:0;text-decoration:none}.tutor-course-loop-price>.price{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-weight:600;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-loop-price>.price .subscription-details{font-size:15px;margin-left:4px;font-weight:400}.tutor-course-loop-price>.price .subscription-details+.tutor-loop-cart-btn-wrap{margin-left:0;margin-top:4px}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a{color:var(--tutor-text-color);position:relative;line-height:20px;vertical-align:top;display:block;font-weight:400;background:transparent;padding:0}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a:hover{color:var(--tutor-primary-color)}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap{margin-left:auto}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a.added{display:none}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a::before{content:"\e915";font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:20px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:5px;vertical-align:top;color:var(--tutor-primary-color)}@-webkit-keyframes mymove{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mymove{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.tutor-course-loop:hover .tutor-loop-course-footer .tutor-loop-cart-btn-wrap{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-course-col-4{width:25%}.tutor-course-col-3{width:33.33%}.tutor-course-col-2{width:50%}.tutor-course-col-1{width:100%}.tutor-course-col-1 .tutor-course-loop{width:100%}.tutor-course-col-5{width:20%}.tutor-course-col-6{width:16.66%}@media (max-width: 991px){.tutor-course-col-6,.tutor-course-col-5,.tutor-course-col-4,.tutor-course-col-3,.tutor-course-col-2{width:50%}}@media (max-width: 575px){.tutor-course-col-6,.tutor-course-col-5,.tutor-course-col-4,.tutor-course-col-3,.tutor-course-col-2{width:100%}}.tutor-course-filter-wrap{margin-bottom:50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-filter-form{display:inline-block;margin:0}.tutor-courses{clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;padding:0}.tutor-loop-course-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:100%}.clearfix:before,.clearfix:after{display:block;clear:both;content:""}.tutor-loop-author,.tutor-meta{color:#bac0cf}.tutor-text-mute{color:#bac0cf;font-weight:400}.tutor-loop-author{overflow:hidden;font-size:var(--tutor-text-size)}.tutor-loop-author .tutor-single-course-avatar img{width:25px;height:25px;display:block;border-radius:50%;margin-right:6px}.tutor-loop-author .tutor-single-course-avatar .tutor-text-avatar{height:25px;width:25px;display:inline-block;border-radius:50%;text-align:center;line-height:25px;font-size:11px;margin-right:6px}.tutor-loop-author>div{display:inline-block;float:left}.tutor-loop-author>div a{color:var(--tutor-text-color);font-weight:500;-webkit-transition:300ms;transition:300ms}.tutor-loop-author>div a:hover{color:var(--tutor-primary-color)}.tutor-loop-author>div span{display:inline-block;margin:0 2px 0 2px;color:var(--tutor-light-color);line-height:25px;font-weight:400}.tutor-course-lising-category a:not(:last-child):after{content:", ";margin-right:5px}.tutor-course-enrolled-wrap{margin:0 -20px -20px !important;padding:12px 20px;overflow:hidden;border-top:1px solid #dcdfe5;font-size:14px}.tutor-course-enrolled-wrap p{font-weight:600;margin:0}.tutor-course-enrolled-wrap p i{padding-right:9px;float:left;font-size:20px;line-height:20px}.tutor-course-enrolled-wrap p i,.tutor-course-enrolled-wrap p span{color:var(--tutor-success-button-color)}.tutor-notice-warning{background-color:#fcf8e3;border-color:#faebcc;padding:20px;margin-bottom:10px}.tutor-info-msg,.tutor-success-msg,.tutor-warning-msg,.tutor-error-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.tutor-info-msg{color:var(--tutor-primary-color);background-color:#bef}.tutor-success-msg{color:var(--tutor-success-button-color);background-color:#dff2bf}.tutor-warning-msg{color:#9f6000;background-color:#feefb3}.tutor-error-msg{color:#d8000c;background-color:#fbdcdc;border:1px solid #d8000c}.cart-required-login,.cart-required-login a,.cart-required-login form{cursor:pointer}.single_add_to_cart_button,a.tutor-button,.tutor-button,a.tutor-btn,.tutor-btn{color:#fff;border:1px solid var(--tutor-primary-button-color);background-color:var(--tutor-primary-button-color);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px 20px;border-radius:4px;text-transform:capitalize;line-height:20px;font-size:14px;font-weight:600;cursor:pointer;-webkit-transition:300ms;transition:300ms;overflow:hidden;vertical-align:top}.single_add_to_cart_button i,a.tutor-button i,.tutor-button i,a.tutor-btn i,.tutor-btn i{line-height:19px;margin-right:7px;font-size:16px}.single_add_to_cart_button.btn-sm,a.tutor-button.btn-sm,.tutor-button.btn-sm,a.tutor-btn.btn-sm,.tutor-btn.btn-sm{padding:9px 14px;line-height:19px}a.tutor-button.bordered-button,.tutor-button.bordered-button,a.tutor-btn.bordered-btn,.tutor-btn.bordered-btn{color:var(--tutor-primary-button-color);border:1px solid var(--tutor-primary-button-color);background-color:transparent !important}a.tutor-button.default-btn,.tutor-button.default-btn,a.tutor-btn.default-btn,.tutor-btn.default-btn{color:#393c40;border:1px solid #b8babe;background:var(--tutor-primary-button-color)}a.tutor-button.default-btn i,.tutor-button.default-btn i,a.tutor-btn.default-btn i,.tutor-btn.default-btn i{color:#fff}a.tutor-button.default-btn:hover,.tutor-button.default-btn:hover,a.tutor-btn.default-btn:hover,.tutor-btn.default-btn:hover{background-color:var(--tutor-primary-button-color);border-color:var(--tutor-primary-color);color:#fff}a.tutor-button.default-btn:hover i,.tutor-button.default-btn:hover i,a.tutor-btn.default-btn:hover i,.tutor-btn.default-btn:hover i{color:#fff}a.tutor-button:hover,.tutor-button:hover,a.tutor-btn:hover,.tutor-btn:hover{background-color:var(--tutor-primary-button-color);border-color:var(--tutor-primary-button-color);color:#fff;-webkit-filter:brightness(0.9);filter:brightness(0.9)}a.tutor-button.bordered-button:hover,.tutor-button.bordered-button:hover,a.tutor-btn.bordered-btn:hover,.tutor-btn.bordered-btn:hover{border:1px solid var(--tutor-primary-button-color);background-color:var(--tutor-primary-button-color) !important;color:#fff !important}a.tutor-button.button-light,.tutor-button.button-light{color:#b1b8c9;background-color:#dae4e6;border:1px solid #dae4e6}a.tutor-button.button-light:hover,.tutor-button.button-light:hover{color:#939bae;background-color:#e8eff1;border:1px solid #e8eff1}.tutor-button.tutor-danger{background-color:var(--tutor-danger-button-color);border-color:#e53935}.tutor-button.tutor-danger:hover{background-color:var(--tutor-danger-button-color);border-color:var(--tutor-danger-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-button.tutor-success{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color)}.tutor-button.tutor-success:hover{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-button.tutor-warning{background:var(--tutor-warning-button-color);border-color:var(--tutor-warning-button-color)}.tutor-button.tutor-warning:hover{background:var(--tutor-warning-button-color);border-color:var(--tutor-warning-button-color);-webkit-filter:brightness(0.9);filter:brightness(0.9)}.course-enrolled-nav-wrap{border-bottom:1px solid #dedfe0;margin-bottom:45px}.tutor-button:disabled,.tutor-button[disabled],.tutor-button:disabled:hover,.tutor-button[disabled]:hover{display:block;border:0px;background-color:#DCDCE1;color:#737787;cursor:default}.tutor-button span{font-size:12px;display:block}.tutor-button-block{width:100%;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tutor-wrap{width:100%}.tutor-wrap nav.course-enrolled-nav ul{list-style:none;margin:0 0 -1px;padding:0}.tutor-wrap nav.course-enrolled-nav ul li{display:inline-block}.tutor-wrap nav.course-enrolled-nav ul li a{display:block;font-size:16px;padding:5px 0 20px;margin-right:20px;color:var(--tutor-light-color);border-bottom:2px solid transparent}.tutor-wrap nav.course-enrolled-nav ul li:not(:first-child) a{margin-left:20px}.tutor-wrap nav.course-enrolled-nav ul li.active a{border-bottom:2px solid var(--tutor-primary-color);color:var(--tutor-text-color)}@media (max-width: 575px){.tutor-wrap nav.course-enrolled-nav ul li{display:inline-block}.tutor-wrap nav.course-enrolled-nav ul li:not(:first-child) a,.tutor-wrap nav.course-enrolled-nav ul li a{padding:8px;margin:0}.tutor-wrap nav.course-enrolled-nav ul li.active a{border:none;color:var(--tutor-primary-color)}}.tutor-updating-message i{display:none}.tutor-profile-photo-upload-wrap{width:200px;height:auto;margin-bottom:70px;position:relative}.tutor-profile-photo-upload-wrap img{width:100%;height:auto;display:block}a.tutor-profile-photo-upload-btn,button.tutor-profile-photo-upload-btn{position:absolute;top:100%;background-color:var(--tutor-primary-color);color:#fff;display:block;width:100%;text-align:CENTER;padding:9px 0}a.tutor-profile-photo-upload-btn:hover,button.tutor-profile-photo-upload-btn:hover{background-color:var(--tutor-primary-hover-color);color:#fff}.tutor-profile-photo-delete-btn{position:absolute;color:#ff000c;right:10px;top:10px}.single-instructor-wrap{border:1px solid #e8eff1;margin-bottom:30px;border-radius:4px}.single-instructor-wrap .single-instructor-top{padding:20px;border-bottom:1px solid #e8eff1;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width: 767px){.single-instructor-wrap .single-instructor-top{-ms-flex-wrap:wrap;flex-wrap:wrap}}.single-instructor-wrap .single-instructor-top h3,.single-instructor-wrap .single-instructor-top h4{margin:0;padding:0}.single-instructor-wrap .tutor-instructor-left{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:30px}@media (max-width: 767px){.single-instructor-wrap .tutor-instructor-left{width:100%;margin-bottom:15px}}.single-instructor-wrap .instructor-avatar{float:left}.single-instructor-wrap .instructor-avatar img{max-width:50px;height:auto;border-radius:50%}.single-instructor-wrap .instructor-name{float:left;padding-left:20px;max-width:180px}.single-instructor-wrap .instructor-name h3{font-size:16px;color:var(--tutor-text-color);font-weight:600}.single-instructor-wrap .instructor-name h3 a{font-weight:500;color:var(--tutor-text-color)}.single-instructor-wrap .instructor-name h4{font-weight:500;color:var(--tutor-light-color)}.single-instructor-wrap .single-instructor-bottom{padding:15px 20px;text-align:right;overflow:hidden}@media (max-width: 767px){.single-instructor-wrap .single-instructor-bottom{text-align:left}}.single-instructor-wrap .single-instructor-bottom p{margin:0}.single-instructor-wrap .single-instructor-bottom .ratings{float:left}.single-instructor-wrap .single-instructor-bottom .ratings i{margin-right:4px}.single-instructor-wrap .single-instructor-bottom .courses,.single-instructor-wrap .single-instructor-bottom .students{display:inline-block;margin-left:20px}.single-instructor-wrap .single-instructor-bottom .courses i,.single-instructor-wrap .single-instructor-bottom .students i{font-size:18px;display:inline-block;margin-right:2px;vertical-align:middle}.single-instructor-wrap .single-instructor-bottom .ratings .rating-total-meta{color:#bac0cf}.single-instructor-wrap .single-instructor-bottom .ratings .rating-generated{color:#f8c51c}.tutor-dashboard-pagination-results-stats{margin:10px 0 30px}.statement-address{margin:10px 0;color:#555}.statement-order-completed{background:var(--tutor-success-button-color);color:#fff;padding:2px 5px;border:none}.tutor-login-wrap{max-width:520px;margin:0 auto;padding:40px 55px;-webkit-box-shadow:0 0 15px rgba(0,0,0,0.1);box-shadow:0 0 15px rgba(0,0,0,0.1);border-radius:5px}.tutor-login-wrap form{margin:0}.tutor-login-wrap .tutor-login-title{margin-bottom:25px;padding:0 40px;text-align:center}.tutor-login-form-wrap{max-width:450px;margin:auto}.tutor-login-form-wrap p{margin-bottom:0}.tutor-login-form-wrap label{display:block !important;margin-bottom:4px}.tutor-login-form-wrap .tutor-alert{margin-bottom:20px}.tutor-login-form-wrap input[type="password"],.tutor-login-form-wrap input[type="text"]{width:100%;display:block;border:1px solid #e8eff1;-webkit-box-shadow:none;box-shadow:none;margin-bottom:20px;border-radius:4px;background:#eceef4;line-height:48px;padding:0;text-indent:15px}.tutor-login-form-wrap input[type="password"]:focus,.tutor-login-form-wrap input[type="text"]:focus{background:#ffffff;border-color:var(--tutor-primary-color)}.tutor-login-form-wrap input::-webkit-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input::-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input:-ms-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input:-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-rememeber-wrap{overflow:hidden;text-align:right;margin-bottom:30px}.tutor-login-rememeber-wrap p{display:inline-block;float:left}.tutor-login-rememeber-wrap p,.tutor-login-rememeber-wrap label{margin:0}.tutor-form-register-wrap a,.tutor-login-rememeber-wrap a,.tutor-login-rememeber-wrap label{color:#606c8f;vertical-align:middle;opacity:0.5;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";-webkit-transition:300ms;transition:300ms}.tutor-form-register-wrap a:hover,.tutor-login-rememeber-wrap a:hover,.tutor-login-rememeber-wrap label:hover{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-login-form-wrap input[type="submit"]{color:#fff;background-color:var(--tutor-primary-button-color);border-color:var(--tutor-primary-button-color);padding:15px 30px;border-radius:4px;text-transform:uppercase;line-height:1;display:block;width:100%;-webkit-transition:300ms;transition:300ms}.tutor-login-form-wrap input[type="checkbox"]{margin-right:4px}.tutor-form-register-wrap{text-align:center;margin-top:15px}.tutor-course-login-wrap h4{font-size:42px;line-height:1.2;margin-bottom:20px;color:var(--tutor-text-color)}.tutor-cart-box-login-form{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.6);z-index:99;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.login-overlay-close{position:absolute;background:transparent;width:100%;height:100%;z-index:-1}.course-login-title{margin-bottom:50px}.tutor-cart-box-login-form .tutor-cart-box-login-form-inner{background:#fff;padding:50px 40px;position:relative;width:400px;font-size:16px;font-weight:400;max-height:90%;overflow:auto}.tutor-cart-box-login-form-inner button.tutor-popup-form-close{position:absolute;padding:0;margin:0;border:none;background-color:transparent;top:14px;right:20px;opacity:0.4;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";cursor:pointer;-webkit-transition:300ms;transition:300ms;color:var(--tutor-text-color)}.tutor-cart-box-login-form-inner button.tutor-popup-form-close:hover{color:red}.tutor-option-field-row label,.tutor-form-group label{display:block;margin-bottom:10px}.tutor-option-field textarea,.tutor-option-field select,.tutor-option-field input[type="text"],.tutor-option-field input[type="number"],.tutor-option-field input[type="pas.tutor-dashboard-content-innersword"],.tutor-form-group textarea,.tutor-form-group select,.tutor-form-group input[type="text"],.tutor-form-group input[type="number"],.tutor-form-group input[type="password"]{width:100%;display:block;border:1px solid #dcdfe5;-webkit-box-shadow:none;box-shadow:none;margin-bottom:20px;border-radius:4px;background:#ffffff;line-height:48px;padding:0;text-indent:15px;-webkit-transition:300ms;transition:300ms;font-size:16px}.tutor-form-group{position:relative}.tutor-form-group span.tutor-input-prepand{position:absolute;height:calc(100% - 2px);font-size:21px;line-height:50px;padding:0 12px;background:transparent;border-right:1px solid #dcdfe5;top:1px}.tutor-form-group span.tutor-input-prepand+input{padding-left:35px}.tutor-course-builder-form-elem{margin-bottom:20px}.tutor-option-field .select2-container,.tutor-form-group .select2-container{margin-bottom:20px;width:100% !important}.tutor-option-field .select2-container ul.select2-selection__rendered,.tutor-form-group .select2-container ul.select2-selection__rendered{padding:4px 9px;display:block}.tutor-option-field .select2-container li.select2-selection__choice,.tutor-form-group .select2-container li.select2-selection__choice{background:#ebeef0;color:#606c8f;line-height:29px;border-radius:3px;padding:0 9px;margin:5px;border:none;font-weight:600}.tutor-option-field .select2-container .select2-search__field,.tutor-form-group .select2-container .select2-search__field{padding:8px 3px 8px 6px;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0}.tutor-option-field .select2-container .select2-search__field::-webkit-input-placeholder,.tutor-form-group .select2-container .select2-search__field::-webkit-input-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-search__field::-moz-placeholder,.tutor-form-group .select2-container .select2-search__field::-moz-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-search__field:-ms-input-placeholder,.tutor-form-group .select2-container .select2-search__field:-ms-input-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-search__field:-moz-placeholder,.tutor-form-group .select2-container .select2-search__field:-moz-placeholder{color:#abafb6}.tutor-option-field .select2-container .select2-selection--single,.tutor-option-field .select2-container .select2-selection--multiple,.tutor-form-group .select2-container .select2-selection--single,.tutor-form-group .select2-container .select2-selection--multiple{border-color:#dcdfe5}.tutor-option-field .select2-container.select2-container--focus .select2-selection--single,.tutor-option-field .select2-container.select2-container--focus .select2-selection--multiple,.tutor-form-group .select2-container.select2-container--focus .select2-selection--single,.tutor-form-group .select2-container.select2-container--focus .select2-selection--multiple{border-color:var(--tutor-primary-color)}.tutor-option-field textarea,.tutor-form-group textarea{line-height:26px;text-indent:0;padding:15px;height:180px}.tutor-option-field textarea:focus,.tutor-form-group textarea:focus,.tutor-option-field input:focus,.tutor-form-group input:focus{outline:none}.tutor-dashboard-course-builder-wrap .tutor-option-field textarea,.tutor-dashboard-course-builder-wrap .tutor-form-group textarea{height:100px}.tutor-option-field textarea:focus,.tutor-option-field input:not([type="submit"]):focus,.tutor-form-group textarea:focus,.tutor-form-group input:not([type="submit"]):focus{background:#ffffff;border-color:var(--tutor-primary-color)}.tutor-option-field textarea::-webkit-input-placeholder,.tutor-option-field input::-webkit-input-placeholder,.tutor-form-group textarea::-webkit-input-placeholder,.tutor-form-group input::-webkit-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field textarea::-moz-placeholder,.tutor-option-field input::-moz-placeholder,.tutor-form-group textarea::-moz-placeholder,.tutor-form-group input::-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field textarea:-ms-input-placeholder,.tutor-option-field input:-ms-input-placeholder,.tutor-form-group textarea:-ms-input-placeholder,.tutor-form-group input:-ms-input-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field textarea:-moz-placeholder,.tutor-option-field input:-moz-placeholder,.tutor-form-group textarea:-moz-placeholder,.tutor-form-group input:-moz-placeholder{color:#b0b6c8;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}.tutor-option-field select,.tutor-form-group select{padding:2px 5px;height:50px}.tutor-form-group.tutor-reg-form-btn-wrap{text-align:right}.tutor-option-field p.desc{margin:-10px 0 20px;font-size:13px;font-style:italic;opacity:0.7}.tutor-option-field:last-child .tutor-option-field p.desc{margin-bottom:0}.tutor-option-gorup-fields-wrap .tutor-lesson-video-runtime{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-option-gorup-fields-wrap .tutor-lesson-video-runtime .tutor-option-group-field{padding-right:30px}.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:46px}.select2-container--default .select2-selection--single .select2-selection__arrow{height:46px}.select2-container .select2-selection--single .select2-selection__rendered{padding-left:13px;font-size:16px}.select2-container .select2-selection--single{height:48px}.select2-container .select2-selection--multiple{min-height:50px}.tutor-price-preview-box{border:1px solid #dcdfe5;padding:20px;margin-bottom:30px;border-radius:4px;overflow:hidden}.tutor-price-box-thumbnail{margin:-20px -20px 20px}.tutor-price-box-thumbnail .tutor-single-lesson-segment{margin-bottom:0}.tutor-price-box-description h6{font-size:23px;margin:15px 0 5px}.tutor-price-box-description ul{list-style:none}.tutor-course-purchase-box a{display:block;text-align:center;margin-top:6px}.tutor-price-preview-box .price{font-size:35px;font-weight:500;margin:0 0 20px;overflow:hidden;line-height:1}.tutor-price-preview-box .price .subscription-details{font-size:var(--tutor-text-size);display:block;margin-top:12px;line-height:1.2em}.tutor-price-preview-box .price>.price{margin-bottom:0}.tutor-price-preview-box .price del+ins{margin-left:0;float:left}.tutor-course-reviews-wrap{border:1px solid #e8eff1;border-radius:4px}.tutor-course-avg-rating-total{color:var(--tutor-light-color)}.tutor-course-avg-rating-total span{color:var(--tutor-text-color)}.tutor-review-individual-item{border-top:1px solid #e8eff1;padding:30px;overflow:hidden}.tutor-review-individual-item p{margin:0;padding:0}.course-avg-rating-wrap{padding:20px 20px 20px 40px}.tutor-review-individual-item .review-left{width:200px;float:left;overflow:hidden}.tutor-review-individual-item .review-content{padding-left:200px}@media (max-width: 991px){.tutor-review-individual-item .review-left{width:100%;float:none;margin-bottom:25px}.tutor-review-individual-item .review-content{padding-left:0}}@media (max-width: 991px){.tutor-single-course-sidebar{margin-top:30px}}.tutor-review-individual-item .review-avatar{width:50px;float:left}.tutor-review-individual-item .review-avatar img{border-radius:50%;margin:0;border:none;max-width:100%;height:auto}.tutor-review-individual-item .tutor-review-user-info{float:left;padding-left:20px}.tutor-review-individual-item .tutor-review-user-info p{margin-bottom:0}.tutor-review-individual-item .tutor-review-user-info a{color:var(--tutor-text-color)}.review-avatar .tutor-text-avatar,.tutor-dashboard-avater .tutor-text-avatar,.instructor-avatar .tutor-text-avatar{border-radius:50%;width:50px;height:50px;text-align:center;display:block;line-height:50px;color:#ffffff;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.course-avg-rating-wrap .course-avg-rating{font-size:76px;line-height:1;font-weight:400}.course-avg-rating-wrap p{margin:0}.tutor-review-individual-item .tutor-review-name{font-size:16px;font-weight:600}.tutor-review-individual-item .review-meta{color:var(--tutor-light-color)}.individual-review-rating-wrap{color:#f8c51c}.individual-review-rating-wrap i,.course-avg-rating-html i{margin-right:4px;color:#f8c51c}.course-rating-meter{display:-webkit-box;display:-ms-flexbox;display:flex}.course-rating-meter i.tutor-icon-star-full{color:#f8c51c}.rating-meter-bar-wrap{-webkit-box-flex:1;-ms-flex:1;flex:1}.rating-meter-col{margin:0 3px}.course-rating-meter{margin-bottom:8px}.rating-meter-bar{height:5px;width:100%;background:#e8eff1;margin-top:11px;border-radius:15px;overflow:hidden}.rating-meter-fill-bar{background:#f8c51c;height:5px}.rating-meter-col.rating-text-col{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-pagination,.tutor-pagination-wrap{text-align:center;margin:20px 0}.tutor-pagination a,.tutor-pagination span,.tutor-pagination-wrap a,.tutor-pagination-wrap span{padding:3px;display:inline-block}.tutor-pagination-wrap a:hover,.tutor-pagination a:hover{color:var(--tutor-primary-color)}.tutor-course-tags{margin:-5px}.tutor-course-tags a{padding:6px 15px;background:#e8eff1;display:inline-block;margin:5px;color:var(--tutor-text-color);border-radius:2px;-webkit-transition:300ms;transition:300ms}.tutor-course-tags a:hover{color:#000}.certificate-download-btn{margin-top:20px;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;text-align:center;text-transform:uppercase !important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#tutor-single-entry-content .tutor-course-prerequisites{padding:60px}.prerequisites-course-lists{padding:0;list-style:none;margin:0}.prerequisites-course-lists li a{padding:13px 15px;border:1px solid #dcdfe5;margin-bottom:20px;border-radius:4px;font-weight:500;color:var(--tutor-primary-color);font-size:16px}.prerequisites-course-lists li:first-child{padding:13px 40px 13px 60px;border:1px solid #f7e5b9;margin-bottom:20px;border-radius:4px;font-weight:500;background:#fffff5;color:#b39f70;position:relative}.prerequisites-course-lists li:first-child>span{position:absolute;left:20px;top:13px}.prerequisites-course-lists li .prerequisites-course-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.prerequisites-course-feature-image img{width:70px;border-radius:2px;height:auto;margin:0 !important;-webkit-box-shadow:0 0 1px rgba(0,0,0,0.08);box-shadow:0 0 1px rgba(0,0,0,0.08)}.prerequisites-course-lists li .prerequisites-course-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-left:15px;-webkit-transition:300ms;transition:300ms}.prerequisites-course-lists li a:hover .prerequisites-course-title{color:var(--tutor-primary-color)}.prerequisites-course-checkmark{line-height:24px;height:24px;text-transform:uppercase;font-size:12px;font-weight:700;min-width:107px}.prerequisites-course-checkmark i{height:24px;width:24px;background:#dbdddd;color:#dbdddd;display:inline-block;text-align:center;border-radius:2px;margin-right:3px}.prerequisites-course-checkmark.is-complete i{background:var(--tutor-success-button-color);color:#fff}.tutor-single-course-meta ul li.tutor-social-share{float:right;margin-right:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width: 575px){.tutor-single-course-meta ul li.tutor-social-share{display:none}}.tutor-single-course-meta ul li.tutor-social-share button{margin:0;border:none;background:transparent;color:var(--tutor-light-color);-webkit-transition:300ms;transition:300ms;padding:0 4px;cursor:pointer}.tutor-single-course-meta ul li.tutor-social-share button:hover{color:var(--tutor-primary-color)}.rtl .tutor-single-course-meta ul li.tutor-social-share{float:left}.rtl .tutor-single-course-meta ul li,.rtl .tutor-loop-author>div{float:right}.rtl .tutor-single-course-meta ul li{margin-right:0;margin-left:40px}.rtl .tutor-wrap nav.course-enrolled-nav ul li a{margin-right:0;margin-left:20px}.rtl .tutor-progress-bar .tutor-progress-filled:after{left:auto;right:var(--tutor-progress-left);-webkit-transform:translateY(-50%) translateX(50%);transform:translateY(-50%) translateX(50%)}.rtl .tutor-progress-percent{padding-left:0;padding-right:20px}.rtl .tutor-course-lesson h5 i{margin-right:0;margin-left:10px}.rtl .tutor-course-lesson h5 .lesson-preview-icon i{margin-right:10px;margin-left:0}.rtl .tutor-course-lesson h5 .tutor-lesson-duration{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:left}.rtl .tutor-custom-list-style li{padding-right:25px;padding-left:0px}.rtl .tutor-custom-list-style li:before{left:auto;right:0}.rtl .single-instructor-wrap .instructor-name,.rtl .single-instructor-wrap .instructor-avatar{float:right}.rtl .single-instructor-wrap .instructor-name{padding-left:0;padding-right:20px}.rtl .single-instructor-wrap .instructor-bio{padding-left:0;padding-right:260px}.rtl .tutor-single-page-top-bar .tutor-topbar-back-to-curse-wrap{margin-left:30px;margin-right:0}.rtl .tutor-single-lesson-button-group .tutor-single-lesson-button a,.rtl .tutor-topics-in-single-lesson .tutor-single-lesson-items a{padding:14px 17px 14px 100px}.rtl .tutor-lessons-under-topic .tutor-lesson-right-icons{right:auto;left:15px}.rtl .tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete{margin-left:0;margin-right:8px}.rtl .tutor-single-lesson-button-group .tutor-single-lesson-button a>i:first-child,.rtl .tutor-topics-in-single-lesson .tutor-single-lesson-items a>i:first-child{margin-right:0;margin-left:10px}.rtl .tutor-topbar-home-btn{margin-left:0;margin-right:20px}@media screen and (max-width: 546px){.rtl .tutor-topbar-home-btn{margin-right:10px}}.rtl .tutor-single-page-top-bar .tutor-single-lesson-segment button.course-complete-button{margin-left:15px;margin-right:0}.tutor-frontend-modal{position:fixed;width:100%;height:100%;left:0;top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:999999}.tutor-frontend-modal .tutor-frontend-modal-overlay{background:rgba(0,0,0,0.7);height:100%;width:100%;position:fixed;left:0;top:0;z-index:-1;cursor:url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.852 12.004L.23 22.7a.764.764 0 0 0 0 1.076.75.75 0 0 0 1.068 0L12 13l10.703 10.778a.75.75 0 0 0 1.069 0 .764.764 0 0 0 0-1.076L13.148 12.004l10.63-10.706a.764.764 0 0 0 0-1.075.752.752 0 0 0-1.067 0L12 11.008 1.289.223a.752.752 0 0 0-1.068 0 .764.764 0 0 0 0 1.076l10.631 10.705z' fill='%23F0576A' fill-rule='evenodd'/%3E%3C/svg%3E"),auto}.tutor-frontend-modal .tutor-frontend-modal-content{position:relative;background:#fff;padding:60px;width:90%;max-width:750px;max-height:90%;overflow-y:auto}@media (max-width: 768px){.tutor-frontend-modal .tutor-frontend-modal-content{padding:40px}}@media (max-width: 540px){.tutor-frontend-modal .tutor-frontend-modal-content{padding:20px}}button.tm-close.tutor-icon-line-cross{position:absolute;right:23px;top:23px;background:transparent;padding:0;font-size:24px;border:none;color:var(--tutor-light-color)}button.tm-close.tutor-icon-line-cross:hover{color:red}.label-order-status{padding:3px 5px;border-radius:3px}.label-status-completed{background-color:#4bd863;color:#ffffff}.label-status-cancelled{background-color:#fd6a03;color:#ffffff}.label-status-on-hold{background-color:#db5382;color:#ffffff}.tutor-lesson-content-area h2{margin-bottom:25px;margin-top:20px;font-weight:500}.assignment-result-wrap{text-align:center;padding:10px 0}.submitted-assignment-grade-pass{color:var(--tutor-success-button-color)}.submitted-assignment-grade-failed{color:red}.received-marks{color:var(--tutor-primary-color)}.tutor-dashboard-course-builder-wrap .tutor-form-row{margin-top:20px;margin-bottom:20px}.video_source_wrap_html5{width:100px;text-align:center}.video-poster-img img{max-width:200px;height:auto}.tutor-assignment-information{font-size:16px}.tutor-assignment-information ul{padding:0;margin:0 0 22px;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-assignment-information ul li strong{font-weight:700}.tutor-assignment-attachment-upload-wrap .tutor-form-group{display:inline-block}.tutor-assignment-attachment-upload-wrap .tutor-form-group label+input{display:none}.tutor-assignment-attachment-upload-wrap .tutor-form-group label{padding:15px 17px;border:1px solid #dcdfe5;overflow:hidden;margin-right:15px;border-radius:4px;cursor:pointer}.tutor-assignment-attachment-upload-wrap .tutor-form-group label i{font-size:30px;line-height:30px;float:left;margin-right:12px}.tutor-assignment-attachment-upload-wrap .tutor-form-group label span{line-height:30px}.tutor-assignment-attachment-upload-wrap{margin-bottom:40px}#tutor-course-topics a{text-decoration:none}#tutor-course-topics .tutor-topics-wrap{border-bottom:1px solid #f6f8fa;padding-bottom:0;margin:0}.tutor-untopics-lessons .course-content-item,.course-contents .course-content-item{padding:10px 12px 10px 25px;border-bottom:1px solid #d9d9d9;background-color:#ebeef0}.tutor-untopics-lessons .course-content-item .tutor-lesson-top,.course-contents .course-content-item .tutor-lesson-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-untopics-lessons .course-content-item .tutor-lesson-top a:last-child,.course-contents .course-content-item .tutor-lesson-top a:last-child{margin-left:auto}.tutor-untopics-lessons .course-content-item .tutor-lesson-top a.open-tutor-lesson-modal,.course-contents .course-content-item .tutor-lesson-top a.open-tutor-lesson-modal{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-untopics-lessons .course-content-item .tutor-lesson-top a,.course-contents .course-content-item .tutor-lesson-top a{color:#393c40;font-weight:400;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-untopics-lessons .course-content-item .tutor-lesson-top i,.course-contents .course-content-item .tutor-lesson-top i{padding-right:7px;color:#393c40}.tutor-untopics-lessons .course-content-item .tutor-lesson-top .tutor-updating-message i,.course-contents .course-content-item .tutor-lesson-top .tutor-updating-message i{display:none}.tutor-untopics-lessons .course-content-item .tutor-lesson-top i.tutor-icon-garbage:hover,.course-contents .course-content-item .tutor-lesson-top i.tutor-icon-garbage:hover{color:red}.tutor-lessons.ui-sortable{min-height:20px}#tutor-course-topics .drop-lessons p{margin:0}#tutor-course-topics .course-content-item:hover{background-color:#ebeef0}#tutor-course-topics .tutor-lessons{padding-left:0}#tutor-course-topics .tutor-lesson-top,#tutor-course-topics .tutor-lesson-top i{font-size:15px}#tutor-course-topics .tutor-lesson-top .open-tutor-quiz-modal i{display:inline-block;vertical-align:middle;margin-right:5px}#tutor-course-topics .tutor-lesson-top{display:-webkit-box;display:-ms-flexbox;display:flex}#tutor-course-topics .tutor-lesson-top .open-tutor-lesson-modal,.tutor-quiz .open-tutor-quiz-modal,.course-content-item .open-tutor-assignment-modal{-webkit-box-flex:1;-ms-flex:1;flex:1}#tutor-course-topics .tutor-lesson-top i.tutor-icon-move{margin-right:10px;cursor:ns-resize}.rtl #tutor-course-topics .tutor-lesson-top i.tutor-icon-move{margin-right:0;margin-left:10px}#tutor-course-topics .tutor-lesson-top i.tutor-icon-pencil{margin:0 10px}#tutor-course-topics .tutor-lesson-top a{color:#393c40}#tutor-course-topics .tutor-lesson-top a.tutor-updating-message i{display:none}.course-move-handle{cursor:row-resize}.new-topic-btn-wrap{padding:20px}p.course-empty-content{padding-left:20px;padding-right:20px}.tutor_btn_lg{line-height:45px;background-color:var(--tutor-primary-color);color:#ffffff;padding:0 20px;display:inline-block;border-radius:2px;font-weight:300;border:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.tutor_btn_lg:focus{-webkit-box-shadow:none;box-shadow:none;border:none;outline:none}.tutor_btn_lg:focus,.tutor_btn_lg:hover{background-color:var(--tutor-primary-color);color:#ffffff}.ui-sortable-placeholder{visibility:visible;background-color:#dddd}.tutor-untopics-lessons{border:1px solid #eee;padding:20px;margin:0 -1px -1px;background-color:#fbfbfb}.tutor-untopics-lessons h3{font-weight:300}.tutor-untopics-lessons .tutor-lessons{padding-left:0 !important}.create-new-lesson-wrap{text-align:center}.tutor-metabox-add-topics .tutor-option-field-row:last-child,.tutor-topics-edit-form .tutor-option-field-row:last-child{border-bottom:none}.tutor-metabox-add-topics .tutor-option-field-row textarea{height:120px}.topic-edit-icon{cursor:pointer}.tutor-topic-title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;font-weight:300;margin:0;line-height:45px;padding-left:15px}.rtl .tutor-topic-title{padding-left:0;padding-right:15px}.tutor-topic-title a{color:#393c40}.tutor-topic-title .topic-inner-title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;max-width:calc(100% - 137px);font-weight:400;font-size:16px}.tutor-topic-title span{padding:0 5px}.tutor-topic-title span.expand-collapse-wrap{border-left:1px solid #e7e7e7}.tutor-topic-title span.expand-collapse-wrap a{display:block;padding:0 13px}.topic-delete-btn{float:right}.text-muted{color:#cccccc}.topic-delete-btn a{padding:0 10px}.topic-delete-btn a:hover{color:#ff0000}.topic-delete-btn .dashicons{width:12px;height:12px;font-size:12px}#tutor-course-topics{position:relative}#tutor-course-topics .inside{padding:0;margin:0}#tutor-course-topics a:focus{-webkit-box-shadow:none;box-shadow:none}#tutor-course-topics .toggle-indicator:before{margin-top:20px}.tutor-topics-wrap:nth-child(2n){background:#f6f8fa}#tutor-course-content-wrap{border:1px solid #ddd;margin-top:20px}#tutor-course-content-wrap .tutor-topics-edit-form,#tutor-course-content-wrap .tutor-metabox-add-topics{border-left:none;border-right:none;margin-top:0}#tutor-course-content-wrap .tutor-topics-wrap .tutor-topics-body{background:#ebeef0;padding:0px}.tutor-course-builder-button{line-height:35px;color:#393c40;display:inline-block;padding:0 20px;border-radius:4px;margin-right:10px;border:1px solid #d3d4d5;background-color:#f2f2f2;cursor:pointer;vertical-align:top;-webkit-transition:300ms;transition:300ms;font-weight:400}.tutor-course-builder-button i{line-height:35px;display:inline-block;vertical-align:top;margin-right:6px}.tutor-course-builder-button.tutor-updating-message i{display:none}.tutor-course-builder-button.tutor-btn-lg{line-height:40px}.tutor-add-quiz-button-wrap{padding:15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-add-quiz-button-wrap>*+*{margin-left:15px}.tutor-course-builder-button.active{color:#fff;background:var(--tutor-primary-color);border-color:var(--tutor-primary-color)}.tutor-course-builder-button:hover{-webkit-filter:brightness(0.9);filter:brightness(0.9)}.tutor-btn-lg i{color:var(--tutor-primary-color);vertical-align:top;margin-right:5px;font-size:16px;display:inline-block;line-height:40px}.tutor-course-builder-button.active i,.tutor-course-builder-button:hover i{color:#fff}.tutor-course-builder-button.tutor-success{background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);color:#fff}.tutor-updating-message:before{display:inline-block;font-family:"tutor";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;content:"\e91d";-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;margin-right:6px}.rtl .tutor-updating-message:before{margin-right:0;margin-left:6px}.lesson-modal-close-wrap a{background:#ffffff;width:50px;height:59px;display:inline-block;text-align:center;line-height:57px;color:#3a3d42;font-size:15px;position:absolute;right:0;top:0}.lesson-modal-close-wrap a:hover{color:red}.lesson-modal-form-wrap .lesson-modal-field-row{padding:10px 0}.lesson-modal-field.tutor-lesson-modal-title-wrap{width:95%}.lesson-modal-field-row input[type="text"]{background-color:#fff;border:1px solid #ddd;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;color:#333;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0 10px 0 0;min-width:400px;min-height:35px}.tutor-lesson-modal-title-wrap input{width:100%}.lesson-modal-form-wrap .tutor-option-field-row{padding:10px 0}.lesson-modal-form-wrap .tutor-option-field-row:last-child{border-bottom:none}.tutor-lesson-modal-wrap .modal-footer{padding:10px 20px;background-color:#fff;width:100%;position:sticky;bottom:0;position:-webkit-sticky}.tutor-option-field .tutor-lesson-edit-feature-img{width:100px;position:relative}.tutor-option-field .tutor-lesson-edit-feature-img img{width:100%;height:auto}a.tutor-lesson-thumbnail-delete-btn{position:absolute;top:0;right:0;color:red;background:#fff;padding:3px 5px;border-radius:5px}.tutor-get-pro-text{color:#e02424}.updating-icon:before{font-family:"tutor";content:"\e91d";-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;display:inline-block}.tutor-notice-warning{background-color:#fcf8e3;border-color:#faebcc;padding:20px;margin-bottom:10px}.tutor-modal-wrap{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:-1;background-color:rgba(0,0,0,0.5)}.tutor-modal-wrap.show{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";z-index:99999;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.tutor-modal-wrap.loading .tutor-modal-content:before{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:"";z-index:9;background:url("../images/spinner.gif") no-repeat center center}.tutor-modal-wrap .tutor-modal-content{max-height:90%;overflow-y:auto;overflow-x:hidden;background-color:#fff;max-width:730px;margin:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);position:relative;-webkit-transition:all 200ms ease-out;transition:all 200ms ease-out;width:90%}.admin-bar .tutor-modal-wrap .tutor-modal-content{max-height:calc(90% - 32px);margin-top:32px}.tutor-modal-wrap .modal-footer{padding:20px 0;border-top:1px solid #eee}.tutor-modal-wrap .modal-footer.has-padding{padding:20px 15px}.tutor-modal-wrap .modal-container{padding:20px 20px 0}.tutor-modal-wrap.tutor-instructors-modal-wrap .modal-container p{margin-top:0}.tutor-modal-wrap .modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:15px 20px;border-bottom:1px solid #eeeff1}.tutor-modal-wrap .modal-title{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-modal-wrap .modal-header h1{padding:0;margin:0;font-size:23px;line-height:30px}.modal-container .modal-classic-btn-wrap{position:absolute;right:45px;top:14px}.modal-container .modal-classic-btn-wrap a{color:var(--tutor-primary-color)}.tutor-modal-wrap .modal-header h1::before,.tutor-modal-wrap .modal-header h1::after{display:none}.tutor-modal-wrap .search-bar{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-top:20px;padding-left:20px;padding-right:20px}.tutor-modal-wrap .search-bar input[type="text"]{width:100%;border:1px solid #eee;-webkit-box-shadow:none;box-shadow:none;padding:10px}.tutor-modal-wrap .modal-close-wrap a.modal-close-btn{width:50px;height:50px;background:#000;display:inline-block;text-align:center;line-height:47px;color:#fff;font-size:25px;position:absolute;right:0}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-title{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-close-wrap a.modal-close-btn{background:#ffffff;width:20px;height:20px;display:inline-block;text-align:center;line-height:28px;color:#3a3d42;font-size:22px;position:relative}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-header{padding:15px 20px;border-bottom:1px solid #eeeff1}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-header h1{padding:0}.tutor-modal-wrap.tutor-quiz-builder-modal-wrap .modal-container{background-color:#f1f1f1;padding:0}#tutor-quiz-modal-tab-items-wrap{background-color:#fff;font-size:0;overflow:hidden}#tutor-quiz-builder-modal-tabs-container{padding:20px}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item{padding:15px 25px;display:inline-block;color:#393c40;border-left:1px solid #f1f1f1;overflow:hidden;line-height:17px;vertical-align:middle;font-size:14px !important}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active{background-color:#f1f1f1}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item i{float:left;font-size:17px;line-height:1;margin-right:5px}#tutor-quiz-modal-tab-items-wrap .tutor-quiz-modal-tab-item.active i{color:var(--tutor-primary-color)}.quiz-modal-tab-navigation-btn{padding:10px 20px;border-radius:3px}.quiz-modal-btn-next,.quiz-modal-btn-next:focus,.quiz-modal-btn-first-step,.quiz-modal-btn-first-step:focus,.quiz-modal-question-save-btn,.quiz-modal-question-save-btn:focus,.quiz-modal-settings-save-btn,.quiz-modal-settings-save-btn:focus{background-color:var(--tutor-primary-color);color:#ffffff}.quiz-modal-btn-next:hover,.quiz-modal-btn-first-step:hover,.quiz-modal-question-save-btn:hover,.quiz-modal-settings-save-btn:hover{color:#ffffff}.quiz-modal-btn-cancel,.quiz-modal-btn-back{color:#4b5981;border:1px solid #d4dadb}.tutor-quiz-builder-form-row .quiz-form-warning{color:#e88e06}.tutor-assignment-builder-modal-wrap .modal-container{padding:10px}.assignment-modal-form-wrap .tutor-option-field.tutor-assignment-modal-title-wrap{margin:0}.tutor-quiz-question-answers-form{background-color:#fff;padding:20px;-webkit-transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);border:1px solid #dedede;border-radius:3px;margin-bottom:20px}.advanced-options-tab-item{float:right}.tutor-course-builder-wrap{border:1px dashed #dcdfe5}.tutor-quiz-builder-modal-tabs-notice{background:#d8d8d8;line-height:20px;padding:10px 30px;color:#a4a4a4}.tutor-quiz-builder-modal-tabs-notice a{color:#a4a4a4;text-decoration:underline}.tutor-quiz-builder-group{margin-bottom:25px}.tutor-quiz-builder-group>p.warning{color:red;font-size:12px}.tutor-quiz-builder-group>p.help{color:#a4a4a4;font-size:12px;margin-top:7px}.tutor-quiz-builder-group>h4{color:#393c40;font-weight:600;margin:0 0 15px}.tutor-quiz-builder-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:-10px;margin-right:-10px}.tutor-quiz-builder-col{padding-left:10px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-quiz-builder-col.auto-width{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.tutor-quiz-builder-group textarea,.tutor-quiz-builder-group input[type="text"],.tutor-quiz-builder-group input[type="email"],.tutor-quiz-builder-group input[type="number"],.tutor-quiz-builder-group input[type="password"]{line-height:40px;padding:5px 0;text-indent:15px;background:#fff;display:inline-block;border:1px solid #dedede;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;width:100%;color:#393c40}.tutor-quiz-builder-group textarea:focus,.tutor-quiz-builder-group input[type="text"]:focus,.tutor-quiz-builder-group input[type="email"]:focus,.tutor-quiz-builder-group input[type="number"]:focus,.tutor-quiz-builder-group input[type="password"]:focus{border-color:var(--tutor-primary-color)}.tutor-quiz-builder-group textarea{height:80px;resize:none;text-indent:0;padding:11px 15px;line-height:22px}.tutor-quiz-builder-group textarea[name="quiz_description"]{height:150px}.tutor-quiz-builder-group select{border:1px solid #ccc;-webkit-box-shadow:none;box-shadow:none;height:42px !important;padding:0 12px !important;margin:0}.tutor-quiz-builder-modal-control-btn-group{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px}.question_form_inner{padding:0 20px 20px;margin-top:0}.tutor-quiz-builder-modal-control-btn-group .quiz-builder-btn-group-left{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn{display:inline-block}.tutor-quiz-builder-modal-control-btn-group .quiz-modal-tab-navigation-btn:not(:last-child){margin-right:6px}.modal-container .tutor-quiz-add-question-btn{border:1px solid #c6c9cf;padding:10px 15px;color:#393c40;display:inline-block;border-radius:3px}.modal-container .tutor-quiz-add-question-btn i{color:var(--tutor-primary-color);line-height:16px;margin-right:3px}.quiz-form-field-col{margin-right:20px}.quiz-form-field-col.result-fail{width:100%}.quiz-modal-switch-field{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:30px}.quiz-modal-switch-field label.btn-switch{margin-right:20px;position:relative;vertical-align:top}label.btn-switch input:checked+.btn-slider{background-color:var(--tutor-success-button-color)}.btn-switch+span{line-height:24px;display:inline-block;margin-left:8px;font-weight:700;vertical-align:top}.tutor-select{position:relative}.tutor-select .select-header{border:1px solid #dedede;margin:0;padding:10px;width:100%;-webkit-box-shadow:none;box-shadow:none;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px}.tutor-select .select-header .lead-option{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-select .select-header .select-dropdown{line-height:22px}.tutor-select .select-header .lead-option .question-type-pro{display:none}.tutor-select .tutor-select-options{border:1px solid #dedede;background-color:#fff;padding:22px 10px 8px;width:calc(100% - 22px);position:absolute;font-size:0;z-index:9;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-shadow:0px 2px 10px rgba(0,0,0,0.08);box-shadow:0px 2px 10px rgba(0,0,0,0.08);top:55px;border-radius:3px}.tutor-select .tutor-select-options .tutor-select-option{width:calc(33.3333% - 22px);display:inline-block;padding:9px;cursor:pointer;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 11px 15px;border:1px solid #e2e2e2;border-radius:3px;font-size:13px}.tutor-select .tutor-select-options .tutor-select-option:hover{border-color:var(--tutor-primary-color)}.question-type-pro{color:#fff;font-size:9px;right:11px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}i.tutor-icon-block{padding:0;color:#fff;border-radius:3px;margin-right:2px;display:inline-block;width:22px;height:22px;text-align:center;line-height:22px}i.tutor-icon-block.tutor-icon-short-ans{background-color:#f37512}i.tutor-icon-block.tutor-icon-image-ans{background-color:#a322f9}i.tutor-icon-block.tutor-icon-yes-no{background-color:var(--tutor-primary-color)}i.tutor-icon-block.tutor-icon-multiple-choice{background-color:#9034a9}i.tutor-icon-block.tutor-icon-mark{background-color:#00b890}i.tutor-icon-block.tutor-icon-open-ended{background-color:#fe3129}i.tutor-icon-block.tutor-icon-fill-gaps{background-color:#ffbf00}i.tutor-icon-block.tutor-icon-answer-shorting{background-color:#f80089}i.tutor-icon-block.tutor-icon-assesment{background-color:#274055}i.tutor-icon-block.tutor-icon-matching{background-color:#8a4a1b}i.tutor-icon-block.tutor-icon-image-matching{background-color:#f37512}i.tutor-icon-block.tutor-icon-ordering{background-color:var(--tutor-primary-color)}i.tutor-icon-block.tutor-icon-plus-square-button,i.tutor-icon-block.tutor-icon-plus{background-color:var(--tutor-success-button-color)}.create-lesson-in-topic-btn i.tutor-icon-block.tutor-icon-plus{background-color:var(--tutor-primary-color)}a.back-to-quiz-questions-btn{font-size:16px;font-weight:300;color:#393c40;margin-bottom:10px;display:block}a.back-to-quiz-questions-btn.tutor-updating-message i{display:none}.modal-container .quiz-questions-form{padding:20px}#quiz-builder-tab-advanced-options .tutor-quiz-builder-form-cols-row .quiz-form-field-col:first-child{-webkit-box-flex:0;-ms-flex:0 0 150px;flex:0 0 150px}.question-form-header{margin-bottom:20px}.quiz-question-form-body{margin-bottom:25px}.quiz-builder-question-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:15px}.quiz-builder-question{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff;padding:10px;border:1px solid #e2e2e2;border-radius:3px;max-width:calc(100% - 52px)}.quiz-builder-question .question-sorting{margin-right:10px;line-height:22px}.quiz-builder-question .question-sorting i{display:block;line-height:24px}.quiz-builder-question .question-edit-icon{line-height:22px}.quiz-builder-question .question-edit-icon .tutor-quiz-open-question-form.tutor-updating-message i{display:none}.quiz-builder-question .question-title{-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:22px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-right:10px}.quiz-builder-question .question-icon{-webkit-box-flex:0;-ms-flex:0 0 155px;flex:0 0 155px}.quiz-builder-qustion-trash a{display:block;padding:0 0 0 10px;font-size:20px;color:rgba(57,60,64,0.4);line-height:44px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider{border:1px solid #dedede;padding:20px 70px 20px 10px;background-color:#ffffff;position:relative;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content{background:var(--tutor-primary-color);border:none;height:4px;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-header{background:#dedede;border-radius:4px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .ui-widget-content .ui-state-default{background:var(--tutor-primary-color);border:1px solid var(--tutor-primary-color);border-radius:50%;margin-top:-2px}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .tutor-field-type-slider-value{font-size:16px;font-weight:600;background:var(--tutor-primary-color);position:absolute;right:5px;top:50%;margin:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);line-height:34px;width:43px;text-align:center;border-radius:4px;color:#fff}.tutor-quiz-builder-modal-wrap .tutor-field-type-slider .tutor-field-type-slider-value:before{content:"";position:absolute;border:7px solid transparent;top:50%;border-right-color:var(--tutor-primary-color);right:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tutor-quiz-answer-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-quiz-answer{background-color:#fff;-webkit-box-flex:1;-ms-flex:1;flex:1;padding:10px 15px;border:1px solid #dedede;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:22px;border-radius:3px;margin-bottom:15px}.tutor-quiz-answer .tutor-quiz-answer-edit a{display:block;padding:0px 9px}.tutor-quiz-answer-trash-wrap a.answer-trash-btn{padding:0 10px;display:inline-block;line-height:44px}span.tutor-quiz-answer-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-quiz-answer-media .option-media-preview{margin-bottom:20px}.tutor-quiz-answer-media .option-media-preview img{max-width:80px;height:auto}.tutor-question-answer-image{margin-right:10px}.tutor-question-answer-image img{max-height:25px;width:auto}button#quiz-answer-save-btn,button#quiz-answer-edit-btn{background-color:var(--tutor-success-button-color);color:#fff;padding:10px 15px;border:none;cursor:pointer}button#quiz-answer-save-btn:hover,button#quiz-answer-edit-btn:hover{background-color:var(--tutor-success-button-color)}.tutor-media-upload-wrap{border:1px solid #dedede;display:-webkit-box;display:-ms-flexbox;display:flex;width:130px}.tutor-media-upload-wrap img{max-width:100%}.tutor-media-preview{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-media-upload-btn{display:block;padding:10px;font-size:50px;line-height:50px;text-align:center;color:#dedede}.tutor-media-upload-trash-wrap{border-left:1px solid #dedede}.tutor-media-upload-trash{color:#dedede;display:block;line-height:50px;padding:12px}.tutor-quiz-answers-form-footer.tutor-quiz-builder-form-row{margin-top:40px;margin-bottom:10px}.tutor-metabox-add-topics,.tutor-topics-edit-form{background-color:#f7f7f7;border:1px solid #dcdfe5;margin-top:25px;padding:20px}.tutor-course-builder-section{margin-bottom:60px}.tutor-course-builder-section-title h3{font-size:20px;font-weight:700;color:#1d1f37;position:relative;overflow:hidden;z-index:1;margin:0 0 25px;cursor:pointer}.tutor-course-builder-section-title h3::after{content:"";position:absolute;top:50%;left:0;width:100%;height:1px;background:var(--tutor-primary-color);z-index:-1}.tutor-course-builder-section-title h3 span,.tutor-course-builder-section-title h3 i{float:left;background-color:#fff;font-size:20px;line-height:20px}.tutor-course-builder-section-title h3 i{color:var(--tutor-primary-color);font-size:14px}.tutor-course-builder-section-title h3 span{padding:0 15px 0 9px}.tutor-frontend-builder-item-scope{margin-bottom:30px}.tutor-frontend-builder-item-scope:last-child{margin-bottom:0}.tutor-builder-item-heading{font-weight:500;line-height:21px;margin-bottom:10px;display:block}.builder-course-thumbnail-upload-wrap>div{font-size:var(--tutor-text-size);line-height:25px;margin-bottom:20px;font-weight:400}.builder-course-thumbnail-img-src{position:relative}.builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn{font-size:10px;position:absolute;top:-4px;left:-4px;color:#e53935;-webkit-transition:300ms;transition:300ms;border-radius:50%;width:20px;height:20px;line-height:20px;background:#fff;text-align:center}.builder-course-thumbnail-img-src .tutor-course-thumbnail-delete-btn i{line-height:20px}.tutor-course-builder-header{text-align:right;font-size:12px}.tutor-course-builder-section .course-empty-content{margin:15px 0}.tutor-course-builder-section .tutor-course-builder-header a{color:#393c40}.tutor-course-builder-section .tutor-course-builder-header a:first-child{padding-right:7px}.tutor-course-builder-section .tutor-course-builder-header a:last-child{padding-left:7px}.tutor-course-builder-section .tutor-course-builder-header{margin-top:-15px}.tutor-course-builder-section .new-topic-btn-wrap{padding:0;margin-top:20px}.tutor-course-available-instructors{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-available-instructors .added-instructor-item{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 15px);flex:0 0 calc(50% - 15px);max-width:calc(50% - 15px);border:1px solid #dcdfe5;padding:13px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;position:relative;margin-bottom:30px}.tutor-course-available-instructors .added-instructor-item .instructor-control{position:absolute;right:14px;top:50%;font-size:12px;-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0;-webkit-transition:300ms;transition:300ms}.tutor-course-available-instructors .added-instructor-item .instructor-control a{color:red}.tutor-course-available-instructors .added-instructor-item:hover .instructor-control{opacity:1}.tutor-course-available-instructors .added-instructor-item .instructor-icon{height:45px;width:45px;overflow:hidden;border-radius:50px;margin-right:15px}.tutor-course-available-instructors .added-instructor-item .instructor-icon img{width:100%}.tutor-course-available-instructors .added-instructor-item .instructor-name{position:relative}.tutor-course-available-instructors .added-instructor-item .instructor-name img{display:inline-block;margin-left:10px;width:18px}.tutor-course-available-instructors .added-instructor-item .instructor-name img:hover+i.instructor-name-tooltip{opacity:1}.tutor-course-available-instructors .added-instructor-item i.instructor-name-tooltip{-webkit-transition:300ms;transition:300ms;opacity:0;position:absolute;bottom:34px;right:9px;background:#2a344f;-webkit-transform:translateX(50%);transform:translateX(50%);color:#fff;font-size:12px;font-style:normal;padding:0 8px;border-radius:15px;line-height:20px;z-index:1}.tutor-course-available-instructors .added-instructor-item i.instructor-name-tooltip::before{content:"";position:absolute;border:5px solid #2a344f;bottom:-3px;left:50%;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);z-index:-1}.tutor-course-available-instructors .added-instructor-item:nth-child(2n){margin-left:30px}.tutor-addons-list .plugin-icon{height:120px}.btn-switch{display:inline-block;height:22px;position:relative;width:40px}.btn-switch input{display:none}.btn-slider{background-color:#ccc;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;-webkit-transition:0.4s;transition:0.4s}.btn-slider:before{background-color:#fff;bottom:3px;content:"";height:16px;left:4px;position:absolute;-webkit-transition:0.4s;transition:0.4s;width:16px}input:checked+.btn-slider{background-color:var(--tutor-primary-color)}input:checked+.btn-slider:before{-webkit-transform:translateX(16px);transform:translateX(16px)}.btn-slider.btn-round{border-radius:34px}.btn-slider.btn-round:before{border-radius:50%}.tutor-video-embeded-wrap{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%}.tutor-video-embeded-wrap iframe,.tutor-video-embeded-wrap object,.tutor-video-embeded-wrap embed{position:absolute;top:0;left:0;width:100%;height:100%}.select2-selection__rendered [class^="tutor-icon-"]{display:inline-block;vertical-align:top;margin-right:6px}.select2-results__options [class^="tutor-icon-"]{color:var(--tutor-primary-color);display:inline-block;vertical-align:top;margin-right:6px}.select2-results__option--highlighted [class^="tutor-icon-"]{color:#fff}.tutor-video-metabox-wrap{margin-bottom:50px}.video-metabox-source-input-wrap{padding:30px;background-color:#f4f7f8;border:1px solid #dcdfe5;border-radius:3px}.video-metabox-source-html5-upload{background-color:#fff;text-align:center;padding:40px 20px;border:1px solid #dcdfe5;border-radius:3px}.video-metabox-source-html5-upload p{margin-bottom:5px}.tutor-video-metabox-wrap p{margin:0;padding:0}.video-metabox-source-html5-upload .video-upload-icon i{font-size:50px;color:var(--tutor-primary-color)}.video_source_upload_wrap_html5{margin-top:10px}.video-metabox-source-html5-poster{padding-top:30px}.video_source_wrap_html5{width:100%}.builder-course-thumbnail-upload-wrap .button-transparent{float:right;background:transparent !important}.builder-course-thumbnail-upload-wrap .button-transparent:hover{background:var(--tutor-primary-color) !important}.html5-video-poster{height:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.html5-video-poster .tutor-builder-course-video-poster-text{text-align:left;padding-left:20px}.html5-video-poster .tutor-builder-course-video-poster-text h5{font-size:14px;font-weight:700;margin:0 0 6px;line-height:1}.html5-video-poster .tutor-builder-course-video-poster-text span{font-size:14px;font-weight:400}.html5-video-poster img{height:100%;width:auto}.no-memberhsip-msg-wrap p{margin:0}.content-drip-message-wrap.tutor-error-msg{margin:40px 50px}.content-drip-message-wrap{margin:120px}.content-drip-wrap-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.content-drip-wrap-flex .content-drip-left{margin-right:50px}.content-drip-wrap-flex ul{margin:0;list-style-position:inside}.content-drip-wrap-flex ul li a{color:var(--tutor-primary-color)}.tutor-alert{border:1px solid #f8a201;background:#fffff2;position:relative;border-radius:3px;padding:20px 25px 20px 95px;color:#a86d00;margin-bottom:20px}.tutor-alert p{margin-bottom:10px}.tutor-alert p:last-child{margin:0}.tutor-alert.tutor-alert-info{border:1px solid #13aaf6;background:#eaf8ff;color:#0586c7}.tutor-alert.tutor-alert-info::before{content:"\e96c";background:#13aaf6}.tutor-alert.tutor-alert-danger{border:1px solid #fe1a1a;background:#fff2f2;color:#a50000}.tutor-alert.tutor-alert-success{border:1px solid #69bc0d;background:#f6fff2;color:#3d7400}.tutor-alert::before{content:"\e95f";position:absolute;font-size:30px;font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:70px;top:0;left:0;text-align:center;background:#f8a201;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#ffffff}.tutor-alert.tutor-alert-danger::before{content:"\e913";background:#fe1a1a}.tutor-alert.tutor-alert-success::before{content:"\e90f";background:#69bc0d}.tutor-alert-content p{margin:0}.gradename-bg{text-align:center;color:#ffffff;height:32px;min-width:32px;font-size:16px;line-height:32px;padding:0 8px;display:inline-block;border-radius:20px;font-weight:bold;margin-right:7px}.gradename-outline{text-align:center;height:32px;min-width:32px;font-size:16px;line-height:26px;padding:0 8px;display:inline-block;border-radius:20px;border:2px solid;margin-right:7px}.generate-course-gradebook-btn-wrap{margin:10px 0}.gradebook-result-for-label{margin:0;padding:4px 7px;background-color:#e8eff1;display:inline-block;margin-bottom:10px}table.course-single-gradebooks{border-spacing:0;width:100%;border-collapse:collapse;border:1px solid #dcdfe5}table.course-single-gradebooks th{padding:1em 1.41575em;text-align:left;vertical-align:top;border-bottom:1px solid #dcdfe5}table.course-single-gradebooks th{font-weight:600}table.course-single-gradebooks thead th{background-color:rgba(220,223,229,0.14);padding:1.41575em;vertical-align:middle}table.course-single-gradebooks tbody td{border-bottom:1px solid #dcdfe5;background-color:#ffffff !important}table.course-single-gradebooks a{color:#4b5981}.text-label{margin:0;padding:4px 7px;background-color:#e8eff1;display:inline-block;border-radius:3px}.text-label.submitted-assignment-grade-pass{background-color:#86b223;color:#ffffff}.text-label.submitted-assignment-grade-failed{background-color:#d71830;color:#ffffff}.tutor-bp-message-recipient-header{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.tutor-bp-recipient-info-wrap{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-bp-message-recipient-avatar-wrap img{width:70px;height:70px;border-radius:50%}.tutor-bp-message-recipient-avatar-wrap{margin-right:35px}.tutor-bp-message-recipient-header .tutor-bp-thread-recipient-name h3{margin:10px 0 8px !important;font-size:22px;font-weight:600;line-height:28px}.tutor-bp-message-recipient-header .tutor-bp-thread-recipient-name h4{margin:0 0 20px !important;font-size:16px;line-height:1;font-weight:500}.tutor-bp-enrolled-courses-wrap{margin:0}.tutor-bp-enrolled-courses-wrap .tutor-bp-enrolled-total-course-notice{font-weight:400;color:#1c294b;margin:10px 0 8px !important}.tutor-bp-enrolled-courses-wrap ul{padding:0 0 0 17px;margin:0;color:#50616f}.tutor-bp-enrolled-courses-wrap ul li a{line-height:1.7;display:block;color:#54616d;padding-left:10px}.tutor-bp-enrolled-courses-wrap ul li a:hover{color:var(--tutor-primary-color);opacity:1;-webkit-transition:300ms;transition:300ms;text-decoration:underline !important}.oxy-tutor-element{width:100%}.tutor-dashboard-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:30px;border-bottom:1px solid #dcdfe5;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-dashboard-header .tutor-btn.bordered-btn{background-color:transparent;text-transform:uppercase;font-weight:400;border-radius:2px}.tutor-dashboard-header .tutor-btn.bordered-btn i{font-size:20px}.tutor-dashboard-header .tutor-star-rating-group{margin-right:3px}.tutor-dashboard-header-avatar img{display:block;width:150px;height:150px;border-radius:50%}.tutor-dashboard-header-info{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-left:24px;padding-top:15px;padding-bottom:15px}.tutor-dashboard-header-button{padding-top:15px}.tutor-dashboard-header-display-name h4{font-size:30px;margin-top:0px;margin-bottom:10px;line-height:34px}.tutor-dashboard-header-stats{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:25px}.tutor-dashboard-header-stats>div:not(:first-child){margin-left:30px}.tutor-dashboard-social-icons{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-dashboard-social-icons h4{margin:0 10px 0 0;font-size:var(--tutor-text-size);line-height:25px}.tutor-dashboard-social-icons a{display:inline-block;font-size:12px;padding:0 5px;line-height:25px;color:#393c40;-webkit-transition:300ms;transition:300ms}.tutor-dashboard-social-icons a:hover{color:var(--tutor-primary-color)}.tutor-profile-completion-warning{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 0;border-bottom:1px solid #dcdfe5}.tutor-profile-completion-warning .profile-completion-warning-icon{margin-top:10px}.tutor-profile-completion-warning .profile-completion-warning-icon span{font-size:40px;color:#ed9700;padding:0 20px}.tutor-profile-completion-warning .profile-completion-warning-content{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-positive:1;flex-grow:1;-webkit-box-flex:1}.tutor-profile-completion-warning .profile-completion-warning-content h4{font-size:20px;line-height:30px;margin:0;padding:0;width:100%}.tutor-profile-completion-warning .profile-completion-warning-content p{margin-bottom:10px;font-size:14px;font-weight:300;color:#737787}.tutor-profile-completion-warning .profile-completion-warning-content p a{font-weight:400;color:#3e64de}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details{-ms-flex-positive:1;flex-grow:1;-webkit-box-flex:1}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul{margin:0;list-style:none}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li{display:inline;position:relative;padding-left:16px;color:#737787}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li:not(:last-child){margin-right:21px}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li::before{content:"\2022";position:absolute;color:#f44337;font-weight:bold;display:inline-block;left:0}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-details ul li span{color:#3f435b}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status p span{font-weight:400}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status .tutor-progress-bar-wrap .tutor-progress-bar{height:6px;border-radius:8.5px;background-color:#ededf0}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status .tutor-progress-bar-wrap .tutor-progress-filled{height:6px;border-radius:3px;background-color:#ed9700}.tutor-profile-completion-warning .profile-completion-warning-content .profile-completion-warning-status .tutor-progress-bar-wrap .tutor-progress-filled::after{display:none}.tutor-dashboard-info-table-wrap{margin-bottom:30px}.tutor-dashboard-info-table-wrap table{margin-bottom:0;border-collapse:collapse;border:1px solid #dcdfe5;border-radius:4px;width:100%}.tutor-dashboard-info-table-wrap>h3{font-size:20px;font-weight:500;border:1px solid #dcdfe5;border-bottom:none;margin:0;padding:30px;border-radius:4px 4px 0 0}.tutor-dashboard-info-table-wrap>h3+table{border-radius:0 0 4px 4px}.tutor-dashboard-info-table thead{background:#fafbfc}.tutor-dashboard-info-table thead tr td{padding:15px}.tutor-dashboard-info-table tbody tr td{background:transparent !important;padding:20px 15px}.tutor-dashboard-info-table thead tr,.tutor-dashboard-info-table tbody tr{border:1px solid #dcdfe5}.tutor-dashboard-info-table thead tr td:first-child,.tutor-dashboard-info-table tbody tr td:first-child{padding-left:25px}.tutor-dashboard-info-table span.pending,.tutor-dashboard-info-table span.pass,.tutor-dashboard-info-table span.fail{color:#fff;font-size:14px;line-height:18px;padding:1px 6px;border-radius:2px}.tutor-dashboard-info-table span.pending{background-color:#f5a623}.tutor-dashboard-info-table span.fail{background-color:#d71830}.tutor-dashboard-info-table span.pass{background-color:var(--tutor-success-button-color)}.tutor-dashboard-single-review{border:1px solid #dcdfe5;border-radius:4px;margin-bottom:30px}.tutor-dashboard-review-heading{padding:10px 20px;border-bottom:1px solid #dcdfe5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.individual-dashboard-review-body{padding:10px 20px}.tutor-dashboard-review-title{font-size:18px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:300}.tutor-dashboard-review-title a{font-weight:500;color:var(--tutor-primary-color)}.tutor-dashboard-review-title a:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-review-links{white-space:nowrap;font-weight:400}.tutor-dashboard-review-links a{color:#8c94a8;margin-left:10px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px}.tutor-dashboard-review-links a i{line-height:inherit;font-size:14px;margin-right:5px}.individual-dashboard-review-body .review-meta{font-size:85%;margin:0;color:#8c94a8}.individual-star-rating-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-edit-review-modal-wrap .modal-close-wrap a.modal-close-btn{color:#222222;background:none;font-size:20px;top:8px}.tutor-modal-wrap form{margin-bottom:20px}.tutor-dashboard-info-cards{margin:0 -15px 15px;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-dashboard-info-cards .tutor-dashboard-info-card{padding:15px;min-width:33.333%}.tutor-dashboard-info-cards .tutor-dashboard-info-card p{margin:0;padding:15px 25px;background:#282c36;color:#ffffff;border-radius:4px}.tutor-dashboard-info-cards .tutor-dashboard-info-card p span.tutor-dashboard-info-val{display:block;font-weight:700;font-size:30px;line-height:1.618}.tutor-dashboard-info-cards .tutor-dashboard-info-card p span span{display:inline-block}.tutor-dashboard-info-cards .tutor-dashboard-info-card p>*{vertical-align:middle}.tutor-dashboard-content{margin-bottom:60px}.tutor-dashboard-content>h2{margin-bottom:20px}.prev-btn{font-size:16px;line-height:1.88;color:#3f435b}.prev-btn span{font-size:18px;font-weight:800;color:#3e64de;margin-right:7px}.tutor-dashboard-content .tutor-quiz-attempt-history tr th,.tutor-dashboard-content .tutor-quiz-attempt-history tr td{vertical-align:middle;border:none}.tutor-dashboard-content .tutor-quiz-attempt-history tr td:first-child{padding:15px 13px !important}.tutor-dashboard-content .tutor-quiz-attempt-history table span.result-fail,.tutor-dashboard-content .tutor-quiz-attempt-history table span.result-pass{width:auto;height:auto;line-height:19px;padding:0 6.5px;margin-right:4px}.label-course-status{background-color:#cccccc;padding:3px 5px;color:#ffffff;font-size:12px;text-transform:capitalize}.label-course-publish{background-color:var(--tutor-success-button-color)}.tutor-dashboard-content .quiz-attempt-answers-wrap table th{font-size:14px;font-weight:400;line-height:1.5;letter-spacing:0.12px;color:#737787;padding:15px 10px}.tutor-dashboard-content .tutor-quiz-attempt-history table thead tr,.single-quiz-page.tutor-quiz-attempt-history table thead tr{background-color:#fafbfc}.tutor-dashboard-content .tutor-quiz-attempt-history table tr,.single-quiz-page.tutor-quiz-attempt-history table tr{border:0;background-color:#fff}.tutor-dashboard-content .tutor-quiz-attempt-history table tr:first-child,.single-quiz-page.tutor-quiz-attempt-history table tr:first-child{background-color:#fafbfc}.tutor-dashboard-content .tutor-quiz-attempt-history table th,.tutor-dashboard-content .tutor-quiz-attempt-history table td,.single-quiz-page.tutor-quiz-attempt-history table th,.single-quiz-page.tutor-quiz-attempt-history table td{border:1px solid #dcdfe5 !important;vertical-align:middle}.tutor-dashboard-content .tutor-quiz-attempt-history table th:first-child,.tutor-dashboard-content .tutor-quiz-attempt-history table td:first-child,.single-quiz-page.tutor-quiz-attempt-history table th:first-child,.single-quiz-page.tutor-quiz-attempt-history table td:first-child{width:62%}.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(2),.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(4),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(2),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(4),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(2),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(4),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(2),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(4){width:11%}.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(3),.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(5),.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(6),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(3),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(5),.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(6),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(3),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(5),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(6),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(3),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(5),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(6){width:9%}.tutor-dashboard-content .tutor-quiz-attempt-history table th,.single-quiz-page.tutor-quiz-attempt-history table th{font-size:14px;font-weight:500;line-height:1.14;color:#8792b2}.tutor-dashboard-content .tutor-quiz-attempt-history table th:nth-child(n+3),.single-quiz-page.tutor-quiz-attempt-history table th:nth-child(n+3){text-align:center}.tutor-dashboard-content .tutor-quiz-attempt-history table td,.single-quiz-page.tutor-quiz-attempt-history table td{background-color:#fff;font-size:14px;font-weight:400;color:#4b5981}.tutor-dashboard-content .tutor-quiz-attempt-history table td:nth-child(n+3),.single-quiz-page.tutor-quiz-attempt-history table td:nth-child(n+3){font-weight:500;text-align:center;padding-left:3px !important;padding-right:3px !important}.tutor-dashboard-content .tutor-quiz-attempt-history table td:last-child,.single-quiz-page.tutor-quiz-attempt-history table td:last-child{padding-left:0px !important;padding-right:0px !important}.tutor-dashboard-content .tutor-quiz-attempt-history table td a,.single-quiz-page.tutor-quiz-attempt-history table td a{font-weight:500;color:#4b5981;text-decoration:underline;word-break:initial}.tutor-dashboard-content .tutor-quiz-attempt-history table td .course a,.single-quiz-page.tutor-quiz-attempt-history table td .course a{font-weight:600;line-height:1.29;color:#4b5981;text-decoration:none}.tutor-dashboard-content .tutor-quiz-attempt-history table td .course-meta,.single-quiz-page.tutor-quiz-attempt-history table td .course-meta{display:inline-block;margin-top:5px}.tutor-dashboard-content .tutor-quiz-attempt-history table td .course-meta span:nth-child(2),.single-quiz-page.tutor-quiz-attempt-history table td .course-meta span:nth-child(2){margin:0 17px}.tutor-dashboard-content .tutor-quiz-attempt-history table td .student,.single-quiz-page.tutor-quiz-attempt-history table td .student{font-weight:600;line-height:1.29;color:#4b5981}.tutor-dashboard-content .tutor-quiz-attempt-history table td .student-meta,.single-quiz-page.tutor-quiz-attempt-history table td .student-meta{display:inline-block;margin-top:5px}.single-quiz-page.tutor-quiz-attempt-history table{margin-bottom:30px}.tutor-dashboard-content .tutor-quiz-attempt-history table a{color:var(--tutor-primary-color);font-weight:700;line-height:24px}.tutor-dashboard-content .tutor-quiz-attempt-history table a:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-content .tutor-quiz-attempt-history table a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-item-group{padding:25px;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:30px}.tutor-dashboard-item-group>h4{font-size:20px;color:var(--tutor-primary-color);font-weight:500}.tutor-dashboard-item-group>h4:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-assignment-submitted-table tr td{text-align:center}.tutor-dashboard-assignment-submitted-table tr td a{color:#8c94a8;-webkit-transition:300ms;transition:300ms}.tutor-dashboard-assignment-submitted-table tr td a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-assignment-submitted-table tr td,.tutor-dashboard-assignment-submitted-table tr th{border:1px solid #dcdfe5}.tutor-assignment-review-header{margin-bottom:30px}.tutor-assignment-review-header h3{margin-bottom:10px;line-height:28px}.tutor-assignment-evaluate-wraps h3,.tutor-assignment-review-header h3 a{font-size:22px;font-weight:700;color:var(--tutor-text-color);display:block}.tutor-assignment-review-header p{margin:0;color:var(--tutor-text-color);font-weight:700}.tutor-assignment-review-header p a{font-weight:400;color:var(--tutor-text-color)}.tutor-assignment-review-header a{-webkit-transition:300ms;transition:300ms}.tutor-assignment-review-header a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-assignment-review{background:rgba(220,223,229,0.14);border:1px solid #dcdfe5;padding:25px;font-weight:400;border-radius:4px;margin-bottom:40px}.tutor-dashboard-assignment-review h5,.tutor-dashboard-assignment-review h4{font-size:16px;line-height:23px;font-weight:700;color:var(--tutor-text-color)}.tutor-dashboard-assignment-review h5{margin-bottom:15px}.tutor-dashboard-assignment-files{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-9px}.tutor-dashboard-assignment-files .uploaded-files{background-color:#fff;border:1px solid #dcdfe5;border-radius:4px;margin:9px;-webkit-transition:300ms;transition:300ms}.tutor-dashboard-assignment-files .uploaded-files:hover{-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.1);box-shadow:0 5px 10px rgba(0,0,0,0.1)}.tutor-dashboard-assignment-files .uploaded-files a i{margin-right:12px;color:#606c8f;float:left;font-size:28px;line-height:28px}.tutor-dashboard-assignment-files .uploaded-files a{color:var(--tutor-primary-color);display:block;overflow:hidden;line-height:28px;padding:15px 17px}.tutor-dashboard-assignment-files .uploaded-files a:hover{color:var(--tutor-primary-hover-color)}.tutor-assignment-evaluate-row{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-assignment-evaluate-row .tutor-option-field-label{-webkit-box-flex:0;-ms-flex:0 0 135px;flex:0 0 135px}.tutor-assignment-evaluate-row .tutor-option-field{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-assignment-evaluate-row .tutor-option-field-label label{display:block;padding-top:12px}.tutor-option-field-label label br{display:none}.tutor-option-field-label label p{margin:0;display:inline-block}.tutor-assignment-evaluate-row textarea,.tutor-assignment-evaluate-row .tutor-option-field input{border:1px solid #dcdfe5;height:50px;padding:0 15px;border-radius:4px;width:100px;background-color:#fff}.tutor-assignment-evaluate-row textarea{height:165px;width:100%}.tutor-assignment-evaluate-row{margin-bottom:60px}.tutor-assignment-evaluate-row p.desc{margin-bottom:0;margin-top:6px;font-style:italic}.tutor-dashboard-profile .tutor-dashboard-profile-item{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-dashboard-profile .tutor-dashboard-profile-item .heading{min-width:190px}@media (max-width: 480px){.tutor-dashboard-profile .tutor-dashboard-profile-item{-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-dashboard-profile .tutor-dashboard-profile-item .heading{min-width:100%;width:100%;font-weight:700;margin-bottom:6px}}.tutor-dashboard-profile .tutor-dashboard-profile-item .content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.tutor-dashboard-profile .tutor-dashboard-profile-item .content small{font-size:inherit;font-style:italic}.tutor-dashboard-profile .tutor-dashboard-profile-item .content small a{color:var(--tutor-primary-color)}.tutor-dashboard-profile .tutor-dashboard-profile-item .content small a:hover{color:var(--tutor-primary-hover-color)}.tutor-dashboard-avater img{width:70px;height:70px;display:block;border-radius:50%}.tutor-dashboard-student-info h4{font-size:18px;color:var(--tutor-light-color);margin-bottom:0}.tutor-dashboard-student-info h4 a{color:var(--tutor-text-color)}.tutor-dashboard-user-role{font-weight:400}.tutor-dashboard-inline-links{margin-bottom:30px}.tutor-dashboard-inline-links ul{margin:0;padding:0;border-bottom:1px solid #dfe1e5}.tutor-dashboard-inline-links ul li{display:inline-block}.tutor-dashboard-inline-links ul li a{display:block;padding:5px 10px;color:var(--tutor-primary-color);margin-bottom:-1px;line-height:40px}.tutor-dashboard-inline-links ul li a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-inline-links ul li a:hover,.tutor-dashboard-inline-links ul li.active a{color:var(--tutor-primary-color);border-bottom:1px solid var(--tutor-primary-color);padding-bottom:4px}.tutor-dashboard-student-meta ul li:first-child{margin-left:0}@media (max-width: 767px){.tutor-dashboard-student-meta ul{display:block;border:none;padding:0}.tutor-dashboard-student-meta ul li{display:inline-block;color:var(--tutor-text-color);margin:5px;border:1px solid #dddddd;padding:5px 10px;border-radius:4px}}.tutor-dashboard-student-meta ul li strong{display:block;color:var(--tutor-light-color);font-weight:400}.tutor-dashboard-permalinks{list-style:none;margin:0px 0 20px;padding:20px 0;border-right:1px solid #dcdfe5}.tutor-dashboard-permalinks li a:hover{background-color:#edf0f9}.tutor-dashboard-permalinks li.active a{background-color:var(--tutor-primary-color);color:#ffffff}.tutor-dashboard-permalinks li.active a:hover{background-color:var(--tutor-primary-hover-color)}@media (max-width: 991px){.tutor-dashboard-student .tutor-col-3,.tutor-dashboard-student .tutor-col-9{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.profile-completion-warning-details{margin-bottom:10px}}.tutor-dashboard-permalinks a{display:block;color:var(--tutor-text-color);padding:10px 20px;line-height:28px}.tutor-dashboard-permalinks a:before{content:"\e968";font-family:"tutor" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:15px;vertical-align:middle;color:var(--tutor-primary-color);opacity:0.6;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";font-size:17px}.tutor-dashboard-permalinks a:hover::before{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";color:var(--tutor-primary-hover-color)}.tutor-dashboard-permalinks li.active a:before{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";color:#fff}.tutor-dashboard-menu-bio a:before,.tutor-dashboard-menu-my-profile a:before{content:"\e963"}.tutor-dashboard-menu-enrolled-courses a:before{content:"\e969"}.tutor-dashboard-menu-courses_taken a:before,.tutor-dashboard-menu-my-courses a:before{content:"\e965"}.tutor-dashboard-menu-announcements a:before{content:"\e93f"}.tutor-dashboard-menu-wishlist a:before{content:"\e908"}.tutor-dashboard-menu-reviews a:before{content:"\e917"}.tutor-dashboard-menu-my-quiz-attempts a:before{content:"\e9ab"}.tutor-dashboard-menu-quiz-attempts a:before{content:"\e91f"}.tutor-dashboard-menu-question-answer a:before{content:"\e948"}.tutor-dashboard-menu-earning a:before{content:"\e96b"}.tutor-dashboard-menu-withdraw a:before{content:"\e960"}.tutor-dashboard-menu-settings a:before{content:"\e961"}.tutor-dashboard-menu-logout a:before{content:"\e962"}.tutor-dashboard-menu-purchase_history a:before{content:"\e964"}.tutor-dashboard-menu-assignments a:before{content:"\e98b"}.tutor-dashboard-content{padding-top:30px}.quiz-attempts-title,.tutor-quiz-attempt-history-title{font-size:22px;font-weight:600;line-height:1.27;color:#4b5981;margin-bottom:31px}.tutor-date-range-filter-wrap{margin:15px 0 20px;font-size:12px}.report-top-sub-menu{margin:0 10px 5px 0;display:inline-block;font-size:0}.report-top-sub-menu a{text-decoration:none;padding:5px 8px;border:1px solid #d7dadf;color:#aaaeb3;white-space:nowrap;display:inline-block;font-size:12px}.report-top-sub-menu a:not(:first-child){margin-left:-1px}.report-top-sub-menu a:hover{background:#edf0f9;color:#333}.report-top-sub-menu a.active{background-color:var(--tutor-primary-color);color:#ffffff;border:1px solid var(--tutor-primary-hover-color)}.tutor-dashboard-menu-divider{height:1px;margin:10px 0;overflow:hidden;background-color:#dcdfe5}.tutor-dashboard-menu-divider-header{color:#acacac;padding:10px 20px;cursor:default}.tutor-date-range-wrap{display:inline-block}.report-date-range-form{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0;max-width:370px}.date-range-input{position:relative}.date-range-input input{border-radius:0 !important;margin:0 !important;border-right:none !important;font-size:14px}.date-range-input:last-child{margin-right:0}.date-range-input:last-child button{border-radius:0}.date-range-input input,.date-range-input input[type="text"]{border:1px solid #d7dadf;-webkit-box-shadow:none;box-shadow:none;line-height:29px;margin:0;padding-right:30px;padding-top:0;padding-bottom:0;width:100%}.date-range-input i.tutor-icon-calendar{position:absolute;right:10px;top:7px}.date-range-input button{background-color:var(--tutor-primary-color);color:#ffffff;border:none;line-height:30px;padding:0 15px}.date-range-input button:hover{background-color:var(--tutor-primary-hover-color)}.report-download-csv-icon{float:right}.report-download-csv-icon a{text-decoration:none}.tutor-dashboard-statement-table-wrap{overflow-x:auto}table.tutor-dashboard-statement-table p{margin:0;padding:0}table.tutor-dashboard-statement-table p.small-text{font-size:12px;color:#666666}.tutor-mycourse-thumbnail{-webkit-box-flex:0;-ms-flex:0 0 250px;flex:0 0 250px;background-size:cover;background-position:center}.tutor-mycourse-content{padding:20px;-webkit-box-flex:1;-ms-flex:1;flex:1}@media (max-width: 580px){.tutor-mycourse-thumbnail{height:200px}.tutor-mycourse-thumbnail,.tutor-mycourse-content{min-width:100%;width:100%}.profile-completion-warning-details li{display:block !important}}.tutor-mycourse-content h3{margin:0 0 9px}.tutor-mycourse-content h3 a:hover{color:var(--tutor-primary-color)}.tutor-mycourse-rating{color:#f8c51c;font-size:14px}.tutor-mycourse-rating i{margin-right:4px}.tutor-mycourse-view,.tutor-mycourse-edit,.tutor-mycourse-delete{color:var(--tutor-light-color);-webkit-transition:300ms;transition:300ms}.tutor-mycourse-view i,.tutor-mycourse-edit i,.tutor-mycourse-delete i{line-height:inherit;display:inline-block;vertical-align:top;color:var(--tutor-primary-color)}.tutor-mycourse-view:hover,.tutor-mycourse-edit:hover,.tutor-mycourse-delete:hover{color:var(--tutor-primary-color)}.tutor-dashboard-content-inner .tutor-mycourse-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:30px;border:1px solid #dcdfe5;border-radius:4px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;overflow:hidden;position:relative}@media (max-width: 580px){.tutor-dashboard-content-inner .tutor-mycourse-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-course-status h4{display:none}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-mycourse-rating{margin-bottom:3px}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-mycourse-rating a{font-weight:400;margin-left:5px;color:#8c94a8}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-mycourse-rating a:hover{color:var(--tutor-primary-color)}.tutor-dashboard-content-inner .tutor-mycourse-wrap p:last-child{margin-bottom:0}.tutor-mycourse-content .mycourse-footer{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-mycourse-content .mycourse-footer .tutor-mycourses-stats{-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-dashboard-content-inner .tutor-mycourses-stats>*{margin-right:8px}.tutor-mycourse-status{margin-right:15px}.tutor-dashboard-content-inner h3 a{color:var(--tutor-text-color);font-size:22px;line-height:28px;font-weight:500;display:block}.tutor-dashboard-content-inner .tutor-course-metadata ul{display:block;list-style:none;margin:0 0 10px;padding:0}.tutor-dashboard-content-inner .tutor-progress-bar-wrap{margin-bottom:0}.tutor-dashboard-content-inner .tutor-course-metadata li{display:inline-block;color:var(--tutor-light-color);margin-left:20px}.tutor-dashboard-content-inner .tutor-course-metadata li:first-child{margin-left:0}.tutor-dashboard-content-inner .tutor-course-metadata li span{color:var(--tutor-text-color);margin-left:5px}.ui-datepicker{background-color:#fff;border:1px solid #eeeeee;display:none;margin-top:4px;padding:5px;width:180px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2a6496;-webkit-transition:color 0.1s ease-in-out;transition:color 0.1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{cursor:default;font-family:"tutor";-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;height:20px;line-height:1;margin-top:2px;width:30px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:right}.ui-datepicker .ui-datepicker-prev:before{content:"\e921"}.ui-datepicker .ui-datepicker-next:before{content:"\e903"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar th,.ui-datepicker .ui-datepicker-calendar td{text-align:center;padding:0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color 0.1s ease-in-out, color 0.1s ease-in-out;transition:background-color 0.1s ease-in-out, color 0.1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.ui-datepicker-calendar .ui-state-default{border:none;background:none}.ui-datepicker-calendar .ui-state-default.ui-state-highlight{background:#eeeeee;padding:3px;display:block}.tutor-table{width:100%}.tutor-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.tutor-course-delete-popup{text-align:center;font-size:16px;line-height:25px;font-weight:400;color:#8C94A8}.tutor-course-delete-popup img{width:110px;margin:0 auto}.tutor-course-delete-popup h3{font-weight:500;font-size:30px;margin:15px 0 25px}.tutor-modal-button-group{margin-top:55px}.tutor-modal-button-group button{line-height:30px;padding:10px 25px;color:#C7CCDA;border:2px solid #DDDFE7;border-radius:2px;background:#fff;min-width:220px;text-align:center;text-transform:uppercase;-webkit-transition:300ms;transition:300ms}.tutor-modal-button-group button+button{margin-left:20px}.tutor-modal-button-group button.tutor-danger{background:#F0576A;border-color:#F0576A;color:#ffffff}.tutor-modal-button-group button:hover{background:#fff;color:#333;border-color:#333}.tutor-modal-button-group button.tutor-danger:hover{background:#cd4a5a;border-color:#cd4a5a;color:#ffffff}@media (max-width: 768px){.tutor-modal-button-group button{padding:5px 20px;min-width:auto;margin-bottom:6px}.tutor-modal-button-group{margin-top:20px}}.withdraw-method-select-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -15px 40px}.withdraw-method-select-wrap .withdraw-method-select{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding:0 15px;margin-bottom:30px}.withdraw-method-select-wrap .withdraw-method-select label{display:block;padding:20px;margin:0;cursor:pointer;overflow:hidden;border:1px solid #DCDFE5;border-radius:4px;position:relative}.withdraw-method-select-wrap .withdraw-method-select input:checked+label{border-color:var(--tutor-success-button-color);-webkit-box-shadow:0 0 0 1px var(--tutor-success-button-color);box-shadow:0 0 0 1px var(--tutor-success-button-color)}.withdraw-method-select-wrap .withdraw-method-select label:after{content:'\e90f';position:absolute;right:-1px;top:-1px;border:1px solid #DCDFE5;height:22px;width:22px;text-align:center;line-height:22px;color:transparent}.withdraw-method-select-wrap .withdraw-method-select input:checked+label:after{color:#fff;background:var(--tutor-success-button-color);border-color:var(--tutor-success-button-color);font-family:'tutor' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;font-size:13px}.withdraw-method-select-wrap .withdraw-method-select p{margin:0}.withdraw-method-select-wrap .withdraw-method-select label>p{font-size:20px;font-weight:600;color:var(--tutor-primary-color)}.withdraw-method-select-wrap .withdraw-method-select label span{color:#B0B6C8;font-weight:400}.withdraw-method-form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -15px}.withdraw-method-form>div{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:50%;padding:0 15px 20px}@media (max-width: 480px){.withdraw-method-form>div{width:100%}}.withdraw-method-form>div.withdraw-account-save-btn-wrap{width:100%}.withdraw-form-field-amount input[type='text'],.withdraw-method-forms-wrap .withdraw-method-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),.withdraw-method-forms-wrap .withdraw-method-form textarea{border:1px solid #DCDFE5;display:block;width:100%;background:transparent;-webkit-box-shadow:none;box-shadow:none;border-radius:4px}label[for="tutor_withdraw_amount"]{margin-bottom:7px;display:block}.withdraw-form-field-amount input[type='text']{margin-bottom:10px;height:45px}.withdraw-method-forms-wrap .withdraw-method-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):focus,.withdraw-method-forms-wrap .withdraw-method-form textarea:focus{border-color:var(--tutor-primary-color);outline:none}.withdraw-method-forms-wrap .withdraw-method-form textarea{min-height:80px}.withdraw-method-forms-wrap .withdraw-method-form label{color:#989EAF;margin-bottom:8px;display:block}.withdraw-method-forms-wrap .withdraw-method-form .withdraw-field-desc{font-size:12px;margin:5px 0 0;font-style:italic}.submitted-assignment-title a,.submitted-assignment-title h3{margin-bottom:20px}.submitted-assignments-sorting-wrap{margin-bottom:30px}.submitted-assignments-sorting-wrap .tutor-form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-preferred-size:35% !important;flex-basis:35% !important}.submitted-assignments-sorting-wrap .tutor-form-group label,.submitted-assignments-sorting-wrap .tutor-form-group select{margin-bottom:0}.submitted-assignments-sorting-wrap .tutor-form-group label{-ms-flex-preferred-size:35%;flex-basis:35%}.submitted-assignments-sorting-wrap .tutor-form-group select{height:40px}.tutor-dashboard-assignment-table .student-column{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-dashboard-assignment-table .student-column .student-avatar{width:34px;margin-right:10px}.tutor-dashboard-assignment-table .student-column .student-avatar img{border-radius:50%}.tutor-dashboard-assignment-table .student-column .student-avatar span{display:block;width:34px;height:34px;line-height:34px;border-radius:50%;font-size:12px;text-align:center}.tutor-dashboard-assignment-table .student-column .student-details h4,.tutor-dashboard-assignment-table .student-column .student-details p{line-height:1.3;margin-bottom:0}.tutor-dashboard-assignment-table span.review-required,.tutor-dashboard-assignment-table span.result-pass,.tutor-dashboard-assignment-table span.result-fail{background:#df3247;font-size:14px;font-weight:bold;color:#fff;padding:4px 11px;border-radius:2px}.tutor-dashboard-assignment-table span.result-pass{background:var(--tutor-success-button-color)}.tutor-dashboard-assignment-table span.review-required{background:#f5b30d}.tutor-assignment-review-header p span{font-weight:400;color:var(--tutor-text-color)}.tutor-assignment-submitted-page{border-bottom:none}.tutor-assignment-submitted-page .assignment-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-assignment-submitted-page .assignment-info p{margin-right:15px}.tutor-assignment-submitted-page h3{margin:5px 0}.tutor-dashboard-assignment-submitted-content{margin-top:30px;margin-bottom:50px}.tutor-dashboard-assignment-review .tutor-assignment-evaluate-row{margin-bottom:30px}.tutor-dashboard-assignment-review .tutor-assignment-evaluate-row .input-mark{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-dashboard-assignment-review .tutor-assignment-evaluate-row .input-mark input{margin:0}.tutor-dashboard-assignment-review .tutor-assignment-evaluate-row .input-mark p{margin-top:0;margin-left:15px}.tutor-announcement-content-wrap{text-align:left !important;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-announcement-content-wrap p{margin:0}.tutor-dashboard-announcement-sorting-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-column-gap:15px;-moz-column-gap:15px;column-gap:15px}.tutor-dashboard-announcement-sorting-wrap div:nth-child(1){-ms-flex-preferred-size:50%;flex-basis:50%}.tutor-dashboard-announcement-sorting-wrap div:nth-child(2){-ms-flex-preferred-size:20%;flex-basis:20%}.tutor-dashboard-announcement-sorting-wrap div:nth-child(3){-ms-flex-preferred-size:30%;flex-basis:30%}.tutor-dashboard-announcement-table{border-spacing:0;border-collapse:collapse;border:1px solid #ccd0d4}.tutor-dashboard-announcement-table thead th,.tutor-dashboard-announcement-table thead td{border-bottom:1px solid #ccd0d4}.tutor-dashboard-announcement-table tbody tr:last-child{border-bottom:1px solid #ccd0d4}.tutor-dashboard-announcement-table tbody td:first-child{padding-left:30px;line-height:24px}.tutor-dashboard-announcement-table tr{background-color:#F3F3F3}.tutor-dashboard-announcement-table tr:nth-child(odd){background-color:#fff}.tutor-dashboard-announcement-table th,.tutor-dashboard-announcement-table td{border:0;vertical-align:middle}.tutor-dashboard-announcement-table th h4,.tutor-dashboard-announcement-table td h4{font-size:16px;margin-bottom:0}.tutor-dashboard-announcement-table th p,.tutor-dashboard-announcement-table th a,.tutor-dashboard-announcement-table td p,.tutor-dashboard-announcement-table td a{font-size:13px;margin-bottom:0}.tutor-dashboard-announcement-table th:last-child,.tutor-dashboard-announcement-table td:last-child{padding-right:30px}.tutor-dashboard-announcement-table th{padding:15px 0;background-color:#f3f3f3}.tutor-dashboard-announcement-table td{padding:30px 0}.tutor-dashboard-announcement-table th:first-child{padding-left:40px}.tutor-dashboard-announcement-table th:last-child{padding-right:40px}.tutor-announcement-datepicker{position:relative}.tutor-announcement-datepicker input,.tutor-announcement-datepicker i{position:absolute}.tutor-announcement-datepicker i{top:50%;right:10px;color:#3e64de}.tutor-announcement-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-announcement-buttons li{list-style:none}.tutor-dropdown{position:relative;cursor:pointer;margin-left:20px}.tutor-dropdown .tutor-icon-action{padding:5px 10px;margin-right:-10px}.tutor-dropdown .tutor-icon-action:hover{background:#f3f3f3;border-radius:50%}.tutor-dropdown.show .tutor-dropdown-menu{display:block !important}.tutor-dropdown-menu:before{content:"";position:absolute;right:10px;background:linear-gradient(-45deg, transparent 50%, black 50%);height:10px;width:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg);top:-4px}.tutor-dropdown-menu{min-width:140px;background:#353535;color:white;width:100%;position:absolute;top:40px;right:-13px;display:none;border-radius:5px;padding:0;margin:0}.tutor-dropdown-menu li{list-style:none !important;padding:5px 15px 5px 15px;cursor:pointer}.tutor-dropdown-menu li:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.tutor-dropdown-menu li:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.tutor-dropdown-menu li:hover{background-color:#6b6b6b}.tutor-dropdwown-menu li i{padding-right:4px}.tutor-announcements-update-form .tutor-option-field-row input[type="text"],.tutor-announcements-update-form textarea,.tutor-announcements-form .tutor-option-field-row input[type="text"],.tutor-announcements-form textarea{width:100%;margin-top:8px}.tutor-announcements-form select,.tutor-announcements-update-form select{width:100%;max-width:100% !important;padding:7px 12px;margin-top:8px}.tutor-announcements-update-form .tutor-option-field-row,.tutor-announcements-form .tutor-option-field-row{border:none !important}.tutor-announcement-modal-content{border-radius:20px}.tutor-announcement-modal-footer-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-announcement-cancel-btn{background:#e8e8e8 !important;border-radius:3px !important;color:#7a7a7a !important}.tutor-announcement-details-modal-content>a{cursor:pointer;padding:20px;float:right}.modal-container.tutor-announcement-details-container{padding:45px 70px !important}.balance-info .tutor-announcement-big-icon{margin-right:10px}.tutor-announcement-big-icon{font-size:32px;width:76px;height:76px;border-radius:100%;background:#e9edfb;text-align:center;color:#3e64de}.tutor-announcement-big-icon .tutor-icon-speaker{position:relative !important;top:30% !important}.tutor-announcement-detail-content{margin-top:35px}.tutor-announcement-detail-content h3{font-size:24px;font-weight:bold;color:#161616}.tutor-announcement-detail-content p{font-style:normal;font-weight:normal;font-size:16px;color:#7a7a7a;margin-top:15px;margin-bottom:10px}.tutor-detail-course-content-wrap{background-color:#f3f3f3}.tutor-detail-course-content{padding:30px 70px 70px}.tutor-detail-course-info-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:50px}.tutor-announce-detail-popup-button-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.announcement-detail-edit-delete-button>.tutor-announcement-delete{background:#e8e8e8 !important;color:#7a7a7a !important}.tutor-border-none{border:none !important}.announcement-detail-edit-delete-button>button{padding:10px 20px !important}.announcement-detail-edit-delete-button{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px}.tutor-announcement-detail-course-info p,.tutor-announcement-detail-date-info p{font-size:16px;color:#161616;font-weight:700;max-width:95%}.tutor-announcements-modal-wrap .tutor-modal-content{max-width:660px !important}.tutor-announcements-modal-wrap .modal-footer{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-attempt-history td:last-child{text-align:center}.tutor-quiz-attempt-history td:last-child a{display:block;padding:10px}.attempt-review-title{font-size:18px;color:var(--tutor-text-size);font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:60px}.attempt-review-title i{margin-right:12px;color:var(--tutor-primary-color)}.tutor-quiz-attempt-info-row .attempt-view-bottom,.tutor-quiz-attempt-info-row .attempt-view-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col,.tutor-quiz-attempt-info-row .attempt-view-top .attempt-info-col{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:30%}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.tutor-quiz-attempt-info-row .attempt-info-content span.result-review-required,.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass,.tutor-quiz-attempt-info-row .attempt-info-content span.result-fail{background:#df3247;font-size:14px;font-weight:400;color:#fff;padding:1px 4px;margin-right:13px;border-radius:2px}.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-info-row .attempt-info-content span.result-review-required{background:#f5b30d}.tutor-quiz-attempt-info-row .attempt-info-content h4,.tutor-quiz-attempt-info-row .attempt-info-content h5{font-size:14px;line-height:25px;margin:0;color:#7a7f85;font-weight:400}.tutor-quiz-attempt-info-row .attempt-info-content h4 a,.tutor-quiz-attempt-info-row .attempt-info-content h4{font-weight:700;color:var(--tutor-text-color);margin-top:7px}.tutor-quiz-attempt-info-row .attempt-view-top{padding-bottom:30px;margin-bottom:30px;border-bottom:1px solid #dcdfe5}.tutor-quiz-attempt-info-row .attempt-view-bottom{margin-bottom:60px}.attempt-user-details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attempt-user-details .attempt-user-avatar{padding-right:20px}.attempt-user-details .attempt-user-avatar img{display:block;width:70px;height:70px;border-radius:50%}.attempt-user-details .attempt-info-content h4{font-size:18px}.attempt-review-notice-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:60px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.attempt-review-notice-wrap p{margin:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attempt-review-notice-wrap p.attempt-review-notice i{font-size:16px;color:#f5c813;margin-right:9px}.attempt-review-notice-wrap p.attempt-review-at>span{color:var(--tutor-primary-color);margin-right:7px;font-size:16px}.attempt-review-notice-wrap p>strong{font-weight:400;margin-right:5px}.quiz-attempt-answers-wrap{background:#fff;margin:0 0 1.5em}.quiz-attempt-answers-wrap .attempt-answers-header{padding:30px 20px}.quiz-attempt-answers-wrap .attempt-answers-header h3{font-size:20px;line-height:1.5;color:#3f435b}.quiz-attempt-answers-wrap table{border-collapse:collapse;border:none}.quiz-attempt-answers-wrap table tr{background-color:#fff}.quiz-attempt-answers-wrap table tr:first-child{background-color:#f7f7f9;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea !important}.quiz-attempt-answers-wrap table tr:not(:first-child){border-top:1px solid #dcdce1}.quiz-attempt-answers-wrap table tr:not(:last-child){border-bottom:1px solid #dcdce1}.quiz-attempt-answers-wrap table th{font-size:12px;text-transform:inherit}.quiz-attempt-answers-wrap table th,.quiz-attempt-answers-wrap table td{padding:17px 20px;vertical-align:middle;border:none;font-size:14px;line-height:1.71;letter-spacing:normal;color:#393c40}.quiz-attempt-answers-wrap table th p,.quiz-attempt-answers-wrap table td p{margin:0}.quiz-attempt-answers-wrap table th .tutor-icon-block,.quiz-attempt-answers-wrap table td .tutor-icon-block{font-size:14px;width:30px;height:30px;line-height:30px}.quiz-attempt-answers-wrap table .quiz-manual-review-action{border:1px solid #d4dadb;color:#d4dadb;height:30px;width:30px;border-radius:2px;font-size:13px;display:inline-block;text-align:center;line-height:30px;-webkit-transition:300ms;transition:300ms}.quiz-attempt-answers-wrap table .quiz-manual-review-action:first-child:hover{border:1px solid var(--tutor-success-button-color);color:var(--tutor-success-button-color)}.quiz-attempt-answers-wrap table .quiz-manual-review-action:last-child:hover{border:1px solid #df3247;color:#df3247}.quiz-attempt-answers-wrap table .quiz-manual-review-action:not(:last-child){margin-right:17px}.tutor-quiz-attempt-review-wrap .attempt-answers-header{background:#fff;padding:20px;margin-top:20px}.tutor-quiz-attempt-review-wrap .attempt-answers-header a{color:#3f435b}.tutor-quiz-attempt-review-wrap .attempt-answers-header>p{color:#737787;margin-top:10px;margin-bottom:0}.tutor-quiz-attempt-review-wrap .attempt-answers-header h3{font-size:20px;line-height:1.5;color:#3f435b}.tutor-quiz-attempt-review-wrap .instructor-feedback-content{padding:0px 20px 10px 20px}.tutor-quiz-attempt-review-wrap .instructor-feedback-content>p{margin-bottom:1em}.tutor-quiz-attempt-review-wrap table{border-collapse:collapse;border:none}.tutor-quiz-attempt-review-wrap table tr{background-color:#fff}.tutor-quiz-attempt-review-wrap table tr:first-child{background-color:#f7f7f9;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea}.tutor-quiz-attempt-review-wrap table tr:first-child th,.tutor-quiz-attempt-review-wrap table tr:first-child td{padding-top:14px;padding-bottom:14px}.tutor-quiz-attempt-review-wrap table tr:not(:first-child){border-top:1px solid #dcdce1}.tutor-quiz-attempt-review-wrap table tr:not(:first-child) th,.tutor-quiz-attempt-review-wrap table tr:not(:first-child) td{padding-top:20px;padding-bottom:20px}.tutor-quiz-attempt-review-wrap table tr:not(:last-child){border-bottom:1px solid #dcdce1}.tutor-quiz-attempt-review-wrap table th,.tutor-quiz-attempt-review-wrap table td{border:none;vertical-align:top;font-size:14px;font-weight:400;line-height:1.71;padding:15px 6px}.tutor-quiz-attempt-review-wrap table th:first-child,.tutor-quiz-attempt-review-wrap table td:first-child{padding:12px}.tutor-quiz-attempt-review-wrap table th:last-child,.tutor-quiz-attempt-review-wrap table td:last-child{padding:12px 10px}.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table th:nth-child(3),.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table th:nth-child(4),.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table td:nth-child(3),.tutor-quiz-attempt-review-wrap .quiz-attempt-answers-wrap table td:nth-child(4){width:28%}.tutor-quiz-attempt-review-wrap span.result-review-required,.tutor-quiz-attempt-review-wrap span.result-pass,.tutor-quiz-attempt-review-wrap span.result-fail{background:#df3247;font-size:14px;font-weight:bold;color:#fff;padding:4px 11px;border-radius:2px}.tutor-quiz-attempt-review-wrap span.result-pass{background:var(--tutor-success-button-color)}.tutor-quiz-attempt-review-wrap span.result-review-required{background:#f5b30d}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip],.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]{position:relative;z-index:2;cursor:pointer}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:before,.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:after,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:before,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none;-webkit-transform:translateY(15px);transform:translateY(15px);-webkit-transition:0.15s ease;transition:0.15s ease}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:before,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:before{content:attr(data-tooltip);position:absolute;bottom:40px;left:50%;margin-bottom:0px;margin-left:-60px;min-width:122px;text-align:center;padding:4px 7px;font-size:14px;line-height:1.2;font-weight:300;border-radius:12px;background-color:#3f435b;color:#fff;z-index:99999}.tutor-quiz-attempt-review-wrap .tooltip-btn[data-tooltip]:after,.quiz-attempt-answers-wrap .tooltip-btn[data-tooltip]:after{position:absolute;content:"";bottom:34px;left:50%;margin-left:-10px;border-top:8px solid #3f435b;border-right:10px solid transparent;border-left:10px solid transparent}.tutor-quiz-attempt-review-wrap .active[data-tooltip]:before,.tutor-quiz-attempt-review-wrap .active[data-tooltip]:after,.tutor-quiz-attempt-review-wrap .active[data-tooltip]:before,.tutor-quiz-attempt-review-wrap .active[data-tooltip]:after,.quiz-attempt-answers-wrap .active[data-tooltip]:before,.quiz-attempt-answers-wrap .active[data-tooltip]:after,.quiz-attempt-answers-wrap .active[data-tooltip]:before,.quiz-attempt-answers-wrap .active[data-tooltip]:after{visibility:visible;opacity:1;-webkit-transform:translateY(0px);transform:translateY(0px)}.tutor-status-blocked-context i,.tutor-status-approved-context i,.quiz-correct-answer-text i,.quiz-incorrect-answer-text i{font-size:14px;height:20px;width:20px;text-align:center;line-height:20px;background:#7bbc30;color:#fff;display:inline-block;border-radius:2px;margin-right:6px}.tutor-status-blocked-context i,.quiz-incorrect-answer-text i{background:#f44337;font-size:10px;font-weight:900}.answer-image-matched-wrap{display:block}.answer-image-matched-wrap .image-matching-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.answer-image-matched-wrap .image-matching-item:not(:last-child){margin-bottom:12px}.answer-image-matched-wrap .image-matching-item img{max-width:35px}.answer-image-matched-wrap .image-matching-item .dragged-caption{font-size:14px;margin-left:12px}.correct-answer-wrap .matching-type{display:-webkit-box;display:-ms-flexbox;display:flex}.correct-answer-wrap .text-image-type{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.correct-answer-wrap .text-image-type:not(:last-child){margin-bottom:12px}.correct-answer-wrap .text-image-type .image{margin-right:12px}.correct-answer-wrap .text-image-type img{max-width:35px}#tutor_profile_cover_photo_editor{height:344px;position:relative}#tutor_profile_cover_photo_editor #tutor_photo_meta_area{text-align:right;padding-left:190px;margin-top:16px}@media (max-width: 492px){#tutor_profile_cover_photo_editor #tutor_photo_meta_area{padding-left:120px}}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>img,#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span{display:inline-block;vertical-align:middle}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span{white-space:nowrap;font-style:normal;font-weight:normal;font-size:13px;line-height:18px;color:#7A7A7A}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span>span{color:black}#tutor_profile_cover_photo_editor #tutor_photo_meta_area>span.loader-area{display:none}#tutor_profile_cover_photo_editor #tutor_cover_area{height:245px;background-color:#E9EDFB;background-position:center center;background-size:cover;background-repeat:no-repeat;border-radius:6px;position:relative;overflow:hidden}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_overlay{height:70%;position:absolute;left:0;bottom:0;right:0;background-image:-webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0,0,0,0.6)));background-image:linear-gradient(transparent, rgba(0,0,0,0.6))}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader{background:#3E64DE;border-radius:3px;color:white;border:none;cursor:pointer;font-style:normal;font-weight:600;font-size:12px;color:#FFFFFF;position:absolute;padding:8px 20px;right:22px;bottom:22px}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader:hover{background:#2f52c4}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader>span{margin-left:6px}@media (max-width: 432px){#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader>span{display:none}}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_deleter{position:absolute;color:white;background:rgba(0,0,0,0.247);text-align:center;width:36px;border-radius:50%;font-size:17px;line-height:40px;height:36px;right:22px;top:22px;cursor:pointer}#tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_deleter:hover{background:rgba(0,0,0,0.438)}#tutor_profile_cover_photo_editor #tutor_profile_area{width:142px;height:142px;left:35px;top:145px;border-radius:50%;border:5px solid white;position:absolute;overflow:hidden;background-color:#E9EDFB;background-position:center center;background-size:cover;background-repeat:no-repeat}@media (max-width: 688px){#tutor_profile_cover_photo_editor #tutor_profile_area{width:120px;height:120px;left:31px;top:168px}}#tutor_profile_cover_photo_editor #tutor_profile_area .tutor_overlay{position:absolute;right:0;left:0;bottom:0;background:rgba(0,0,0,0.253);padding:0;height:37px;cursor:pointer;color:white;display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}#tutor_profile_cover_photo_editor #tutor_profile_area .tutor_overlay:hover{background:rgba(0,0,0,0.411)}#tutor_profile_cover_photo_editor #tutor_pp_option{position:absolute;background:#353535;width:157px;top:294px;left:27px;border-radius:6px;color:white;z-index:99;display:none}@media (max-width: 688px){#tutor_profile_cover_photo_editor #tutor_pp_option{top:294px;left:10px}}#tutor_profile_cover_photo_editor #tutor_pp_option span{display:block;padding:5px 10px;cursor:pointer;overflow:hidden;font-style:normal;font-weight:normal;font-size:16px;line-height:26px;color:#FFFFFF}#tutor_profile_cover_photo_editor #tutor_pp_option span:first-of-type{border-top-left-radius:6px;border-top-right-radius:6px}#tutor_profile_cover_photo_editor #tutor_pp_option span:last-of-type{border-bottom-left-radius:6px;border-bottom-right-radius:6px}#tutor_profile_cover_photo_editor #tutor_pp_option span:hover{background:#6b6b6b}#tutor_profile_cover_photo_editor #tutor_pp_option .up-arrow{text-align:center;height:0}#tutor_profile_cover_photo_editor #tutor_pp_option .up-arrow i{display:inline-block;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;position:relative;top:-17px;border-bottom:5px solid #353535}#tutor_profile_cover_photo_editor #tutor_pp_option>*:not(:last-child){position:relative;z-index:1}#tutor_profile_cover_photo_editor #tutor_pp_option>div:last-child{position:fixed;left:0;right:0;top:0;bottom:0;background:transparent;z-index:0;z-index:0}#tutor_profile_cover_photo_editor.pop-up-opened #tutor_pp_option{display:block}#tutor_profile_cover_photo_editor #tutor_photo_dialogue_box{display:none}.tutor-user-public-profile .photo-area{overflow:hidden;height:414px;margin-top:30px}.tutor-user-public-profile .photo-area .cover-area{position:relative;border-radius:6px;overflow:hidden}.tutor-user-public-profile .photo-area .cover-area>div:first-child{height:375px;background-position:center center;background-repeat:no-repeat;background-size:cover}.tutor-user-public-profile .photo-area .cover-area>div:last-child{position:absolute;left:0;right:0;bottom:0;height:70%;background-image:-webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0,0,0,0.6)));background-image:linear-gradient(transparent, rgba(0,0,0,0.6))}.tutor-user-public-profile .photo-area .pp-area{position:relative;top:-111px;padding-left:49px;display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center}.tutor-user-public-profile .photo-area .pp-area .profile-pic{background-position:center center;background-repeat:no-repeat;background-size:cover;display:inline-block;border:8px solid white}.tutor-user-public-profile .photo-area .pp-area .profile-name{padding-left:23px;padding-bottom:30px}.tutor-user-public-profile .photo-area .pp-area .profile-name h3{font-style:normal;font-weight:600;font-size:40px;line-height:48px;color:#FFFFFF;margin:0}.tutor-user-public-profile .photo-area .pp-area .profile-name>span{font-style:normal;font-weight:500;font-size:15px;color:#757575;margin-right:10px}.tutor-user-public-profile .photo-area .pp-area .profile-name>span>span{color:white}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media{text-align:right;padding-right:30px;padding-bottom:20px;-webkit-box-flex:1;flex:1;-o-flex:1;-ms-flex:1;-moz-flex:1;-webkit-flex:1}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container{font-size:16px}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container .rating-digits{color:white}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container .rating-total-meta{color:#757575}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container{margin-top:15px;text-align:right}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container a{display:inline-block;margin-left:20px;color:whitesmoke;cursor:pointer;text-decoration:none;font-size:16px}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container a:hover{color:white}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-pic{border-radius:50%;height:153px;width:153px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area{overflow:initial}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-pic{border-radius:10px;height:200px;width:153px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-rating-media{padding-bottom:75px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .tutor-user-profile-sidebar{margin-top:79px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area{height:auto}.tutor-user-public-profile.tutor-user-public-profile-no-cp .cover-area{display:none}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{top:0}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-pic{border-radius:50%;height:153px;width:153px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding-top:49px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span>span{color:black !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{position:absolute;left:226px;top:15px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media .rating-digits{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-rating-container{text-align:left}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{text-align:left !important;margin-top:5px !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container a{margin-left:0 !important;margin-right:20px;color:#757575 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container a:hover{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{width:calc(100% - 157px)}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{position:absolute;right:36px;left:auto}@media (min-width: 768px){.tutor-user-public-profile .content-for-mobile{display:none}.tutor-user-public-profile .content-for-desktop{display:block}}@media (max-width: 767px){.tutor-user-public-profile .content-for-mobile{display:block;margin:22px 0 0 0;padding:0 !important}.tutor-user-public-profile .content-for-desktop{display:none}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .photo-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area{height:auto}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .photo-area .cover-area>div:first-child,.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area .cover-area>div:first-child,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .cover-area>div:first-child{height:220px}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{padding-left:0 !important;top:-82px !important;flex-wrap:wrap;-o-flex-wrap:wrap;-ms-flex-wrap:wrap;-moz-flex-wrap:wrap;-webkit-flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-rating-media{width:100% !important;text-align:center !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name>span>span,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span>span,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name>span>span{color:black !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name>span:nth-of-type(2)>span,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span:nth-of-type(2)>span,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name>span:nth-of-type(2)>span{color:#C4C4C4 !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name h3,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name h3{color:#161616 !important;font-size:30px !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .rating-digits,.tutor-user-public-profile.tutor-user-public-profile-no-cp .rating-digits,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .rating-digits{color:#161616 !important}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{top:-98px !important}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-pic{height:160px !important;width:153px !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container,.tutor-user-public-profile.tutor-user-public-profile-no-cp .ratings{position:static !important;top:0 !important;text-align:center !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding:0 !important}.tutor-user-public-profile .tutor-social-container{margin:15px 0 0 0 !important}.tutor-user-public-profile .tutor-social-container a{color:#7A7A7A !important}.tutor-user-public-profile .profile-name{padding:0 !important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{margin-top:-83px !important;position:relative !important;top:0 !important}.tutor-user-public-profile .tutor-user-profile-sidebar{margin-top:0 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{-webkit-box-pack:left !important;-ms-flex-pack:left !important;justify-content:left !important;-o-justify-content:left !important;-ms-justify-content:left !important;-moz-justify-content:left !important;-webkit-justify-content:left !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area *{text-align:left !important}}.tutor-user-public-profile .tutor-user-profile-sidebar{padding:15px;width:223px;float:left}.tutor-user-public-profile .tutor-user-profile-content{width:calc(100% - 228px);float:left;margin-bottom:30px}.tutor-user-public-profile .tutor-user-profile-content>h3{font-style:normal;font-weight:normal;font-size:24px;line-height:34px;color:#161616;margin-top:20px}.tutor-user-public-profile .tutor-user-profile-content>h3:first-child{margin-top:0}@media (max-width: 800px){.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{padding-left:0 !important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{left:178px !important}.tutor-user-public-profile .tutor-user-profile-sidebar,.tutor-user-public-profile .tutor-user-profile-content{width:100%;float:none}}.tutor-dashboard-builder-header{padding:10px 0px;border-bottom:2px solid #DCDFE5;position:fixed;top:0px;background:#fff;width:100%;z-index:99}@media (max-width: 991px){.tutor-dashboard-builder-header{position:static}}.tutor-dashboard-builder-header .tutor-row{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width: 991px){.tutor-dashboard-builder-header .tutor-row .tutor-col-auto{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.tutor-dashboard-builder-header .tutor-row .tutor-col-auto:first-child{margin-bottom:15px}}.tutor-dashboard-builder-header .tutor-button{white-space:nowrap;margin-left:auto}@media (max-width: 991px){.tutor-dashboard-builder-header .tutor-button{padding:6px 10px}}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left .tutor-dashboard-builder-logo{padding:0 25px;position:relative}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left .tutor-dashboard-builder-logo img{max-height:32px}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button{margin:0;padding:0px 25px;line-height:30px;border:none;border-left:1px solid #DCDFE5;background:transparent;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;color:var(--tutor-text-color);-webkit-transition:300ms;transition:300ms;font-weight:500;white-space:nowrap}@media (max-width: 991px){.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button{border-left:none}}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button i{font-size:24px;line-height:30px;margin-right:9px}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button:hover{color:var(--tutor-primary-color);background:transparent}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-left button:hover i{color:var(--tutor-primary-color)}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right a{color:var(--tutor-text-color);font-weight:500;line-height:36px;padding:0 25px;-webkit-transition:300ms;transition:300ms;white-space:nowrap}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right a i{font-size:36px;line-height:36px;display:inline-block;vertical-align:top;padding-right:9px}.tutor-dashboard-builder-header .tutor-dashboard-builder-header-right a:hover{color:var(--tutor-primary-color)}.tutor-frontend-course-builder-section{padding:113px 0 45px;background-color:#ffffff}@media (max-width: 991px){.tutor-frontend-course-builder-section{padding-top:60px}.tutor-frontend-course-builder-section .tutor-col-8,.tutor-frontend-course-builder-section .tutor-col-4{width:100%;max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.admin-bar .tutor-dashboard-builder-header{top:32px}@media (max-width: 783px){.admin-bar .tutor-dashboard-builder-header{top:46px}}.tutor-course-builder-upload-tips{position:fixed;max-width:370px}@media (max-width: 991px){.tutor-course-builder-upload-tips{position:static}}.tutor-course-builder-upload-tips .tutor-course-builder-tips-title{font-size:16px;color:#8C94A8;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-course-builder-upload-tips .tutor-course-builder-tips-title i{font-size:24px;color:var(--tutor-primary-color);margin-right:11px}.tutor-course-builder-upload-tips ul{margin:0;padding:0 0 0 35px;list-style:none}.tutor-course-builder-upload-tips ul li{position:relative;margin-bottom:8px;line-height:24px}.tutor-course-builder-upload-tips ul li::after{content:'';position:absolute;height:8px;width:8px;border-radius:50%;background:#DCDFE5;left:-26px;top:9px}.tutor-course-level-meta{display:-webkit-box;display:-ms-flexbox;display:flex}.tutor-course-level-meta label{margin:0 40px 0 0;font-weight:600}.tutor-frontend-builder-course-price .tutor-form-group input{margin-bottom:0}.tutor-frontend-builder-course-price .tutor-styled-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-course-builder-attachements{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;-ms-flex-wrap:wrap;flex-wrap:wrap}.tutor-course-builder-attachements .tutor-added-attachment{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - 30px);flex:0 0 calc(25% - 30px);max-width:calc(25% - 30px);border:1px solid #DCDFE5;padding:35px 20px 20px;position:relative;text-align:center;margin-left:30px;margin-bottom:30px;border-radius:4px;-webkit-transition:300ms;transition:300ms;min-width:120px}@media (max-width: 480px){.tutor-course-builder-attachements .tutor-added-attachment{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 30px);flex:0 0 calc(50% - 30px);max-width:calc(50% - 30px)}}.tutor-course-builder-attachements .tutor-added-attachment i{font-size:58px;line-height:58px;margin-bottom:25px;display:block}.tutor-course-builder-attachements .tutor-added-attachment .tutor-delete-attachment{position:absolute;height:22px;width:22px;border:1px solid #DCDFE5;text-align:center;line-height:22px;top:-1px;right:-1px;font-size:10px;border-top-right-radius:4px;color:transparent;-webkit-transition:300ms;transition:300ms}.tutor-course-builder-attachements .tutor-added-attachment:hover,.tutor-course-builder-attachements .tutor-added-attachment:hover .tutor-delete-attachment{border-color:#D71830;color:#D71830}.tutor-course-builder-attachements .tutor-added-attachment span{display:block}.tutor-course-builder-attachements .tutor-added-attachment span a{font-size:14px;display:block;line-height:20px;color:#606C8F}.tutor-course-builder-btn-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}#tutor-metabox-course-settings-tabs{background-color:#fff;border:1px solid #e5e5e5;margin:1em 0}.inside #tutor-metabox-course-settings-tabs{border:0;margin:0}.settings-tabs-heading{padding:1em;border-bottom:1px solid #e5e5e5}.settings-tabs-heading h3{font-size:14px;margin:0;line-height:1.4}.course-settings-tabs-container{display:-webkit-box;display:-ms-flexbox;display:flex}.course-settings-tabs-container .settings-tabs-navs-wrap{-webkit-box-flex:0;-ms-flex:0 0 200px;flex:0 0 200px;background:#F5F5F5}.settings-tabs-navs-wrap .settings-tabs-navs{margin:0;list-style:none}.settings-tabs-navs-wrap .settings-tabs-navs li{margin:0}.settings-tabs-navs-wrap .settings-tabs-navs li a{display:block;padding-top:10px;padding-bottom:10px;padding-left:15px;padding-right:15px;color:#23282d;text-decoration:none;background:#F5F5F5;text-transform:capitalize;border-bottom:1px solid #e5e5e5;border-left:3px solid transparent}.settings-tabs-navs-wrap .settings-tabs-navs li:last-child a{border-bottom:none}.settings-tabs-navs-wrap .settings-tabs-navs li a:focus{-webkit-box-shadow:none;box-shadow:none}.settings-tabs-navs-wrap .settings-tabs-navs li.active a{background-color:#ffffff;border-bottom:1px solid #e5e5e5;color:var(--tutor-primary-color);border-left:3px solid var(--tutor-primary-color)}.course-settings-tabs-container .settings-tabs-container{padding:1em;-webkit-box-flex:1;-ms-flex:1;flex:1}.tutor-field-radio p{margin-top:0}.lesson-modal-form-wrap .lesson-content-drip-wrap{padding:10px;border:1px solid #e4e4e4}.lesson-modal-form-wrap .lesson-content-drip-wrap h3{margin:0 0 10px 0}.select2-dropdown.increasezindex{z-index:9999999999999}.tutor-topic-title i.tutor-icon-move{line-height:unset}.select2-selection__rendered [class^="tutor-icon-"]{vertical-align:middle}@media (min-width: 992px){.tutor-option-tooltip.tutor-option-field{position:relative}.tutor-option-tooltip.tutor-option-field p.desc{position:absolute;left:calc(100% + 16px);background:#2A344F;width:160px;padding:10px 13px;opacity:0;visibility:hidden;-webkit-transition:300ms;transition:300ms;z-index:98;top:10px;color:#fff;border-radius:12px;font-size:12px;font-style:normal}.tutor-option-tooltip.tutor-option-field p.desc::before{content:url("data:image/svg+xml,%3Csvg width='14' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.139C5.339 5.482 8.671 2.903 9.998.403c1.99-3.75 5.481 21.94 1.567 16.037C8.955 12.505 5.1 9.738 0 8.139z' fill='%232A344F' fill-rule='evenodd'/%3E%3C/svg%3E");position:absolute;left:-10px;top:16px}.tutor-option-tooltip.tutor-option-field:hover p.desc{opacity:1;visibility:visible}.tutor-option-tooltip.tutor-option-field input:focus+p.desc,.tutor-option-tooltip.tutor-option-field textarea:focus+p.desc{opacity:1;visibility:visible}}.tutor-instructor-pending-content{text-align:center}.tutor-instructor-pending-content a{margin-top:26px}.tutor-instructor-pending-content img{margin-bottom:69px;border-radius:10px}.tutor-instructor-thankyou-text h2{line-height:48px;font-size:40px;font-style:normal;font-weight:500;letter-spacing:0px;color:#161616;margin-bottom:26px}.tutor-instructor-extra-text{font-size:20px;font-style:normal;font-weight:400;letter-spacing:0px;color:#525252;line-height:30px}.tutor-frontend-dashboard-withdrawal h4{margin-bottom:25px}.withdraw-history-table-title h4{margin-top:45px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border:1px solid #DCDBDC;border-radius:6px;padding:25px 35px 25px 30px;margin-bottom:15px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info img{margin-right:15px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info small{font-size:16px}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .balance-info p{font-size:20px;line-height:26px;margin:0}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a,.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:hover,.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:focus,.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:active{text-decoration:none;background:#3E64DE;border-radius:3px;display:inline-block;padding:8px 18px;font-weight:500;font-size:16px;color:white;cursor:pointer}.tutor-frontend-dashboard-withdrawal .withdraw-page-current-balance .make-withdraw a:hover{background:#2548bb}.tutor-frontend-dashboard-withdrawal h4{font-weight:500;font-size:24px}.tutor-frontend-dashboard-withdrawal .withdrawal-preference{font-size:15px;color:#7A7A7A}.tutor-frontend-dashboard-withdrawal .inline-image-text>img{width:23px;display:inline-block !important}.tutor-frontend-dashboard-withdrawal .inline-image-text>*{vertical-align:middle}.tutor-frontend-dashboard-withdrawal .inline-image-text.is-inline-block>*{display:inline-block}.tutor-frontend-dashboard-withdrawal .inline-image-text a{text-decoration:underline;color:#444}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap{display:none}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div{width:100%;height:100%;padding:15px;overflow:hidden;position:fixed;left:0;right:0;top:0;bottom:0;z-index:9999999999;background:rgba(0,0,0,0.589);display:-webkit-box;display:-ms-flexbox;display:flex;display:-o-flex;display:-ms-flex;display:-moz-flex;display:-webkit-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-o-align-items:center;-ms-align-items:center;-moz-align-items:center;-webkit-align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-o-justify-content:center;-ms-justify-content:center;-moz-justify-content:center;-webkit-justify-content:center}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div{display:inline-block;max-height:100%;width:100%;max-width:690px;background:white;overflow:auto;border-radius:15px;position:relative;padding:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div{padding:50px 70px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child>.tutor-icon-line-cross{position:absolute;cursor:pointer;top:30px;right:30px;font-size:20px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child tr,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child td,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child table,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child tbody{border:none;margin:0;padding:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:first-child h3{margin:7px 0px;font-weight:600;padding:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap>div>div>div:last-child{border-top:1px solid #E8E8E8;background:#F3F3F3}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount{border:1px solid #BABABA;border-radius:6px;background:white;height:43px;overflow:hidden;margin-bottom:12px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount>span{display:block;text-align:center;width:40px;float:left;height:100%;background:#f3f3f3;border-right:1px solid #BABABA}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount>span>span{font-size:18px;font-weight:bold;display:inline-block;line-height:41px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount input,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount input:focus,.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .withdraw-form-field-amount input:active{border:none;outline:0;height:100%;width:calc(100% - 40px);display:inline-block;margin:0;padding:0;padding-left:7px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-button-container{margin:50px 0 0;overflow:auto}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-button-container>button:last-child{float:right}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response{position:fixed;left:50px;bottom:50px;border:1px solid #E8E8E8;background:white;border-radius:10px;margin:0}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response:empty{display:none}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response>*{background:white;border:none}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response img{width:34px;margin:5px 13px}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response b{font-weight:600}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdraw-form-response span{color:#333}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap button.close-withdraw-form-btn{background:#F3F3F3;border:1px solid #DCDBDC;color:#7A7A7A}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap button.close-withdraw-form-btn:hover{background:#e6e6e6}.tutor-frontend-dashboard-withdrawal .tutor-earning-withdraw-form-wrap .tutor-withdrawal-pop-up-success img{display:inline-block !important}.tutor-frontend-dashboard-withdrawal table.withdrawals-history{border:1px solid #DCDBDC;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th{background:#F3F3F3}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td{padding:10px;border:none;font-weight:normal;font-size:13px;text-align:left;vertical-align:middle}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td{border-bottom:1px solid #DCDBDC;border-collapse:collapse}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th:first-child,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td:first-child{padding:10px 0 15px 15px}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th:last-child,.tutor-frontend-dashboard-withdrawal table.withdrawals-history td:last-child{text-align:right;padding-right:15px;width:50px}.tutor-frontend-dashboard-withdrawal table.withdrawals-history th:nth-child(4),.tutor-frontend-dashboard-withdrawal table.withdrawals-history td:nth-child(4){width:105px}.tutor-frontend-dashboard-withdrawal table.withdrawals-history .withdraw-method-name{line-height:20px;font-size:15px;display:block}.tutor-frontend-dashboard-withdrawal table.withdrawals-history small{font-size:13px}.tutor-frontend-dashboard-withdrawal .tutor-status-text-container .tool-tip-container{position:relative;display:inline-block;height:24px;cursor:pointer}.tutor-frontend-dashboard-withdrawal .tutor-status-text-container .tool-tip-container img{display:inline-block !important;width:16px}.tutor-frontend-dashboard-withdrawal .tutor-status-text{display:inline-block;font-weight:bold;font-size:13px;color:#FFFFFF;background:gray;border-radius:2px;padding:3px 9px}.tutor-frontend-dashboard-withdrawal .tutor-status-text.status-approved{background:#24A148}.tutor-frontend-dashboard-withdrawal .tutor-status-text.status-pending{background:#ED9700}.tutor-frontend-dashboard-withdrawal .tutor-status-text.status-rejected{background:#F44337}.tutor-tooltip-inside .tooltip{position:absolute;z-index:2;overflow:hidden;clip:rect(0, 0, 0, 0);-webkit-box-sizing:border-box;box-sizing:border-box;width:0;height:0;padding:0;cursor:default;color:#fff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-size:1.4rem;line-height:normal;text-align:center;white-space:nowrap;border-width:0;border-style:solid;border-color:#6d6e71;border-top-color:#373739;background-color:#373739;opacity:0;-webkit-transition:opacity .3s ease-in .3s;transition:opacity .3s ease-in .3s;font-size:13px;color:#FFFFFF;height:auto;text-align:center;white-space:normal;font-size:12px;background:#353535;border-radius:10px;padding:7px}.tutor-tooltip-inside .tooltip.isVisible{overflow:visible;clip:auto;width:150px;height:auto;padding:10px 15px;border-width:1px;opacity:1}.tutor-tooltip-inside .tooltip,.tutor-tooltip-inside .tooltip.tip-bottom,.tutor-tooltip-inside .tooltip.tip-top{left:50%;-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0)}.tutor-tooltip-inside .tooltip,.tutor-tooltip-inside .tooltip.tip-bottom,.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-bottom-right{top:110%;top:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-top,.tutor-tooltip-inside .tooltip.tip-top-left,.tutor-tooltip-inside .tooltip.tip-top-right{top:auto;bottom:110%;bottom:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-bottom-right,.tutor-tooltip-inside .tooltip.tip-top-left,.tutor-tooltip-inside .tooltip.tip-top-right{-webkit-transform:none;transform:none}.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-top-left{right:50%;left:auto;margin-right:-25px}.tutor-tooltip-inside .tooltip.tip-bottom-right,.tutor-tooltip-inside .tooltip.tip-top-right{margin-left:-25px}.tutor-tooltip-inside .tooltip.tip-left,.tutor-tooltip-inside .tooltip.tip-right{top:50%;-webkit-transform:translate(0, -50%);transform:translate(0, -50%)}.tutor-tooltip-inside .tooltip.tip-left{right:110%;right:calc(100% + 13px);left:auto}.tutor-tooltip-inside .tooltip.tip-right{left:110%;left:calc(100% + 13px)}.tutor-tooltip-inside .tooltip:after{content:' ';display:block;position:absolute;width:0;height:0;border-width:10px;border-style:solid;pointer-events:none}.tutor-tooltip-inside .tooltip:after,.tutor-tooltip-inside .tooltip.tip-bottom:after,.tutor-tooltip-inside .tooltip.tip-top:after{left:50%;margin-left:-10px}.tutor-tooltip-inside .tooltip:after,.tutor-tooltip-inside .tooltip.tip-bottom:after,.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-bottom-right:after{top:-20px;border-color:transparent transparent #373739 transparent}.tutor-tooltip-inside .tooltip.tip-top:after,.tutor-tooltip-inside .tooltip.tip-top-left:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{top:auto;bottom:-20px;border-color:#373739 transparent transparent transparent}.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-bottom-right:after,.tutor-tooltip-inside .tooltip.tip-top-left:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{margin-left:0}.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-top-left:after{right:15px;left:auto}.tutor-tooltip-inside .tooltip.tip-bottom-right:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{left:15px}.tutor-tooltip-inside .tooltip.tip-left:after,.tutor-tooltip-inside .tooltip.tip-right:after{top:50%;margin-top:-10px;margin-left:auto}.tutor-tooltip-inside .tooltip.tip-left:after{right:-20px;left:auto;border-color:transparent transparent transparent #373739}.tutor-tooltip-inside .tooltip.tip-right:after{left:-20px;border-color:transparent #373739 transparent transparent}.tutor-instructor-list,.tutor-instructor-list:focus,.tutor-instructor-list:active{outline:none;cursor:pointer;text-decoration:none !important;background:#FFFFFF;border:1px solid #DCDBDC;border-radius:6px}.tutor-instructor-list .tutor-instructor-profile-photo,.tutor-instructor-list .tutor-instructor-cover-photo{background-size:cover;background-repeat:no-repeat;background-position:center center}.tutor-instructor-list .tutor-instructor-profile-photo{border-radius:50%;width:60px;height:60px}.tutor-instructor-list .tutor-instructor-name{font-style:normal;font-weight:500;font-size:24px;color:#161616;margin:0}.tutor-instructor-list .tutor-instructor-course-count{margin-bottom:10px}.tutor-instructor-list .tutor-instructor-course-count>span{font-style:normal;font-weight:500;font-size:15px;color:#161616}.tutor-instructor-list .tutor-instructor-course-count>span:last-child{color:#808080}.tutor-instructor-list .tutor-instructor-rating *{font-size:16px}.tutor-instructor-list .tutor-instructor-rating .rating-digits{color:#161616}.tutor-instructor-list .tutor-instructor-rating .rating-total-meta{color:#7A7A7A}.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-cover-photo{width:100%;height:153px}.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-profile-photo{border:4px solid white;margin:-31px 15px 0}.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-cp .tutor-instructor-rating{padding:0 15px}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-cover-photo{display:none}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-profile-photo{border-radius:0%;width:100%;height:160px}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-rating{padding:0 15px}.tutor-instructor-list.tutor-instructor-list-pp-top-full .tutor-instructor-name{margin-top:15px}.tutor-instructor-list.tutor-instructor-list-pp-top-left{padding:15px}.tutor-instructor-list.tutor-instructor-list-pp-top-left .tutor-instructor-cover-photo{display:none}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-cover-photo,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-cover-photo{display:none}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-profile-photo,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-profile-photo{border-radius:0%;height:102px;width:102px;top:0px;position:absolute}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-rating,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-name,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-course-count,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-rating{margin-left:118px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100% - 110px);display:inline-block;position:relative;top:6px}.tutor-instructor-list.tutor-instructor-list-pp-left-full .tutor-instructor-rating,.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-rating{top:7px;position:relative}.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-profile-photo{border-radius:50%;height:82px;width:82px;margin:10px}.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-name{top:11px}.tutor-instructor-list.tutor-instructor-list-pp-left-middle .tutor-instructor-course-count{top:46px}
2
 
3
  /*# sourceMappingURL=tutor-front.min.css.map */
assets/js/tutor-admin.js CHANGED
@@ -44,9 +44,12 @@ jQuery(document).ready(function($){
44
  $form.find('.button').addClass('tutor-updating-message');
45
  },
46
  success: function (data) {
47
- if (data.success) {
48
- //window.location.reload();
49
- }
 
 
 
50
  },
51
  complete: function () {
52
  $form.find('.button').removeClass('tutor-updating-message');
@@ -147,8 +150,16 @@ jQuery(document).ready(function($){
147
 
148
  //Close the modal
149
  $('.tutor-lesson-modal-wrap').removeClass('show');
 
 
 
 
 
150
  }
151
  },
 
 
 
152
  complete: function () {
153
  $that.removeClass('tutor-updating-message');
154
  }
@@ -492,8 +503,16 @@ jQuery(document).ready(function($){
492
 
493
  //Close the modal
494
  $('.tutor-lesson-modal-wrap').removeClass('show');
 
 
 
 
 
495
  }
496
  },
 
 
 
497
  complete: function () {
498
  $that.removeClass('tutor-updating-message');
499
  }
44
  $form.find('.button').addClass('tutor-updating-message');
45
  },
46
  success: function (data) {
47
+ data.success ?
48
+ tutor_toast($form.data('toast_success'), $form.data('toast_success_message'), 'success') :
49
+ tutor_toast($form.data('toast_error'), $form.data('toast_error_message'), 'error');
50
+ },
51
+ error: function() {
52
+ tutor_toast($form.data('toast_error'), $form.data('toast_error_message'), 'error');
53
  },
54
  complete: function () {
55
  $form.find('.button').removeClass('tutor-updating-message');
150
 
151
  //Close the modal
152
  $('.tutor-lesson-modal-wrap').removeClass('show');
153
+
154
+ tutor_toast($that.data('toast_success'), $that.data('toast_success_message'), 'success');
155
+ }
156
+ else {
157
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
158
  }
159
  },
160
+ error: function () {
161
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
162
+ },
163
  complete: function () {
164
  $that.removeClass('tutor-updating-message');
165
  }
503
 
504
  //Close the modal
505
  $('.tutor-lesson-modal-wrap').removeClass('show');
506
+
507
+ tutor_toast($that.data('toast_success'), $that.data('toast_success_message'), 'success');
508
+ }
509
+ else {
510
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
511
  }
512
  },
513
+ error: function() {
514
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
515
+ },
516
  complete: function () {
517
  $that.removeClass('tutor-updating-message');
518
  }
assets/js/tutor-front.js CHANGED
@@ -1245,7 +1245,15 @@ jQuery(document).ready(function ($) {
1245
 
1246
  //Close the modal
1247
  $('.tutor-lesson-modal-wrap').removeClass('show');
 
 
1248
  }
 
 
 
 
 
 
1249
  },
1250
  complete: function () {
1251
  $that.removeClass('tutor-updating-message');
@@ -1427,7 +1435,15 @@ jQuery(document).ready(function ($) {
1427
 
1428
  //Close the modal
1429
  $('.tutor-lesson-modal-wrap').removeClass('show');
 
 
1430
  }
 
 
 
 
 
 
1431
  },
1432
  complete: function () {
1433
  $that.removeClass('tutor-updating-message');
@@ -2020,6 +2036,8 @@ jQuery(document).ready(function ($) {
2020
  return;
2021
  }
2022
 
 
 
2023
  var context = this;
2024
  context.toggle_loader(name, true);
2025
 
@@ -2028,6 +2046,7 @@ jQuery(document).ready(function ($) {
2028
  form_data.append('action', 'tutor_user_photo_upload');
2029
  form_data.append('photo_type', name);
2030
  form_data.append('photo_file', file, file.name);
 
2031
 
2032
  $.ajax({
2033
  url:window._tutorobject.ajaxurl,
1245
 
1246
  //Close the modal
1247
  $('.tutor-lesson-modal-wrap').removeClass('show');
1248
+
1249
+ tutor_toast($that.data('toast_success'), $that.data('toast_success_message'), 'success');
1250
  }
1251
+ else {
1252
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
1253
+ }
1254
+ },
1255
+ error: function() {
1256
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
1257
  },
1258
  complete: function () {
1259
  $that.removeClass('tutor-updating-message');
1435
 
1436
  //Close the modal
1437
  $('.tutor-lesson-modal-wrap').removeClass('show');
1438
+
1439
+ tutor_toast($that.data('toast_success'), $that.data('toast_success_message'), 'success');
1440
  }
1441
+ else {
1442
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
1443
+ }
1444
+ },
1445
+ error: function() {
1446
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
1447
  },
1448
  complete: function () {
1449
  $that.removeClass('tutor-updating-message');
2036
  return;
2037
  }
2038
 
2039
+ var nonce = tutor_get_nonce_data(true);
2040
+
2041
  var context = this;
2042
  context.toggle_loader(name, true);
2043
 
2046
  form_data.append('action', 'tutor_user_photo_upload');
2047
  form_data.append('photo_type', name);
2048
  form_data.append('photo_file', file, file.name);
2049
+ form_data.append(nonce.key, nonce.value);
2050
 
2051
  $.ajax({
2052
  url:window._tutorobject.ajaxurl,
assets/js/tutor-setup.js CHANGED
@@ -1,3 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  jQuery(document).ready(function($) {
2
  "use strict";
3
 
1
+ jQuery.fn.serializeObject = function()
2
+ {
3
+ var values = {};
4
+ var array = this.serializeArray();
5
+
6
+ jQuery.each(array, function() {
7
+ if (values[this.name]) {
8
+ if (!values[this.name].push) {
9
+ values[this.name] = [values[this.name]];
10
+ }
11
+ values[this.name].push(this.value || '');
12
+ } else {
13
+ values[this.name] = this.value || '';
14
+ }
15
+ });
16
+
17
+ return values;
18
+ };
19
+
20
  jQuery(document).ready(function($) {
21
  "use strict";
22
 
assets/js/tutor.js CHANGED
@@ -1,9 +1,13 @@
1
- function tutor_get_nonce_data() {
2
 
3
  var nonce_data = window.tutor_data || window._tutorobject || {};
4
  var nonce_key = nonce_data.nonce_key || '';
5
  var nonce_value = nonce_data[nonce_key] || '';
6
 
 
 
 
 
7
  return {[nonce_key]:nonce_value};
8
  }
9
 
@@ -539,7 +543,12 @@ jQuery(document).ready(function($){
539
  $that.addClass('tutor-updating-message');
540
  },
541
  success: function (data) {
542
- //
 
 
 
 
 
543
  },
544
  complete: function () {
545
  $that.removeClass('tutor-updating-message');
@@ -1290,9 +1299,15 @@ jQuery(document).ready(function($){
1290
  success: function (data) {
1291
  if (data.success){
1292
  $that.closest('.course-content-item').remove();
1293
- alert('Done');
 
 
 
1294
  }
1295
  },
 
 
 
1296
  complete: function () {
1297
  $that.removeClass('tutor-updating-message');
1298
  }
@@ -1532,4 +1547,48 @@ jQuery.fn.serializeObject = function()
1532
  });
1533
 
1534
  return values;
1535
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ function tutor_get_nonce_data(send_key_value) {
2
 
3
  var nonce_data = window.tutor_data || window._tutorobject || {};
4
  var nonce_key = nonce_data.nonce_key || '';
5
  var nonce_value = nonce_data[nonce_key] || '';
6
 
7
+ if(send_key_value) {
8
+ return {key:nonce_key, value:nonce_value};
9
+ }
10
+
11
  return {[nonce_key]:nonce_value};
12
  }
13
 
543
  $that.addClass('tutor-updating-message');
544
  },
545
  success: function (data) {
546
+ data.success ?
547
+ tutor_toast($that.data('toast_success'), $that.data('toast_success_message'), 'success') :
548
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
549
+ },
550
+ error: function() {
551
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
552
  },
553
  complete: function () {
554
  $that.removeClass('tutor-updating-message');
1299
  success: function (data) {
1300
  if (data.success){
1301
  $that.closest('.course-content-item').remove();
1302
+ tutor_toast($that.data('toast_success'), $that.data('toast_success_message'), 'success');
1303
+ }
1304
+ else {
1305
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
1306
  }
1307
  },
1308
+ error: function() {
1309
+ tutor_toast($that.data('toast_error'), $that.data('toast_error_message'), 'error');
1310
+ },
1311
  complete: function () {
1312
  $that.removeClass('tutor-updating-message');
1313
  }
1547
  });
1548
 
1549
  return values;
1550
+ };
1551
+
1552
+ function tutor_toast(title, description, type) {
1553
+ var tutor_ob = window.tutor_data || window._tutorobject || {};
1554
+ var asset = (tutor_ob.tutor_url || '') + 'assets/images/';
1555
+
1556
+ if(!jQuery('.tutor-toast-parent').length) {
1557
+ jQuery('body').append('<div class="tutor-toast-parent"></div>');
1558
+ }
1559
+
1560
+ var icons = {
1561
+ success : asset+'icon-check.svg',
1562
+ error: asset+'icon-cross.svg'
1563
+ }
1564
+
1565
+ var content = jQuery('\
1566
+ <div>\
1567
+ <div>\
1568
+ <img src="'+icons[type]+'"/>\
1569
+ </div>\
1570
+ <div>\
1571
+ <div>\
1572
+ <b>'+title+'</b>\
1573
+ <span>'+description+'</span>\
1574
+ </div>\
1575
+ </div>\
1576
+ <div>\
1577
+ <i class="tutor-toast-close tutor-icon-line-cross"></i>\
1578
+ </div>\
1579
+ </div>');
1580
+
1581
+ content.find('.tutor-toast-close').click(function() {
1582
+ content.remove();
1583
+ });
1584
+
1585
+ jQuery('.tutor-toast-parent').append(content);
1586
+
1587
+ setTimeout(function() {
1588
+ if(content) {
1589
+ content.fadeOut('fast', function() {
1590
+ jQuery(this).remove();
1591
+ });
1592
+ }
1593
+ }, 5000);
1594
+ }
classes/Ajax.php CHANGED
@@ -438,14 +438,22 @@ class Ajax{
438
 
439
  $error = array();
440
  $response = array();
441
- tutils()->checking_nonce();
 
 
 
 
 
 
 
 
442
 
443
  //set data and sanitize it
444
  $form_data = array(
445
  'post_type' => 'tutor_announcements',
446
- 'post_title' => sanitize_text_field($_POST['tutor_annoument_title']),
447
- 'post_content' => sanitize_textarea_field($_POST['tutor_annoument_summary']),
448
- 'post_parent' => sanitize_text_field($_POST['tutor_announcement_course']),
449
  'post_status' => 'publish'
450
  );
451
 
@@ -511,6 +519,11 @@ class Ajax{
511
  public function delete_annoucement() {
512
  $announcement_id = sanitize_text_field($_POST['announcement_id']);
513
  tutils()->checking_nonce();
 
 
 
 
 
514
  $delete = wp_delete_post($announcement_id);
515
  if ($delete) {
516
  $response = array(
438
 
439
  $error = array();
440
  $response = array();
441
+ tutils()->checking_nonce();
442
+
443
+ $course_id = sanitize_text_field($_POST['tutor_announcement_course']);
444
+ $announcement_title = sanitize_text_field($_POST['tutor_announcement_title']);
445
+ $announcement_summary = sanitize_textarea_field($_POST['tutor_announcement_summary']);
446
+
447
+ if(!tutils()->can_user_manage('course', $course_id)) {
448
+ wp_send_json_error( array('message'=>__('Access Denied', 'tutor')) );
449
+ }
450
 
451
  //set data and sanitize it
452
  $form_data = array(
453
  'post_type' => 'tutor_announcements',
454
+ 'post_title' => $announcement_title,
455
+ 'post_content' => $announcement_summary,
456
+ 'post_parent' => $course_id,
457
  'post_status' => 'publish'
458
  );
459
 
519
  public function delete_annoucement() {
520
  $announcement_id = sanitize_text_field($_POST['announcement_id']);
521
  tutils()->checking_nonce();
522
+
523
+ if(!tutils()->can_user_manage('announcement', $announcement_id)) {
524
+ wp_send_json_error( array('message'=>__('Access Denied', 'tutor')) );
525
+ }
526
+
527
  $delete = wp_delete_post($announcement_id);
528
  if ($delete) {
529
  $response = array(
classes/Assets.php CHANGED
@@ -16,7 +16,7 @@ class Assets{
16
 
17
  public function admin_scripts(){
18
  wp_enqueue_style('tutor-select2', tutor()->url.'assets/packages/select2/select2.min.css', array(), tutor()->version);
19
- wp_enqueue_style('tutor-admin', tutor()->url.'assets/css/tutor-admin.css', array(), tutor()->version);
20
  wp_enqueue_style('tutor-icon', tutor()->url.'assets/icons/css/tutor-icon.css', array(), tutor()->version);
21
 
22
  /**
@@ -36,7 +36,7 @@ class Assets{
36
 
37
  $tutor_localize_data = array(
38
  'delete_confirm_text' => __('Are you sure? it can not be undone.', 'tutor'),
39
-
40
  'nonce_key' => tutor()->nonce,
41
  tutor()->nonce => wp_create_nonce( tutor()->nonce_action ),
42
  );
@@ -85,6 +85,7 @@ class Assets{
85
  //$options = tutor_utils()->get_option();
86
  $localize_data = array(
87
  'ajaxurl' => admin_url('admin-ajax.php'),
 
88
  'nonce_key' => tutor()->nonce,
89
  tutor()->nonce => wp_create_nonce( tutor()->nonce_action ),
90
  //'options' => $options,
16
 
17
  public function admin_scripts(){
18
  wp_enqueue_style('tutor-select2', tutor()->url.'assets/packages/select2/select2.min.css', array(), tutor()->version);
19
+ wp_enqueue_style('tutor-admin', tutor()->url.'assets/css/tutor-admin.min.css', array(), tutor()->version);
20
  wp_enqueue_style('tutor-icon', tutor()->url.'assets/icons/css/tutor-icon.css', array(), tutor()->version);
21
 
22
  /**
36
 
37
  $tutor_localize_data = array(
38
  'delete_confirm_text' => __('Are you sure? it can not be undone.', 'tutor'),
39
+ 'tutor_url' => tutor()->url,
40
  'nonce_key' => tutor()->nonce,
41
  tutor()->nonce => wp_create_nonce( tutor()->nonce_action ),
42
  );
85
  //$options = tutor_utils()->get_option();
86
  $localize_data = array(
87
  'ajaxurl' => admin_url('admin-ajax.php'),
88
+ 'tutor_url' => tutor()->url,
89
  'nonce_key' => tutor()->nonce,
90
  tutor()->nonce => wp_create_nonce( tutor()->nonce_action ),
91
  //'options' => $options,
classes/Course.php CHANGED
@@ -3,7 +3,10 @@ namespace TUTOR;
3
 
4
  if ( ! defined( 'ABSPATH' ) )
5
  exit;
6
-
 
 
 
7
  class Course extends Tutor_Base {
8
 
9
  private $additional_meta=array(
@@ -13,7 +16,7 @@ class Course extends Tutor_Base {
13
 
14
  public function __construct() {
15
  parent::__construct();
16
-
17
  add_action( 'add_meta_boxes', array($this, 'register_meta_box') );
18
  add_action('save_post_'.$this->course_post_type, array($this, 'save_course_meta'), 10, 2);
19
  add_action('wp_ajax_tutor_add_course_topic', array($this, 'tutor_add_course_topic'));
@@ -108,7 +111,9 @@ class Course extends Tutor_Base {
108
  add_action('deleted_post', array($this, 'delete_tutor_course_data'));
109
 
110
 
111
- add_action('tutor/dashboard_course_builder_form_field_after', array($this, 'tutor_course_setting_metabox_frontend'));
 
 
112
  }
113
 
114
  /**
@@ -213,9 +218,6 @@ class Course extends Tutor_Base {
213
  */
214
  public function save_course_meta($post_ID, $post){
215
  global $wpdb;
216
-
217
- do_action( "tutor_save_course", $post_ID, $post);
218
-
219
  /**
220
  * Save course price type
221
  */
@@ -349,6 +351,10 @@ class Course extends Tutor_Base {
349
  }
350
 
351
  do_action( "tutor_save_course_after", $post_ID, $post);
 
 
 
 
352
  }
353
 
354
  /**
@@ -1262,4 +1268,6 @@ class Course extends Tutor_Base {
1262
  </div>
1263
  <?php
1264
  }
 
 
1265
  }
3
 
4
  if ( ! defined( 'ABSPATH' ) )
5
  exit;
6
+ /**
7
+ * @since 1.8.0
8
+ */
9
+ session_start();
10
  class Course extends Tutor_Base {
11
 
12
  private $additional_meta=array(
16
 
17
  public function __construct() {
18
  parent::__construct();
19
+
20
  add_action( 'add_meta_boxes', array($this, 'register_meta_box') );
21
  add_action('save_post_'.$this->course_post_type, array($this, 'save_course_meta'), 10, 2);
22
  add_action('wp_ajax_tutor_add_course_topic', array($this, 'tutor_add_course_topic'));
111
  add_action('deleted_post', array($this, 'delete_tutor_course_data'));
112
 
113
 
114
+ add_action('tutor/dashboard_course_builder_form_field_after', array($this, 'tutor_course_setting_metabox_frontend'));
115
+
116
+
117
  }
118
 
119
  /**
218
  */
219
  public function save_course_meta($post_ID, $post){
220
  global $wpdb;
 
 
 
221
  /**
222
  * Save course price type
223
  */
351
  }
352
 
353
  do_action( "tutor_save_course_after", $post_ID, $post);
354
+ /**
355
+ * @since 1.8.0
356
+ */
357
+ $_SESSION['tutor_course_updated'] = true;
358
  }
359
 
360
  /**
1268
  </div>
1269
  <?php
1270
  }
1271
+
1272
+
1273
  }
classes/Course_Settings_Tabs.php CHANGED
@@ -44,7 +44,7 @@ class Course_Settings_Tabs{
44
  'label' => __('Maximum Students', 'tutor'),
45
  'label_title' => __('Enable', 'tutor'),
46
  'default' => '0',
47
- 'desc' => __('Number of maximum students can enroll in this course, set zero for no limits', 'tutor'),
48
  ),
49
  ),
50
  ),
44
  'label' => __('Maximum Students', 'tutor'),
45
  'label_title' => __('Enable', 'tutor'),
46
  'default' => '0',
47
+ 'desc' => __('Number of students that can enrol in this course. Set 0 for no limits.', 'tutor'),
48
  ),
49
  ),
50
  ),
classes/Quiz.php CHANGED
@@ -16,7 +16,19 @@ if ( ! defined( 'ABSPATH' ) )
16
 
17
  class Quiz {
18
 
 
 
 
 
 
 
 
 
 
 
 
19
  public function __construct() {
 
20
  add_action('save_post_tutor_quiz', array($this, 'save_quiz_meta'));
21
 
22
  add_action('wp_ajax_tutor_load_quiz_builder_modal', array($this, 'tutor_load_quiz_builder_modal'));
@@ -59,6 +71,19 @@ class Quiz {
59
  * Frontend Stuff
60
  */
61
  add_action('wp_ajax_tutor_render_quiz_content', array($this, 'tutor_render_quiz_content'));
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  }
63
 
64
  public function tutor_instructor_feedback(){
@@ -70,6 +95,8 @@ class Quiz {
70
  if ($attempt_id && tutils()->can_user_manage('attempt', $attempt_id)) {
71
  update_post_meta($attempt_id, 'instructor_feedback', $feedback);
72
  do_action('tutor_quiz/attempt/submitted/feedback', $attempt_id);
 
 
73
  }
74
  }
75
 
@@ -534,7 +561,7 @@ class Quiz {
534
 
535
  $topic_id = sanitize_text_field($_POST['topic_id']);
536
  $quiz_title = sanitize_text_field($_POST['quiz_title']);
537
- $quiz_description = sanitize_text_field($_POST['quiz_description']);
538
  $next_order_id = tutor_utils()->get_next_course_content_order_id($topic_id);
539
 
540
  if(!tutils()->can_user_manage('topic', $topic_id)) {
@@ -625,7 +652,7 @@ class Quiz {
625
  $quiz_id = sanitize_text_field($_POST['quiz_id']);
626
  $topic_id = sanitize_text_field($_POST['topic_id']);
627
  $quiz_title = sanitize_text_field($_POST['quiz_title']);
628
- $quiz_description = sanitize_text_field($_POST['quiz_description']);
629
 
630
  if(!tutils()->can_user_manage('quiz', $quiz_id)) {
631
  wp_send_json_error( array('message'=>__('Access Denied', 'tutor')) );
@@ -734,7 +761,7 @@ class Quiz {
734
  }
735
 
736
  $question_title = sanitize_text_field($question['question_title']);
737
- $question_description = sanitize_text_field($question['question_description']);
738
  $question_type = sanitize_text_field($question['question_type']);
739
  $question_mark = sanitize_text_field($question['question_mark']);
740
 
16
 
17
  class Quiz {
18
 
19
+ private $allowed_attributes = array(
20
+ 'src' => array(),
21
+ 'style' => array(),
22
+ 'class' => array(),
23
+ 'id' => array(),
24
+ 'href' => array(),
25
+ 'alt' => array(),
26
+ 'title' => array() );
27
+
28
+ private $allowed_html = array( 'img', 'b', 'i', 'br', 'a' );
29
+
30
  public function __construct() {
31
+
32
  add_action('save_post_tutor_quiz', array($this, 'save_quiz_meta'));
33
 
34
  add_action('wp_ajax_tutor_load_quiz_builder_modal', array($this, 'tutor_load_quiz_builder_modal'));
71
  * Frontend Stuff
72
  */
73
  add_action('wp_ajax_tutor_render_quiz_content', array($this, 'tutor_render_quiz_content'));
74
+
75
+ $this->prepare_allowed_html();
76
+ }
77
+
78
+ private function prepare_allowed_html() {
79
+
80
+ $allowed = array();
81
+
82
+ foreach($this->allowed_html as $tag) {
83
+ $allowed[$tag] = $this->allowed_attributes;
84
+ }
85
+
86
+ $this->allowed_html = $allowed;
87
  }
88
 
89
  public function tutor_instructor_feedback(){
95
  if ($attempt_id && tutils()->can_user_manage('attempt', $attempt_id)) {
96
  update_post_meta($attempt_id, 'instructor_feedback', $feedback);
97
  do_action('tutor_quiz/attempt/submitted/feedback', $attempt_id);
98
+
99
+ wp_send_json_success( );
100
  }
101
  }
102
 
561
 
562
  $topic_id = sanitize_text_field($_POST['topic_id']);
563
  $quiz_title = sanitize_text_field($_POST['quiz_title']);
564
+ $quiz_description = wp_kses( $_POST['quiz_description'], $this->allowed_html );
565
  $next_order_id = tutor_utils()->get_next_course_content_order_id($topic_id);
566
 
567
  if(!tutils()->can_user_manage('topic', $topic_id)) {
652
  $quiz_id = sanitize_text_field($_POST['quiz_id']);
653
  $topic_id = sanitize_text_field($_POST['topic_id']);
654
  $quiz_title = sanitize_text_field($_POST['quiz_title']);
655
+ $quiz_description = wp_kses( $_POST['quiz_description'], $this->allowed_html );
656
 
657
  if(!tutils()->can_user_manage('quiz', $quiz_id)) {
658
  wp_send_json_error( array('message'=>__('Access Denied', 'tutor')) );
761
  }
762
 
763
  $question_title = sanitize_text_field($question['question_title']);
764
+ $question_description = wp_kses( $question['question_description'], $this->allowed_html ); // sanitize_text_field($question['question_description']);
765
  $question_type = sanitize_text_field($question['question_type']);
766
  $question_mark = sanitize_text_field($question['question_mark']);
767
 
classes/Tutor_List_Table.php CHANGED
@@ -325,7 +325,7 @@ class Tutor_List_Table {
325
  */
326
  public function search_box( $text, $input_id ) {
327
  if ( empty( $_REQUEST['s'] ) && !$this->has_items() )
328
- return;
329
 
330
  $input_id = $input_id . '-search-input';
331
 
@@ -346,6 +346,71 @@ class Tutor_List_Table {
346
  <?php
347
  }
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  /**
350
  * Get an associative array ( id => link ) with the list
351
  * of views available on this table.
325
  */
326
  public function search_box( $text, $input_id ) {
327
  if ( empty( $_REQUEST['s'] ) && !$this->has_items() )
328
+ return;
329
 
330
  $input_id = $input_id . '-search-input';
331
 
346
  <?php
347
  }
348
 
349
+ /**
350
+ * @since 1.8.0
351
+ * get course list
352
+ * @param $selected | optional
353
+ */
354
+ public function course_dropdown($selected = ''){
355
+ $courses = (current_user_can('administrator')) ? tutils()->get_courses() : tutils()->get_courses_by_instructor();
356
+ $markup = '
357
+ <div class="alignright">
358
+ <label>'.__('Course', 'tutor-pro').'</label>
359
+ <select class="tutor-assignment-course-sorting">
360
+ <option value="0">'.__('All','tutor').'</option>
361
+ OPTIONS_PLACEHOLDER
362
+ </select>
363
+ </div>
364
+ ';
365
+ $options = '';
366
+ foreach($courses as $course){
367
+ $options .= '<option value="'.$course->ID.'" '.selected($selected,$course->ID,false).'> '.$course->post_title.' </option>';
368
+ }
369
+
370
+ $content = str_replace('OPTIONS_PLACEHOLDER', $options, $markup);
371
+ echo $content;
372
+ }
373
+
374
+ /**
375
+ * @since 1.8.0
376
+ * get sort by param
377
+ * @param $selected | optional
378
+ */
379
+
380
+ public function sorting_order($selected='DESC'){
381
+ $orders = ['DESC','ASC'];
382
+ $markup = '
383
+ <div class="alignright">
384
+ <label>'.__('Sort By', 'tutor').'</label>
385
+ <select class="tutor-assignment-order-sorting">
386
+ OPTION_PLACEHOLDER
387
+ </select>
388
+ </div>
389
+ ';
390
+ $options = '';
391
+ foreach($orders as $order){
392
+ $options .= '<option value="'.$order.'" '.selected($selected,$order,false).'> '.$order.' </option>';
393
+ }
394
+ $content = str_replace('OPTION_PLACEHOLDER', $options, $markup);
395
+ echo $content;
396
+ }
397
+ /**
398
+ * @since 1.8.0
399
+ * get sort by param
400
+ * @param $selected | optional
401
+ */
402
+
403
+ public function sorting_date($selected = ''){
404
+ $markup = '
405
+ <div class="alignright assignment-date-box">
406
+ <label>'.__('Date', 'tutor').'</label>
407
+ <input type="" id="tutor_assignment_calender" class=" tutor-assignment-date-sorting" value="'.$selected.'">
408
+ <i class="tutor-icon-calendar"></i>
409
+ </div>
410
+ ';
411
+ echo $markup;
412
+ }
413
+
414
  /**
415
  * Get an associative array ( id => link ) with the list
416
  * of views available on this table.
classes/Tutor_Setup.php CHANGED
@@ -562,6 +562,7 @@ if ( ! defined( 'ABSPATH' ) )
562
 
563
 
564
  <form id="tutor-setup-form" method="post">
 
565
  <input type="hidden" name="action" value="setup_action">
566
  <?php $course_marketplace = tutor_utils()->get_option('enable_course_marketplace'); ?>
567
  <input type="hidden" name="enable_course_marketplace" class="enable_course_marketplace_data" value="<?php echo ($course_marketplace ? 1 : 0); ?>">
562
 
563
 
564
  <form id="tutor-setup-form" method="post">
565
+ <?php wp_nonce_field( tutor()->nonce_action, tutor()->nonce ); ?>
566
  <input type="hidden" name="action" value="setup_action">
567
  <?php $course_marketplace = tutor_utils()->get_option('enable_course_marketplace'); ?>
568
  <input type="hidden" name="enable_course_marketplace" class="enable_course_marketplace_data" value="<?php echo ($course_marketplace ? 1 : 0); ?>">
classes/Utils.php CHANGED
@@ -5052,29 +5052,57 @@ class Utils {
5052
  $instructor_id = $this->get_user_id($instructor_id);
5053
  $course_ids = tutor_utils()->get_assigned_courses_ids_by_instructors($instructor_id);
5054
 
5055
- //$new_course_ids = tutils()->get_courses_by_instructor();
5056
-
5057
- //die($this->print_view($course_ids));
5058
-
5059
  $in_course_ids = implode("','", $course_ids);
5060
 
5061
- $count = (int) $wpdb->get_var("SELECT COUNT(ID) FROM {$wpdb->postmeta} post_meta
5062
- INNER JOIN {$wpdb->posts} assignment ON post_meta.post_id = assignment.ID AND post_meta.meta_key = '_tutor_course_id_for_assignments'
5063
- where post_type = 'tutor_assignments' AND post_meta.meta_value IN('$in_course_ids') ORDER BY ID DESC ");
5064
-
5065
- $pagination_query = '';
5066
  if ($this->count($filter_data)) {
5067
  extract( $filter_data );
5068
 
 
 
 
 
 
 
 
 
 
5069
  if ( ! empty( $per_page ) ) {
5070
  $offset = (int) ! empty( $offset ) ? $offset : 0;
5071
  $pagination_query = " LIMIT {$offset}, {$per_page} ";
5072
  }
5073
  }
5074
 
5075
- $query = $wpdb->get_results("SELECT * FROM {$wpdb->postmeta} post_meta
5076
- INNER JOIN {$wpdb->posts} assignment ON post_meta.post_id = assignment.ID AND post_meta.meta_key = '_tutor_course_id_for_assignments'
5077
- where post_type = 'tutor_assignments' AND post_meta.meta_value IN('$in_course_ids') ORDER BY ID DESC {$pagination_query} ");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5078
 
5079
  return (object) array('count' => $count, 'results' => $query);
5080
  }
@@ -5812,6 +5840,7 @@ class Utils {
5812
  break;
5813
 
5814
  case 'topic' :
 
5815
  $course_id = $wpdb->get_var($wpdb->prepare(
5816
  "SELECT post_parent
5817
  FROM {$wpdb->posts}
@@ -5920,4 +5949,32 @@ class Utils {
5920
 
5921
  return false;
5922
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5923
  }
5052
  $instructor_id = $this->get_user_id($instructor_id);
5053
  $course_ids = tutor_utils()->get_assigned_courses_ids_by_instructors($instructor_id);
5054
 
 
 
 
 
5055
  $in_course_ids = implode("','", $course_ids);
5056
 
5057
+ $pagination_query = $date_query = '';
5058
+ $sort_query = 'ORDER BY ID DESC';
 
 
 
5059
  if ($this->count($filter_data)) {
5060
  extract( $filter_data );
5061
 
5062
+ if ( ! empty( $course_id ) ) {
5063
+ $in_course_ids = $course_id;
5064
+ }
5065
+ if ( ! empty( $date_filter ) ) {
5066
+ $date_query = " AND DATE(post_date) = '{$date_filter}'";
5067
+ }
5068
+ if ( ! empty( $order_filter ) ) {
5069
+ $sort_query = " ORDER BY ID {$order_filter} ";
5070
+ }
5071
  if ( ! empty( $per_page ) ) {
5072
  $offset = (int) ! empty( $offset ) ? $offset : 0;
5073
  $pagination_query = " LIMIT {$offset}, {$per_page} ";
5074
  }
5075
  }
5076
 
5077
+ $count = (int) $wpdb->get_var(
5078
+ "SELECT
5079
+ Count(ID)
5080
+ FROM
5081
+ {$wpdb -> postmeta} post_meta
5082
+ INNER JOIN {$wpdb -> posts} assignment ON post_meta.post_id = assignment.id
5083
+ AND post_meta.meta_key = '_tutor_course_id_for_assignments'
5084
+ WHERE
5085
+ post_type = 'tutor_assignments'
5086
+ AND post_meta.meta_value IN('$in_course_ids')
5087
+ {$date_query}
5088
+ "
5089
+ );
5090
+
5091
+ $query = $wpdb->get_results(
5092
+ "SELECT
5093
+ *
5094
+ FROM
5095
+ {$wpdb -> postmeta} post_meta
5096
+ INNER JOIN {$wpdb -> posts} assignment ON post_meta.post_id = assignment.id
5097
+ AND post_meta.meta_key = '_tutor_course_id_for_assignments'
5098
+ WHERE
5099
+ post_type = 'tutor_assignments'
5100
+ AND post_meta.meta_value IN('$in_course_ids')
5101
+ {$date_query}
5102
+ {$sort_query}
5103
+ {$pagination_query}
5104
+ "
5105
+ );
5106
 
5107
  return (object) array('count' => $count, 'results' => $query);
5108
  }
5840
  break;
5841
 
5842
  case 'topic' :
5843
+ case 'announcement' :
5844
  $course_id = $wpdb->get_var($wpdb->prepare(
5845
  "SELECT post_parent
5846
  FROM {$wpdb->posts}
5949
 
5950
  return false;
5951
  }
5952
+
5953
+
5954
+ /**
5955
+ * @return date
5956
+ *
5957
+ * @since v1.8.0
5958
+ *
5959
+ * Return the assignment deadline date based on duration and assignment creation date
5960
+ */
5961
+
5962
+ public function get_assignment_deadline_date($assignment_id, $format=null, $fallback=null) {
5963
+
5964
+ !$format ? $format='j F, Y, g:i a' : 0;
5965
+
5966
+ $value = $this->get_assignment_option($assignment_id, 'time_duration.value');
5967
+ $time = $this->get_assignment_option($assignment_id, 'time_duration.time');
5968
+
5969
+ if(!$value) {
5970
+ return $fallback;
5971
+ }
5972
+
5973
+ $publish_date = get_post_field( 'post_date', $assignment_id );
5974
+
5975
+ $date = date_create( $publish_date );
5976
+ date_add( $date, date_interval_create_from_date_string($value . ' ' . $time) );
5977
+
5978
+ return date_format($date, $format);
5979
+ }
5980
  }
languages/tutor.pot CHANGED
@@ -117,11 +117,11 @@ msgstr ""
117
  msgid "Tags"
118
  msgstr ""
119
 
120
- #: classes/Admin.php:60, classes/Admin.php:60, classes/Course.php:427, classes/Options.php:557, classes/Quiz_Attempts_List.php:110, templates/student-public-profile.php:103, views/pages/students.php:8
121
  msgid "Students"
122
  msgstr ""
123
 
124
- #: classes/Admin.php:63, classes/Admin.php:63, classes/Course.php:125, classes/Course.php:204, classes/Options.php:518, views/pages/instructors.php:18
125
  msgid "Instructors"
126
  msgstr ""
127
 
@@ -189,7 +189,7 @@ msgstr ""
189
  msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
190
  msgstr ""
191
 
192
- #: classes/Ajax.php:62, classes/Ajax.php:112, classes/Ajax.php:176, classes/Ajax.php:234, classes/Ajax.php:287, classes/Ajax.php:329, classes/Ajax.php:350, classes/Course.php:367, classes/Course.php:402, classes/Course.php:608, classes/Course.php:659, classes/Course.php:696, classes/Course.php:709, classes/Instructor.php:244, classes/Lesson.php:110, classes/Lesson.php:149, classes/Lesson.php:211, classes/Quiz.php:103, classes/Quiz.php:414, classes/Quiz.php:451, classes/Quiz.php:541, classes/Quiz.php:587, classes/Quiz.php:631, classes/Quiz.php:670, classes/Quiz.php:693, classes/Quiz.php:789, classes/Quiz.php:812, classes/Quiz.php:833, classes/Quiz.php:944, classes/Quiz.php:989, classes/Quiz.php:1067, classes/Quiz.php:1127, classes/Quiz.php:1149, classes/Q_and_A.php:71, templates/dashboard/registration.php:11
193
  msgid "Access Denied"
194
  msgstr ""
195
 
@@ -245,23 +245,23 @@ msgstr ""
245
  msgid "Announcement update failed"
246
  msgstr ""
247
 
248
- #: classes/Ajax.php:458
249
  msgid "Course name required"
250
  msgstr ""
251
 
252
- #: classes/Ajax.php:463
253
  msgid "Announcement title required"
254
  msgstr ""
255
 
256
- #: classes/Ajax.php:467
257
  msgid "Announcement summary required"
258
  msgstr ""
259
 
260
- #: classes/Ajax.php:524
261
  msgid "Announcement delete failed"
262
  msgstr ""
263
 
264
- #: classes/Ajax.php:518
265
  msgid "Announcement deleted successfully"
266
  msgstr ""
267
 
@@ -269,71 +269,71 @@ msgstr ""
269
  msgid "Are you sure? it can not be undone."
270
  msgstr ""
271
 
272
- #: classes/Assets.php:95
273
  msgid "Assignment answer can not be empty"
274
  msgstr ""
275
 
276
- #: classes/Course.php:121, classes/Course.php:203
277
  msgid "Course Builder"
278
  msgstr ""
279
 
280
- #: classes/Course.php:122, classes/Course.php:205
281
  msgid "Additional Data"
282
  msgstr ""
283
 
284
- #: classes/Course.php:123, classes/Course.php:202
285
  msgid "Video"
286
  msgstr ""
287
 
288
- #: classes/Course.php:132, classes/Course.php:1253, views/options/options_generator.php:2
289
  msgid "Tutor Settings"
290
  msgstr ""
291
 
292
- #: classes/Course.php:412
293
  msgid "Topic has been updated"
294
  msgstr ""
295
 
296
- #: classes/Course.php:426, classes/Options.php:423, classes/Post_types.php:172
297
  msgid "Lessons"
298
  msgstr ""
299
 
300
- #: classes/Course.php:428, templates/course-filter/filters.php:73, templates/dashboard/earning/statement.php:30
301
  msgid "Price"
302
  msgstr ""
303
 
304
- #: classes/Course.php:508
305
  msgid "Please Sign In first"
306
  msgstr ""
307
 
308
- #: classes/Course.php:556, classes/Lesson.php:303
309
  msgid "Please Sign-In"
310
  msgstr ""
311
 
312
- #: classes/Course.php:641
313
  msgid "<p>No instructor available or you have already added maximum instructors</p>"
314
  msgstr ""
315
 
316
- #: classes/Course.php:646
317
  msgid "To add unlimited multiple instructors in your course, get %sTutor LMS Pro%s"
318
  msgstr ""
319
 
320
- #: classes/Course.php:1088
321
  msgid "complete all lessons to mark this course as complete"
322
  msgstr ""
323
 
324
- #: classes/Course.php:1125
325
  msgid "You have to pass %s quizzes to complete this course."
326
  msgstr ""
327
 
328
- #: classes/Course.php:1232
329
  msgid "Make This Course Public"
330
  msgstr ""
331
 
332
- #: classes/Course.php:1234
333
  msgid "No enrollment required."
334
  msgstr ""
335
 
336
- #: classes/Course.php:1242
337
  msgid "Disable Q&A"
338
  msgstr ""
339
 
@@ -358,7 +358,7 @@ msgid "Enable"
358
  msgstr ""
359
 
360
  #: classes/Course_Settings_Tabs.php:47
361
- msgid "Number of maximum students can enroll in this course, set zero for no limits"
362
  msgstr ""
363
 
364
  #: classes/Course_Widget.php:22
@@ -609,7 +609,7 @@ msgstr ""
609
  msgid "Couldn't create lesson."
610
  msgstr ""
611
 
612
- #: classes/Lesson.php:264, classes/Options.php:207, classes/Question_Answers_List.php:72, classes/Quiz_Attempts_List.php:112, classes/Tutor_Setup.php:555, templates/student-public-profile.php:98, templates/dashboard/question-answer.php:27, templates/shortcode/tutor-instructor.php:27, views/pages/view_attempt.php:73, templates/dashboard/announcements/details.php:19, templates/dashboard/assignments/review.php:37, templates/dashboard/earning/statement.php:13, templates/single/quiz/top.php:27
613
  msgid "Course"
614
  msgstr ""
615
 
@@ -661,7 +661,7 @@ msgstr ""
661
  msgid "Price Type"
662
  msgstr ""
663
 
664
- #: classes/Options.php:102, classes/Utils.php:5492
665
  msgid "Dashboard Page"
666
  msgstr ""
667
 
@@ -1169,7 +1169,7 @@ msgstr ""
1169
  msgid "Allow multiple instructors to upload their courses."
1170
  msgstr ""
1171
 
1172
- #: classes/Options.php:533, classes/Utils.php:5493
1173
  msgid "Instructor Registration Page"
1174
  msgstr ""
1175
 
@@ -1197,7 +1197,7 @@ msgstr ""
1197
  msgid "Student Profile settings"
1198
  msgstr ""
1199
 
1200
- #: classes/Options.php:565, classes/Utils.php:5494
1201
  msgid "Student Registration Page"
1202
  msgstr ""
1203
 
@@ -1221,7 +1221,7 @@ msgstr ""
1221
  msgid "Completed courses will be shown on student profiles. <br/> For example, you can see this link-"
1222
  msgstr ""
1223
 
1224
- #: classes/Options.php:589, classes/Options.php:597, classes/Tutor_Setup.php:484, templates/dashboard/earning/chart-body.php:17, templates/dashboard/earning/statement.php:14, templates/dashboard/earning/statements.php:135
1225
  msgid "Earning"
1226
  msgstr ""
1227
 
@@ -1410,7 +1410,7 @@ msgstr ""
1410
  msgid "View Course"
1411
  msgstr ""
1412
 
1413
- #: classes/Post_types.php:49, templates/student-public-profile.php:98, templates/student-public-profile.php:159, templates/dashboard/announcements.php:89, templates/dashboard/purchase_history.php:21, templates/shortcode/tutor-instructor.php:27, views/pages/announcements.php:59, templates/single/course/instructors.php:72
1414
  msgid "Courses"
1415
  msgstr ""
1416
 
@@ -1770,55 +1770,55 @@ msgstr ""
1770
  msgid "Preview course"
1771
  msgstr ""
1772
 
1773
- #: classes/Question_Answers_List.php:70, classes/Quiz.php:702, templates/dashboard/question-answer.php:25, views/pages/view_attempt.php:192, templates/dashboard/my-quiz-attempts/attempts-details.php:211, templates/dashboard/quiz-attempts/quiz-reviews.php:227
1774
  msgid "Question"
1775
  msgstr ""
1776
 
1777
- #: classes/Question_Answers_List.php:71, templates/student-public-profile.php:103, templates/dashboard/question-answer.php:26, templates/dashboard/quiz-attempts.php:32, templates/dashboard/assignments/submitted.php:26
1778
  msgid "Student"
1779
  msgstr ""
1780
 
1781
- #: classes/Question_Answers_List.php:73, classes/Quiz.php:1015, templates/dashboard/question-answer.php:28, views/modal/question_form.php:150, views/pages/answer.php:11, templates/dashboard/question-answer/answers.php:13
1782
  msgid "Answer"
1783
  msgstr ""
1784
 
1785
- #: classes/Quiz.php:433
1786
  msgid "Quiz has been timeout already"
1787
  msgstr ""
1788
 
1789
- #: classes/Quiz.php:566, classes/Quiz.php:649, views/metabox/course-contents.php:98, views/metabox/course-contents.php:190
1790
  msgid "QUIZ"
1791
  msgstr ""
1792
 
1793
- #: classes/Quiz.php:772
1794
  msgid "Please make sure you have added more than one option and saved them"
1795
  msgstr ""
1796
 
1797
- #: classes/Quiz.php:768
1798
  msgid "Please select the correct answer"
1799
  msgstr ""
1800
 
1801
- #: classes/Quiz.php:881, views/modal/question_answer_form.php:21
1802
  msgid "True"
1803
  msgstr ""
1804
 
1805
- #: classes/Quiz.php:888, views/modal/question_answer_form.php:25
1806
  msgid "False"
1807
  msgstr ""
1808
 
1809
- #: classes/Quiz.php:999
1810
  msgid "Answer options &amp; mark correct"
1811
  msgstr ""
1812
 
1813
- #: classes/Quiz.php:1002
1814
  msgid "Make sure you’re saving the answers in the right order. Students will have to match this order exactly."
1815
  msgstr ""
1816
 
1817
- #: classes/Quiz.php:1037, classes/Quiz.php:1031, views/modal/question_form.php:174, views/modal/question_form.php:167, views/pages/view_attempt.php:342, templates/dashboard/quiz-attempts/quiz-reviews.php:394
1818
  msgid "Mark as correct"
1819
  msgstr ""
1820
 
1821
- #: classes/Quiz.php:1175
1822
  msgid "Access Denied."
1823
  msgstr ""
1824
 
@@ -1830,11 +1830,11 @@ msgstr ""
1830
  msgid " ago"
1831
  msgstr ""
1832
 
1833
- #: classes/Quiz_Attempts_List.php:95, templates/dashboard/my-quiz-attempts.php:83, templates/dashboard/quiz-attempts.php:96, views/pages/view_attempt.php:101, templates/dashboard/my-quiz-attempts/attempts-details.php:172, templates/dashboard/quiz-attempts/quiz-reviews.php:159, templates/single/quiz/previous-attempts.php:75
1834
  msgid "Fail"
1835
  msgstr ""
1836
 
1837
- #: classes/Quiz_Attempts_List.php:93, templates/dashboard/my-quiz-attempts.php:83, templates/dashboard/quiz-attempts.php:96, views/pages/view_attempt.php:99, templates/dashboard/my-quiz-attempts/attempts-details.php:170, templates/dashboard/quiz-attempts/quiz-reviews.php:157, templates/single/quiz/previous-attempts.php:75
1838
  msgid "Pass"
1839
  msgstr ""
1840
 
@@ -1938,7 +1938,19 @@ msgstr ""
1938
  msgid "Add Product"
1939
  msgstr ""
1940
 
1941
- #: classes/Tutor_List_Table.php:439
 
 
 
 
 
 
 
 
 
 
 
 
1942
  msgid "Bulk Actions"
1943
  msgstr ""
1944
 
@@ -2150,119 +2162,119 @@ msgstr ""
2150
  msgid "Finish"
2151
  msgstr ""
2152
 
2153
- #: classes/Tutor_Setup.php:578
2154
  msgid "Congratulations, you’re all set!"
2155
  msgstr ""
2156
 
2157
- #: classes/Tutor_Setup.php:579
2158
  msgid "Tutor LMS is up and running on your website! If you really want to become a Tutor LMS genius, read our <a target=\"_blank\" href=\"https://docs.themeum.com/tutor-lms/\">documentation</a> that covers everything!"
2159
  msgstr ""
2160
 
2161
- #: classes/Tutor_Setup.php:580
2162
  msgid "If you need further assistance, please don’t hesitate to contact us via our <a target=\"_blank\" href=\"https://www.themeum.com/contact-us/\">contact form.</a>"
2163
  msgstr ""
2164
 
2165
- #: classes/Tutor_Setup.php:583
2166
  msgid "CREATE A NEW COURSE"
2167
  msgstr ""
2168
 
2169
- #: classes/Tutor_Setup.php:584
2170
  msgid "EXPLORE ADDONS"
2171
  msgstr ""
2172
 
2173
- #: classes/Tutor_Setup.php:607, classes/Tutor_Setup.php:718, templates/shortcode/tutor-instructor.php:45
2174
  msgid "Previous"
2175
  msgstr ""
2176
 
2177
- #: classes/Tutor_Setup.php:611
2178
  msgid "Skip This Step"
2179
  msgstr ""
2180
 
2181
- #: classes/Tutor_Setup.php:615, classes/Tutor_Setup.php:722, templates/shortcode/tutor-instructor.php:46, views/modal/add_quiz.php:68, views/modal/add_quiz.php:85, views/modal/edit_quiz.php:126
2182
  msgid "Next"
2183
  msgstr ""
2184
 
2185
- #: classes/Tutor_Setup.php:633
2186
  msgid "Hello %s, welcome to Tutor LMS! Thank you for choosing us."
2187
  msgstr ""
2188
 
2189
- #: classes/Tutor_Setup.php:639, classes/Tutor_Setup.php:640
2190
  msgid "A Powerful, Smart, and Scalable LMS Solution"
2191
  msgstr ""
2192
 
2193
- #: classes/Tutor_Setup.php:641
2194
  msgid "From individual instructors to vast eLearning platforms, Tutor LMS grows with you to create your ideal vision of an LMS website."
2195
  msgstr ""
2196
 
2197
- #: classes/Tutor_Setup.php:644, classes/Tutor_Setup.php:645
2198
  msgid "Extensive Course Builder"
2199
  msgstr ""
2200
 
2201
- #: classes/Tutor_Setup.php:646
2202
  msgid "Tutor LMS comes with a state-of-the-art frontend course builder. Construct rich and resourceful courses with ease."
2203
  msgstr ""
2204
 
2205
- #: classes/Tutor_Setup.php:649, classes/Tutor_Setup.php:650
2206
  msgid "Advanced Quiz Creator"
2207
  msgstr ""
2208
 
2209
- #: classes/Tutor_Setup.php:651
2210
  msgid "Build interactive quizzes with the vast selection of question types and verify the learning of your students."
2211
  msgstr ""
2212
 
2213
- #: classes/Tutor_Setup.php:654, classes/Tutor_Setup.php:655
2214
  msgid "Freedom With eCommerce"
2215
  msgstr ""
2216
 
2217
- #: classes/Tutor_Setup.php:656
2218
  msgid "Select an eCommerce plugin and sell courses any way you like and use any payment gateway you want!"
2219
  msgstr ""
2220
 
2221
- #: classes/Tutor_Setup.php:659, classes/Tutor_Setup.php:660
2222
  msgid "Reports and Analytics"
2223
  msgstr ""
2224
 
2225
- #: classes/Tutor_Setup.php:661
2226
  msgid "Track what type of courses sell the most! Gain insights on user purchases, manage reviews and track quiz attempts."
2227
  msgstr ""
2228
 
2229
- #: classes/Tutor_Setup.php:668
2230
  msgid "Let’s Start"
2231
  msgstr ""
2232
 
2233
- #: classes/Tutor_Setup.php:674
2234
  msgid "I already know, skip this!"
2235
  msgstr ""
2236
 
2237
- #: classes/Tutor_Setup.php:688
2238
  msgid "Let’s get the platform up and running"
2239
  msgstr ""
2240
 
2241
- #: classes/Tutor_Setup.php:689
2242
  msgid "Pick a category for your LMS platform. You can always update this later."
2243
  msgstr ""
2244
 
2245
- #: classes/Tutor_Setup.php:697
2246
  msgid "Individual"
2247
  msgstr ""
2248
 
2249
- #: classes/Tutor_Setup.php:698
2250
  msgid "I want to start my solo journey as an educator and spread my knowledge."
2251
  msgstr ""
2252
 
2253
- #: classes/Tutor_Setup.php:707
2254
  msgid "Marketplace"
2255
  msgstr ""
2256
 
2257
- #: classes/Tutor_Setup.php:708
2258
  msgid "I want to create an eLearning platform to let anyone earn by teaching online."
2259
  msgstr ""
2260
 
2261
- #: classes/Tutor_Setup.php:729
2262
  msgid "Not sure. Let’s go to the next step."
2263
  msgstr ""
2264
 
2265
- #: classes/Tutor_Setup.php:746
2266
  msgid "Tutor &rsaquo; Setup Wizard"
2267
  msgstr ""
2268
 
@@ -2430,31 +2442,31 @@ msgstr ""
2430
  msgid "Linkedin URL"
2431
  msgstr ""
2432
 
2433
- #: classes/Utils.php:5457
2434
  msgid "Not Taken"
2435
  msgstr ""
2436
 
2437
- #: classes/Utils.php:5455
2438
  msgid "In Progress"
2439
  msgstr ""
2440
 
2441
- #: classes/Utils.php:5451
2442
  msgid "Completed"
2443
  msgstr ""
2444
 
2445
- #: classes/Utils.php:5632, templates/dashboard/my-profile.php:34, templates/dashboard/registration.php:40, templates/dashboard/registration.php:43, views/pages/add_new_instructor.php:29, views/pages/add_new_instructor.php:35, templates/dashboard/instructor/registration.php:32, templates/dashboard/instructor/registration.php:35, templates/dashboard/settings/profile.php:95, templates/dashboard/settings/profile.php:97
2446
  msgid "First Name"
2447
  msgstr ""
2448
 
2449
- #: classes/Utils.php:5633, templates/dashboard/my-profile.php:42, templates/dashboard/registration.php:50, templates/dashboard/registration.php:53, views/pages/add_new_instructor.php:43, views/pages/add_new_instructor.php:49, templates/dashboard/instructor/registration.php:42, templates/dashboard/instructor/registration.php:45, templates/dashboard/settings/profile.php:104, templates/dashboard/settings/profile.php:106
2450
  msgid "Last Name"
2451
  msgstr ""
2452
 
2453
- #: classes/Utils.php:5634
2454
  msgid "Profile Photo"
2455
  msgstr ""
2456
 
2457
- #: classes/Utils.php:5635
2458
  msgid "Withdraw Method"
2459
  msgstr ""
2460
 
@@ -2542,7 +2554,7 @@ msgstr ""
2542
  msgid "Rejected"
2543
  msgstr ""
2544
 
2545
- #: classes/Withdraw_Requests_List.php:61, templates/dashboard/announcements.php:164, templates/dashboard/my-courses.php:78, templates/dashboard/question-answer.php:40, views/pages/announcements.php:142, templates/dashboard/announcements/details.php:32, templates/dashboard/settings/profile.php:67, views/options/field-types/media.php:29
2546
  msgid "Delete"
2547
  msgstr ""
2548
 
@@ -2773,7 +2785,7 @@ msgstr ""
2773
  msgid "Biography"
2774
  msgstr ""
2775
 
2776
- #: templates/course-filter/filters.php:9, templates/dashboard/create-course.php:140, templates/loop/course-continue.php:19, templates/loop/course-in-cart.php:20, templates/loop/course-price-edd.php:20, templates/loop/course-price-woocommerce.php:19, templates/loop/course-price.php:19, views/metabox/course-add-edd-product-metabox.php:59, views/metabox/course-add-product-metabox.php:66, templates/single/course/wc-price-html.php:23
2777
  msgid "Free"
2778
  msgstr ""
2779
 
@@ -2801,66 +2813,54 @@ msgstr ""
2801
  msgid "Add New Announcement"
2802
  msgstr ""
2803
 
2804
- #: templates/dashboard/announcements.php:93, views/pages/announcements.php:68
2805
- msgid "All"
2806
- msgstr ""
2807
-
2808
- #: templates/dashboard/announcements.php:102, views/pages/announcements.php:77, templates/dashboard/announcements/create.php:29, templates/dashboard/announcements/update.php:30
2809
  msgid "No course found"
2810
  msgstr ""
2811
 
2812
- #: templates/dashboard/announcements.php:108, views/pages/announcements.php:84
2813
- msgid "Sort By"
2814
- msgstr ""
2815
-
2816
- #: templates/dashboard/announcements.php:110
2817
  msgid "ASC"
2818
  msgstr ""
2819
 
2820
- #: templates/dashboard/announcements.php:111
2821
  msgid "DESC"
2822
  msgstr ""
2823
 
2824
- #: templates/dashboard/announcements.php:116, templates/dashboard/announcements.php:126, templates/dashboard/purchase_history.php:24, views/pages/announcements.php:94, views/pages/announcements.php:113
2825
- msgid "Date"
2826
- msgstr ""
2827
-
2828
- #: templates/dashboard/announcements.php:175, views/pages/announcements.php:152
2829
  msgid "Announcements not found"
2830
  msgstr ""
2831
 
2832
- #: templates/dashboard/announcements.php:152, templates/dashboard/my-quiz-attempts.php:87, templates/dashboard/quiz-attempts.php:100, templates/single/quiz/previous-attempts.php:79
2833
  msgid "Details"
2834
  msgstr ""
2835
 
2836
- #: templates/dashboard/announcements.php:160, templates/dashboard/my-courses.php:75, views/pages/announcements.php:139, templates/dashboard/announcements/details.php:33
2837
  msgid "Edit"
2838
  msgstr ""
2839
 
2840
- #: templates/dashboard/assignments.php:72, templates/dashboard/assignments/course.php:51
 
 
 
 
2841
  msgid "No assignment available"
2842
  msgstr ""
2843
 
2844
- #: templates/dashboard/assignments.php:28, templates/dashboard/dashboard.php:82, templates/dashboard/assignments/course.php:19
2845
  msgid "Course Name"
2846
  msgstr ""
2847
 
2848
- #: templates/dashboard/assignments.php:29, templates/dashboard/assignments/course.php:20, templates/dashboard/assignments/submitted.php:29
2849
- msgid "Total Mark"
2850
  msgstr ""
2851
 
2852
- #: templates/dashboard/assignments.php:30, templates/dashboard/assignments/course.php:21
2853
- msgid "Total Submit"
2854
  msgstr ""
2855
 
2856
- #: templates/dashboard/assignments.php:47, templates/dashboard/reviews.php:51, templates/dashboard/assignments/course.php:38, templates/dashboard/reviews/received-reviews.php:56
2857
  msgid "Course: "
2858
  msgstr ""
2859
 
2860
- #: templates/dashboard/assignments.php:51, templates/dashboard/assignments/course.php:42
2861
- msgid "View Coures"
2862
- msgstr ""
2863
-
2864
  #: templates/dashboard/create-course.php:36, views/modal/edit_quiz.php:253, views/modal/edit_quiz.php:340
2865
  msgid "Save"
2866
  msgstr ""
@@ -2869,11 +2869,11 @@ msgstr ""
2869
  msgid "Preview"
2870
  msgstr ""
2871
 
2872
- #: templates/dashboard/create-course.php:50, templates/dashboard/create-course.php:195
2873
  msgid "Submit for Review"
2874
  msgstr ""
2875
 
2876
- #: templates/dashboard/create-course.php:46, templates/dashboard/create-course.php:193
2877
  msgid "Publish Course"
2878
  msgstr ""
2879
 
@@ -2881,79 +2881,83 @@ msgstr ""
2881
  msgid "Exit"
2882
  msgstr ""
2883
 
2884
- #: templates/dashboard/create-course.php:72, templates/dashboard/my-quiz-attempts.php:27, templates/dashboard/quiz-attempts.php:31, templates/dashboard/earning/statements.php:134, templates/single/quiz/previous-attempts.php:16
 
 
 
 
2885
  msgid "Course Info"
2886
  msgstr ""
2887
 
2888
- #: templates/dashboard/create-course.php:78
2889
  msgid "Course Title"
2890
  msgstr ""
2891
 
2892
- #: templates/dashboard/create-course.php:80
2893
  msgid "ex. Learn photoshop CS6 from scratch"
2894
  msgstr ""
2895
 
2896
- #: templates/dashboard/create-course.php:86, views/modal/question_form.php:113, templates/single/assignment/content.php:134, templates/single/course/course-content.php:26
2897
  msgid "Description"
2898
  msgstr ""
2899
 
2900
- #: templates/dashboard/create-course.php:104
2901
  msgid "Choose a category"
2902
  msgstr ""
2903
 
2904
- #: templates/dashboard/create-course.php:124
2905
  msgid "Course Price"
2906
  msgstr ""
2907
 
2908
- #: templates/dashboard/create-course.php:133
2909
  msgid "Set course price"
2910
  msgstr ""
2911
 
2912
- #: templates/dashboard/create-course.php:150
2913
  msgid "Course Thumbnail"
2914
  msgstr ""
2915
 
2916
- #: templates/dashboard/create-course.php:173
2917
  msgid "Important Guideline: %1$s 700x430 pixels %2$s %3$s File Support: %1$s jpg, .jpeg,. gif, or .png %2$s no text on the image."
2918
  msgstr ""
2919
 
2920
- #: templates/dashboard/create-course.php:175, views/metabox/video-metabox.php:106, views/modal/question_answer_edit_form.php:214, views/modal/question_answer_edit_form.php:177, views/modal/question_answer_edit_form.php:124, views/modal/question_answer_edit_form.php:34, views/modal/question_answer_form.php:230, views/modal/question_answer_form.php:201, views/modal/question_answer_form.php:157, views/modal/question_answer_form.php:48
2921
  msgid "Upload Image"
2922
  msgstr ""
2923
 
2924
- #: templates/dashboard/create-course.php:191
2925
  msgid "Save course as draft"
2926
  msgstr ""
2927
 
2928
- #: templates/dashboard/create-course.php:205
2929
  msgid "Course Upload Tips"
2930
  msgstr ""
2931
 
2932
- #: templates/dashboard/create-course.php:207
2933
  msgid "Set the Course Price option or make it free."
2934
  msgstr ""
2935
 
2936
- #: templates/dashboard/create-course.php:208
2937
  msgid "Standard size for the course thumbnail is 700x430."
2938
  msgstr ""
2939
 
2940
- #: templates/dashboard/create-course.php:209
2941
  msgid "Video section controls the course overview video."
2942
  msgstr ""
2943
 
2944
- #: templates/dashboard/create-course.php:210
2945
  msgid "Course Builder is where you create & organize a course."
2946
  msgstr ""
2947
 
2948
- #: templates/dashboard/create-course.php:211
2949
  msgid "Add Topics in the Course Builder section to create lessons, quizzes, and assignments."
2950
  msgstr ""
2951
 
2952
- #: templates/dashboard/create-course.php:212
2953
  msgid "Prerequisites refers to the fundamental courses to complete before taking this particular course."
2954
  msgstr ""
2955
 
2956
- #: templates/dashboard/create-course.php:213
2957
  msgid "Information from the Additional Data section shows up on the course single page."
2958
  msgstr ""
2959
 
@@ -3065,7 +3069,7 @@ msgstr ""
3065
  msgid "Not Found"
3066
  msgstr ""
3067
 
3068
- #: templates/dashboard/my-courses.php:91, templates/dashboard/reviews.php:35, templates/dashboard/assignments/review.php:17, templates/dashboard/reviews/received-reviews.php:77
3069
  msgid "Sorry, but you are looking for something that isn't here."
3070
  msgstr ""
3071
 
@@ -3133,11 +3137,11 @@ msgstr ""
3133
  msgid "Incorrect Answer"
3134
  msgstr ""
3135
 
3136
- #: templates/dashboard/my-quiz-attempts.php:30, templates/dashboard/my-quiz-attempts/attempts-details.php:121, templates/dashboard/quiz-attempts/quiz-reviews.php:108, templates/single/quiz/previous-attempts.php:19
3137
  msgid "Earned Marks"
3138
  msgstr ""
3139
 
3140
- #: templates/dashboard/my-quiz-attempts.php:31, templates/dashboard/quiz-attempts.php:36, views/pages/view_attempt.php:87, templates/dashboard/assignments/submitted.php:30, templates/single/quiz/previous-attempts.php:20
3141
  msgid "Result"
3142
  msgstr ""
3143
 
@@ -3317,206 +3321,6 @@ msgstr ""
3317
  msgid "Thanks for reading."
3318
  msgstr ""
3319
 
3320
- #: templates/email/to_admin_course_updated.php:9, templates/email/to_admin_new_course_published.php:9, templates/email/to_admin_new_course_submitted_for_review.php:9, templates/email/to_admin_new_instructor_signup.php:9, templates/email/to_admin_new_student_signup.php:9, templates/email/to_instructor_student_submitted_assignment.php:9, templates/email/to_student_announcement_updated.php:9, templates/email/to_student_assignment_evaluate.php:9, templates/email/to_student_course_enrolled.php:9, templates/email/to_student_feedback_submitted_for_quiz.php:9, templates/email/to_student_new_announcement_posted.php:9, templates/email/to_student_question_answered.php:9, templates/email/to_student_rate_course_and_instructor.php:9, templates/email/to_student_remove_from_course.php:9
3321
- msgid "Hi,"
3322
- msgstr ""
3323
-
3324
- #: templates/email/to_admin_course_updated.php:12
3325
- msgid "Instructor <strong>{instructor_name}</strong> has updated {course_name} on <strong>{site_name}</strong>"
3326
- msgstr ""
3327
-
3328
- #: templates/email/to_admin_course_updated.php:15
3329
- msgid "Course Link: {course_url}"
3330
- msgstr ""
3331
-
3332
- #: templates/email/to_admin_course_updated.php:17, templates/email/to_admin_new_course_published.php:18, templates/email/to_admin_new_course_submitted_for_review.php:18, templates/email/to_instructor_student_submitted_assignment.php:22
3333
- msgid "Reply to this email to communicate with the instructor."
3334
- msgstr ""
3335
-
3336
- #: templates/email/to_admin_new_course_published.php:11
3337
- msgid "A new course has been published by <strong>{instructor_name}</strong> on your site <strong>{site_name}</strong>"
3338
- msgstr ""
3339
-
3340
- #: templates/email/to_admin_new_course_published.php:13, templates/email/to_admin_new_course_submitted_for_review.php:13
3341
- msgid "Course name - <strong>{course_name}</strong>"
3342
- msgstr ""
3343
-
3344
- #: templates/email/to_admin_new_course_published.php:15, templates/email/to_admin_new_course_submitted_for_review.php:15
3345
- msgid "View the course - {course_url}"
3346
- msgstr ""
3347
-
3348
- #: templates/email/to_admin_new_course_submitted_for_review.php:11
3349
- msgid "A new course has been created by <strong>{instructor_name}</strong> on your site <strong>{site_name}</strong> and waiting for approval."
3350
- msgstr ""
3351
-
3352
- #: templates/email/to_admin_new_instructor_signup.php:11
3353
- msgid "A new instructor has signed up to your site <strong>{site_name}</strong>"
3354
- msgstr ""
3355
-
3356
- #: templates/email/to_admin_new_student_signup.php:11
3357
- msgid "A new student has signed up to your site <strong>{site_name}</strong>"
3358
- msgstr ""
3359
-
3360
- #: templates/email/to_admin_new_withdrawal_request.php:10
3361
- msgid "{instructor_username} has submitted a new withdrawal request."
3362
- msgstr ""
3363
-
3364
- #: templates/email/to_instructor_asked_question_by_student.php:9, templates/email/to_instructor_become_application_approved.php:10, templates/email/to_instructor_become_application_received.php:9, templates/email/to_instructor_become_application_rejected.php:9, templates/email/to_instructor_course_completed.php:9, templates/email/to_instructor_course_enrolled.php:9, templates/email/to_instructor_lesson_completed.php:9, templates/email/to_instructor_withdrawal_request_approved.php:9, templates/email/to_instructor_withdrawal_request_received.php:9, templates/email/to_instructor_withdrawal_request_rejected.php:9
3365
- msgid "Dear {instructor_username},"
3366
- msgstr ""
3367
-
3368
- #: templates/email/to_instructor_asked_question_by_student.php:12
3369
- msgid "{student_username} asked a question on <strong>{course_name}</strong> at <strong>{enroll_time}</strong>. The reply URL is: <strong>{course_url}</strong>. You will find the question below."
3370
- msgstr ""
3371
-
3372
- #: templates/email/to_instructor_become_application_approved.php:9
3373
- msgid "Congrats!"
3374
- msgstr ""
3375
-
3376
- #: templates/email/to_instructor_become_application_approved.php:13
3377
- msgid "You are now an instructor for the <b>{site_name}</b> team. Go ahead and start creating your first course today!"
3378
- msgstr ""
3379
-
3380
- #: templates/email/to_instructor_become_application_received.php:12
3381
- msgid "Your application for becoming an instructor has been received. Please hold tight as we review your application. You will receive a notification about your status as soon as possible."
3382
- msgstr ""
3383
-
3384
- #: templates/email/to_instructor_become_application_rejected.php:12
3385
- msgid "Unfortunately, your instructor application has been rejected. Please contact the site administrator for further information."
3386
- msgstr ""
3387
-
3388
- #: templates/email/to_instructor_course_completed.php:12
3389
- msgid "{student_username} has recently completed <strong>{course_name}</strong> at <strong>{completion_time}</strong>. The completed course URL is: <strong>{course_url}</strong>."
3390
- msgstr ""
3391
-
3392
- #: templates/email/to_instructor_course_enrolled.php:12
3393
- msgid "{student_username} has enrolled on <strong>{course_name}</strong> at <strong>{enroll_time}</strong>. The enrolled course URL is: <strong>{course_url}</strong>."
3394
- msgstr ""
3395
-
3396
- #: templates/email/to_instructor_lesson_completed.php:12
3397
- msgid "<strong>{student_username}</strong> has recently completed the lesson <strong>{lesson_name}</strong> of <strong>{course_name}</strong> at <strong>{completion_time}</strong>. The completed lesson URL is: <strong>{lesson_url}</strong>."
3398
- msgstr ""
3399
-
3400
- #: templates/email/to_instructor_quiz_completed.php:9
3401
- msgid "Hi {instructor_username},"
3402
- msgstr ""
3403
-
3404
- #: templates/email/to_instructor_quiz_completed.php:12
3405
- msgid "<strong>{username}</strong> just submitted answers for <strong>{quiz_name}</strong> in course <strong>{course_name}</strong> at <strong>{submission_time}</strong>. You can review it from: <strong>{quiz_review_url}</strong>."
3406
- msgstr ""
3407
-
3408
- #: templates/email/to_instructor_student_submitted_assignment.php:11
3409
- msgid "You have received a submission for an assignment."
3410
- msgstr ""
3411
-
3412
- #: templates/email/to_instructor_student_submitted_assignment.php:13
3413
- msgid "Student Name - <strong>{student_name}</strong>"
3414
- msgstr ""
3415
-
3416
- #: templates/email/to_instructor_student_submitted_assignment.php:15
3417
- msgid "Course Name - <strong>{course_name}</strong>"
3418
- msgstr ""
3419
-
3420
- #: templates/email/to_instructor_student_submitted_assignment.php:17
3421
- msgid "Assignment Name - <strong>{assignment_name}</strong>"
3422
- msgstr ""
3423
-
3424
- #: templates/email/to_instructor_student_submitted_assignment.php:19
3425
- msgid "Review Submission - {review_link}"
3426
- msgstr ""
3427
-
3428
- #: templates/email/to_instructor_withdrawal_request_approved.php:12
3429
- msgid "Your withdrawal request has been approved. Please check the transaction notification on your connected withdrawal method."
3430
- msgstr ""
3431
-
3432
- #: templates/email/to_instructor_withdrawal_request_rejected.php:12
3433
- msgid "Unfortunately, your withdrawal request has been rejected. Please contact the site admins directly for further information."
3434
- msgstr ""
3435
-
3436
- #: templates/email/to_student_announcement_updated.php:11
3437
- msgid "The instructor updated announcement on course - <strong>{course_name}</strong>"
3438
- msgstr ""
3439
-
3440
- #: templates/email/to_student_assignment_evaluate.php:10
3441
- msgid "The grade has been submitted for the assignment <strong>{assignment_name}</strong> for the course <strong>{course_name}</strong>"
3442
- msgstr ""
3443
-
3444
- #: templates/email/to_student_assignment_evaluate.php:12
3445
- msgid "Your score: <strong>{assignemnt_score}</strong>"
3446
- msgstr ""
3447
-
3448
- #: templates/email/to_student_assignment_evaluate.php:14
3449
- msgid "Instructor Comment: {assignment_comment}"
3450
- msgstr ""
3451
-
3452
- #: templates/email/to_student_course_completed.php:9, templates/email/to_student_new_lqa_published.php:9
3453
- msgid "Dear {student_username},"
3454
- msgstr ""
3455
-
3456
- #: templates/email/to_student_course_completed.php:12
3457
- msgid "Thank you for completing <strong>{course_name}</strong> on <strong>{completion_time}</strong>. This message is to confirm that you have successfully completed the mentioned course. For future access, the course will be available on <strong>{course_url}</strong>."
3458
- msgstr ""
3459
-
3460
- #: templates/email/to_student_course_enrolled.php:11
3461
- msgid "Welcome to the course <strong>{course_name}</strong> at {site_url}. You can start learning from here-"
3462
- msgstr ""
3463
-
3464
- #: templates/email/to_student_feedback_submitted_for_quiz.php:11
3465
- msgid "The instructor has submitted the marks for the quiz <strong>{quiz_name}</strong> in the course <strong>{course_name}</strong>. You have got- <strong>{earned_marks}</strong>"
3466
- msgstr ""
3467
-
3468
- #: templates/email/to_student_feedback_submitted_for_quiz.php:13
3469
- msgid "Instructor feedback: {instructor_feedback}"
3470
- msgstr ""
3471
-
3472
- #: templates/email/to_student_feedback_submitted_for_quiz.php:16
3473
- msgid "You may reply to this email to communicate with the instructor."
3474
- msgstr ""
3475
-
3476
- #: templates/email/to_student_new_announcement_posted.php:11
3477
- msgid "The instructor posted a new announcement on course - <strong>{course_name}</strong>"
3478
- msgstr ""
3479
-
3480
- #: templates/email/to_student_new_lqa_published.php:12
3481
- msgid "A new {lqa_type} has been published for the course <b>{course_title}</b> called <b>{lqa_title}</b>. Go ahead and get started today!"
3482
- msgstr ""
3483
-
3484
- #: templates/email/to_student_question_answered.php:11
3485
- msgid "The instructor has answered your question on the course- <strong>{course_name}</strong>. Here is the answer-"
3486
- msgstr ""
3487
-
3488
- #: templates/email/to_student_question_answered.php:16
3489
- msgid "You can continue the discussion here - {course_url}"
3490
- msgstr ""
3491
-
3492
- #: templates/email/to_student_quiz_completed.php:9
3493
- msgid "Dear {username},"
3494
- msgstr ""
3495
-
3496
- #: templates/email/to_student_quiz_completed.php:12
3497
- msgid "Thank you for submitting your answers for <strong>{quiz_name}</strong> in course <strong>{course_name}</strong> at <strong>{submission_time}</strong>. This message is to confirm that we have received your answers. You can access this quiz on: <strong>{quiz_url}</strong>."
3498
- msgstr ""
3499
-
3500
- #: templates/email/to_student_rate_course_and_instructor.php:11
3501
- msgid "Congratulations on finishing the course <strong>{course_name}</strong>. We hope that you had a great experience on our platform. We would really appreciate it if you can post a review on the course and the instructor. Your valuable feedback would help us improve the content on our site and improve the learning experience."
3502
- msgstr ""
3503
-
3504
- #: templates/email/to_student_rate_course_and_instructor.php:14
3505
- msgid "Here is the link to post a review on the course- {course_url}"
3506
- msgstr ""
3507
-
3508
- #: templates/email/to_student_rate_course_and_instructor.php:16
3509
- msgid "Here is the link to post a review for the instructor- {instructor_url}"
3510
- msgstr ""
3511
-
3512
- #: templates/email/to_student_remove_from_course.php:11
3513
- msgid "This is to notify you that the instructor has removed you from the course - <strong>{course_name}</strong>"
3514
- msgstr ""
3515
-
3516
- #: templates/email/to_student_remove_from_course.php:15
3517
- msgid "Regards"
3518
- msgstr ""
3519
-
3520
  #: templates/global/course-archive-filter-bar.php:17
3521
  msgid "%s Courses"
3522
  msgstr ""
@@ -3843,7 +3647,7 @@ msgstr ""
3843
  msgid "Quiz Info"
3844
  msgstr ""
3845
 
3846
- #: views/modal/add_quiz.php:18, views/modal/edit_quiz.php:28, templates/dashboard/my-quiz-attempts/attempts-details.php:116, templates/dashboard/quiz-attempts/quiz-reviews.php:103, templates/single/quiz/top.php:38
3847
  msgid "Questions"
3848
  msgstr ""
3849
 
@@ -3859,7 +3663,7 @@ msgstr ""
3859
  msgid "Save &amp; Next"
3860
  msgstr ""
3861
 
3862
- #: views/modal/add_quiz.php:66, views/modal/add_quiz.php:83, views/modal/edit_quiz.php:125, views/modal/edit_quiz.php:252, views/modal/edit_quiz.php:339, views/modal/question_form.php:11
3863
  msgid "Back"
3864
  msgstr ""
3865
 
@@ -3891,7 +3695,23 @@ msgstr ""
3891
  msgid "Update Feature Image"
3892
  msgstr ""
3893
 
 
 
 
 
 
 
 
 
 
 
 
 
3894
  #: views/modal/edit-lesson.php:75
 
 
 
 
3895
  msgid "Update Lesson"
3896
  msgstr ""
3897
 
@@ -3967,6 +3787,10 @@ msgstr ""
3967
  msgid "This amount of question will be available for students to answer, and question will comes randomly from all available questions belongs with a quiz, if this amount greater than available question, then all questions will be available for a student to answer."
3968
  msgstr ""
3969
 
 
 
 
 
3970
  #: views/modal/edit_quiz.php:270
3971
  msgid "Quiz Auto Start"
3972
  msgstr ""
@@ -4167,6 +3991,10 @@ msgstr ""
4167
  msgid "Save &amp; Continue"
4168
  msgstr ""
4169
 
 
 
 
 
4170
  #: views/options/options_generator.php:84
4171
  msgid "Save Settings"
4172
  msgstr ""
@@ -4315,23 +4143,23 @@ msgstr ""
4315
  msgid "Manually reviewed at: "
4316
  msgstr ""
4317
 
4318
- #: views/pages/view_attempt.php:185, templates/dashboard/my-quiz-attempts/attempts-details.php:204, templates/dashboard/quiz-attempts/quiz-reviews.php:220
4319
  msgid "Quiz Overview"
4320
  msgstr ""
4321
 
4322
- #: views/pages/view_attempt.php:190, templates/dashboard/earning/statement.php:55, templates/dashboard/earning/statement.php:60, templates/dashboard/earning/statements.php:178, templates/dashboard/earning/statements.php:185, templates/dashboard/my-quiz-attempts/attempts-details.php:210, templates/dashboard/quiz-attempts/quiz-reviews.php:226
4323
  msgid "Type"
4324
  msgstr ""
4325
 
4326
- #: views/pages/view_attempt.php:191, templates/dashboard/my-quiz-attempts/attempts-details.php:209, templates/dashboard/quiz-attempts/quiz-reviews.php:225
4327
  msgid "No."
4328
  msgstr ""
4329
 
4330
- #: views/pages/view_attempt.php:193, templates/dashboard/my-quiz-attempts/attempts-details.php:212, templates/dashboard/quiz-attempts/quiz-reviews.php:228
4331
  msgid "Given Answers"
4332
  msgstr ""
4333
 
4334
- #: views/pages/view_attempt.php:194, templates/dashboard/my-quiz-attempts/attempts-details.php:214, templates/dashboard/quiz-attempts/quiz-reviews.php:230
4335
  msgid "Correct/Incorrect"
4336
  msgstr ""
4337
 
@@ -4339,15 +4167,15 @@ msgstr ""
4339
  msgid "Manual Review"
4340
  msgstr ""
4341
 
4342
- #: views/pages/view_attempt.php:331, views/pages/view_attempt.php:324, templates/dashboard/my-quiz-attempts/attempts-details.php:120, templates/dashboard/my-quiz-attempts/attempts-details.php:374, templates/dashboard/my-quiz-attempts/attempts-details.php:369, templates/dashboard/quiz-attempts/quiz-reviews.php:107, templates/dashboard/quiz-attempts/quiz-reviews.php:387, templates/dashboard/quiz-attempts/quiz-reviews.php:382
4343
  msgid "Incorrect"
4344
  msgstr ""
4345
 
4346
- #: views/pages/view_attempt.php:327, views/pages/view_attempt.php:311, templates/dashboard/my-quiz-attempts/attempts-details.php:119, templates/dashboard/my-quiz-attempts/attempts-details.php:365, templates/dashboard/quiz-attempts/quiz-reviews.php:106, templates/dashboard/quiz-attempts/quiz-reviews.php:378
4347
  msgid "Correct"
4348
  msgstr ""
4349
 
4350
- #: views/pages/view_attempt.php:320, templates/dashboard/my-quiz-attempts/attempts-details.php:371, templates/dashboard/quiz-attempts/quiz-reviews.php:384
4351
  msgid "Review Required"
4352
  msgstr ""
4353
 
@@ -4355,88 +4183,96 @@ msgstr ""
4355
  msgid "Mark as In correct"
4356
  msgstr ""
4357
 
4358
- #: views/pages/view_attempt.php:361, templates/dashboard/my-quiz-attempts/attempts-details.php:186, templates/dashboard/quiz-attempts/quiz-reviews.php:173
4359
  msgid "Instructor Feedback"
4360
  msgstr ""
4361
 
4362
- #: templates/dashboard/assignments/review.php:108
 
 
 
 
4363
  msgid "Assignments submission not found or not completed"
4364
  msgstr ""
4365
 
4366
- #: templates/dashboard/assignments/review.php:45
 
 
 
 
4367
  msgid "Assignment Description:"
4368
  msgstr ""
4369
 
4370
- #: templates/dashboard/assignments/review.php:52
4371
  msgid "Attach assignment file(s)"
4372
  msgstr ""
4373
 
4374
- #: templates/dashboard/assignments/review.php:75
4375
  msgid "Evaluation"
4376
  msgstr ""
4377
 
4378
- #: templates/dashboard/assignments/review.php:82
4379
- msgid "Your Mark"
4380
  msgstr ""
4381
 
4382
- #: templates/dashboard/assignments/review.php:86
4383
- msgid "Mark this assignment out of %s"
4384
  msgstr ""
4385
 
4386
- #: templates/dashboard/assignments/review.php:91
4387
  msgid "Write a note"
4388
  msgstr ""
4389
 
4390
- #: templates/dashboard/assignments/review.php:95
4391
  msgid "Write a note to students about this submission"
4392
  msgstr ""
4393
 
4394
- #: templates/dashboard/assignments/review.php:101
4395
  msgid "Evaluate this submission"
4396
  msgstr ""
4397
 
4398
- #: templates/dashboard/assignments/submitted.php:15
4399
- msgid "Assignment"
4400
  msgstr ""
4401
 
4402
- #: templates/dashboard/assignments/submitted.php:82
4403
  msgid "No assignment has been submitted yet"
4404
  msgstr ""
4405
 
4406
- #: templates/dashboard/assignments/submitted.php:27
4407
- msgid "Date & Time"
4408
  msgstr ""
4409
 
4410
- #: templates/dashboard/assignments/submitted.php:28
4411
- msgid "Pass Mark"
4412
  msgstr ""
4413
 
4414
- #: templates/dashboard/assignments/submitted.php:31
4415
- msgid "Evaluated"
4416
  msgstr ""
4417
 
4418
- #: templates/dashboard/assignments/submitted.php:46
4419
- msgid "%s Pending %s"
4420
  msgstr ""
4421
 
4422
- #: templates/dashboard/assignments/submitted.php:48
4423
- msgid "%s Pass %s"
4424
  msgstr ""
4425
 
4426
- #: templates/dashboard/assignments/submitted.php:48
4427
- msgid "%s Fail %s"
4428
  msgstr ""
4429
 
4430
- #: templates/dashboard/assignments/submitted.php:62
4431
- msgid "No"
4432
  msgstr ""
4433
 
4434
- #: templates/dashboard/assignments/submitted.php:62
4435
- msgid "Yes"
4436
  msgstr ""
4437
 
4438
- #: templates/dashboard/assignments/submitted.php:65
4439
- msgid "Review this assignment"
4440
  msgstr ""
4441
 
4442
  #: templates/dashboard/earning/earning-report-top-menu.php:12
@@ -4603,35 +4439,35 @@ msgstr ""
4603
  msgid "Back to Attempt List"
4604
  msgstr ""
4605
 
4606
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:108, templates/dashboard/quiz-attempts/quiz-reviews.php:95
4607
  msgid "Quiz:"
4608
  msgstr ""
4609
 
4610
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:109, templates/dashboard/quiz-attempts/quiz-reviews.php:96
4611
  msgid "Course:"
4612
  msgstr ""
4613
 
4614
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:114, templates/dashboard/quiz-attempts/quiz-reviews.php:101
4615
  msgid "#"
4616
  msgstr ""
4617
 
4618
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:115, templates/dashboard/quiz-attempts/quiz-reviews.php:102
4619
  msgid "Attempts Date"
4620
  msgstr ""
4621
 
4622
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:117, templates/dashboard/quiz-attempts/quiz-reviews.php:104
4623
  msgid "Total Marks"
4624
  msgstr ""
4625
 
4626
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:118, templates/dashboard/quiz-attempts/quiz-reviews.php:105
4627
  msgid "Pass Marks"
4628
  msgstr ""
4629
 
4630
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:122, templates/dashboard/quiz-attempts/quiz-reviews.php:109
4631
  msgid "Results"
4632
  msgstr ""
4633
 
4634
- #: templates/dashboard/my-quiz-attempts/attempts-details.php:213, templates/dashboard/quiz-attempts/quiz-reviews.php:229
4635
  msgid "Correct Answers"
4636
  msgstr ""
4637
 
117
  msgid "Tags"
118
  msgstr ""
119
 
120
+ #: classes/Admin.php:60, classes/Admin.php:60, classes/Course.php:433, classes/Options.php:557, classes/Quiz_Attempts_List.php:110, templates/student-public-profile.php:103, views/pages/students.php:8
121
  msgid "Students"
122
  msgstr ""
123
 
124
+ #: classes/Admin.php:63, classes/Admin.php:63, classes/Course.php:130, classes/Course.php:209, classes/Options.php:518, views/pages/instructors.php:18
125
  msgid "Instructors"
126
  msgstr ""
127
 
189
  msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
190
  msgstr ""
191
 
192
+ #: classes/Ajax.php:62, classes/Ajax.php:112, classes/Ajax.php:176, classes/Ajax.php:234, classes/Ajax.php:287, classes/Ajax.php:329, classes/Ajax.php:350, classes/Ajax.php:448, classes/Ajax.php:524, classes/Course.php:373, classes/Course.php:408, classes/Course.php:614, classes/Course.php:665, classes/Course.php:702, classes/Course.php:715, classes/Instructor.php:244, classes/Lesson.php:110, classes/Lesson.php:149, classes/Lesson.php:211, classes/Quiz.php:130, classes/Quiz.php:441, classes/Quiz.php:478, classes/Quiz.php:568, classes/Quiz.php:614, classes/Quiz.php:658, classes/Quiz.php:697, classes/Quiz.php:720, classes/Quiz.php:816, classes/Quiz.php:839, classes/Quiz.php:860, classes/Quiz.php:971, classes/Quiz.php:1016, classes/Quiz.php:1094, classes/Quiz.php:1154, classes/Quiz.php:1176, classes/Q_and_A.php:71, templates/dashboard/registration.php:11
193
  msgid "Access Denied"
194
  msgstr ""
195
 
245
  msgid "Announcement update failed"
246
  msgstr ""
247
 
248
+ #: classes/Ajax.php:466
249
  msgid "Course name required"
250
  msgstr ""
251
 
252
+ #: classes/Ajax.php:471
253
  msgid "Announcement title required"
254
  msgstr ""
255
 
256
+ #: classes/Ajax.php:475
257
  msgid "Announcement summary required"
258
  msgstr ""
259
 
260
+ #: classes/Ajax.php:537
261
  msgid "Announcement delete failed"
262
  msgstr ""
263
 
264
+ #: classes/Ajax.php:531
265
  msgid "Announcement deleted successfully"
266
  msgstr ""
267
 
269
  msgid "Are you sure? it can not be undone."
270
  msgstr ""
271
 
272
+ #: classes/Assets.php:96
273
  msgid "Assignment answer can not be empty"
274
  msgstr ""
275
 
276
+ #: classes/Course.php:126, classes/Course.php:208
277
  msgid "Course Builder"
278
  msgstr ""
279
 
280
+ #: classes/Course.php:127, classes/Course.php:210
281
  msgid "Additional Data"
282
  msgstr ""
283
 
284
+ #: classes/Course.php:128, classes/Course.php:207
285
  msgid "Video"
286
  msgstr ""
287
 
288
+ #: classes/Course.php:137, classes/Course.php:1259, views/options/options_generator.php:2
289
  msgid "Tutor Settings"
290
  msgstr ""
291
 
292
+ #: classes/Course.php:418
293
  msgid "Topic has been updated"
294
  msgstr ""
295
 
296
+ #: classes/Course.php:432, classes/Options.php:423, classes/Post_types.php:172
297
  msgid "Lessons"
298
  msgstr ""
299
 
300
+ #: classes/Course.php:434, templates/course-filter/filters.php:73, templates/dashboard/earning/statement.php:30
301
  msgid "Price"
302
  msgstr ""
303
 
304
+ #: classes/Course.php:514
305
  msgid "Please Sign In first"
306
  msgstr ""
307
 
308
+ #: classes/Course.php:562, classes/Lesson.php:303
309
  msgid "Please Sign-In"
310
  msgstr ""
311
 
312
+ #: classes/Course.php:647
313
  msgid "<p>No instructor available or you have already added maximum instructors</p>"
314
  msgstr ""
315
 
316
+ #: classes/Course.php:652
317
  msgid "To add unlimited multiple instructors in your course, get %sTutor LMS Pro%s"
318
  msgstr ""
319
 
320
+ #: classes/Course.php:1094
321
  msgid "complete all lessons to mark this course as complete"
322
  msgstr ""
323
 
324
+ #: classes/Course.php:1131
325
  msgid "You have to pass %s quizzes to complete this course."
326
  msgstr ""
327
 
328
+ #: classes/Course.php:1238
329
  msgid "Make This Course Public"
330
  msgstr ""
331
 
332
+ #: classes/Course.php:1240
333
  msgid "No enrollment required."
334
  msgstr ""
335
 
336
+ #: classes/Course.php:1248
337
  msgid "Disable Q&A"
338
  msgstr ""
339
 
358
  msgstr ""
359
 
360
  #: classes/Course_Settings_Tabs.php:47
361
+ msgid "Number of students that can enrol in this course. Set 0 for no limits."
362
  msgstr ""
363
 
364
  #: classes/Course_Widget.php:22
609
  msgid "Couldn't create lesson."
610
  msgstr ""
611
 
612
+ #: classes/Lesson.php:264, classes/Options.php:207, classes/Question_Answers_List.php:72, classes/Quiz_Attempts_List.php:112, classes/Tutor_Setup.php:555, templates/student-public-profile.php:98, templates/dashboard/question-answer.php:27, templates/shortcode/tutor-instructor.php:27, views/pages/view_attempt.php:73, templates/dashboard/announcements/details.php:19, templates/dashboard/assignments/review.php:44, templates/dashboard/assignments/submitted.php:30, templates/dashboard/earning/statement.php:13, templates/single/quiz/top.php:27
613
  msgid "Course"
614
  msgstr ""
615
 
661
  msgid "Price Type"
662
  msgstr ""
663
 
664
+ #: classes/Options.php:102, classes/Utils.php:5520
665
  msgid "Dashboard Page"
666
  msgstr ""
667
 
1169
  msgid "Allow multiple instructors to upload their courses."
1170
  msgstr ""
1171
 
1172
+ #: classes/Options.php:533, classes/Utils.php:5521
1173
  msgid "Instructor Registration Page"
1174
  msgstr ""
1175
 
1197
  msgid "Student Profile settings"
1198
  msgstr ""
1199
 
1200
+ #: classes/Options.php:565, classes/Utils.php:5522
1201
  msgid "Student Registration Page"
1202
  msgstr ""
1203
 
1221
  msgid "Completed courses will be shown on student profiles. <br/> For example, you can see this link-"
1222
  msgstr ""
1223
 
1224
+ #: classes/Options.php:589, classes/Options.php:597, classes/Tutor_Setup.php:484, templates/dashboard/earning.php:162, templates/dashboard/earning/chart-body.php:17, templates/dashboard/earning/statement.php:14, templates/dashboard/earning/statements.php:135
1225
  msgid "Earning"
1226
  msgstr ""
1227
 
1410
  msgid "View Course"
1411
  msgstr ""
1412
 
1413
+ #: classes/Post_types.php:49, templates/student-public-profile.php:98, templates/student-public-profile.php:159, templates/dashboard/announcements.php:89, templates/dashboard/assignments.php:34, templates/dashboard/purchase_history.php:21, templates/shortcode/tutor-instructor.php:27, views/pages/announcements.php:59, templates/single/course/instructors.php:72
1414
  msgid "Courses"
1415
  msgstr ""
1416
 
1770
  msgid "Preview course"
1771
  msgstr ""
1772
 
1773
+ #: classes/Question_Answers_List.php:70, classes/Quiz.php:729, templates/dashboard/question-answer.php:25, views/pages/view_attempt.php:192, templates/dashboard/my-quiz-attempts/attempts-details.php:210, templates/dashboard/quiz-attempts/quiz-reviews.php:227
1774
  msgid "Question"
1775
  msgstr ""
1776
 
1777
+ #: classes/Question_Answers_List.php:71, templates/student-public-profile.php:103, templates/dashboard/question-answer.php:26, templates/dashboard/quiz-attempts.php:32, templates/dashboard/assignments/review.php:50, templates/dashboard/assignments/submitted.php:72
1778
  msgid "Student"
1779
  msgstr ""
1780
 
1781
+ #: classes/Question_Answers_List.php:73, classes/Quiz.php:1042, templates/dashboard/question-answer.php:28, views/modal/question_form.php:150, views/pages/answer.php:11, templates/dashboard/question-answer/answers.php:13
1782
  msgid "Answer"
1783
  msgstr ""
1784
 
1785
+ #: classes/Quiz.php:460
1786
  msgid "Quiz has been timeout already"
1787
  msgstr ""
1788
 
1789
+ #: classes/Quiz.php:593, classes/Quiz.php:676, views/metabox/course-contents.php:98, views/metabox/course-contents.php:190
1790
  msgid "QUIZ"
1791
  msgstr ""
1792
 
1793
+ #: classes/Quiz.php:799
1794
  msgid "Please make sure you have added more than one option and saved them"
1795
  msgstr ""
1796
 
1797
+ #: classes/Quiz.php:795
1798
  msgid "Please select the correct answer"
1799
  msgstr ""
1800
 
1801
+ #: classes/Quiz.php:908, views/modal/question_answer_form.php:21
1802
  msgid "True"
1803
  msgstr ""
1804
 
1805
+ #: classes/Quiz.php:915, views/modal/question_answer_form.php:25
1806
  msgid "False"
1807
  msgstr ""
1808
 
1809
+ #: classes/Quiz.php:1026
1810
  msgid "Answer options &amp; mark correct"
1811
  msgstr ""
1812
 
1813
+ #: classes/Quiz.php:1029
1814
  msgid "Make sure you’re saving the answers in the right order. Students will have to match this order exactly."
1815
  msgstr ""
1816
 
1817
+ #: classes/Quiz.php:1064, classes/Quiz.php:1058, views/modal/question_form.php:174, views/modal/question_form.php:167, views/pages/view_attempt.php:342, templates/dashboard/quiz-attempts/quiz-reviews.php:394
1818
  msgid "Mark as correct"
1819
  msgstr ""
1820
 
1821
+ #: classes/Quiz.php:1202
1822
  msgid "Access Denied."
1823
  msgstr ""
1824
 
1830
  msgid " ago"
1831
  msgstr ""
1832
 
1833
+ #: classes/Quiz_Attempts_List.php:95, templates/dashboard/my-quiz-attempts.php:83, templates/dashboard/quiz-attempts.php:96, views/pages/view_attempt.php:101, templates/dashboard/my-quiz-attempts/attempts-details.php:171, templates/dashboard/quiz-attempts/quiz-reviews.php:159, templates/single/quiz/previous-attempts.php:75
1834
  msgid "Fail"
1835
  msgstr ""
1836
 
1837
+ #: classes/Quiz_Attempts_List.php:93, templates/dashboard/my-quiz-attempts.php:83, templates/dashboard/quiz-attempts.php:96, views/pages/view_attempt.php:99, templates/dashboard/my-quiz-attempts/attempts-details.php:169, templates/dashboard/quiz-attempts/quiz-reviews.php:157, templates/single/quiz/previous-attempts.php:75
1838
  msgid "Pass"
1839
  msgstr ""
1840
 
1938
  msgid "Add Product"
1939
  msgstr ""
1940
 
1941
+ #: classes/Tutor_List_Table.php:360, templates/dashboard/announcements.php:93, templates/dashboard/assignments.php:38, views/pages/announcements.php:68
1942
+ msgid "All"
1943
+ msgstr ""
1944
+
1945
+ #: classes/Tutor_List_Table.php:384, templates/dashboard/announcements.php:108, templates/dashboard/assignments.php:52, views/pages/announcements.php:84
1946
+ msgid "Sort By"
1947
+ msgstr ""
1948
+
1949
+ #: classes/Tutor_List_Table.php:406, templates/dashboard/announcements.php:116, templates/dashboard/announcements.php:126, templates/dashboard/purchase_history.php:24, views/pages/announcements.php:94, views/pages/announcements.php:113, templates/dashboard/assignments/submitted.php:71
1950
+ msgid "Date"
1951
+ msgstr ""
1952
+
1953
+ #: classes/Tutor_List_Table.php:504
1954
  msgid "Bulk Actions"
1955
  msgstr ""
1956
 
2162
  msgid "Finish"
2163
  msgstr ""
2164
 
2165
+ #: classes/Tutor_Setup.php:579
2166
  msgid "Congratulations, you’re all set!"
2167
  msgstr ""
2168
 
2169
+ #: classes/Tutor_Setup.php:580
2170
  msgid "Tutor LMS is up and running on your website! If you really want to become a Tutor LMS genius, read our <a target=\"_blank\" href=\"https://docs.themeum.com/tutor-lms/\">documentation</a> that covers everything!"
2171
  msgstr ""
2172
 
2173
+ #: classes/Tutor_Setup.php:581
2174
  msgid "If you need further assistance, please don’t hesitate to contact us via our <a target=\"_blank\" href=\"https://www.themeum.com/contact-us/\">contact form.</a>"
2175
  msgstr ""
2176
 
2177
+ #: classes/Tutor_Setup.php:584
2178
  msgid "CREATE A NEW COURSE"
2179
  msgstr ""
2180
 
2181
+ #: classes/Tutor_Setup.php:585
2182
  msgid "EXPLORE ADDONS"
2183
  msgstr ""
2184
 
2185
+ #: classes/Tutor_Setup.php:608, classes/Tutor_Setup.php:719, templates/shortcode/tutor-instructor.php:45
2186
  msgid "Previous"
2187
  msgstr ""
2188
 
2189
+ #: classes/Tutor_Setup.php:612
2190
  msgid "Skip This Step"
2191
  msgstr ""
2192
 
2193
+ #: classes/Tutor_Setup.php:616, classes/Tutor_Setup.php:723, templates/shortcode/tutor-instructor.php:46, views/modal/add_quiz.php:68, views/modal/add_quiz.php:85, views/modal/edit_quiz.php:126
2194
  msgid "Next"
2195
  msgstr ""
2196
 
2197
+ #: classes/Tutor_Setup.php:634
2198
  msgid "Hello %s, welcome to Tutor LMS! Thank you for choosing us."
2199
  msgstr ""
2200
 
2201
+ #: classes/Tutor_Setup.php:640, classes/Tutor_Setup.php:641
2202
  msgid "A Powerful, Smart, and Scalable LMS Solution"
2203
  msgstr ""
2204
 
2205
+ #: classes/Tutor_Setup.php:642
2206
  msgid "From individual instructors to vast eLearning platforms, Tutor LMS grows with you to create your ideal vision of an LMS website."
2207
  msgstr ""
2208
 
2209
+ #: classes/Tutor_Setup.php:645, classes/Tutor_Setup.php:646
2210
  msgid "Extensive Course Builder"
2211
  msgstr ""
2212
 
2213
+ #: classes/Tutor_Setup.php:647
2214
  msgid "Tutor LMS comes with a state-of-the-art frontend course builder. Construct rich and resourceful courses with ease."
2215
  msgstr ""
2216
 
2217
+ #: classes/Tutor_Setup.php:650, classes/Tutor_Setup.php:651
2218
  msgid "Advanced Quiz Creator"
2219
  msgstr ""
2220
 
2221
+ #: classes/Tutor_Setup.php:652
2222
  msgid "Build interactive quizzes with the vast selection of question types and verify the learning of your students."
2223
  msgstr ""
2224
 
2225
+ #: classes/Tutor_Setup.php:655, classes/Tutor_Setup.php:656
2226
  msgid "Freedom With eCommerce"
2227
  msgstr ""
2228
 
2229
+ #: classes/Tutor_Setup.php:657
2230
  msgid "Select an eCommerce plugin and sell courses any way you like and use any payment gateway you want!"
2231
  msgstr ""
2232
 
2233
+ #: classes/Tutor_Setup.php:660, classes/Tutor_Setup.php:661
2234
  msgid "Reports and Analytics"
2235
  msgstr ""
2236
 
2237
+ #: classes/Tutor_Setup.php:662
2238
  msgid "Track what type of courses sell the most! Gain insights on user purchases, manage reviews and track quiz attempts."
2239
  msgstr ""
2240
 
2241
+ #: classes/Tutor_Setup.php:669
2242
  msgid "Let’s Start"
2243
  msgstr ""
2244
 
2245
+ #: classes/Tutor_Setup.php:675
2246
  msgid "I already know, skip this!"
2247
  msgstr ""
2248
 
2249
+ #: classes/Tutor_Setup.php:689
2250
  msgid "Let’s get the platform up and running"
2251
  msgstr ""
2252
 
2253
+ #: classes/Tutor_Setup.php:690
2254
  msgid "Pick a category for your LMS platform. You can always update this later."
2255
  msgstr ""
2256
 
2257
+ #: classes/Tutor_Setup.php:698
2258
  msgid "Individual"
2259
  msgstr ""
2260
 
2261
+ #: classes/Tutor_Setup.php:699
2262
  msgid "I want to start my solo journey as an educator and spread my knowledge."
2263
  msgstr ""
2264
 
2265
+ #: classes/Tutor_Setup.php:708
2266
  msgid "Marketplace"
2267
  msgstr ""
2268
 
2269
+ #: classes/Tutor_Setup.php:709
2270
  msgid "I want to create an eLearning platform to let anyone earn by teaching online."
2271
  msgstr ""
2272
 
2273
+ #: classes/Tutor_Setup.php:730
2274
  msgid "Not sure. Let’s go to the next step."
2275
  msgstr ""
2276
 
2277
+ #: classes/Tutor_Setup.php:747
2278
  msgid "Tutor &rsaquo; Setup Wizard"
2279
  msgstr ""
2280
 
2442
  msgid "Linkedin URL"
2443
  msgstr ""
2444
 
2445
+ #: classes/Utils.php:5485
2446
  msgid "Not Taken"
2447
  msgstr ""
2448
 
2449
+ #: classes/Utils.php:5483
2450
  msgid "In Progress"
2451
  msgstr ""
2452
 
2453
+ #: classes/Utils.php:5479
2454
  msgid "Completed"
2455
  msgstr ""
2456
 
2457
+ #: classes/Utils.php:5660, templates/dashboard/my-profile.php:34, templates/dashboard/registration.php:40, templates/dashboard/registration.php:43, views/pages/add_new_instructor.php:29, views/pages/add_new_instructor.php:35, templates/dashboard/instructor/registration.php:32, templates/dashboard/instructor/registration.php:35, templates/dashboard/settings/profile.php:95, templates/dashboard/settings/profile.php:97
2458
  msgid "First Name"
2459
  msgstr ""
2460
 
2461
+ #: classes/Utils.php:5661, templates/dashboard/my-profile.php:42, templates/dashboard/registration.php:50, templates/dashboard/registration.php:53, views/pages/add_new_instructor.php:43, views/pages/add_new_instructor.php:49, templates/dashboard/instructor/registration.php:42, templates/dashboard/instructor/registration.php:45, templates/dashboard/settings/profile.php:104, templates/dashboard/settings/profile.php:106
2462
  msgid "Last Name"
2463
  msgstr ""
2464
 
2465
+ #: classes/Utils.php:5662
2466
  msgid "Profile Photo"
2467
  msgstr ""
2468
 
2469
+ #: classes/Utils.php:5663
2470
  msgid "Withdraw Method"
2471
  msgstr ""
2472
 
2554
  msgid "Rejected"
2555
  msgstr ""
2556
 
2557
+ #: classes/Withdraw_Requests_List.php:61, templates/dashboard/announcements.php:160, templates/dashboard/my-courses.php:78, templates/dashboard/question-answer.php:40, views/pages/announcements.php:142, templates/dashboard/announcements/details.php:32, templates/dashboard/settings/profile.php:67, views/options/field-types/media.php:29
2558
  msgid "Delete"
2559
  msgstr ""
2560
 
2785
  msgid "Biography"
2786
  msgstr ""
2787
 
2788
+ #: templates/course-filter/filters.php:9, templates/dashboard/create-course.php:156, templates/loop/course-continue.php:19, templates/loop/course-in-cart.php:20, templates/loop/course-price-edd.php:20, templates/loop/course-price-woocommerce.php:19, templates/loop/course-price.php:19, views/metabox/course-add-edd-product-metabox.php:59, views/metabox/course-add-product-metabox.php:66, templates/single/course/wc-price-html.php:23
2789
  msgid "Free"
2790
  msgstr ""
2791
 
2813
  msgid "Add New Announcement"
2814
  msgstr ""
2815
 
2816
+ #: templates/dashboard/announcements.php:102, templates/dashboard/assignments.php:47, views/pages/announcements.php:77, templates/dashboard/announcements/create.php:29, templates/dashboard/announcements/update.php:30
 
 
 
 
2817
  msgid "No course found"
2818
  msgstr ""
2819
 
2820
+ #: templates/dashboard/announcements.php:110, templates/dashboard/assignments.php:54
 
 
 
 
2821
  msgid "ASC"
2822
  msgstr ""
2823
 
2824
+ #: templates/dashboard/announcements.php:111, templates/dashboard/assignments.php:55
2825
  msgid "DESC"
2826
  msgstr ""
2827
 
2828
+ #: templates/dashboard/announcements.php:171, views/pages/announcements.php:152
 
 
 
 
2829
  msgid "Announcements not found"
2830
  msgstr ""
2831
 
2832
+ #: templates/dashboard/announcements.php:148, templates/dashboard/assignments.php:99, templates/dashboard/my-quiz-attempts.php:87, templates/dashboard/quiz-attempts.php:100, templates/dashboard/assignments/submitted.php:91, templates/single/quiz/previous-attempts.php:79
2833
  msgid "Details"
2834
  msgstr ""
2835
 
2836
+ #: templates/dashboard/announcements.php:156, templates/dashboard/my-courses.php:75, views/pages/announcements.php:139, templates/dashboard/announcements/details.php:33
2837
  msgid "Edit"
2838
  msgstr ""
2839
 
2840
+ #: templates/dashboard/assignments.php:59
2841
+ msgid "Create Date"
2842
+ msgstr ""
2843
+
2844
+ #: templates/dashboard/assignments.php:122
2845
  msgid "No assignment available"
2846
  msgstr ""
2847
 
2848
+ #: templates/dashboard/assignments.php:73, templates/dashboard/dashboard.php:82
2849
  msgid "Course Name"
2850
  msgstr ""
2851
 
2852
+ #: templates/dashboard/assignments.php:74, templates/dashboard/assignments/submitted.php:46, templates/dashboard/assignments/submitted.php:73
2853
+ msgid "Total Points"
2854
  msgstr ""
2855
 
2856
+ #: templates/dashboard/assignments.php:75
2857
+ msgid "Total Submits"
2858
  msgstr ""
2859
 
2860
+ #: templates/dashboard/assignments.php:93, templates/dashboard/reviews.php:51, templates/dashboard/reviews/received-reviews.php:56
2861
  msgid "Course: "
2862
  msgstr ""
2863
 
 
 
 
 
2864
  #: templates/dashboard/create-course.php:36, views/modal/edit_quiz.php:253, views/modal/edit_quiz.php:340
2865
  msgid "Save"
2866
  msgstr ""
2869
  msgid "Preview"
2870
  msgstr ""
2871
 
2872
+ #: templates/dashboard/create-course.php:50, templates/dashboard/create-course.php:211
2873
  msgid "Submit for Review"
2874
  msgstr ""
2875
 
2876
+ #: templates/dashboard/create-course.php:46, templates/dashboard/create-course.php:209
2877
  msgid "Publish Course"
2878
  msgstr ""
2879
 
2881
  msgid "Exit"
2882
  msgstr ""
2883
 
2884
+ #: templates/dashboard/create-course.php:78
2885
+ msgid "Your course has been submitted to the admin. It will be published once it has been reviewed by the admins."
2886
+ msgstr ""
2887
+
2888
+ #: templates/dashboard/create-course.php:88, templates/dashboard/my-quiz-attempts.php:27, templates/dashboard/quiz-attempts.php:31, templates/dashboard/earning/statements.php:134, templates/single/quiz/previous-attempts.php:16
2889
  msgid "Course Info"
2890
  msgstr ""
2891
 
2892
+ #: templates/dashboard/create-course.php:94
2893
  msgid "Course Title"
2894
  msgstr ""
2895
 
2896
+ #: templates/dashboard/create-course.php:96
2897
  msgid "ex. Learn photoshop CS6 from scratch"
2898
  msgstr ""
2899
 
2900
+ #: templates/dashboard/create-course.php:102, views/modal/question_form.php:113, templates/single/assignment/content.php:134, templates/single/course/course-content.php:26
2901
  msgid "Description"
2902
  msgstr ""
2903
 
2904
+ #: templates/dashboard/create-course.php:120
2905
  msgid "Choose a category"
2906
  msgstr ""
2907
 
2908
+ #: templates/dashboard/create-course.php:140
2909
  msgid "Course Price"
2910
  msgstr ""
2911
 
2912
+ #: templates/dashboard/create-course.php:149
2913
  msgid "Set course price"
2914
  msgstr ""
2915
 
2916
+ #: templates/dashboard/create-course.php:166
2917
  msgid "Course Thumbnail"
2918
  msgstr ""
2919
 
2920
+ #: templates/dashboard/create-course.php:189
2921
  msgid "Important Guideline: %1$s 700x430 pixels %2$s %3$s File Support: %1$s jpg, .jpeg,. gif, or .png %2$s no text on the image."
2922
  msgstr ""
2923
 
2924
+ #: templates/dashboard/create-course.php:191, views/metabox/video-metabox.php:106, views/modal/question_answer_edit_form.php:214, views/modal/question_answer_edit_form.php:177, views/modal/question_answer_edit_form.php:124, views/modal/question_answer_edit_form.php:34, views/modal/question_answer_form.php:230, views/modal/question_answer_form.php:201, views/modal/question_answer_form.php:157, views/modal/question_answer_form.php:48
2925
  msgid "Upload Image"
2926
  msgstr ""
2927
 
2928
+ #: templates/dashboard/create-course.php:207
2929
  msgid "Save course as draft"
2930
  msgstr ""
2931
 
2932
+ #: templates/dashboard/create-course.php:221
2933
  msgid "Course Upload Tips"
2934
  msgstr ""
2935
 
2936
+ #: templates/dashboard/create-course.php:223
2937
  msgid "Set the Course Price option or make it free."
2938
  msgstr ""
2939
 
2940
+ #: templates/dashboard/create-course.php:224
2941
  msgid "Standard size for the course thumbnail is 700x430."
2942
  msgstr ""
2943
 
2944
+ #: templates/dashboard/create-course.php:225
2945
  msgid "Video section controls the course overview video."
2946
  msgstr ""
2947
 
2948
+ #: templates/dashboard/create-course.php:226
2949
  msgid "Course Builder is where you create & organize a course."
2950
  msgstr ""
2951
 
2952
+ #: templates/dashboard/create-course.php:227
2953
  msgid "Add Topics in the Course Builder section to create lessons, quizzes, and assignments."
2954
  msgstr ""
2955
 
2956
+ #: templates/dashboard/create-course.php:228
2957
  msgid "Prerequisites refers to the fundamental courses to complete before taking this particular course."
2958
  msgstr ""
2959
 
2960
+ #: templates/dashboard/create-course.php:229
2961
  msgid "Information from the Additional Data section shows up on the course single page."
2962
  msgstr ""
2963
 
3069
  msgid "Not Found"
3070
  msgstr ""
3071
 
3072
+ #: templates/dashboard/my-courses.php:91, templates/dashboard/reviews.php:35, templates/dashboard/assignments/review.php:19, templates/dashboard/reviews/received-reviews.php:77
3073
  msgid "Sorry, but you are looking for something that isn't here."
3074
  msgstr ""
3075
 
3137
  msgid "Incorrect Answer"
3138
  msgstr ""
3139
 
3140
+ #: templates/dashboard/my-quiz-attempts.php:30, templates/dashboard/my-quiz-attempts/attempts-details.php:120, templates/dashboard/quiz-attempts/quiz-reviews.php:108, templates/single/quiz/previous-attempts.php:19
3141
  msgid "Earned Marks"
3142
  msgstr ""
3143
 
3144
+ #: templates/dashboard/my-quiz-attempts.php:31, templates/dashboard/quiz-attempts.php:36, views/pages/view_attempt.php:87, templates/dashboard/assignments/submitted.php:74, templates/single/quiz/previous-attempts.php:20
3145
  msgid "Result"
3146
  msgstr ""
3147
 
3321
  msgid "Thanks for reading."
3322
  msgstr ""
3323
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3324
  #: templates/global/course-archive-filter-bar.php:17
3325
  msgid "%s Courses"
3326
  msgstr ""
3647
  msgid "Quiz Info"
3648
  msgstr ""
3649
 
3650
+ #: views/modal/add_quiz.php:18, views/modal/edit_quiz.php:28, templates/dashboard/my-quiz-attempts/attempts-details.php:115, templates/dashboard/quiz-attempts/quiz-reviews.php:103, templates/single/quiz/top.php:38
3651
  msgid "Questions"
3652
  msgstr ""
3653
 
3663
  msgid "Save &amp; Next"
3664
  msgstr ""
3665
 
3666
+ #: views/modal/add_quiz.php:66, views/modal/add_quiz.php:83, views/modal/edit_quiz.php:125, views/modal/edit_quiz.php:252, views/modal/edit_quiz.php:339, views/modal/question_form.php:11, templates/dashboard/assignments/review.php:34, templates/dashboard/assignments/submitted.php:21
3667
  msgid "Back"
3668
  msgstr ""
3669
 
3695
  msgid "Update Feature Image"
3696
  msgstr ""
3697
 
3698
+ #: views/modal/edit-lesson.php:75, views/modal/edit_quiz.php:253, views/modal/edit_quiz.php:340, views/options/options_generator.php:5, views/pages/view_attempt.php:365
3699
+ msgid "Error"
3700
+ msgstr ""
3701
+
3702
+ #: views/modal/edit-lesson.php:75, views/modal/edit_quiz.php:253, views/modal/edit_quiz.php:340, views/options/options_generator.php:5, views/pages/view_attempt.php:365
3703
+ msgid "Action Failed"
3704
+ msgstr ""
3705
+
3706
+ #: views/modal/edit-lesson.php:75, views/modal/edit_quiz.php:253, views/modal/edit_quiz.php:340, views/options/options_generator.php:5, views/pages/view_attempt.php:365
3707
+ msgid "Success"
3708
+ msgstr ""
3709
+
3710
  #: views/modal/edit-lesson.php:75
3711
+ msgid "Lesson Updated"
3712
+ msgstr ""
3713
+
3714
+ #: views/modal/edit-lesson.php:76
3715
  msgid "Update Lesson"
3716
  msgstr ""
3717
 
3787
  msgid "This amount of question will be available for students to answer, and question will comes randomly from all available questions belongs with a quiz, if this amount greater than available question, then all questions will be available for a student to answer."
3788
  msgstr ""
3789
 
3790
+ #: views/modal/edit_quiz.php:253, views/modal/edit_quiz.php:340
3791
+ msgid "Saved"
3792
+ msgstr ""
3793
+
3794
  #: views/modal/edit_quiz.php:270
3795
  msgid "Quiz Auto Start"
3796
  msgstr ""
3991
  msgid "Save &amp; Continue"
3992
  msgstr ""
3993
 
3994
+ #: views/options/options_generator.php:5
3995
+ msgid "Settings Saved"
3996
+ msgstr ""
3997
+
3998
  #: views/options/options_generator.php:84
3999
  msgid "Save Settings"
4000
  msgstr ""
4143
  msgid "Manually reviewed at: "
4144
  msgstr ""
4145
 
4146
+ #: views/pages/view_attempt.php:185, templates/dashboard/my-quiz-attempts/attempts-details.php:203, templates/dashboard/quiz-attempts/quiz-reviews.php:220
4147
  msgid "Quiz Overview"
4148
  msgstr ""
4149
 
4150
+ #: views/pages/view_attempt.php:190, templates/dashboard/earning/statement.php:55, templates/dashboard/earning/statement.php:60, templates/dashboard/earning/statements.php:178, templates/dashboard/earning/statements.php:185, templates/dashboard/my-quiz-attempts/attempts-details.php:209, templates/dashboard/quiz-attempts/quiz-reviews.php:226
4151
  msgid "Type"
4152
  msgstr ""
4153
 
4154
+ #: views/pages/view_attempt.php:191, templates/dashboard/my-quiz-attempts/attempts-details.php:208, templates/dashboard/quiz-attempts/quiz-reviews.php:225
4155
  msgid "No."
4156
  msgstr ""
4157
 
4158
+ #: views/pages/view_attempt.php:193, templates/dashboard/my-quiz-attempts/attempts-details.php:211, templates/dashboard/quiz-attempts/quiz-reviews.php:228
4159
  msgid "Given Answers"
4160
  msgstr ""
4161
 
4162
+ #: views/pages/view_attempt.php:194, templates/dashboard/my-quiz-attempts/attempts-details.php:213, templates/dashboard/quiz-attempts/quiz-reviews.php:230
4163
  msgid "Correct/Incorrect"
4164
  msgstr ""
4165
 
4167
  msgid "Manual Review"
4168
  msgstr ""
4169
 
4170
+ #: views/pages/view_attempt.php:331, views/pages/view_attempt.php:324, templates/dashboard/my-quiz-attempts/attempts-details.php:119, templates/dashboard/my-quiz-attempts/attempts-details.php:373, templates/dashboard/my-quiz-attempts/attempts-details.php:368, templates/dashboard/quiz-attempts/quiz-reviews.php:107, templates/dashboard/quiz-attempts/quiz-reviews.php:387, templates/dashboard/quiz-attempts/quiz-reviews.php:382
4171
  msgid "Incorrect"
4172
  msgstr ""
4173
 
4174
+ #: views/pages/view_attempt.php:327, views/pages/view_attempt.php:311, templates/dashboard/my-quiz-attempts/attempts-details.php:118, templates/dashboard/my-quiz-attempts/attempts-details.php:364, templates/dashboard/quiz-attempts/quiz-reviews.php:106, templates/dashboard/quiz-attempts/quiz-reviews.php:378
4175
  msgid "Correct"
4176
  msgstr ""
4177
 
4178
+ #: views/pages/view_attempt.php:320, templates/dashboard/my-quiz-attempts/attempts-details.php:370, templates/dashboard/quiz-attempts/quiz-reviews.php:384
4179
  msgid "Review Required"
4180
  msgstr ""
4181
 
4183
  msgid "Mark as In correct"
4184
  msgstr ""
4185
 
4186
+ #: views/pages/view_attempt.php:361, templates/dashboard/my-quiz-attempts/attempts-details.php:185, templates/dashboard/quiz-attempts/quiz-reviews.php:173
4187
  msgid "Instructor Feedback"
4188
  msgstr ""
4189
 
4190
+ #: views/pages/view_attempt.php:365
4191
+ msgid "Updated"
4192
+ msgstr ""
4193
+
4194
+ #: templates/dashboard/assignments/review.php:125
4195
  msgid "Assignments submission not found or not completed"
4196
  msgstr ""
4197
 
4198
+ #: templates/dashboard/assignments/review.php:54
4199
+ msgid "Submitted Date"
4200
+ msgstr ""
4201
+
4202
+ #: templates/dashboard/assignments/review.php:62
4203
  msgid "Assignment Description:"
4204
  msgstr ""
4205
 
4206
+ #: templates/dashboard/assignments/review.php:69
4207
  msgid "Attach assignment file(s)"
4208
  msgstr ""
4209
 
4210
+ #: templates/dashboard/assignments/review.php:92
4211
  msgid "Evaluation"
4212
  msgstr ""
4213
 
4214
+ #: templates/dashboard/assignments/review.php:99
4215
+ msgid "Your Points"
4216
  msgstr ""
4217
 
4218
+ #: templates/dashboard/assignments/review.php:103
4219
+ msgid "Evaluate this assignment out of %s"
4220
  msgstr ""
4221
 
4222
+ #: templates/dashboard/assignments/review.php:108
4223
  msgid "Write a note"
4224
  msgstr ""
4225
 
4226
+ #: templates/dashboard/assignments/review.php:112
4227
  msgid "Write a note to students about this submission"
4228
  msgstr ""
4229
 
4230
+ #: templates/dashboard/assignments/review.php:118
4231
  msgid "Evaluate this submission"
4232
  msgstr ""
4233
 
4234
+ #: templates/dashboard/assignments/submitted.php:17
4235
+ msgid "No Limit"
4236
  msgstr ""
4237
 
4238
+ #: templates/dashboard/assignments/submitted.php:129
4239
  msgid "No assignment has been submitted yet"
4240
  msgstr ""
4241
 
4242
+ #: templates/dashboard/assignments/submitted.php:42
4243
+ msgid "Submission Deadline"
4244
  msgstr ""
4245
 
4246
+ #: templates/dashboard/assignments/submitted.php:50
4247
+ msgid "Pass Points"
4248
  msgstr ""
4249
 
4250
+ #: templates/dashboard/assignments/submitted.php:60
4251
+ msgid "Sort By:"
4252
  msgstr ""
4253
 
4254
+ #: templates/dashboard/assignments/submitted.php:62
4255
+ msgid "Latest"
4256
  msgstr ""
4257
 
4258
+ #: templates/dashboard/assignments/submitted.php:63
4259
+ msgid "Oldest"
4260
  msgstr ""
4261
 
4262
+ #: templates/dashboard/assignments/submitted.php:87
4263
+ msgid "%s Pending %s"
4264
  msgstr ""
4265
 
4266
+ #: templates/dashboard/assignments/submitted.php:88
4267
+ msgid "Evaluate"
4268
  msgstr ""
4269
 
4270
+ #: templates/dashboard/assignments/submitted.php:90
4271
+ msgid "%s Pass %s"
4272
  msgstr ""
4273
 
4274
+ #: templates/dashboard/assignments/submitted.php:90
4275
+ msgid "%s Fail %s"
4276
  msgstr ""
4277
 
4278
  #: templates/dashboard/earning/earning-report-top-menu.php:12
4439
  msgid "Back to Attempt List"
4440
  msgstr ""
4441
 
4442
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:107, templates/dashboard/quiz-attempts/quiz-reviews.php:95
4443
  msgid "Quiz:"
4444
  msgstr ""
4445
 
4446
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:108, templates/dashboard/quiz-attempts/quiz-reviews.php:96
4447
  msgid "Course:"
4448
  msgstr ""
4449
 
4450
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:113, templates/dashboard/quiz-attempts/quiz-reviews.php:101
4451
  msgid "#"
4452
  msgstr ""
4453
 
4454
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:114, templates/dashboard/quiz-attempts/quiz-reviews.php:102
4455
  msgid "Attempts Date"
4456
  msgstr ""
4457
 
4458
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:116, templates/dashboard/quiz-attempts/quiz-reviews.php:104
4459
  msgid "Total Marks"
4460
  msgstr ""
4461
 
4462
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:117, templates/dashboard/quiz-attempts/quiz-reviews.php:105
4463
  msgid "Pass Marks"
4464
  msgstr ""
4465
 
4466
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:121, templates/dashboard/quiz-attempts/quiz-reviews.php:109
4467
  msgid "Results"
4468
  msgstr ""
4469
 
4470
+ #: templates/dashboard/my-quiz-attempts/attempts-details.php:212, templates/dashboard/quiz-attempts/quiz-reviews.php:229
4471
  msgid "Correct Answers"
4472
  msgstr ""
4473
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: lms, course, elearning, education, learning management system
5
  Requires at least: 5.3
6
  Tested up to: 5.6
7
  Requires PHP: 7.0
8
- Stable tag: 1.7.9
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -241,6 +241,24 @@ Tutor enables you to use any third party plugins without facing any compatibilit
241
 
242
  == Changelog ==
243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  = 1.7.9 - January 21, 2021 =
245
 
246
  New: Setting to enable showing instructor name on the certificate
5
  Requires at least: 5.3
6
  Tested up to: 5.6
7
  Requires PHP: 7.0
8
+ Stable tag: 1.8.0
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 
241
 
242
  == Changelog ==
243
 
244
+ = 1.8.0 - February 03, 2021 =
245
+
246
+ New: Search filter in Assignments
247
+ New: Confirmation message while saving data added
248
+ New: Frontend and backend UX for Assignments redesigned
249
+ New: Thank you notice when instructors submit a course for review added
250
+ Update: All the email notification templates moved to Pro version
251
+ Update: HTML tag support in Quiz description added
252
+ Update: Date time column in Student enrolment report added
253
+ Update: User capability check in announcements Ajax action added
254
+ Fix: Redundant or duplicate email issue when student enrolments are changed.
255
+ Fix: Add New Course, Explore Addons buttons issue in Tutor LMS setup wizard
256
+ Fix: Incorrect lesson count (due to trashed course) in the report page
257
+ Fix: Profile and cover photo saving issue in frontend dashboard
258
+ Fix: Graph issue in the Earnings tab in the Report addon
259
+ Fix: Remove item issue in WooCommerce cart page
260
+ Fix: Quiz fails to import issue
261
+
262
  = 1.7.9 - January 21, 2021 =
263
 
264
  New: Setting to enable showing instructor name on the certificate
templates/dashboard/announcements.php CHANGED
@@ -13,13 +13,13 @@ if (!defined('ABSPATH'))
13
  * @version 1.7.9
14
  */
15
  $per_page = 10;
16
- $paged = isset($_GET['current_page']) ? $_GET['current_page'] : 1;
17
 
18
- $order_filter = isset($_GET['order']) ? $_GET['order'] : 'DESC';
19
- $search_filter = isset($_GET['search']) ? $_GET['search'] : '';
20
  //announcement's parent
21
- $course_id = isset($_GET['course-id']) ? $_GET['course-id'] : '';
22
- $date_filter = isset($_GET['date']) ? $_GET['date'] : '';
23
 
24
  $year = date('Y', strtotime($date_filter));
25
  $month = date('m', strtotime($date_filter));
@@ -133,26 +133,22 @@ $notify_checked = tutils()->get_option('email_to_students.new_announcement_poste
133
  <?php
134
  $course = get_post($post->post_parent);
135
  $dateObj = date_create($post->post_date);
136
- $date_format = date_format($dateObj, 'F j, Y, g:i a');
137
  ?>
138
  <tr id="tutor-announcement-tr-<?php echo $post->ID; ?>">
139
- <td class="tutor-announcement-date"><?php echo esc_html($date_format); ?></td>
140
  <td class="tutor-announcement-content-wrap">
141
  <div class="tutor-announcement-content">
142
- <span>
143
- <?php echo esc_html($post->post_title); ?>
144
- </span>
145
- <p>
146
- <?php echo $course ? $course->post_title : ''; ?>
147
- </p>
148
  </div>
149
  <div class="tutor-announcement-buttons">
150
  <li>
151
- <a type="button" course-name="<?php echo esc_attr($course->post_title) ?>" announcement-date="<?php echo esc_attr($date_format) ?>" announcement-title="<?php echo esc_attr($post->post_title); ?>" announcement-summary="<?php echo esc_attr($post->post_content); ?>" course-id="<?php echo esc_attr($post->post_parent); ?>" announcement-id="<?php echo esc_attr($post->ID); ?>" class="tutor-btn bordered-btn tutor-announcement-details">
152
  <?php _e('Details', 'tutor'); ?>
153
- </a>
154
  </li>
155
- <li class="tutor-dropdown ">
156
  <i class="tutor-icon-action"></i>
157
  <ul class="tutor-dropdown-menu">
158
  <li announcement-title="<?php echo $post->post_title; ?>" announcement-summary="<?php echo $post->post_content; ?>" course-id="<?php echo $post->post_parent; ?>" announcement-id="<?php echo $post->ID; ?>" class="tutor-announcement-edit">
13
  * @version 1.7.9
14
  */
15
  $per_page = 10;
16
+ $paged = max(1, tutor_utils()->avalue_dot('current_page', $_GET));
17
 
18
+ $order_filter = isset($_GET['order']) ? sanitize_text_field($_GET['order']) : 'DESC';
19
+ $search_filter = isset($_GET['search']) ? sanitize_text_field($_GET['search']) : '';
20
  //announcement's parent
21
+ $course_id = isset($_GET['course-id']) ? sanitize_text_field($_GET['course-id']) : '';
22
+ $date_filter = isset($_GET['date']) ? sanitize_text_field($_GET['date']) : '';
23
 
24
  $year = date('Y', strtotime($date_filter));
25
  $month = date('m', strtotime($date_filter));
133
  <?php
134
  $course = get_post($post->post_parent);
135
  $dateObj = date_create($post->post_date);
136
+ $date_format = date_format($dateObj, 'j M, Y,<\b\r>h:i a');
137
  ?>
138
  <tr id="tutor-announcement-tr-<?php echo $post->ID; ?>">
139
+ <td class="tutor-announcement-date"><?php echo $date_format; ?></td>
140
  <td class="tutor-announcement-content-wrap">
141
  <div class="tutor-announcement-content">
142
+ <h4><?php echo esc_html($post->post_title); ?></h4>
143
+ <p><?php echo $course ? $course->post_title : ''; ?></p>
 
 
 
 
144
  </div>
145
  <div class="tutor-announcement-buttons">
146
  <li>
147
+ <button type="button" course-name="<?php echo esc_attr($course->post_title) ?>" announcement-date="<?php echo esc_attr($date_format) ?>" announcement-title="<?php echo esc_attr($post->post_title); ?>" announcement-summary="<?php echo esc_attr($post->post_content); ?>" course-id="<?php echo esc_attr($post->post_parent); ?>" announcement-id="<?php echo esc_attr($post->ID); ?>" class="tutor-btn bordered-btn tutor-announcement-details">
148
  <?php _e('Details', 'tutor'); ?>
149
+ </button>
150
  </li>
151
+ <li class="tutor-dropdown">
152
  <i class="tutor-icon-action"></i>
153
  <ul class="tutor-dropdown-menu">
154
  <li announcement-title="<?php echo $post->post_title; ?>" announcement-summary="<?php echo $post->post_content; ?>" course-id="<?php echo $post->post_parent; ?>" announcement-id="<?php echo $post->ID; ?>" class="tutor-announcement-edit">
templates/dashboard/announcements/create.php CHANGED
@@ -34,13 +34,13 @@
34
  <label>
35
  <?php _e('Announcement Title', 'tutor'); ?>
36
  </label>
37
- <input type="text" name="tutor_annoument_title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
38
  </div>
39
  <div class="tutor-form-group">
40
  <label for="tutor_announcement_course">
41
  <?php _e('Summary', 'tutor'); ?>
42
  </label>
43
- <textarea rows="6" type="text" name="tutor_annoument_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
44
  </div>
45
  <?php if ($notify_checked) : ?>
46
  <div class="tutor-form-group">
34
  <label>
35
  <?php _e('Announcement Title', 'tutor'); ?>
36
  </label>
37
+ <input type="text" name="tutor_announcement_title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
38
  </div>
39
  <div class="tutor-form-group">
40
  <label for="tutor_announcement_course">
41
  <?php _e('Summary', 'tutor'); ?>
42
  </label>
43
+ <textarea rows="6" type="text" name="tutor_announcement_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
44
  </div>
45
  <?php if ($notify_checked) : ?>
46
  <div class="tutor-form-group">
templates/dashboard/announcements/update.php CHANGED
@@ -35,13 +35,13 @@
35
  <label>
36
  <?php _e('Announcement Title', 'tutor'); ?>
37
  </label>
38
- <input type="text" name="tutor_annoument_title" id="tutor-announcement-title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
39
  </div>
40
  <div class="tutor-form-group">
41
  <label for="tutor_announcement_course">
42
  <?php _e('Summary', 'tutor'); ?>
43
  </label>
44
- <textarea rows="6" type="text" id="tutor-announcement-summary" name="tutor_annoument_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
45
  </div>
46
  <?php if ($notify_checked) : ?>
47
  <div class="tutor-form-group">
35
  <label>
36
  <?php _e('Announcement Title', 'tutor'); ?>
37
  </label>
38
+ <input type="text" name="tutor_announcement_title" id="tutor-announcement-title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
39
  </div>
40
  <div class="tutor-form-group">
41
  <label for="tutor_announcement_course">
42
  <?php _e('Summary', 'tutor'); ?>
43
  </label>
44
+ <textarea rows="6" type="text" id="tutor-announcement-summary" name="tutor_announcement_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
45
  </div>
46
  <?php if ($notify_checked) : ?>
47
  <div class="tutor-form-group">
templates/dashboard/assignments.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Template for displaying Assignments
4
  *
@@ -13,61 +14,110 @@
13
 
14
  global $wpdb;
15
 
16
- $per_page = 20;
17
- $current_page = max( 1, tutor_utils()->avalue_dot('current_page', $_GET) );
18
- $offset = ($current_page-1)*$per_page;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- $current_user = get_current_user_id();
21
- $assignments = tutor_utils()->get_assignments_by_instructor(null, compact('per_page', 'offset'));
22
 
23
- if($assignments->count){ ?>
24
- <div class="tutor-dashboard-info-table-wrap">
25
- <table class="tutor-dashboard-info-table tutor-dashboard-assignment-table">
26
  <thead>
27
- <tr>
28
- <th><?php _e('Course Name', 'tutor') ?></th>
29
- <th><?php _e('Total Mark', 'tutor') ?></th>
30
- <th><?php _e('Total Submit', 'tutor') ?></th>
31
- <th>&nbsp;</th>
32
- </tr>
33
  </thead>
34
  <tbody>
35
- <?php
36
- foreach ($assignments->results as $item){
37
- $max_mark = tutor_utils()->get_assignment_option($item->ID, 'total_mark');
38
- $course_id = tutor_utils()->get_course_id_by_assignment($item->ID);
39
- $course_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/course');
40
  $submitted_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/submitted');
41
- $comment_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(comment_ID) FROM {$wpdb->comments} WHERE comment_type = 'tutor_assignment' AND comment_post_ID = %d", $item->ID));
42
- // @TODO: assign post_meta is empty if user don't click on update button (http://prntscr.com/oax4t8) but post status is publish
 
 
 
 
43
  ?>
44
- <tr>
45
- <td>
46
- <h5><?php echo $item->post_title ?></h5>
47
- <h5><a href='<?php echo esc_url($course_url.'?course_id='.$course_id) ?>'><?php echo __('Course: ', 'tutor'). get_the_title($course_id); ?> </a></h5>
48
- </td>
49
- <td><?php echo $max_mark ?></td>
50
- <td><?php echo $comment_count ?></td>
51
- <td> <?php echo "<a title='". __('View Coures', 'tutor') ."' href='".esc_url($submitted_url.'?assignment='.$item->ID)."'><i class='tutor-icon-angle-right'></i> </a>"; ?> </td>
52
- </tr>
 
 
 
 
53
  <?php
54
- }
55
- ?>
56
  </tbody>
57
  </table>
58
  </div>
59
 
60
- <div class="tutor-pagination">
61
- <?php
62
 
63
- echo paginate_links( array(
64
- 'format' => '?current_page=%#%',
65
- 'current' => $current_page,
66
- 'total' => ceil($assignments->count/$per_page)
67
- ) );
68
- ?>
69
- </div>
70
 
71
- <?php } else{
72
- echo '<p>'.__('No assignment available', 'tutor' ).'</p>';
73
- }
1
  <?php
2
+
3
  /**
4
  * Template for displaying Assignments
5
  *
14
 
15
  global $wpdb;
16
 
17
+ $per_page = 10;
18
+ $current_page = max(1, tutor_utils()->avalue_dot('current_page', $_GET));
19
+ $offset = ($current_page - 1) * $per_page;
20
+
21
+ $course_id = isset($_GET['course-id']) ? sanitize_text_field($_GET['course-id']) : '';
22
+ $order_filter = isset($_GET['order']) ? sanitize_text_field($_GET['order']) : 'DESC';
23
+ $date_filter = isset($_GET['date']) ? sanitize_text_field($_GET['date']) : '';
24
+
25
+ $current_user = get_current_user_id();
26
+ $assignments = tutor_utils()->get_assignments_by_instructor(null, compact('course_id', 'order_filter', 'date_filter', 'per_page', 'offset'));
27
+ $courses = (current_user_can('administrator')) ? tutils()->get_courses() : tutils()->get_courses_by_instructor();
28
+
29
+ ?>
30
+
31
+ <div class="tutor-dashboard-announcement-sorting-wrap">
32
+ <div class="tutor-form-group">
33
+ <label for="">
34
+ <?php _e('Courses', 'tutor'); ?>
35
+ </label>
36
+ <select class="tutor-report-category tutor-announcement-course-sorting ignore-nice-select">
37
+
38
+ <option value=""><?php _e('All', 'tutor'); ?></option>
39
+
40
+ <?php if ($courses) : ?>
41
+ <?php foreach ($courses as $course) : ?>
42
+ <option value="<?php echo esc_attr($course->ID) ?>" <?php selected($course_id, $course->ID, 'selected') ?>>
43
+ <?php echo $course->post_title; ?>
44
+ </option>
45
+ <?php endforeach; ?>
46
+ <?php else : ?>
47
+ <option value=""><?php _e('No course found', 'tutor'); ?></option>
48
+ <?php endif; ?>
49
+ </select>
50
+ </div>
51
+ <div class="tutor-form-group">
52
+ <label><?php _e('Sort By', 'tutor'); ?></label>
53
+ <select class="tutor-announcement-order-sorting ignore-nice-select">
54
+ <option <?php selected($order_filter, 'ASC'); ?>><?php _e('ASC', 'tutor'); ?></option>
55
+ <option <?php selected($order_filter, 'DESC'); ?>><?php _e('DESC', 'tutor'); ?></option>
56
+ </select>
57
+ </div>
58
+ <div class="tutor-form-group tutor-announcement-datepicker">
59
+ <label><?php _e('Create Date', 'tutor'); ?></label>
60
+ <input type="text" class="tutor-announcement-date-sorting" id="tutor-announcement-datepicker" value="<?php echo $date_filter; ?>" autocomplete="off" />
61
+ <i class="tutor-icon-calendar"></i>
62
+ </div>
63
+ </div>
64
+
65
+ <?php
66
 
67
+ if ($assignments->count) { ?>
 
68
 
69
+ <div class="tutor-announcement-table-wrap">
70
+ <table class="tutor-dashboard-announcement-table" width="100%">
 
71
  <thead>
72
+ <tr>
73
+ <th><?php _e('Course Name', 'tutor') ?></th>
74
+ <th width="15%"><?php _e('Total Points', 'tutor') ?></th>
75
+ <th width="15%"><?php _e('Total Submits', 'tutor') ?></th>
76
+ <th width="10%">&nbsp;</th>
77
+ </tr>
78
  </thead>
79
  <tbody>
80
+ <?php
81
+
 
 
 
82
  $submitted_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/submitted');
83
+
84
+ foreach ($assignments->results as $item) {
85
+ $max_mark = tutor_utils()->get_assignment_option($item->ID, 'total_mark');
86
+ $course_id = tutor_utils()->get_course_id_by_assignment($item->ID);
87
+ $comment_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(comment_ID) FROM {$wpdb->comments} WHERE comment_type = 'tutor_assignment' AND comment_post_ID = %d", $item->ID));
88
+ // @TODO: assign post_meta is empty if user don't click on update button (http://prntscr.com/oax4t8) but post status is publish
89
  ?>
90
+ <tr>
91
+ <td>
92
+ <h4><?php echo esc_html($item->post_title); ?></h4>
93
+ <p><?php echo __('Course: ', 'tutor'); ?><a href='<?php echo get_the_permalink($course_id) ?>' target="_blank"><?php echo get_the_title($course_id); ?> </a></p>
94
+ </td>
95
+ <td><?php echo $max_mark ?></td>
96
+ <td><?php echo $comment_count ?></td>
97
+ <td>
98
+ <a href="<?php echo esc_url($submitted_url . '?assignment=' . $item->ID); ?>" class="tutor-btn bordered-btn tutor-announcement-details">
99
+ <?php _e('Details', 'tutor'); ?>
100
+ </a>
101
+ </td>
102
+ </tr>
103
  <?php
104
+ }
105
+ ?>
106
  </tbody>
107
  </table>
108
  </div>
109
 
110
+ <div class="tutor-pagination">
111
+ <?php
112
 
113
+ echo paginate_links(array(
114
+ 'format' => '?current_page=%#%',
115
+ 'current' => $current_page,
116
+ 'total' => ceil($assignments->count / $per_page)
117
+ ));
118
+ ?>
119
+ </div>
120
 
121
+ <?php } else {
122
+ echo '<p>' . __('No assignment available', 'tutor') . '</p>';
123
+ }
templates/dashboard/assignments/course.php DELETED
@@ -1,52 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- global $wpdb;
8
- $course_id = (int) sanitize_text_field(tutor_utils()->array_get('course_id', $_GET));
9
- $assignments = tutor_utils()->get_assignments_by_course($course_id);
10
-
11
- if($assignments->count){
12
- ?>
13
-
14
- <h3><?php echo get_the_title($course_id) ?></h3>
15
- <div class="tutor-dashboard-info-table-wrap">
16
- <table class="tutor-dashboard-info-table tutor-dashboard-assignment-table tutor-table">
17
- <thead>
18
- <tr>
19
- <th><?php _e('Course Name', 'tutor'); ?></th>
20
- <th><?php _e('Total Mark', 'tutor'); ?></th>
21
- <th><?php _e('Total Submit', 'tutor'); ?></th>
22
- <th>&nbsp;</th>
23
- </tr>
24
- </thead>
25
- <tbody>
26
- <?php
27
- foreach ($assignments->results as $item){
28
- $max_mark = tutor_utils()->get_assignment_option($item->ID, 'total_mark');
29
- $course_id = tutor_utils()->get_course_id_by_assignment($item->ID);
30
- $course_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/course');
31
- $submitted_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/submitted');
32
- $comment_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(comment_ID) FROM {$wpdb->comments} WHERE comment_type = 'tutor_assignment' AND comment_post_ID = %d", $item->ID));
33
- // @TODO: assign post_meta is empty if user don't click on update button (http://prntscr.com/oax4t8) but post status is publish
34
- ?>
35
- <tr>
36
- <td>
37
- <h5><?php echo $item->post_title ?></h5>
38
- <h5><a href='<?php echo esc_url($course_url.'?course_id='.$course_id) ?>'><?php echo __('Course: ', 'tutor'). get_the_title($course_id); ?> </a></h5>
39
- </td>
40
- <td><?php echo $max_mark ?></td>
41
- <td><?php echo $comment_count ?></td>
42
- <td> <?php echo "<a title='". __('View Coures', 'tutor') ."' href='".esc_url($submitted_url.'?assignment='.$item->ID)."'><i class='tutor-icon-angle-right'></i> </a>"; ?> </td>
43
- </tr>
44
- <?php
45
- }
46
- ?>
47
- </tbody>
48
- </table>
49
- </div>
50
- <?php }else{
51
- echo '<p>'.__('No assignment available', 'tutor' ).'</p>';
52
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/dashboard/assignments/review.php CHANGED
@@ -11,7 +11,9 @@
11
  * @version 1.4.3
12
  */
13
 
 
14
  $assignment_submitted_id = (int) sanitize_text_field(tutor_utils()->array_get('view_assignment', $_GET));
 
15
 
16
  if(!$assignment_submitted_id){
17
  echo _e("Sorry, but you are looking for something that isn't here." , 'tutor');
@@ -24,9 +26,14 @@ if ( $submitted_assignment){
24
  $max_mark = tutor_utils()->get_assignment_option($submitted_assignment->comment_post_ID, 'total_mark');
25
 
26
  $given_mark = get_comment_meta($assignment_submitted_id, 'assignment_mark', true);
27
- $instructor_note = get_comment_meta($assignment_submitted_id, 'instructor_note', true);
 
28
  ?>
29
 
 
 
 
 
30
  <div class="tutor-assignment-review-header">
31
  <h3>
32
  <a href="<?php echo get_the_permalink($submitted_assignment->comment_post_ID); ?>" target="_blank">
@@ -34,14 +41,24 @@ if ( $submitted_assignment){
34
  </a>
35
  </h3>
36
  <p>
37
- <?php _e('Course' , 'tutor'); ?> :
38
  <a href="<?php echo get_the_permalink($submitted_assignment->comment_parent); ?>" target="_blank">
39
  <?php echo get_the_title($submitted_assignment->comment_parent); ?>
40
  </a>
41
  </p>
 
 
 
 
 
 
 
 
42
  </div>
43
 
44
- <div class="tutor-dashboard-assignment-review">
 
 
45
  <h4><?php _e('Assignment Description:', 'tutor'); ?></h4>
46
  <p><?php echo nl2br(stripslashes($submitted_assignment->comment_content)); ?></p>
47
 
@@ -71,7 +88,7 @@ if ( $submitted_assignment){
71
  ?>
72
  </div>
73
 
74
- <div class="tutor-assignment-evaluate-wraps">
75
  <h3><?php _e('Evaluation', 'tutor'); ?></h3>
76
  <form action="" method="post">
77
  <?php wp_nonce_field( tutor()->nonce_action, tutor()->nonce ); ?>
@@ -79,11 +96,11 @@ if ( $submitted_assignment){
79
  <input type="hidden" value="<?php echo $assignment_submitted_id; ?>" name="assignment_submitted_id"/>
80
  <div class="tutor-assignment-evaluate-row">
81
  <div class="tutor-option-field-label">
82
- <label for=""><?php _e('Your Mark', 'tutor'); ?></label>
83
  </div>
84
- <div class="tutor-option-field">
85
  <input type="number" name="evaluate_assignment[assignment_mark]" value="<?php echo $given_mark ? $given_mark : 0; ?>">
86
- <p class="desc"><?php echo sprintf(__('Mark this assignment out of %s', 'tutor'), "<code>{$max_mark}</code>" ); ?></p>
87
  </div>
88
  </div>
89
  <div class="tutor-assignment-evaluate-row">
11
  * @version 1.4.3
12
  */
13
 
14
+ $assignment_id = (int) sanitize_text_field(tutor_utils()->array_get('assignment', $_GET));
15
  $assignment_submitted_id = (int) sanitize_text_field(tutor_utils()->array_get('view_assignment', $_GET));
16
+ $submitted_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/submitted');
17
 
18
  if(!$assignment_submitted_id){
19
  echo _e("Sorry, but you are looking for something that isn't here." , 'tutor');
26
  $max_mark = tutor_utils()->get_assignment_option($submitted_assignment->comment_post_ID, 'total_mark');
27
 
28
  $given_mark = get_comment_meta($assignment_submitted_id, 'assignment_mark', true);
29
+ $instructor_note = get_comment_meta($assignment_submitted_id, 'instructor_note', true);
30
+ $comment_author = get_user_by('login', $submitted_assignment->comment_author)
31
  ?>
32
 
33
+ <div class="submitted-assignment-title">
34
+ <a class="prev-btn" href="<?php echo esc_url($submitted_url . '?assignment=' . $assignment_id); ?>"><span>&leftarrow;</span><?php _e('Back', 'tutor'); ?></a>
35
+ </div>
36
+
37
  <div class="tutor-assignment-review-header">
38
  <h3>
39
  <a href="<?php echo get_the_permalink($submitted_assignment->comment_post_ID); ?>" target="_blank">
41
  </a>
42
  </h3>
43
  <p>
44
+ <?php _e('Course' , 'tutor'); ?>:
45
  <a href="<?php echo get_the_permalink($submitted_assignment->comment_parent); ?>" target="_blank">
46
  <?php echo get_the_title($submitted_assignment->comment_parent); ?>
47
  </a>
48
  </p>
49
+ <p>
50
+ <?php _e('Student' , 'tutor'); ?>:
51
+ <span><?php echo $comment_author->display_name. ' ('.$comment_author->user_email.')'; ?></span>
52
+ </p>
53
+ <p>
54
+ <?php _e('Submitted Date' , 'tutor'); ?>:
55
+ <span><?php echo date('j M, Y, h:i a', strtotime($submitted_assignment->comment_date)); ?></span>
56
+ </p>
57
  </div>
58
 
59
+ <hr>
60
+
61
+ <div class="tutor-dashboard-assignment-submitted-content">
62
  <h4><?php _e('Assignment Description:', 'tutor'); ?></h4>
63
  <p><?php echo nl2br(stripslashes($submitted_assignment->comment_content)); ?></p>
64
 
88
  ?>
89
  </div>
90
 
91
+ <div class="tutor-dashboard-assignment-review">
92
  <h3><?php _e('Evaluation', 'tutor'); ?></h3>
93
  <form action="" method="post">
94
  <?php wp_nonce_field( tutor()->nonce_action, tutor()->nonce ); ?>
96
  <input type="hidden" value="<?php echo $assignment_submitted_id; ?>" name="assignment_submitted_id"/>
97
  <div class="tutor-assignment-evaluate-row">
98
  <div class="tutor-option-field-label">
99
+ <label for=""><?php _e('Your Points', 'tutor'); ?></label>
100
  </div>
101
+ <div class="tutor-option-field input-mark">
102
  <input type="number" name="evaluate_assignment[assignment_mark]" value="<?php echo $given_mark ? $given_mark : 0; ?>">
103
+ <p class="desc"><?php echo sprintf(__('Evaluate this assignment out of %s', 'tutor'), "<code>{$max_mark}</code>" ); ?></p>
104
  </div>
105
  </div>
106
  <div class="tutor-assignment-evaluate-row">
templates/dashboard/assignments/submitted.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * @package TutorLMS/Templates
4
  * @version 1.4.3
@@ -6,84 +7,128 @@
6
 
7
  global $wpdb;
8
 
9
- $assignment = sanitize_text_field($_GET['assignment']);
10
- $assignments_submitted = $wpdb->get_results($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_type = 'tutor_assignment' AND comment_post_ID = %d", $assignment));
 
11
 
 
 
 
 
12
  ?>
13
 
 
 
 
14
 
15
- <h3><?php esc_html_e('Assignment', 'tutor') ?></h3>
16
- <div class="tutor-dashboard-info-table-wrap">
17
- <?php
18
-
19
- if (tutor_utils()->count($assignments_submitted)){
20
-
21
- ?>
22
-
23
- <table class="tutor-dashboard-info-table tutor-dashboard-assignment-submitted-table tutor-table">
24
- <thead>
25
- <tr>
26
- <td><?php esc_attr_e('Student', 'tutor'); ?></td>
27
- <td><?php esc_attr_e('Date & Time', 'tutor'); ?></td>
28
- <td><?php esc_attr_e('Pass Mark', 'tutor'); ?></td>
29
- <td><?php esc_attr_e('Total Mark', 'tutor'); ?></td>
30
- <td><?php esc_attr_e('Result', 'tutor'); ?></td>
31
- <td><?php esc_attr_e('Evaluated', 'tutor'); ?></td>
32
- <td>&nbsp;</td>
33
- </tr>
34
- </thead>
35
-
36
- <tbody>
37
- <?php
38
-
39
- foreach ($assignments_submitted as $assignment){
40
- $comment_author = get_user_by('login', $assignment->comment_author);
41
- $is_reviewed_by_instructor = get_comment_meta($assignment->comment_ID, 'evaluate_time', true);
42
- $max_mark = tutor_utils()->get_assignment_option($assignment->comment_post_ID, 'total_mark');
43
- $pass_mark = tutor_utils()->get_assignment_option($assignment->comment_post_ID, 'pass_mark');
44
- $given_mark = get_comment_meta($assignment->comment_ID, 'assignment_mark', true);
45
- $not_evaluated = $given_mark==='';
46
- $status = sprintf(__('%s Pending %s', 'tutor'), '<span class="pending">', '</span>');
47
- if(!empty($given_mark) || !$not_evaluated){
48
- $status = (int) $given_mark >= (int) $pass_mark ? sprintf(__('%s Pass %s', 'tutor'), '<span class="pass">', '</span>') : sprintf(__('%s Fail %s', 'tutor'), '<span class="fail">', '</span>');
49
- }
50
-
51
- $review_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/review');
52
-
53
- ?>
54
- <tr>
55
- <td><?php echo $comment_author->display_name; ?></td>
56
- <td><?php echo date('j M, Y. h:i a', strtotime($assignment->comment_date)); ?></td>
57
- <td><?php echo $pass_mark; ?></td>
58
- <td><?php echo !empty($given_mark) ? $given_mark . '/' . $max_mark : $max_mark; ?></td>
59
- <td><?php echo $status; ?></td>
60
- <td>
61
- <?php
62
- echo $not_evaluated ? _e('No', 'tutor') : _e('Yes', 'tutor');
63
- ?>
64
- </td>
65
- <td> <?php echo "<a title='". __('Review this assignment', 'tutor') ."' href='".esc_url($review_url.'?view_assignment='.$assignment->comment_ID)."'><i class='tutor-icon-angle-right'></i> </a>"; ?> </td>
66
- </tr>
67
- <?php
68
- }
69
-
70
- ?>
71
-
72
- </tbody>
73
- </table>
74
-
75
-
76
- <?php
77
-
78
- }else{
79
-
80
- ?>
81
-
82
- <p><?php _e('No assignment has been submitted yet', 'tutor'); ?></p>
83
- <?php
84
 
85
- }
86
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
 
 
 
 
 
 
 
88
 
89
- </div>
1
  <?php
2
+
3
  /**
4
  * @package TutorLMS/Templates
5
  * @version 1.4.3
7
 
8
  global $wpdb;
9
 
10
+ $order_filter = isset($_GET['order']) ? sanitize_text_field($_GET['order']) : 'desc';
11
+ $assignment_id = sanitize_text_field($_GET['assignment']);
12
+ $assignments_submitted = $wpdb->get_results($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_type = 'tutor_assignment' AND comment_post_ID = %d ORDER BY comment_ID $order_filter", $assignment_id));
13
 
14
+ $max_mark = tutor_utils()->get_assignment_option($assignment_id, 'total_mark');
15
+ $pass_mark = tutor_utils()->get_assignment_option($assignment_id, 'pass_mark');
16
+ $format = get_option('date_format').' '.get_option('time_format');
17
+ $deadline = tutor_utils()->get_assignment_deadline_date($assignment_id, $format, __('No Limit', 'tutor'));
18
  ?>
19
 
20
+ <div class="submitted-assignment-title">
21
+ <a class="prev-btn" href="<?php echo tutor_utils()->get_tutor_dashboard_page_permalink('assignments'); ?>"><span>&leftarrow;</span><?php _e('Back', 'tutor'); ?></a>
22
+ </div>
23
 
24
+ <?php
25
+ if (tutor_utils()->count($assignments_submitted)) {
26
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
+ <div class="tutor-assignment-review-header tutor-assignment-submitted-page">
29
+ <p>
30
+ <?php _e('Course', 'tutor'); ?> :
31
+ <a href="<?php echo get_the_permalink($assignments_submitted[0]->comment_parent); ?>" target="_blank">
32
+ <?php echo get_the_title($assignments_submitted[0]->comment_parent); ?>
33
+ </a>
34
+ </p>
35
+ <h3>
36
+ <a href="<?php echo get_the_permalink($assignment_id); ?>" target="_blank">
37
+ <?php echo get_the_title($assignment_id); ?>
38
+ </a>
39
+ </h3>
40
+ <div class="assignment-info">
41
+ <p>
42
+ <?php _e('Submission Deadline', 'tutor'); ?>:
43
+ <span><?php echo $deadline; ?></span>
44
+ </p>
45
+ <p>
46
+ <?php _e('Total Points', 'tutor'); ?>:
47
+ <span><?php echo $max_mark; ?></span>
48
+ </p>
49
+ <p>
50
+ <?php _e('Pass Points', 'tutor'); ?>:
51
+ <span><?php echo $pass_mark; ?></span>
52
+ </p>
53
+ </div>
54
+ </div>
55
+
56
+ <div class="tutor-announcement-table-wrap">
57
+
58
+ <div class="tutor-dashboard-announcement-sorting-wrap submitted-assignments-sorting-wrap">
59
+ <div class="tutor-form-group">
60
+ <label><?php _e('Sort By:', 'tutor'); ?></label>
61
+ <select class="tutor-announcement-order-sorting ignore-nice-select">
62
+ <option value="desc" <?php selected($order_filter, 'desc'); ?>><?php _e('Latest', 'tutor'); ?></option>
63
+ <option value="asc" <?php selected($order_filter, 'asc'); ?>><?php _e('Oldest', 'tutor'); ?></option>
64
+ </select>
65
+ </div>
66
+ </div>
67
+
68
+ <table class="tutor-dashboard-announcement-table tutor-dashboard-assignment-table" width="100%">
69
+ <thead>
70
+ <tr>
71
+ <th style="width:25%;"><?php esc_attr_e('Date', 'tutor'); ?></td>
72
+ <th><?php esc_attr_e('Student', 'tutor'); ?></td>
73
+ <th style="width:15%;"><?php esc_attr_e('Total Points', 'tutor'); ?></td>
74
+ <th style="width:12%;"><?php esc_attr_e('Result', 'tutor'); ?></td>
75
+ <th style="width:10%;">&nbsp;</td>
76
+ </tr>
77
+ </thead>
78
+
79
+ <tbody>
80
+ <?php
81
+
82
+ foreach ($assignments_submitted as $assignment) {
83
+ $comment_author = get_user_by('login', $assignment->comment_author); // login=username
84
+ $is_reviewed_by_instructor = get_comment_meta($assignment->comment_ID, 'evaluate_time', true);
85
+ $given_mark = get_comment_meta($assignment->comment_ID, 'assignment_mark', true);
86
+ $not_evaluated = $given_mark === '';
87
+ $status = sprintf(__('%s Pending %s', 'tutor'), '<span class="review-required">', '</span>');
88
+ $button_text = __('Evaluate', 'tutor');
89
+ if (!empty($given_mark) || !$not_evaluated) {
90
+ $status = (int) $given_mark >= (int) $pass_mark ? sprintf(__('%s Pass %s', 'tutor'), '<span class="result-pass">', '</span>') : sprintf(__('%s Fail %s', 'tutor'), '<span class="result-fail">', '</span>');
91
+ $button_text = __('Details', 'tutor');
92
+ }
93
+
94
+ $review_url = tutor_utils()->get_tutor_dashboard_page_permalink('assignments/review');
95
+
96
+ ?>
97
+ <tr>
98
+ <td><?php echo date('j M, Y,<\b\r>h:i a', strtotime($assignment->comment_date)); ?></td>
99
+ <td>
100
+ <div class="student-column">
101
+ <div class="student-avatar">
102
+ <?php echo tutils()->get_tutor_avatar($comment_author->ID); ?>
103
+ </div>
104
+ <div class="student-details">
105
+ <h4><?php echo $comment_author->display_name; ?></h4>
106
+ <p><?php echo $comment_author->user_email; ?></p>
107
+ </div>
108
+ </div>
109
+ </td>
110
+ <td><?php echo !empty($given_mark) ? $given_mark . '/' . $max_mark : $max_mark; ?></td>
111
+ <td><?php echo $status; ?></td>
112
+ <td>
113
+ <a href="<?php echo esc_url($review_url . '?view_assignment=' . $assignment->comment_ID) . '&assignment=' . $assignment_id; ?>" class="tutor-btn bordered-btn tutor-announcement-details">
114
+ <?php echo $button_text; ?>
115
+ </a>
116
+ </tr>
117
+ <?php
118
+ }
119
+
120
+ ?>
121
+
122
+ </tbody>
123
+ </table>
124
+ </div>
125
 
126
+ <?php
127
+ } else {
128
+ ?>
129
+ <p><?php _e('No assignment has been submitted yet', 'tutor'); ?></p>
130
+ <?php
131
+ }
132
+ ?>
133
 
134
+ </div>
templates/dashboard/create-course.php CHANGED
@@ -58,13 +58,29 @@ $can_publish_course = (bool) tutor_utils()->get_option('instructor_can_publish_c
58
  </div>
59
  </header>
60
  <div class="tutor-frontend-course-builder-section">
 
61
  <div class="tutor-container">
62
  <div class="tutor-row">
63
  <div class="tutor-col-8">
64
  <input type="hidden" value="tutor_add_course_builder" name="tutor_action"/>
65
  <input type="hidden" name="course_ID" id="course_ID" value="<?php echo get_the_ID(); ?>">
66
  <input type="hidden" name="post_ID" id="post_ID" value="<?php echo get_the_ID(); ?>">
 
 
67
  <div class="tutor-dashboard-course-builder-wrap">
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  <?php do_action('tutor/dashboard_course_builder_form_field_before'); ?>
69
 
70
  <div class="tutor-course-builder-section tutor-course-builder-info">
58
  </div>
59
  </header>
60
  <div class="tutor-frontend-course-builder-section">
61
+
62
  <div class="tutor-container">
63
  <div class="tutor-row">
64
  <div class="tutor-col-8">
65
  <input type="hidden" value="tutor_add_course_builder" name="tutor_action"/>
66
  <input type="hidden" name="course_ID" id="course_ID" value="<?php echo get_the_ID(); ?>">
67
  <input type="hidden" name="post_ID" id="post_ID" value="<?php echo get_the_ID(); ?>">
68
+
69
+
70
  <div class="tutor-dashboard-course-builder-wrap">
71
+ <!--since 1.8.0 alert message -->
72
+ <?php
73
+ $instructor_can_publish = tutils()->get_option('instructor_can_publish_course');
74
+ ?>
75
+ <?php if(current_user_can('tutor_instructor') AND !current_user_can('administrator')):?>
76
+ <?php if(isset($_SESSION['tutor_course_updated']) AND !$instructor_can_publish):?>
77
+ <div class="tutor-alert tutor-alert-info">
78
+ <?php _e('Your course has been submitted to the admin. It will be published once it has been reviewed by the admins.','tutor');?>
79
+ </div>
80
+ <?php session_destroy();?>
81
+ <?php endif;?>
82
+ <?php endif;?>
83
+ <!--alert message end -->
84
  <?php do_action('tutor/dashboard_course_builder_form_field_before'); ?>
85
 
86
  <div class="tutor-course-builder-section tutor-course-builder-info">
templates/dashboard/earning.php CHANGED
@@ -159,7 +159,7 @@ if ( ! $tutor_primary_color){
159
  data: {
160
  labels: <?php echo json_encode(array_keys($chartData)); ?>,
161
  datasets: [{
162
- label: __('Earning', 'tutor'),
163
  backgroundColor: '<?php echo $tutor_primary_color; ?>',
164
  borderColor: '<?php echo $tutor_primary_color; ?>',
165
  data: <?php echo json_encode(array_values($chartData)); ?>,
159
  data: {
160
  labels: <?php echo json_encode(array_keys($chartData)); ?>,
161
  datasets: [{
162
+ label: '<?php _e('Earning','tutor');?>',
163
  backgroundColor: '<?php echo $tutor_primary_color; ?>',
164
  borderColor: '<?php echo $tutor_primary_color; ?>',
165
  data: <?php echo json_encode(array_values($chartData)); ?>,
templates/dashboard/my-quiz-attempts/attempts-details.php CHANGED
@@ -102,7 +102,6 @@ $answers = tutor_utils()->get_quiz_answers_by_attempt_id($attempt_id);
102
  <a class="prev-btn" href="<?php echo $attempts_page; ?>"><span>&leftarrow;</span><?php _e('Back to Attempt List', 'tutor'); ?></a>
103
  </div>
104
 
105
-
106
  <div class="tutor-quiz-attempt-review-wrap">
107
  <div class="attempt-answers-header">
108
  <div class="attempt-header-quiz"><?php echo __('Quiz:','tutor')." <a href='" .get_permalink($attempt_data->quiz_id)."'>".get_the_title($attempt_data->quiz_id)."</a>"; ?></div>
102
  <a class="prev-btn" href="<?php echo $attempts_page; ?>"><span>&leftarrow;</span><?php _e('Back to Attempt List', 'tutor'); ?></a>
103
  </div>
104
 
 
105
  <div class="tutor-quiz-attempt-review-wrap">
106
  <div class="attempt-answers-header">
107
  <div class="attempt-header-quiz"><?php echo __('Quiz:','tutor')." <a href='" .get_permalink($attempt_data->quiz_id)."'>".get_the_title($attempt_data->quiz_id)."</a>"; ?></div>
templates/dashboard/withdraw.php CHANGED
@@ -14,7 +14,7 @@ $withdraw_method_name = tutor_utils()->avalue_dot('withdraw_method_name', $saved
14
 
15
  $user_id = get_current_user_id();
16
  $balance_formatted = tutor_utils()->tutor_price($earning_sum->balance);
17
- $is_balance_sufficient = $earning_sum->balance >= $min_withdraw;
18
  $all_histories = tutor_utils()->get_withdrawals_history($user_id, array('status' => array('pending', 'approved', 'rejected')));
19
 
20
  $image_base = tutor()->url . '/assets/images/';
@@ -79,7 +79,7 @@ else if(function_exists('edd_currency_symbol')){
79
  </div>
80
 
81
  <?php
82
- if ($earning_sum->balance >= $min_withdraw && $withdraw_method_name) {
83
  ?>
84
 
85
  <div class="tutor-earning-withdraw-form-wrap">
14
 
15
  $user_id = get_current_user_id();
16
  $balance_formatted = tutor_utils()->tutor_price($earning_sum->balance);
17
+ $is_balance_sufficient = true; //$earning_sum->balance >= $min_withdraw;
18
  $all_histories = tutor_utils()->get_withdrawals_history($user_id, array('status' => array('pending', 'approved', 'rejected')));
19
 
20
  $image_base = tutor()->url . '/assets/images/';
79
  </div>
80
 
81
  <?php
82
+ if ($is_balance_sufficient && $withdraw_method_name) {
83
  ?>
84
 
85
  <div class="tutor-earning-withdraw-form-wrap">
templates/email/to_admin_course_updated.php DELETED
@@ -1,17 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('Instructor <strong>{instructor_name}</strong> has updated {course_name} on <strong>{site_name}</strong>', 'tutor')?>
13
- </p>
14
-
15
- <p> <?php _e("Course Link: {course_url}",'tutor')?> </p>
16
-
17
- <p><?php _e('Reply to this email to communicate with the instructor.', 'tutor'); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_admin_new_course_published.php DELETED
@@ -1,18 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('A new course has been published by <strong>{instructor_name}</strong> on your site <strong>{site_name}</strong>', 'tutor'); ?>
12
- <br />
13
- <?php _e('Course name - <strong>{course_name}</strong>', 'tutor'); ?>
14
- <br />
15
- <?php _e('View the course - {course_url}', 'tutor'); ?>
16
- </p>
17
-
18
- <p><?php _e('Reply to this email to communicate with the instructor.', 'tutor'); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_admin_new_course_submitted_for_review.php DELETED
@@ -1,18 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('A new course has been created by <strong>{instructor_name}</strong> on your site <strong>{site_name}</strong> and waiting for approval.', 'tutor'); ?>
12
- <br />
13
- <?php _e('Course name - <strong>{course_name}</strong>', 'tutor'); ?>
14
- <br />
15
- <?php _e('View the course - {course_url}', 'tutor'); ?>
16
- </p>
17
-
18
- <p><?php _e('Reply to this email to communicate with the instructor.', 'tutor'); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_admin_new_instructor_signup.php DELETED
@@ -1,16 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('A new instructor has signed up to your site <strong>{site_name}</strong>', 'tutor'); ?>
12
- <br />
13
- {instructor_name}
14
- <br />
15
- {instructor_email}
16
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_admin_new_student_signup.php DELETED
@@ -1,16 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('A new student has signed up to your site <strong>{site_name}</strong>', 'tutor'); ?>
12
- <br />
13
- {student_name}
14
- <br />
15
- {student_email}
16
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_admin_new_withdrawal_request.php DELETED
@@ -1,11 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p>
10
- <?php _e('{instructor_username} has submitted a new withdrawal request.', 'tutor'); ?>
11
- </p>
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_asked_question_by_student.php DELETED
@@ -1,17 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('{student_username} asked a question on <strong>{course_name}</strong> at <strong>{enroll_time}</strong>. The reply URL is: <strong>{course_url}</strong>. You will find the question below.', 'tutor'); ?>
13
- </p>
14
-
15
- <br />
16
- <p>{question_title}</p>
17
- <p>{question}</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_become_application_approved.php DELETED
@@ -1,14 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <h4><?php _e('Congrats!', 'tutor'); ?></h4>
10
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
11
-
12
- <p>
13
- <?php _e('You are now an instructor for the <b>{site_name}</b> team. Go ahead and start creating your first course today!', 'tutor'); ?>
14
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_become_application_received.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('Your application for becoming an instructor has been received. Please hold tight as we review your application. You will receive a notification about your status as soon as possible.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_become_application_rejected.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?> </p>
10
-
11
- <p>
12
- <?php _e('Unfortunately, your instructor application has been rejected. Please contact the site administrator for further information.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_course_completed.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('{student_username} has recently completed <strong>{course_name}</strong> at <strong>{completion_time}</strong>. The completed course URL is: <strong>{course_url}</strong>.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_course_enrolled.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('{student_username} has enrolled on <strong>{course_name}</strong> at <strong>{enroll_time}</strong>. The enrolled course URL is: <strong>{course_url}</strong>.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_lesson_completed.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('<strong>{student_username}</strong> has recently completed the lesson <strong>{lesson_name}</strong> of <strong>{course_name}</strong> at <strong>{completion_time}</strong>. The completed lesson URL is: <strong>{lesson_url}</strong>.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_quiz_completed.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.6.2
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('<strong>{username}</strong> just submitted answers for <strong>{quiz_name}</strong> in course <strong>{course_name}</strong> at <strong>{submission_time}</strong>. You can review it from: <strong>{quiz_review_url}</strong>.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_student_submitted_assignment.php DELETED
@@ -1,22 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('You have received a submission for an assignment.', 'tutor'); ?>
12
- <br />
13
- <?php _e('Student Name - <strong>{student_name}</strong>', 'tutor'); ?>
14
- <br />
15
- <?php _e('Course Name - <strong>{course_name}</strong>', 'tutor'); ?>
16
- <br />
17
- <?php _e('Assignment Name - <strong>{assignment_name}</strong>', 'tutor'); ?>
18
- <br />
19
- <?php _e('Review Submission - {review_link}', 'tutor'); ?>
20
- </p>
21
-
22
- <p><?php _e('Reply to this email to communicate with the instructor.', 'tutor'); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_withdrawal_request_approved.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('Your withdrawal request has been approved. Please check the transaction notification on your connected withdrawal method.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_withdrawal_request_received.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?> </p>
10
-
11
- <p>
12
- <?php _e('Your withdrawal request has been received. Please hold tight as the admins take a look at it.'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_instructor_withdrawal_request_rejected.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {instructor_username},', 'tutor'); ?> </p>
10
-
11
- <p>
12
- <?php _e('Unfortunately, your withdrawal request has been rejected. Please contact the site admins directly for further information.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_announcement_updated.php DELETED
@@ -1,15 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.7.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('The instructor updated announcement on course - <strong>{course_name}</strong>', 'tutor'); ?>
12
- <br />
13
- {announcement}
14
- </p>
15
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_assignment_evaluate.php DELETED
@@ -1,15 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p><?php _e('The grade has been submitted for the assignment <strong>{assignment_name}</strong> for the course <strong>{course_name}</strong>', 'tutor'); ?></p>
11
- <p>
12
- <?php _e('Your score: <strong>{assignemnt_score}</strong>', 'tutor'); ?>
13
- <br />
14
- <?php _e('Instructor Comment: {assignment_comment}', 'tutor'); ?>
15
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_course_completed.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {student_username},', 'tutor'); ?> </p>
10
-
11
- <p>
12
- <?php _e('Thank you for completing <strong>{course_name}</strong> on <strong>{completion_time}</strong>. This message is to confirm that you have successfully completed the mentioned course. For future access, the course will be available on <strong>{course_url}</strong>.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_course_enrolled.php DELETED
@@ -1,14 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('Welcome to the course <strong>{course_name}</strong> at {site_url}. You can start learning from here-', 'tutor'); ?>
12
- <br />
13
- {course_start_url}.
14
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_feedback_submitted_for_quiz.php DELETED
@@ -1,17 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('The instructor has submitted the marks for the quiz <strong>{quiz_name}</strong> in the course <strong>{course_name}</strong>. You have got- <strong>{earned_marks}</strong>', 'tutor'); ?>
12
- <br />
13
- <?php _e('Instructor feedback: {instructor_feedback}', 'tutor'); ?>
14
- </p>
15
-
16
- <p><?php _e('You may reply to this email to communicate with the instructor.', 'tutor'); ?></p>
17
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_new_announcement_posted.php DELETED
@@ -1,15 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('The instructor posted a new announcement on course - <strong>{course_name}</strong>', 'tutor'); ?>
12
- <br />
13
- {announcement}
14
- </p>
15
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_new_lqa_published.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.7.4
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {student_username},', 'tutor'); ?></p>
10
-
11
- <p>
12
- <?php _e('A new {lqa_type} has been published for the course <b>{course_title}</b> called <b>{lqa_title}</b>. Go ahead and get started today!', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_question_answered.php DELETED
@@ -1,17 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('The instructor has answered your question on the course- <strong>{course_name}</strong>. Here is the answer-', 'tutor'); ?>
12
- <br />
13
- {answer}
14
- </p>
15
-
16
- <p><?php _e('You can continue the discussion here - {course_url}', 'tutor'); ?></p>
17
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_quiz_completed.php DELETED
@@ -1,13 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.4.3
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Dear {username},', 'tutor'); ?> </p>
10
-
11
- <p>
12
- <?php _e('Thank you for submitting your answers for <strong>{quiz_name}</strong> in course <strong>{course_name}</strong> at <strong>{submission_time}</strong>. This message is to confirm that we have received your answers. You can access this quiz on: <strong>{quiz_url}</strong>.', 'tutor'); ?>
13
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_rate_course_and_instructor.php DELETED
@@ -1,17 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @version 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('Congratulations on finishing the course <strong>{course_name}</strong>. We hope that you had a great experience on our platform. We would really appreciate it if you can post a review on the course and the instructor. Your valuable feedback would help us improve the content on our site and improve the learning experience.', 'tutor'); ?>
12
- </p>
13
- <p>
14
- <?php _e('Here is the link to post a review on the course- {course_url}', 'tutor'); ?>
15
- <br />
16
- <?php _e('Here is the link to post a review for the instructor- {instructor_url}', 'tutor'); ?>
17
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/email/to_student_remove_from_course.php DELETED
@@ -1,19 +0,0 @@
1
- <?php
2
- /**
3
- * @package TutorLMS/Templates
4
- * @since 1.6.9
5
- */
6
-
7
- ?>
8
-
9
- <p><?php _e('Hi,', 'tutor'); ?></p>
10
- <p>
11
- <?php _e('This is to notify you that the instructor has removed you from the course - <strong>{course_name}</strong>', 'tutor'); ?>
12
- <br />
13
- <br />
14
- --
15
- <?php _e('Regards', 'tutor'); ?>,
16
- <br />
17
- {site_name}
18
- </p>
19
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tutor.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Tutor LMS
4
  Plugin URI: https://www.themeum.com/product/tutor-lms/
5
  Description: Tutor is a complete solution for creating a Learning Management System in WordPress way. It can help you to create small to large scale online education site very conveniently. Power features like report, certificate, course preview, private file sharing make Tutor a robust plugin for any educational institutes.
6
  Author: Themeum
7
- Version: 1.7.9
8
  Author URI: https://themeum.com
9
  Requires at least: 4.5
10
  Tested up to: 5.3
@@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) )
17
  /**
18
  * Defined the tutor main file
19
  */
20
- define('TUTOR_VERSION', '1.7.9');
21
  define('TUTOR_FILE', __FILE__);
22
 
23
  /**
@@ -45,7 +45,7 @@ if ( ! function_exists('tutor')) {
45
  'basename' => plugin_basename( TUTOR_FILE ),
46
  'version' => TUTOR_VERSION,
47
  'nonce_action' => 'tutor_nonce_action',
48
- 'nonce' => '_wpnonce',
49
  'course_post_type' => apply_filters( 'tutor_course_post_type', 'courses' ),
50
  'lesson_post_type' => apply_filters( 'tutor_lesson_post_type', 'lesson' ),
51
  'instructor_role' => apply_filters( 'tutor_instructor_role', 'tutor_instructor' ),
4
  Plugin URI: https://www.themeum.com/product/tutor-lms/
5
  Description: Tutor is a complete solution for creating a Learning Management System in WordPress way. It can help you to create small to large scale online education site very conveniently. Power features like report, certificate, course preview, private file sharing make Tutor a robust plugin for any educational institutes.
6
  Author: Themeum
7
+ Version: 1.8.0
8
  Author URI: https://themeum.com
9
  Requires at least: 4.5
10
  Tested up to: 5.3
17
  /**
18
  * Defined the tutor main file
19
  */
20
+ define('TUTOR_VERSION', '1.8.0');
21
  define('TUTOR_FILE', __FILE__);
22
 
23
  /**
45
  'basename' => plugin_basename( TUTOR_FILE ),
46
  'version' => TUTOR_VERSION,
47
  'nonce_action' => 'tutor_nonce_action',
48
+ 'nonce' => '_tutor_nonce',
49
  'course_post_type' => apply_filters( 'tutor_course_post_type', 'courses' ),
50
  'lesson_post_type' => apply_filters( 'tutor_lesson_post_type', 'lesson' ),
51
  'instructor_role' => apply_filters( 'tutor_instructor_role', 'tutor_instructor' ),
views/modal/edit-lesson.php CHANGED
@@ -72,6 +72,8 @@
72
  </div>
73
 
74
  <div class="modal-footer">
75
- <button type="button" class="tutor-btn active update_lesson_modal_btn"><?php _e('Update Lesson', 'tutor'); ?></button>
 
 
76
  </div>
77
  </form>
72
  </div>
73
 
74
  <div class="modal-footer">
75
+ <button type="button" class="tutor-btn active update_lesson_modal_btn" data-toast_error="<?php _e('Error', 'tutor'); ?>" data-toast_error_message="<?php _e('Action Failed', 'tutor'); ?>" data-toast_success="<?php _e('Success', 'tutor'); ?>" data-toast_success_message="<?php _e('Lesson Updated', 'tutor'); ?>">
76
+ <?php _e('Update Lesson', 'tutor'); ?>
77
+ </button>
78
  </div>
79
  </form>
views/modal/edit_quiz.php CHANGED
@@ -250,7 +250,7 @@ if (!$quiz) {
250
  <div class="tutor-quiz-builder-modal-control-btn-group">
251
  <div class="quiz-builder-btn-group-left">
252
  <a href="#quiz-builder-tab-questions" class="quiz-modal-tab-navigation-btn quiz-modal-btn-back"><?php _e('Back', 'tutor'); ?></a>
253
- <a href="#quiz-builder-tab-advanced-options" class="quiz-modal-tab-navigation-btn quiz-modal-settings-save-btn"><?php _e('Save', 'tutor'); ?></a>
254
  </div>
255
  <!--<div class="quiz-builder-btn-group-right">
256
  <a href="#quiz-builder-tab-questions" class="quiz-modal-tab-navigation-btn quiz-modal-btn-cancel"><?php /*_e('Cancel', 'tutor'); */ ?></a>
@@ -337,7 +337,7 @@ if (!$quiz) {
337
  <div class="tutor-quiz-builder-modal-control-btn-group">
338
  <div class="quiz-builder-btn-group-left">
339
  <a href="#quiz-builder-tab-settings" class="quiz-modal-tab-navigation-btn quiz-modal-btn-back"><?php _e('Back', 'tutor'); ?></a>
340
- <a href="#quiz-builder-tab-advanced-options" class="quiz-modal-tab-navigation-btn quiz-modal-settings-save-btn"><?php _e('Save', 'tutor'); ?></a>
341
  </div>
342
  <!--<div class="quiz-builder-btn-group-right">
343
  <a href="#quiz-builder-tab-questions" class="quiz-modal-tab-navigation-btn quiz-modal-btn-cancel"><?php /*_e('Cancel', 'tutor'); */ ?></a>
250
  <div class="tutor-quiz-builder-modal-control-btn-group">
251
  <div class="quiz-builder-btn-group-left">
252
  <a href="#quiz-builder-tab-questions" class="quiz-modal-tab-navigation-btn quiz-modal-btn-back"><?php _e('Back', 'tutor'); ?></a>
253
+ <a href="#quiz-builder-tab-advanced-options" class="quiz-modal-tab-navigation-btn quiz-modal-settings-save-btn" data-toast_error="<?php _e('Error', 'tutor'); ?>" data-toast_error_message="<?php _e('Action Failed', 'tutor'); ?>" data-toast_success="<?php _e('Success', 'tutor'); ?>" data-toast_success_message="<?php _e('Saved', 'tutor'); ?>"><?php _e('Save', 'tutor'); ?></a>
254
  </div>
255
  <!--<div class="quiz-builder-btn-group-right">
256
  <a href="#quiz-builder-tab-questions" class="quiz-modal-tab-navigation-btn quiz-modal-btn-cancel"><?php /*_e('Cancel', 'tutor'); */ ?></a>
337
  <div class="tutor-quiz-builder-modal-control-btn-group">
338
  <div class="quiz-builder-btn-group-left">
339
  <a href="#quiz-builder-tab-settings" class="quiz-modal-tab-navigation-btn quiz-modal-btn-back"><?php _e('Back', 'tutor'); ?></a>
340
+ <a href="#quiz-builder-tab-advanced-options" class="quiz-modal-tab-navigation-btn quiz-modal-settings-save-btn" data-toast_error="<?php _e('Error', 'tutor'); ?>" data-toast_error_message="<?php _e('Action Failed', 'tutor'); ?>" data-toast_success="<?php _e('Success', 'tutor'); ?>" data-toast_success_message="<?php _e('Saved', 'tutor'); ?>"><?php _e('Save', 'tutor'); ?></a>
341
  </div>
342
  <!--<div class="quiz-builder-btn-group-right">
343
  <a href="#quiz-builder-tab-questions" class="quiz-modal-tab-navigation-btn quiz-modal-btn-cancel"><?php /*_e('Cancel', 'tutor'); */ ?></a>
views/options/options_generator.php CHANGED
@@ -2,7 +2,7 @@
2
  <h1><?php _e('Tutor Settings', 'tutor'); ?></h1>
3
 
4
 
5
- <form id="tutor-option-form" class="tutor-option-form" method="post">
6
  <input type="hidden" name="action" value="tutor_option_save" >
7
 
8
  <?php
2
  <h1><?php _e('Tutor Settings', 'tutor'); ?></h1>
3
 
4
 
5
+ <form id="tutor-option-form" class="tutor-option-form" method="post" data-toast_error="<?php _e('Error', 'tutor'); ?>" data-toast_error_message="<?php _e('Action Failed', 'tutor'); ?>" data-toast_success="<?php _e('Success', 'tutor'); ?>" data-toast_success_message="<?php _e('Settings Saved', 'tutor'); ?>">
6
  <input type="hidden" name="action" value="tutor_option_save" >
7
 
8
  <?php
views/pages/announcements.php CHANGED
@@ -220,7 +220,7 @@ $notify_checked = tutils()->get_option('email_to_students.new_announcement_poste
220
  </label>
221
 
222
  <div class="tutor-announcement-form-control">
223
- <input type="text" name="tutor_annoument_title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
224
  </div>
225
  </div>
226
 
@@ -230,7 +230,7 @@ $notify_checked = tutils()->get_option('email_to_students.new_announcement_poste
230
  </label>
231
 
232
  <div class="tutor-announcement-form-control">
233
- <textarea rows="8" type="text" name="tutor_annoument_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
234
  </div>
235
  </div>
236
  <?php if ($notify_checked) : ?>
@@ -309,7 +309,7 @@ $notify_checked = tutils()->get_option('email_to_students.new_announcement_poste
309
  </label>
310
 
311
  <div class="tutor-announcement-form-control">
312
- <input type="text" name="tutor_annoument_title" id="tutor-announcement-title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
313
  </div>
314
  </div>
315
 
@@ -319,7 +319,7 @@ $notify_checked = tutils()->get_option('email_to_students.new_announcement_poste
319
  </label>
320
 
321
  <div class="tutor-announcement-form-control">
322
- <textarea rows="8" type="text" id="tutor-announcement-summary" name="tutor_annoument_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
323
  </div>
324
  </div>
325
  <?php if ($notify_checked) : ?>
220
  </label>
221
 
222
  <div class="tutor-announcement-form-control">
223
+ <input type="text" name="tutor_announcement_title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
224
  </div>
225
  </div>
226
 
230
  </label>
231
 
232
  <div class="tutor-announcement-form-control">
233
+ <textarea rows="6" type="text" name="tutor_announcement_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
234
  </div>
235
  </div>
236
  <?php if ($notify_checked) : ?>
309
  </label>
310
 
311
  <div class="tutor-announcement-form-control">
312
+ <input type="text" name="tutor_announcement_title" id="tutor-announcement-title" value="" placeholder="<?php _e('Announcement title', 'tutor'); ?>" required>
313
  </div>
314
  </div>
315
 
319
  </label>
320
 
321
  <div class="tutor-announcement-form-control">
322
+ <textarea rows="6" type="text" id="tutor-announcement-summary" name="tutor_announcement_summary" value="" placeholder="<?php _e('Summary...', 'tutor'); ?>" required></textarea>
323
  </div>
324
  </div>
325
  <?php if ($notify_checked) : ?>
views/pages/view_attempt.php CHANGED
@@ -362,6 +362,6 @@ $user = get_userdata($user_id);
362
  </div>
363
  <div class="tutor-instructor-feedback-wrap">
364
  <textarea class="tutor-instructor-feedback-content" style="width:100%; height: 100px;"><?php echo get_post_meta($attempt_id, 'instructor_feedback', true); ?></textarea>
365
- <a class="tutor-button tutor-button-primary tutor-instructor-feedback" data-attemptid="<?php echo $attempt_id; ?>"><?php _e('Update', 'tutor'); ?></a>
366
  </div>
367
  </div>
362
  </div>
363
  <div class="tutor-instructor-feedback-wrap">
364
  <textarea class="tutor-instructor-feedback-content" style="width:100%; height: 100px;"><?php echo get_post_meta($attempt_id, 'instructor_feedback', true); ?></textarea>
365
+ <a class="tutor-button tutor-button-primary tutor-instructor-feedback" data-attemptid="<?php echo $attempt_id; ?>" data-toast_error="<?php _e('Error', 'tutor'); ?>" data-toast_error_message="<?php _e('Action Failed', 'tutor'); ?>" data-toast_success="<?php _e('Success', 'tutor'); ?>" data-toast_success_message="<?php _e('Updated', 'tutor'); ?>"><?php _e('Update', 'tutor'); ?></a>
366
  </div>
367
  </div>