@rolatech/angular-course 17.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/esm2022/index.mjs +4 -0
- package/esm2022/lib/components/course-action/course-action.component.mjs +27 -0
- package/esm2022/lib/components/course-details/course-details.component.mjs +27 -0
- package/esm2022/lib/components/course-info/course-info.component.mjs +19 -0
- package/esm2022/lib/components/course-item/course-item.component.mjs +15 -0
- package/esm2022/lib/components/course-media/course-media.component.mjs +34 -0
- package/esm2022/lib/components/course-media-owner-renderer/course-media-owner-renderer.component.mjs +20 -0
- package/esm2022/lib/components/course-pricing/course-pricing.component.mjs +14 -0
- package/esm2022/lib/components/course-schedule/course-schedule.component.mjs +22 -0
- package/esm2022/lib/components/course-sections/course-sections.component.mjs +30 -0
- package/esm2022/lib/interfaces/category.mjs +2 -0
- package/esm2022/lib/interfaces/course.mjs +146 -0
- package/esm2022/lib/interfaces/index.mjs +2 -0
- package/esm2022/lib/interfaces/media.mjs +2 -0
- package/esm2022/lib/pages/course/course-category/course-category.component.mjs +74 -0
- package/esm2022/lib/pages/course/course-detail/course-detail.component.mjs +157 -0
- package/esm2022/lib/pages/course/course-index/course-index.component.mjs +53 -0
- package/esm2022/lib/pages/course/course-layout/course-layout.component.mjs +49 -0
- package/esm2022/lib/pages/course/course-section-content/course-section-content.component.mjs +140 -0
- package/esm2022/lib/pages/course/course.routes.mjs +34 -0
- package/esm2022/lib/services/category.service.mjs +38 -0
- package/esm2022/lib/services/course-section.service.mjs +26 -0
- package/esm2022/lib/services/course.service.mjs +280 -0
- package/esm2022/lib/services/index.mjs +6 -0
- package/esm2022/provider.mjs +13 -0
- package/esm2022/rolatech-angular-course.mjs +5 -0
- package/fesm2022/rolatech-angular-course.mjs +1139 -0
- package/fesm2022/rolatech-angular-course.mjs.map +1 -0
- package/index.d.ts +3 -0
- package/lib/components/course-action/course-action.component.d.ts +14 -0
- package/lib/components/course-details/course-details.component.d.ts +20 -0
- package/lib/components/course-info/course-info.component.d.ts +9 -0
- package/lib/components/course-item/course-item.component.d.ts +8 -0
- package/lib/components/course-media/course-media.component.d.ts +12 -0
- package/lib/components/course-media-owner-renderer/course-media-owner-renderer.component.d.ts +8 -0
- package/lib/components/course-pricing/course-pricing.component.d.ts +7 -0
- package/lib/components/course-schedule/course-schedule.component.d.ts +10 -0
- package/lib/components/course-sections/course-sections.component.d.ts +19 -0
- package/lib/interfaces/category.d.ts +16 -0
- package/lib/interfaces/course.d.ts +143 -0
- package/lib/interfaces/index.d.ts +3 -0
- package/lib/interfaces/media.d.ts +9 -0
- package/lib/pages/course/course-category/course-category.component.d.ts +21 -0
- package/lib/pages/course/course-detail/course-detail.component.d.ts +36 -0
- package/lib/pages/course/course-index/course-index.component.d.ts +18 -0
- package/lib/pages/course/course-layout/course-layout.component.d.ts +17 -0
- package/lib/pages/course/course-section-content/course-section-content.component.d.ts +40 -0
- package/lib/pages/course/course.routes.d.ts +2 -0
- package/lib/services/category.service.d.ts +12 -0
- package/lib/services/course-section.service.d.ts +10 -0
- package/lib/services/course.service.d.ts +65 -0
- package/lib/services/index.d.ts +5 -0
- package/package.json +31 -0
- package/provider.d.ts +2 -0
- package/themes/_default.scss +1 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { CourseSection, CourseSectionLectureContentType } from '../../../interfaces';
|
|
3
|
+
import { CourseSectionService, CourseService } from '../../../services';
|
|
4
|
+
import { AuthService, AuthUserService } from '@rolatech/angular-auth';
|
|
5
|
+
import { BaseComponent } from '@rolatech/angular-components';
|
|
6
|
+
import { ViewportScroller } from '@angular/common';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class CourseDetailComponent extends BaseComponent implements OnInit {
|
|
9
|
+
course: any;
|
|
10
|
+
status: any;
|
|
11
|
+
authService: AuthService;
|
|
12
|
+
authUserService: AuthUserService;
|
|
13
|
+
courseService: CourseService;
|
|
14
|
+
viewportScroller: ViewportScroller;
|
|
15
|
+
courseSectionService: CourseSectionService;
|
|
16
|
+
instructorName: string;
|
|
17
|
+
username: string;
|
|
18
|
+
inWishList: boolean;
|
|
19
|
+
purchased: boolean;
|
|
20
|
+
sections: CourseSection[];
|
|
21
|
+
type: typeof CourseSectionLectureContentType;
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
scrollToAnchor(anchorId: string): void;
|
|
24
|
+
findOne(): void;
|
|
25
|
+
findSections(): void;
|
|
26
|
+
findUserBaseInfo(userId: string): void;
|
|
27
|
+
onWish(e: any): void;
|
|
28
|
+
checkout(e: any): void;
|
|
29
|
+
private removeFromWishlist;
|
|
30
|
+
private addToWishlist;
|
|
31
|
+
onSection(event: any): void;
|
|
32
|
+
private findWishlistBy;
|
|
33
|
+
findPurchasedByCourseId(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseDetailComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CourseDetailComponent, "rolatech-course-detail", never, {}, {}, never, never, true, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { CourseCategory, Course } from '../../../interfaces';
|
|
3
|
+
import { CategoryService, CourseService } from '../../../services';
|
|
4
|
+
import { BaseComponent } from '@rolatech/angular-components';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CourseIndexComponent extends BaseComponent implements OnInit {
|
|
7
|
+
courses: Course[];
|
|
8
|
+
categories: CourseCategory[];
|
|
9
|
+
courseService: CourseService;
|
|
10
|
+
categoryService: CategoryService;
|
|
11
|
+
meta: any;
|
|
12
|
+
loading: boolean;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
findCourses(): void;
|
|
15
|
+
findCategories(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseIndexComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CourseIndexComponent, "rolatech-course-index", never, {}, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { CourseCategory } from '../../../interfaces';
|
|
3
|
+
import { CategoryService, CourseService } from '../../../services';
|
|
4
|
+
import { BaseComponent } from '@rolatech/angular-components';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CourseLayoutComponent extends BaseComponent implements OnInit {
|
|
7
|
+
categories: CourseCategory[];
|
|
8
|
+
categoryService: CategoryService;
|
|
9
|
+
courseService: CourseService;
|
|
10
|
+
selectIndex: number;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
findCategories(): void;
|
|
13
|
+
loadCourseByCategoryIndex(index: number): void;
|
|
14
|
+
nextCategory(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseLayoutComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CourseLayoutComponent, "rolatech-course-layout", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { CourseSection } from '../../../interfaces';
|
|
4
|
+
import { CourseSectionService, CourseService } from '../../../services';
|
|
5
|
+
import { AuthService, AuthUserService } from '@rolatech/angular-auth';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CourseSectionContentComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
8
|
+
route: ActivatedRoute;
|
|
9
|
+
router: Router;
|
|
10
|
+
courseSectionService: CourseSectionService;
|
|
11
|
+
courseService: CourseService;
|
|
12
|
+
authService: AuthService;
|
|
13
|
+
authUserService: AuthUserService;
|
|
14
|
+
el: ElementRef<any>;
|
|
15
|
+
platformId: Object;
|
|
16
|
+
player: any;
|
|
17
|
+
sections: CourseSection[];
|
|
18
|
+
courseId: string;
|
|
19
|
+
sectionId: string;
|
|
20
|
+
lectureId: string;
|
|
21
|
+
videoUrl: any;
|
|
22
|
+
instructorName: string;
|
|
23
|
+
instructorAvatar: string;
|
|
24
|
+
instructorUsername: string;
|
|
25
|
+
course: any;
|
|
26
|
+
purchased: boolean;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
ngAfterViewInit(): void;
|
|
30
|
+
initPlayer(url: string, thumbnail?: string): void;
|
|
31
|
+
findSections(courseId: any): void;
|
|
32
|
+
findCourse(courseId: string): void;
|
|
33
|
+
findUserBaseInfo(userId: string): void;
|
|
34
|
+
introspect(): void;
|
|
35
|
+
findPurchasedByCourseId(): void;
|
|
36
|
+
onSection(event: any): void;
|
|
37
|
+
checkout(e: any): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseSectionContentComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CourseSectionContentComponent, "rolatech-course-section-content", never, {}, {}, never, never, true, never>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { BaseService } from '@rolatech/angular-services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CategoryService extends BaseService {
|
|
5
|
+
init(): void;
|
|
6
|
+
uploadMedia(id: string, data: FormData): Observable<any>;
|
|
7
|
+
deleteMedia(id: string, mediaId: string): Observable<any>;
|
|
8
|
+
importFromExcel(data: FormData): Observable<any>;
|
|
9
|
+
createFromExcel(data: any): Observable<any>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CategoryService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CategoryService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseService } from '@rolatech/angular-services';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CourseSectionService extends BaseService {
|
|
5
|
+
init(): void;
|
|
6
|
+
findSections(id: string): Observable<any>;
|
|
7
|
+
canBePreviewed(videoId: any, data: any): Observable<any>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseSectionService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CourseSectionService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { BaseService } from '@rolatech/angular-services';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CourseService extends BaseService {
|
|
5
|
+
init(): void;
|
|
6
|
+
me(options: any): Observable<any>;
|
|
7
|
+
findSchedule(id: string): Observable<any>;
|
|
8
|
+
findPricing(id: string): Observable<any>;
|
|
9
|
+
addDetail(id: string, data: any): Observable<any>;
|
|
10
|
+
addBatchDetails(id: string, data: any): Observable<any>;
|
|
11
|
+
findDetails(id: string): Observable<any>;
|
|
12
|
+
updateDetail(id: string, detailId: string, data: any): Observable<any>;
|
|
13
|
+
deleteDetail(id: string, detailId: string): Observable<any>;
|
|
14
|
+
uploadDetailMedia(id: string, detailId: string, data: FormData): Observable<any>;
|
|
15
|
+
deleteDetailMedia(id: string, detailId: string, mediaId: string): Observable<any>;
|
|
16
|
+
review(id: string): Observable<any>;
|
|
17
|
+
start(id: string): Observable<any>;
|
|
18
|
+
finish(id: string): Observable<any>;
|
|
19
|
+
publish(id: string): Observable<any>;
|
|
20
|
+
upload(data: FormData): Observable<any>;
|
|
21
|
+
uploadMedia(id: string, data: FormData): Observable<any>;
|
|
22
|
+
deleteMedia(id: string, mediaId: string): Observable<any>;
|
|
23
|
+
importFromExcel(data: FormData): Observable<any>;
|
|
24
|
+
createFromExcel(data: any): Observable<any>;
|
|
25
|
+
findAllRequests(options: any): Observable<any>;
|
|
26
|
+
findRequestDetail(id: string): Observable<any>;
|
|
27
|
+
accept(id: string): Observable<any>;
|
|
28
|
+
reject(id: string, body: any): Observable<any>;
|
|
29
|
+
acceptRequest(id: string): Observable<any>;
|
|
30
|
+
rejectRequest(id: string, body: any): Observable<any>;
|
|
31
|
+
addPricing(id: string, data: any): Observable<any>;
|
|
32
|
+
updatePricing(id: string, pricingId: string, data: any): Observable<any>;
|
|
33
|
+
deletePricing(id: string, pricingId: string): Observable<any>;
|
|
34
|
+
addSchedule(id: string, data: any): Observable<any>;
|
|
35
|
+
updateSchedule(id: string, scheduleId: string, data: any): Observable<any>;
|
|
36
|
+
deleteSchedule(id: string, scheduleId: string): Observable<any>;
|
|
37
|
+
findAllReviews(options: any): Observable<any>;
|
|
38
|
+
getReview(id: string): Observable<any>;
|
|
39
|
+
findReviews(options: any): Observable<any>;
|
|
40
|
+
countUsers(options: any): Observable<any>;
|
|
41
|
+
findByIds(ids: string): Observable<any>;
|
|
42
|
+
findWishlist(options: any): Observable<Object>;
|
|
43
|
+
addToWishlist(courseId: string): Observable<Object>;
|
|
44
|
+
removeFromWishlist(courseId: string): Observable<Object>;
|
|
45
|
+
findWishlistBy(courseId: string): Observable<Object>;
|
|
46
|
+
findMyCourses(options: any): Observable<Object>;
|
|
47
|
+
findPurchasedByCourseId(courseId: string): Observable<Object>;
|
|
48
|
+
deleteFromWishlist(sectionId: string): Observable<Object>;
|
|
49
|
+
findCourseSections(options: any): Observable<Object>;
|
|
50
|
+
addCourseSection(courseId: any, data: any): Observable<any>;
|
|
51
|
+
updateCourseSection(sectionId: any, data: any): Observable<any>;
|
|
52
|
+
deleteCourseSection(sectionId: any): Observable<any>;
|
|
53
|
+
getCourseSection(courseId: any): Observable<any>;
|
|
54
|
+
addLecture(sectionId: string, data: any): Observable<any>;
|
|
55
|
+
updateLecture(lectureId: string, data: any): Observable<any>;
|
|
56
|
+
deleteLecture(lectureId: any): Observable<any>;
|
|
57
|
+
uploadVideoInit(lectureId: string, data: any): Observable<any>;
|
|
58
|
+
uploadVideoPartsToLecture(lectureId: string, data: FormData): Observable<any>;
|
|
59
|
+
completePartUpload(lectureId: string, data: any): Observable<any>;
|
|
60
|
+
uploadVideoToLecture(lectureId: string, data: any): Observable<any>;
|
|
61
|
+
deleteLectureVideo(videoId: any): Observable<any>;
|
|
62
|
+
uploadLectureVideoThumbnail(videoId: any, data: FormData): Observable<any>;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
|
|
64
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
|
|
65
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CourseService } from './course.service';
|
|
2
|
+
import { CourseSectionService } from './course-section.service';
|
|
3
|
+
import { CategoryService } from './category.service';
|
|
4
|
+
export { CourseService, CourseSectionService, CategoryService };
|
|
5
|
+
export declare const services: any[];
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rolatech/angular-course",
|
|
3
|
+
"version": "17.2.0",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^17.2.0",
|
|
6
|
+
"@angular/core": "^17.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.5.0"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/viablecell/rolatech-web.git"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"sass": "./themes/styles.scss",
|
|
20
|
+
"types": "./index.d.ts",
|
|
21
|
+
"esm2022": "./esm2022/rolatech-angular-course.mjs",
|
|
22
|
+
"esm": "./esm2022/rolatech-angular-course.mjs",
|
|
23
|
+
"default": "./fesm2022/rolatech-angular-course.mjs"
|
|
24
|
+
},
|
|
25
|
+
"./package.json": {
|
|
26
|
+
"default": "./package.json"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"module": "fesm2022/rolatech-angular-course.mjs",
|
|
30
|
+
"typings": "index.d.ts"
|
|
31
|
+
}
|
package/provider.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.right-0{right:0}.top-0{top:0}.z-20{z-index:20}.z-30{z-index:30}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.-m-1{margin:-.25rem}.m-auto{margin:auto}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.-ml-1{margin-left:-.25rem}.-ml-2{margin-left:-.5rem}.mb-0{margin-bottom:0}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-3{margin-bottom:.75rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-14{margin-left:3.5rem}.ml-2{margin-left:.5rem}.ml-24{margin-left:6rem}.ml-3{margin-left:.75rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.box-border{box-sizing:border-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical}.line-clamp-2{-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.aspect-video{aspect-ratio:16/9}.h-0{height:0}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-20{height:5rem}.h-24{height:6rem}.h-4{height:1rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-80{height:20rem}.h-9{height:2.25rem}.h-\[190px\]{height:190px}.h-\[256px\]{height:256px}.h-auto{height:auto}.h-fit{height:-moz-fit-content;height:fit-content}.h-full{height:100%}.max-h-32{max-height:8rem}.max-h-\[55vh\]{max-height:55vh}.min-h-10{min-height:2.5rem}.min-h-11{min-height:2.75rem}.min-h-\[28px\]{min-height:28px}.min-h-\[320px\]{min-height:320px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-14{width:3.5rem}.w-2\/3{width:66.666667%}.w-2\/5{width:40%}.w-20{width:5rem}.w-3\/5{width:60%}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-\[190px\]{width:190px}.w-\[256px\]{width:256px}.w-\[60px\]{width:60px}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-9{min-width:2.25rem}.min-w-\[256px\]{min-width:256px}.min-w-\[28px\]{min-width:28px}.min-w-\[320px\]{min-width:320px}.min-w-\[80\%\]{min-width:80%}.max-w-\[1120px\]{max-width:1120px}.max-w-\[1280px\]{max-width:1280px}.max-w-\[500px\]{max-width:500px}.max-w-lg{max-width:32rem}.flex-1{flex:1 1 0%}.grow{flex-grow:1}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.scale-90,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.whitespace-normal{white-space:normal}.whitespace-pre{white-space:pre}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-2{border-width:2px}.border-dashed{border-style:dashed}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-orange-500{--tw-bg-opacity:1;background-color:rgb(249 115 22/var(--tw-bg-opacity))}.bg-orange-600{--tw-bg-opacity:1;background-color:rgb(234 88 12/var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-fixed{background-attachment:fixed}.fill-current{fill:currentColor}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pl-8{padding-left:2rem}.pr-2{padding-right:.5rem}.pt-2{padding-top:.5rem}.pt-6{padding-top:1.5rem}.text-center{text-align:center}.text-right{text-align:right}.text-2xl{font-size:1.5rem;line-height:2rem}.text-\[0\.9rem\]{font-size:.9rem}.text-\[1rem\]{font-size:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-thin{font-weight:100}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-orange-500{--tw-text-opacity:1;color:rgb(249 115 22/var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity))}.text-transparent{color:transparent}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.underline-offset-2{text-underline-offset:2px}.opacity-30{opacity:.3}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.outline{outline-style:solid}.outline-dashed{outline-style:dashed}.outline-1{outline-width:1px}.outline-4{outline-width:4px}.outline-transparent{outline-color:transparent}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.hover\:rounded:hover{border-radius:.25rem}.hover\:bg-black:hover{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.hover\:bg-gray-300:hover{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.hover\:bg-orange-200:hover{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity))}.hover\:bg-orange-700:hover{--tw-bg-opacity:1;background-color:rgb(194 65 12/var(--tw-bg-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:outline-gray-200:hover{outline-color:#e5e7eb}.focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.group:hover .group-hover\:visible{visibility:visible}@media (min-width:640px){.sm\:visible{visibility:visible}.sm\:mb-1{margin-bottom:.25rem}.sm\:mt-4{margin-top:1rem}.sm\:block{display:block}.sm\:h-auto{height:auto}.sm\:h-full{height:100%}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-1\/4{width:25%}.sm\:w-3\/4{width:75%}.sm\:w-80{width:20rem}.sm\:w-\[30\%\]{width:30%}.sm\:w-\[70\%\]{width:70%}.sm\:min-w-\[33\%\]{min-width:33%}.sm\:flex-row{flex-direction:row}.sm\:flex-col{flex-direction:column}.sm\:items-start{align-items:flex-start}.sm\:gap-10{gap:2.5rem}.sm\:rounded-xl{border-radius:.75rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-16{padding-left:4rem;padding-right:4rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-3{padding-bottom:.75rem;padding-top:.75rem}.sm\:pr-6{padding-right:1.5rem}.sm\:text-lg{font-size:1.125rem}.sm\:text-lg,.sm\:text-xl{line-height:1.75rem}.sm\:text-xl{font-size:1.25rem}.sm\:hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}}@media (min-width:768px){.md\:w-1\/4{width:25%}.md\:min-w-\[25\%\]{min-width:25%}.md\:basis-1\/2{flex-basis:50%}.md\:flex-row{flex-direction:row}}@media (min-width:1024px){.lg\:w-1\/6{width:16.666667%}}@media (min-width:1280px){.xl\:max-w-\[1024px\]{max-width:1024px}}@media (min-width:1536px){.\32xl\:max-w-\[1280px\]{max-width:1280px}}@media (prefers-color-scheme:dark){.dark\:border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.dark\:placeholder-gray-400::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.dark\:focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.dark\:focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}}
|