zarebin-player-library 1.0.31 → 1.0.33

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.
@@ -87,4 +87,4 @@ export declare const hexToRGB: (hex: string, alpha?: number) => string;
87
87
  export declare const checkIsOnPremise: (baseUrl: string) => string;
88
88
  export declare const handle360: () => Promise<View360>;
89
89
  export declare const providerHandler: (ignoreSendProvider?: boolean) => string | undefined;
90
- export declare const getRandomAd: (ads: Ad[]) => Ad | undefined;
90
+ export declare const getRandomAd: (ads: Ad[]) => Ad;
@@ -31,7 +31,8 @@ export declare const enum zIndex {
31
31
  maxPopover = 1000005,
32
32
  videoPlayerInPictureInPicture = 1000006,
33
33
  trailer = 1000007,
34
- commentAnswer = 1000008
34
+ commentAnswer = 1000008,
35
+ ad = 1000001
35
36
  }
36
37
  export declare const enum ContentTypes {
37
38
  Vod = 0,
@@ -91,7 +91,10 @@ export interface IParams {
91
91
  uuid?: string;
92
92
  handleRedirectCards?: (id: string, type: string) => void;
93
93
  homeButtonClickFlag?: number | null;
94
- ad?: Ad;
94
+ ad?: {
95
+ adUserId: string;
96
+ onAdView?: () => void;
97
+ } | undefined;
95
98
  redirectOnEndedUrl?: string;
96
99
  lang?: "ar" | "fa" | "en";
97
100
  }
@@ -432,6 +435,7 @@ export interface IVideoDataSlice {
432
435
  showScreen: boolean;
433
436
  trailer: any[];
434
437
  hlsLiveSyncPosition: number;
438
+ adData: Ad | undefined;
435
439
  }
436
440
  export interface ISubtitle {
437
441
  id: number;
@@ -1,5 +1,5 @@
1
- import { IDetails, IMarker, IPlayList, IVideoDataSlice, IVideoElementSizeInfo, IWebListConfig } from '../../interfaces';
1
+ import { Ad, IDetails, IMarker, IPlayList, IVideoDataSlice, IVideoElementSizeInfo, IWebListConfig } from '../../interfaces';
2
2
  export declare const VideoDataSliceState: IVideoDataSlice;
3
- export declare const setInfo: import('@reduxjs/toolkit').ActionCreatorWithPayload<IDetails, "videoData/setInfo">, setPlayerParams: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setPlayerParams">, setStreamLinkParams: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "videoData/setStreamLinkParams">, setMarkers: import('@reduxjs/toolkit').ActionCreatorWithPayload<IMarker[], "videoData/setMarkers">, setLiveId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "videoData/setLiveId">, setVodId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "videoData/setVodId">, setOnlineViewers: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setOnlineViewers">, setQuestion: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setQuestion">, setSelectedOptionId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number | null, "videoData/setSelectedOptionId">, setEmojis: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setEmojis">, setAlternative_Lives: import('@reduxjs/toolkit').ActionCreatorWithPayload<number[], "videoData/setAlternative_Lives">, setConfig: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setConfig">, setIsLiveError: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsLiveError">, setEmojiList1: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "videoData/setEmojiList1">, setEmojiList2: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "videoData/setEmojiList2">, setGif: import('@reduxjs/toolkit').ActionCreatorWithPayload<string | null, "videoData/setGif">, setErrorType: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<string | undefined, "videoData/setErrorType">, setMultiLives: import('@reduxjs/toolkit').ActionCreatorWithPayload<any[], "videoData/setMultiLives">, setMultiAudio: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setMultiAudio">, setSelectedAudioId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "videoData/setSelectedAudioId">, setSubtitles: import('@reduxjs/toolkit').ActionCreatorWithPayload<TextTrack[], "videoData/setSubtitles">, setSelectedSubtitle: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setSelectedSubtitle">, setSubtitleText: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "videoData/setSubtitleText">, setIsComplexPortrait: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsComplexPortrait">, setIsComplexDesktop: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsComplexDesktop">, setVideoElementSizeInfo: import('@reduxjs/toolkit').ActionCreatorWithPayload<IVideoElementSizeInfo, "videoData/setVideoElementSizeInfo">, setRecommendationList: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setRecommendationList">, setToken: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "videoData/setToken">, setIsFetchDetails: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsFetchDetails">, setIsValidAddress: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsValidAddress">, setPlayList: import('@reduxjs/toolkit').ActionCreatorWithPayload<IPlayList[], "videoData/setPlayList">, setVideoTimelines: import('@reduxjs/toolkit').ActionCreatorWithPayload<number[], "videoData/setVideoTimelines">, setWebListConfig: import('@reduxjs/toolkit').ActionCreatorWithPayload<IWebListConfig[], "videoData/setWebListConfig">, setChartPoints: import('@reduxjs/toolkit').ActionCreatorWithPayload<number[], "videoData/setChartPoints">, setIsReady: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsReady">, setClearVideoDataSlice: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<"videoData/setClearVideoDataSlice">, setShowScreen: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setShowScreen">, setTrailer: import('@reduxjs/toolkit').ActionCreatorWithPayload<any[], "videoData/setTrailer">;
3
+ export declare const setInfo: import('@reduxjs/toolkit').ActionCreatorWithPayload<IDetails, "videoData/setInfo">, setPlayerParams: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setPlayerParams">, setStreamLinkParams: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "videoData/setStreamLinkParams">, setMarkers: import('@reduxjs/toolkit').ActionCreatorWithPayload<IMarker[], "videoData/setMarkers">, setLiveId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "videoData/setLiveId">, setVodId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "videoData/setVodId">, setOnlineViewers: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setOnlineViewers">, setQuestion: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setQuestion">, setSelectedOptionId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number | null, "videoData/setSelectedOptionId">, setEmojis: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setEmojis">, setAlternative_Lives: import('@reduxjs/toolkit').ActionCreatorWithPayload<number[], "videoData/setAlternative_Lives">, setConfig: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setConfig">, setIsLiveError: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsLiveError">, setEmojiList1: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "videoData/setEmojiList1">, setEmojiList2: import('@reduxjs/toolkit').ActionCreatorWithPayload<string[], "videoData/setEmojiList2">, setGif: import('@reduxjs/toolkit').ActionCreatorWithPayload<string | null, "videoData/setGif">, setErrorType: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<string | undefined, "videoData/setErrorType">, setMultiLives: import('@reduxjs/toolkit').ActionCreatorWithPayload<any[], "videoData/setMultiLives">, setMultiAudio: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setMultiAudio">, setSelectedAudioId: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "videoData/setSelectedAudioId">, setSubtitles: import('@reduxjs/toolkit').ActionCreatorWithPayload<TextTrack[], "videoData/setSubtitles">, setSelectedSubtitle: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setSelectedSubtitle">, setSubtitleText: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "videoData/setSubtitleText">, setIsComplexPortrait: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsComplexPortrait">, setIsComplexDesktop: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsComplexDesktop">, setVideoElementSizeInfo: import('@reduxjs/toolkit').ActionCreatorWithPayload<IVideoElementSizeInfo, "videoData/setVideoElementSizeInfo">, setRecommendationList: import('@reduxjs/toolkit').ActionCreatorWithPayload<any, "videoData/setRecommendationList">, setToken: import('@reduxjs/toolkit').ActionCreatorWithPayload<string, "videoData/setToken">, setIsFetchDetails: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsFetchDetails">, setIsValidAddress: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsValidAddress">, setPlayList: import('@reduxjs/toolkit').ActionCreatorWithPayload<IPlayList[], "videoData/setPlayList">, setVideoTimelines: import('@reduxjs/toolkit').ActionCreatorWithPayload<number[], "videoData/setVideoTimelines">, setWebListConfig: import('@reduxjs/toolkit').ActionCreatorWithPayload<IWebListConfig[], "videoData/setWebListConfig">, setChartPoints: import('@reduxjs/toolkit').ActionCreatorWithPayload<number[], "videoData/setChartPoints">, setIsReady: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setIsReady">, setClearVideoDataSlice: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<"videoData/setClearVideoDataSlice">, setShowScreen: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "videoData/setShowScreen">, setTrailer: import('@reduxjs/toolkit').ActionCreatorWithPayload<any[], "videoData/setTrailer">, setAdData: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<Ad | undefined, "videoData/setAdData">;
4
4
  declare const _default: import('redux').Reducer<IVideoDataSlice>;
5
5
  export default _default;
@@ -1,6 +1,7 @@
1
1
  export declare const API: () => {
2
2
  Ad: {
3
3
  getVast: string;
4
+ list: (user_id: number, v?: string) => string;
4
5
  };
5
6
  live: {
6
7
  anonListConfigs: string;
@@ -1,9 +1,6 @@
1
- import { Ad, IParams } from '../../../../interfaces';
2
1
  interface Props {
3
- ad: Ad;
4
- params: IParams;
5
2
  skipCounter: number | null;
6
3
  currentTime: number;
7
4
  }
8
- declare const SkipButton: ({ ad, params, skipCounter }: Props) => import("react/jsx-runtime").JSX.Element;
5
+ declare const SkipButton: ({ skipCounter }: Props) => import("react/jsx-runtime").JSX.Element;
9
6
  export default SkipButton;
@@ -1,8 +1,4 @@
1
- interface AdData {
2
- url: string;
3
- ad_link?: string;
4
- mandatory_play_time?: number;
5
- }
1
+ import { Ad } from '../../../../../interfaces';
6
2
  interface UseVideoControlsResult {
7
3
  progress: number;
8
4
  buffered: number;
@@ -14,5 +10,5 @@ interface UseVideoControlsResult {
14
10
  skipCounter: number | null;
15
11
  hasSkip: boolean;
16
12
  }
17
- declare const useVideoControls: (ad?: AdData, params?: any) => UseVideoControlsResult;
13
+ declare const useVideoControls: (ad?: Ad, params?: any) => UseVideoControlsResult;
18
14
  export default useVideoControls;
@@ -11056,6 +11056,8 @@ video {
11056
11056
  position: relative !important;
11057
11057
  }.pl-relative{
11058
11058
  position: relative;
11059
+ }.pl-inset-0{
11060
+ inset: 0px;
11059
11061
  }.\!pl-bottom-0{
11060
11062
  bottom: 0px !important;
11061
11063
  }.\!pl-bottom-\[10px\]{
@@ -11072,6 +11074,8 @@ video {
11072
11074
  left: 0px !important;
11073
11075
  }.\!pl-left-10{
11074
11076
  left: 2.5rem !important;
11077
+ }.\!pl-left-8{
11078
+ left: 2rem !important;
11075
11079
  }.\!pl-right-0{
11076
11080
  right: 0px !important;
11077
11081
  }.\!pl-right-\[-10px\]{
@@ -11138,8 +11142,12 @@ video {
11138
11142
  bottom: 45px;
11139
11143
  }.pl-bottom-\[50px\]{
11140
11144
  bottom: 50px;
11145
+ }.pl-bottom-\[56px\]{
11146
+ bottom: 56px;
11141
11147
  }.pl-bottom-\[60px\]{
11142
11148
  bottom: 60px;
11149
+ }.pl-bottom-\[66px\]{
11150
+ bottom: 66px;
11143
11151
  }.pl-bottom-\[75px\]{
11144
11152
  bottom: 75px;
11145
11153
  }.pl-bottom-auto{
@@ -11158,6 +11166,8 @@ video {
11158
11166
  left: 0.5rem;
11159
11167
  }.pl-left-3{
11160
11168
  left: 0.75rem;
11169
+ }.pl-left-6{
11170
+ left: 1.5rem;
11161
11171
  }.pl-left-9{
11162
11172
  left: 2.25rem;
11163
11173
  }.pl-left-\[160px\]{
@@ -11264,6 +11274,10 @@ video {
11264
11274
  z-index: 1000;
11265
11275
  }.pl-z-\[1\]{
11266
11276
  z-index: 1;
11277
+ }.pl-z-\[2\]{
11278
+ z-index: 2;
11279
+ }.pl-z-\[3\]{
11280
+ z-index: 3;
11267
11281
  }.pl-order-1{
11268
11282
  order: 1;
11269
11283
  }.pl-order-2{
@@ -11496,6 +11510,14 @@ video {
11496
11510
  }.pl-size-6{
11497
11511
  width: 1.5rem;
11498
11512
  height: 1.5rem;
11513
+ }.pl-size-full{
11514
+ width: 100%;
11515
+ height: 100%;
11516
+ }.pl-size-max{
11517
+ width: -moz-max-content;
11518
+ width: max-content;
11519
+ height: -moz-max-content;
11520
+ height: max-content;
11499
11521
  }.\!pl-h-5{
11500
11522
  height: 1.25rem !important;
11501
11523
  }.\!pl-h-6{
@@ -11529,10 +11551,6 @@ video {
11529
11551
  height: 0.25rem;
11530
11552
  }.pl-h-1\.5{
11531
11553
  height: 0.375rem;
11532
- }.pl-h-10{
11533
- height: 2.5rem;
11534
- }.pl-h-11{
11535
- height: 2.75rem;
11536
11554
  }.pl-h-12{
11537
11555
  height: 3rem;
11538
11556
  }.pl-h-2{
@@ -11707,8 +11725,6 @@ video {
11707
11725
  width: 0.5rem;
11708
11726
  }.pl-w-2\/3{
11709
11727
  width: 66.666667%;
11710
- }.pl-w-20{
11711
- width: 5rem;
11712
11728
  }.pl-w-3{
11713
11729
  width: 0.75rem;
11714
11730
  }.pl-w-4{
@@ -11811,8 +11827,6 @@ video {
11811
11827
  width: 65vw;
11812
11828
  }.pl-w-\[71px\]{
11813
11829
  width: 71px;
11814
- }.pl-w-\[72px\]{
11815
- width: 72px;
11816
11830
  }.pl-w-\[790px\]{
11817
11831
  width: 790px;
11818
11832
  }.pl-w-\[80\%\]{
@@ -11933,10 +11947,14 @@ video {
11933
11947
  grid-template-columns: repeat(4, minmax(0, 1fr));
11934
11948
  }.pl-flex-row{
11935
11949
  flex-direction: row;
11950
+ }.\!pl-flex-row-reverse{
11951
+ flex-direction: row-reverse !important;
11936
11952
  }.pl-flex-row-reverse{
11937
11953
  flex-direction: row-reverse;
11938
11954
  }.pl-flex-col{
11939
11955
  flex-direction: column;
11956
+ }.\!pl-flex-col-reverse{
11957
+ flex-direction: column-reverse !important;
11940
11958
  }.pl-flex-col-reverse{
11941
11959
  flex-direction: column-reverse;
11942
11960
  }.pl-flex-wrap{
@@ -11945,6 +11963,8 @@ video {
11945
11963
  flex-wrap: nowrap;
11946
11964
  }.pl-content-center{
11947
11965
  align-content: center;
11966
+ }.\!pl-items-start{
11967
+ align-items: flex-start !important;
11948
11968
  }.pl-items-start{
11949
11969
  align-items: flex-start;
11950
11970
  }.\!pl-items-end{
@@ -11961,10 +11981,14 @@ video {
11961
11981
  justify-content: flex-end;
11962
11982
  }.pl-justify-center{
11963
11983
  justify-content: center;
11984
+ }.\!pl-justify-between{
11985
+ justify-content: space-between !important;
11964
11986
  }.pl-justify-between{
11965
11987
  justify-content: space-between;
11966
11988
  }.pl-justify-around{
11967
11989
  justify-content: space-around;
11990
+ }.\!pl-gap-0{
11991
+ gap: 0px !important;
11968
11992
  }.pl-gap-0\.5{
11969
11993
  gap: 0.125rem;
11970
11994
  }.pl-gap-1{
@@ -12021,12 +12045,16 @@ video {
12021
12045
  --tw-space-y-reverse: 0;
12022
12046
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
12023
12047
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
12048
+ }.\!pl-self-start{
12049
+ align-self: flex-start !important;
12024
12050
  }.pl-self-start{
12025
12051
  align-self: flex-start;
12026
12052
  }.pl-self-end{
12027
12053
  align-self: flex-end;
12028
12054
  }.pl-self-center{
12029
12055
  align-self: center;
12056
+ }.\!pl-self-stretch{
12057
+ align-self: stretch !important;
12030
12058
  }.\!pl-overflow-auto{
12031
12059
  overflow: auto !important;
12032
12060
  }.pl-overflow-auto{
@@ -12097,6 +12125,10 @@ video {
12097
12125
  border-radius: 8px;
12098
12126
  }.pl-rounded-full{
12099
12127
  border-radius: 9999px;
12128
+ }.pl-rounded-lg{
12129
+ border-radius: 0.5rem;
12130
+ }.pl-rounded-md{
12131
+ border-radius: 0.375rem;
12100
12132
  }.\!pl-rounded-b-none{
12101
12133
  border-bottom-right-radius: 0px !important;
12102
12134
  border-bottom-left-radius: 0px !important;
@@ -12352,6 +12384,9 @@ video {
12352
12384
  }.pl-bg-gray-300{
12353
12385
  --tw-bg-opacity: 1;
12354
12386
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
12387
+ }.pl-bg-gray-500{
12388
+ --tw-bg-opacity: 1;
12389
+ background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
12355
12390
  }.pl-bg-gray-800{
12356
12391
  --tw-bg-opacity: 1;
12357
12392
  background-color: rgb(21 21 21 / var(--tw-bg-opacity, 1));
@@ -12386,6 +12421,9 @@ video {
12386
12421
  background-color: rgb(101 31 255 / 0.1);
12387
12422
  }.pl-bg-orange-100\/\[0\.4\]{
12388
12423
  background-color: rgb(241 95 34 / 0.4);
12424
+ }.pl-bg-primary-500{
12425
+ --tw-bg-opacity: 1;
12426
+ background-color: rgb(80 165 255 / var(--tw-bg-opacity, 1));
12389
12427
  }.pl-bg-primary-600{
12390
12428
  --tw-bg-opacity: 1;
12391
12429
  background-color: rgb(124 142 255 / var(--tw-bg-opacity, 1));
@@ -12468,6 +12506,10 @@ video {
12468
12506
  }.pl-bg-z-secondary-100{
12469
12507
  --tw-bg-opacity: 1;
12470
12508
  background-color: rgb(219 221 222 / var(--tw-bg-opacity, 1));
12509
+ }.pl-bg-z-secondary-100\/\[0\.4\]{
12510
+ background-color: rgb(219 221 222 / 0.4);
12511
+ }.pl-bg-z-secondary-50\/\[0\.4\]{
12512
+ background-color: rgb(250 250 250 / 0.4);
12471
12513
  }.pl-bg-z-secondary-600{
12472
12514
  --tw-bg-opacity: 1;
12473
12515
  background-color: rgb(87 88 90 / var(--tw-bg-opacity, 1));
@@ -12555,6 +12597,8 @@ video {
12555
12597
  padding: 0px !important;
12556
12598
  }.pl-p-0{
12557
12599
  padding: 0px;
12600
+ }.pl-p-0\.5{
12601
+ padding: 0.125rem;
12558
12602
  }.pl-p-1{
12559
12603
  padding: 0.25rem;
12560
12604
  }.pl-p-1\.5{
@@ -12778,6 +12822,8 @@ video {
12778
12822
  padding-top: 2.5px;
12779
12823
  }.pl-pt-\[2px\]{
12780
12824
  padding-top: 2px;
12825
+ }.pl-pt-\[30px\]{
12826
+ padding-top: 30px;
12781
12827
  }.pl-pt-\[8px\]{
12782
12828
  padding-top: 8px;
12783
12829
  }.pl-text-left{
@@ -12824,6 +12870,9 @@ video {
12824
12870
  font-size: 8px;
12825
12871
  }.pl-text-\[9px\]{
12826
12872
  font-size: 9px;
12873
+ }.pl-text-xs{
12874
+ font-size: 0.75rem;
12875
+ line-height: 1rem;
12827
12876
  }.\!pl-font-medium{
12828
12877
  font-weight: 500 !important;
12829
12878
  }.pl-font-\[700\]{
@@ -13232,8 +13281,20 @@ video {
13232
13281
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
13233
13282
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
13234
13283
  }
13235
- }@media (min-width: 1024px){.lg\:pl-w-\[40\%\]{
13284
+ }@media (min-width: 1024px){.lg\:pl-bottom-\[78px\]{
13285
+ bottom: 78px;
13286
+ }.lg\:pl-bottom-\[88px\]{
13287
+ bottom: 88px;
13288
+ }.lg\:pl-h-10{
13289
+ height: 2.5rem;
13290
+ }.lg\:pl-h-11{
13291
+ height: 2.75rem;
13292
+ }.lg\:pl-w-\[40\%\]{
13236
13293
  width: 40%;
13294
+ }.lg\:pl-pb-4{
13295
+ padding-bottom: 1rem;
13296
+ }.lg\:pl-text-\[14px\]{
13297
+ font-size: 14px;
13237
13298
  }
13238
13299
  }@media (min-width: 1280px){.xl\:pl-w-\[50\%\]{
13239
13300
  width: 50%;