@selfcommunity/react-theme-default 0.2.0-alpha.35 → 0.2.0-alpha.37

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.
@@ -19,6 +19,7 @@ declare const Component: {
19
19
  width: string;
20
20
  position: string;
21
21
  top: number;
22
+ zIndex: number;
22
23
  '& iframe': {
23
24
  width: string;
24
25
  margin: string;
@@ -28,6 +29,7 @@ declare const Component: {
28
29
  width: string;
29
30
  position: string;
30
31
  top: number;
32
+ zIndex: number;
31
33
  '& .SCMediaLink-html-loading': {
32
34
  position: string;
33
35
  display: string;
@@ -80,6 +82,7 @@ declare const Component: {
80
82
  '& .SCMediaLink-html': {
81
83
  width: string;
82
84
  position: string;
85
+ zIndex: number;
83
86
  '& iframe': {
84
87
  width: string;
85
88
  margin: string;
@@ -89,6 +92,7 @@ declare const Component: {
89
92
  width: string;
90
93
  position: string;
91
94
  top: number;
95
+ zIndex: number;
92
96
  '& .SCMediaLink-html-loading': {
93
97
  position: string;
94
98
  display: string;
@@ -22,7 +22,7 @@ const Component = {
22
22
  width: '100%',
23
23
  position: 'absolute',
24
24
  top: 0,
25
- // zIndex: 2,
25
+ zIndex: 2,
26
26
  '& iframe': {
27
27
  width: '100%',
28
28
  margin: '0px auto'
@@ -32,7 +32,7 @@ const Component = {
32
32
  width: '100%',
33
33
  position: 'relative',
34
34
  top: 0,
35
- // zIndex: 1,
35
+ zIndex: 1,
36
36
  '& .SCMediaLink-html-loading': {
37
37
  position: 'absolute',
38
38
  display: 'none',
@@ -85,7 +85,7 @@ const Component = {
85
85
  '& .SCMediaLink-html': {
86
86
  width: '100%',
87
87
  position: 'absolute',
88
- // zIndex: 2,
88
+ zIndex: 2,
89
89
  '& iframe': {
90
90
  width: '100%',
91
91
  margin: '0px auto'
@@ -95,7 +95,7 @@ const Component = {
95
95
  width: '100%',
96
96
  position: 'absolute',
97
97
  top: 0,
98
- // zIndex: 1,
98
+ zIndex: 1,
99
99
  '& .SCMediaLink-html-loading': {
100
100
  position: 'absolute',
101
101
  display: 'none',
@@ -13,6 +13,9 @@ declare const Component: {
13
13
  '& .SCNavigationToolbarMobile-logo-flex': {
14
14
  flexGrow: number;
15
15
  };
16
+ '& .MuiIconButton-root': {
17
+ color: any;
18
+ };
16
19
  '& h4': {
17
20
  fontSize: string;
18
21
  overflow: string;
@@ -1,27 +1,34 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ const styles_1 = require("@mui/material/styles");
3
4
  const Component = {
4
5
  styleOverrides: {
5
- root: ({ theme }) => ({
6
- padding: `${theme.spacing(0, 1, 0, 1)} !important`,
7
- '& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item': {
8
- margin: theme.spacing(0.5, 2, 0.5, 0.5),
9
- flexGrow: 1,
10
- '& img': {
11
- verticalAlign: 'middle',
12
- maxHeight: `calc(${theme.mixins.toolbar.minHeight}px - ${theme.spacing(2)})`
6
+ root: ({ theme }) => {
7
+ var _a, _b;
8
+ return ({
9
+ padding: `${theme.spacing(0, 1, 0, 1)} !important`,
10
+ '& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item': {
11
+ margin: theme.spacing(0.5, 2, 0.5, 0.5),
12
+ flexGrow: 1,
13
+ '& img': {
14
+ verticalAlign: 'middle',
15
+ maxHeight: `calc(${theme.mixins.toolbar.minHeight}px - ${theme.spacing(2)})`
16
+ }
17
+ },
18
+ '& .SCNavigationToolbarMobile-logo-flex': {
19
+ flexGrow: 0
20
+ },
21
+ '& .MuiIconButton-root': {
22
+ color: (0, styles_1.getContrastRatio)((_b = (_a = theme.palette) === null || _a === void 0 ? void 0 : _a.navbar) === null || _b === void 0 ? void 0 : _b.main, '#fff') > 4.5 ? '#fff' : theme.palette.primary.main
23
+ },
24
+ '& h4': {
25
+ fontSize: '1.286rem',
26
+ overflow: 'hidden',
27
+ textOverflow: 'ellipsis',
28
+ whiteSpace: 'nowrap'
13
29
  }
14
- },
15
- '& .SCNavigationToolbarMobile-logo-flex': {
16
- flexGrow: 0
17
- },
18
- '& h4': {
19
- fontSize: '1.286rem',
20
- overflow: 'hidden',
21
- textOverflow: 'ellipsis',
22
- whiteSpace: 'nowrap'
23
- }
24
- }),
30
+ });
31
+ },
25
32
  skeletonRoot: ({ theme }) => ({
26
33
  '& .SCNavigationToolbarMobile-logo': {
27
34
  width: 100,
@@ -4225,6 +4225,7 @@ declare const theme: {
4225
4225
  width: string;
4226
4226
  position: string;
4227
4227
  top: number;
4228
+ zIndex: number;
4228
4229
  '& iframe': {
4229
4230
  width: string;
4230
4231
  margin: string;
@@ -4234,6 +4235,7 @@ declare const theme: {
4234
4235
  width: string;
4235
4236
  position: string;
4236
4237
  top: number;
4238
+ zIndex: number;
4237
4239
  '& .SCMediaLink-html-loading': {
4238
4240
  position: string;
4239
4241
  display: string;
@@ -4286,6 +4288,7 @@ declare const theme: {
4286
4288
  '& .SCMediaLink-html': {
4287
4289
  width: string;
4288
4290
  position: string;
4291
+ zIndex: number;
4289
4292
  '& iframe': {
4290
4293
  width: string;
4291
4294
  margin: string;
@@ -4295,6 +4298,7 @@ declare const theme: {
4295
4298
  width: string;
4296
4299
  position: string;
4297
4300
  top: number;
4301
+ zIndex: number;
4298
4302
  '& .SCMediaLink-html-loading': {
4299
4303
  position: string;
4300
4304
  display: string;
@@ -4509,6 +4513,9 @@ declare const theme: {
4509
4513
  '& .SCNavigationToolbarMobile-logo-flex': {
4510
4514
  flexGrow: number;
4511
4515
  };
4516
+ '& .MuiIconButton-root': {
4517
+ color: any;
4518
+ };
4512
4519
  '& h4': {
4513
4520
  fontSize: string;
4514
4521
  overflow: string;
@@ -19,6 +19,7 @@ declare const Component: {
19
19
  width: string;
20
20
  position: string;
21
21
  top: number;
22
+ zIndex: number;
22
23
  '& iframe': {
23
24
  width: string;
24
25
  margin: string;
@@ -28,6 +29,7 @@ declare const Component: {
28
29
  width: string;
29
30
  position: string;
30
31
  top: number;
32
+ zIndex: number;
31
33
  '& .SCMediaLink-html-loading': {
32
34
  position: string;
33
35
  display: string;
@@ -80,6 +82,7 @@ declare const Component: {
80
82
  '& .SCMediaLink-html': {
81
83
  width: string;
82
84
  position: string;
85
+ zIndex: number;
83
86
  '& iframe': {
84
87
  width: string;
85
88
  margin: string;
@@ -89,6 +92,7 @@ declare const Component: {
89
92
  width: string;
90
93
  position: string;
91
94
  top: number;
95
+ zIndex: number;
92
96
  '& .SCMediaLink-html-loading': {
93
97
  position: string;
94
98
  display: string;
@@ -20,7 +20,7 @@ const Component = {
20
20
  width: '100%',
21
21
  position: 'absolute',
22
22
  top: 0,
23
- // zIndex: 2,
23
+ zIndex: 2,
24
24
  '& iframe': {
25
25
  width: '100%',
26
26
  margin: '0px auto'
@@ -30,7 +30,7 @@ const Component = {
30
30
  width: '100%',
31
31
  position: 'relative',
32
32
  top: 0,
33
- // zIndex: 1,
33
+ zIndex: 1,
34
34
  '& .SCMediaLink-html-loading': {
35
35
  position: 'absolute',
36
36
  display: 'none',
@@ -83,7 +83,7 @@ const Component = {
83
83
  '& .SCMediaLink-html': {
84
84
  width: '100%',
85
85
  position: 'absolute',
86
- // zIndex: 2,
86
+ zIndex: 2,
87
87
  '& iframe': {
88
88
  width: '100%',
89
89
  margin: '0px auto'
@@ -93,7 +93,7 @@ const Component = {
93
93
  width: '100%',
94
94
  position: 'absolute',
95
95
  top: 0,
96
- // zIndex: 1,
96
+ zIndex: 1,
97
97
  '& .SCMediaLink-html-loading': {
98
98
  position: 'absolute',
99
99
  display: 'none',
@@ -13,6 +13,9 @@ declare const Component: {
13
13
  '& .SCNavigationToolbarMobile-logo-flex': {
14
14
  flexGrow: number;
15
15
  };
16
+ '& .MuiIconButton-root': {
17
+ color: any;
18
+ };
16
19
  '& h4': {
17
20
  fontSize: string;
18
21
  overflow: string;
@@ -1,25 +1,32 @@
1
+ import { getContrastRatio } from '@mui/material/styles';
1
2
  const Component = {
2
3
  styleOverrides: {
3
- root: ({ theme }) => ({
4
- padding: `${theme.spacing(0, 1, 0, 1)} !important`,
5
- '& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item': {
6
- margin: theme.spacing(0.5, 2, 0.5, 0.5),
7
- flexGrow: 1,
8
- '& img': {
9
- verticalAlign: 'middle',
10
- maxHeight: `calc(${theme.mixins.toolbar.minHeight}px - ${theme.spacing(2)})`
4
+ root: ({ theme }) => {
5
+ var _a, _b;
6
+ return ({
7
+ padding: `${theme.spacing(0, 1, 0, 1)} !important`,
8
+ '& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item': {
9
+ margin: theme.spacing(0.5, 2, 0.5, 0.5),
10
+ flexGrow: 1,
11
+ '& img': {
12
+ verticalAlign: 'middle',
13
+ maxHeight: `calc(${theme.mixins.toolbar.minHeight}px - ${theme.spacing(2)})`
14
+ }
15
+ },
16
+ '& .SCNavigationToolbarMobile-logo-flex': {
17
+ flexGrow: 0
18
+ },
19
+ '& .MuiIconButton-root': {
20
+ color: getContrastRatio((_b = (_a = theme.palette) === null || _a === void 0 ? void 0 : _a.navbar) === null || _b === void 0 ? void 0 : _b.main, '#fff') > 4.5 ? '#fff' : theme.palette.primary.main
21
+ },
22
+ '& h4': {
23
+ fontSize: '1.286rem',
24
+ overflow: 'hidden',
25
+ textOverflow: 'ellipsis',
26
+ whiteSpace: 'nowrap'
11
27
  }
12
- },
13
- '& .SCNavigationToolbarMobile-logo-flex': {
14
- flexGrow: 0
15
- },
16
- '& h4': {
17
- fontSize: '1.286rem',
18
- overflow: 'hidden',
19
- textOverflow: 'ellipsis',
20
- whiteSpace: 'nowrap'
21
- }
22
- }),
28
+ });
29
+ },
23
30
  skeletonRoot: ({ theme }) => ({
24
31
  '& .SCNavigationToolbarMobile-logo': {
25
32
  width: 100,
@@ -4225,6 +4225,7 @@ declare const theme: {
4225
4225
  width: string;
4226
4226
  position: string;
4227
4227
  top: number;
4228
+ zIndex: number;
4228
4229
  '& iframe': {
4229
4230
  width: string;
4230
4231
  margin: string;
@@ -4234,6 +4235,7 @@ declare const theme: {
4234
4235
  width: string;
4235
4236
  position: string;
4236
4237
  top: number;
4238
+ zIndex: number;
4237
4239
  '& .SCMediaLink-html-loading': {
4238
4240
  position: string;
4239
4241
  display: string;
@@ -4286,6 +4288,7 @@ declare const theme: {
4286
4288
  '& .SCMediaLink-html': {
4287
4289
  width: string;
4288
4290
  position: string;
4291
+ zIndex: number;
4289
4292
  '& iframe': {
4290
4293
  width: string;
4291
4294
  margin: string;
@@ -4295,6 +4298,7 @@ declare const theme: {
4295
4298
  width: string;
4296
4299
  position: string;
4297
4300
  top: number;
4301
+ zIndex: number;
4298
4302
  '& .SCMediaLink-html-loading': {
4299
4303
  position: string;
4300
4304
  display: string;
@@ -4509,6 +4513,9 @@ declare const theme: {
4509
4513
  '& .SCNavigationToolbarMobile-logo-flex': {
4510
4514
  flexGrow: number;
4511
4515
  };
4516
+ '& .MuiIconButton-root': {
4517
+ color: any;
4518
+ };
4512
4519
  '& h4': {
4513
4520
  fontSize: string;
4514
4521
  overflow: string;
@@ -17,4 +17,4 @@
17
17
  }
18
18
  to {
19
19
  opacity: 1
20
- }`));return{height:"100%",left:0,overflow:"hidden",position:"fixed",top:0,touchAction:"none",width:"100%",zIndex:2e3,"& .PhotoView__Spinner":{"-webkit-animation":`${o} .4s linear both`,animation:`${o} .4s linear both`},"& .PhotoView__Spinner svg":{"-webkit-animation":`${t} .6s linear infinite`,animation:`${t} .6s linear infinite`},"& .PhotoView__Photo":{cursor:"grab",maxWidth:"none"},"& .PhotoView__Photo:active":{cursor:"grabbing","&:active":{opacity:1}},"& .PhotoView__icon":{display:"inline-block",left:0,position:"absolute",top:0,transform:"translate(-50%, -50%)"},"& .PhotoView__PhotoBox":{bottom:0,direction:"ltr",left:0,position:"absolute",right:0,top:0,touchAction:"none",width:"100%",transformOrigin:"left top"},"& .PhotoView__PhotoWrap":{bottom:0,direction:"ltr",left:0,position:"absolute",right:0,top:0,touchAction:"none",width:"100%",overflow:"hidden",zIndex:10},"& .PhotoView-Slider__clean .PhotoView-Slider__ArrowLeft, .PhotoView-Slider__clean .PhotoView-Slider__ArrowRight, .PhotoView-Slider__clean .PhotoView-Slider__BannerWrap, .PhotoView-Slider__clean .PhotoView-Slider__Overlay, .PhotoView-Slider__willClose .PhotoView-Slider__BannerWrap:hover":{opacity:0},"& .PhotoView-Slider__Backdrop":{background:"#000",height:"100%",left:0,position:"absolute",top:0,transitionProperty:"background-color",width:"100%",zIndex:-1},"& .PhotoView-Slider__fadeIn":{"-webkit-animation":`${s} linear both`,animation:`${s} linear both`,opacity:0},"& .PhotoView-Slider__fadeOut":{animation:`${s} linear reverse both`,opacity:0},"& .PhotoView-Slider__BannerWrap":{alignItems:"center",backgroundColor:"rgba(0, 0, 0, .5)",color:"#fff",display:"flex",height:44,justifyContent:"space-between",left:0,position:"absolute",top:0,transition:"opacity .2s ease-out",width:"100%",zIndex:20,"&:hover":{opacity:1},"& Button":{color:"#c1c1c1"},"& Button:hover":{color:e.palette.common.white}},"& .PhotoView-Slider__Counter":{fontSize:"14px",opacity:0,padding:"0 10px"},"& .PhotoView-Slider__BannerRight":{alignItems:"center",display:"flex",height:"100%",color:"#FFF"},"& .PhotoView-Slider__toolbarIcon":{fill:"#fff",boxSizing:"border-box",cursor:"pointer",opacity:.75,padding:"10px",transition:"opacity .2s linear"},"& .PhotoView-Slider__toolbarIcon:hover":{opacity:1},"& .PhotoView-Slider__ArrowLeft":{alignItems:"center",bottom:0,cursor:"pointer",display:"flex",height:100,justifyContent:"center",margin:"auto",opacity:.75,position:"absolute",top:0,transition:"opacity .2s linear",WebkitUserSelect:"none",MozUserSelect:"none",MsUserSelect:"none",userSelect:"none",width:70,zIndex:20,left:0,"& svg":{fill:"#fff",background:"rgba(0, 0, 0, .3)",boxSizing:"content-box",height:24,padding:10,width:24},"&:hover":{opacity:1}},"& .PhotoView-Slider__ArrowRight":{alignItems:"center",bottom:0,cursor:"pointer",display:"flex",height:100,justifyContent:"center",margin:"auto",opacity:.75,position:"absolute",top:0,transition:"opacity .2s linear",WebkitUserSelect:"none",MozUserSelect:"none",MsUserSelect:"none",userSelect:"none",width:70,zIndex:20,right:0,"& svg":{fill:"#fff",background:"rgba(0, 0, 0, .3)",boxSizing:"content-box",height:24,padding:10,width:24},"&:hover":{opacity:1}}}}}};t.default=s},7395:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({[e.breakpoints.down("sm")]:{padding:e.spacing(1)},boxShadow:"none",borderRadius:0,"& .SCLoyaltyProgramDetailTemplate-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.286rem",marginTop:e.spacing(2),marginBottom:e.spacing(2),[e.breakpoints.down("md")]:{textAlign:"center"}},"& .SCLoyaltyProgramDetailTemplate-section-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem",marginBottom:e.spacing(1)},"& .SCLoyaltyProgramDetailTemplate-section-info":{marginBottom:e.spacing(2)},"& .SCLoyaltyProgramDetailTemplate-user-points":{marginLeft:e.spacing(2),backgroundColor:e.palette.secondary.main,"& .MuiChip-label":{fontSize:"1rem",fontWeight:e.typography.fontWeightBold,color:e.palette.common.white,padding:e.spacing(1,2,1,2)}},"& .SCLoyaltyProgramDetailTemplate-prize-section":{"& .MuiGrid-item":{[e.breakpoints.up("sm")]:{paddingLeft:e.spacing(4),paddingRight:e.spacing(2)},[e.breakpoints.down("md")]:{marginBottom:e.spacing(4)}}},"& .SCLoyaltyProgramDetailTemplate-card":{boxShadow:"0px 3px 6px rgba(0, 0, 0, 0.3)",[e.breakpoints.down("md")]:{borderRadius:0},display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",height:"100%","& .SCLoyaltyProgramDetailTemplate-card-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem"},"& .MuiCardContent-root":{padding:e.spacing(2),display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center","& .SCLoyaltyProgramDetailTemplate-card-content":{paddingTop:e.spacing(1),maxHeight:e.spacing(12.5),overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:4}},"& .MuiCardActions-root":{marginTop:"auto","& .MuiButtonBase-root":{"&:hover, &:active":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}}},"& .MuiCardMedia-root":{height:e.spacing(17)},"& .SCLoyaltyProgramDetailTemplate-prize-points":{marginTop:e.spacing(2),"& .MuiChip-root":{backgroundColor:e.palette.secondary.main,"& .MuiChip-label":{fontSize:"1.143rem",fontWeight:e.typography.fontWeightBold,color:e.palette.common.white}},"& .SCLoyaltyProgramDetailTemplate-not-requestable":{backgroundColor:e.palette.error.main}}},"& .SCLoyaltyProgramDetailTemplate-points-list-root":{marginTop:e.spacing(1),marginBottom:e.spacing(2),"& .MuiGrid-item":{paddingTop:e.spacing(1),"& .SCLoyaltyProgramDetailTemplate-element":{display:"flex",justifyContent:"space-between",marginBottom:e.spacing(1)}}},"& .SCLoyaltyProgramDetailTemplate-end-message":{padding:e.spacing(3,2),fontWeight:e.typography.fontWeightBold,textAlign:"center","& .MuiButtonBase-root":{paddingLeft:e.spacing(1)}}}),skeletonRoot:({theme:e})=>({height:"100%","& .SCLoyaltyProgramDetailTemplate-title":{display:"flex",marginBottom:e.spacing(5),alignItems:"center",[e.breakpoints.down("md")]:{justifyContent:"center"},"& .SCLoyaltyProgramDetailTemplate-chip":{marginLeft:e.spacing(2),borderRadius:e.shape.borderRadius}},"& .SCLoyaltyProgramDetailTemplate-section-title":{marginBottom:e.spacing(2),"& .SCLoyaltyProgramDetailTemplate-sub-title":{marginBottom:e.spacing(4)}},"& .SCLoyaltyProgramDetailTemplate-points-list":{marginBottom:e.spacing(5)}}),prizeItemSkeletonRoot:({theme:e})=>({[e.breakpoints.up("sm")]:{width:e.spacing(45),height:e.spacing(45),marginTop:e.spacing(3)},"& .MuiCard-root":{[e.breakpoints.down("md")]:{borderRadius:0,height:"100%"}},"& .MuiCardContent-root":{justifyContent:"center","& .SCLoyaltyProgramDetailTemplate-content":{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",marginTop:e.spacing(2),paddingBottom:e.spacing(8)}},"& .MuiCardActions-root":{justifyContent:"center"}})}};t.default=n},8185:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)},"& .SCLoyaltyProgramWidget-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem"},"& .SCLoyaltyProgramWidget-actions":{display:"flex",justifyContent:"space-between",padding:e.spacing(0,3,2,3),"& .SCLoyaltyProgramWidget-points":{fontSize:"1rem",fontWeight:e.typography.fontWeightBold,textTransform:"uppercase",color:e.palette.secondary.main,display:"flex",alignItems:"center","& .MuiChip-root":{color:e.palette.common.white,borderRadius:e.shape.borderRadius,backgroundColor:e.palette.secondary.main,marginRight:e.spacing(1)}}}}),skeletonRoot:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)},"& .SCLoyaltyProgramWidget-actions, .MuiCardActions-root":{display:"flex",justifyContent:"space-between",padding:e.spacing(0,3,2,2),"& .SCLoyaltyProgramWidget-points":{display:"flex",justifyContent:"center",alignItems:"center"},"& .SCLoyaltyProgramWidget-chip":{borderRadius:e.shape.borderRadius,marginRight:e.spacing(2)}}})}}},3914:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},3212:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{displayRoot:({theme:e})=>({textAlign:"center",margin:"auto",width:"100%",position:"relative",[e.breakpoints.down("md")]:{minHeight:170},"& .SCMediaFile-background":{backgroundSize:"cover !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important"},"& .SCMediaFile-background-portrait":{backgroundSize:"contain !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important"},"& .SCMediaFile-height-one":{width:"100%",paddingTop:"99%"},"& .SCMediaFile-height-half-one":{paddingTop:"50%"},"& .SCMediaFile-height-two":{width:"50%",paddingTop:"50%"},"& .SCMediaFile-height-three":{width:"33.3333%",paddingTop:"33.3333%"},"& .SCMediaFile-cover":{backgroundColor:"rgba(102,102,102,0.2)",opacity:.8,position:"absolute",right:0,top:0,left:0,bottom:0},"& .SCMediaFile-cover-text":{right:0,left:0,bottom:0,color:"#FFF",fontSize:"7%",position:"absolute",top:"50%",transform:"translate(0%, -50%)",textAlign:"center","& > p":{margin:0,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCMediaFile-slide":{height:0,bottom:"100%",overflow:"hidden",fontSize:"3%",color:"#FFF"},"& .SCMediaFile-border":{position:"relative",border:"2px solid #FFF","&:hover > div":{bottom:0,height:"auto"},"&:hover > div.animate-text":{top:"66%"}},"& .SCMediaFile-gallery":{cursor:"pointer"},"& .SCMediaFile-title .MuiTypography-root":{color:"#FFF",backgroundColor:e.palette.getContrastText("#FFF"),opacity:.6},"& .SCMediaFile-icon-file":{fontSize:14,position:"relative",top:2}}),lightboxRoot:({theme:e})=>({}),previewRoot:({theme:e})=>({"& > div":{display:"flex",flexDirection:"row",flexWrap:"nowrap",maxWidth:"100%",overflow:"auto",MsOverflowStyle:"none",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},"& .SCMediaFile-media":{backgroundSize:"cover",backgroundPosition:"center",position:"relative",borderRadius:.5*e.shape.borderRadius,margin:e.spacing(.5),width:120,height:140,flexBasis:120,flexGrow:0,flexShrink:0,"& .SCMediaFile-title":{position:"absolute",left:e.spacing(1),top:e.spacing(1),borderRadius:e.shape.borderRadius,background:"#33333380 0% 0% no-repeat padding-box",color:e.palette.common.white,fontSize:"0.875rem",padding:e.spacing(.5,1),maxWidth:50,textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap"},"& .SCMediaFile-delete":{background:e.palette.common.white,position:"absolute",right:e.spacing(.5),top:e.spacing(.5)}},"&:has(> :last-child:nth-of-type(1)) .SCMediaFile-media":{width:"100%",flexBasis:"100%",height:220,margin:e.spacing(.5,0),"& .SCMediaFile-title":{fontSize:"1rem",maxWidth:200}}}}),triggerRoot:({theme:e})=>({}),triggerDrawerRoot:({theme:e})=>({zIndex:1300}),triggerMenuRoot:({theme:e})=>({})}}},8154:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{displayRoot:({theme:e})=>({"& .SCMediaLink-link":{position:"relative",backgroundColor:"#F5F5F5",margin:e.spacing(1,0),padding:e.spacing(1)},"& .SCMediaLink-video":{margin:"10px 0px",height:360},"& .SCMediaLink-html-wrap":{position:"relative",marginLeft:e.spacing(),marginRight:e.spacing(),"& .SCMediaLink-html":{width:"100%",position:"absolute",top:0,"& iframe":{width:"100%",margin:"0px auto"}},"& .SCMediaLink-html-placeholder":{width:"100%",position:"relative",top:0,"& .SCMediaLink-html-loading":{position:"absolute",display:"none",top:"38%",left:"50%"}}},"& .SCMediaLink-thumbnail":{border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderRadius:.75*e.shape.borderRadius,paddingTop:e.spacing(1),margin:e.spacing(1,2,1,1),[e.breakpoints.up("sm")]:{maxWidth:200,width:"100%",float:"left"}},"& .SCMediaLink-image":{backgroundSize:"contain !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important",backgroundColor:"#FFF !important",paddingBottom:120},"& .SCMediaLink-snippet":{padding:e.spacing(2),"& .SCMediaLink-snippet-title":{},"& .SCMediaLink-snippet-description":{fontSize:"0.857rem"},"& a":{fontSize:"1rem",fontStyle:"italic"}}}),layerRoot:({theme:e})=>({"& .SCMediaLink-content":{"& form button[type=submit]":{fontWeight:e.typography.fontWeightBold}}}),previewRoot:({theme:e})=>({"& .SCMediaLink-media":{position:"relative","& .SCMediaLink-html-wrap":{"& .SCMediaLink-html":{width:"100%",position:"absolute","& iframe":{width:"100%",margin:"0px auto"}},"& .SCMediaLink-html-placeholder":{width:"100%",position:"absolute",top:0,"& .SCMediaLink-html-loading":{position:"absolute",display:"none",top:"40%",left:"50%"}}},"& .SCMediaLink-delete":{background:e.palette.common.white,position:"absolute",right:e.spacing(.5),top:e.spacing(.5),zIndex:3},"&.SCMediaLink-media-video .SCMediaLink-delete":{background:e.palette.common.white,right:e.spacing(1),top:e.spacing(1)}}}),triggerRoot:({theme:e})=>({})}};t.default=n},1390:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{displayRoot:({theme:e})=>({"& .SCMediaShare-share-preview":{paddingLeft:e.spacing(),paddingRight:e.spacing()}})}}},8002:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCMyEventsWidget-title-wrapper":{padding:`12px ${e.spacing(2)}`},"& .SCMyEventsWidget-actions":{padding:`0 ${e.spacing(3)} 18px`,justifyContent:"center",gap:e.spacing(3),"& .SCMyEventsWidget-arrows":{width:"24px",height:"24px"},"& .SCMyEventsWidget-action-button":{color:e.palette.primary.main,textDecoration:"none"}}}),skeletonRoot:({theme:e})=>({"& .SCMyEventsWidget-actions":{height:"40px",padding:`0 ${e.spacing(3)} 18px`,justifyContent:"center",gap:e.spacing(3)}})}}},681:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiDrawer-paper":{width:"100%",[e.breakpoints.up("sm")]:{width:e.spacing(40)}},"& .SCNavigationMenuDrawer-drawer-header":{minHeight:e.mixins.toolbar.minHeight,padding:"1px",display:"flex",justifyContent:"space-between","& > a:first-of-type":{display:"flex",justifyContent:"center",alignContent:"center",flexWrap:"wrap"},"& img":{maxHeight:e.mixins.toolbar.minHeight-20,paddingLeft:e.spacing(1.5)}},"& .MuiTypography-subtitle1":{fontSize:"1.286rem",padding:e.spacing(0,2),"& MuiButton-root":{padding:e.spacing(1,1,1,2)},"& span:first-of-type":{color:(0,i.darken)(e.palette.text.primary,.5)}},"& .SCBaseItemButton-text ":{maxWidth:"80%"}})}};t.default=n},4111:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},7992:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{menuRoot:({theme:e})=>({"& .SCNavigationSettingsIconButton-paper":{maxWidth:400,padding:e.spacing(2),"& .MuiList-root":{padding:0}}})}}},977:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o;return{padding:e.spacing(0,1),"& .SCNavigationToolbar-logo, & .SCNavigationToolbar-custom-item":{marginRight:e.spacing(2),"& img":{verticalAlign:"middle",maxHeight:e.mixins.toolbar.minHeight-20}},"& .SCNavigationToolbar-navigation":{flexGrow:1,textAlign:"center",alignSelf:"end","& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events":{paddingTop:12,paddingLeft:e.spacing(1),paddingRight:e.spacing(1),paddingBottom:11,margin:e.spacing(0,1),borderRadius:0,borderBottom:"2px solid transparent","&.SCNavigationToolbar-active, &:hover":{color:e.palette.secondary.main,borderBottom:`2px solid ${e.palette.secondary.main}`}}},"& .SCNavigationToolbar-search":{flexGrow:1,textAlign:"right",marginRight:e.spacing(1.5),"& .MuiFormControl-root":{width:190,[e.breakpoints.up("lg")]:{width:300}}},"& .SCNavigationToolbar-profile, & .SCNavigationToolbar-notification, & .SCNavigationToolbar-messages":{margin:e.spacing(0,.5)},"& .SCNavigationToolbar-profile .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCNavigationToolbar-notification, & .SCNavigationToolbar-messages":{paddingTop:12,paddingBottom:9,borderRadius:0,borderBottom:"2px solid transparent","&.SCNavigationToolbar-active, &:hover":{color:e.palette.secondary.main,borderBottom:`2px solid ${e.palette.secondary.main}`}},"& .SCNavigationToolbar-settings":{marginLeft:0},"& .SCNavigationToolbar-composer:hover":{color:e.palette.secondary.main},"& .MuiIconButton-root":{color:(0,i.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.primary.main},[e.breakpoints.up(950)]:{padding:e.spacing(0,2),"& .SCNavigationToolbar-navigation":{"& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore":{margin:e.spacing(0,2)}}}}},skeletonRoot:({theme:e})=>({"& .SCNavigationToolbar-logo":{width:100,height:20},"& .SCNavigationToolbar-navigation":{flexGrow:1,margin:e.spacing(0,20)},"& .SCNavigationToolbar-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}),notificationsMenuRoot:({theme:e})=>({"& .SCNavigationToolbar-paper":{minWidth:370,padding:e.spacing(2),"& .MuiList-root":{padding:0}},"& .SCNavigationToolbar-link":{display:"block",textAlign:"center",margin:e.spacing(0,"auto")}})}};t.default=n},3210:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:`${e.spacing(0,1,0,1)} !important`,"& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item":{margin:e.spacing(.5,2,.5,.5),flexGrow:1,"& img":{verticalAlign:"middle",maxHeight:`calc(${e.mixins.toolbar.minHeight}px - ${e.spacing(2)})`}},"& .SCNavigationToolbarMobile-logo-flex":{flexGrow:0},"& h4":{fontSize:"1.286rem",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"}}),skeletonRoot:({theme:e})=>({"& .SCNavigationToolbarMobile-logo":{width:100,height:20}})}}},6148:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n=o(4841),a={styleOverrides:{root:({theme:e})=>({"& .SCNotification-header":{padding:e.spacing(2,2,0,2),"& .SCNotification-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCNotification-username":{fontWeight:e.typography.fontWeightBold}},"& .SCNotification-content":{padding:0,"& .SCNotification-uncollapsed":{padding:e.spacing(2,2,1,2),"& > *":{marginBottom:e.spacing()}},"& .SCNotification-show-other-aggregated":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)},"& .SCNotification-collapsed":{padding:e.spacing(2),"& .MuiCollapse-wrapperInner > *":{marginBottom:e.spacing()}},"& .SCNotificationItem-detail":{borderRadius:0}},"& a:not(.MuiButton-root)":{textDecoration:"none",color:e.palette.text.primary,"&:hover, &:active":{color:e.palette.text.primary,textDecoration:"underline"}}}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),collapsedForRoot:({theme:e})=>({width:"100%","& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{padding:`${e.spacing(2)} ${e.spacing(2)}`,textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),commentRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:e.typography.fontWeightBold,"&:hover":{textDecoration:"underline"}},"& .SCNotification-vote-button":{color:"inherit",padding:e.spacing(1),fontSize:"1.143rem",minWidth:0,borderRadius:"50%"},"& .SCNotification-contribution-text":{color:e.palette.text.primary,textOverflow:"ellipsis",display:"inline",overflow:"hidden","&:hover":{textDecoration:"underline"}}}),contributionRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:e.typography.fontWeightBold,"&:hover":{textDecoration:"underline"}},"& .SCNotification-vote-button":{color:"inherit",padding:e.spacing(1),fontSize:"1.143rem",minWidth:0,borderRadius:"50%"},"& .SCNotification-contribution-text":{color:e.palette.text.primary,textOverflow:"ellipsis",overflow:"hidden","&:hover":{textDecoration:"underline"}},"& .SCNotificationItem-root .SCNotificationItem-header .SCNotificationItem-secondary":{marginTop:e.spacing(1),"& .SCDateTimeAgo-root":{marginTop:0}}}),contributionFollowRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-follow-text":{color:e.palette.text.primary,fontWeight:e.typography.fontWeightMedium},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"},textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .MuiIcon-root":{fontSize:"18px",marginBottom:"0.5px"}}),deletedForRoot:({theme:e})=>({"& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{marginBottom:e.spacing(1),padding:e.spacing(2),textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),incubatorApprovedRoot:({theme:e})=>({"& .SCNotification-category-icon":{borderRadius:3},"& .SCNotification-view-incubator-button":{padding:e.spacing(),paddingBottom:0,textTransform:"initial",marginLeft:-8}}),kindlyNoticeFlagRoot:({theme:e})=>({"& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{padding:`${e.spacing(2)} ${e.spacing(2)}`,textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),kindlyNoticeForRoot:({theme:e})=>({width:"100%","& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{padding:`${e.spacing(2)} ${e.spacing(2)}`,textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),mentionRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-mention-text":{color:e.palette.text.primary},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"},textOverflow:"ellipsis",display:"inline",overflow:"hidden"}}),privateMessageRoot:({theme:e})=>({"& .SCNotification-username":{display:"inline",fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-message-label":{color:e.palette.text.primary},"& .SCNotification-message-wrap":{textOverflow:"ellipsis",overflow:"hidden",WebkitLineClamp:"2",lineClamp:2,WebkitBoxOrient:"vertical","& p":{margin:0}},"& .SCNotification-message":{height:20,overflowY:"hidden",textOverflow:"ellipsis",display:"inline",overflow:"hidden","&:hover":{textDecoration:"underline"},"& > p":{overflowY:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitLineClamp:"2",lineClamp:2,WebkitBoxOrient:"vertical"}},"& .SCNotification-actions":{fontSize:"13px",maxWidth:"40%"}}),eventRoot:({theme:e})=>({"& .SCNotification-username, & a":{fontWeight:e.typography.fontWeightBold},"& .SCNotificationItem-primary":{"& .MuiIcon-root":{float:"right",fontSize:"20px",marginLeft:e.spacing(.5)},"& .SCEvent-root":{width:"100%","& .SCEvent-snippet-root":{paddingLeft:"0 !important"}}},"& .SCNotificationItem-secondary":{textTransform:"capitalize"},"& .SCNotification-snippet-time":{paddingLeft:e.spacing(5)},"& .SCEvent-snippet-root":{backgroundColor:"transparent !important"}}),groupRoot:({theme:e})=>({}),undeletedForRoot:({theme:e})=>({"& .SCNotification-undeleted-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-undeleted-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{marginBottom:e.spacing(1),padding:e.spacing(2),textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),userBlockedRoot:({theme:e})=>({"& .SCNotification-unblocked-icon":{backgroundColor:n.green[500],color:"#FFF"},"& .SCNotification-blocked-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-blocked-text":{color:e.palette.text.primary}}),userConnectionRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-connection-text":{color:e.palette.text.primary}}),userFollowRoot:({theme:e})=>({width:"100%","& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-follow-text":{color:e.palette.text.primary}}),voteUpRoot:({theme:e})=>({width:"100%","& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-vote-up-text":{color:e.palette.text.primary},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}})}};t.default=a},8679:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},8485:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({whiteSpace:"normal","& .SCNotificationItem-header":{display:"flex",flexDirection:"row",paddingBottom:e.spacing(),"& .SCNotificationItem-primary":{fontWeight:e.typography.fontWeightMedium,"& .SCContributionNotification-username":{fontWeight:e.typography.fontWeightBold},"& a":{color:e.palette.text.primary,textDecoration:"none"}},"& .SCNotificationItem-secondary":{"& .SCDateTimeAgo-root, & .MuiStack-root":{color:e.palette.primary.main,minHeight:e.spacing(3)},"& a":{textDecoration:"none",color:e.palette.text.primary}}},"& .SCNotificationItem-actions":{color:e.palette.primary.main},"&.SCNotificationItem-toast":{backgroundColor:"transparent",borderRadius:0,"& .SCNotificationItem-header":{"& .SCNotificationItem-image":{marginRight:e.spacing(1),"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall}}}},"&.SCNotificationItem-snippet":{backgroundColor:"transparent",borderRadius:0,"& .SCNotificationItem-header":{"& .SCNotificationItem-image":{marginRight:e.spacing(1),"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall}}}},"&.SCNotificationItem-detail":{backgroundColor:"transparent",borderRadius:0,"& .SCNotificationItem-header":{"& .SCNotificationItem-image":{marginRight:e.spacing(1),"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}}})}}},8449:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({[e.breakpoints.up("md")]:{borderRadius:e.shape.borderRadius},"& .SCOnBoardingWidget-step-content":{[e.breakpoints.up("md")]:{width:"70%"},padding:e.spacing(1,2,2,2)},"& .SCOnBoardingWidget-logo":{width:"auto"},"& .MuiCardContent-root":{"& .MuiList-root":{paddingTop:0,borderRight:`1px solid ${e.palette.grey[200]}`,"& .MuiListItem-root":{paddingBottom:0}},[e.breakpoints.up("md")]:{display:"flex"},padding:0,"& .SCOnBoardingWidget-steps-mobile":{width:"100%",display:"flex",overflowX:"auto",overflowY:"hidden","&::-webkit-scrollbar":{display:"none"},"-webkit-overflow-scrolling":"touch","& .MuiButtonBase-root, .MuiListItem-root":{marginRight:e.spacing(.5),padding:0,"& .MuiChip-root":{"&.MuiChip-filledDefault":{color:e.palette.common.white,backgroundColor:e.palette.common.black}}},padding:e.spacing(2,1,2,1)},"& .SCOnBoardingWidget-steps":{width:"30%","& .Mui-selected":{backgroundColor:e.palette.grey.A200},"& .MuiButtonBase-root":{height:e.spacing(5),"&:hover":{backgroundColor:e.palette.grey.A200},"& .MuiListItemIcon-root":{minWidth:0}}}}}),accordionRoot:({theme:e,expanded:t})=>({boxShadow:"none","& .MuiAccordionDetails-root ":{padding:0,"& .SCOnBoardingWidget-content":{"& .MuiCardContent-root":{padding:0,"& .MuiList-root":{paddingTop:0,paddingBottom:e.spacing(1)},[e.breakpoints.down("md")]:{"& .MuiListItem-root:first-of-type":{paddingTop:e.spacing(1)}}}}},"& .MuiAccordionSummary-root":{borderBottom:`1px solid ${e.palette.grey[200]}`,borderRadius:0,[e.breakpoints.up("md")]:{borderRadius:e.shape.borderRadius,borderBottomLeftRadius:t?0:e.shape.borderRadius,borderBottomRightRadius:t?0:e.shape.borderRadius},"& .MuiAccordionSummary-content":{"& h4, & h5":{fontWeight:e.typography.fontWeightBold},"& h4":{fontSize:"1.429rem",[e.breakpoints.down("md")]:{marginLeft:e.spacing(2),"& .MuiIcon-root":{position:"absolute",left:e.spacing(2)}}},"& h5":{fontSize:"1.143rem"},"p strong":{color:t?e.palette.secondary.main:"inherit"},"& .SCOnBoardingWidget-intro":{marginLeft:e.spacing(2),"& h5":{marginBottom:e.spacing(.5)}},[e.breakpoints.down("md")]:{flexDirection:"column",paddingLeft:t?e.spacing(2):0},"& .MuiTypography-body1":{display:t?"inherit":"flex",alignItems:"center",fontSize:t?"14px":"16px",flexWrap:"wrap",strong:{marginRight:t?"inherit":e.spacing(1),marginLeft:t?"inherit":e.spacing(1)}}},alignItems:"flex-start","& .MuiAccordionSummary-expandIconWrapper":{marginTop:e.spacing(1.5),alignSelf:"flex-start"}}}),skeletonRoot:({theme:e})=>({display:"flex",flexDirection:"column",[e.breakpoints.up("md")]:{flexDirection:"row"},"& .SCOnBoardingWidget-skeleton-content":{width:"100%",marginLeft:e.spacing(1),[e.breakpoints.down("md")]:{padding:e.spacing(2)}},"& .SCOnBoardingWidget-skeleton-menu":{"& .MuiListItem-root":{padding:0},[e.breakpoints.up("md")]:{borderRight:`1px solid ${e.palette.grey[200]}`}}}),contentRoot:({theme:e})=>({"& .SCOnBoardingWidget-content-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-content-summary":{whiteSpace:"pre-line",marginTop:e.spacing(1),marginBottom:e.spacing(2)},"& .SCOnBoardingWidget-content-action":{display:"flex",justifyContent:"center"},"& .SCProgressBar-message":{marginBottom:e.spacing(.5)},[e.breakpoints.up("sm")]:{"& .SCOnBoardingWidget-content-progress":{display:"flex",alignItems:"center","& .SCOnBoardingWidget-content-animation-progress":{height:"250px",width:"250px"}}}}),categoryRoot:({theme:e})=>({"& .SCOnBoardingWidget-category-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-category-summary":{margin:e.spacing(1,0,.5,0)},"& .SCOnBoardingWidget-category-action":{display:"flex",justifyContent:"center","& .MuiButton-root":{marginTop:e.spacing(3)}},"& .SCProgressBar-message":{marginBottom:e.spacing(.5)},[e.breakpoints.up("sm")]:{"& .SCOnBoardingWidget-category-progress":{display:"flex",alignItems:"center","& .SCOnBoardingWidget-category-animation-progress":{height:"250px",width:"250px"}}}}),appearanceRoot:({theme:e})=>({display:"flex",alignItems:"center",flexDirection:"column","& .MuiButton-root":{marginTop:e.spacing(4)},"& h4":{marginBottom:e.spacing(1),fontWeight:e.typography.fontWeightBold}}),appearanceDrawerRoot:({theme:e})=>({"& .MuiDrawer-paper":{width:"100%",[e.breakpoints.up("sm")]:{width:"fit-content",padding:e.spacing(0,2,2,2)}},"& .SCOnBoardingWidget-appearance-drawer-header":{display:"flex",justifyContent:"space-between",alignItems:"center","& h4":{fontWeight:e.typography.fontWeightBold},padding:e.spacing(1)},"& .MuiTabs-root":{[e.breakpoints.down("md")]:{padding:e.spacing(1)},marginBottom:e.spacing(2),"& .MuiTab-root ":{textTransform:"none"}},"& .SCOnBoardingWidget-appearance-drawer-content":{[e.breakpoints.down("md")]:{padding:e.spacing(1.5)},display:"flex",flexDirection:"column"},"& .SCOnBoardingWidget-appearance-color-container":{position:"relative",display:"inline-block","& .SCOnBoardingWidget-appearance-color":{margin:e.spacing(1,0,2,0)},"& .SCOnBoardingWidget-appearance-color-progress":{position:"absolute",top:"50%",marginTop:e.spacing(-2),marginLeft:e.spacing(-4.5)}},"& .SCOnBoardingWidget-appearance-logo-container":{position:"relative",width:"100%",height:"auto",display:"flex",justifyContent:"center",alignItems:"center","& .SCOnBoardingWidget-appearance-logo":{height:120,width:240,marginBottom:e.spacing(2),objectFit:"contain","& img":{width:"100%",height:"auto"}},"& .SCOnBoardingWidget-appearance-upload-button":{"& .MuiIcon-root":{fontSize:"1.143rem"}}}}),profileRoot:({theme:e})=>({display:"flex",alignItems:"center",flexDirection:"column","& .MuiButton-root":{marginTop:e.spacing(4)},"& .SCOnBoardingWidget-profile-title":{fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(1)}}),profileDrawerRoot:({theme:e})=>({"& .MuiDrawer-paper":{width:"100%",[e.breakpoints.up("sm")]:{width:"30%",padding:e.spacing(0,2,2,2)}},"& .SCOnBoardingWidget-profile-cover":{position:"relative",height:230,minHeight:150,borderRadius:0,background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",boxShadow:"unset",[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)},display:"flex",flexDirection:"row"},"& .SCOnBoardingWidget-profile-icon":{alignSelf:"end"},"& .SCOnBoardingWidget-profile-avatar":{position:"relative",top:100,display:"block",marginLeft:e.spacing(2),"& > .MuiBadge-root > img":{height:e.selfcommunity.user.avatar.sizeXLarge,width:e.selfcommunity.user.avatar.sizeXLarge,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover"},"& .MuiBadge-badge":{right:e.spacing(1),top:e.spacing(3),"& .SCUserAvatar-badge-content":{width:32,height:32}}},"& .SCOnBoardingWidget-profile-change-picture":{[e.breakpoints.down("sm")]:{top:167,left:-45},top:165,left:-40,height:28,position:"relative",display:"flex",marginLeft:e.spacing(2)},"& .SCOnBoardingWidget-profile-change-cover":{position:"absolute",right:10,bottom:10},"& .SCOnBoardingWidget-profile-public-info":{marginTop:e.spacing(6),padding:e.spacing(2),"& .SCUserProfileEdit-public-info-root":{display:"flex",alignItems:"center",flexDirection:"column","& .MuiButtonBase-root":{width:"auto"}}}}),inviteRoot:({theme:e})=>({"& .MuiTypography-subtitle1":{marginLeft:e.spacing(1.5)},"& .SCOnBoardingWidget-invite-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-invite-social":{margin:e.spacing(2,0,2,0),"& .SCOnBoardingWidget-invite-social-icon-container":{display:"flex",justifyContent:"center",marginTop:e.spacing(2)},"& .SCOnBoardingWidget-invite-social-icon":{fontSize:"2rem",fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-invite-title":{fontSize:"14px"}},"& .SCOnBoardingWidget-invite-button":{marginTop:e.spacing(8)},"& .SCOnBoardingWidget-invite-action":{display:"flex",justifyContent:"center",marginTop:e.spacing(5)},"& .SCOnBoardingWidget-invite-email":{"& .SCOnBoardingWidget-invite-title":{fontSize:"14px"}}}),appRoot:({theme:e})=>({"& .SCOnBoardingWidget-app-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-app-summary":{whiteSpace:"pre-line",margin:e.spacing(2,0,2,0)},"& .SCOnBoardingWidget-app-tabs":{padding:e.spacing(0,2,0,2),"& .MuiTab-root ":{textTransform:"none"}},"& .SCOnBoardingWidget-app-tab-content":{display:"flex",flexDirection:"column",alignItems:"center","& .SCOnBoardingWidget-app-image":{width:"auto"}},"& .SCOnBoardingWidget-app-step":{marginBottom:e.spacing(2),display:"flex",alignItems:"center",strong:{display:"flex",alignItems:"center",marginRight:e.spacing(.5),"& .MuiIcon-root":{margin:e.spacing(0,.5,0,.5)}},flexWrap:"wrap"}})}}},9677:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(2)}),skeletonRoot:({theme:e})=>({"& .SCPlatformWidget-skeleton-content":{padding:e.spacing(2)},"& .SCPlatformWidget-skeleton-title":{display:"flex",justifyContent:"center",alignItems:"center",paddingBottom:e.spacing()},"& .SCPlatformWidget-skeleton-actions":{display:"flex",justifyContent:"space-around",alignItems:"center",paddingBottom:e.spacing()},"& .SCPlatformWidget-skeleton-tutorial":{display:"flex",justifyContent:"center",alignItems:"center"}})}}},8774:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({}),pollSnippetRoot:({theme:e})=>({"& > div":{alignItems:"flex-start",paddingTop:e.spacing(1)},"& .SCBaseItem-text":{marginTop:0},"& .SCPollSuggestionWidget-username":{color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,textDecoration:"none"},"& .SCPollSuggestionWidget-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCPollSuggestionWidget-activity-at":{textDecoration:"none",color:"inherit",marginTop:3}})}}},4678:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCPreviewMediaImage-title":{position:"absolute",top:e.spacing(3),left:e.spacing(3),"& > h6":{padding:e.spacing(1,2),borderRadius:e.shape.borderRadius,maxWidth:220,textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden"}}})}}},8332:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCPreviewMediaLink-preview-link":{position:"relative",backgroundColor:"#F5F5F5",margin:e.spacing(1,0),padding:e.spacing(1)},"& .SCPreviewMediaLink-preview-video":{margin:"10px 0px",height:360},"& .SCPreviewMediaLink-thumbnail":{border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderRadius:.75*e.shape.borderRadius,paddingTop:e.spacing(1),margin:e.spacing(1,2,1,1),[e.breakpoints.up("sm")]:{maxWidth:200,width:"100%",float:"left"}},"& .SCPreviewMediaLink-image":{backgroundSize:"contain !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important",backgroundColor:"#FFF !important",paddingBottom:120},"& .SCPreviewMediaLink-snippet":{padding:e.spacing(2),"& .SCPreviewMediaLink-snippet-title":{},"& .SCPreviewMediaLink-snippet-description":{fontSize:"0.857rem"},"& a":{fontSize:"1rem",fontStyle:"italic"}}})}};t.default=n},6880:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({height:"100%","& .SCPrivateMessageComponent-snippets-box, & .SCPrivateMessageComponent-thread-box":{position:"relative","& .SCPrivateMessageSnippets-root, & .SCPrivateMessageThread-root":{position:"absolute",top:0,left:0}},"& .SCPrivateMessageComponent-hide":{display:"none"}}),skeletonRoot:({theme:e})=>({[e.breakpoints.up("sm")]:{width:e.breakpoints.values.lg},"& .SCPrivateMessageComponent-thread-section":{"& .MuiCardContent-root":{padding:0,"& .MuiList-root":{paddingTop:0,paddingBottom:0}}}," .MuiPaper-root, MuiAppBar-root":{boxShadow:"none",borderRadius:0}})}}},7337:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),"& .SCPrivateMessageEditor-message-input":{width:"100%"},"& .MuiInputBase-root":{"&.Mui-disabled":{backgroundColor:e.palette.grey.A200},borderRadius:0,padding:e.spacing(.5,0,.5,0),"& textarea":{backgroundColor:e.palette.common.white,borderRadius:e.shape.borderRadius,padding:e.spacing(1),border:"2px solid transparent","&:hover":{border:`2px solid${e.palette.primary.main}`},"&.Mui-disabled":{border:"none"}},"& .MuiButtonBase-root":{padding:e.spacing(1.625)},"& .MuiOutlinedInput-notchedOutline":{border:"0 none"}},"& .SCPrivateMessageEditor-emoji-section":{"& .EmojiPickerReact.epr-main":{borderRadius:0,"& .epr-preview":{display:"none"}}},"& .MuiPaper-root":{borderRadius:0,backgroundColor:e.palette.grey.A200,"& .MuiCardHeader-root":{paddingBottom:e.spacing(0),"& .SCPrivateMessageEditor-close-button":{fontSize:"0.857rem",cursor:"pointer","&:hover":{color:e.palette.common.black}}},"& .MuiAlert-root":{position:"relative"},"& .MuiCardContent-root":{overflow:"auto",padding:e.spacing(1),minHeight:e.spacing(20),"& .SCPrivateMessageEditor-upload-section":{"& .SCPrivateMessageEditor-upload-button":{display:"flex",margin:"0 auto",fontSize:"1.57rem"}},"& .MuiList-root":{"& .MuiListItem-root:first-of-type":{paddingTop:e.spacing(1)},[e.breakpoints.up("sm")]:{paddingTop:e.spacing(0)}},"& .SCPrivateMessageEditor-preview-content":{position:"relative",display:"flex",margin:"0 auto",justifyContent:"center",alignItems:"center","& .MuiListItem-root":{height:e.spacing(10),marginRight:e.spacing(3),img:{width:e.spacing(10),height:e.spacing(10)},video:{objectFit:"fill",width:e.spacing(10),height:e.spacing(10)}},"& .SCPrivateMessageEditor-preview-actions":{height:"100%",background:"rgba(0,0,0,0.5)","& .MuiButtonBase-root, .MuiTypography-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCPrivateMessageEditor-preview-info":{position:"absolute",left:"50%",bottom:0,transform:"translate(-50%, 100%)",overflow:"hidden",textOverflow:"ellipsis",width:e.spacing(10),"& .MuiTypography-root":{fontSize:"0.75rem"}}}}},"&.SCPrivateMessageEditor-ios":{paddingBottom:"15px"}}),skeletonRoot:({theme:e})=>({})}};t.default=n},4653:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .SCNavigationSettingsIconButton-paper":{maxWidth:400,padding:e.spacing(2)}}),drawerRoot:({theme:e})=>({"& .MuiList-root":{"& a":{color:"inherit"}}})}}},834:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:e.spacing(1.5),padding:`${e.spacing(0)}!important`,boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",marginBottom:e.spacing(1),"& .SCPrivateMessageSnippetItem-time":{float:"right",fontSize:e.typography.fontWeightRegular},"& .MuiListItemButton-root":{"&.SCPrivateMessageSnippetItem-unread":{paddingRight:e.spacing(7.5)},[e.breakpoints.down("md")]:{"&.SCPrivateMessageSnippetItem-unread":{paddingRight:e.spacing(5)},paddingRight:e.spacing(2)}},"& .MuiListItemText-primary":{"& .SCPrivateMessageSnippetItem-username":{fontWeight:e.typography.fontWeightBold},"& .SCPrivateMessageSnippetItem-badge-label":{marginLeft:e.spacing(.5),borderRadius:0,fontSize:"0.5rem"}},"& .MuiListItemText-secondary":{"& .MuiTypography-root":{display:"inline-block",width:"80%",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}},"& .MuiListItemSecondaryAction-root":{display:"flex",alignItems:"center",position:"absolute",top:e.spacing(3),right:e.spacing(1),"& .MuiButtonBase-root":{fontSize:"1rem"},[e.breakpoints.down("md")]:{padding:e.spacing(1)}," .MuiPaper-root":{padding:0}}}),skeletonRoot:({theme:e})=>({maxWidth:700})}}},2564:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({height:"100%",width:"100%",borderRadius:0,"& .MuiCardContent-root":{display:"flex",flexDirection:"column",height:`calc(100% - ${e.spacing(4)})`,padding:e.spacing(2),"& .SCPrivateMessageSnippets-search-bar":{padding:e.spacing(1),"& .SCPrivateMessageSnippets-input":{borderRadius:e.shape.borderRadius,"& .MuiInputBase-input, MuiFilledInput-input":{padding:e.spacing(.5,1)},"& .SCPrivateMessageSnippets-icon":{marginRight:e.spacing(1)}}},"& .SCPrivateMessageSnippets-new-message-button":{color:`${e.palette.primary.main} !important`,alignSelf:"center",backgroundColor:"transparent","&:hover":{borderWidth:"2px !important",backgroundColor:e.palette.grey.A200}},"& .MuiList-root":{flexGrow:1,overflowY:"auto",padding:e.spacing(1),"& .Mui-selected":{backgroundColor:e.palette.grey.A200},"& .MuiButtonBase-root, MuiListItemButton-root":{"&:hover":{borderRadius:"inherit",backgroundColor:e.palette.grey.A200}}}},"& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root":{padding:e.spacing(2)}}),skeletonRoot:({theme:e})=>({})}}},8946:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({height:"100%",width:"100%",backgroundColor:(0,i.alpha)(e.palette.common.white,.5),borderRadius:0,"& .MuiCardContent-root":{display:"flex",flexDirection:"column",height:"100%",padding:0,position:"relative","& .MuiAlert-root":{position:"absolute",bottom:0,left:0,right:0,display:"flex",justifyContent:"center",borderRadius:0},"& .infinite-scroll-component__outerdiv":{flexGrow:1,overflowY:"auto","& .infinite-scroll-component":{display:"flex",flexDirection:"column-reverse","& .MuiList-root":{margin:0,padding:e.spacing(2,2,0,2),"& .MuiListItem-root":{padding:e.spacing(1,1,4,2),minWidth:"35%",maxWidth:"80%",textAlign:"left",width:"fit-content",position:"relative",marginBottom:e.spacing(1),"&.SCPrivateMessageThread-receiver":{backgroundColor:e.palette.common.white,marginLeft:e.spacing(-4),filter:"drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1))","&:after":{marginRight:e.spacing(3),content:'""',position:"absolute",border:`${e.spacing(3)} solid transparent`,borderTop:`${e.spacing(3)} solid ${e.palette.common.white}`,top:e.spacing(0),left:e.spacing(-2)}},"&.SCPrivateMessageThread-sender":{backgroundColor:e.palette.grey[300],position:"relative",marginLeft:"auto",marginRight:e.spacing(1),"&:after":{content:'""',position:"absolute",border:`${e.spacing(3)} solid transparent`,borderTop:`${e.spacing(3)} solid ${e.palette.grey[300]}`,top:e.spacing(0),right:e.spacing(-2)}}}}}},"& .SCPrivateMessageThread-item":{display:"flex",marginBottom:e.spacing(1),"& .SCPrivateMessageThread-avatar":{marginRight:e.spacing(6),"& img":{height:e.selfcommunity.group.avatar.sizeMedium,width:e.selfcommunity.group.avatar.sizeMedium}}}},"& .SCPrivateMessageThread-empty-message":{height:"100%",display:"flex",justifyContent:"center",alignItems:"center",fontSize:"1.5rem"},"& .SCPrivateMessageThread-new-message-header":{display:"flex",width:"100%",height:e.mixins.toolbar.minHeight,alignItems:"center",justifyContent:"center",backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),"& .SCPrivateMessageThread-new-message-header-content":{display:"flex",alignItems:"center",width:"80%",backgroundColor:e.palette.common.white,borderRadius:e.shape.borderRadius,marginRight:e.spacing(2),"& .SCPrivateMessageThread-new-message-header-icon":{fontSize:"1.714rem",marginLeft:e.spacing(1)},"& .MuiIcon-root":{color:e.palette.secondary.main},"& .MuiTypography-root":{color:e.palette.secondary.main,marginLeft:e.spacing(1)},"& .SCPrivateMessageThread-autocomplete":{[e.breakpoints.down("md")]:{maxHeight:e.spacing(3.75)},width:"100%",marginLeft:e.spacing(1),maxHeight:e.mixins.toolbar.minHeight,overflow:"auto","& .MuiAutocomplete-tag":{height:e.spacing(3),"& .MuiChip-deleteIcon":{fontSize:"18px"}},"& .MuiAutocomplete-endAdornment":{position:"relative","& .MuiAutocomplete-clearIndicator":{fontSize:"1rem"}}}}},"& .MuiListSubheader-root":{backgroundColor:"inherit",display:"flex",justifyContent:"center",marginBottom:e.spacing(1),zIndex:1e3,"& .SCPrivateMessageThread-subheader":{width:"fit-content",minWidth:100,padding:e.spacing(.25,1),backgroundColor:"white",fontWeight:e.typography.fontWeightRegular,borderRadius:e.shape.borderRadius,boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)"}},"& .MuiList-root, .SCPrivateMessageThread-new-message-content":{flexGrow:1}}),skeletonRoot:({theme:e})=>({height:"100%",width:"100%",borderRadius:0,"& .MuiCardContent-root":{padding:0,"& .MuiList-root .MuiListItem-root":{height:e.spacing(10)},"&:last-child":{paddingBottom:0}}})}};t.default=n},4901:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({flexDirection:"column",borderRadius:e.shape.borderRadius,padding:e.spacing(2,4,4,2),boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",marginBottom:e.spacing(1),"& .MuiListItemSecondaryAction-root":{right:10,top:e.spacing(3),zIndex:1,"& .MuiButtonBase-root":{fontSize:"1.2rem"}},"& .SCPrivateMessageThreadItem-message-time":{position:"absolute",bottom:e.spacing(0),right:e.spacing(3),padding:e.spacing(.5,0,.5,0)},"& .SCPrivateMessageThreadItem-username":{marginRight:"auto",marginBottom:e.spacing(1)},"& .SCPrivateMessageThreadItem-text":{display:"flex",alignItems:"center",zIndex:1,width:"calc(100% - 24px)",minWidth:"calc(100% - 24px)","& .MuiTypography-root":{fontSize:"1.143rem",whiteSpace:"pre-line",overflowWrap:"break-word",wordWrap:"break-word",wordBreak:"break-word",hyphens:"auto"}},"& .SCPrivateMessageThreadItem-img":{display:"flex",alignItems:"center",objectFit:"cover",flex:"0 0 95%","& img":{width:"100%",height:"100%"}},"& .SCPrivateMessageThreadItem-video":{"& .MuiButtonBase-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-60%, -50%)","& .MuiIcon-root":{color:e.palette.common.white,fontSize:"6rem",[e.breakpoints.down("md")]:{fontSize:"3rem"}}},"& .SCPrivateMessageThreadItem-icon-button":{top:"40%",[e.breakpoints.up("sm")]:{transform:"translate(-70%, -40%)"},"& .MuiIcon-root":{color:e.palette.common.white,fontSize:"3rem",[e.breakpoints.down("md")]:{fontSize:"2rem"}}}},"& .SCPrivateMessageThreadItem-document":{[e.breakpoints.up("sm")]:{width:e.spacing(32.5)},"& img":{height:"100%",width:"100%"},"& .MuiButtonBase-root":{flexWrap:"wrap",position:"absolute",bottom:e.spacing(4),backgroundColor:"rgba(0,0,0,0.5)",color:"rgba(255,255,255,0.9)",display:"flex",borderRadius:0,"& .MuiTypography-root":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",marginLeft:e.spacing(.5)}}},"& .SCPrivateMessageThreadItem-other":{marginTop:e.spacing(2),"& .MuiButtonBase-root":{padding:e.spacing(2,1,0,1),flexWrap:"wrap","& .MuiTypography-root":{marginRight:e.spacing(1),overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",maxWidth:"100%",[e.breakpoints.down("md")]:{fontSize:e.typography.fontSize}}}}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({"& h2 .MuiIconButton-root":{top:e.spacing(1),fontSize:"1.57rem"}})}}},8047:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%",display:"flex",flexDirection:"column",alignItems:"center","& .SCProgressBar-bar":{width:"100%",height:10,borderRadius:5},"& .SCProgressBar-progress":{marginTop:e.spacing(.5),h4:{fontWeight:e.typography.fontWeightBold,fontSize:"18px"}}})}}},8509:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column",fontSize:"1.57rem","&.SCReactionAction-inline":{flexDirection:"row-reverse"},"& .SCReactionAction-divider":{width:"100%",borderBottom:0},"& .SCReactionAction-reaction":{width:"1em",height:"1em"}})}}},9219:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCRelatedEventsWidget-content":{padding:`10px ${e.spacing(2)} 12px`,"& .SCRelatedEventsWidget-header":{flexDirection:"row",justifyContent:"flex-start",alignItems:"flex-start",marginBottom:e.spacing(2),"& .SCRelatedEventsWidget-avatar-wrapper":{flexDirection:"row",alignItems:"center",color:"inherit",padding:0,minWidth:"auto","& .SCRelatedEventsWidget-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}},"& h4":{marginLeft:7,lineHeight:"28px"}},"& .SCRelatedEventsWidget-event-wrapper":{gap:e.spacing(2),"& .SCRelatedEventsWidget-event":{"& > div":{padding:"0 !important","& > .SCBaseItem-content":{"& > .SCBaseItem-text":{margin:0}}}}}},"& .SCRelatedEventsWidget-actions":{padding:`0 ${e.spacing(2)} 15px`,justifyContent:"center","& .SCSuggestedEventsWidget-actionButton":{color:e.palette.primary.main}}}),skeletonRoot:({theme:e})=>({"& .SCRelatedEventsWidget-content":{padding:`10px ${e.spacing(2)} 12px`,"& .SCRelatedEventsWidget-user":{marginBottom:e.spacing(2),"& > .SCBaseItem-content":{"& > .SCBaseItem-text":{margin:0}},"& > .SCBaseItem-actions":{display:"none"}},"& .SCRelatedEventsWidget-event-wrapper":{gap:e.spacing(2),"& .SCRelatedEventsWidget-event":{"& > div":{padding:"0 !important","& > .SCBaseItem-content":{"& > .SCBaseItem-text":{margin:0}}}}}},"& .SCRelatedEventsWidget-actions":{padding:`0 ${e.spacing(2)} 15px`,justifyContent:"center"}}),dialogRoot:({theme:e})=>({"& .SCRelatedEventsWidget-infinite-scroll":{height:"400px",[e.breakpoints.down("md")]:{height:"100%"},"& .SCEvent-root":{width:"100%"}}})}}},7485:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({"& .infinite-scroll-component__outerdiv .infinite-scroll-component .SCFeedObject-snippet":{marginLeft:"0 !important"}})}}},8261:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCScrollContainer-scrollbar":{width:5,borderRadius:5,overflowX:"hidden",backgroundColor:e.palette.background.default,transition:"opacity 200ms ease-out"},"& .SCScrollContainer-scroll-thumb":{width:5}})}}},218:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n=o(7655),a={styleOverrides:{root:({theme:e})=>{var t,o,a,r,d,s,l,p,g,c,m,u;return{"& .SCSearchAutocomplete-input":{padding:e.spacing(0,2),borderRadius:e.shape.borderRadius,"& .MuiAutocomplete-input":{padding:e.spacing(.5,1),color:(0,n.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.primary.main}},"& .MuiInputBase-root":{"& .MuiIcon-root":{color:(0,n.getContrastRatio)(null==(a=e.palette)||null==(r=a.navbar)?void 0:r.main,"#fff")>4.5?"#fff":e.palette.primary.main},"& fieldset":{borderColor:(0,i.alpha)((0,n.getContrastRatio)(null==(d=e.palette)||null==(s=d.navbar)?void 0:s.main,"#fff")>4.5?"#fff":e.palette.primary.main,e.palette.action.disabledOpacity)},"&:hover fieldset":{borderColor:(0,n.getContrastRatio)(null==(l=e.palette)||null==(p=l.navbar)?void 0:p.main,"#fff")>4.5?"#fff":e.palette.primary.main},"&.Mui-focused fieldset":{borderColor:(0,n.getContrastRatio)(null==(g=e.palette)||null==(c=g.navbar)?void 0:c.main,"#fff")>4.5?"#fff":e.palette.secondary.main},"&.Mui-focused .SCSearchAutocomplete-icon":{color:(0,n.getContrastRatio)(null==(m=e.palette)||null==(u=m.navbar)?void 0:u.main,"#fff")>4.5?"#fff":e.palette.secondary.main}}}}}};t.default=a},2089:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%","& .SCSnippetNotifications-notifications-wrap":{height:330,overflowY:"hidden"},"& .SCSnippetNotifications-item":{padding:0,marginBottom:e.spacing(),"&:hover":{backgroundColor:"transparent",cursor:"default"},"& .SCNotificationItem-root":{backgroundColor:"transparent",borderRadius:0,"&.SCNotificationItem-snippet":{"&:before":{borderRadius:e.shape.borderRadius,width:e.spacing(.6),left:1,height:"100%",display:"block",zIndex:"20",position:"absolute",content:'" "',backgroundColor:"rgba(84, 110, 122, 0.3)"},"&.SCNotificationItem-new":{"&:before":{backgroundColor:e.palette.primary.main}},"& .SCNotificationItem-header":{padding:e.spacing(1,2)}}},"&.SCSnippetNotifications-broadcast-messages-banner":{"& .SCNotificationItem-root.SCNotificationItem-snippet.SCNotificationItem-new":{"&:before":{backgroundColor:e.palette.secondary.main}},"& .SCNotificationItem-title a":{color:e.palette.secondary.main,fontWeight:e.typography.fontWeightBold}}}}),skeletonRoot:({theme:e})=>({margin:0,padding:0,"& .SCSnippetNotifications-item":{padding:0,marginBottom:e.spacing(),"& .SCNotificationItem-root":{backgroundColor:"transparent",borderRadius:0,"&.SCNotificationItem-snippet":{"&:before":{borderRadius:e.shape.borderRadius,width:e.spacing(.6),left:1,height:"100%",display:"block",zIndex:"20",position:"absolute",content:'" "',backgroundColor:"rgba(84, 110, 122, 0.3)"},"&.SCNotificationItem-new":{"&:before":{backgroundColor:e.palette.primary.main}},"& .SCNotificationItem-header":{padding:e.spacing(1,2)}}}}})}}},5383:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCSuggestedEventsWidget-content":{padding:`15px ${e.spacing(2,2)}`,"& .SCSuggestedEventsWidget-title":{marginBottom:"11px"},"& .SCSuggestedEventsWidget-swiper":{position:"relative","& .swiper-wrapper":{paddingBottom:"1px","& .SCSuggestedEventsWidget-swiper-slide":{width:"210px",height:"auto","& .SCSuggestedEventsWidget-event":{"& .SCEventInfoDetails-root":{"& h5":{fontSize:"1rem",maxWidth:200,textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden"},"& .SCEventInfoDetails-icon-text-wrapper":{gap:e.spacing(.5),"& .community-icons":{fontSize:"0.9rem"},"& p":{marginTop:1,fontSize:"0.60rem"}}}}}},"& .SCSuggestedEventsWidget-swiper-arrow":{position:"absolute",top:"50%",transform:"translateY(-50%)",zIndex:1,paddingLeft:"10px!important",paddingRight:"10px!important",minWidth:"auto",backgroundColor:e.palette.grey[400]},"& .SCSuggestedEventsWidget-swiper-prev-arrow":{left:"5px"},"& .SCSuggestedEventsWidget-swiper-next-arrow":{right:"5px"}}},"& .SCSuggestedEventsWidget-actions":{padding:`0 ${e.spacing()} ${e.spacing()}`,justifyContent:"center","& .SCSuggestedEventsWidget-actionButton":{color:e.palette.primary.main}},"& .SCEvent-skeleton-preview-name":{marginTop:0,marginBottom:0},"& .SCEvent-skeleton-preview-actions":{padding:0}}),skeletonRoot:({theme:e})=>({"& .SCSuggestedEventsWidget-content":{padding:`15px 0 ${e.spacing(3)} ${e.spacing(2)}`,"& .SCSuggestedEventsWidget-title":{marginBottom:"11px"},"& .SCSuggestedEventsWidget-swiper-slide":{width:"210px",height:"auto"}},"& .SCSuggestedEventsWidget-actions":{padding:`0 ${e.spacing()} ${e.spacing()}`,justifyContent:"center"},"& .SCEvent-skeleton-preview-actions":{padding:0}})}}},8762:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({})}}},3701:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:0,paddingBottom:0,overflow:"visible",[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"& .MuiChip-root":{height:"18px"},"& .SCUser-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium,"& img":{borderRadius:0}},"& .SCUser-staff-badge-label":{marginLeft:e.spacing(1),borderRadius:0,fontSize:"0.5rem"},"& .SCUser-group-admin-badge-label":{marginLeft:e.spacing(1),fontSize:"0.75rem",color:e.palette.secondary.main},"& .SCBaseItemButton-primary":{fontWeight:e.typography.fontWeightBold},"& .SCBaseItemButton-secondary":{fontSize:"0.857rem"}}),skeletonRoot:({theme:e})=>({})}}},458:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({color:e.palette.primary.main}),menuRoot:({theme:e})=>({})}}},1830:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserAvatar-badge-content":{width:16,height:16,backgroundColor:e.palette.background.paper,border:`1px solid ${e.palette.background.paper}`},"& .SCUserAvatar-badge-content-xs":{width:`${e.spacing(1.75)} !important`,height:`${e.spacing(1.75)} !important`},".MuiBadge-badge":{right:e.spacing(.2),top:e.spacing(.9)}})}}},880:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},6466:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},6487:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},6091:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},5682:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserCounters-button":{color:e.palette.text.primary,padding:e.spacing(.5),borderRadius:e.shape.borderRadius/3,fontSize:"1.143rem",fontWeight:e.typography.fontWeightMedium,"& strong":{display:"inline-block",marginRight:e.spacing(1),fontWeight:e.typography.fontWeightBold},"&:hover, &:active":{color:e.palette.secondary.main}}})}}},4377:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},200:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},4177:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},3991:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserInfo-field":{marginBottom:e.spacing(2),"& h6":{fontSize:"1.143rem",fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(.5)},"&:last-of-type":{marginBottom:0}}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({"& .SCUserInfo-caption":{marginTop:e.spacing(-2),textAlign:"center","& .SCUserInfo-avatar":{margin:e.spacing(0,"auto",1),width:e.selfcommunity.user.avatar.sizeLarge,height:e.selfcommunity.user.avatar.sizeLarge},"& .SCUserInfo-username":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem",marginBottom:e.spacing(1)}}})}}},7875:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({textAlign:"center","& .SCUserProfileBlocked-info":{marginTop:e.spacing(3),marginBottom:e.spacing(3)}})}}},4768:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserProfileEdit-tabs":{marginBottom:e.spacing(3),"& .MuiTabScrollButton-root":{transition:"width 1s ease-in-out","&.Mui-disabled":{width:0}}},"& .SCUserProfileEdit-tab-content":{padding:e.spacing(0,2),maxWidth:400}}),skeletonRoot:({theme:e})=>({}),passwordDialogRoot:({theme:e})=>({"& .MuiDialogContent-root":{"& .SCUserProfileEdit-password-form":{"& .SCUserProfileEdit-form-field":{margin:e.spacing(1,1,1,0)}}},"& .SCUserProfileEdit-confirm-change-button":{marginTop:e.spacing(1)}}),accountRoot:({theme:e})=>({"& .SCUserProfileEdit-danger-zone":{marginTop:e.spacing(2),"& > *":{marginBottom:e.spacing(2)}},"& .SCUserProfileEdit-language-switcher":{margin:e.spacing(1,0,1,0)},"& .SCUserProfileEdit-account-credentials-root":{"& .SCUserProfileEdit-email, .SCUserProfileEdit-password":{margin:e.spacing(1,0,1,0),fontWeight:"bold"}}}),settingsRoot:({theme:e})=>({"& .SCUserProfileEdit-control":{margin:e.spacing(0,0,2,0),"& .MuiFormControl-root":{display:"block"}}}),publicInfoRoot:({theme:e})=>({"& .SCUserProfileEdit-field":{margin:e.spacing(1,0,1,0)},"& .SCUserProfileEdit-field .MuiSelect-icon":{right:e.spacing(5)},"& .SCUserProfileEdit-btn-save":{marginTop:e.spacing(2),marginBottom:e.spacing()}})}}},3601:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserProfileHeader-cover":{position:"relative",height:230,minHeight:150,borderRadius:0,background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",boxShadow:"unset",[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}},"& .SCUserProfileHeader-infops-section":{display:"flex",justifyContent:"space-between",marginBottom:e.spacing(1)},"& .SCUserProfileHeader-avatar":{top:180,display:"block",position:"absolute",marginLeft:e.spacing(2),"& > .MuiBadge-root > img":{height:e.selfcommunity.user.avatar.sizeXLarge,width:e.selfcommunity.user.avatar.sizeXLarge,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover"},"& .MuiBadge-badge":{right:e.spacing(1),top:e.spacing(3),"& .SCUserAvatar-badge-content":{width:32,height:32}}},"& .SCUserProfileHeader-change-picture":{top:240,left:70,position:"relative",display:"flex",marginLeft:e.spacing(2)},"& .SCUserProfileHeader-info":{marginLeft:e.spacing(1),[e.breakpoints.up("md")]:{marginLeft:e.spacing(2)},"& .SCUserProfileHeader-username":{marginTop:.5*e.selfcommunity.user.avatar.sizeXLarge+8,fontWeight:e.typography.fontWeightBold,fontSize:"1.429rem",textAlign:"start"},"& .SCUserProfileHeader-realname":{fontSize:"1rem",textAlign:"start",marginTop:e.spacing(1)},"& .SCUserProfileHeader-website":{textDecoration:"none",color:e.palette.secondary.main,marginTop:e.spacing(1)}},"& .SCUserProfileHeader-change-cover":{position:"absolute",right:10,bottom:10}}),skeletonRoot:({theme:e})=>({position:"relative","& .SCUserProfileHeader-cover":{[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)},height:230},"& .SCUserProfileHeader-avatar":{display:"block",position:"absolute",top:230-.5*e.selfcommunity.user.avatar.sizeXLarge-5,marginLeft:e.spacing(4),"& .MuiSkeleton-root":{border:"#FFF solid 5px"}},"& .SCUserProfileHeader-section":{display:"flex",justifyContent:"space-between","& .SCUserProfileHeader-username":{marginTop:50,textAlign:"start","& .MuiSkeleton-root":{position:"absolute",marginLeft:e.spacing(4)}},"& .SCUserProfileHeader-actions":{[e.breakpoints.up("md")]:{margin:e.spacing(1,2,2,2)},height:"fit-content",marginTop:e.spacing(1)}}})}}},7481:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& > p: nth-of-type(2)":{marginTop:e.spacing(1)},"& .SCUserProfileTemplate-tags":{marginTop:e.spacing(2),marginLeft:e.spacing(2),justifyContent:"start"},"& .SCUserProfileTemplate-counters":{marginLeft:e.spacing(1),[e.breakpoints.up("md")]:{marginLeft:e.spacing(2)},justifyContent:"start",display:"flex",alignItems:"center",flexWrap:"wrap"},"& .SCUserProfileTemplate-info":{marginLeft:e.spacing(1.75),[e.breakpoints.up("md")]:{marginLeft:e.spacing(2.5)},textAlign:"start"},"& .SCUserProfileTemplate-feed":{marginTop:e.spacing(2)},"& .SCUserProfileTemplate-actions":{marginTop:e.spacing(5.75),[e.breakpoints.up("md")]:{margin:e.spacing(1,2,2,2)},height:"fit-content"}}),skeletonRoot:({theme:e})=>({})}}},8043:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},5024:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},4038:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCVoteAudienceButton-reaction-list":{maxWidth:e.spacing(5),overflow:"hidden",marginTop:e.spacing(-.25),fontSize:"1.143rem",display:"flex",flexDirection:"row","& .MuiIcon-root":{marginRight:e.spacing(.5),backgroundColor:"transparent"}},"& > .MuiIcon-root":{fontSize:"1.143rem",marginTop:e.spacing(-.25)}}),dialogRoot:({theme:e})=>({"& .SCVoteAudienceButton-dialog-tabs":{"& .MuiTab-root":{flexDirection:"row",justifyContent:"space-evenly"}},"& .SCVoteAudienceButton-dialog-vote-badge":{width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall,backgroundColor:e.palette.background.paper,border:`1px solid ${e.palette.background.paper}`}})}}},6495:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({color:e.palette.primary.main,marginTop:e.spacing(.5),marginBottom:e.spacing(.5),borderRadius:"50%",padding:e.spacing(1.5),minWidth:0,"& .MuiIcon-root":{fontSize:"1.57rem"},"&.MuiButton-sizeSmall":{padding:e.spacing(.5),"& .MuiIcon-root":{fontSize:"1rem"}}}),popperRoot:({theme:e})=>({"& .SCVoteButton-reaction .MuiIcon-root":{fontSize:"22px"}})}}},8133:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={variants:[{props:{elevation:0},style:{border:0,boxShadow:"none"}},{props:{variant:"outlined"},style:{border:"1px solid rgba(0, 0, 0, 0.12)",boxShadow:"none"}}],styleOverrides:{root:({theme:e})=>({borderRadius:0,boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",border:"0 none",[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"&.MuiPaper-elevation0":{borderRadius:0},"& .MuiCardContent-root":{padding:e.spacing(2.2),"& h5":{fontFamily:e.typography.fontFamily,fontWeight:e.typography.fontWeightBold,color:(0,i.darken)(e.palette.text.primary,.5),fontSize:"1.143rem"},"& .MuiList-root":{paddingTop:e.spacing(2),paddingBottom:0,"& .MuiListItem-root:first-of-type":{paddingTop:0},"& .MuiListItem-root":{paddingTop:e.spacing(1),paddingBottom:e.spacing(1),paddingLeft:0,paddingRight:0,"& .SCBaseItemButton-text, & .SCBaseItem-text":{marginTop:0,marginBottom:0},"& .SCWidget-root":{borderRadius:0}}},"& > .MuiTypography-body2":{paddingTop:e.spacing(2)},"& > .MuiButton-sizeMedium":{marginTop:e.spacing(1),padding:e.spacing(0),color:e.palette.secondary.main}}})}};t.default=n},4478:(e,t,o)=>{o.d(t,{Z:()=>v});var i=o(272),n=o.n(i),a=o(2609),r=o.n(a),d=o(8991),s=o.n(d),l=new URL(o(6736),o.b),p=new URL(o(7612),o.b),g=new URL(o(40),o.b),c=new URL(o(8369),o.b),m=new URL(o(6102),o.b),u=r()(n()),f=s()(l),h=s()(l,{hash:"#9935da"}),C=s()(p),b=s()(g),S=s()(c),y=s()(m,{hash:"#community-icons"});u.push([e.id,"@font-face {\n font-family: 'community-icons';\n src: url("+f+");\n src: url("+h+") format('embedded-opentype'),\n url("+C+") format('woff2'),\n url("+b+") format('truetype'),\n url("+S+") format('woff'),\n url("+y+') format(\'svg\');\n font-weight: normal;\n font-style: normal;\n font-display: block;\n}\n\n.community-icons {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: \'community-icons\' !important;\n speak: never;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Enable Ligatures ================ */\n letter-spacing: 0;\n -ms-font-feature-settings: "liga" 1;\n font-feature-settings: "liga";\n font-variant-ligatures: discretionary-ligatures;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.icon-add_to_home:before {\n content: "\\e96f";\n}\n.icon-box_arrow_up:before {\n content: "\\e96e";\n}\n.icon-add_square:before {\n content: "\\e96d";\n}\n.icon-ai_stars:before {\n content: "\\e96c";\n}\n.icon-circle_closed:before {\n content: "\\e96a";\n}\n.icon-circle_checked:before {\n content: "\\e96b";\n}\n.icon-frequency:before {\n content: "\\e969";\n}\n.icon-calendar_off:before {\n content: "\\e967";\n}\n.icon-twitter:before {\n content: "\\e959";\n}\n.icon-magic_wand:before {\n content: "\\e968";\n}\n.icon-private:before {\n content: "\\e966";\n}\n.icon-groups:before {\n content: "\\e965";\n}\n.icon-category:before {\n content: "\\e938";\n}\n.icon-photo_file:before {\n content: "\\e964";\n}\n.icon-card_giftcard:before {\n content: "\\e900";\n}\n.icon-image:before {\n content: "\\e90a";\n}\n.icon-photo_camera:before {\n content: "\\e90b";\n}\n.icon-card_membership:before {\n content: "\\e90d";\n}\n.icon-label:before {\n content: "\\e917";\n}\n.icon-access_time:before {\n content: "\\e91f";\n}\n.icon-help_outline:before {\n content: "\\e920";\n}\n.icon-info:before {\n content: "\\e921";\n}\n.icon-error:before {\n content: "\\e922";\n}\n.icon-format_align_center:before {\n content: "\\e924";\n}\n.icon-format_align_right:before {\n content: "\\e925";\n}\n.icon-format_align_left:before {\n content: "\\e926";\n}\n.icon-format_align_justify:before {\n content: "\\e927";\n}\n.icon-format_horizontal_rule:before {\n content: "\\e928";\n}\n.icon-drag:before {\n content: "\\e92a";\n}\n.icon-format_heading_3:before {\n content: "\\e92b";\n}\n.icon-format_heading_1:before {\n content: "\\e92c";\n}\n.icon-format_heading_2:before {\n content: "\\e92d";\n}\n.icon-format_paragraph:before {\n content: "\\e92e";\n}\n.icon-more_vert:before {\n content: "\\e92f";\n}\n.icon-list:before {\n content: "\\e930";\n}\n.icon-format_list_bulleted:before {\n content: "\\e933";\n}\n.icon-format_superscript:before {\n content: "\\e939";\n}\n.icon-format_subscript:before {\n content: "\\e93c";\n}\n.icon-format_clear:before {\n content: "\\e93f";\n}\n.icon-format_strikethrough:before {\n content: "\\e941";\n}\n.icon-title:before {\n content: "\\e948";\n}\n.icon-check:before {\n content: "\\e949";\n}\n.icon-format_quote:before {\n content: "\\e958";\n}\n.icon-menu:before {\n content: "\\e962";\n}\n.icon-format_list_numbered:before {\n content: "\\e963";\n}\n.icon-add_circle_outline:before {\n content: "\\e901";\n}\n.icon-add_location_alt:before {\n content: "\\e902";\n}\n.icon-add:before {\n content: "\\e903";\n}\n.icon-arrow_back:before {\n content: "\\e904";\n}\n.icon-attach_file:before {\n content: "\\e905";\n}\n.icon-bar_chart:before {\n content: "\\e906";\n}\n.icon-bookmark_added:before {\n content: "\\e907";\n}\n.icon-bookmark_border:before {\n content: "\\e908";\n}\n.icon-CalendarIcon:before {\n content: "\\e909";\n}\n.icon-chat_bubble_outline:before {\n content: "\\e90c";\n}\n.icon-chevron_left:before {\n content: "\\e90e";\n}\n.icon-chevron_right:before {\n content: "\\e90f";\n}\n.icon-close:before {\n content: "\\e910";\n}\n.icon-code:before {\n content: "\\e911";\n}\n.icon-create:before {\n content: "\\e912";\n}\n.icon-delete:before {\n content: "\\e913";\n}\n.icon-download:before {\n content: "\\e914";\n}\n.icon-edit:before {\n content: "\\e915";\n}\n.icon-email:before {\n content: "\\e916";\n}\n.icon-expand_less:before {\n content: "\\e918";\n}\n.icon-expand_more:before {\n content: "\\e919";\n}\n.icon-explore:before {\n content: "\\e91a";\n}\n.icon-face:before {\n content: "\\e91b";\n}\n.icon-facebook:before {\n content: "\\e91c";\n}\n.icon-fiber_manual_record:before {\n content: "\\e91d";\n}\n.icon-folder_open:before {\n content: "\\e91e";\n}\n.icon-format_bold:before {\n content: "\\e923";\n}\n.icon-format_italic:before {\n content: "\\e929";\n}\n.icon-format_underline:before {\n content: "\\e931";\n}\n.icon-google:before {\n content: "\\e932";\n}\n.icon-hide_image:before {\n content: "\\e934";\n}\n.icon-highlight_off:before {\n content: "\\e935";\n}\n.icon-highlight:before {\n content: "\\e936";\n}\n.icon-home:before {\n content: "\\e937";\n}\n.icon-insert_link:before {\n content: "\\e93a";\n}\n.icon-instagram:before {\n content: "\\e93b";\n}\n.icon-link:before {\n content: "\\e93d";\n}\n.icon-linkedin:before {\n content: "\\e93e";\n}\n.icon-more_circle:before {\n content: "\\e940";\n}\n.icon-movie:before {\n content: "\\e942";\n}\n.icon-notifications_active:before {\n content: "\\e943";\n}\n.icon-notifications_off:before {\n content: "\\e944";\n}\n.icon-outlined_flag:before {\n content: "\\e945";\n}\n.icon-people_alt:before {\n content: "\\e946";\n}\n.icon-person:before {\n content: "\\e947";\n}\n.icon-picture_as_pdf:before {\n content: "\\e94a";\n}\n.icon-play_arrow:before {\n content: "\\e94b";\n}\n.icon-play_circle_outline:before {\n content: "\\e94c";\n}\n.icon-public:before {\n content: "\\e94d";\n}\n.icon-redo:before {\n content: "\\e94e";\n}\n.icon-restore_from_trash:before {\n content: "\\e94f";\n}\n.icon-restore:before {\n content: "\\e950";\n}\n.icon-save:before {\n content: "\\e951";\n}\n.icon-search:before {\n content: "\\e952";\n}\n.icon-send:before {\n content: "\\e953";\n}\n.icon-sentiment_satisfied_alt:before {\n content: "\\e954";\n}\n.icon-share:before {\n content: "\\e955";\n}\n.icon-thumb_up_off_alt:before {\n content: "\\e956";\n}\n.icon-thumb_up:before {\n content: "\\e957";\n}\n.icon-undo:before {\n content: "\\e95a";\n}\n.icon-upload:before {\n content: "\\e95b";\n}\n.icon-visibility_off:before {\n content: "\\e95c";\n}\n.icon-visibility:before {\n content: "\\e95d";\n}\n.icon-whatsup_circle:before {\n content: "\\e95e";\n}\n.icon-zoom_in:before {\n content: "\\e95f";\n}\n.icon-zoom_out_map:before {\n content: "\\e960";\n}\n.icon-zoom_out:before {\n content: "\\e961";\n}\n',"",{version:3,sources:["webpack://./src/fonts/community-icons.css"],names:[],mappings:"AAAA;EACE,8BAA8B;EAC9B,6CAAyC;EACzC;;;;uDAIiE;EACjE,mBAAmB;EACnB,kBAAkB;EAClB,mBAAmB;AACrB;;AAEA;EACE,+EAA+E;EAC/E,yCAAyC;EACzC,YAAY;EACZ,kBAAkB;EAClB,mBAAmB;EACnB,oBAAoB;EACpB,oBAAoB;EACpB,cAAc;;EAEd,sCAAsC;EACtC,iBAAiB;EAIjB,mCAAmC;EACnC,6BAA6B;EAE7B,+CAA+C;;EAE/C,sCAAsC;EACtC,mCAAmC;EACnC,kCAAkC;AACpC;;AAEA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB",sourcesContent:['@font-face {\n font-family: \'community-icons\';\n src: url(\'./community/icons.eot?9935da\');\n src: url(\'./community/icons.eot?9935da#9935da\') format(\'embedded-opentype\'),\n url(\'./community/icons.woff2?9935da\') format(\'woff2\'),\n url(\'./community/icons.ttf?9935da\') format(\'truetype\'),\n url(\'./community/icons.woff?9935da\') format(\'woff\'),\n url(\'./community/icons.svg?9935da#community-icons\') format(\'svg\');\n font-weight: normal;\n font-style: normal;\n font-display: block;\n}\n\n.community-icons {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: \'community-icons\' !important;\n speak: never;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Enable Ligatures ================ */\n letter-spacing: 0;\n -webkit-font-feature-settings: "liga";\n -moz-font-feature-settings: "liga=1";\n -moz-font-feature-settings: "liga";\n -ms-font-feature-settings: "liga" 1;\n font-feature-settings: "liga";\n -webkit-font-variant-ligatures: discretionary-ligatures;\n font-variant-ligatures: discretionary-ligatures;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.icon-add_to_home:before {\n content: "\\e96f";\n}\n.icon-box_arrow_up:before {\n content: "\\e96e";\n}\n.icon-add_square:before {\n content: "\\e96d";\n}\n.icon-ai_stars:before {\n content: "\\e96c";\n}\n.icon-circle_closed:before {\n content: "\\e96a";\n}\n.icon-circle_checked:before {\n content: "\\e96b";\n}\n.icon-frequency:before {\n content: "\\e969";\n}\n.icon-calendar_off:before {\n content: "\\e967";\n}\n.icon-twitter:before {\n content: "\\e959";\n}\n.icon-magic_wand:before {\n content: "\\e968";\n}\n.icon-private:before {\n content: "\\e966";\n}\n.icon-groups:before {\n content: "\\e965";\n}\n.icon-category:before {\n content: "\\e938";\n}\n.icon-photo_file:before {\n content: "\\e964";\n}\n.icon-card_giftcard:before {\n content: "\\e900";\n}\n.icon-image:before {\n content: "\\e90a";\n}\n.icon-photo_camera:before {\n content: "\\e90b";\n}\n.icon-card_membership:before {\n content: "\\e90d";\n}\n.icon-label:before {\n content: "\\e917";\n}\n.icon-access_time:before {\n content: "\\e91f";\n}\n.icon-help_outline:before {\n content: "\\e920";\n}\n.icon-info:before {\n content: "\\e921";\n}\n.icon-error:before {\n content: "\\e922";\n}\n.icon-format_align_center:before {\n content: "\\e924";\n}\n.icon-format_align_right:before {\n content: "\\e925";\n}\n.icon-format_align_left:before {\n content: "\\e926";\n}\n.icon-format_align_justify:before {\n content: "\\e927";\n}\n.icon-format_horizontal_rule:before {\n content: "\\e928";\n}\n.icon-drag:before {\n content: "\\e92a";\n}\n.icon-format_heading_3:before {\n content: "\\e92b";\n}\n.icon-format_heading_1:before {\n content: "\\e92c";\n}\n.icon-format_heading_2:before {\n content: "\\e92d";\n}\n.icon-format_paragraph:before {\n content: "\\e92e";\n}\n.icon-more_vert:before {\n content: "\\e92f";\n}\n.icon-list:before {\n content: "\\e930";\n}\n.icon-format_list_bulleted:before {\n content: "\\e933";\n}\n.icon-format_superscript:before {\n content: "\\e939";\n}\n.icon-format_subscript:before {\n content: "\\e93c";\n}\n.icon-format_clear:before {\n content: "\\e93f";\n}\n.icon-format_strikethrough:before {\n content: "\\e941";\n}\n.icon-title:before {\n content: "\\e948";\n}\n.icon-check:before {\n content: "\\e949";\n}\n.icon-format_quote:before {\n content: "\\e958";\n}\n.icon-menu:before {\n content: "\\e962";\n}\n.icon-format_list_numbered:before {\n content: "\\e963";\n}\n.icon-add_circle_outline:before {\n content: "\\e901";\n}\n.icon-add_location_alt:before {\n content: "\\e902";\n}\n.icon-add:before {\n content: "\\e903";\n}\n.icon-arrow_back:before {\n content: "\\e904";\n}\n.icon-attach_file:before {\n content: "\\e905";\n}\n.icon-bar_chart:before {\n content: "\\e906";\n}\n.icon-bookmark_added:before {\n content: "\\e907";\n}\n.icon-bookmark_border:before {\n content: "\\e908";\n}\n.icon-CalendarIcon:before {\n content: "\\e909";\n}\n.icon-chat_bubble_outline:before {\n content: "\\e90c";\n}\n.icon-chevron_left:before {\n content: "\\e90e";\n}\n.icon-chevron_right:before {\n content: "\\e90f";\n}\n.icon-close:before {\n content: "\\e910";\n}\n.icon-code:before {\n content: "\\e911";\n}\n.icon-create:before {\n content: "\\e912";\n}\n.icon-delete:before {\n content: "\\e913";\n}\n.icon-download:before {\n content: "\\e914";\n}\n.icon-edit:before {\n content: "\\e915";\n}\n.icon-email:before {\n content: "\\e916";\n}\n.icon-expand_less:before {\n content: "\\e918";\n}\n.icon-expand_more:before {\n content: "\\e919";\n}\n.icon-explore:before {\n content: "\\e91a";\n}\n.icon-face:before {\n content: "\\e91b";\n}\n.icon-facebook:before {\n content: "\\e91c";\n}\n.icon-fiber_manual_record:before {\n content: "\\e91d";\n}\n.icon-folder_open:before {\n content: "\\e91e";\n}\n.icon-format_bold:before {\n content: "\\e923";\n}\n.icon-format_italic:before {\n content: "\\e929";\n}\n.icon-format_underline:before {\n content: "\\e931";\n}\n.icon-google:before {\n content: "\\e932";\n}\n.icon-hide_image:before {\n content: "\\e934";\n}\n.icon-highlight_off:before {\n content: "\\e935";\n}\n.icon-highlight:before {\n content: "\\e936";\n}\n.icon-home:before {\n content: "\\e937";\n}\n.icon-insert_link:before {\n content: "\\e93a";\n}\n.icon-instagram:before {\n content: "\\e93b";\n}\n.icon-link:before {\n content: "\\e93d";\n}\n.icon-linkedin:before {\n content: "\\e93e";\n}\n.icon-more_circle:before {\n content: "\\e940";\n}\n.icon-movie:before {\n content: "\\e942";\n}\n.icon-notifications_active:before {\n content: "\\e943";\n}\n.icon-notifications_off:before {\n content: "\\e944";\n}\n.icon-outlined_flag:before {\n content: "\\e945";\n}\n.icon-people_alt:before {\n content: "\\e946";\n}\n.icon-person:before {\n content: "\\e947";\n}\n.icon-picture_as_pdf:before {\n content: "\\e94a";\n}\n.icon-play_arrow:before {\n content: "\\e94b";\n}\n.icon-play_circle_outline:before {\n content: "\\e94c";\n}\n.icon-public:before {\n content: "\\e94d";\n}\n.icon-redo:before {\n content: "\\e94e";\n}\n.icon-restore_from_trash:before {\n content: "\\e94f";\n}\n.icon-restore:before {\n content: "\\e950";\n}\n.icon-save:before {\n content: "\\e951";\n}\n.icon-search:before {\n content: "\\e952";\n}\n.icon-send:before {\n content: "\\e953";\n}\n.icon-sentiment_satisfied_alt:before {\n content: "\\e954";\n}\n.icon-share:before {\n content: "\\e955";\n}\n.icon-thumb_up_off_alt:before {\n content: "\\e956";\n}\n.icon-thumb_up:before {\n content: "\\e957";\n}\n.icon-undo:before {\n content: "\\e95a";\n}\n.icon-upload:before {\n content: "\\e95b";\n}\n.icon-visibility_off:before {\n content: "\\e95c";\n}\n.icon-visibility:before {\n content: "\\e95d";\n}\n.icon-whatsup_circle:before {\n content: "\\e95e";\n}\n.icon-zoom_in:before {\n content: "\\e95f";\n}\n.icon-zoom_out_map:before {\n content: "\\e960";\n}\n.icon-zoom_out:before {\n content: "\\e961";\n}\n'],sourceRoot:""}]);const v=u},8152:(e,t,o)=>{o.d(t,{Z:()=>d});var i=o(272),n=o.n(i),a=o(2609),r=o.n(a)()(n());r.push([e.id,"html, body {\n font-size: 14px;\n}\n","",{version:3,sources:["webpack://./src/styles/reset.css"],names:[],mappings:"AAAA;IACI,eAAe;AACnB",sourcesContent:["html, body {\n font-size: 14px;\n}\n"],sourceRoot:""}]);const d=r},2609:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",i=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),i&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),i&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,i,n,a){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(i)for(var d=0;d<this.length;d++){var s=this[d][0];null!=s&&(r[s]=!0)}for(var l=0;l<e.length;l++){var p=[].concat(e[l]);i&&r[p[0]]||(void 0!==a&&(void 0===p[5]||(p[1]="@layer".concat(p[5].length>0?" ".concat(p[5]):""," {").concat(p[1],"}")),p[5]=a),o&&(p[2]?(p[1]="@media ".concat(p[2]," {").concat(p[1],"}"),p[2]=o):p[2]=o),n&&(p[4]?(p[1]="@supports (".concat(p[4],") {").concat(p[1],"}"),p[4]=n):p[4]="".concat(n)),t.push(p))}},t}},8991:e=>{e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},272:e=>{e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var i=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(i),a="/*# ".concat(n," */"),r=o.sources.map((function(e){return"/*# sourceURL=".concat(o.sourceRoot||"").concat(e," */")}));return[t].concat(r).concat([a]).join("\n")}return[t].join("\n")}},3984:(e,t,o)=>{o.r(t),o.d(t,{default:()=>C});var i=o(6062),n=o.n(i),a=o(4036),r=o.n(a),d=o(6793),s=o.n(d),l=o(7892),p=o.n(l),g=o(1173),c=o.n(g),m=o(2464),u=o.n(m),f=o(4478),h={};h.styleTagTransform=u(),h.setAttributes=p(),h.insert=s().bind(null,"head"),h.domAPI=r(),h.insertStyleElement=c(),n()(f.Z,h);const C=f.Z&&f.Z.locals?f.Z.locals:void 0},4014:(e,t,o)=>{o.r(t),o.d(t,{default:()=>C});var i=o(6062),n=o.n(i),a=o(4036),r=o.n(a),d=o(6793),s=o.n(d),l=o(7892),p=o.n(l),g=o(1173),c=o.n(g),m=o(2464),u=o.n(m),f=o(8152),h={};h.styleTagTransform=u(),h.setAttributes=p(),h.insert=s().bind(null,"head"),h.domAPI=r(),h.insertStyleElement=c(),n()(f.Z,h);const C=f.Z&&f.Z.locals?f.Z.locals:void 0},6062:e=>{var t=[];function o(e){for(var o=-1,i=0;i<t.length;i++)if(t[i].identifier===e){o=i;break}return o}function i(e,i){for(var a={},r=[],d=0;d<e.length;d++){var s=e[d],l=i.base?s[0]+i.base:s[0],p=a[l]||0,g="".concat(l," ").concat(p);a[l]=p+1;var c=o(g),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==c)t[c].references++,t[c].updater(m);else{var u=n(m,i);i.byIndex=d,t.splice(d,0,{identifier:g,updater:u,references:1})}r.push(g)}return r}function n(e,t){var o=t.domAPI(t);return o.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;o.update(e=t)}else o.remove()}}e.exports=function(e,n){var a=i(e=e||[],n=n||{});return function(e){e=e||[];for(var r=0;r<a.length;r++){var d=o(a[r]);t[d].references--}for(var s=i(e,n),l=0;l<a.length;l++){var p=o(a[l]);0===t[p].references&&(t[p].updater(),t.splice(p,1))}a=s}}},6793:e=>{var t={};e.exports=function(e,o){var i=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!i)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");i.appendChild(o)}},1173:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},7892:(e,t,o)=>{e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},4036:e=>{e.exports=function(e){var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var i="";o.supports&&(i+="@supports (".concat(o.supports,") {")),o.media&&(i+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(i+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),i+=o.css,n&&(i+="}"),o.media&&(i+="}"),o.supports&&(i+="}");var a=o.sourceMap;a&&"undefined"!=typeof btoa&&(i+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(i,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},2464:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},6736:(e,t,o)=>{e.exports=o.p+"984892b9937ab038a2c8.eot?9935da"},6102:(e,t,o)=>{e.exports=o.p+"3b4a66f561b43352062f.svg?9935da"},40:(e,t,o)=>{e.exports=o.p+"66d70898f471fac919c0.ttf?9935da"},7612:(e,t,o)=>{e.exports=o.p+"eb6136d8e7c3dd30e533.woff2?9935da"},8369:(e,t,o)=>{e.exports=o.p+"f1100f0b1cfa5e60309a.woff?9935da"},5435:e=>{e.exports=a},901:e=>{e.exports=t},4841:e=>{e.exports=i},7655:t=>{t.exports=e},8719:e=>{e.exports=n},8156:e=>{e.exports=o}},d={};function s(e){var t=d[e];if(void 0!==t)return t.exports;var o=d[e]={id:e,exports:{}};return r[e](o,o.exports,s),o.exports}s.m=r,s.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return s.d(t,{a:t}),t},s.d=(e,t)=>{for(var o in t)s.o(t,o)&&!s.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;s.g.importScripts&&(e=s.g.location+"");var t=s.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var o=t.getElementsByTagName("script");o.length&&(e=o[o.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),s.p=e})(),s.b=document.baseURI||self.location.href,s.nc=void 0;var l={};return(()=>{var e=l;e.__esModule=!0,e.default=void 0,s(3984),s(4014);var t=Jt(s(7751)),o=Jt(s(3154)),i=Jt(s(9649)),n=Jt(s(174)),a=Jt(s(1420)),r=Jt(s(616)),d=Jt(s(5434)),p=Jt(s(6682)),g=Jt(s(8103)),c=Jt(s(8647)),m=Jt(s(9071)),u=Jt(s(2436)),f=Jt(s(5731)),h=Jt(s(824)),C=Jt(s(2327)),b=Jt(s(1512)),S=Jt(s(53)),y=Jt(s(8230)),v=Jt(s(4197)),A=Jt(s(7042)),B=Jt(s(3100)),x=Jt(s(5884)),M=Jt(s(5861)),w=Jt(s(6586)),R=Jt(s(1108)),k=Jt(s(3532)),_=Jt(s(9656)),E=Jt(s(1601)),W=Jt(s(2164)),I=Jt(s(739)),O=Jt(s(5114)),T=Jt(s(6439)),z=Jt(s(9019)),F=Jt(s(4145)),j=Jt(s(4610)),L=Jt(s(7313)),P=Jt(s(1596)),D=Jt(s(9830)),N=Jt(s(1698)),$=Jt(s(7477)),H=Jt(s(6282)),G=Jt(s(2534)),U=Jt(s(1387)),V=Jt(s(3673)),q=Jt(s(7537)),X=Jt(s(8990)),Y=Jt(s(5372)),Z=Jt(s(5403)),J=Jt(s(3156)),Q=Jt(s(3605)),K=Jt(s(9518)),ee=Jt(s(3039)),te=Jt(s(9158)),oe=Jt(s(2941)),ie=Jt(s(8201)),ne=Jt(s(2937)),ae=Jt(s(7319)),re=Jt(s(5545)),de=Jt(s(7222)),se=Jt(s(5806)),le=Jt(s(300)),pe=Jt(s(3244)),ge=Jt(s(911)),ce=Jt(s(957)),me=Jt(s(8586)),ue=Jt(s(797)),fe=Jt(s(6166)),he=Jt(s(7948)),Ce=Jt(s(2595)),be=Jt(s(3868)),Se=Jt(s(6191)),ye=Jt(s(7553)),ve=Jt(s(8050)),Ae=Jt(s(4060)),Be=Jt(s(2319)),xe=Jt(s(1634)),Me=Jt(s(2e3)),we=Jt(s(6886)),Re=Jt(s(8775)),ke=Jt(s(9819)),_e=Jt(s(9697)),Ee=Jt(s(2579)),We=Jt(s(4290)),Ie=Jt(s(1064)),Oe=Jt(s(4331)),Te=Jt(s(8825)),ze=Jt(s(1920)),Fe=Jt(s(9453)),je=Jt(s(9353)),Le=Jt(s(7172)),Pe=Jt(s(2647)),De=Jt(s(4422)),Ne=Jt(s(7576)),$e=Jt(s(6096)),He=Jt(s(5137)),Ge=Jt(s(7972)),Ue=Jt(s(9002)),Ve=Jt(s(9078)),qe=Jt(s(116)),Xe=Jt(s(7395)),Ye=Jt(s(8185)),Ze=Jt(s(3914)),Je=Jt(s(3212)),Qe=Jt(s(8154)),Ke=Jt(s(1390)),et=Jt(s(8002)),tt=Jt(s(4111)),ot=Jt(s(681)),it=Jt(s(7992)),nt=Jt(s(977)),at=Jt(s(3210)),rt=Jt(s(6148)),dt=Jt(s(8679)),st=Jt(s(8485)),lt=Jt(s(8449)),pt=Jt(s(9677)),gt=Jt(s(8774)),ct=Jt(s(4678)),mt=Jt(s(8332)),ut=Jt(s(6880)),ft=Jt(s(7337)),ht=Jt(s(4653)),Ct=Jt(s(834)),bt=Jt(s(2564)),St=Jt(s(8946)),yt=Jt(s(4901)),vt=Jt(s(8047)),At=Jt(s(8509)),Bt=Jt(s(9219)),xt=Jt(s(7485)),Mt=Jt(s(8261)),wt=Jt(s(218)),Rt=Jt(s(2089)),kt=Jt(s(5383)),_t=Jt(s(8762)),Et=Jt(s(3701)),Wt=Jt(s(458)),It=Jt(s(1830)),Ot=Jt(s(880)),Tt=Jt(s(6466)),zt=Jt(s(6487)),Ft=Jt(s(6091)),jt=Jt(s(5682)),Lt=Jt(s(4377)),Pt=Jt(s(200)),Dt=Jt(s(4177)),Nt=Jt(s(3991)),$t=Jt(s(7875)),Ht=Jt(s(4768)),Gt=Jt(s(3601)),Ut=Jt(s(7481)),Vt=Jt(s(8043)),qt=Jt(s(5024)),Xt=Jt(s(4038)),Yt=Jt(s(6495)),Zt=Jt(s(8133));function Jt(e){return e&&e.__esModule?e:{default:e}}var Qt={typography:{htmlFontSize:14,fontSize:14,fontWeightLight:"300",fontWeightRegular:"400",fontWeightMedium:"500",fontWeightBold:"700",h1:{fontSize:"3.4rem"},h2:{fontSize:"1.7rem"},h3:{fontSize:"1.5rem"},h4:{fontSize:"1.2rem"},h5:{fontSize:"1.1rem"},h6:{fontSize:"1rem"},body1:{fontSize:"1rem"}},shape:{borderRadius:20,borderRadiusSm:10},spacing:8,mixins:{toolbar:{minHeight:45,"@media (min-width:0px)":{minHeight:45},"@media (min-width:600px)":{minHeight:45}}},components:{MuiAppBar:t.default,MuiAutocomplete:o.default,MuiAvatar:i.default,MuiButton:n.default,MuiContainer:a.default,MuiDialog:r.default,MuiDrawer:d.default,MuiIcon:p.default,MuiIconButton:g.default,MuiOutlinedInput:c.default,MuiPopover:m.default,MuiSelect:u.default,MuiTooltip:f.default,SCAccountChangeMailValidation:h.default,SCAccountDataPortability:C.default,SCAccountDelete:b.default,SCAccountReset:S.default,SCAccountVerify:y.default,SCBaseDialog:v.default,SCBaseItem:A.default,SCBaseItemButton:B.default,SCBottomNavigation:x.default,SCBroadcastMessages:M.default,SCBullet:w.default,SCCategories:k.default,SCCategoriesPopularWidget:_.default,SCCategoriesSuggestionWidget:E.default,SCCategory:W.default,SCCategoryAutocomplete:I.default,SCCategoryFeedTemplate:O.default,SCCategoryFollowersButton:T.default,SCCategoryHeader:z.default,SCCategoryTemplate:F.default,SCCategoryTrendingFeedWidget:j.default,SCCategoryTrendingUsersWidget:L.default,SCChangeCoverButton:P.default,SCChangeGroupCoverButton:D.default,SCChangeGroupPictureButton:N.default,SCChangePictureButton:$.default,SCChoices:H.default,SCCommentObject:G.default,SCCommentObjectReply:U.default,SCCommentsFeedObject:V.default,SCCommentsObject:q.default,SCComposer:X.default,SCConsentSolution:Y.default,SCContributionActionsMenu:Z.default,SCCreateGroupButton:K.default,SCCustomAdv:ee.default,SCCustomSnackMessage:te.default,SCDateTimeAgo:oe.default,SCDefaultHeaderContent:ie.default,SCEditGroupButton:ne.default,SCEditor:ae.default,SCEmojiPicker:re.default,SCExploreFeedTemplate:Se.default,SCFeed:ye.default,SCFeedObject:ve.default,SCFeedObjectDetailTemplate:Ae.default,SCFeedObjectMediaPreview:Be.default,SCFeedUpdatesWidget:xe.default,SCFooter:Me.default,SCGroup:we.default,SCGroupActionsMenu:Re.default,SCGroupAutocomplete:ke.default,SCGroupFeedTemplate:_e.default,SCGroupForm:Ee.default,SCGroupHeader:We.default,SCGroupInfoWidget:Ie.default,SCGroupInviteButton:Oe.default,SCGroupInvitedWidget:Te.default,SCGroupMembersButton:ze.default,SCGroupMembersWidget:Fe.default,SCGroupRequestsWidget:je.default,SCGroupSettingsIconButton:Pe.default,SCGroupTemplate:De.default,SCGroups:Le.default,SCIncubator:Ne.default,SCIncubatorDetail:$e.default,SCIncubatorListWidget:He.default,SCIncubatorSuggestionWidget:Ge.default,SCInlineComposerWidget:Ue.default,SCLanguageSwitcher:Ve.default,SCLightbox:qe.default,SCLoyaltyProgramDetailTemplate:Xe.default,SCLoyaltyProgramWidget:Ye.default,SCMainFeedTemplate:Ze.default,SCMediaFile:Je.default,SCMediaLink:Qe.default,SCMediaShare:Ke.default,SCNavigationMenuIconButton:tt.default,SCNavigationMenuDrawer:ot.default,SCNavigationSettingsIconButton:it.default,SCNavigationToolbar:nt.default,SCNavigationToolbarMobile:at.default,SCNotification:rt.default,SCNotificationFeedTemplate:dt.default,SCNotificationItem:st.default,SCOnBoardingWidget:lt.default,SCPlatformWidget:pt.default,SCPollSuggestionWidget:gt.default,SCPreviewMediaDocument:ct.default,SCPreviewMediaLink:mt.default,SCPrivateMessageComponent:ut.default,SCPrivateMessageEditor:ft.default,SCPrivateMessageSettingsIconButton:ht.default,SCPrivateMessageSnippetItem:Ct.default,SCPrivateMessageSnippets:bt.default,SCPrivateMessageThread:St.default,SCPrivateMessageThreadItem:yt.default,SCProgressBar:vt.default,SCReactionAction:At.default,SCRelatedFeedObjectsWidget:xt.default,SCScrollContainer:Mt.default,SCSearchAutocomplete:wt.default,SCSnippetNotifications:Rt.default,SCToastNotifications:_t.default,SCUser:Et.default,SCUserActionIconButton:Wt.default,SCUserAvatar:It.default,SCUserCategoriesFollowedWidget:Ot.default,SCUserConnectionsRequestsSentWidget:Tt.default,SCUserConnectionsRequestsWidget:zt.default,SCUserConnectionsWidget:Ft.default,SCUserCounters:jt.default,SCUserFeedTemplate:Lt.default,SCUserFollowedUsersWidget:Pt.default,SCUserFollowersWidget:Dt.default,SCUserInfo:Nt.default,SCUserProfileBlocked:$t.default,SCUserProfileEdit:Ht.default,SCUserProfileHeader:Gt.default,SCUserProfileTemplate:Ut.default,SCUserSubscribedGroupsWidget:Vt.default,SCUserSuggestionWidget:qt.default,SCEventForm:le.default,SCCreateEventButton:J.default,SCEventLocationWidget:ue.default,SCEvent:de.default,SCEventActionsMenu:se.default,SCEvents:Ce.default,SCEventInviteButton:me.default,SCEventHeader:pe.default,SCEventInfoWidget:ce.default,SCEventInfoDetails:ge.default,SCEventSubscribeButton:be.default,SCEventParticipantsButton:he.default,SCMyEventsWidget:et.default,SCCalendar:R.default,SCCreateEventWidget:Q.default,SCSuggestedEventsWidget:kt.default,SCEventMembersWidget:fe.default,SCRelatedEventsWidget:Bt.default,SCVoteAudienceButton:Xt.default,SCVoteButton:Yt.default,SCWidget:Zt.default},selfcommunity:{user:{avatar:{sizeSmall:21,sizeMedium:30,sizeLarge:60,sizeXLarge:90}},category:{icon:{sizeSmall:24,sizeMedium:40,sizeLarge:50}},group:{avatar:{sizeSmall:40,sizeMedium:60,sizeLarge:90,sizeXLarge:205}}}};e.default=Qt})(),l})()));
20
+ }`));return{height:"100%",left:0,overflow:"hidden",position:"fixed",top:0,touchAction:"none",width:"100%",zIndex:2e3,"& .PhotoView__Spinner":{"-webkit-animation":`${o} .4s linear both`,animation:`${o} .4s linear both`},"& .PhotoView__Spinner svg":{"-webkit-animation":`${t} .6s linear infinite`,animation:`${t} .6s linear infinite`},"& .PhotoView__Photo":{cursor:"grab",maxWidth:"none"},"& .PhotoView__Photo:active":{cursor:"grabbing","&:active":{opacity:1}},"& .PhotoView__icon":{display:"inline-block",left:0,position:"absolute",top:0,transform:"translate(-50%, -50%)"},"& .PhotoView__PhotoBox":{bottom:0,direction:"ltr",left:0,position:"absolute",right:0,top:0,touchAction:"none",width:"100%",transformOrigin:"left top"},"& .PhotoView__PhotoWrap":{bottom:0,direction:"ltr",left:0,position:"absolute",right:0,top:0,touchAction:"none",width:"100%",overflow:"hidden",zIndex:10},"& .PhotoView-Slider__clean .PhotoView-Slider__ArrowLeft, .PhotoView-Slider__clean .PhotoView-Slider__ArrowRight, .PhotoView-Slider__clean .PhotoView-Slider__BannerWrap, .PhotoView-Slider__clean .PhotoView-Slider__Overlay, .PhotoView-Slider__willClose .PhotoView-Slider__BannerWrap:hover":{opacity:0},"& .PhotoView-Slider__Backdrop":{background:"#000",height:"100%",left:0,position:"absolute",top:0,transitionProperty:"background-color",width:"100%",zIndex:-1},"& .PhotoView-Slider__fadeIn":{"-webkit-animation":`${s} linear both`,animation:`${s} linear both`,opacity:0},"& .PhotoView-Slider__fadeOut":{animation:`${s} linear reverse both`,opacity:0},"& .PhotoView-Slider__BannerWrap":{alignItems:"center",backgroundColor:"rgba(0, 0, 0, .5)",color:"#fff",display:"flex",height:44,justifyContent:"space-between",left:0,position:"absolute",top:0,transition:"opacity .2s ease-out",width:"100%",zIndex:20,"&:hover":{opacity:1},"& Button":{color:"#c1c1c1"},"& Button:hover":{color:e.palette.common.white}},"& .PhotoView-Slider__Counter":{fontSize:"14px",opacity:0,padding:"0 10px"},"& .PhotoView-Slider__BannerRight":{alignItems:"center",display:"flex",height:"100%",color:"#FFF"},"& .PhotoView-Slider__toolbarIcon":{fill:"#fff",boxSizing:"border-box",cursor:"pointer",opacity:.75,padding:"10px",transition:"opacity .2s linear"},"& .PhotoView-Slider__toolbarIcon:hover":{opacity:1},"& .PhotoView-Slider__ArrowLeft":{alignItems:"center",bottom:0,cursor:"pointer",display:"flex",height:100,justifyContent:"center",margin:"auto",opacity:.75,position:"absolute",top:0,transition:"opacity .2s linear",WebkitUserSelect:"none",MozUserSelect:"none",MsUserSelect:"none",userSelect:"none",width:70,zIndex:20,left:0,"& svg":{fill:"#fff",background:"rgba(0, 0, 0, .3)",boxSizing:"content-box",height:24,padding:10,width:24},"&:hover":{opacity:1}},"& .PhotoView-Slider__ArrowRight":{alignItems:"center",bottom:0,cursor:"pointer",display:"flex",height:100,justifyContent:"center",margin:"auto",opacity:.75,position:"absolute",top:0,transition:"opacity .2s linear",WebkitUserSelect:"none",MozUserSelect:"none",MsUserSelect:"none",userSelect:"none",width:70,zIndex:20,right:0,"& svg":{fill:"#fff",background:"rgba(0, 0, 0, .3)",boxSizing:"content-box",height:24,padding:10,width:24},"&:hover":{opacity:1}}}}}};t.default=s},7395:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({[e.breakpoints.down("sm")]:{padding:e.spacing(1)},boxShadow:"none",borderRadius:0,"& .SCLoyaltyProgramDetailTemplate-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.286rem",marginTop:e.spacing(2),marginBottom:e.spacing(2),[e.breakpoints.down("md")]:{textAlign:"center"}},"& .SCLoyaltyProgramDetailTemplate-section-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem",marginBottom:e.spacing(1)},"& .SCLoyaltyProgramDetailTemplate-section-info":{marginBottom:e.spacing(2)},"& .SCLoyaltyProgramDetailTemplate-user-points":{marginLeft:e.spacing(2),backgroundColor:e.palette.secondary.main,"& .MuiChip-label":{fontSize:"1rem",fontWeight:e.typography.fontWeightBold,color:e.palette.common.white,padding:e.spacing(1,2,1,2)}},"& .SCLoyaltyProgramDetailTemplate-prize-section":{"& .MuiGrid-item":{[e.breakpoints.up("sm")]:{paddingLeft:e.spacing(4),paddingRight:e.spacing(2)},[e.breakpoints.down("md")]:{marginBottom:e.spacing(4)}}},"& .SCLoyaltyProgramDetailTemplate-card":{boxShadow:"0px 3px 6px rgba(0, 0, 0, 0.3)",[e.breakpoints.down("md")]:{borderRadius:0},display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",height:"100%","& .SCLoyaltyProgramDetailTemplate-card-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem"},"& .MuiCardContent-root":{padding:e.spacing(2),display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center","& .SCLoyaltyProgramDetailTemplate-card-content":{paddingTop:e.spacing(1),maxHeight:e.spacing(12.5),overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:4}},"& .MuiCardActions-root":{marginTop:"auto","& .MuiButtonBase-root":{"&:hover, &:active":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}}},"& .MuiCardMedia-root":{height:e.spacing(17)},"& .SCLoyaltyProgramDetailTemplate-prize-points":{marginTop:e.spacing(2),"& .MuiChip-root":{backgroundColor:e.palette.secondary.main,"& .MuiChip-label":{fontSize:"1.143rem",fontWeight:e.typography.fontWeightBold,color:e.palette.common.white}},"& .SCLoyaltyProgramDetailTemplate-not-requestable":{backgroundColor:e.palette.error.main}}},"& .SCLoyaltyProgramDetailTemplate-points-list-root":{marginTop:e.spacing(1),marginBottom:e.spacing(2),"& .MuiGrid-item":{paddingTop:e.spacing(1),"& .SCLoyaltyProgramDetailTemplate-element":{display:"flex",justifyContent:"space-between",marginBottom:e.spacing(1)}}},"& .SCLoyaltyProgramDetailTemplate-end-message":{padding:e.spacing(3,2),fontWeight:e.typography.fontWeightBold,textAlign:"center","& .MuiButtonBase-root":{paddingLeft:e.spacing(1)}}}),skeletonRoot:({theme:e})=>({height:"100%","& .SCLoyaltyProgramDetailTemplate-title":{display:"flex",marginBottom:e.spacing(5),alignItems:"center",[e.breakpoints.down("md")]:{justifyContent:"center"},"& .SCLoyaltyProgramDetailTemplate-chip":{marginLeft:e.spacing(2),borderRadius:e.shape.borderRadius}},"& .SCLoyaltyProgramDetailTemplate-section-title":{marginBottom:e.spacing(2),"& .SCLoyaltyProgramDetailTemplate-sub-title":{marginBottom:e.spacing(4)}},"& .SCLoyaltyProgramDetailTemplate-points-list":{marginBottom:e.spacing(5)}}),prizeItemSkeletonRoot:({theme:e})=>({[e.breakpoints.up("sm")]:{width:e.spacing(45),height:e.spacing(45),marginTop:e.spacing(3)},"& .MuiCard-root":{[e.breakpoints.down("md")]:{borderRadius:0,height:"100%"}},"& .MuiCardContent-root":{justifyContent:"center","& .SCLoyaltyProgramDetailTemplate-content":{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",marginTop:e.spacing(2),paddingBottom:e.spacing(8)}},"& .MuiCardActions-root":{justifyContent:"center"}})}};t.default=n},8185:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)},"& .SCLoyaltyProgramWidget-title":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem"},"& .SCLoyaltyProgramWidget-actions":{display:"flex",justifyContent:"space-between",padding:e.spacing(0,3,2,3),"& .SCLoyaltyProgramWidget-points":{fontSize:"1rem",fontWeight:e.typography.fontWeightBold,textTransform:"uppercase",color:e.palette.secondary.main,display:"flex",alignItems:"center","& .MuiChip-root":{color:e.palette.common.white,borderRadius:e.shape.borderRadius,backgroundColor:e.palette.secondary.main,marginRight:e.spacing(1)}}}}),skeletonRoot:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)},"& .SCLoyaltyProgramWidget-actions, .MuiCardActions-root":{display:"flex",justifyContent:"space-between",padding:e.spacing(0,3,2,2),"& .SCLoyaltyProgramWidget-points":{display:"flex",justifyContent:"center",alignItems:"center"},"& .SCLoyaltyProgramWidget-chip":{borderRadius:e.shape.borderRadius,marginRight:e.spacing(2)}}})}}},3914:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},3212:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{displayRoot:({theme:e})=>({textAlign:"center",margin:"auto",width:"100%",position:"relative",[e.breakpoints.down("md")]:{minHeight:170},"& .SCMediaFile-background":{backgroundSize:"cover !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important"},"& .SCMediaFile-background-portrait":{backgroundSize:"contain !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important"},"& .SCMediaFile-height-one":{width:"100%",paddingTop:"99%"},"& .SCMediaFile-height-half-one":{paddingTop:"50%"},"& .SCMediaFile-height-two":{width:"50%",paddingTop:"50%"},"& .SCMediaFile-height-three":{width:"33.3333%",paddingTop:"33.3333%"},"& .SCMediaFile-cover":{backgroundColor:"rgba(102,102,102,0.2)",opacity:.8,position:"absolute",right:0,top:0,left:0,bottom:0},"& .SCMediaFile-cover-text":{right:0,left:0,bottom:0,color:"#FFF",fontSize:"7%",position:"absolute",top:"50%",transform:"translate(0%, -50%)",textAlign:"center","& > p":{margin:0,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCMediaFile-slide":{height:0,bottom:"100%",overflow:"hidden",fontSize:"3%",color:"#FFF"},"& .SCMediaFile-border":{position:"relative",border:"2px solid #FFF","&:hover > div":{bottom:0,height:"auto"},"&:hover > div.animate-text":{top:"66%"}},"& .SCMediaFile-gallery":{cursor:"pointer"},"& .SCMediaFile-title .MuiTypography-root":{color:"#FFF",backgroundColor:e.palette.getContrastText("#FFF"),opacity:.6},"& .SCMediaFile-icon-file":{fontSize:14,position:"relative",top:2}}),lightboxRoot:({theme:e})=>({}),previewRoot:({theme:e})=>({"& > div":{display:"flex",flexDirection:"row",flexWrap:"nowrap",maxWidth:"100%",overflow:"auto",MsOverflowStyle:"none",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},"& .SCMediaFile-media":{backgroundSize:"cover",backgroundPosition:"center",position:"relative",borderRadius:.5*e.shape.borderRadius,margin:e.spacing(.5),width:120,height:140,flexBasis:120,flexGrow:0,flexShrink:0,"& .SCMediaFile-title":{position:"absolute",left:e.spacing(1),top:e.spacing(1),borderRadius:e.shape.borderRadius,background:"#33333380 0% 0% no-repeat padding-box",color:e.palette.common.white,fontSize:"0.875rem",padding:e.spacing(.5,1),maxWidth:50,textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap"},"& .SCMediaFile-delete":{background:e.palette.common.white,position:"absolute",right:e.spacing(.5),top:e.spacing(.5)}},"&:has(> :last-child:nth-of-type(1)) .SCMediaFile-media":{width:"100%",flexBasis:"100%",height:220,margin:e.spacing(.5,0),"& .SCMediaFile-title":{fontSize:"1rem",maxWidth:200}}}}),triggerRoot:({theme:e})=>({}),triggerDrawerRoot:({theme:e})=>({zIndex:1300}),triggerMenuRoot:({theme:e})=>({})}}},8154:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{displayRoot:({theme:e})=>({"& .SCMediaLink-link":{position:"relative",backgroundColor:"#F5F5F5",margin:e.spacing(1,0),padding:e.spacing(1)},"& .SCMediaLink-video":{margin:"10px 0px",height:360},"& .SCMediaLink-html-wrap":{position:"relative",marginLeft:e.spacing(),marginRight:e.spacing(),"& .SCMediaLink-html":{width:"100%",position:"absolute",top:0,zIndex:2,"& iframe":{width:"100%",margin:"0px auto"}},"& .SCMediaLink-html-placeholder":{width:"100%",position:"relative",top:0,zIndex:1,"& .SCMediaLink-html-loading":{position:"absolute",display:"none",top:"38%",left:"50%"}}},"& .SCMediaLink-thumbnail":{border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderRadius:.75*e.shape.borderRadius,paddingTop:e.spacing(1),margin:e.spacing(1,2,1,1),[e.breakpoints.up("sm")]:{maxWidth:200,width:"100%",float:"left"}},"& .SCMediaLink-image":{backgroundSize:"contain !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important",backgroundColor:"#FFF !important",paddingBottom:120},"& .SCMediaLink-snippet":{padding:e.spacing(2),"& .SCMediaLink-snippet-title":{},"& .SCMediaLink-snippet-description":{fontSize:"0.857rem"},"& a":{fontSize:"1rem",fontStyle:"italic"}}}),layerRoot:({theme:e})=>({"& .SCMediaLink-content":{"& form button[type=submit]":{fontWeight:e.typography.fontWeightBold}}}),previewRoot:({theme:e})=>({"& .SCMediaLink-media":{position:"relative","& .SCMediaLink-html-wrap":{"& .SCMediaLink-html":{width:"100%",position:"absolute",zIndex:2,"& iframe":{width:"100%",margin:"0px auto"}},"& .SCMediaLink-html-placeholder":{width:"100%",position:"absolute",top:0,zIndex:1,"& .SCMediaLink-html-loading":{position:"absolute",display:"none",top:"40%",left:"50%"}}},"& .SCMediaLink-delete":{background:e.palette.common.white,position:"absolute",right:e.spacing(.5),top:e.spacing(.5),zIndex:3},"&.SCMediaLink-media-video .SCMediaLink-delete":{background:e.palette.common.white,right:e.spacing(1),top:e.spacing(1)}}}),triggerRoot:({theme:e})=>({})}};t.default=n},1390:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{displayRoot:({theme:e})=>({"& .SCMediaShare-share-preview":{paddingLeft:e.spacing(),paddingRight:e.spacing()}})}}},8002:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCMyEventsWidget-title-wrapper":{padding:`12px ${e.spacing(2)}`},"& .SCMyEventsWidget-actions":{padding:`0 ${e.spacing(3)} 18px`,justifyContent:"center",gap:e.spacing(3),"& .SCMyEventsWidget-arrows":{width:"24px",height:"24px"},"& .SCMyEventsWidget-action-button":{color:e.palette.primary.main,textDecoration:"none"}}}),skeletonRoot:({theme:e})=>({"& .SCMyEventsWidget-actions":{height:"40px",padding:`0 ${e.spacing(3)} 18px`,justifyContent:"center",gap:e.spacing(3)}})}}},681:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiDrawer-paper":{width:"100%",[e.breakpoints.up("sm")]:{width:e.spacing(40)}},"& .SCNavigationMenuDrawer-drawer-header":{minHeight:e.mixins.toolbar.minHeight,padding:"1px",display:"flex",justifyContent:"space-between","& > a:first-of-type":{display:"flex",justifyContent:"center",alignContent:"center",flexWrap:"wrap"},"& img":{maxHeight:e.mixins.toolbar.minHeight-20,paddingLeft:e.spacing(1.5)}},"& .MuiTypography-subtitle1":{fontSize:"1.286rem",padding:e.spacing(0,2),"& MuiButton-root":{padding:e.spacing(1,1,1,2)},"& span:first-of-type":{color:(0,i.darken)(e.palette.text.primary,.5)}},"& .SCBaseItemButton-text ":{maxWidth:"80%"}})}};t.default=n},4111:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},7992:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{menuRoot:({theme:e})=>({"& .SCNavigationSettingsIconButton-paper":{maxWidth:400,padding:e.spacing(2),"& .MuiList-root":{padding:0}}})}}},977:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o;return{padding:e.spacing(0,1),"& .SCNavigationToolbar-logo, & .SCNavigationToolbar-custom-item":{marginRight:e.spacing(2),"& img":{verticalAlign:"middle",maxHeight:e.mixins.toolbar.minHeight-20}},"& .SCNavigationToolbar-navigation":{flexGrow:1,textAlign:"center",alignSelf:"end","& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events":{paddingTop:12,paddingLeft:e.spacing(1),paddingRight:e.spacing(1),paddingBottom:11,margin:e.spacing(0,1),borderRadius:0,borderBottom:"2px solid transparent","&.SCNavigationToolbar-active, &:hover":{color:e.palette.secondary.main,borderBottom:`2px solid ${e.palette.secondary.main}`}}},"& .SCNavigationToolbar-search":{flexGrow:1,textAlign:"right",marginRight:e.spacing(1.5),"& .MuiFormControl-root":{width:190,[e.breakpoints.up("lg")]:{width:300}}},"& .SCNavigationToolbar-profile, & .SCNavigationToolbar-notification, & .SCNavigationToolbar-messages":{margin:e.spacing(0,.5)},"& .SCNavigationToolbar-profile .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCNavigationToolbar-notification, & .SCNavigationToolbar-messages":{paddingTop:12,paddingBottom:9,borderRadius:0,borderBottom:"2px solid transparent","&.SCNavigationToolbar-active, &:hover":{color:e.palette.secondary.main,borderBottom:`2px solid ${e.palette.secondary.main}`}},"& .SCNavigationToolbar-settings":{marginLeft:0},"& .SCNavigationToolbar-composer:hover":{color:e.palette.secondary.main},"& .MuiIconButton-root":{color:(0,i.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.primary.main},[e.breakpoints.up(950)]:{padding:e.spacing(0,2),"& .SCNavigationToolbar-navigation":{"& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore":{margin:e.spacing(0,2)}}}}},skeletonRoot:({theme:e})=>({"& .SCNavigationToolbar-logo":{width:100,height:20},"& .SCNavigationToolbar-navigation":{flexGrow:1,margin:e.spacing(0,20)},"& .SCNavigationToolbar-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}),notificationsMenuRoot:({theme:e})=>({"& .SCNavigationToolbar-paper":{minWidth:370,padding:e.spacing(2),"& .MuiList-root":{padding:0}},"& .SCNavigationToolbar-link":{display:"block",textAlign:"center",margin:e.spacing(0,"auto")}})}};t.default=n},3210:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o;return{padding:`${e.spacing(0,1,0,1)} !important`,"& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item":{margin:e.spacing(.5,2,.5,.5),flexGrow:1,"& img":{verticalAlign:"middle",maxHeight:`calc(${e.mixins.toolbar.minHeight}px - ${e.spacing(2)})`}},"& .SCNavigationToolbarMobile-logo-flex":{flexGrow:0},"& .MuiIconButton-root":{color:(0,i.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.primary.main},"& h4":{fontSize:"1.286rem",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"}}},skeletonRoot:({theme:e})=>({"& .SCNavigationToolbarMobile-logo":{width:100,height:20}})}};t.default=n},6148:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n=o(4841),a={styleOverrides:{root:({theme:e})=>({"& .SCNotification-header":{padding:e.spacing(2,2,0,2),"& .SCNotification-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCNotification-username":{fontWeight:e.typography.fontWeightBold}},"& .SCNotification-content":{padding:0,"& .SCNotification-uncollapsed":{padding:e.spacing(2,2,1,2),"& > *":{marginBottom:e.spacing()}},"& .SCNotification-show-other-aggregated":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)},"& .SCNotification-collapsed":{padding:e.spacing(2),"& .MuiCollapse-wrapperInner > *":{marginBottom:e.spacing()}},"& .SCNotificationItem-detail":{borderRadius:0}},"& a:not(.MuiButton-root)":{textDecoration:"none",color:e.palette.text.primary,"&:hover, &:active":{color:e.palette.text.primary,textDecoration:"underline"}}}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),collapsedForRoot:({theme:e})=>({width:"100%","& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{padding:`${e.spacing(2)} ${e.spacing(2)}`,textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),commentRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:e.typography.fontWeightBold,"&:hover":{textDecoration:"underline"}},"& .SCNotification-vote-button":{color:"inherit",padding:e.spacing(1),fontSize:"1.143rem",minWidth:0,borderRadius:"50%"},"& .SCNotification-contribution-text":{color:e.palette.text.primary,textOverflow:"ellipsis",display:"inline",overflow:"hidden","&:hover":{textDecoration:"underline"}}}),contributionRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:e.typography.fontWeightBold,"&:hover":{textDecoration:"underline"}},"& .SCNotification-vote-button":{color:"inherit",padding:e.spacing(1),fontSize:"1.143rem",minWidth:0,borderRadius:"50%"},"& .SCNotification-contribution-text":{color:e.palette.text.primary,textOverflow:"ellipsis",overflow:"hidden","&:hover":{textDecoration:"underline"}},"& .SCNotificationItem-root .SCNotificationItem-header .SCNotificationItem-secondary":{marginTop:e.spacing(1),"& .SCDateTimeAgo-root":{marginTop:0}}}),contributionFollowRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-follow-text":{color:e.palette.text.primary,fontWeight:e.typography.fontWeightMedium},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"},textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .MuiIcon-root":{fontSize:"18px",marginBottom:"0.5px"}}),deletedForRoot:({theme:e})=>({"& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{marginBottom:e.spacing(1),padding:e.spacing(2),textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),incubatorApprovedRoot:({theme:e})=>({"& .SCNotification-category-icon":{borderRadius:3},"& .SCNotification-view-incubator-button":{padding:e.spacing(),paddingBottom:0,textTransform:"initial",marginLeft:-8}}),kindlyNoticeFlagRoot:({theme:e})=>({"& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{padding:`${e.spacing(2)} ${e.spacing(2)}`,textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),kindlyNoticeForRoot:({theme:e})=>({width:"100%","& .SCNotification-flag-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-flag-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{padding:`${e.spacing(2)} ${e.spacing(2)}`,textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),mentionRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-mention-text":{color:e.palette.text.primary},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"},textOverflow:"ellipsis",display:"inline",overflow:"hidden"}}),privateMessageRoot:({theme:e})=>({"& .SCNotification-username":{display:"inline",fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-message-label":{color:e.palette.text.primary},"& .SCNotification-message-wrap":{textOverflow:"ellipsis",overflow:"hidden",WebkitLineClamp:"2",lineClamp:2,WebkitBoxOrient:"vertical","& p":{margin:0}},"& .SCNotification-message":{height:20,overflowY:"hidden",textOverflow:"ellipsis",display:"inline",overflow:"hidden","&:hover":{textDecoration:"underline"},"& > p":{overflowY:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitLineClamp:"2",lineClamp:2,WebkitBoxOrient:"vertical"}},"& .SCNotification-actions":{fontSize:"13px",maxWidth:"40%"}}),eventRoot:({theme:e})=>({"& .SCNotification-username, & a":{fontWeight:e.typography.fontWeightBold},"& .SCNotificationItem-primary":{"& .MuiIcon-root":{float:"right",fontSize:"20px",marginLeft:e.spacing(.5)},"& .SCEvent-root":{width:"100%","& .SCEvent-snippet-root":{paddingLeft:"0 !important"}}},"& .SCNotificationItem-secondary":{textTransform:"capitalize"},"& .SCNotification-snippet-time":{paddingLeft:e.spacing(5)},"& .SCEvent-snippet-root":{backgroundColor:"transparent !important"}}),groupRoot:({theme:e})=>({}),undeletedForRoot:({theme:e})=>({"& .SCNotification-undeleted-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-undeleted-text":{color:e.palette.text.primary},"& .SCNotification-contribution-wrap":{marginBottom:e.spacing(1),padding:e.spacing(2),textOverflow:"ellipsis",display:"inline",overflow:"hidden"},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}}),userBlockedRoot:({theme:e})=>({"& .SCNotification-unblocked-icon":{backgroundColor:n.green[500],color:"#FFF"},"& .SCNotification-blocked-icon":{backgroundColor:n.red[500],color:"#FFF"},"& .SCNotification-blocked-text":{color:e.palette.text.primary}}),userConnectionRoot:({theme:e})=>({"& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-connection-text":{color:e.palette.text.primary}}),userFollowRoot:({theme:e})=>({width:"100%","& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-follow-text":{color:e.palette.text.primary}}),voteUpRoot:({theme:e})=>({width:"100%","& .SCNotification-username":{fontWeight:700,"&:hover":{textDecoration:"underline"}},"& .SCNotification-vote-up-text":{color:e.palette.text.primary},"& .SCNotification-contribution-text":{"&:hover":{textDecoration:"underline"}}})}};t.default=a},8679:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},8485:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({whiteSpace:"normal","& .SCNotificationItem-header":{display:"flex",flexDirection:"row",paddingBottom:e.spacing(),"& .SCNotificationItem-primary":{fontWeight:e.typography.fontWeightMedium,"& .SCContributionNotification-username":{fontWeight:e.typography.fontWeightBold},"& a":{color:e.palette.text.primary,textDecoration:"none"}},"& .SCNotificationItem-secondary":{"& .SCDateTimeAgo-root, & .MuiStack-root":{color:e.palette.primary.main,minHeight:e.spacing(3)},"& a":{textDecoration:"none",color:e.palette.text.primary}}},"& .SCNotificationItem-actions":{color:e.palette.primary.main},"&.SCNotificationItem-toast":{backgroundColor:"transparent",borderRadius:0,"& .SCNotificationItem-header":{"& .SCNotificationItem-image":{marginRight:e.spacing(1),"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall}}}},"&.SCNotificationItem-snippet":{backgroundColor:"transparent",borderRadius:0,"& .SCNotificationItem-header":{"& .SCNotificationItem-image":{marginRight:e.spacing(1),"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall}}}},"&.SCNotificationItem-detail":{backgroundColor:"transparent",borderRadius:0,"& .SCNotificationItem-header":{"& .SCNotificationItem-image":{marginRight:e.spacing(1),"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}}})}}},8449:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({[e.breakpoints.up("md")]:{borderRadius:e.shape.borderRadius},"& .SCOnBoardingWidget-step-content":{[e.breakpoints.up("md")]:{width:"70%"},padding:e.spacing(1,2,2,2)},"& .SCOnBoardingWidget-logo":{width:"auto"},"& .MuiCardContent-root":{"& .MuiList-root":{paddingTop:0,borderRight:`1px solid ${e.palette.grey[200]}`,"& .MuiListItem-root":{paddingBottom:0}},[e.breakpoints.up("md")]:{display:"flex"},padding:0,"& .SCOnBoardingWidget-steps-mobile":{width:"100%",display:"flex",overflowX:"auto",overflowY:"hidden","&::-webkit-scrollbar":{display:"none"},"-webkit-overflow-scrolling":"touch","& .MuiButtonBase-root, .MuiListItem-root":{marginRight:e.spacing(.5),padding:0,"& .MuiChip-root":{"&.MuiChip-filledDefault":{color:e.palette.common.white,backgroundColor:e.palette.common.black}}},padding:e.spacing(2,1,2,1)},"& .SCOnBoardingWidget-steps":{width:"30%","& .Mui-selected":{backgroundColor:e.palette.grey.A200},"& .MuiButtonBase-root":{height:e.spacing(5),"&:hover":{backgroundColor:e.palette.grey.A200},"& .MuiListItemIcon-root":{minWidth:0}}}}}),accordionRoot:({theme:e,expanded:t})=>({boxShadow:"none","& .MuiAccordionDetails-root ":{padding:0,"& .SCOnBoardingWidget-content":{"& .MuiCardContent-root":{padding:0,"& .MuiList-root":{paddingTop:0,paddingBottom:e.spacing(1)},[e.breakpoints.down("md")]:{"& .MuiListItem-root:first-of-type":{paddingTop:e.spacing(1)}}}}},"& .MuiAccordionSummary-root":{borderBottom:`1px solid ${e.palette.grey[200]}`,borderRadius:0,[e.breakpoints.up("md")]:{borderRadius:e.shape.borderRadius,borderBottomLeftRadius:t?0:e.shape.borderRadius,borderBottomRightRadius:t?0:e.shape.borderRadius},"& .MuiAccordionSummary-content":{"& h4, & h5":{fontWeight:e.typography.fontWeightBold},"& h4":{fontSize:"1.429rem",[e.breakpoints.down("md")]:{marginLeft:e.spacing(2),"& .MuiIcon-root":{position:"absolute",left:e.spacing(2)}}},"& h5":{fontSize:"1.143rem"},"p strong":{color:t?e.palette.secondary.main:"inherit"},"& .SCOnBoardingWidget-intro":{marginLeft:e.spacing(2),"& h5":{marginBottom:e.spacing(.5)}},[e.breakpoints.down("md")]:{flexDirection:"column",paddingLeft:t?e.spacing(2):0},"& .MuiTypography-body1":{display:t?"inherit":"flex",alignItems:"center",fontSize:t?"14px":"16px",flexWrap:"wrap",strong:{marginRight:t?"inherit":e.spacing(1),marginLeft:t?"inherit":e.spacing(1)}}},alignItems:"flex-start","& .MuiAccordionSummary-expandIconWrapper":{marginTop:e.spacing(1.5),alignSelf:"flex-start"}}}),skeletonRoot:({theme:e})=>({display:"flex",flexDirection:"column",[e.breakpoints.up("md")]:{flexDirection:"row"},"& .SCOnBoardingWidget-skeleton-content":{width:"100%",marginLeft:e.spacing(1),[e.breakpoints.down("md")]:{padding:e.spacing(2)}},"& .SCOnBoardingWidget-skeleton-menu":{"& .MuiListItem-root":{padding:0},[e.breakpoints.up("md")]:{borderRight:`1px solid ${e.palette.grey[200]}`}}}),contentRoot:({theme:e})=>({"& .SCOnBoardingWidget-content-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-content-summary":{whiteSpace:"pre-line",marginTop:e.spacing(1),marginBottom:e.spacing(2)},"& .SCOnBoardingWidget-content-action":{display:"flex",justifyContent:"center"},"& .SCProgressBar-message":{marginBottom:e.spacing(.5)},[e.breakpoints.up("sm")]:{"& .SCOnBoardingWidget-content-progress":{display:"flex",alignItems:"center","& .SCOnBoardingWidget-content-animation-progress":{height:"250px",width:"250px"}}}}),categoryRoot:({theme:e})=>({"& .SCOnBoardingWidget-category-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-category-summary":{margin:e.spacing(1,0,.5,0)},"& .SCOnBoardingWidget-category-action":{display:"flex",justifyContent:"center","& .MuiButton-root":{marginTop:e.spacing(3)}},"& .SCProgressBar-message":{marginBottom:e.spacing(.5)},[e.breakpoints.up("sm")]:{"& .SCOnBoardingWidget-category-progress":{display:"flex",alignItems:"center","& .SCOnBoardingWidget-category-animation-progress":{height:"250px",width:"250px"}}}}),appearanceRoot:({theme:e})=>({display:"flex",alignItems:"center",flexDirection:"column","& .MuiButton-root":{marginTop:e.spacing(4)},"& h4":{marginBottom:e.spacing(1),fontWeight:e.typography.fontWeightBold}}),appearanceDrawerRoot:({theme:e})=>({"& .MuiDrawer-paper":{width:"100%",[e.breakpoints.up("sm")]:{width:"fit-content",padding:e.spacing(0,2,2,2)}},"& .SCOnBoardingWidget-appearance-drawer-header":{display:"flex",justifyContent:"space-between",alignItems:"center","& h4":{fontWeight:e.typography.fontWeightBold},padding:e.spacing(1)},"& .MuiTabs-root":{[e.breakpoints.down("md")]:{padding:e.spacing(1)},marginBottom:e.spacing(2),"& .MuiTab-root ":{textTransform:"none"}},"& .SCOnBoardingWidget-appearance-drawer-content":{[e.breakpoints.down("md")]:{padding:e.spacing(1.5)},display:"flex",flexDirection:"column"},"& .SCOnBoardingWidget-appearance-color-container":{position:"relative",display:"inline-block","& .SCOnBoardingWidget-appearance-color":{margin:e.spacing(1,0,2,0)},"& .SCOnBoardingWidget-appearance-color-progress":{position:"absolute",top:"50%",marginTop:e.spacing(-2),marginLeft:e.spacing(-4.5)}},"& .SCOnBoardingWidget-appearance-logo-container":{position:"relative",width:"100%",height:"auto",display:"flex",justifyContent:"center",alignItems:"center","& .SCOnBoardingWidget-appearance-logo":{height:120,width:240,marginBottom:e.spacing(2),objectFit:"contain","& img":{width:"100%",height:"auto"}},"& .SCOnBoardingWidget-appearance-upload-button":{"& .MuiIcon-root":{fontSize:"1.143rem"}}}}),profileRoot:({theme:e})=>({display:"flex",alignItems:"center",flexDirection:"column","& .MuiButton-root":{marginTop:e.spacing(4)},"& .SCOnBoardingWidget-profile-title":{fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(1)}}),profileDrawerRoot:({theme:e})=>({"& .MuiDrawer-paper":{width:"100%",[e.breakpoints.up("sm")]:{width:"30%",padding:e.spacing(0,2,2,2)}},"& .SCOnBoardingWidget-profile-cover":{position:"relative",height:230,minHeight:150,borderRadius:0,background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",boxShadow:"unset",[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)},display:"flex",flexDirection:"row"},"& .SCOnBoardingWidget-profile-icon":{alignSelf:"end"},"& .SCOnBoardingWidget-profile-avatar":{position:"relative",top:100,display:"block",marginLeft:e.spacing(2),"& > .MuiBadge-root > img":{height:e.selfcommunity.user.avatar.sizeXLarge,width:e.selfcommunity.user.avatar.sizeXLarge,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover"},"& .MuiBadge-badge":{right:e.spacing(1),top:e.spacing(3),"& .SCUserAvatar-badge-content":{width:32,height:32}}},"& .SCOnBoardingWidget-profile-change-picture":{[e.breakpoints.down("sm")]:{top:167,left:-45},top:165,left:-40,height:28,position:"relative",display:"flex",marginLeft:e.spacing(2)},"& .SCOnBoardingWidget-profile-change-cover":{position:"absolute",right:10,bottom:10},"& .SCOnBoardingWidget-profile-public-info":{marginTop:e.spacing(6),padding:e.spacing(2),"& .SCUserProfileEdit-public-info-root":{display:"flex",alignItems:"center",flexDirection:"column","& .MuiButtonBase-root":{width:"auto"}}}}),inviteRoot:({theme:e})=>({"& .MuiTypography-subtitle1":{marginLeft:e.spacing(1.5)},"& .SCOnBoardingWidget-invite-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-invite-social":{margin:e.spacing(2,0,2,0),"& .SCOnBoardingWidget-invite-social-icon-container":{display:"flex",justifyContent:"center",marginTop:e.spacing(2)},"& .SCOnBoardingWidget-invite-social-icon":{fontSize:"2rem",fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-invite-title":{fontSize:"14px"}},"& .SCOnBoardingWidget-invite-button":{marginTop:e.spacing(8)},"& .SCOnBoardingWidget-invite-action":{display:"flex",justifyContent:"center",marginTop:e.spacing(5)},"& .SCOnBoardingWidget-invite-email":{"& .SCOnBoardingWidget-invite-title":{fontSize:"14px"}}}),appRoot:({theme:e})=>({"& .SCOnBoardingWidget-app-title":{fontWeight:e.typography.fontWeightBold},"& .SCOnBoardingWidget-app-summary":{whiteSpace:"pre-line",margin:e.spacing(2,0,2,0)},"& .SCOnBoardingWidget-app-tabs":{padding:e.spacing(0,2,0,2),"& .MuiTab-root ":{textTransform:"none"}},"& .SCOnBoardingWidget-app-tab-content":{display:"flex",flexDirection:"column",alignItems:"center","& .SCOnBoardingWidget-app-image":{width:"auto"}},"& .SCOnBoardingWidget-app-step":{marginBottom:e.spacing(2),display:"flex",alignItems:"center",strong:{display:"flex",alignItems:"center",marginRight:e.spacing(.5),"& .MuiIcon-root":{margin:e.spacing(0,.5,0,.5)}},flexWrap:"wrap"}})}}},9677:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(2)}),skeletonRoot:({theme:e})=>({"& .SCPlatformWidget-skeleton-content":{padding:e.spacing(2)},"& .SCPlatformWidget-skeleton-title":{display:"flex",justifyContent:"center",alignItems:"center",paddingBottom:e.spacing()},"& .SCPlatformWidget-skeleton-actions":{display:"flex",justifyContent:"space-around",alignItems:"center",paddingBottom:e.spacing()},"& .SCPlatformWidget-skeleton-tutorial":{display:"flex",justifyContent:"center",alignItems:"center"}})}}},8774:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({}),pollSnippetRoot:({theme:e})=>({"& > div":{alignItems:"flex-start",paddingTop:e.spacing(1)},"& .SCBaseItem-text":{marginTop:0},"& .SCPollSuggestionWidget-username":{color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,textDecoration:"none"},"& .SCPollSuggestionWidget-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCPollSuggestionWidget-activity-at":{textDecoration:"none",color:"inherit",marginTop:3}})}}},4678:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCPreviewMediaImage-title":{position:"absolute",top:e.spacing(3),left:e.spacing(3),"& > h6":{padding:e.spacing(1,2),borderRadius:e.shape.borderRadius,maxWidth:220,textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden"}}})}}},8332:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCPreviewMediaLink-preview-link":{position:"relative",backgroundColor:"#F5F5F5",margin:e.spacing(1,0),padding:e.spacing(1)},"& .SCPreviewMediaLink-preview-video":{margin:"10px 0px",height:360},"& .SCPreviewMediaLink-thumbnail":{border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderRadius:.75*e.shape.borderRadius,paddingTop:e.spacing(1),margin:e.spacing(1,2,1,1),[e.breakpoints.up("sm")]:{maxWidth:200,width:"100%",float:"left"}},"& .SCPreviewMediaLink-image":{backgroundSize:"contain !important",backgroundPosition:"center !important",backgroundRepeat:"no-repeat !important",backgroundColor:"#FFF !important",paddingBottom:120},"& .SCPreviewMediaLink-snippet":{padding:e.spacing(2),"& .SCPreviewMediaLink-snippet-title":{},"& .SCPreviewMediaLink-snippet-description":{fontSize:"0.857rem"},"& a":{fontSize:"1rem",fontStyle:"italic"}}})}};t.default=n},6880:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({height:"100%","& .SCPrivateMessageComponent-snippets-box, & .SCPrivateMessageComponent-thread-box":{position:"relative","& .SCPrivateMessageSnippets-root, & .SCPrivateMessageThread-root":{position:"absolute",top:0,left:0}},"& .SCPrivateMessageComponent-hide":{display:"none"}}),skeletonRoot:({theme:e})=>({[e.breakpoints.up("sm")]:{width:e.breakpoints.values.lg},"& .SCPrivateMessageComponent-thread-section":{"& .MuiCardContent-root":{padding:0,"& .MuiList-root":{paddingTop:0,paddingBottom:0}}}," .MuiPaper-root, MuiAppBar-root":{boxShadow:"none",borderRadius:0}})}}},7337:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),"& .SCPrivateMessageEditor-message-input":{width:"100%"},"& .MuiInputBase-root":{"&.Mui-disabled":{backgroundColor:e.palette.grey.A200},borderRadius:0,padding:e.spacing(.5,0,.5,0),"& textarea":{backgroundColor:e.palette.common.white,borderRadius:e.shape.borderRadius,padding:e.spacing(1),border:"2px solid transparent","&:hover":{border:`2px solid${e.palette.primary.main}`},"&.Mui-disabled":{border:"none"}},"& .MuiButtonBase-root":{padding:e.spacing(1.625)},"& .MuiOutlinedInput-notchedOutline":{border:"0 none"}},"& .SCPrivateMessageEditor-emoji-section":{"& .EmojiPickerReact.epr-main":{borderRadius:0,"& .epr-preview":{display:"none"}}},"& .MuiPaper-root":{borderRadius:0,backgroundColor:e.palette.grey.A200,"& .MuiCardHeader-root":{paddingBottom:e.spacing(0),"& .SCPrivateMessageEditor-close-button":{fontSize:"0.857rem",cursor:"pointer","&:hover":{color:e.palette.common.black}}},"& .MuiAlert-root":{position:"relative"},"& .MuiCardContent-root":{overflow:"auto",padding:e.spacing(1),minHeight:e.spacing(20),"& .SCPrivateMessageEditor-upload-section":{"& .SCPrivateMessageEditor-upload-button":{display:"flex",margin:"0 auto",fontSize:"1.57rem"}},"& .MuiList-root":{"& .MuiListItem-root:first-of-type":{paddingTop:e.spacing(1)},[e.breakpoints.up("sm")]:{paddingTop:e.spacing(0)}},"& .SCPrivateMessageEditor-preview-content":{position:"relative",display:"flex",margin:"0 auto",justifyContent:"center",alignItems:"center","& .MuiListItem-root":{height:e.spacing(10),marginRight:e.spacing(3),img:{width:e.spacing(10),height:e.spacing(10)},video:{objectFit:"fill",width:e.spacing(10),height:e.spacing(10)}},"& .SCPrivateMessageEditor-preview-actions":{height:"100%",background:"rgba(0,0,0,0.5)","& .MuiButtonBase-root, .MuiTypography-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCPrivateMessageEditor-preview-info":{position:"absolute",left:"50%",bottom:0,transform:"translate(-50%, 100%)",overflow:"hidden",textOverflow:"ellipsis",width:e.spacing(10),"& .MuiTypography-root":{fontSize:"0.75rem"}}}}},"&.SCPrivateMessageEditor-ios":{paddingBottom:"15px"}}),skeletonRoot:({theme:e})=>({})}};t.default=n},4653:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .SCNavigationSettingsIconButton-paper":{maxWidth:400,padding:e.spacing(2)}}),drawerRoot:({theme:e})=>({"& .MuiList-root":{"& a":{color:"inherit"}}})}}},834:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:e.spacing(1.5),padding:`${e.spacing(0)}!important`,boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",marginBottom:e.spacing(1),"& .SCPrivateMessageSnippetItem-time":{float:"right",fontSize:e.typography.fontWeightRegular},"& .MuiListItemButton-root":{"&.SCPrivateMessageSnippetItem-unread":{paddingRight:e.spacing(7.5)},[e.breakpoints.down("md")]:{"&.SCPrivateMessageSnippetItem-unread":{paddingRight:e.spacing(5)},paddingRight:e.spacing(2)}},"& .MuiListItemText-primary":{"& .SCPrivateMessageSnippetItem-username":{fontWeight:e.typography.fontWeightBold},"& .SCPrivateMessageSnippetItem-badge-label":{marginLeft:e.spacing(.5),borderRadius:0,fontSize:"0.5rem"}},"& .MuiListItemText-secondary":{"& .MuiTypography-root":{display:"inline-block",width:"80%",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}},"& .MuiListItemSecondaryAction-root":{display:"flex",alignItems:"center",position:"absolute",top:e.spacing(3),right:e.spacing(1),"& .MuiButtonBase-root":{fontSize:"1rem"},[e.breakpoints.down("md")]:{padding:e.spacing(1)}," .MuiPaper-root":{padding:0}}}),skeletonRoot:({theme:e})=>({maxWidth:700})}}},2564:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({height:"100%",width:"100%",borderRadius:0,"& .MuiCardContent-root":{display:"flex",flexDirection:"column",height:`calc(100% - ${e.spacing(4)})`,padding:e.spacing(2),"& .SCPrivateMessageSnippets-search-bar":{padding:e.spacing(1),"& .SCPrivateMessageSnippets-input":{borderRadius:e.shape.borderRadius,"& .MuiInputBase-input, MuiFilledInput-input":{padding:e.spacing(.5,1)},"& .SCPrivateMessageSnippets-icon":{marginRight:e.spacing(1)}}},"& .SCPrivateMessageSnippets-new-message-button":{color:`${e.palette.primary.main} !important`,alignSelf:"center",backgroundColor:"transparent","&:hover":{borderWidth:"2px !important",backgroundColor:e.palette.grey.A200}},"& .MuiList-root":{flexGrow:1,overflowY:"auto",padding:e.spacing(1),"& .Mui-selected":{backgroundColor:e.palette.grey.A200},"& .MuiButtonBase-root, MuiListItemButton-root":{"&:hover":{borderRadius:"inherit",backgroundColor:e.palette.grey.A200}}}},"& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root":{padding:e.spacing(2)}}),skeletonRoot:({theme:e})=>({})}}},8946:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({height:"100%",width:"100%",backgroundColor:(0,i.alpha)(e.palette.common.white,.5),borderRadius:0,"& .MuiCardContent-root":{display:"flex",flexDirection:"column",height:"100%",padding:0,position:"relative","& .MuiAlert-root":{position:"absolute",bottom:0,left:0,right:0,display:"flex",justifyContent:"center",borderRadius:0},"& .infinite-scroll-component__outerdiv":{flexGrow:1,overflowY:"auto","& .infinite-scroll-component":{display:"flex",flexDirection:"column-reverse","& .MuiList-root":{margin:0,padding:e.spacing(2,2,0,2),"& .MuiListItem-root":{padding:e.spacing(1,1,4,2),minWidth:"35%",maxWidth:"80%",textAlign:"left",width:"fit-content",position:"relative",marginBottom:e.spacing(1),"&.SCPrivateMessageThread-receiver":{backgroundColor:e.palette.common.white,marginLeft:e.spacing(-4),filter:"drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1))","&:after":{marginRight:e.spacing(3),content:'""',position:"absolute",border:`${e.spacing(3)} solid transparent`,borderTop:`${e.spacing(3)} solid ${e.palette.common.white}`,top:e.spacing(0),left:e.spacing(-2)}},"&.SCPrivateMessageThread-sender":{backgroundColor:e.palette.grey[300],position:"relative",marginLeft:"auto",marginRight:e.spacing(1),"&:after":{content:'""',position:"absolute",border:`${e.spacing(3)} solid transparent`,borderTop:`${e.spacing(3)} solid ${e.palette.grey[300]}`,top:e.spacing(0),right:e.spacing(-2)}}}}}},"& .SCPrivateMessageThread-item":{display:"flex",marginBottom:e.spacing(1),"& .SCPrivateMessageThread-avatar":{marginRight:e.spacing(6),"& img":{height:e.selfcommunity.group.avatar.sizeMedium,width:e.selfcommunity.group.avatar.sizeMedium}}}},"& .SCPrivateMessageThread-empty-message":{height:"100%",display:"flex",justifyContent:"center",alignItems:"center",fontSize:"1.5rem"},"& .SCPrivateMessageThread-new-message-header":{display:"flex",width:"100%",height:e.mixins.toolbar.minHeight,alignItems:"center",justifyContent:"center",backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),"& .SCPrivateMessageThread-new-message-header-content":{display:"flex",alignItems:"center",width:"80%",backgroundColor:e.palette.common.white,borderRadius:e.shape.borderRadius,marginRight:e.spacing(2),"& .SCPrivateMessageThread-new-message-header-icon":{fontSize:"1.714rem",marginLeft:e.spacing(1)},"& .MuiIcon-root":{color:e.palette.secondary.main},"& .MuiTypography-root":{color:e.palette.secondary.main,marginLeft:e.spacing(1)},"& .SCPrivateMessageThread-autocomplete":{[e.breakpoints.down("md")]:{maxHeight:e.spacing(3.75)},width:"100%",marginLeft:e.spacing(1),maxHeight:e.mixins.toolbar.minHeight,overflow:"auto","& .MuiAutocomplete-tag":{height:e.spacing(3),"& .MuiChip-deleteIcon":{fontSize:"18px"}},"& .MuiAutocomplete-endAdornment":{position:"relative","& .MuiAutocomplete-clearIndicator":{fontSize:"1rem"}}}}},"& .MuiListSubheader-root":{backgroundColor:"inherit",display:"flex",justifyContent:"center",marginBottom:e.spacing(1),zIndex:1e3,"& .SCPrivateMessageThread-subheader":{width:"fit-content",minWidth:100,padding:e.spacing(.25,1),backgroundColor:"white",fontWeight:e.typography.fontWeightRegular,borderRadius:e.shape.borderRadius,boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)"}},"& .MuiList-root, .SCPrivateMessageThread-new-message-content":{flexGrow:1}}),skeletonRoot:({theme:e})=>({height:"100%",width:"100%",borderRadius:0,"& .MuiCardContent-root":{padding:0,"& .MuiList-root .MuiListItem-root":{height:e.spacing(10)},"&:last-child":{paddingBottom:0}}})}};t.default=n},4901:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({flexDirection:"column",borderRadius:e.shape.borderRadius,padding:e.spacing(2,4,4,2),boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",marginBottom:e.spacing(1),"& .MuiListItemSecondaryAction-root":{right:10,top:e.spacing(3),zIndex:1,"& .MuiButtonBase-root":{fontSize:"1.2rem"}},"& .SCPrivateMessageThreadItem-message-time":{position:"absolute",bottom:e.spacing(0),right:e.spacing(3),padding:e.spacing(.5,0,.5,0)},"& .SCPrivateMessageThreadItem-username":{marginRight:"auto",marginBottom:e.spacing(1)},"& .SCPrivateMessageThreadItem-text":{display:"flex",alignItems:"center",zIndex:1,width:"calc(100% - 24px)",minWidth:"calc(100% - 24px)","& .MuiTypography-root":{fontSize:"1.143rem",whiteSpace:"pre-line",overflowWrap:"break-word",wordWrap:"break-word",wordBreak:"break-word",hyphens:"auto"}},"& .SCPrivateMessageThreadItem-img":{display:"flex",alignItems:"center",objectFit:"cover",flex:"0 0 95%","& img":{width:"100%",height:"100%"}},"& .SCPrivateMessageThreadItem-video":{"& .MuiButtonBase-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-60%, -50%)","& .MuiIcon-root":{color:e.palette.common.white,fontSize:"6rem",[e.breakpoints.down("md")]:{fontSize:"3rem"}}},"& .SCPrivateMessageThreadItem-icon-button":{top:"40%",[e.breakpoints.up("sm")]:{transform:"translate(-70%, -40%)"},"& .MuiIcon-root":{color:e.palette.common.white,fontSize:"3rem",[e.breakpoints.down("md")]:{fontSize:"2rem"}}}},"& .SCPrivateMessageThreadItem-document":{[e.breakpoints.up("sm")]:{width:e.spacing(32.5)},"& img":{height:"100%",width:"100%"},"& .MuiButtonBase-root":{flexWrap:"wrap",position:"absolute",bottom:e.spacing(4),backgroundColor:"rgba(0,0,0,0.5)",color:"rgba(255,255,255,0.9)",display:"flex",borderRadius:0,"& .MuiTypography-root":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",marginLeft:e.spacing(.5)}}},"& .SCPrivateMessageThreadItem-other":{marginTop:e.spacing(2),"& .MuiButtonBase-root":{padding:e.spacing(2,1,0,1),flexWrap:"wrap","& .MuiTypography-root":{marginRight:e.spacing(1),overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",maxWidth:"100%",[e.breakpoints.down("md")]:{fontSize:e.typography.fontSize}}}}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({"& h2 .MuiIconButton-root":{top:e.spacing(1),fontSize:"1.57rem"}})}}},8047:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%",display:"flex",flexDirection:"column",alignItems:"center","& .SCProgressBar-bar":{width:"100%",height:10,borderRadius:5},"& .SCProgressBar-progress":{marginTop:e.spacing(.5),h4:{fontWeight:e.typography.fontWeightBold,fontSize:"18px"}}})}}},8509:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column",fontSize:"1.57rem","&.SCReactionAction-inline":{flexDirection:"row-reverse"},"& .SCReactionAction-divider":{width:"100%",borderBottom:0},"& .SCReactionAction-reaction":{width:"1em",height:"1em"}})}}},9219:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCRelatedEventsWidget-content":{padding:`10px ${e.spacing(2)} 12px`,"& .SCRelatedEventsWidget-header":{flexDirection:"row",justifyContent:"flex-start",alignItems:"flex-start",marginBottom:e.spacing(2),"& .SCRelatedEventsWidget-avatar-wrapper":{flexDirection:"row",alignItems:"center",color:"inherit",padding:0,minWidth:"auto","& .SCRelatedEventsWidget-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}},"& h4":{marginLeft:7,lineHeight:"28px"}},"& .SCRelatedEventsWidget-event-wrapper":{gap:e.spacing(2),"& .SCRelatedEventsWidget-event":{"& > div":{padding:"0 !important","& > .SCBaseItem-content":{"& > .SCBaseItem-text":{margin:0}}}}}},"& .SCRelatedEventsWidget-actions":{padding:`0 ${e.spacing(2)} 15px`,justifyContent:"center","& .SCSuggestedEventsWidget-actionButton":{color:e.palette.primary.main}}}),skeletonRoot:({theme:e})=>({"& .SCRelatedEventsWidget-content":{padding:`10px ${e.spacing(2)} 12px`,"& .SCRelatedEventsWidget-user":{marginBottom:e.spacing(2),"& > .SCBaseItem-content":{"& > .SCBaseItem-text":{margin:0}},"& > .SCBaseItem-actions":{display:"none"}},"& .SCRelatedEventsWidget-event-wrapper":{gap:e.spacing(2),"& .SCRelatedEventsWidget-event":{"& > div":{padding:"0 !important","& > .SCBaseItem-content":{"& > .SCBaseItem-text":{margin:0}}}}}},"& .SCRelatedEventsWidget-actions":{padding:`0 ${e.spacing(2)} 15px`,justifyContent:"center"}}),dialogRoot:({theme:e})=>({"& .SCRelatedEventsWidget-infinite-scroll":{height:"400px",[e.breakpoints.down("md")]:{height:"100%"},"& .SCEvent-root":{width:"100%"}}})}}},7485:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({"& .infinite-scroll-component__outerdiv .infinite-scroll-component .SCFeedObject-snippet":{marginLeft:"0 !important"}})}}},8261:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCScrollContainer-scrollbar":{width:5,borderRadius:5,overflowX:"hidden",backgroundColor:e.palette.background.default,transition:"opacity 200ms ease-out"},"& .SCScrollContainer-scroll-thumb":{width:5}})}}},218:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n=o(7655),a={styleOverrides:{root:({theme:e})=>{var t,o,a,r,d,s,l,p,g,c,m,u;return{"& .SCSearchAutocomplete-input":{padding:e.spacing(0,2),borderRadius:e.shape.borderRadius,"& .MuiAutocomplete-input":{padding:e.spacing(.5,1),color:(0,n.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.primary.main}},"& .MuiInputBase-root":{"& .MuiIcon-root":{color:(0,n.getContrastRatio)(null==(a=e.palette)||null==(r=a.navbar)?void 0:r.main,"#fff")>4.5?"#fff":e.palette.primary.main},"& fieldset":{borderColor:(0,i.alpha)((0,n.getContrastRatio)(null==(d=e.palette)||null==(s=d.navbar)?void 0:s.main,"#fff")>4.5?"#fff":e.palette.primary.main,e.palette.action.disabledOpacity)},"&:hover fieldset":{borderColor:(0,n.getContrastRatio)(null==(l=e.palette)||null==(p=l.navbar)?void 0:p.main,"#fff")>4.5?"#fff":e.palette.primary.main},"&.Mui-focused fieldset":{borderColor:(0,n.getContrastRatio)(null==(g=e.palette)||null==(c=g.navbar)?void 0:c.main,"#fff")>4.5?"#fff":e.palette.secondary.main},"&.Mui-focused .SCSearchAutocomplete-icon":{color:(0,n.getContrastRatio)(null==(m=e.palette)||null==(u=m.navbar)?void 0:u.main,"#fff")>4.5?"#fff":e.palette.secondary.main}}}}}};t.default=a},2089:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%","& .SCSnippetNotifications-notifications-wrap":{height:330,overflowY:"hidden"},"& .SCSnippetNotifications-item":{padding:0,marginBottom:e.spacing(),"&:hover":{backgroundColor:"transparent",cursor:"default"},"& .SCNotificationItem-root":{backgroundColor:"transparent",borderRadius:0,"&.SCNotificationItem-snippet":{"&:before":{borderRadius:e.shape.borderRadius,width:e.spacing(.6),left:1,height:"100%",display:"block",zIndex:"20",position:"absolute",content:'" "',backgroundColor:"rgba(84, 110, 122, 0.3)"},"&.SCNotificationItem-new":{"&:before":{backgroundColor:e.palette.primary.main}},"& .SCNotificationItem-header":{padding:e.spacing(1,2)}}},"&.SCSnippetNotifications-broadcast-messages-banner":{"& .SCNotificationItem-root.SCNotificationItem-snippet.SCNotificationItem-new":{"&:before":{backgroundColor:e.palette.secondary.main}},"& .SCNotificationItem-title a":{color:e.palette.secondary.main,fontWeight:e.typography.fontWeightBold}}}}),skeletonRoot:({theme:e})=>({margin:0,padding:0,"& .SCSnippetNotifications-item":{padding:0,marginBottom:e.spacing(),"& .SCNotificationItem-root":{backgroundColor:"transparent",borderRadius:0,"&.SCNotificationItem-snippet":{"&:before":{borderRadius:e.shape.borderRadius,width:e.spacing(.6),left:1,height:"100%",display:"block",zIndex:"20",position:"absolute",content:'" "',backgroundColor:"rgba(84, 110, 122, 0.3)"},"&.SCNotificationItem-new":{"&:before":{backgroundColor:e.palette.primary.main}},"& .SCNotificationItem-header":{padding:e.spacing(1,2)}}}}})}}},5383:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCSuggestedEventsWidget-content":{padding:`15px ${e.spacing(2,2)}`,"& .SCSuggestedEventsWidget-title":{marginBottom:"11px"},"& .SCSuggestedEventsWidget-swiper":{position:"relative","& .swiper-wrapper":{paddingBottom:"1px","& .SCSuggestedEventsWidget-swiper-slide":{width:"210px",height:"auto","& .SCSuggestedEventsWidget-event":{"& .SCEventInfoDetails-root":{"& h5":{fontSize:"1rem",maxWidth:200,textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden"},"& .SCEventInfoDetails-icon-text-wrapper":{gap:e.spacing(.5),"& .community-icons":{fontSize:"0.9rem"},"& p":{marginTop:1,fontSize:"0.60rem"}}}}}},"& .SCSuggestedEventsWidget-swiper-arrow":{position:"absolute",top:"50%",transform:"translateY(-50%)",zIndex:1,paddingLeft:"10px!important",paddingRight:"10px!important",minWidth:"auto",backgroundColor:e.palette.grey[400]},"& .SCSuggestedEventsWidget-swiper-prev-arrow":{left:"5px"},"& .SCSuggestedEventsWidget-swiper-next-arrow":{right:"5px"}}},"& .SCSuggestedEventsWidget-actions":{padding:`0 ${e.spacing()} ${e.spacing()}`,justifyContent:"center","& .SCSuggestedEventsWidget-actionButton":{color:e.palette.primary.main}},"& .SCEvent-skeleton-preview-name":{marginTop:0,marginBottom:0},"& .SCEvent-skeleton-preview-actions":{padding:0}}),skeletonRoot:({theme:e})=>({"& .SCSuggestedEventsWidget-content":{padding:`15px 0 ${e.spacing(3)} ${e.spacing(2)}`,"& .SCSuggestedEventsWidget-title":{marginBottom:"11px"},"& .SCSuggestedEventsWidget-swiper-slide":{width:"210px",height:"auto"}},"& .SCSuggestedEventsWidget-actions":{padding:`0 ${e.spacing()} ${e.spacing()}`,justifyContent:"center"},"& .SCEvent-skeleton-preview-actions":{padding:0}})}}},8762:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({})}}},3701:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:0,paddingBottom:0,overflow:"visible",[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"& .MuiChip-root":{height:"18px"},"& .SCUser-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium,"& img":{borderRadius:0}},"& .SCUser-staff-badge-label":{marginLeft:e.spacing(1),borderRadius:0,fontSize:"0.5rem"},"& .SCUser-group-admin-badge-label":{marginLeft:e.spacing(1),fontSize:"0.75rem",color:e.palette.secondary.main},"& .SCBaseItemButton-primary":{fontWeight:e.typography.fontWeightBold},"& .SCBaseItemButton-secondary":{fontSize:"0.857rem"}}),skeletonRoot:({theme:e})=>({})}}},458:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({color:e.palette.primary.main}),menuRoot:({theme:e})=>({})}}},1830:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserAvatar-badge-content":{width:16,height:16,backgroundColor:e.palette.background.paper,border:`1px solid ${e.palette.background.paper}`},"& .SCUserAvatar-badge-content-xs":{width:`${e.spacing(1.75)} !important`,height:`${e.spacing(1.75)} !important`},".MuiBadge-badge":{right:e.spacing(.2),top:e.spacing(.9)}})}}},880:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},6466:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},6487:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},6091:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},5682:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserCounters-button":{color:e.palette.text.primary,padding:e.spacing(.5),borderRadius:e.shape.borderRadius/3,fontSize:"1.143rem",fontWeight:e.typography.fontWeightMedium,"& strong":{display:"inline-block",marginRight:e.spacing(1),fontWeight:e.typography.fontWeightBold},"&:hover, &:active":{color:e.palette.secondary.main}}})}}},4377:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},200:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},4177:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},3991:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserInfo-field":{marginBottom:e.spacing(2),"& h6":{fontSize:"1.143rem",fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(.5)},"&:last-of-type":{marginBottom:0}}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({"& .SCUserInfo-caption":{marginTop:e.spacing(-2),textAlign:"center","& .SCUserInfo-avatar":{margin:e.spacing(0,"auto",1),width:e.selfcommunity.user.avatar.sizeLarge,height:e.selfcommunity.user.avatar.sizeLarge},"& .SCUserInfo-username":{fontWeight:e.typography.fontWeightBold,fontSize:"1.143rem",marginBottom:e.spacing(1)}}})}}},7875:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({textAlign:"center","& .SCUserProfileBlocked-info":{marginTop:e.spacing(3),marginBottom:e.spacing(3)}})}}},4768:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserProfileEdit-tabs":{marginBottom:e.spacing(3),"& .MuiTabScrollButton-root":{transition:"width 1s ease-in-out","&.Mui-disabled":{width:0}}},"& .SCUserProfileEdit-tab-content":{padding:e.spacing(0,2),maxWidth:400}}),skeletonRoot:({theme:e})=>({}),passwordDialogRoot:({theme:e})=>({"& .MuiDialogContent-root":{"& .SCUserProfileEdit-password-form":{"& .SCUserProfileEdit-form-field":{margin:e.spacing(1,1,1,0)}}},"& .SCUserProfileEdit-confirm-change-button":{marginTop:e.spacing(1)}}),accountRoot:({theme:e})=>({"& .SCUserProfileEdit-danger-zone":{marginTop:e.spacing(2),"& > *":{marginBottom:e.spacing(2)}},"& .SCUserProfileEdit-language-switcher":{margin:e.spacing(1,0,1,0)},"& .SCUserProfileEdit-account-credentials-root":{"& .SCUserProfileEdit-email, .SCUserProfileEdit-password":{margin:e.spacing(1,0,1,0),fontWeight:"bold"}}}),settingsRoot:({theme:e})=>({"& .SCUserProfileEdit-control":{margin:e.spacing(0,0,2,0),"& .MuiFormControl-root":{display:"block"}}}),publicInfoRoot:({theme:e})=>({"& .SCUserProfileEdit-field":{margin:e.spacing(1,0,1,0)},"& .SCUserProfileEdit-field .MuiSelect-icon":{right:e.spacing(5)},"& .SCUserProfileEdit-btn-save":{marginTop:e.spacing(2),marginBottom:e.spacing()}})}}},3601:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCUserProfileHeader-cover":{position:"relative",height:230,minHeight:150,borderRadius:0,background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",boxShadow:"unset",[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}},"& .SCUserProfileHeader-infops-section":{display:"flex",justifyContent:"space-between",marginBottom:e.spacing(1)},"& .SCUserProfileHeader-avatar":{top:180,display:"block",position:"absolute",marginLeft:e.spacing(2),"& > .MuiBadge-root > img":{height:e.selfcommunity.user.avatar.sizeXLarge,width:e.selfcommunity.user.avatar.sizeXLarge,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover"},"& .MuiBadge-badge":{right:e.spacing(1),top:e.spacing(3),"& .SCUserAvatar-badge-content":{width:32,height:32}}},"& .SCUserProfileHeader-change-picture":{top:240,left:70,position:"relative",display:"flex",marginLeft:e.spacing(2)},"& .SCUserProfileHeader-info":{marginLeft:e.spacing(1),[e.breakpoints.up("md")]:{marginLeft:e.spacing(2)},"& .SCUserProfileHeader-username":{marginTop:.5*e.selfcommunity.user.avatar.sizeXLarge+8,fontWeight:e.typography.fontWeightBold,fontSize:"1.429rem",textAlign:"start"},"& .SCUserProfileHeader-realname":{fontSize:"1rem",textAlign:"start",marginTop:e.spacing(1)},"& .SCUserProfileHeader-website":{textDecoration:"none",color:e.palette.secondary.main,marginTop:e.spacing(1)}},"& .SCUserProfileHeader-change-cover":{position:"absolute",right:10,bottom:10}}),skeletonRoot:({theme:e})=>({position:"relative","& .SCUserProfileHeader-cover":{[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)},height:230},"& .SCUserProfileHeader-avatar":{display:"block",position:"absolute",top:230-.5*e.selfcommunity.user.avatar.sizeXLarge-5,marginLeft:e.spacing(4),"& .MuiSkeleton-root":{border:"#FFF solid 5px"}},"& .SCUserProfileHeader-section":{display:"flex",justifyContent:"space-between","& .SCUserProfileHeader-username":{marginTop:50,textAlign:"start","& .MuiSkeleton-root":{position:"absolute",marginLeft:e.spacing(4)}},"& .SCUserProfileHeader-actions":{[e.breakpoints.up("md")]:{margin:e.spacing(1,2,2,2)},height:"fit-content",marginTop:e.spacing(1)}}})}}},7481:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& > p: nth-of-type(2)":{marginTop:e.spacing(1)},"& .SCUserProfileTemplate-tags":{marginTop:e.spacing(2),marginLeft:e.spacing(2),justifyContent:"start"},"& .SCUserProfileTemplate-counters":{marginLeft:e.spacing(1),[e.breakpoints.up("md")]:{marginLeft:e.spacing(2)},justifyContent:"start",display:"flex",alignItems:"center",flexWrap:"wrap"},"& .SCUserProfileTemplate-info":{marginLeft:e.spacing(1.75),[e.breakpoints.up("md")]:{marginLeft:e.spacing(2.5)},textAlign:"start"},"& .SCUserProfileTemplate-feed":{marginTop:e.spacing(2)},"& .SCUserProfileTemplate-actions":{marginTop:e.spacing(5.75),[e.breakpoints.up("md")]:{margin:e.spacing(1,2,2,2)},height:"fit-content"}}),skeletonRoot:({theme:e})=>({})}}},8043:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},5024:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},4038:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCVoteAudienceButton-reaction-list":{maxWidth:e.spacing(5),overflow:"hidden",marginTop:e.spacing(-.25),fontSize:"1.143rem",display:"flex",flexDirection:"row","& .MuiIcon-root":{marginRight:e.spacing(.5),backgroundColor:"transparent"}},"& > .MuiIcon-root":{fontSize:"1.143rem",marginTop:e.spacing(-.25)}}),dialogRoot:({theme:e})=>({"& .SCVoteAudienceButton-dialog-tabs":{"& .MuiTab-root":{flexDirection:"row",justifyContent:"space-evenly"}},"& .SCVoteAudienceButton-dialog-vote-badge":{width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall,backgroundColor:e.palette.background.paper,border:`1px solid ${e.palette.background.paper}`}})}}},6495:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({color:e.palette.primary.main,marginTop:e.spacing(.5),marginBottom:e.spacing(.5),borderRadius:"50%",padding:e.spacing(1.5),minWidth:0,"& .MuiIcon-root":{fontSize:"1.57rem"},"&.MuiButton-sizeSmall":{padding:e.spacing(.5),"& .MuiIcon-root":{fontSize:"1rem"}}}),popperRoot:({theme:e})=>({"& .SCVoteButton-reaction .MuiIcon-root":{fontSize:"22px"}})}}},8133:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={variants:[{props:{elevation:0},style:{border:0,boxShadow:"none"}},{props:{variant:"outlined"},style:{border:"1px solid rgba(0, 0, 0, 0.12)",boxShadow:"none"}}],styleOverrides:{root:({theme:e})=>({borderRadius:0,boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",border:"0 none",[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"&.MuiPaper-elevation0":{borderRadius:0},"& .MuiCardContent-root":{padding:e.spacing(2.2),"& h5":{fontFamily:e.typography.fontFamily,fontWeight:e.typography.fontWeightBold,color:(0,i.darken)(e.palette.text.primary,.5),fontSize:"1.143rem"},"& .MuiList-root":{paddingTop:e.spacing(2),paddingBottom:0,"& .MuiListItem-root:first-of-type":{paddingTop:0},"& .MuiListItem-root":{paddingTop:e.spacing(1),paddingBottom:e.spacing(1),paddingLeft:0,paddingRight:0,"& .SCBaseItemButton-text, & .SCBaseItem-text":{marginTop:0,marginBottom:0},"& .SCWidget-root":{borderRadius:0}}},"& > .MuiTypography-body2":{paddingTop:e.spacing(2)},"& > .MuiButton-sizeMedium":{marginTop:e.spacing(1),padding:e.spacing(0),color:e.palette.secondary.main}}})}};t.default=n},4478:(e,t,o)=>{o.d(t,{Z:()=>v});var i=o(272),n=o.n(i),a=o(2609),r=o.n(a),d=o(8991),s=o.n(d),l=new URL(o(6736),o.b),p=new URL(o(7612),o.b),g=new URL(o(40),o.b),c=new URL(o(8369),o.b),m=new URL(o(6102),o.b),u=r()(n()),f=s()(l),h=s()(l,{hash:"#9935da"}),C=s()(p),b=s()(g),S=s()(c),y=s()(m,{hash:"#community-icons"});u.push([e.id,"@font-face {\n font-family: 'community-icons';\n src: url("+f+");\n src: url("+h+") format('embedded-opentype'),\n url("+C+") format('woff2'),\n url("+b+") format('truetype'),\n url("+S+") format('woff'),\n url("+y+') format(\'svg\');\n font-weight: normal;\n font-style: normal;\n font-display: block;\n}\n\n.community-icons {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: \'community-icons\' !important;\n speak: never;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Enable Ligatures ================ */\n letter-spacing: 0;\n -ms-font-feature-settings: "liga" 1;\n font-feature-settings: "liga";\n font-variant-ligatures: discretionary-ligatures;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.icon-add_to_home:before {\n content: "\\e96f";\n}\n.icon-box_arrow_up:before {\n content: "\\e96e";\n}\n.icon-add_square:before {\n content: "\\e96d";\n}\n.icon-ai_stars:before {\n content: "\\e96c";\n}\n.icon-circle_closed:before {\n content: "\\e96a";\n}\n.icon-circle_checked:before {\n content: "\\e96b";\n}\n.icon-frequency:before {\n content: "\\e969";\n}\n.icon-calendar_off:before {\n content: "\\e967";\n}\n.icon-twitter:before {\n content: "\\e959";\n}\n.icon-magic_wand:before {\n content: "\\e968";\n}\n.icon-private:before {\n content: "\\e966";\n}\n.icon-groups:before {\n content: "\\e965";\n}\n.icon-category:before {\n content: "\\e938";\n}\n.icon-photo_file:before {\n content: "\\e964";\n}\n.icon-card_giftcard:before {\n content: "\\e900";\n}\n.icon-image:before {\n content: "\\e90a";\n}\n.icon-photo_camera:before {\n content: "\\e90b";\n}\n.icon-card_membership:before {\n content: "\\e90d";\n}\n.icon-label:before {\n content: "\\e917";\n}\n.icon-access_time:before {\n content: "\\e91f";\n}\n.icon-help_outline:before {\n content: "\\e920";\n}\n.icon-info:before {\n content: "\\e921";\n}\n.icon-error:before {\n content: "\\e922";\n}\n.icon-format_align_center:before {\n content: "\\e924";\n}\n.icon-format_align_right:before {\n content: "\\e925";\n}\n.icon-format_align_left:before {\n content: "\\e926";\n}\n.icon-format_align_justify:before {\n content: "\\e927";\n}\n.icon-format_horizontal_rule:before {\n content: "\\e928";\n}\n.icon-drag:before {\n content: "\\e92a";\n}\n.icon-format_heading_3:before {\n content: "\\e92b";\n}\n.icon-format_heading_1:before {\n content: "\\e92c";\n}\n.icon-format_heading_2:before {\n content: "\\e92d";\n}\n.icon-format_paragraph:before {\n content: "\\e92e";\n}\n.icon-more_vert:before {\n content: "\\e92f";\n}\n.icon-list:before {\n content: "\\e930";\n}\n.icon-format_list_bulleted:before {\n content: "\\e933";\n}\n.icon-format_superscript:before {\n content: "\\e939";\n}\n.icon-format_subscript:before {\n content: "\\e93c";\n}\n.icon-format_clear:before {\n content: "\\e93f";\n}\n.icon-format_strikethrough:before {\n content: "\\e941";\n}\n.icon-title:before {\n content: "\\e948";\n}\n.icon-check:before {\n content: "\\e949";\n}\n.icon-format_quote:before {\n content: "\\e958";\n}\n.icon-menu:before {\n content: "\\e962";\n}\n.icon-format_list_numbered:before {\n content: "\\e963";\n}\n.icon-add_circle_outline:before {\n content: "\\e901";\n}\n.icon-add_location_alt:before {\n content: "\\e902";\n}\n.icon-add:before {\n content: "\\e903";\n}\n.icon-arrow_back:before {\n content: "\\e904";\n}\n.icon-attach_file:before {\n content: "\\e905";\n}\n.icon-bar_chart:before {\n content: "\\e906";\n}\n.icon-bookmark_added:before {\n content: "\\e907";\n}\n.icon-bookmark_border:before {\n content: "\\e908";\n}\n.icon-CalendarIcon:before {\n content: "\\e909";\n}\n.icon-chat_bubble_outline:before {\n content: "\\e90c";\n}\n.icon-chevron_left:before {\n content: "\\e90e";\n}\n.icon-chevron_right:before {\n content: "\\e90f";\n}\n.icon-close:before {\n content: "\\e910";\n}\n.icon-code:before {\n content: "\\e911";\n}\n.icon-create:before {\n content: "\\e912";\n}\n.icon-delete:before {\n content: "\\e913";\n}\n.icon-download:before {\n content: "\\e914";\n}\n.icon-edit:before {\n content: "\\e915";\n}\n.icon-email:before {\n content: "\\e916";\n}\n.icon-expand_less:before {\n content: "\\e918";\n}\n.icon-expand_more:before {\n content: "\\e919";\n}\n.icon-explore:before {\n content: "\\e91a";\n}\n.icon-face:before {\n content: "\\e91b";\n}\n.icon-facebook:before {\n content: "\\e91c";\n}\n.icon-fiber_manual_record:before {\n content: "\\e91d";\n}\n.icon-folder_open:before {\n content: "\\e91e";\n}\n.icon-format_bold:before {\n content: "\\e923";\n}\n.icon-format_italic:before {\n content: "\\e929";\n}\n.icon-format_underline:before {\n content: "\\e931";\n}\n.icon-google:before {\n content: "\\e932";\n}\n.icon-hide_image:before {\n content: "\\e934";\n}\n.icon-highlight_off:before {\n content: "\\e935";\n}\n.icon-highlight:before {\n content: "\\e936";\n}\n.icon-home:before {\n content: "\\e937";\n}\n.icon-insert_link:before {\n content: "\\e93a";\n}\n.icon-instagram:before {\n content: "\\e93b";\n}\n.icon-link:before {\n content: "\\e93d";\n}\n.icon-linkedin:before {\n content: "\\e93e";\n}\n.icon-more_circle:before {\n content: "\\e940";\n}\n.icon-movie:before {\n content: "\\e942";\n}\n.icon-notifications_active:before {\n content: "\\e943";\n}\n.icon-notifications_off:before {\n content: "\\e944";\n}\n.icon-outlined_flag:before {\n content: "\\e945";\n}\n.icon-people_alt:before {\n content: "\\e946";\n}\n.icon-person:before {\n content: "\\e947";\n}\n.icon-picture_as_pdf:before {\n content: "\\e94a";\n}\n.icon-play_arrow:before {\n content: "\\e94b";\n}\n.icon-play_circle_outline:before {\n content: "\\e94c";\n}\n.icon-public:before {\n content: "\\e94d";\n}\n.icon-redo:before {\n content: "\\e94e";\n}\n.icon-restore_from_trash:before {\n content: "\\e94f";\n}\n.icon-restore:before {\n content: "\\e950";\n}\n.icon-save:before {\n content: "\\e951";\n}\n.icon-search:before {\n content: "\\e952";\n}\n.icon-send:before {\n content: "\\e953";\n}\n.icon-sentiment_satisfied_alt:before {\n content: "\\e954";\n}\n.icon-share:before {\n content: "\\e955";\n}\n.icon-thumb_up_off_alt:before {\n content: "\\e956";\n}\n.icon-thumb_up:before {\n content: "\\e957";\n}\n.icon-undo:before {\n content: "\\e95a";\n}\n.icon-upload:before {\n content: "\\e95b";\n}\n.icon-visibility_off:before {\n content: "\\e95c";\n}\n.icon-visibility:before {\n content: "\\e95d";\n}\n.icon-whatsup_circle:before {\n content: "\\e95e";\n}\n.icon-zoom_in:before {\n content: "\\e95f";\n}\n.icon-zoom_out_map:before {\n content: "\\e960";\n}\n.icon-zoom_out:before {\n content: "\\e961";\n}\n',"",{version:3,sources:["webpack://./src/fonts/community-icons.css"],names:[],mappings:"AAAA;EACE,8BAA8B;EAC9B,6CAAyC;EACzC;;;;uDAIiE;EACjE,mBAAmB;EACnB,kBAAkB;EAClB,mBAAmB;AACrB;;AAEA;EACE,+EAA+E;EAC/E,yCAAyC;EACzC,YAAY;EACZ,kBAAkB;EAClB,mBAAmB;EACnB,oBAAoB;EACpB,oBAAoB;EACpB,cAAc;;EAEd,sCAAsC;EACtC,iBAAiB;EAIjB,mCAAmC;EACnC,6BAA6B;EAE7B,+CAA+C;;EAE/C,sCAAsC;EACtC,mCAAmC;EACnC,kCAAkC;AACpC;;AAEA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,gBAAgB;AAClB",sourcesContent:['@font-face {\n font-family: \'community-icons\';\n src: url(\'./community/icons.eot?9935da\');\n src: url(\'./community/icons.eot?9935da#9935da\') format(\'embedded-opentype\'),\n url(\'./community/icons.woff2?9935da\') format(\'woff2\'),\n url(\'./community/icons.ttf?9935da\') format(\'truetype\'),\n url(\'./community/icons.woff?9935da\') format(\'woff\'),\n url(\'./community/icons.svg?9935da#community-icons\') format(\'svg\');\n font-weight: normal;\n font-style: normal;\n font-display: block;\n}\n\n.community-icons {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: \'community-icons\' !important;\n speak: never;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Enable Ligatures ================ */\n letter-spacing: 0;\n -webkit-font-feature-settings: "liga";\n -moz-font-feature-settings: "liga=1";\n -moz-font-feature-settings: "liga";\n -ms-font-feature-settings: "liga" 1;\n font-feature-settings: "liga";\n -webkit-font-variant-ligatures: discretionary-ligatures;\n font-variant-ligatures: discretionary-ligatures;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.icon-add_to_home:before {\n content: "\\e96f";\n}\n.icon-box_arrow_up:before {\n content: "\\e96e";\n}\n.icon-add_square:before {\n content: "\\e96d";\n}\n.icon-ai_stars:before {\n content: "\\e96c";\n}\n.icon-circle_closed:before {\n content: "\\e96a";\n}\n.icon-circle_checked:before {\n content: "\\e96b";\n}\n.icon-frequency:before {\n content: "\\e969";\n}\n.icon-calendar_off:before {\n content: "\\e967";\n}\n.icon-twitter:before {\n content: "\\e959";\n}\n.icon-magic_wand:before {\n content: "\\e968";\n}\n.icon-private:before {\n content: "\\e966";\n}\n.icon-groups:before {\n content: "\\e965";\n}\n.icon-category:before {\n content: "\\e938";\n}\n.icon-photo_file:before {\n content: "\\e964";\n}\n.icon-card_giftcard:before {\n content: "\\e900";\n}\n.icon-image:before {\n content: "\\e90a";\n}\n.icon-photo_camera:before {\n content: "\\e90b";\n}\n.icon-card_membership:before {\n content: "\\e90d";\n}\n.icon-label:before {\n content: "\\e917";\n}\n.icon-access_time:before {\n content: "\\e91f";\n}\n.icon-help_outline:before {\n content: "\\e920";\n}\n.icon-info:before {\n content: "\\e921";\n}\n.icon-error:before {\n content: "\\e922";\n}\n.icon-format_align_center:before {\n content: "\\e924";\n}\n.icon-format_align_right:before {\n content: "\\e925";\n}\n.icon-format_align_left:before {\n content: "\\e926";\n}\n.icon-format_align_justify:before {\n content: "\\e927";\n}\n.icon-format_horizontal_rule:before {\n content: "\\e928";\n}\n.icon-drag:before {\n content: "\\e92a";\n}\n.icon-format_heading_3:before {\n content: "\\e92b";\n}\n.icon-format_heading_1:before {\n content: "\\e92c";\n}\n.icon-format_heading_2:before {\n content: "\\e92d";\n}\n.icon-format_paragraph:before {\n content: "\\e92e";\n}\n.icon-more_vert:before {\n content: "\\e92f";\n}\n.icon-list:before {\n content: "\\e930";\n}\n.icon-format_list_bulleted:before {\n content: "\\e933";\n}\n.icon-format_superscript:before {\n content: "\\e939";\n}\n.icon-format_subscript:before {\n content: "\\e93c";\n}\n.icon-format_clear:before {\n content: "\\e93f";\n}\n.icon-format_strikethrough:before {\n content: "\\e941";\n}\n.icon-title:before {\n content: "\\e948";\n}\n.icon-check:before {\n content: "\\e949";\n}\n.icon-format_quote:before {\n content: "\\e958";\n}\n.icon-menu:before {\n content: "\\e962";\n}\n.icon-format_list_numbered:before {\n content: "\\e963";\n}\n.icon-add_circle_outline:before {\n content: "\\e901";\n}\n.icon-add_location_alt:before {\n content: "\\e902";\n}\n.icon-add:before {\n content: "\\e903";\n}\n.icon-arrow_back:before {\n content: "\\e904";\n}\n.icon-attach_file:before {\n content: "\\e905";\n}\n.icon-bar_chart:before {\n content: "\\e906";\n}\n.icon-bookmark_added:before {\n content: "\\e907";\n}\n.icon-bookmark_border:before {\n content: "\\e908";\n}\n.icon-CalendarIcon:before {\n content: "\\e909";\n}\n.icon-chat_bubble_outline:before {\n content: "\\e90c";\n}\n.icon-chevron_left:before {\n content: "\\e90e";\n}\n.icon-chevron_right:before {\n content: "\\e90f";\n}\n.icon-close:before {\n content: "\\e910";\n}\n.icon-code:before {\n content: "\\e911";\n}\n.icon-create:before {\n content: "\\e912";\n}\n.icon-delete:before {\n content: "\\e913";\n}\n.icon-download:before {\n content: "\\e914";\n}\n.icon-edit:before {\n content: "\\e915";\n}\n.icon-email:before {\n content: "\\e916";\n}\n.icon-expand_less:before {\n content: "\\e918";\n}\n.icon-expand_more:before {\n content: "\\e919";\n}\n.icon-explore:before {\n content: "\\e91a";\n}\n.icon-face:before {\n content: "\\e91b";\n}\n.icon-facebook:before {\n content: "\\e91c";\n}\n.icon-fiber_manual_record:before {\n content: "\\e91d";\n}\n.icon-folder_open:before {\n content: "\\e91e";\n}\n.icon-format_bold:before {\n content: "\\e923";\n}\n.icon-format_italic:before {\n content: "\\e929";\n}\n.icon-format_underline:before {\n content: "\\e931";\n}\n.icon-google:before {\n content: "\\e932";\n}\n.icon-hide_image:before {\n content: "\\e934";\n}\n.icon-highlight_off:before {\n content: "\\e935";\n}\n.icon-highlight:before {\n content: "\\e936";\n}\n.icon-home:before {\n content: "\\e937";\n}\n.icon-insert_link:before {\n content: "\\e93a";\n}\n.icon-instagram:before {\n content: "\\e93b";\n}\n.icon-link:before {\n content: "\\e93d";\n}\n.icon-linkedin:before {\n content: "\\e93e";\n}\n.icon-more_circle:before {\n content: "\\e940";\n}\n.icon-movie:before {\n content: "\\e942";\n}\n.icon-notifications_active:before {\n content: "\\e943";\n}\n.icon-notifications_off:before {\n content: "\\e944";\n}\n.icon-outlined_flag:before {\n content: "\\e945";\n}\n.icon-people_alt:before {\n content: "\\e946";\n}\n.icon-person:before {\n content: "\\e947";\n}\n.icon-picture_as_pdf:before {\n content: "\\e94a";\n}\n.icon-play_arrow:before {\n content: "\\e94b";\n}\n.icon-play_circle_outline:before {\n content: "\\e94c";\n}\n.icon-public:before {\n content: "\\e94d";\n}\n.icon-redo:before {\n content: "\\e94e";\n}\n.icon-restore_from_trash:before {\n content: "\\e94f";\n}\n.icon-restore:before {\n content: "\\e950";\n}\n.icon-save:before {\n content: "\\e951";\n}\n.icon-search:before {\n content: "\\e952";\n}\n.icon-send:before {\n content: "\\e953";\n}\n.icon-sentiment_satisfied_alt:before {\n content: "\\e954";\n}\n.icon-share:before {\n content: "\\e955";\n}\n.icon-thumb_up_off_alt:before {\n content: "\\e956";\n}\n.icon-thumb_up:before {\n content: "\\e957";\n}\n.icon-undo:before {\n content: "\\e95a";\n}\n.icon-upload:before {\n content: "\\e95b";\n}\n.icon-visibility_off:before {\n content: "\\e95c";\n}\n.icon-visibility:before {\n content: "\\e95d";\n}\n.icon-whatsup_circle:before {\n content: "\\e95e";\n}\n.icon-zoom_in:before {\n content: "\\e95f";\n}\n.icon-zoom_out_map:before {\n content: "\\e960";\n}\n.icon-zoom_out:before {\n content: "\\e961";\n}\n'],sourceRoot:""}]);const v=u},8152:(e,t,o)=>{o.d(t,{Z:()=>d});var i=o(272),n=o.n(i),a=o(2609),r=o.n(a)()(n());r.push([e.id,"html, body {\n font-size: 14px;\n}\n","",{version:3,sources:["webpack://./src/styles/reset.css"],names:[],mappings:"AAAA;IACI,eAAe;AACnB",sourcesContent:["html, body {\n font-size: 14px;\n}\n"],sourceRoot:""}]);const d=r},2609:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o="",i=void 0!==t[5];return t[4]&&(o+="@supports (".concat(t[4],") {")),t[2]&&(o+="@media ".concat(t[2]," {")),i&&(o+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),o+=e(t),i&&(o+="}"),t[2]&&(o+="}"),t[4]&&(o+="}"),o})).join("")},t.i=function(e,o,i,n,a){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(i)for(var d=0;d<this.length;d++){var s=this[d][0];null!=s&&(r[s]=!0)}for(var l=0;l<e.length;l++){var p=[].concat(e[l]);i&&r[p[0]]||(void 0!==a&&(void 0===p[5]||(p[1]="@layer".concat(p[5].length>0?" ".concat(p[5]):""," {").concat(p[1],"}")),p[5]=a),o&&(p[2]?(p[1]="@media ".concat(p[2]," {").concat(p[1],"}"),p[2]=o):p[2]=o),n&&(p[4]?(p[1]="@supports (".concat(p[4],") {").concat(p[1],"}"),p[4]=n):p[4]="".concat(n)),t.push(p))}},t}},8991:e=>{e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]|(%20)/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},272:e=>{e.exports=function(e){var t=e[1],o=e[3];if(!o)return t;if("function"==typeof btoa){var i=btoa(unescape(encodeURIComponent(JSON.stringify(o)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(i),a="/*# ".concat(n," */"),r=o.sources.map((function(e){return"/*# sourceURL=".concat(o.sourceRoot||"").concat(e," */")}));return[t].concat(r).concat([a]).join("\n")}return[t].join("\n")}},3984:(e,t,o)=>{o.r(t),o.d(t,{default:()=>C});var i=o(6062),n=o.n(i),a=o(4036),r=o.n(a),d=o(6793),s=o.n(d),l=o(7892),p=o.n(l),g=o(1173),c=o.n(g),m=o(2464),u=o.n(m),f=o(4478),h={};h.styleTagTransform=u(),h.setAttributes=p(),h.insert=s().bind(null,"head"),h.domAPI=r(),h.insertStyleElement=c(),n()(f.Z,h);const C=f.Z&&f.Z.locals?f.Z.locals:void 0},4014:(e,t,o)=>{o.r(t),o.d(t,{default:()=>C});var i=o(6062),n=o.n(i),a=o(4036),r=o.n(a),d=o(6793),s=o.n(d),l=o(7892),p=o.n(l),g=o(1173),c=o.n(g),m=o(2464),u=o.n(m),f=o(8152),h={};h.styleTagTransform=u(),h.setAttributes=p(),h.insert=s().bind(null,"head"),h.domAPI=r(),h.insertStyleElement=c(),n()(f.Z,h);const C=f.Z&&f.Z.locals?f.Z.locals:void 0},6062:e=>{var t=[];function o(e){for(var o=-1,i=0;i<t.length;i++)if(t[i].identifier===e){o=i;break}return o}function i(e,i){for(var a={},r=[],d=0;d<e.length;d++){var s=e[d],l=i.base?s[0]+i.base:s[0],p=a[l]||0,g="".concat(l," ").concat(p);a[l]=p+1;var c=o(g),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==c)t[c].references++,t[c].updater(m);else{var u=n(m,i);i.byIndex=d,t.splice(d,0,{identifier:g,updater:u,references:1})}r.push(g)}return r}function n(e,t){var o=t.domAPI(t);return o.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;o.update(e=t)}else o.remove()}}e.exports=function(e,n){var a=i(e=e||[],n=n||{});return function(e){e=e||[];for(var r=0;r<a.length;r++){var d=o(a[r]);t[d].references--}for(var s=i(e,n),l=0;l<a.length;l++){var p=o(a[l]);0===t[p].references&&(t[p].updater(),t.splice(p,1))}a=s}}},6793:e=>{var t={};e.exports=function(e,o){var i=function(e){if(void 0===t[e]){var o=document.querySelector(e);if(window.HTMLIFrameElement&&o instanceof window.HTMLIFrameElement)try{o=o.contentDocument.head}catch(e){o=null}t[e]=o}return t[e]}(e);if(!i)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");i.appendChild(o)}},1173:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},7892:(e,t,o)=>{e.exports=function(e){var t=o.nc;t&&e.setAttribute("nonce",t)}},4036:e=>{e.exports=function(e){var t=e.insertStyleElement(e);return{update:function(o){!function(e,t,o){var i="";o.supports&&(i+="@supports (".concat(o.supports,") {")),o.media&&(i+="@media ".concat(o.media," {"));var n=void 0!==o.layer;n&&(i+="@layer".concat(o.layer.length>0?" ".concat(o.layer):""," {")),i+=o.css,n&&(i+="}"),o.media&&(i+="}"),o.supports&&(i+="}");var a=o.sourceMap;a&&"undefined"!=typeof btoa&&(i+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(i,e,t.options)}(t,e,o)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},2464:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},6736:(e,t,o)=>{e.exports=o.p+"984892b9937ab038a2c8.eot?9935da"},6102:(e,t,o)=>{e.exports=o.p+"3b4a66f561b43352062f.svg?9935da"},40:(e,t,o)=>{e.exports=o.p+"66d70898f471fac919c0.ttf?9935da"},7612:(e,t,o)=>{e.exports=o.p+"eb6136d8e7c3dd30e533.woff2?9935da"},8369:(e,t,o)=>{e.exports=o.p+"f1100f0b1cfa5e60309a.woff?9935da"},5435:e=>{e.exports=a},901:e=>{e.exports=t},4841:e=>{e.exports=i},7655:t=>{t.exports=e},8719:e=>{e.exports=n},8156:e=>{e.exports=o}},d={};function s(e){var t=d[e];if(void 0!==t)return t.exports;var o=d[e]={id:e,exports:{}};return r[e](o,o.exports,s),o.exports}s.m=r,s.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return s.d(t,{a:t}),t},s.d=(e,t)=>{for(var o in t)s.o(t,o)&&!s.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;s.g.importScripts&&(e=s.g.location+"");var t=s.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var o=t.getElementsByTagName("script");o.length&&(e=o[o.length-1].src)}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),s.p=e})(),s.b=document.baseURI||self.location.href,s.nc=void 0;var l={};return(()=>{var e=l;e.__esModule=!0,e.default=void 0,s(3984),s(4014);var t=Jt(s(7751)),o=Jt(s(3154)),i=Jt(s(9649)),n=Jt(s(174)),a=Jt(s(1420)),r=Jt(s(616)),d=Jt(s(5434)),p=Jt(s(6682)),g=Jt(s(8103)),c=Jt(s(8647)),m=Jt(s(9071)),u=Jt(s(2436)),f=Jt(s(5731)),h=Jt(s(824)),C=Jt(s(2327)),b=Jt(s(1512)),S=Jt(s(53)),y=Jt(s(8230)),v=Jt(s(4197)),A=Jt(s(7042)),B=Jt(s(3100)),x=Jt(s(5884)),M=Jt(s(5861)),w=Jt(s(6586)),R=Jt(s(1108)),k=Jt(s(3532)),_=Jt(s(9656)),E=Jt(s(1601)),W=Jt(s(2164)),I=Jt(s(739)),O=Jt(s(5114)),T=Jt(s(6439)),z=Jt(s(9019)),F=Jt(s(4145)),j=Jt(s(4610)),L=Jt(s(7313)),P=Jt(s(1596)),D=Jt(s(9830)),N=Jt(s(1698)),$=Jt(s(7477)),H=Jt(s(6282)),G=Jt(s(2534)),U=Jt(s(1387)),V=Jt(s(3673)),q=Jt(s(7537)),X=Jt(s(8990)),Y=Jt(s(5372)),Z=Jt(s(5403)),J=Jt(s(3156)),Q=Jt(s(3605)),K=Jt(s(9518)),ee=Jt(s(3039)),te=Jt(s(9158)),oe=Jt(s(2941)),ie=Jt(s(8201)),ne=Jt(s(2937)),ae=Jt(s(7319)),re=Jt(s(5545)),de=Jt(s(7222)),se=Jt(s(5806)),le=Jt(s(300)),pe=Jt(s(3244)),ge=Jt(s(911)),ce=Jt(s(957)),me=Jt(s(8586)),ue=Jt(s(797)),fe=Jt(s(6166)),he=Jt(s(7948)),Ce=Jt(s(2595)),be=Jt(s(3868)),Se=Jt(s(6191)),ye=Jt(s(7553)),ve=Jt(s(8050)),Ae=Jt(s(4060)),Be=Jt(s(2319)),xe=Jt(s(1634)),Me=Jt(s(2e3)),we=Jt(s(6886)),Re=Jt(s(8775)),ke=Jt(s(9819)),_e=Jt(s(9697)),Ee=Jt(s(2579)),We=Jt(s(4290)),Ie=Jt(s(1064)),Oe=Jt(s(4331)),Te=Jt(s(8825)),ze=Jt(s(1920)),Fe=Jt(s(9453)),je=Jt(s(9353)),Le=Jt(s(7172)),Pe=Jt(s(2647)),De=Jt(s(4422)),Ne=Jt(s(7576)),$e=Jt(s(6096)),He=Jt(s(5137)),Ge=Jt(s(7972)),Ue=Jt(s(9002)),Ve=Jt(s(9078)),qe=Jt(s(116)),Xe=Jt(s(7395)),Ye=Jt(s(8185)),Ze=Jt(s(3914)),Je=Jt(s(3212)),Qe=Jt(s(8154)),Ke=Jt(s(1390)),et=Jt(s(8002)),tt=Jt(s(4111)),ot=Jt(s(681)),it=Jt(s(7992)),nt=Jt(s(977)),at=Jt(s(3210)),rt=Jt(s(6148)),dt=Jt(s(8679)),st=Jt(s(8485)),lt=Jt(s(8449)),pt=Jt(s(9677)),gt=Jt(s(8774)),ct=Jt(s(4678)),mt=Jt(s(8332)),ut=Jt(s(6880)),ft=Jt(s(7337)),ht=Jt(s(4653)),Ct=Jt(s(834)),bt=Jt(s(2564)),St=Jt(s(8946)),yt=Jt(s(4901)),vt=Jt(s(8047)),At=Jt(s(8509)),Bt=Jt(s(9219)),xt=Jt(s(7485)),Mt=Jt(s(8261)),wt=Jt(s(218)),Rt=Jt(s(2089)),kt=Jt(s(5383)),_t=Jt(s(8762)),Et=Jt(s(3701)),Wt=Jt(s(458)),It=Jt(s(1830)),Ot=Jt(s(880)),Tt=Jt(s(6466)),zt=Jt(s(6487)),Ft=Jt(s(6091)),jt=Jt(s(5682)),Lt=Jt(s(4377)),Pt=Jt(s(200)),Dt=Jt(s(4177)),Nt=Jt(s(3991)),$t=Jt(s(7875)),Ht=Jt(s(4768)),Gt=Jt(s(3601)),Ut=Jt(s(7481)),Vt=Jt(s(8043)),qt=Jt(s(5024)),Xt=Jt(s(4038)),Yt=Jt(s(6495)),Zt=Jt(s(8133));function Jt(e){return e&&e.__esModule?e:{default:e}}var Qt={typography:{htmlFontSize:14,fontSize:14,fontWeightLight:"300",fontWeightRegular:"400",fontWeightMedium:"500",fontWeightBold:"700",h1:{fontSize:"3.4rem"},h2:{fontSize:"1.7rem"},h3:{fontSize:"1.5rem"},h4:{fontSize:"1.2rem"},h5:{fontSize:"1.1rem"},h6:{fontSize:"1rem"},body1:{fontSize:"1rem"}},shape:{borderRadius:20,borderRadiusSm:10},spacing:8,mixins:{toolbar:{minHeight:45,"@media (min-width:0px)":{minHeight:45},"@media (min-width:600px)":{minHeight:45}}},components:{MuiAppBar:t.default,MuiAutocomplete:o.default,MuiAvatar:i.default,MuiButton:n.default,MuiContainer:a.default,MuiDialog:r.default,MuiDrawer:d.default,MuiIcon:p.default,MuiIconButton:g.default,MuiOutlinedInput:c.default,MuiPopover:m.default,MuiSelect:u.default,MuiTooltip:f.default,SCAccountChangeMailValidation:h.default,SCAccountDataPortability:C.default,SCAccountDelete:b.default,SCAccountReset:S.default,SCAccountVerify:y.default,SCBaseDialog:v.default,SCBaseItem:A.default,SCBaseItemButton:B.default,SCBottomNavigation:x.default,SCBroadcastMessages:M.default,SCBullet:w.default,SCCategories:k.default,SCCategoriesPopularWidget:_.default,SCCategoriesSuggestionWidget:E.default,SCCategory:W.default,SCCategoryAutocomplete:I.default,SCCategoryFeedTemplate:O.default,SCCategoryFollowersButton:T.default,SCCategoryHeader:z.default,SCCategoryTemplate:F.default,SCCategoryTrendingFeedWidget:j.default,SCCategoryTrendingUsersWidget:L.default,SCChangeCoverButton:P.default,SCChangeGroupCoverButton:D.default,SCChangeGroupPictureButton:N.default,SCChangePictureButton:$.default,SCChoices:H.default,SCCommentObject:G.default,SCCommentObjectReply:U.default,SCCommentsFeedObject:V.default,SCCommentsObject:q.default,SCComposer:X.default,SCConsentSolution:Y.default,SCContributionActionsMenu:Z.default,SCCreateGroupButton:K.default,SCCustomAdv:ee.default,SCCustomSnackMessage:te.default,SCDateTimeAgo:oe.default,SCDefaultHeaderContent:ie.default,SCEditGroupButton:ne.default,SCEditor:ae.default,SCEmojiPicker:re.default,SCExploreFeedTemplate:Se.default,SCFeed:ye.default,SCFeedObject:ve.default,SCFeedObjectDetailTemplate:Ae.default,SCFeedObjectMediaPreview:Be.default,SCFeedUpdatesWidget:xe.default,SCFooter:Me.default,SCGroup:we.default,SCGroupActionsMenu:Re.default,SCGroupAutocomplete:ke.default,SCGroupFeedTemplate:_e.default,SCGroupForm:Ee.default,SCGroupHeader:We.default,SCGroupInfoWidget:Ie.default,SCGroupInviteButton:Oe.default,SCGroupInvitedWidget:Te.default,SCGroupMembersButton:ze.default,SCGroupMembersWidget:Fe.default,SCGroupRequestsWidget:je.default,SCGroupSettingsIconButton:Pe.default,SCGroupTemplate:De.default,SCGroups:Le.default,SCIncubator:Ne.default,SCIncubatorDetail:$e.default,SCIncubatorListWidget:He.default,SCIncubatorSuggestionWidget:Ge.default,SCInlineComposerWidget:Ue.default,SCLanguageSwitcher:Ve.default,SCLightbox:qe.default,SCLoyaltyProgramDetailTemplate:Xe.default,SCLoyaltyProgramWidget:Ye.default,SCMainFeedTemplate:Ze.default,SCMediaFile:Je.default,SCMediaLink:Qe.default,SCMediaShare:Ke.default,SCNavigationMenuIconButton:tt.default,SCNavigationMenuDrawer:ot.default,SCNavigationSettingsIconButton:it.default,SCNavigationToolbar:nt.default,SCNavigationToolbarMobile:at.default,SCNotification:rt.default,SCNotificationFeedTemplate:dt.default,SCNotificationItem:st.default,SCOnBoardingWidget:lt.default,SCPlatformWidget:pt.default,SCPollSuggestionWidget:gt.default,SCPreviewMediaDocument:ct.default,SCPreviewMediaLink:mt.default,SCPrivateMessageComponent:ut.default,SCPrivateMessageEditor:ft.default,SCPrivateMessageSettingsIconButton:ht.default,SCPrivateMessageSnippetItem:Ct.default,SCPrivateMessageSnippets:bt.default,SCPrivateMessageThread:St.default,SCPrivateMessageThreadItem:yt.default,SCProgressBar:vt.default,SCReactionAction:At.default,SCRelatedFeedObjectsWidget:xt.default,SCScrollContainer:Mt.default,SCSearchAutocomplete:wt.default,SCSnippetNotifications:Rt.default,SCToastNotifications:_t.default,SCUser:Et.default,SCUserActionIconButton:Wt.default,SCUserAvatar:It.default,SCUserCategoriesFollowedWidget:Ot.default,SCUserConnectionsRequestsSentWidget:Tt.default,SCUserConnectionsRequestsWidget:zt.default,SCUserConnectionsWidget:Ft.default,SCUserCounters:jt.default,SCUserFeedTemplate:Lt.default,SCUserFollowedUsersWidget:Pt.default,SCUserFollowersWidget:Dt.default,SCUserInfo:Nt.default,SCUserProfileBlocked:$t.default,SCUserProfileEdit:Ht.default,SCUserProfileHeader:Gt.default,SCUserProfileTemplate:Ut.default,SCUserSubscribedGroupsWidget:Vt.default,SCUserSuggestionWidget:qt.default,SCEventForm:le.default,SCCreateEventButton:J.default,SCEventLocationWidget:ue.default,SCEvent:de.default,SCEventActionsMenu:se.default,SCEvents:Ce.default,SCEventInviteButton:me.default,SCEventHeader:pe.default,SCEventInfoWidget:ce.default,SCEventInfoDetails:ge.default,SCEventSubscribeButton:be.default,SCEventParticipantsButton:he.default,SCMyEventsWidget:et.default,SCCalendar:R.default,SCCreateEventWidget:Q.default,SCSuggestedEventsWidget:kt.default,SCEventMembersWidget:fe.default,SCRelatedEventsWidget:Bt.default,SCVoteAudienceButton:Xt.default,SCVoteButton:Yt.default,SCWidget:Zt.default},selfcommunity:{user:{avatar:{sizeSmall:21,sizeMedium:30,sizeLarge:60,sizeXLarge:90}},category:{icon:{sizeSmall:24,sizeMedium:40,sizeLarge:50}},group:{avatar:{sizeSmall:40,sizeMedium:60,sizeLarge:90,sizeXLarge:205}}}};e.default=Qt})(),l})()));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/react-theme-default",
3
- "version": "0.2.0-alpha.35",
3
+ "version": "0.2.0-alpha.37",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "./lib/cjs/index.js",
@@ -66,7 +66,7 @@
66
66
  "@emotion/styled": "^11.11.0",
67
67
  "@mui/material": "^5.15.3",
68
68
  "@selfcommunity/react-core": "^0.5.0-alpha.10",
69
- "@selfcommunity/react-ui": "^0.8.0-alpha.33",
69
+ "@selfcommunity/react-ui": "^0.8.0-alpha.34",
70
70
  "react": "^17.0.2 || 18",
71
71
  "react-dom": "17 || 18"
72
72
  },
@@ -117,5 +117,5 @@
117
117
  "bugs": {
118
118
  "url": "https://github.com/selfcommunity/community-js/issues"
119
119
  },
120
- "gitHead": "4a3107f4441233b806c7ea2c8072415f44bf54da"
120
+ "gitHead": "ee4c640e735444650085a4f88e4163d544c3b3dd"
121
121
  }