@selfcommunity/react-theme-default 0.4.2-alpha.2 → 0.4.2-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/components/SCEventMembersWidget.d.ts +1 -10
- package/lib/cjs/components/SCEventMembersWidget.js +1 -8
- package/lib/cjs/components/SCEvents.d.ts +6 -0
- package/lib/cjs/components/SCEvents.js +7 -1
- package/lib/cjs/index.d.ts +7 -13
- package/lib/esm/components/SCEventMembersWidget.d.ts +1 -10
- package/lib/esm/components/SCEventMembersWidget.js +1 -8
- package/lib/esm/components/SCEvents.d.ts +6 -0
- package/lib/esm/components/SCEvents.js +7 -1
- package/lib/esm/index.d.ts +7 -13
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +3 -3
|
@@ -53,16 +53,7 @@ declare const Component: {
|
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
|
-
dialogRoot: (
|
|
57
|
-
theme: any;
|
|
58
|
-
}) => {
|
|
59
|
-
'& .SCEventMembersWidget-infinite-scroll': {
|
|
60
|
-
[x: number]: {
|
|
61
|
-
height: string;
|
|
62
|
-
};
|
|
63
|
-
height: string;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
56
|
+
dialogRoot: () => {};
|
|
66
57
|
};
|
|
67
58
|
};
|
|
68
59
|
export default Component;
|
|
@@ -51,14 +51,7 @@ const Component = {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
}),
|
|
54
|
-
dialogRoot: (
|
|
55
|
-
'& .SCEventMembersWidget-infinite-scroll': {
|
|
56
|
-
height: '400px',
|
|
57
|
-
[theme.breakpoints.down('md')]: {
|
|
58
|
-
height: '100%'
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
})
|
|
54
|
+
dialogRoot: () => ({})
|
|
62
55
|
}
|
|
63
56
|
};
|
|
64
57
|
exports.default = Component;
|
|
@@ -19,6 +19,9 @@ declare const Component: {
|
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
'& .SCEvents-events': {
|
|
22
|
+
[x: number]: {
|
|
23
|
+
marginBottom: any;
|
|
24
|
+
};
|
|
22
25
|
marginTop: any;
|
|
23
26
|
'& .SCEvents-item': {
|
|
24
27
|
paddingTop: any;
|
|
@@ -44,6 +47,9 @@ declare const Component: {
|
|
|
44
47
|
flexDirection: string;
|
|
45
48
|
alignItems: string;
|
|
46
49
|
'& .SCEvent-skeleton-root': {
|
|
50
|
+
[x: number]: {
|
|
51
|
+
width: string;
|
|
52
|
+
};
|
|
47
53
|
marginBottom: any;
|
|
48
54
|
minWidth: string;
|
|
49
55
|
};
|
|
@@ -22,6 +22,9 @@ const Component = {
|
|
|
22
22
|
},
|
|
23
23
|
'& .SCEvents-events': {
|
|
24
24
|
marginTop: theme.spacing(2),
|
|
25
|
+
[theme.breakpoints.down('md')]: {
|
|
26
|
+
marginBottom: theme.spacing(7)
|
|
27
|
+
},
|
|
25
28
|
'& .SCEvents-item': {
|
|
26
29
|
paddingTop: theme.spacing(2)
|
|
27
30
|
},
|
|
@@ -47,7 +50,10 @@ const Component = {
|
|
|
47
50
|
alignItems: 'flex-start',
|
|
48
51
|
'& .SCEvent-skeleton-root': {
|
|
49
52
|
marginBottom: theme.spacing(2),
|
|
50
|
-
minWidth: '50%'
|
|
53
|
+
minWidth: '50%',
|
|
54
|
+
[theme.breakpoints.down('md')]: {
|
|
55
|
+
width: '100%'
|
|
56
|
+
}
|
|
51
57
|
},
|
|
52
58
|
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
53
59
|
maxWidth: '70%'
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -7290,6 +7290,9 @@ declare const theme: {
|
|
|
7290
7290
|
};
|
|
7291
7291
|
};
|
|
7292
7292
|
'& .SCEvents-events': {
|
|
7293
|
+
[x: number]: {
|
|
7294
|
+
marginBottom: any;
|
|
7295
|
+
};
|
|
7293
7296
|
marginTop: any;
|
|
7294
7297
|
'& .SCEvents-item': {
|
|
7295
7298
|
paddingTop: any;
|
|
@@ -7315,6 +7318,9 @@ declare const theme: {
|
|
|
7315
7318
|
flexDirection: string;
|
|
7316
7319
|
alignItems: string;
|
|
7317
7320
|
'& .SCEvent-skeleton-root': {
|
|
7321
|
+
[x: number]: {
|
|
7322
|
+
width: string;
|
|
7323
|
+
};
|
|
7318
7324
|
marginBottom: any;
|
|
7319
7325
|
minWidth: string;
|
|
7320
7326
|
};
|
|
@@ -7998,9 +8004,6 @@ declare const theme: {
|
|
|
7998
8004
|
root: ({ theme }: {
|
|
7999
8005
|
theme: any;
|
|
8000
8006
|
}) => {
|
|
8001
|
-
/**
|
|
8002
|
-
* Style fragments - Imports - Start
|
|
8003
|
-
*/
|
|
8004
8007
|
'& .SCEventMembersWidget-content': {
|
|
8005
8008
|
padding: string;
|
|
8006
8009
|
'& .SCEventMembersWidget-title': {
|
|
@@ -8051,16 +8054,7 @@ declare const theme: {
|
|
|
8051
8054
|
};
|
|
8052
8055
|
};
|
|
8053
8056
|
};
|
|
8054
|
-
dialogRoot: (
|
|
8055
|
-
theme: any;
|
|
8056
|
-
}) => {
|
|
8057
|
-
'& .SCEventMembersWidget-infinite-scroll': {
|
|
8058
|
-
[x: number]: {
|
|
8059
|
-
height: string;
|
|
8060
|
-
};
|
|
8061
|
-
height: string;
|
|
8062
|
-
};
|
|
8063
|
-
};
|
|
8057
|
+
dialogRoot: () => {};
|
|
8064
8058
|
};
|
|
8065
8059
|
};
|
|
8066
8060
|
SCRelatedEventsWidget: {
|
|
@@ -53,16 +53,7 @@ declare const Component: {
|
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
|
-
dialogRoot: (
|
|
57
|
-
theme: any;
|
|
58
|
-
}) => {
|
|
59
|
-
'& .SCEventMembersWidget-infinite-scroll': {
|
|
60
|
-
[x: number]: {
|
|
61
|
-
height: string;
|
|
62
|
-
};
|
|
63
|
-
height: string;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
56
|
+
dialogRoot: () => {};
|
|
66
57
|
};
|
|
67
58
|
};
|
|
68
59
|
export default Component;
|
|
@@ -49,14 +49,7 @@ const Component = {
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
}),
|
|
52
|
-
dialogRoot: (
|
|
53
|
-
'& .SCEventMembersWidget-infinite-scroll': {
|
|
54
|
-
height: '400px',
|
|
55
|
-
[theme.breakpoints.down('md')]: {
|
|
56
|
-
height: '100%'
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
})
|
|
52
|
+
dialogRoot: () => ({})
|
|
60
53
|
}
|
|
61
54
|
};
|
|
62
55
|
export default Component;
|
|
@@ -19,6 +19,9 @@ declare const Component: {
|
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
'& .SCEvents-events': {
|
|
22
|
+
[x: number]: {
|
|
23
|
+
marginBottom: any;
|
|
24
|
+
};
|
|
22
25
|
marginTop: any;
|
|
23
26
|
'& .SCEvents-item': {
|
|
24
27
|
paddingTop: any;
|
|
@@ -44,6 +47,9 @@ declare const Component: {
|
|
|
44
47
|
flexDirection: string;
|
|
45
48
|
alignItems: string;
|
|
46
49
|
'& .SCEvent-skeleton-root': {
|
|
50
|
+
[x: number]: {
|
|
51
|
+
width: string;
|
|
52
|
+
};
|
|
47
53
|
marginBottom: any;
|
|
48
54
|
minWidth: string;
|
|
49
55
|
};
|
|
@@ -20,6 +20,9 @@ const Component = {
|
|
|
20
20
|
},
|
|
21
21
|
'& .SCEvents-events': {
|
|
22
22
|
marginTop: theme.spacing(2),
|
|
23
|
+
[theme.breakpoints.down('md')]: {
|
|
24
|
+
marginBottom: theme.spacing(7)
|
|
25
|
+
},
|
|
23
26
|
'& .SCEvents-item': {
|
|
24
27
|
paddingTop: theme.spacing(2)
|
|
25
28
|
},
|
|
@@ -45,7 +48,10 @@ const Component = {
|
|
|
45
48
|
alignItems: 'flex-start',
|
|
46
49
|
'& .SCEvent-skeleton-root': {
|
|
47
50
|
marginBottom: theme.spacing(2),
|
|
48
|
-
minWidth: '50%'
|
|
51
|
+
minWidth: '50%',
|
|
52
|
+
[theme.breakpoints.down('md')]: {
|
|
53
|
+
width: '100%'
|
|
54
|
+
}
|
|
49
55
|
},
|
|
50
56
|
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
51
57
|
maxWidth: '70%'
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -7290,6 +7290,9 @@ declare const theme: {
|
|
|
7290
7290
|
};
|
|
7291
7291
|
};
|
|
7292
7292
|
'& .SCEvents-events': {
|
|
7293
|
+
[x: number]: {
|
|
7294
|
+
marginBottom: any;
|
|
7295
|
+
};
|
|
7293
7296
|
marginTop: any;
|
|
7294
7297
|
'& .SCEvents-item': {
|
|
7295
7298
|
paddingTop: any;
|
|
@@ -7315,6 +7318,9 @@ declare const theme: {
|
|
|
7315
7318
|
flexDirection: string;
|
|
7316
7319
|
alignItems: string;
|
|
7317
7320
|
'& .SCEvent-skeleton-root': {
|
|
7321
|
+
[x: number]: {
|
|
7322
|
+
width: string;
|
|
7323
|
+
};
|
|
7318
7324
|
marginBottom: any;
|
|
7319
7325
|
minWidth: string;
|
|
7320
7326
|
};
|
|
@@ -7998,9 +8004,6 @@ declare const theme: {
|
|
|
7998
8004
|
root: ({ theme }: {
|
|
7999
8005
|
theme: any;
|
|
8000
8006
|
}) => {
|
|
8001
|
-
/**
|
|
8002
|
-
* Style fragments - Imports - Start
|
|
8003
|
-
*/
|
|
8004
8007
|
'& .SCEventMembersWidget-content': {
|
|
8005
8008
|
padding: string;
|
|
8006
8009
|
'& .SCEventMembersWidget-title': {
|
|
@@ -8051,16 +8054,7 @@ declare const theme: {
|
|
|
8051
8054
|
};
|
|
8052
8055
|
};
|
|
8053
8056
|
};
|
|
8054
|
-
dialogRoot: (
|
|
8055
|
-
theme: any;
|
|
8056
|
-
}) => {
|
|
8057
|
-
'& .SCEventMembersWidget-infinite-scroll': {
|
|
8058
|
-
[x: number]: {
|
|
8059
|
-
height: string;
|
|
8060
|
-
};
|
|
8061
|
-
height: string;
|
|
8062
|
-
};
|
|
8063
|
-
};
|
|
8057
|
+
dialogRoot: () => {};
|
|
8064
8058
|
};
|
|
8065
8059
|
};
|
|
8066
8060
|
SCRelatedEventsWidget: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*! For license information please see react-theme-default.js.LICENSE.txt */
|
|
2
|
-
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("@mui/material/styles"),require("@mui/material"),require("react"),require("@mui/material/colors"),require("@mui/system"),require("@emotion/react")):"function"==typeof define&&define.amd?define(["@mui/material/styles","@mui/material","react","@mui/material/colors","@mui/system","@emotion/react"],t):"object"==typeof exports?exports.SelfCommunityReactThemeDefault=t(require("@mui/material/styles"),require("@mui/material"),require("react"),require("@mui/material/colors"),require("@mui/system"),require("@emotion/react")):e.SelfCommunityReactThemeDefault=t(e["@mui/material/styles"],e["@mui/material"],e.react,e["@mui/material/colors"],e["@mui/system"],e["@emotion/react"])}(self,((e,t,o,i,n,a)=>(()=>{"use strict";var r={7751:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o,n,a;return{color:(0,i.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.text.primary,backgroundColor:null==(n=e.palette)||null==(a=n.navbar)?void 0:a.main}}}};t.default=n},3154:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i,n=o(901),a=(i=o(8156))&&i.__esModule?i:{default:i},r={defaultProps:{clearIcon:a.default.createElement(n.Icon,null,"close"),popupIcon:a.default.createElement(n.Icon,null,"expand_more")}};t.default=r},9649:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({img:{borderRadius:"100%"}})}}},174:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={variants:[{props:{variant:"outlined"},style:{borderWidth:2,"&:hover, &:active":{borderWidth:2}}},{props:{variant:"contained"},style:{}},{props:{variant:"text"},style:{borderWidth:0}}],styleOverrides:{root:({theme:e})=>({textTransform:"initial",fontWeight:e.typography.fontWeightRegular,padding:".4em .6em",lineHeight:1.2,borderRadius:e.shape.borderRadius}),sizeSmall:{fontSize:"0.875rem",padding:"6px 16px"},sizeMedium:{fontSize:"0.975",padding:"10px 24px"},sizeLarge:{fontSize:"1.286rem",padding:"10px 60px"}}}},1420:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({maxWidth:e.breakpoints.values.lg,[e.breakpoints.down("md")]:{paddingLeft:0,paddingRight:0}})}}},616:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:{"& .MuiDialog-paperFullScreen":{display:"inline-flex",flexDirection:"column"},"& .MuiDialog-paperScrollBody":{overflowY:"hidden"}}}}},5434:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiDrawer-paperAnchorBottom":{borderTopLeftRadius:e.shape.borderRadius,borderTopRightRadius:e.shape.borderRadius,maxHeight:"75vh",paddingTop:e.shape.borderRadius,"&:before":{content:'""',border:`1px solid ${e.palette.primary.main}`,width:60,position:"absolute",top:e.shape.borderRadius/2,left:"calc(50% - 30px)"},"& > *":{paddingTop:0}}})}}},6682:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={defaultProps:{baseClassName:"community-icons",fontSize:"inherit"}}},8103:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{sizeSmall:{fontSize:"1rem"},sizeMedium:{fontSize:"1.429rem"},sizeLarge:{fontSize:"1.57rem"}}}},8647:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:{borderRadius:5}}}},9071:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{paper:({theme:e})=>({borderRadius:e.shape.borderRadius/2})}}},2436:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i,n=o(901),a=(i=o(8156))&&i.__esModule?i:{default:i},r={defaultProps:{IconComponent:({className:e})=>a.default.createElement(n.Icon,{className:e},"expand_more")}};t.default=r},5731:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={defaultProps:{enterDelay:500}}},824:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({"& .MuiAlert-message":{display:"flex",alignItems:"center"}})}}},2327:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiTypography-root":{marginBottom:e.spacing(2)},"& .SCAccountDataPortability-create-button":{marginRight:e.spacing(2),marginBottom:e.spacing()},"& .SCAccountDataPortability-download-button":{marginBottom:e.spacing()},"& .SCAccountDataPortability-generation-info":{fontWeight:e.typography.fontWeightBold}})}}},1512:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiTypography-root":{marginBottom:e.spacing(2)},"& .SCAccountDelete-confirm > .MuiTextField-root":{display:"block"}})}}},53:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiAlert-message":{display:"flex",alignItems:"center"}})}}},8230:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({"& .MuiAlert-message":{display:"flex",alignItems:"center"}})}}},4197:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({minWidth:300,[e.breakpoints.up(500)]:{minWidth:500},"& .MuiDialogContent-root":{paddingLeft:0,paddingRight:0,marginLeft:e.spacing(3),marginRight:e.spacing(3),[e.breakpoints.only("xs")]:{padding:0},"& .infinite-scroll-component__outerdiv":{height:"100%","& .infinite-scroll-component":{paddingRight:10," > .":{marginBottom:e.spacing(2.5)},"& .MuiList-root":{paddingTop:0,paddingBottom:0,"& .MuiListItem-root":{paddingLeft:0,paddingRight:0,"& .SCBaseItemButton-root":{borderRadius:0}}},"& .SCFeedObject-snippet":{marginLeft:e.spacing(-2)}}}},'& [class*="-end-message"]':{padding:e.spacing(3,2),fontWeight:e.typography.fontWeightBold,textAlign:"center"},"& .MuiDialogActions-spacing":{padding:e.spacing(2,3)}}),titleRoot:({theme:e})=>({display:"flex",flexDirection:"row-reverse",alignItems:"start",justifyContent:"flex-end",fontSize:"1.286rem",fontWeight:e.typography.fontWeightBold,padding:e.spacing(2,3),[e.breakpoints.up("md")]:{flexDirection:"row",justifyContent:"space-between"},"& .MuiIconButton-root":{fontSize:"1rem",marginRight:e.spacing(1),[e.breakpoints.up("md")]:{marginRight:-6}}})}}},7042:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%",display:"flex",flexDirection:"row",alignItems:"center","&.MuiPaper-elevation":{paddingTop:e.spacing(),paddingBottom:e.spacing(),paddingLeft:e.spacing(2),paddingRight:e.spacing(2),"&.MuiPaper-elevation0":{paddingTop:0,paddingBottom:0,paddingLeft:0,paddingRight:0}},"& .SCBaseItem-content":{display:"flex",flexDirection:"row",justifyContent:"flex-start",alignItems:"center",width:"100%"},"& .SCBaseItem-image":{flexShrink:0,marginRight:e.spacing(2)},"& .SCBaseItem-text":{flex:"1 1 auto",marginTop:e.spacing(),marginBottom:e.spacing(),textAlign:"left",width:"100%"},"& .SCBaseItem-primary":{color:e.palette.text.primary},"& .SCBaseItem-secondary":{color:e.palette.text.secondary},"& .SCBaseItem-primary, & .SCBaseItem-secondary":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"},"&.SCBaseItem-with-actions":{"& .SCBaseItem-text < *":{maxWidth:`calc(100% - ${e.spacing(14)})`},"& .SCBaseItem-actions":{right:e.spacing(3),top:"50%",maxWidth:e.spacing(14)}}})}}},3100:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({position:"relative",width:"100%","&.MuiPaper-elevation":{paddingTop:e.spacing(),paddingBottom:e.spacing(),paddingLeft:e.spacing(2),paddingRight:e.spacing(2),"&.MuiPaper-elevation0":{paddingTop:0,paddingBottom:0,paddingLeft:0,paddingRight:0,"& .SCBaseItemButton-actions":{right:0}}},"& .SCBaseItemButton-content":{display:"flex",flexDirection:"row",justifyContent:"flex-start",alignItems:"center",width:"100%"},"& .SCBaseItemButton-image":{flexShrink:0,marginRight:e.spacing(2)},"& .SCBaseItemButton-text":{flex:"1 1 auto",marginTop:e.spacing(),marginBottom:e.spacing(),textAlign:"left"},"& .SCBaseItemButton-primary":{color:e.palette.text.primary},"& .SCBaseItemButton-secondary":{color:e.palette.text.secondary},"& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"},"&.SCBaseItemButton-with-actions":{"& .SCBaseItemButton-text > *":{maxWidth:`calc(100% - ${e.spacing(14)})`,[e.breakpoints.only("md")]:{maxWidth:`calc(100% - ${e.spacing(15)})`}},"& .SCBaseItemButton-actions":{position:"absolute",right:e.spacing(2),top:"50%",transform:"translateY(-50%)",maxWidth:e.spacing(19)}}})}}},5884:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o,n,a;return{backgroundColor:null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"& .SCBottomNavigation-action":{fontSize:"1.57rem",color:(0,i.getContrastRatio)(null==(n=e.palette)||null==(a=n.navbar)?void 0:a.main,"#fff")>4.5?"#fff":e.palette.primary.main,borderTop:"1px solid transparent",minWidth:56,"&.Mui-selected, &:hover":{color:e.palette.secondary.main,borderTop:`1px solid ${e.palette.secondary.main}`},"&.SCBottomNavigation-composer":{"&.Mui-selected, &:hover":{color:e.palette.secondary.main,borderTop:"0 none"}}},"&.SCBottomNavigation-ios":{paddingBottom:"15px"}}}}};t.default=n},5861:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(4841),n={styleOverrides:{root:({theme:e})=>({"& .SCBroadcastMessages-box-load-more":{textAlign:"center","& > div":{paddingBottom:e.spacing(2)},marginBottom:e.spacing(2)},"& .SCBroadcastMessages-avatar-load-more":{width:e.spacing(4),height:e.spacing(4),marginRight:e.spacing()},"& .SCBroadcastMessages-button-load-more":{textTransform:"initial"}}),messageRoot:({theme:e})=>({width:"100%",marginBottom:e.spacing(2),"& .SCBroadcastMessages-header .MuiAvatar-img":{objectFit:"fill"},"& .SCBroadcastMessages-title":{padding:`${e.spacing(2)}`,paddingBottom:`${e.spacing()}`,paddingTop:0},"& .SCBroadcastMessages-media":{paddingBottom:`${e.spacing(2)}`},"& .SCBroadcastMessages-content":{padding:e.spacing(2),paddingTop:0},"& .SCBroadcastMessages-list-item-snippet":{padding:"0px 5px",alignItems:"center"},"& .SCBroadcastMessages-list-item-snippet-new":{borderLeft:"2px solid red"},"& .SCBroadcastMessages-flag-icon-wrap":{minWidth:"auto",paddingRight:10},"& .SCBroadcastMessages-flag-icon-snippet":{backgroundColor:i.red[500],color:"#FFF",width:30,height:30}}),skeletonRoot:({theme:e})=>({}),messageSkeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)})}};t.default=n},6586:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({display:"inline-block",margin:"0px 4px",transform:"scale(1.2)"})}}},1108:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({gap:"7px",position:"absolute",bottom:"-36px",left:"24px",width:"60px",height:"60px",borderRadius:"5px",boxShadow:"0px 3px 8px #00000040",backgroundColor:e.palette.common.white,overflow:"hidden","& .SCCalendar-header":{width:"100%",height:"16px",backgroundColor:e.palette.error.dark}})}}},3532:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCCategories-filters":{marginTop:e.spacing(),marginBottom:e.spacing(2)},"& .SCCategories-categories":{marginTop:e.spacing(3),"& .SCCategories-category":{padding:e.spacing(2),width:"auto","& > div":{cursor:"default"},"& .SCCategory-category-image":{minWidth:56,height:"100%",borderTopLeftRadius:e.shape.borderRadius,borderBottomLeftRadius:e.shape.borderRadius,borderRadius:0}}}}),skeletonRoot:({theme:e})=>({"& .SCCategories-categories":{marginTop:e.spacing(3),"& .SCCategory-skeleton-root":{padding:e.spacing(2),width:"auto","& .SCBaseItem-image":{borderTopLeftRadius:e.shape.borderRadius,borderBottomLeftRadius:e.shape.borderRadius,"& .SCCategory-image":{borderRadius:0,width:"56px !important",height:"56px !important"}}}}})}}},9656:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},1601:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},2164:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:0,[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"& .SCCategory-category-image":{"& img":{borderRadius:e.spacing(1)}},"& .SCCategory-primary":{color:e.palette.text.primary},"& .SCCategory-secondary":{color:e.palette.text.secondary},"& .SCBaseItemButton-primary, & .SCCategory-primary":{fontWeight:e.typography.fontWeightBold},"& .SCBaseItemButton-secondary":{fontSize:"0.857rem",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"},"& .SCCategory-primary, & .SCCategory-secondary":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"}}),skeletonRoot:({theme:e})=>({"& .SCCategory-image":{borderRadius:e.spacing(1)},"& .SCCategory-primary":{marginBottom:e.spacing(1)},"& .SCCategory-secondary":{marginBottom:e.spacing(1)},"& .SCCategory-action":{margin:e.spacing(.5)}})}}},739:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},5114:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCFeed-root > MuiGrid-item":{paddingTop:0}}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},6439:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,followers:t})=>({padding:e.spacing(),"& .MuiAvatarGroup-root":{"&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root":{"&.MuiAvatar-colorDefault":{marginLeft:0,backgroundColor:"transparent",color:e.palette.primary.main,border:"0 none",borderRadius:0,padding:1}},"& .MuiAvatar-root":{height:e.selfcommunity.user.avatar.sizeSmall,border:`1px solid ${e.palette.common.white}`,fontSize:"0.7rem","&:first-of-type":{width:t>3?"auto":e.selfcommunity.user.avatar.sizeSmall},"&:not(:first-of-type)":{width:e.selfcommunity.user.avatar.sizeSmall}}}}),dialogRoot:()=>({})}}},9019:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={defaultProps:{CategoryFollowButtonProps:{size:"medium"}},styleOverrides:{root:({theme:e})=>({"& .SCCategoryHeader-cover":{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",minHeight:150,color:"#FFF",background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",height:230,borderRadius:0,[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}},"& .SCCategoryHeader-info":{paddingLeft:e.spacing(2),paddingRight:e.spacing(2),marginTop:e.spacing(1),marginBottom:e.spacing(2),"& .SCCategoryHeader-name, & .SCCategoryHeader-slogan":{display:"block",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",textAlign:"center",marginBottom:`${e.spacing(1)} !important`},"& .SCCategoryHeader-name":{fontSize:"1.857rem",fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing()},"& .SCCategoryHeader-slogan":{fontSize:"1rem",fontWeight:e.typography.fontWeightMedium,marginBottom:`${e.spacing(0)} !important`},"& .SCCategoryHeader-followed, & .SCCategoryHeader-action":{textAlign:"center",marginBottom:e.spacing(2)},"& .SCCategoryHeader-followed":{marginBottom:`${e.spacing(0)} !important`,"& .SCCategoryHeader-followed-counter":{fontSize:"1rem",fontWeight:e.typography.fontWeightRegular,display:"inline"}}}}),skeletonRoot:({theme:e})=>({"& .SCCategoryHeader-skeleton-cover":{[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}}})}}},4145:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& .SCCategoryTemplate-feed":{marginTop:e.spacing(2)}}),skeletonRoot:({theme:e})=>({marginTop:0,[e.breakpoints.up("md")]:{marginTop:30}})}}},4610:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},7313:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},1596:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({display:"flex",alignItems:"center",flexWrap:"wrap","& .MuiButtonBase-root":{padding:6,borderRadius:50,minWidth:"auto"},"& .SCChangeCoverButton-help-popover":{marginLeft:e.spacing(1)}})}}},9830:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(1),minWidth:"auto"})}}},1698:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(1),minWidth:"auto"})}}},7477:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(1),minWidth:"auto"}),dialogRoot:({theme:e})=>({"& .MuiDialogContent-root":{paddingLeft:e.spacing(2)},"& .SCChangePictureButton-images-list":{maxHeight:500},"& .SCChangePictureButton-image-item":{"& .MuiImageListItemBar-actionIcon, .MuiIconButton-root":{color:e.palette.common.white},"& .SCChangePictureButton-primary":{border:"solid"}}})}}},6282:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:0})}}},2534:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({overflow:"visible",width:"100%","& .SCCommentObject-comment":{paddingBottom:0,overflow:"visible","& > div":{alignItems:"flex-start"},"& .SCBaseItem-image .MuiBadge-badge":{top:e.spacing(1.5)},"& .SCBaseItem-text":{marginBottom:0,marginTop:e.spacing(.2)}},"& .SCCommentObject-nested-comments":{paddingTop:0,paddingBottom:0,paddingLeft:e.spacing(2),"& ul.MuiList-root":{paddingTop:0,paddingBottom:0,width:"100%","& li.MuiListItem-root":{paddingTop:5}},"& .SCCommentObjectReply-root .SCEditor-root":{padding:"6px"},[e.breakpoints.up("sm")]:{paddingLeft:e.spacing(6)}},"& .SCCommentObject-content":{overflowWrap:"anywhere",position:"relative",display:"flex",padding:"6px",borderRadius:.5*e.shape.borderRadius,borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),"& .MuiCardContent-root":{flexGrow:1,padding:0,"& > p:first-of-type":{paddingTop:4}},"& .SCCommentObject-text-content":{margin:0,"& a":{color:e.palette.text.secondary,textDecoration:"underlined","&:hover":{textDecoration:"none"}},"& p":{margin:0,marginBlockStart:"0.3em",marginBlockEnd:"0.3em"},"& img":{maxWidth:"100%"}}},"& .SCCommentObject-show-more-content":{color:e.palette.text.secondary,textDecoration:"underlined","&:hover":{textDecoration:"none"}},"& .SCCommentObject-avatar, & .SCCommentObjectReply-avatar":{top:e.spacing(),width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCCommentObject-author":{textDecoration:"none",color:e.palette.text.primary,"& span":{fontWeight:"600"}},"& .SCCommentObject-comment-actions-menu":{alignItems:"flexStart"},"& .SCCommentObject-deleted":{opacity:.3},"& .SCCommentObject-content-sub-section":{display:"flex",justifyContent:"flex-start",alignItems:"center",color:e.palette.text.secondary},"& .SCCommentObject-comment-sub-section":{display:"flex",flexWrap:"wrap",alignItems:"center",color:e.palette.primary.main,marginTop:0,position:"relative","& > *":{marginRight:e.spacing(1)},"& .SCCommentObject-activity-at":{color:"inherit",textDecoration:"none","&:hover":{textDecoration:"underline"}},"& .SCCommentObjectReply":{color:"inherit",textDecorationStyle:"solid",fontSize:"0.857rem",padding:e.spacing(1),textTransform:"capitalize"},"& .SCBullet-root":{display:"none"},[e.breakpoints.up("sm")]:{"& > *":{marginRight:0},"& .SCCommentObject-vote-audience":{position:"absolute",right:0,top:0},"& .SCBullet-root":{display:"inline"}}}}),skeletonRoot:({theme:e})=>({paddingBottom:e.spacing(),overflow:"visible","& > div":{alignItems:"flex-start"},"& .SCCommentObject-avatar":{top:e.spacing()},"& .SCCommentObject-primary-content":{marginBottom:e.spacing()},"&.SCWidget-root":{"& .SCBaseItem-text":{marginBottom:0,"& > .SCWidget-root":{borderRadius:.5*e.shape.borderRadius,borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)},"& .MuiCardContent-root":{padding:e.spacing(1)}}}})}};t.default=n},1387:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({border:"0 none",marginBottom:e.spacing(1),overflow:"visible","& .SCBaseItem-content":{alignItems:"flex-start","& .SCBaseItem-text":{marginTop:0,marginBottom:0,"& .SCBaseItem-secondary":{overflow:"visible"}},"& .SCBaseItem-image":{marginTop:e.spacing(.2),"& .MuiBadge-badge":{top:e.spacing(1.25)},"& .SCCommentObjectReply-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}},"& .SCCommentObjectReply-comment":{overflow:"visible",borderRadius:.5*e.shape.borderRadius},"& .SCCommentObjectReply-actions":{marginLeft:e.spacing(),paddingBottom:e.spacing()}})}}},3673:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%","& .SCCommentsFeedObject-no-comments":{padding:e.spacing(),paddingLeft:0},"& .SCCommentsFeedObject-comment-not-found":{padding:e.spacing()},"& .SCCommentObject-root":{"& > div":{background:"transparent"}},"& .SCCommentObject-skeleton-root":{background:"transparent",boxShadow:"none",border:0,margin:e.spacing(.5,0),"& .SCBaseItem-text":{"& .SCWidget-root":{"& .MuiCardContent-root":{padding:e.spacing(2)}}}},"& .SCCommentsObject-skeleton-root":{marginBottom:e.spacing(.5)},"& .SCCommentObjectReply-root":{background:"transparent","& .SCCommentObjectReply-comment":{marginBottom:e.spacing(4)}}}),skeletonRoot:({theme:e})=>({})}}},7537:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({boxShadow:"none",position:"relative",display:"flex",flexWrap:"wrap",width:"100%",paddingBottom:e.spacing(),"& .SCCommentsObject-load-more-comments-button":{textTransform:"initial",padding:e.spacing()},"& .SCCommentsObject-load-previous-comments-button":{textTransform:"initial",padding:e.spacing()},"& .SCCommentsObject-comments-counter":{paddingRight:e.spacing()},"& .SCCommentsObject-pagination-link":{display:"none"},"& .SCCommentsObject-pagination":{width:"100%","& button":{fontWeight:e.typography.fontWeightLight,textDecoration:"underline",textUnderlineOffset:3,textDecorationStyle:"dashed"},"& .SCCommentsObject-comments-counter":{fontSize:"0.8rem"}}}),skeletonRoot:({theme:e})=>({width:"100%"})}}},8990:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiDialog-paper":{position:"relative",overflowX:"hidden","& > form":{zIndex:0},"& .MuiDialogTitle-root":{position:"absolute",top:0,left:0,right:0,padding:e.spacing(.5,2,.5,1),display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",borderBottom:`1px solid ${e.palette.grey[400]}`,zIndex:2,backgroundColor:e.palette.background.paper,"& .MuiTypography-root":{flexGrow:1,textAlign:"left",fontWeight:e.typography.fontWeightMedium}},"& .MuiDialogContent-root":{margin:"45px 0",padding:e.spacing(1,2),height:`calc(100vh - 45px - 45px - ${e.spacing(2)})`,"& .SCEditor-root":{padding:e.spacing(1,0),"& .SCEditor-placeholder":{left:0,top:e.spacing(1),position:"absolute"},"&.SCEditor-toolbar":{position:"static","& .SCEditor-placeholder":{marginTop:-40,position:"static"},"& .SCEditorToolbarPlugin-root":{zIndex:1,position:"absolute",display:"flex",bottom:e.spacing(7),right:e.spacing(.2),left:e.spacing(.2),marginBottom:0,backgroundColor:e.palette.background.paper}}}},"& .SCComposer-types":{position:"absolute",zIndex:2,bottom:e.spacing(7),left:0,right:0,justifyContent:"center"},"& .MuiDialogActions-root":{position:"absolute",bottom:0,left:0,right:0,padding:e.spacing(.5,1),display:"flex",flexDirection:"row",justifyContent:"space-between",zIndex:1,backgroundColor:e.palette.background.paper,borderTop:`1px solid ${e.palette.grey[400]}`},"& .SCComposer-general-error":{marginBottom:e.spacing(2),color:e.palette.error.main}},[e.breakpoints.up("md")]:{"& .MuiDialog-paper":{"& > form":{zIndex:0},"& .MuiDialogContent-root":{minHeight:300,height:"auto",maxHeight:600},"& .MuiDialogActions-root":{justifyContent:"center"}}}}),attributesRoot:({theme:e})=>({}),contentDiscussionRoot:({theme:e})=>({"& .SCComposer-content-discussion-title":{paddingBottom:e.spacing(2),"& .MuiInputBase-root":{paddingLeft:0,paddingRight:0,paddingBottom:0,fontSize:"1.429rem",fontWeight:e.typography.fontWeightBold,"& fieldset":{display:"none"},"&.MuiInputBase-adornedEnd .MuiTypography-root":{alignSelf:"end"},"&.Mui-error":{color:e.palette.error.main}},"& .MuiFormHelperText-root":{marginLeft:0}}}),contentPollRoot:({theme:e})=>({padding:e.spacing(2),"& .SCComposer-content-poll-title, & .SCComposer-content-poll-choices, & .SCComposer-content-poll-choice-new, & .SCComposer-content-poll-metadata":{marginBottom:e.spacing(3)},"& .SCComposer-content-poll-choices .MuiTextField-root":{marginBottom:e.spacing()},"& .SCComposer-content-poll-metadata":{marginTop:e.spacing(3)}}),contentPostRoot:({theme:e})=>({}),layerTransitionRoot:({theme:e})=>({position:"absolute",top:0,left:0,right:0,bottom:0,zIndex:5,background:e.palette.background.paper,"& .MuiDialogContent-root":{height:"calc(100% - 45px - 16px) !important",marginBottom:"0 !important"}}),layerAudienceRoot:({theme:e})=>({"& .MuiTabs-root":{minHeight:"auto",marginBottom:e.spacing(4),"& .MuiTabs-flexContainer":{justifyContent:"center","& .MuiTab-labelIcon":{minHeight:"auto",flexDirection:"row","& .MuiIcon-root":{marginRight:e.spacing(1)}}}},"& .SCComposer-layer-audience-message":{textAlign:"center",marginBottom:e.spacing(4)}}),layerCategoryRoot:({theme:e})=>({}),layerGroupRoot:({theme:e})=>({}),layerCloseRoot:({theme:e})=>({"& .SCComposer-layer-content":{"& .MuiTypography-root":{textAlign:"center"},"& .MuiList-root":{"& .MuiListItem-root":{padding:0,"& .MuiTypography-root":{fontSize:"1.143rem"},"&:nth-last-of-type(1)":{color:e.palette.error.main}}}}}),layerLocationRoot:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),typeSwitchButtonGroupRoot:({theme:e})=>({"& .MuiToggleButton-root":{backgroundColor:e.palette.common.black,color:(0,i.alpha)(e.palette.common.white,.5),padding:e.spacing(.5,2),fontSize:"1rem",fontWeight:e.typography.fontWeightBold,textTransform:"capitalize","&.Mui-selected, &:hover, &:active, &.Mui-selected:hover":{color:e.palette.common.white,backgroundColor:e.palette.common.black},"&:nth-of-type(1)":{paddingLeft:e.spacing(4)},"&:nth-last-of-type(1)":{paddingRight:e.spacing(4)}}})}};t.default=n},5372:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCConsentSolution-title":{display:"flex",justifyContent:"center",fontWeight:800,[e.breakpoints.down("sm")]:{fontSize:"0.9rem"}},"& .SCConsentSolution-title-back":{display:"flex",justifyContent:"left"},"& .SCConsentSolution-content":{padding:e.spacing(2),overflowX:"hidden",fontSize:"0.8rem",[e.breakpoints.down("sm")]:{padding:12,"& h6":{fontSize:"0.8rem"},"& span, p, li":{fontSize:"0.7rem"},"& li":{fontSize:"0.7rem"},"& button":{fontSize:"0.6rem"}}},"& .SCConsentSolution-consent":{borderTop:0,overflowY:"visible",[e.breakpoints.down("sm")]:{paddingTop:5,paddingBottom:5}},"& .SCConsentSolution-consent-switch":{margin:`${e.spacing()} 3px`,"& > span:first-of-type":{marginRight:10},[e.breakpoints.down("sm")]:{".MuiFormControlLabel-label":{fontSize:"0.7rem"}}},"& .SCConsentSolution-delete-account-button":{cursor:"pointer","&:hover":{textDecoration:"underline"}},"& .SCConsentSolution-confirm-delete-account-button":{color:"#FFF !important",marginRight:e.spacing(2),marginBottom:e.spacing()},"& .SCConsentSolution-logout-account-button":{marginBottom:e.spacing()},"& .SCConsentSolution-data-portability":{marginBottom:e.spacing(2)},"& .SCConsentSolution-alert-accept-document":{padding:e.spacing(),[e.breakpoints.down("sm")]:{fontSize:"0.7rem",padding:5}},"& .SCConsentSolution-alert-accept-conditions":{fontSize:"0.8rem",fontWeight:300,color:e.palette.grey.A700,padding:`${e.spacing()} ${e.spacing()}`,[e.breakpoints.down("sm")]:{fontSize:"0.6rem"}}}),skeletonRoot:({theme:e})=>({"& .SCConsentSolution-title":{display:"flex",alignItems:"center",justifyContent:"center"},"& .SCConsentSolution-content":{paddingTop:e.spacing(3),paddingBottom:e.spacing(5)},"& .SCConsentSolution-consent":{borderTop:0,overflowY:"visible",display:"flex"},"& .SCConsentSolution-consent-switch":{width:64,height:31,borderRadius:22,marginRight:e.spacing()},"& .SCConsentSolution-consent-switch-label":{marginTop:23}})}}},5403:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCContributionActionsMenu-button":{color:e.palette.primary.main,"&:hover":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}},"& .SCContributionActionsMenu-visibility-icons":{color:e.palette.secondary.main,"& > span: nth-of-type(2)":{position:"relative",top:1}}}),popperRoot:({theme:e})=>({zIndex:2,"& .SCContributionActionsMenu-popper-root":{overflow:"visible",filter:"drop-shadow(0px -1px 5px rgba(0,0,0,0.10))",mt:1.5},"& .SCContributionActionsMenu-paper":{width:280,"& .SCContributionActionsMenu-sub-item":{"& .MuiListItemIcon-root":{color:e.palette.text.secondary},"&:hover":{backgroundColor:(0,i.alpha)(e.palette.text.primary,e.palette.action.hoverOpacity)}}},"& .SCContributionActionsMenu-footer-sub-items":{margin:"10px 10px 10px 17px",border:"1px solid #dddddd",padding:5,borderRadius:3,fontSize:11},"& .SCContributionActionsMenu-selected-icon":{marginLeft:2,"&.MuiListItemIcon-root":{width:"10px"},"& svg":{fontSize:"1.4rem"}},"& .SCContributionActionsMenu-section-badge":{padding:0,minWidth:15,height:15,top:3},"& .SCContributionActionsMenu-section-with-selection-icon":{fontSize:12,color:e.palette.common.white}})}};t.default=n},3156:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{"& .MuiIcon-root":{fontSize:"0.75rem !important"}}})}}},3605:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCCreateEventWidget-image":{height:"110px"},"& .SCCreateEventWidget-calendar":{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)",color:e.palette.common.white},"& .SCCreateEventWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 0 !important`,"& .SCCreateEventWidget-title":{textAlign:"center",marginBottom:e.spacing(2)},"& .SCCreateEventWidget-spacing":{marginBottom:e.spacing(2)}},"& .SCCreateEventWidget-actions":{padding:`0 ${e.spacing(2)} ${e.spacing(2)}`,justifyContent:"center"}}),skeletonRoot:({theme:e})=>({"& .SCCreateEventWidget-calendar":{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"},"& .SCCreateEventWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 0 !important`,"& .SCCreateEventWidget-title":{textAlign:"center"},"& .SCCreateEventWidget-spacing":{marginBottom:e.spacing(2)}},"& .SCCreateEventWidget-actions":{padding:`0 ${e.spacing(2)} ${e.spacing(2)}`,justifyContent:"center"}})}}},9518:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}})}}},3039:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({margin:e.spacing(2,0),"& .SCCustomAdv-wrap":{width:"100%",position:"relative"},"& .SCCustomAdv-image":{width:"100%"},"& .SCCustomAdv-embed-code":{width:"100%"},"& .SCCustomAdv-prefixed-height":{position:"absolute",top:0,left:0,bottom:0,right:0}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},9158:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:370,[e.breakpoints.up("sm")]:{minWidth:"345px !important"},"& .SCCustomSnackMessage-card":{width:"100%","& .SCCustomSnackMessage-content":{position:"relative",padding:e.spacing(2,4,2,2),"& .SCCustomSnackMessage-close":{position:"absolute",right:0,top:0,zIndex:1},a:{color:e.palette.text.primary,textDecoration:"none","&:hover":{textDecoration:"underline"}}}}})}}},2941:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({color:"inherit",verticalAlign:"middle","& .MuiIcon-root":{fontSize:"1rem",marginRight:2},"& .MuiTypography-root":{lineHeight:"1rem",fontSize:"0.857rem"}})}}},8201:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({display:"flex",alignItems:"center"})}}},2937:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}})}}},7319:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({boxSizing:"borderBox",padding:e.spacing(1,2),position:"relative",cursor:"text","& .SCEditor-content":{position:"relative",outline:"none",minHeight:40,paddingBottom:20,"& > p":{margin:0},"& img":{margin:0},"& mention":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)},"& hashtag":{backgroundColor:(0,i.alpha)(e.palette.secondary.main,e.palette.action.activatedOpacity)}},"& .SCEditor-placeholder":{position:"absolute",top:e.spacing(1),left:e.spacing(2),color:e.palette.text.disabled},"& .SCEditor-actions":{position:"absolute",bottom:0,right:e.spacing(),color:e.palette.text.primary,zIndex:1,"& .MuiIcon-root":{fontSize:"1.143rem"}},"& .SCEditor-image":{position:"relative",display:"block","& .selected":{border:`2px solid ${e.palette.secondary.main}`}},"& hr":{cursor:"pointer",margin:"1em 0","&.selected":{outline:`2px solid ${e.palette.secondary.main}`,userSelect:"none"}},"& .SCEditor-ltr":{textAlign:"left"},"& .SCEditor-rtl":{textAlign:"right"},"& .SCEditor-paragraph":{margin:0,position:"relative"},"& .SCEditor-quote":{margin:0,marginLeft:e.spacing(2),marginBottom:e.spacing(1),color:e.palette.text.secondary,borderLeftColor:e.palette.primary.main,borderLeftWidth:e.spacing(.25),borderLeftStyle:"solid",paddingLeft:e.spacing(2)},"& .SCEditor-h1":{fontSize:"1.429rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,1,0)},"& .SCEditor-h2":{fontSize:"1.143rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.8,0)},"& .SCEditor-h3":{fontSize:"1rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.5,0)},"& .SCEditor-textBold":{fontWeight:"bold"},"& .SCEditor-textItalic":{fontStyle:"italic"},"& .SCEditor-textUnderline":{textDecoration:"underline"},"& .SCEditor-textStrikethrough":{textDecoration:"line-through"},"& .SCEditor-textUnderlineStrikethrough":{textDecoration:"underline line-through"},"& .SCEditor-textSubscript":{fontSize:"0.8em",verticalAlign:"sub !important"},"& .SCEditor-textSuperscript":{fontSize:"0.8em",verticalAlign:"super"},"& .SCEditor-link":{color:e.palette.text.secondary,textDecoration:"underline"},"& .SCEditor-link:hover":{textDecoration:"none",cursor:"pointer"},"& .SCEditor-ol1":{padding:0,margin:0},"& .SCEditor-ol2":{padding:0,margin:0,listStyleType:"upper-alpha"},"& .SCEditor-ol3":{padding:0,margin:0,listStyleType:"lower-alpha"},"& .SCEditor-ol4":{padding:0,margin:0,listStyleType:"upper-roman"},"& .SCEditor-ol5":{padding:0,margin:0,listStyleType:"lower-roman"},"& .SCEditor-ul":{padding:0,margin:0},"& .SCEditor-listItem":{margin:"0 32px"}}),toolbar:({theme:e})=>({"& .SCEditor-placeholder":{top:e.spacing(7),left:e.spacing(2)}}),skeletonRoot:({theme:e})=>({}),emojiPluginRoot:({theme:e})=>({}),floatingLinkPluginRoot:({theme:e})=>({zIndex:2e3,"& .MuiPaper-root":{borderRadius:5}}),hashtagPluginRoot:({theme:e})=>({position:"absolute",background:e.palette.background.paper,boxShadow:"0px 5px 10px rgba(0, 0, 0, 0.3)",borderRadius:8,marginLeft:7,marginTop:18,zIndex:3e3,"& ul":{padding:0,listStyle:"none",margin:0,borderRadius:10,"& li":{padding:e.spacing(1),margin:0,minWidth:180,fontSize:e.typography.body2.fontSize,outline:"none",cursor:"pointer",display:"flex",flexDirection:"row",justifyContent:"left",alignItems:"center","&.selected":{background:e.palette.action.selected},"&.hovered":{background:e.palette.action.hover},"& .MuiAvatar-root":{width:20,height:20,marginRight:e.spacing()}}}}),imagePluginRoot:({theme:e})=>({}),mentionPluginRoot:({theme:e})=>({position:"absolute",background:e.palette.background.paper,boxShadow:"0px 5px 10px rgba(0, 0, 0, 0.3)",borderRadius:8,marginLeft:7,marginTop:18,zIndex:3e3,"& ul":{padding:0,listStyle:"none",margin:0,borderRadius:10,"& li":{padding:e.spacing(1),margin:0,minWidth:180,fontSize:e.typography.body2.fontSize,outline:"none",cursor:"pointer",display:"flex",flexDirection:"row",justifyContent:"left",alignItems:"center","&.selected":{background:e.palette.action.selected},"&.hovered":{background:e.palette.action.hover},"& .MuiAvatar-root":{width:20,height:20,marginRight:e.spacing()}}}}),toolbarPluginRoot:({theme:e})=>({borderRadius:.2*e.shape.borderRadius,borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),borderWidth:1,borderStyle:"solid",display:"flex",flexDirection:"row",alignItems:"center",justifyContent:"left",marginBottom:e.spacing(1),padding:0,overflowX:"scroll",MsOverflowStyle:"none",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},"& .MuiTextField-root":{minWidth:100,margin:e.spacing(0,.5)},"& .MuiButtonBase-root":{margin:e.spacing(.5),padding:e.spacing(1),fontSize:"1rem",border:0,borderRadius:.2*e.shape.borderRadius,"&.Mui-disabled":{border:0},"&.MuiToggleButtonGroup-grouped:not(:last-of-type)":{borderTopRightRadius:.2*e.shape.borderRadius,borderBottomRightRadius:.2*e.shape.borderRadius},"&.MuiToggleButtonGroup-grouped:not(:first-of-type)":{borderTopRightRadius:.2*e.shape.borderRadius,borderBottomRightRadius:.2*e.shape.borderRadius,borderTopLeftRadius:.2*e.shape.borderRadius,borderBottomLeftRadius:.2*e.shape.borderRadius}},"& .SCEditor-block-format .MuiIcon-root:first-of-type":{display:"inline-block",marginRight:e.spacing(1)}})}};t.default=n},5545:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .EmojiPickerReact.epr-main":{borderWidth:0}})}}},7222:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),detailRoot:({theme:e})=>({"& .SCEvent-detail-image-wrapper":{position:"relative","& .SCEvent-detail-image":{height:"170px"},"& .SCEvent-detail-in-progress":{backgroundColor:e.palette.secondary.main,position:"absolute",top:10,right:10,color:e.palette.common.white,boxShadow:"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px"}},"& .SCEvent-detail-content":{padding:`52px ${e.spacing(3)} 0 !important`,"& .SCEvent-detail-user":{marginTop:"14px","& .SCBaseItemButton-text":{margin:0}},"& .SCEvent-detail-name-wrapper":{textDecoration:"none",color:"inherit","& .SCEvent-detail-name":{marginBottom:"10px"}},"& .SCEvent-detail-first-divider":{marginTop:"18px",marginBottom:e.spacing()},"& .SCEvent-detail-second-divider":{marginTop:e.spacing(),marginBottom:"18px"}}}),previewRoot:({theme:e})=>({"& .SCEvent-preview-image-wrapper":{position:"relative","& .SCEvent-preview-image":{height:"80px"},"& .SCEvent-preview-in-progress":{height:18,backgroundColor:e.palette.secondary.main,position:"absolute",top:7,right:7,color:e.palette.common.white,boxShadow:"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px","& span":{fontSize:"0.8rem",paddingLeft:e.spacing(.5),paddingRight:e.spacing(.5)}}},"& .SCEvent-preview-content":{padding:`${e.spacing()} !important`,"& .SCEventInfoDetails-icon-text-wrapper":{"& .MuiTypography-root":{fontSize:"0.8rem"}},"& .SCEvent-detail-user":{marginTop:"14px","& .SCBaseItemButton-text":{margin:0}},"& .SCEvent-preview-name-wrapper":{marginTop:3,textDecoration:"none",color:"inherit","& h5":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}}}),snippetRoot:({theme:e})=>({overflow:"visible",boxSizing:"border-box",paddingLeft:`${e.spacing()} !important`,paddingRight:`${e.spacing()} !important`,"& .SCBaseItem-image":{"& .MuiAvatar-root":{width:100,height:60,"& img":{borderRadius:"5px"}}},"& .SCEvent-snippet-image":{position:"relative","& .SCEvent-snippet-in-progress":{height:18,backgroundColor:e.palette.secondary.main,position:"absolute",top:5,right:3,color:e.palette.common.white,boxShadow:"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px","& span":{fontSize:"0.8rem",paddingLeft:e.spacing(.5),paddingRight:e.spacing(.5)}}},"& .SCBaseItem-text":{fontSize:e.typography.fontSize,"& .SCEvent-snippet-primary":{color:e.palette.text.primary,textDecoration:"none","&:hover":{textDecoration:"none"},"& p":{fontWeight:e.typography.fontWeightBold}},"& .SCEvent-snippet-secondary":{color:e.palette.text.secondary}}}),skeletonRoot:({theme:e})=>({"& .SCEvent-skeleton-detail-root":{"& .SCEvent-skeleton-detail-calendar":{position:"absolute",bottom:"-36px",left:"24px",boxShadow:"0px 3px 8px #00000040"},"& .SCEvent-skeleton-detail-content":{padding:`52px ${e.spacing(3)} 0 !important`,"& .SCEvent-skeleton-detail-user":{marginTop:"14px","& .SCBaseItemButton-text":{margin:0}},"& .SCEvent-skeleton-detail-name-wrapper":{textDecoration:"none",color:"inherit","& .SCEvent-skeleton-detail-name":{marginBottom:"10px"}},"& .SCEvent-skeleton-detail-first-divider":{marginTop:"18px",marginBottom:e.spacing()},"& .SCEvent-skeleton-detail-second-divider":{marginTop:e.spacing(),marginBottom:"18px"}}},"& .SCEvent-skeleton-preview-root":{"& .SCEvent-skeleton-preview-content":{padding:e.spacing()},"& .SCEvent-skeleton-preview-image":{position:"relative","& .MuiSkeleton-root":{borderRadius:"5px"},"& .MuiIcon-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCBaseItem-actions":{maxWidth:"none !important"}},"& .SCEvent-skeleton-snippet-root":{overflow:"visible",boxSizing:"border-box",paddingLeft:`${e.spacing()} !important`,paddingRight:`${e.spacing()} !important`,"& .SCEvent-skeleton-snippet-image":{position:"relative","& .MuiSkeleton-root":{borderRadius:"5px"},"& .MuiIcon-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCBaseItem-actions":{maxWidth:"none !important"}}})}}},5806:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .MuiDivider-root":{margin:e.spacing(1)},"& .MuiIcon-root":{fontSize:"15px"}}),drawerRoot:({theme:e})=>({"& .SCEventActionsMenu-item":{paddingTop:0,paddingBottom:0},"& .MuiDivider-root":{margin:e.spacing(2)},"& .MuiIcon-root":{fontSize:"15px"}})}}},300:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCEventForm-cover":{position:"relative",height:120,minHeight:120,"& .SCEventForm-upload-event-cover-root":{position:"absolute",right:e.spacing(2),bottom:e.spacing(1),padding:e.spacing(1),minWidth:"auto"}},"& .SCEventForm-header":{marginTop:e.spacing(4.5),color:e.palette.text.secondary},"& .SCEventForm-form":{"& .SCEventForm-picker":{width:"50%","& .MuiFormHelperText-root":{height:0,marginTop:0}},"& .MuiTextField-root, .SCEventForm-frequency":{marginBottom:e.spacing(2)},"& .MuiButton-text":{justifyContent:"start",paddingLeft:e.spacing(1),"&:hover":{backgroundColor:"transparent"}}},"& .SCEventForm-date-time":{display:"flex",alignItems:"center",justifyContent:"space-between",gap:e.spacing(1),"& .MuiInputBase-root":{paddingLeft:e.spacing(.5)}},"& .SCEventForm-error":{color:e.palette.error.main},"& .SCEventForm-switch":{"& .MuiButtonBase-root":{"&.Mui-checked":{color:e.palette.secondary.main,"& + .MuiSwitch-track":{backgroundColor:e.palette.secondary.main}}}},"& .SCEventForm-switch-label":{fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",justifyContent:"center",gap:e.spacing(.5)},"& .SCEventForm-active":{color:e.palette.secondary.main},"& .SCEventForm-actions":{marginTop:e.spacing(2),display:"flex",justifyContent:"flex-end","& button":{width:"fit-content"}},"& .SCEventForm-privacy-section":{marginTop:e.spacing(2),justifyContent:"center","& .SCEventForm-privacy-section-info":{marginBottom:e.spacing(2)}},"& .SCEventForm-visibility-section-info":{marginTop:e.spacing(1)},"& .MuiDivider-root":{marginTop:e.spacing(2),border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`},"& .MuiDialogTitle-root":{"& span":{flexGrow:1,textAlign:"center"}},"& .SCEventForm-event-address-root":{marginTop:e.spacing(2),backgroundColor:e.palette.grey.A200,borderRadius:5,"& .SCEventForm-event-address-tabs":{padding:e.spacing(0,2,0,2),"& .MuiTabs-indicator":{bottom:e.spacing(1.5)}},"& .SCEventForm-event-address-tab":{textTransform:"none"},"& .SCEventForm-event-address-tab-content":{padding:e.spacing(.5,2,2,2)}}})}};t.default=n},7039:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiDialogTitle-root":{"& span":{flexGrow:1,textAlign:"center"}}})}}},3244:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(901),n={styleOverrides:{root:({theme:e,isEventAdmin:t,isEventFinished:o})=>({"& .SCEventHeader-cover":{position:"relative",minHeight:150,background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",height:230,borderRadius:0,[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}},"& .SCEventHeader-in-progress":{color:e.palette.secondary.main,paddingLeft:e.spacing(2),display:"inline-flex",alignItems:"center",gap:"4px",marginBottom:e.spacing(.5),"&:before":{content:'""',width:"8px",height:"8px",borderRadius:"9999px",backgroundColor:e.palette.secondary.main,animation:"pulse-animation 2s linear infinite","@keyframes pulse-animation":{"0%":{opacity:1},"50%":{opacity:0},"100%":{opacity:1}}}},"& .SCEventHeader-chip":{marginLeft:e.spacing(2),marginBottom:e.spacing(),backgroundColor:e.palette.grey[500],"& .SCEventHeader-chip-icon":{marginLeft:e.spacing(1)}},"& .SCEventHeader-time":{textTransform:"uppercase",fontSize:"1.143rem",fontWeight:e.typography.fontWeightLight,color:o?e.palette.grey[500]:e.palette.text.secondary,paddingLeft:e.spacing(2)},"& .SCEventHeader-info":{marginTop:e.spacing(6),"& .SCEventHeader-name":{fontSize:"1.857rem",fontWeight:e.typography.fontWeightBold,paddingLeft:e.spacing(2),color:o?e.palette.grey[500]:"inherit"},"& .SCEventHeader-visibility":{display:"flex",justifyContent:"flex-start",alignItems:"center",gap:e.spacing(.5),paddingLeft:e.spacing(2),color:o?e.palette.grey[500]:"inherit","& .SCEventHeader-visibility-item":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightLight,color:e.palette.text.secondary,display:"flex",justifyContent:"center",alignItems:"center",gap:e.spacing(.5)}},"& .SCEditEvenButton-root":{marginLeft:"auto",marginTop:e.spacing(-4.25),marginRight:e.spacing(1)},"& .SCEvenSubscribeButton-root":{marginTop:e.spacing(1)},"& .SCUser-root":{borderTop:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderBottom:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,marginTop:e.spacing(1),"& .SCBaseItemButton-content":{paddingLeft:e.spacing(1)},"& .SCBaseItemButton-actions":{maxWidth:"none",[e.breakpoints.up("sm")]:{width:t&&"60%"},"& .SCEventHeader-multi-actions":{display:"flex",justifyContent:"space-between",alignItems:"center","& .SCEventInviteButton-root":{marginRight:e.spacing(1)}}}},"& .SCUser-skeleton-root":{marginTop:e.spacing(2),"& .SCBaseItem-content":{paddingLeft:e.spacing(2)},"& .SCBaseItem-actions":{paddingRight:e.spacing(2)}}}}),skeletonRoot:({theme:e})=>({position:"relative","& .SCEventHeader-cover":{height:190},"& .SCEventHeader-avatar":{top:140,display:"block",position:"absolute",marginLeft:e.spacing(2),"& .MuiSkeleton-root":{border:"#FFF solid 5px"}},"& .SCEventHeader-info":{marginTop:60,marginLeft:e.spacing(2)}})}};t.default=n},911:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({gap:e.spacing(.5),"& .SCEventInfoDetails-icon-text-wrapper":{flexDirection:"row",alignItems:"center",gap:e.spacing(.75),"& > p":{textTransform:"capitalize"},"& .SCEventInfoDetails-link":{textDecoration:"none",color:e.palette.text.primary,"&:hover":{textDecoration:"underlined"},"& .SCEventInfoDetails-url":{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box","-webkit-line-clamp":"1","-webkit-box-orient":"vertical"}},"& .SCEventInfoDetails-in-progress":{width:"6px",height:"6px",borderRadius:"9999px",backgroundColor:e.palette.secondary.main}},"& .SCEventInfoDetails-creation-wrapper":{flexDirection:"row",alignItems:"center",gap:e.spacing(1)}})}}},957:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEventInfoWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 13px !important`,"& .SCEventInfoWidget-title-wrapper":{flexDirection:"row",alignItems:"center",gap:"9px",marginBottom:e.spacing(1)},"& .SCEventInfoWidget-text-wrapper":{marginBottom:e.spacing(3),"& .SCEventInfoWidget-show-more":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightBold,padding:e.spacing(.25),justifyContent:"start","&:hover":{backgroundColor:"transparent"}}}}}),skeletonRoot:({theme:e})=>({"& .SCEventInfoWidget-skeleton-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 13px !important`}})}}},8586:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}}),dialogRoot:({theme:e})=>({"& .SCBaseDialog-title-root span ":{width:"100%",display:"flex",alignItems:"center",justifyContent:"space-between","& .SCEventInviteButton-dialog-title":{fontWeight:e.typography.fontWeightBold,fontSize:e.typography.h4.fontSize}},"& .SCEventInviteButton-input":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.selectedOpacity),borderRadius:e.shape.borderRadius,height:e.spacing(3.75),padding:e.spacing(.5,1),"& .SCEventInviteButton-icon ":{marginLeft:e.spacing(1)},"&.Mui-focused .MuiOutlinedInput-notchedOutline":{border:"1px solid"}},"& .SCEventInviteButton-invited-box":{marginTop:e.spacing(2),marginBottom:e.spacing(3),"& .MuiChip-root":{marginBottom:e.spacing(1)}},"& .SCEventInviteButton-suggested":{"& h4":{marginBottom:e.spacing(1)},"& .SCUser-root":{"&:hover":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}}}})}};t.default=n},797:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title":{fontWeight:e.typography.fontWeightBold},"& .SCEventLocationWidget-map":{marginBottom:e.spacing(1),minHeight:248,width:"100%"}}),skeletonRoot:({theme:e})=>({"& .SCEventLocationWidget-skeleton-map":{margin:e.spacing(1,0,1,0),minHeight:248,width:"100%"}})}}},3086:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,showPadding:t})=>({"& .SCEventMediaWidget-header":{padding:t?e.spacing("10px",2):e.spacing(2)},"& .SCEventMediaWidget-content":{padding:e.spacing(2),"& .SCEventMediaWidget-grid":{display:"grid",gap:"5px",gridTemplateColumns:"repeat(3, 1fr)","& > .SCEventMediaWidget-media":{position:"relative",width:"100%",paddingBottom:"100%",backgroundSize:"cover",cursor:"pointer","& > .SCEventMediaWidget-media-layer":{position:"absolute",inset:0,backgroundColor:"rgba(102, 102, 102, 0.2)",opacity:.8},"& > .SCEventMediaWidget-count-hidden-media-wrapper":{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)",color:e.palette.common.white,"& > .SCEventMediaWidget-count-hidden-media":{fontSize:"200%"}}}}},"& .SCEventMediaWidget-actions":{padding:e.spacing(0,2,"10px"),justifyContent:"center"}}),skeletonRoot:({})=>({"& .SCEventMediaWidget-grid":{display:"grid",gap:"5px",gridTemplateColumns:"repeat(3, 1fr)","& > .SCEventMediaWidget-media":{paddingBottom:"100%"}}}),dialogRoot:({theme:e})=>({"& .SCEventMediaWidget-grid":{display:"grid",gap:"5px",gridTemplateColumns:"repeat(3, 1fr)","& > .SCEventMediaWidget-media":{paddingBottom:"100%"},"& > .SCEventMediaWidget-dialog-media-wrapper":{position:"relative",width:"100%",paddingBottom:"100%",backgroundSize:"cover","& > .SCEventMediaWidget-dialog-button-wrapper":{position:"absolute",top:0,width:"100%",height:"30px",backgroundColor:e.palette.common.black,opacity:.6,flexDirection:"row",justifyContent:"flex-end",alignItems:"center","& > .SCEventMediaWidget-dialog-loading-button":{padding:0,minWidth:"50px","& > .MuiLoadingButton-loadingIndicatorCenter":{color:e.palette.common.white}}}}}}),triggerRoot:({isSquare:e})=>({padding:e&&0,borderRadius:e&&0,backgroundColor:e&&"rgba(112, 112, 112, 0.04)","&:hover":{backgroundColor:e&&"rgba(0, 0, 0, 0.04)"},"& > .SCEventMediaWidget-trigger-content":{position:e&&"relative",width:e&&"100%",padding:e&&"10px 60px",paddingBottom:e&&"100%",flexDirection:"row",gap:"5px",alignItems:"center",justifyContent:e?"center":"flex-end","& > .SCEventMediaWidget-trigger-icon":{position:e&&"absolute",top:e&&"50%",transform:e&&"translateY(-50%)",fontSize:"inherit"}}})}}},6166:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEventMembersWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)}}`,"& .SCEventMembersWidget-title":{marginBottom:"18px"},"& .SCEventMembersWidget-tabs-wrapper":{borderBottom:`1px solid ${e.palette.grey[300]}`,"& .SCEventMembersWidget-tab-label-wrapper":{gap:"2px",alignItems:"center"}},"& .SCEventMembersWidget-tab-panel":{padding:`${e.spacing(4)} 0 0`},"& .SCEventMembersWidget-action-button":{left:"50%",transform:"translate(-50%)",color:e.palette.primary.main},"& .SCEventMembersWidget-event-button":{left:"50%",transform:"translate(-50%)"}}}),skeletonRoot:({theme:e})=>({"& .SCEventMembersWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)}`,"& .SCEventMembersWidget-title":{marginBottom:"18px"},"& .SCEventMembersWidget-tabs-wrapper":{borderBottom:`1px solid ${e.palette.grey[300]}`,"& .SCEventMembersWidget-tab-label-wrapper":{gap:"2px",alignItems:"center"}},"& .SCEventMembersWidget-tab-panel":{padding:`${e.spacing(4)} 0 0`},"& .SCEventMembersWidget-action-button":{left:"50%",transform:"translate(-50%)"}}}),dialogRoot:({theme:e})=>({"& .SCEventMembersWidget-infinite-scroll":{height:"400px",[e.breakpoints.down("md")]:{height:"100%"}}})}}},7948:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,followers:t})=>({gap:e.spacing(1),marginTop:"0 !important",minWidth:"auto","&:hover":{backgroundColor:"unset"},"& .MuiAvatarGroup-root":{"&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root":{"&.MuiAvatar-colorDefault":{marginLeft:0,backgroundColor:"transparent",color:e.palette.primary.main,border:"0 none",borderRadius:0,padding:1}},"& .MuiAvatar-root":{height:e.selfcommunity.user.avatar.sizeSmall,border:`1px solid ${e.palette.common.white}`,fontSize:"0.7rem","&:first-of-type":{width:t>3?"auto":e.selfcommunity.user.avatar.sizeSmall},"&:not(:first-of-type)":{width:e.selfcommunity.user.avatar.sizeSmall}}},"& .SCEventParticipantsButton-participants":{color:e.palette.grey[600]}}),dialogRoot:({theme:e})=>({"& .SCEventParticipantsButton-infinite-scroll":{height:"400px !important",[e.breakpoints.down("md")]:{height:"100%"}}})}}},3868:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{selectRoot:({theme:e})=>({backgroundColor:e.palette.grey.A200,justifyContent:"space-between",height:33,borderRadius:"5px",[e.breakpoints.down("md")]:{padding:"10px"},"&:hover, &:active":{backgroundColor:e.palette.common.black,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white}},"&.SCEventSubscribeButton-going":{backgroundColor:`${e.palette.success.dark} !important`,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white},"&:hover":{backgroundColor:e.palette.success.dark,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white}}},"&.SCEventSubscribeButton-not-going":{backgroundColor:e.palette.error.dark,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white},"&:hover":{backgroundColor:e.palette.error.dark,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white}}}}),requestRoot:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .MuiPaper-root":{width:195,borderRadius:"5px","& .MuiList-root .SCEventSubscribeButton-item":{paddingTop:0,paddingBottom:0,"&.Mui-disabled":{paddingTop:e.spacing(1),paddingBottom:e.spacing(1)},"& .Mui-checked .MuiSvgIcon-root":{color:e.palette.success.main},"& > .MuiFormControlLabel-root":{width:"100%",marginLeft:0,justifyContent:"space-between"}}}}),drawerRoot:({theme:e})=>({"& .MuiPaper-root":{"& .SCEventSubscribeButton-item":{paddingTop:0,paddingBottom:0,"& .Mui-checked .MuiSvgIcon-root":{color:e.palette.success.main},"& > .MuiFormControlLabel-root":{width:"100%",marginLeft:0,justifyContent:"space-between"}}}})}}},2595:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEvents-filters":{alignItems:"center",marginTop:e.spacing(),marginBottom:e.spacing(2),"& .SCEvents-search":{"& .MuiInputBase-root":{paddingRight:0,"& .MuiButtonBase-root":{borderRadius:"0 5px 5px 0",height:"37px","& .MuiButton-endIcon":{margin:0}}}}},"& .SCEvents-events":{marginTop:e.spacing(2),"& .SCEvents-item":{paddingTop:e.spacing(2)},"& .SCEvents-item-skeleton":{paddingTop:e.spacing(2)},"& .SCBaseItem-root":{display:"flex",justifyContent:"space-between"},"& .SCEvent-skeleton-preview-name":{marginTop:6,marginBottom:6},"& .SCEvent-skeleton-snippet .SCBaseItem-content":{maxWidth:"70%"}},"& .SCEvents-no-results":{marginTop:e.spacing(3),display:"flex",flexDirection:"column",alignItems:"flex-start","& .SCEvent-skeleton-root":{marginBottom:e.spacing(2),minWidth:"50%"},"& .SCEvent-skeleton-snippet .SCBaseItem-content":{maxWidth:"70%"},"& .MuiTypography-body1":{fontWeight:e.typography.fontWeightMedium,fontSize:"16px",whiteSpace:"pre-line"}},"& .SCEvents-show-more":{paddingLeft:e.spacing(1),"&.Mui-selected, &:hover":{backgroundColor:"transparent"}}}),skeletonRoot:({theme:e})=>({"& .SCEvents-skeleton-events":{justifyContent:"center",marginTop:e.spacing(2),"& .SCEvents-skeleton-item":{paddingTop:e.spacing(2)}}}),eventsChipRoot:({theme:e,showFollowed:t,showPastEvents:o})=>({height:e.spacing(4.75),borderRadius:e.spacing(.5),color:t||o?e.palette.common.white:e.palette.text.primary,"& .MuiIcon-root":{fontSize:"1rem",color:e.palette.common.white}})}}},6191:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},7553:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({maxWidth:e.breakpoints.values.lg,"& .SCFeed-left":{padding:0,[e.breakpoints.up("sm")]:{padding:e.spacing(1.25)},"& > div:first-of-type":{marginTop:0},"& > .SCWidget-root, & > .SCCustomAdv-root":{maxWidth:850,marginLeft:"auto",marginRight:"auto"}},"& .SCFeed-left-items":{"& > div":{paddingBottom:e.spacing(2)}},"& .SCFeed-right":{padding:e.spacing(1.25,0),"& > .SCWidget-root":{marginBottom:e.spacing(3)}},"& .SCFeed-start":{"& > .SCWidget-root":{padding:0,marginBottom:e.spacing(2)},"& .SCFeed-header-item":{animation:"pulse-animation 2s ease-in-out","@keyframes pulse-animation":{"0%":{opacity:0}}}},"& .SCFeed-end":{"& > .SCWidget-root":{padding:0,marginBottom:e.spacing(2)}},"& .SCFeed-end-message":{textAlign:"center","& > div":{padding:e.spacing(2)}},"& .SCFeed-refresh":{},"& .SCFeed-pagination-link":{display:"none"}}),skeletonRoot:({theme:e})=>({maxWidth:e.breakpoints.values.lg,"& .SCFeed-left":{padding:0,[e.breakpoints.up("sm")]:{padding:e.spacing(1.25)},"&:last-child":{paddingBottom:e.spacing(4)},"& > .SCWidget-root":{marginBottom:e.spacing(2)}},"& .SCFeed-right":{padding:e.spacing(1.25,0),"& .SCWidget-root":{marginBottom:e.spacing(3)}}})}}},8050:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({width:"100%","& .SCFeedObject-title-section":{"& a":{textDecoration:"none"},"& a:hover":{textDecoration:"underline"}},"& .SCFeedObject-username":{textDecoration:"none",color:e.palette.text.primary},"& .SCFeedObject-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCFeedObject-header":{paddingTop:e.spacing(1),paddingBottom:0,"& .MuiCardHeader-subheader":{display:"flex",alignItems:"center"}},"& .SCFeedObject-category":{color:e.palette.primary.main,textAlign:"center",borderBottom:"1px solid rgba(0, 0, 0, 0.12)",maxHeight:30,display:"flex",flexDirection:"row",overflowY:"hidden",overflowX:"auto",justifyContent:"center",MsOverflowStyle:"none",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},"& a:not(.MuiChip-clickable)":{color:"inherit",textDecoration:"none","&::after":{content:'"\\2022"',padding:e.spacing()},"&:last-child::after":{display:"none"},"&:hover":{color:e.palette.secondary.main},"& span":{textTransform:"initial",fontWeight:e.typography.fontWeightBold}},"& .SCFeedObject-group, & .SCFeedObject-event":{marginRight:`${e.spacing(1)} !important`}},"& .SCFeedObject-group, & .SCFeedObject-event":{justifyContent:"flex-start",padding:e.spacing(.5),"& a":{padding:e.spacing(.5),marginBottom:e.spacing(.5),color:e.palette.common.white,"&:hover":{backgroundColor:e.palette.common.black},"& span":{color:e.palette.common.white,textTransform:"initial"}}},"& .SCFeedObject-content":{padding:e.spacing(1,0,0,0),"&.SCFeedObject-error":{padding:e.spacing(2),textAlign:"center"}},"& .SCFeedObject-snippet":{"& > div":{alignItems:"flex-start"},"& .SCBaseItem-text":{marginTop:0}},"& .SCFeedObject-snippet-content a":{textDecoration:"none",color:e.palette.text.secondary},"& .SCFeedObject-tag":{display:"inline-flex"},"& .SCFeedObject-location":{display:"inline-flex"},"& .SCFeedObject-actions-section":{padding:0,display:"flex",flexDirection:"column"},"& .SCFeedObject-reply-content":{width:"100%",boxSizing:"border-box",margin:0,padding:e.spacing(.2,2)},"& .SCFeedObject-info-section":{padding:e.spacing(0,2)},"& .SCFeedObject-activity-at":{textDecoration:"none",color:"inherit",marginTop:0},"& .SCFeedObject-deleted":{opacity:.3,"&:hover":{opacity:1}},"&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search, &.SCFeedObject-share":{border:"0 none",boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",borderRadius:0,[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"& .SCFeedObject-category":{borderBottom:"1px solid rgba(221, 221, 221, 1)",margin:e.spacing(0,2),"& .SCFeedObject-group, & .SCFeedObject-event":{borderBottom:"none",margin:e.spacing(0),"& .MuiChip-icon":{marginLeft:e.spacing(1),marginRight:e.spacing(-1),fontWeight:e.typography.fontWeightRegular}}},"& .SCFeedObject-group, & .SCFeedObject-event":{borderBottom:"1px solid rgba(221, 221, 221, 1)",margin:e.spacing(1,2,0,2)},"& .SCFeedObject-header":{"& .MuiCardHeader-avatar":{marginRight:e.spacing(1.5),".MuiBadge-badge":{right:e.spacing(.25)}},"& .SCFeedObject-username":{fontWeight:e.typography.fontWeightBold},"& .MuiCardHeader-subheader":{fontSize:"0.857rem",color:e.palette.primary.main,"& .SCFeedObject-activity-at":{display:"inline-flex","&:hover":{color:"inherit",textDecoration:"underline"}},"& .SCFeedObject-tag, & .SCFeedObject-location":{"& .MuiIcon-root":{fontSize:"1rem",color:"inherit"}}}},"& .SCFeedObject-content":{"& .SCFeedObject-title-section":{"& .SCFeedObject-title":{fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(1),padding:e.spacing(0,2)},"& a":{color:"inherit"}},"& .SCFeedObject-text-section":{overflowWrap:"anywhere","& > :first-of-type":{marginBottom:0,padding:e.spacing(0,2,.5),display:"block"},"& hr":{margin:"1em 0"},"& a":{color:e.palette.text.secondary,textDecoration:"underline","&:hover":{textDecoration:"none",cursor:"pointer"}},"& img":{maxWidth:"100%"},"& blockquote":{margin:0,marginLeft:e.spacing(2),marginBottom:e.spacing(1),color:e.palette.text.secondary,borderLeftColor:e.palette.primary.main,borderLeftWidth:e.spacing(.25),borderLeftStyle:"solid",paddingLeft:e.spacing(2)},"& h1":{fontSize:"1.429rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,1,0)},"& h2":{fontSize:"1.143rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.8,0)},"& h3":{fontSize:"1rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.5,0)},"& p":{margin:0},"& b":{fontWeight:"bold"},"& i":{fontStyle:"italic"},"& u":{textDecoration:"underline"},"& s":{textDecoration:"line-through"},"& sub":{fontSize:"0.8em",verticalAlign:"sub !important"},"& sup":{fontSize:"0.8em",verticalAlign:"super"},"& ol":{padding:0,margin:0},"& ol ol":{padding:0,margin:0,listStyleType:"upper-alpha"},"& ol ol ol":{padding:0,margin:0,listStyleType:"lower-alpha"},"& ol ol ol ol":{padding:0,margin:0,listStyleType:"upper-roman"},"& ol ol ol ol ol":{padding:0,margin:0,listStyleType:"lower-roman"},"& ul":{padding:0,margin:0},"& li":{margin:"0 32px"},"& span span":{display:"inline-block",width:"100%"}},"& .SCFeedObject-medias-section":{"& .SCFeedObjectMediaPreview-root":{margin:e.spacing(0,1)}},"& .SCFeedObject-show-more":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightBold,padding:e.spacing(.25),justifyContent:"start","&:hover":{backgroundColor:"transparent"}}},"& .SCFeedObject-actions-section":{"&:last-of-type":{marginBottom:0},"& .SCFeedObject-actions-root":{margin:0,padding:e.spacing(.2,2,0,2),"& .SCFeedObject-actions-action":{marginTop:0,"& .SCFeedObject-action-vote-view-audience-button, & .SCFeedObject-action-comment-view-audience-button, & .SCFeedObject-action-share-view-audience-button, & .SCReactionAction-view-audience-button":{fontSize:"0.857rem",fontWeight:e.typography.fontWeightRegular,marginTop:e.spacing(0),marginBottom:0,color:e.palette.primary.main,"&:hover":{color:"inherit"}},"& .MuiDivider-root":{borderColor:e.palette.grey[300]},"& .SCFeedObject-action-vote-button, & .SCFeedObject-action-comment-button, & .SCFeedObject-action-share-button, & .SCReactionAction-button":{color:e.palette.primary.main,marginTop:e.spacing(-.5),marginBottom:e.spacing(.5),borderRadius:"50%",padding:e.spacing(1),minWidth:0,"& .MuiIcon-root":{fontSize:"1.57rem"},"& > img":{width:"1.57rem",height:"1.57rem"}}}},"& .SCFeedObject-reply-content":{marginLeft:0,background:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity),"& .SCCommentObjectReply-root":{background:"transparent",marginBottom:0,"& .SCCommentObjectReply-comment":{background:"transparent",border:"0 none","& .SCEditor-root":{"& .SCEditor-placeholder":{fontWeight:e.typography.fontWeightMedium},"& .SCEditor-content":{paddingBottom:0,minHeight:0},"& .SCEditor-actions":{bottom:0}},"&.SCCommentObjectReply-has-value .SCEditor-root .SCEditor-actions":{bottom:e.spacing(-4)}}}}},"& .SCFeedObject-activities-section":{"& .SCFeedObject-activities-content":{paddingTop:0,paddingBottom:0,"& .SCFeedObject-activities-menu-selector":{"& .MuiButton-root":{marginTop:e.spacing(.2),fontSize:"0.857rem",fontWeight:e.typography.fontWeightRegular,padding:e.spacing(1)}},"& .SCCommentObject-root":{marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0}},"& .SCCommentObject-skeleton-root":{background:"transparent",marginTop:5,marginBottom:"7px !important","& .SCBaseItem-text":{"& .SCWidget-root":{"& .MuiCardContent-root":{padding:e.spacing()}}}},"& .SCCommentObjectReply-root":{"& .SCCommentObjectReply-comment":{marginBottom:"0 !important",border:`1px solid ${e.palette.grey[300]}`,"& .SCEditor-root":{minHeight:e.spacing(4),marginTop:0,"& .SCEditor-content":{minHeight:0},"& .SCEditor-actions":{bottom:e.spacing(-4)}}}}}},"&.SCFeedObject-snippet":{"& .SCFeedObject-username":{fontSize:"1rem",fontWeight:e.typography.fontWeightBold,display:"block",marginBottom:e.spacing(1)},"& .SCFeedObject-snippet-content":{fontSize:"1rem",marginBottom:e.spacing(1)},"& .SCFeedObject-activity-at":{display:"inline-flex","&:hover":{color:"inherit",textDecoration:"underline"}}},"&.SCFeedObject-detail .SCFeedObject-reply-content":{borderBottom:"0 none"},"&.SCFeedObject-share":{boxShadow:"none",border:"1px solid rgba(0, 0, 0, 0.12)"}}),skeletonRoot:({theme:e})=>({"&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search":{border:"0 none",boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",borderRadius:0,[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius}},"& .SCFeedObject-media":{height:250,marginBottom:20},"& .SCFeedObject-snippet > *":{paddingLeft:0,paddingRight:0}}),actionsRoot:({theme:e})=>({margin:"0px 0px",color:"#3A3A3A","& .SCFeedObject-actions-action":{textAlign:"center"}}),actionCommentRoot:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column","&.SCFeedObject-action-share-inline":{flexDirection:"row-reverse"},"& .SCFeedObject-action-vote-divider":{width:"100%",borderBottom:0}}),actionFollowRoot:({theme:e})=>({"& .SCFeedObject-action-follow-button":{color:e.palette.primary.main,"&.SCFeedObject-action-follow-iconized":{borderRadius:"50%",padding:e.spacing(1),minWidth:"auto",fontSize:"1.429rem"},"&.SCFeedObject-action-follow-followed":{color:e.palette.secondary.main}}}),actionShareRoot:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column","&.SCFeedObject-action-share-inline":{flexDirection:"row-reverse"},"& .SCFeedObject-action-vote-divider":{width:"100%",borderBottom:0},"& .SCFeedObject-action-share-view-audience-button":{whiteSpace:"nowrap"}}),actionVoteRoot:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column","&.SCFeedObject-action-vote-inline":{flexDirection:"row-reverse"},"& .SCFeedObject-action-vote-divider":{width:"100%",borderBottom:0}}),activitiesRoot:({theme:e})=>({width:"100%"}),activitiesMenuRoot:({theme:e})=>({"& .SCFeedObject-activities-menu-selector":{display:"flex",alignItems:"center",textAlign:"center",justifyContent:"flex-end"},"& .SCFeedObject-activities-menu-selector .MuiButton-root":{textTransform:"capitalize",fontWeight:e.typography.fontWeightBold}}),contributorsRoot:({theme:e})=>({"& .SCFeedObject-contributors-btn-participants":{padding:e.spacing(.5),marginLeft:e.spacing(-.5),color:"inherit",fontWeight:e.typography.fontWeightLight,fontSize:"0.875rem"},minHeight:28,marginTop:0,marginBottom:0,"& .MuiAvatarGroup-root":{justifyContent:"flex-end"},"& .MuiAvatar-root":{backgroundColor:"#d5d5d5",border:"2px solid #FFF !important",color:"#FFF",fontSize:"0.55rem",width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall,marginLeft:e.spacing(-1),lineHeight:"24px"}}),contributorsSkeletonRoot:({theme:e})=>({}),pollObjectRoot:({theme:e})=>({marginTop:e.spacing(1),marginBottom:e.spacing(1),borderTop:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderBottom:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,boxShadow:"none",borderRadius:0,"& .MuiButton-root":{"&:focus:not(:focus-visible)":{borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}},"& .MuiCardHeader-root":{textAlign:"center",padding:e.spacing(2),"& .SCFeedObject-poll-object-toggle-button":{fontSize:"0.875rem",textTransform:"uppercase","& .MuiButton-endIcon":{display:"none"},"& .SCFeedObject-poll-object-expand-icon":{marginBottom:2,marginLeft:-2,transition:e.transitions.create("transform",{duration:e.transitions.duration.shortest})},"& .SCFeedObject-poll-object-collapsed-icon":{transform:"rotate(180deg)"}}},"& .SCFeedObject-poll-object-title":{textAlign:"center",color:e.palette.text.primary,marginBottom:e.spacing(1),fontWeight:e.typography.fontWeightBold,wordWrap:"break-word"},"& .SCFeedObject-poll-object-voters, & .SCFeedObject-poll-object-votes":{display:"flex",margin:e.spacing(1),alignItems:"center",justifyContent:"center","& .MuiIcon-root":{width:"1em",marginRight:e.spacing(1)}},"& .SCFeedObject-poll-object-expiration, & .SCFeedObject-poll-object-close, & .SCFeedObject-poll-object-voters":{textAlign:"center",color:e.palette.text.secondary,marginBottom:e.spacing(2.5),fontWeight:e.typography.fontWeightLight,fontSize:"0.765rem"},"& .SCFeedObject-poll-object-voters .MuiTypography-root":{fontWeight:e.typography.fontWeightLight,fontSize:"1rem"},"& ul":{padding:e.spacing(2.5),marginBottom:e.spacing(2.5),backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),borderRadius:e.shape.borderRadius,"& li":{padding:0}}}),pollObjectChoicesRoot:({theme:e})=>({backgroundColor:"transparent",marginBottom:e.spacing(3),padding:0,width:"100%",borderRadius:0,"& .SCFeedObject-poll-object-choices-label, & .SCFeedObject-poll-object-choices-vote":{marginBottom:0,fontWeight:e.typography.fontWeightBold},"& .SCFeedObject-poll-object-choices-progress":{display:"flex",flexDirection:"row",alignItems:"center",marginBottom:0,"& .MuiLinearProgress-root":{height:10,borderRadius:e.shape.borderRadius,flexGrow:2,marginRight:e.spacing(2),backgroundColor:e.palette.common.white},"& > .MuiTypography-root":{fontSize:"0.987rem",fontWeight:e.typography.fontWeightLight}}}),relevantActivitiesRoot:({theme:e})=>({"& .SCFeedObject-relevant-activities-activity":{"& > .SCBaseItem-root":{borderRadius:0,marginBottom:e.spacing(2),"& .SCBaseItem-content":{alignItems:"flex-start","& .SCBaseItem-text":{margin:0,"& .SCBaseItem-primary":{display:"inline-block",marginBottom:e.spacing(.5),"& a:nth-of-type(1)":{fontWeight:e.typography.fontWeightBold,textDecoration:"none"},"& a":{color:e.palette.text.secondary,textDecoration:"underlined","&:hover":{textDecoration:"none"}}},"& .SCBaseItem-secondary":{fontSize:"0.857rem"}}}},"& .SCFeedObject-activity-comment-username, & .SCFeedObject-activity-follow-username, & .SCFeedObject-activity-poll-vote-username, & .SCFeedObject-activity-vote-up-username":{color:"inherit"},"& .SCFeedObject-activity-comment-avatar, & .SCFeedObject-activity-follow-avatar, & .SCFeedObject-activity-poll-vote-avatar, & .SCFeedObject-activity-vote-up-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}),activityCommentRoot:({theme:e})=>({}),activityFollowRoot:({theme:e})=>({}),activityPollVoteRoot:({theme:e})=>({}),activityVoteUpRoot:({theme:e})=>({})}};t.default=n},4060:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCCommentsFeedObject-root":{padding:e.spacing(2,1),"& .SCCommentsObject-root h6":{paddingLeft:e.spacing(2)}},"& .SCFeedObject-detail":{"& .SCFeedObject-content":{"& .SCFeedObject-text-section .SCFeedObject-text":{"& span":{display:"inline-block",width:"100%"}}}}}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2),"& .SCCommentsObject-skeleton-root":{"& .SCWidget-root":{marginBottom:"0px !important"}},"& .SCCommentObject-skeleton-root":{background:"transparent",boxShadow:"none",border:0,paddingLeft:"0px !important","& .SCCommentObject-skeleton-root":{marginBottom:"0px !important"}}})}}},2319:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},1634:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({textAlign:"center",marginBottom:e.spacing(2),"& div:last-child":{paddingBottom:e.spacing(2)},"& .MuiCardContent-root":{" > .MuiButton-sizeMedium":{marginLeft:-3,marginTop:-1}},"& .SCFeedUpdatesWidget-button-load-more":{textTransform:"capitalize"}}),skeletonRoot:({theme:e})=>({})}}},2e3:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCFooter-copyright":{marginTop:e.spacing(3),fontSize:"0.857rem"},"& .SCFooter-item-list":{display:"flex",justifyContent:"center",flexDirection:"row","& .SCFooter-item":{padding:e.spacing(.5,1),color:e.palette.text.primary}}}),skeletonRoot:({theme:e})=>({})}}},6886:(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.borderRadiusSm},"& .SCBaseItemButton-image":{marginRight:e.spacing(1.25),"& .MuiAvatar-root":{width:e.selfcommunity.group.avatar.sizeSmall,height:e.selfcommunity.group.avatar.sizeSmall,"& img":{borderRadius:0}}},"& .SCBaseItemButton-primary":{display:"flex",alignItems:"center",fontWeight:e.typography.fontWeightBold,"& .SCGroup-icon":{marginLeft:e.spacing(.5)}},"& .SCBaseItemButton-secondary":{fontSize:"0.857rem"},"& .SCGroup-actions":{"& .MuiIcon-root":{fontSize:"1.286rem",color:e.palette.primary.main},"& .MuiButtonBase-root":{marginLeft:e.spacing(1)}}}),skeletonRoot:({theme:e})=>({})}}},8775:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .MuiDivider-root":{margin:e.spacing(1)},"& .MuiIcon-root":{fontSize:"15px"}}),drawerRoot:({theme:e})=>({"& .SCGroupActionsMenu-item":{paddingTop:0,paddingBottom:0},"& .MuiDivider-root":{margin:e.spacing(2)},"& .MuiIcon-root":{fontSize:"15px"}})}}},9819:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},9697:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& .SCGroupInfoWidget-root":{padding:e.spacing(1)}}),skeletonRoot:({theme:e})=>({marginTop:0,[e.breakpoints.up("md")]:{marginTop:30}})}}},2579:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCGroupForm-cover":{position:"relative",height:120,minHeight:120,"& .SCGroupForm-avatar":{top:120,display:"block",position:"absolute",transform:"translate(-50%, -50%)",left:"50%","& .MuiAvatar-root":{height:e.selfcommunity.group.avatar.sizeMedium,width:e.selfcommunity.group.avatar.sizeMedium,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover","& img":{height:e.selfcommunity.group.avatar.sizeMedium,width:e.selfcommunity.group.avatar.sizeMedium}}},"& .SCChangeGroupPictureButton-root":{top:120,left:"50%",transform:"translate(90%, -50%)",position:"relative",display:"flex"},"& .SCChangeGroupCoverButton-root":{position:"absolute",right:e.spacing(2),bottom:e.spacing(2)}},"& .SCGroupForm-header":{marginTop:e.spacing(4.5),color:e.palette.text.secondary},"& .SCGroupForm-error":{color:e.palette.error.main},"& .SCGroupForm-switch":{"& .MuiButtonBase-root":{"&.Mui-checked":{color:e.palette.secondary.main,"& + .MuiSwitch-track":{backgroundColor:e.palette.secondary.main}}}},"& .SCGroupForm-switch-label":{fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",justifyContent:"center",gap:e.spacing(.5)},"& .SCGroupForm-active":{color:e.palette.secondary.main},"& .SCGroupForm-privacy-section":{marginTop:e.spacing(2),"& .SCGroupForm-privacy-section-info":{marginBottom:e.spacing(2)}},"& .SCGroupForm-visibility-section-info":{marginTop:e.spacing(1)},"& .MuiDivider-root":{marginTop:e.spacing(2),border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`},"& .SCGroupForm-invite-section":{marginTop:e.spacing(2),display:"flex",justifyContent:"center",alignItems:"center"}})}};t.default=n},4290:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroupHeader-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)}},"& .SCGroupHeader-info":{marginTop:e.spacing(6.5),display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center","& .SCGroupHeader-members":{marginBottom:`${e.spacing(0)} !important`,"& .SCGroupHeader-members-counter":{fontSize:"1rem",fontWeight:e.typography.fontWeightRegular,display:"inline"}},"& .SCGroupHeader-visibility":{display:"flex",justifyContent:"center",alignItems:"center",gap:e.spacing(1),"& .SCGroupHeader-visibility-item":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightLight,display:"flex",justifyContent:"center",alignItems:"center",gap:e.spacing(.5)}},"& .SCGroupHeader-multi-actions":{display:"flex",marginLeft:"auto",marginTop:e.spacing(-4.25),"& .SCEditGroupButton-root":{marginRight:e.spacing(1)}},"& .SCGroupSubscribeButton-root":{marginTop:e.spacing(1)}},"& .SCGroupHeader-avatar":{top:230,display:"block",position:"absolute",transform:"translate(-50%, -50%)",left:"50%","& .MuiAvatar-root":{height:e.selfcommunity.group.avatar.sizeLarge,width:e.selfcommunity.group.avatar.sizeLarge,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover"}},"& .SCGroupHeader-change-picture":{top:230,left:"50%",transform:"translate(90%, -50%)",position:"relative",display:"flex"},"& .SCGroupHeader-name":{marginBottom:e.spacing(1),fontWeight:e.typography.fontWeightBold,fontSize:"1.429rem",textAlign:"center"},"& .SCGroupHeader-change-cover":{position:"absolute",right:e.spacing(2),bottom:e.spacing(2)}}),skeletonRoot:({theme:e})=>({position:"relative","& .SCGroupHeader-cover":{[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)},height:230},"& .SCGroupHeader-avatar":{top:230,display:"block",position:"absolute",transform:"translate(-50%, -50%)",left:"50%","& .MuiSkeleton-root":{border:"#FFF solid 5px"}},"& .SCGroupHeader-info":{display:"flex",justifyContent:"center",flexDirection:"column",alignItems:"center",marginTop:60}})}}},1064:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroupInfoWidget-title":{fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(1)},"& .SCGroupInfoWidget-description":{marginBottom:e.spacing(1)},"& .SCGroupInfoWidget-privacy":{marginBottom:e.spacing(1),"& .SCGroupInfoWidget-privacy-title":{color:e.palette.secondary.main,fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",gap:e.spacing(.5)}},"& .SCGroupInfoWidget-visibility-title":{color:e.palette.secondary.main,fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",gap:e.spacing(.5)},"& .SCGroupInfoWidget-date":{paddingTop:`${e.spacing(1)} !important`},"& .SCGroupInfoWidget-admin":{marginTop:e.spacing(1)}}),skeletonRoot:({theme:e})=>({})}}},4331:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}}),dialogRoot:({theme:e})=>({"& .SCBaseDialog-title-root span ":{width:"100%",display:"flex",alignItems:"center",justifyContent:"space-between","& .SCGroupInviteButton-dialog-title":{fontWeight:e.typography.fontWeightBold,fontSize:e.typography.h4.fontSize}},"& .SCGroupInviteButton-input":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.selectedOpacity),borderRadius:e.shape.borderRadius,height:e.spacing(3.75),padding:e.spacing(.5,1),"& .SCGroupInviteButton-icon ":{marginLeft:e.spacing(1)},"&.Mui-focused .MuiOutlinedInput-notchedOutline":{border:"1px solid"}},"& .SCGroupInviteButton-invited-box":{marginTop:e.spacing(2),marginBottom:e.spacing(3),"& .MuiChip-root":{marginBottom:e.spacing(1)}},"& .SCGroupInviteButton-suggested":{"& h4":{marginBottom:e.spacing(1)},"& .SCUser-root":{"&:hover":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}}}})}};t.default=n},8825:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},1920:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,subscribers:t})=>({padding:e.spacing(),"& .MuiAvatarGroup-root":{"&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root":{"&.MuiAvatar-colorDefault":{marginLeft:0,backgroundColor:"transparent",color:e.palette.primary.main,border:"0 none",borderRadius:0,padding:1}},"& .MuiAvatar-root":{height:e.selfcommunity.user.avatar.sizeSmall,border:`1px solid ${e.palette.common.white}`,fontSize:"0.7rem","&:first-of-type":{width:t>3?"auto":e.selfcommunity.user.avatar.sizeSmall},"&:not(:first-of-type)":{width:e.selfcommunity.user.avatar.sizeSmall}}}}),dialogRoot:()=>({})}}},9453:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroupMembersWidget-actions":{margin:e.spacing(0,0,2,1)}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},9353:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},2647:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .SCGroupSettingsIconButton-paper":{maxWidth:400,padding:e.spacing(1)}}),drawerRoot:({theme:e})=>({"& .MuiList-root":{"& a":{color:"inherit"}}})}}},4422:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& .SCCategoryTemplate-feed":{marginTop:e.spacing(2)},"& .SCGroupInfoWidget-root":{marginTop:e.spacing(2)}}),skeletonRoot:({theme:e})=>({marginTop:0,[e.breakpoints.up("md")]:{marginTop:30}})}}},7172:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroups-skeleton-root ":{"& .MuiGrid-item":{paddingTop:0}},"& .MuiGrid-container":{justifyContent:"center"},"& .SCGroups-filters":{marginTop:e.spacing(),marginBottom:e.spacing(2)},"& .SCGroups-groups":{marginTop:e.spacing(2),"& .SCGroups-item":{[e.breakpoints.up("md")]:{padding:e.spacing(2)},width:"auto","& > div":{cursor:"default",padding:e.spacing(1)}}},"& .SCGroups-no-results":{marginTop:e.spacing(3),display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center","& h4":{fontWeight:e.typography.fontWeightBold,fontSize:e.typography.h4.fontSize},"& .MuiTypography-body1":{fontWeight:e.typography.fontWeightMedium,fontSize:e.typography.body1.fontSize}},"& .SCGroups-end-message":{display:"flex",alignItems:"center",justifyContent:"center","& .MuiButtonBase-root":{paddingLeft:e.spacing(1),"&.Mui-selected, &:hover":{backgroundColor:"transparent"}}}}),skeletonRoot:({theme:e})=>({"& .SCGroups-groups":{justifyContent:"center",marginTop:e.spacing(3),"& .SCGroup-skeleton-root":{padding:e.spacing(1),width:"auto"}}})}}},7576:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%","& .MuiCardContent-root":{padding:e.spacing(1)},"& .SCIncubator-name":{display:"flex"},"& .SCIncubator-slogan":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"},"& .SCIncubator-progress-bar":{position:"relative",marginTop:e.spacing(1),"& .MuiLinearProgress-root":{height:e.spacing(3)},"& .MuiGrid-item":{paddingTop:e.spacing(0)}},"& .MuiCardActions-root":{marginLeft:e.spacing(1)}}),skeletonRoot:({theme:e})=>({width:"100%","& .MuiCardContent-root":{"& .SCIncubator-secondary":{marginTop:e.spacing(1)},"& .SCIncubator-progress-bar":{marginTop:e.spacing(1)}},"& .MuiCardActions-root":{marginLeft:e.spacing(2)}})}}},6096:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCIncubatorDetail-share-card":{margin:e.spacing()}})}}},5137:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)},"& .SCIncubatorListWidget-header":{display:"flex",alignItems:"center"},"& .SCIncubatorListWidget-actions":{display:"flex",justifyContent:"space-between"}}),dialogRoot:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),createDialogRoot:({theme:e})=>({margin:2,[e.breakpoints.down(500)]:{minWidth:300},"& .SCIncubatorListWidget-intro":{whiteSpace:"pre-line"},"& .SCIncubatorListWidget-form":{marginTop:e.spacing(1),marginBottom:e.spacing(1)},"& .SCIncubatorListWidget-name":{"& .MuiInputBase-root":{height:"40px"}},"& .SCIncubatorListWidget-submitted-message":{padding:e.spacing(1),borderRadius:"8px",backgroundColor:"#bdd5bd"}})}}},7972:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)}}),dialogRoot:({theme:e})=>({}),skeletonRoot:({theme:e})=>({})}}},9002:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginBottom:e.spacing(2),"& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child":{padding:e.spacing(.5,2),display:"flex",flexDirection:"row",justifyContent:"space-between",[e.breakpoints.up("sm")]:{padding:e.spacing(.5,1,.5,2)},"& .SCInlineComposerWidget-input":{display:"flex",flexGrow:2,"& .MuiButton-root":{fontWeight:e.typography.fontWeightMedium,letterSpacing:"0.17px",padding:e.spacing(.5,0),"&:hover":{color:e.palette.text.secondary,background:"white",border:"none"}},"& .MuiButton-text":{justifyContent:"flex-start",textTransform:"none"}},"& .SCInlineComposerWidget-avatar":{display:"flex",alignItems:"center",[e.breakpoints.up("sm")]:{marginLeft:e.spacing(2)},"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2),"& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child":{padding:e.spacing(.5,1),display:"flex",flexDirection:"row",justifyContent:"space-between",[e.breakpoints.up("sm")]:{padding:e.spacing(.5,1,.5,2)},"& .SCInlineComposerWidget-input":{display:"flex",flexGrow:2,height:30,width:"80%","& .MuiSkeleton-root":{width:"100%",height:"100%"}},"& .SCInlineComposerWidget-avatar":{display:"flex",alignItems:"center",[e.breakpoints.up("sm")]:{marginLeft:e.spacing(2)},"& .MuiSkeleton-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}})}}},9078:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCLanguageSwitcher-label":{fontWeight:e.typography.fontWeightBold},"& .MuiInputBase-root":{textTransform:"uppercase"},"& fieldset.MuiOutlinedInput-notchedOutline":{borderWidth:0}})}}},116:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(5435);let n,a,r,d=e=>e;var s={styleOverrides:{root:({theme:e})=>{const t=(0,i.keyframes)(n||(n=d`
|
|
2
|
+
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("@mui/material/styles"),require("@mui/material"),require("react"),require("@mui/material/colors"),require("@mui/system"),require("@emotion/react")):"function"==typeof define&&define.amd?define(["@mui/material/styles","@mui/material","react","@mui/material/colors","@mui/system","@emotion/react"],t):"object"==typeof exports?exports.SelfCommunityReactThemeDefault=t(require("@mui/material/styles"),require("@mui/material"),require("react"),require("@mui/material/colors"),require("@mui/system"),require("@emotion/react")):e.SelfCommunityReactThemeDefault=t(e["@mui/material/styles"],e["@mui/material"],e.react,e["@mui/material/colors"],e["@mui/system"],e["@emotion/react"])}(self,((e,t,o,i,n,a)=>(()=>{"use strict";var r={7751:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o,n,a;return{color:(0,i.getContrastRatio)(null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"#fff")>4.5?"#fff":e.palette.text.primary,backgroundColor:null==(n=e.palette)||null==(a=n.navbar)?void 0:a.main}}}};t.default=n},3154:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i,n=o(901),a=(i=o(8156))&&i.__esModule?i:{default:i},r={defaultProps:{clearIcon:a.default.createElement(n.Icon,null,"close"),popupIcon:a.default.createElement(n.Icon,null,"expand_more")}};t.default=r},9649:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({img:{borderRadius:"100%"}})}}},174:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={variants:[{props:{variant:"outlined"},style:{borderWidth:2,"&:hover, &:active":{borderWidth:2}}},{props:{variant:"contained"},style:{}},{props:{variant:"text"},style:{borderWidth:0}}],styleOverrides:{root:({theme:e})=>({textTransform:"initial",fontWeight:e.typography.fontWeightRegular,padding:".4em .6em",lineHeight:1.2,borderRadius:e.shape.borderRadius}),sizeSmall:{fontSize:"0.875rem",padding:"6px 16px"},sizeMedium:{fontSize:"0.975",padding:"10px 24px"},sizeLarge:{fontSize:"1.286rem",padding:"10px 60px"}}}},1420:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({maxWidth:e.breakpoints.values.lg,[e.breakpoints.down("md")]:{paddingLeft:0,paddingRight:0}})}}},616:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:{"& .MuiDialog-paperFullScreen":{display:"inline-flex",flexDirection:"column"},"& .MuiDialog-paperScrollBody":{overflowY:"hidden"}}}}},5434:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiDrawer-paperAnchorBottom":{borderTopLeftRadius:e.shape.borderRadius,borderTopRightRadius:e.shape.borderRadius,maxHeight:"75vh",paddingTop:e.shape.borderRadius,"&:before":{content:'""',border:`1px solid ${e.palette.primary.main}`,width:60,position:"absolute",top:e.shape.borderRadius/2,left:"calc(50% - 30px)"},"& > *":{paddingTop:0}}})}}},6682:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={defaultProps:{baseClassName:"community-icons",fontSize:"inherit"}}},8103:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{sizeSmall:{fontSize:"1rem"},sizeMedium:{fontSize:"1.429rem"},sizeLarge:{fontSize:"1.57rem"}}}},8647:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:{borderRadius:5}}}},9071:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{paper:({theme:e})=>({borderRadius:e.shape.borderRadius/2})}}},2436:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i,n=o(901),a=(i=o(8156))&&i.__esModule?i:{default:i},r={defaultProps:{IconComponent:({className:e})=>a.default.createElement(n.Icon,{className:e},"expand_more")}};t.default=r},5731:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={defaultProps:{enterDelay:500}}},824:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({"& .MuiAlert-message":{display:"flex",alignItems:"center"}})}}},2327:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiTypography-root":{marginBottom:e.spacing(2)},"& .SCAccountDataPortability-create-button":{marginRight:e.spacing(2),marginBottom:e.spacing()},"& .SCAccountDataPortability-download-button":{marginBottom:e.spacing()},"& .SCAccountDataPortability-generation-info":{fontWeight:e.typography.fontWeightBold}})}}},1512:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiTypography-root":{marginBottom:e.spacing(2)},"& .SCAccountDelete-confirm > .MuiTextField-root":{display:"block"}})}}},53:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiAlert-message":{display:"flex",alignItems:"center"}})}}},8230:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({"& .MuiAlert-message":{display:"flex",alignItems:"center"}})}}},4197:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({minWidth:300,[e.breakpoints.up(500)]:{minWidth:500},"& .MuiDialogContent-root":{paddingLeft:0,paddingRight:0,marginLeft:e.spacing(3),marginRight:e.spacing(3),[e.breakpoints.only("xs")]:{padding:0},"& .infinite-scroll-component__outerdiv":{height:"100%","& .infinite-scroll-component":{paddingRight:10," > .":{marginBottom:e.spacing(2.5)},"& .MuiList-root":{paddingTop:0,paddingBottom:0,"& .MuiListItem-root":{paddingLeft:0,paddingRight:0,"& .SCBaseItemButton-root":{borderRadius:0}}},"& .SCFeedObject-snippet":{marginLeft:e.spacing(-2)}}}},'& [class*="-end-message"]':{padding:e.spacing(3,2),fontWeight:e.typography.fontWeightBold,textAlign:"center"},"& .MuiDialogActions-spacing":{padding:e.spacing(2,3)}}),titleRoot:({theme:e})=>({display:"flex",flexDirection:"row-reverse",alignItems:"start",justifyContent:"flex-end",fontSize:"1.286rem",fontWeight:e.typography.fontWeightBold,padding:e.spacing(2,3),[e.breakpoints.up("md")]:{flexDirection:"row",justifyContent:"space-between"},"& .MuiIconButton-root":{fontSize:"1rem",marginRight:e.spacing(1),[e.breakpoints.up("md")]:{marginRight:-6}}})}}},7042:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%",display:"flex",flexDirection:"row",alignItems:"center","&.MuiPaper-elevation":{paddingTop:e.spacing(),paddingBottom:e.spacing(),paddingLeft:e.spacing(2),paddingRight:e.spacing(2),"&.MuiPaper-elevation0":{paddingTop:0,paddingBottom:0,paddingLeft:0,paddingRight:0}},"& .SCBaseItem-content":{display:"flex",flexDirection:"row",justifyContent:"flex-start",alignItems:"center",width:"100%"},"& .SCBaseItem-image":{flexShrink:0,marginRight:e.spacing(2)},"& .SCBaseItem-text":{flex:"1 1 auto",marginTop:e.spacing(),marginBottom:e.spacing(),textAlign:"left",width:"100%"},"& .SCBaseItem-primary":{color:e.palette.text.primary},"& .SCBaseItem-secondary":{color:e.palette.text.secondary},"& .SCBaseItem-primary, & .SCBaseItem-secondary":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"},"&.SCBaseItem-with-actions":{"& .SCBaseItem-text < *":{maxWidth:`calc(100% - ${e.spacing(14)})`},"& .SCBaseItem-actions":{right:e.spacing(3),top:"50%",maxWidth:e.spacing(14)}}})}}},3100:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({position:"relative",width:"100%","&.MuiPaper-elevation":{paddingTop:e.spacing(),paddingBottom:e.spacing(),paddingLeft:e.spacing(2),paddingRight:e.spacing(2),"&.MuiPaper-elevation0":{paddingTop:0,paddingBottom:0,paddingLeft:0,paddingRight:0,"& .SCBaseItemButton-actions":{right:0}}},"& .SCBaseItemButton-content":{display:"flex",flexDirection:"row",justifyContent:"flex-start",alignItems:"center",width:"100%"},"& .SCBaseItemButton-image":{flexShrink:0,marginRight:e.spacing(2)},"& .SCBaseItemButton-text":{flex:"1 1 auto",marginTop:e.spacing(),marginBottom:e.spacing(),textAlign:"left"},"& .SCBaseItemButton-primary":{color:e.palette.text.primary},"& .SCBaseItemButton-secondary":{color:e.palette.text.secondary},"& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"},"&.SCBaseItemButton-with-actions":{"& .SCBaseItemButton-text > *":{maxWidth:`calc(100% - ${e.spacing(14)})`,[e.breakpoints.only("md")]:{maxWidth:`calc(100% - ${e.spacing(15)})`}},"& .SCBaseItemButton-actions":{position:"absolute",right:e.spacing(2),top:"50%",transform:"translateY(-50%)",maxWidth:e.spacing(19)}}})}}},5884:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(7655),n={styleOverrides:{root:({theme:e})=>{var t,o,n,a;return{backgroundColor:null==(t=e.palette)||null==(o=t.navbar)?void 0:o.main,"& .SCBottomNavigation-action":{fontSize:"1.57rem",color:(0,i.getContrastRatio)(null==(n=e.palette)||null==(a=n.navbar)?void 0:a.main,"#fff")>4.5?"#fff":e.palette.primary.main,borderTop:"1px solid transparent",minWidth:56,"&.Mui-selected, &:hover":{color:e.palette.secondary.main,borderTop:`1px solid ${e.palette.secondary.main}`},"&.SCBottomNavigation-composer":{"&.Mui-selected, &:hover":{color:e.palette.secondary.main,borderTop:"0 none"}}},"&.SCBottomNavigation-ios":{paddingBottom:"15px"}}}}};t.default=n},5861:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(4841),n={styleOverrides:{root:({theme:e})=>({"& .SCBroadcastMessages-box-load-more":{textAlign:"center","& > div":{paddingBottom:e.spacing(2)},marginBottom:e.spacing(2)},"& .SCBroadcastMessages-avatar-load-more":{width:e.spacing(4),height:e.spacing(4),marginRight:e.spacing()},"& .SCBroadcastMessages-button-load-more":{textTransform:"initial"}}),messageRoot:({theme:e})=>({width:"100%",marginBottom:e.spacing(2),"& .SCBroadcastMessages-header .MuiAvatar-img":{objectFit:"fill"},"& .SCBroadcastMessages-title":{padding:`${e.spacing(2)}`,paddingBottom:`${e.spacing()}`,paddingTop:0},"& .SCBroadcastMessages-media":{paddingBottom:`${e.spacing(2)}`},"& .SCBroadcastMessages-content":{padding:e.spacing(2),paddingTop:0},"& .SCBroadcastMessages-list-item-snippet":{padding:"0px 5px",alignItems:"center"},"& .SCBroadcastMessages-list-item-snippet-new":{borderLeft:"2px solid red"},"& .SCBroadcastMessages-flag-icon-wrap":{minWidth:"auto",paddingRight:10},"& .SCBroadcastMessages-flag-icon-snippet":{backgroundColor:i.red[500],color:"#FFF",width:30,height:30}}),skeletonRoot:({theme:e})=>({}),messageSkeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)})}};t.default=n},6586:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({display:"inline-block",margin:"0px 4px",transform:"scale(1.2)"})}}},1108:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({gap:"7px",position:"absolute",bottom:"-36px",left:"24px",width:"60px",height:"60px",borderRadius:"5px",boxShadow:"0px 3px 8px #00000040",backgroundColor:e.palette.common.white,overflow:"hidden","& .SCCalendar-header":{width:"100%",height:"16px",backgroundColor:e.palette.error.dark}})}}},3532:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCCategories-filters":{marginTop:e.spacing(),marginBottom:e.spacing(2)},"& .SCCategories-categories":{marginTop:e.spacing(3),"& .SCCategories-category":{padding:e.spacing(2),width:"auto","& > div":{cursor:"default"},"& .SCCategory-category-image":{minWidth:56,height:"100%",borderTopLeftRadius:e.shape.borderRadius,borderBottomLeftRadius:e.shape.borderRadius,borderRadius:0}}}}),skeletonRoot:({theme:e})=>({"& .SCCategories-categories":{marginTop:e.spacing(3),"& .SCCategory-skeleton-root":{padding:e.spacing(2),width:"auto","& .SCBaseItem-image":{borderTopLeftRadius:e.shape.borderRadius,borderBottomLeftRadius:e.shape.borderRadius,"& .SCCategory-image":{borderRadius:0,width:"56px !important",height:"56px !important"}}}}})}}},9656:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},1601:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},2164:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:0,[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"& .SCCategory-category-image":{"& img":{borderRadius:e.spacing(1)}},"& .SCCategory-primary":{color:e.palette.text.primary},"& .SCCategory-secondary":{color:e.palette.text.secondary},"& .SCBaseItemButton-primary, & .SCCategory-primary":{fontWeight:e.typography.fontWeightBold},"& .SCBaseItemButton-secondary":{fontSize:"0.857rem",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"},"& .SCCategory-primary, & .SCCategory-secondary":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",display:"block"}}),skeletonRoot:({theme:e})=>({"& .SCCategory-image":{borderRadius:e.spacing(1)},"& .SCCategory-primary":{marginBottom:e.spacing(1)},"& .SCCategory-secondary":{marginBottom:e.spacing(1)},"& .SCCategory-action":{margin:e.spacing(.5)}})}}},739:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},5114:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCFeed-root > MuiGrid-item":{paddingTop:0}}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},6439:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,followers:t})=>({padding:e.spacing(),"& .MuiAvatarGroup-root":{"&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root":{"&.MuiAvatar-colorDefault":{marginLeft:0,backgroundColor:"transparent",color:e.palette.primary.main,border:"0 none",borderRadius:0,padding:1}},"& .MuiAvatar-root":{height:e.selfcommunity.user.avatar.sizeSmall,border:`1px solid ${e.palette.common.white}`,fontSize:"0.7rem","&:first-of-type":{width:t>3?"auto":e.selfcommunity.user.avatar.sizeSmall},"&:not(:first-of-type)":{width:e.selfcommunity.user.avatar.sizeSmall}}}}),dialogRoot:()=>({})}}},9019:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={defaultProps:{CategoryFollowButtonProps:{size:"medium"}},styleOverrides:{root:({theme:e})=>({"& .SCCategoryHeader-cover":{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",minHeight:150,color:"#FFF",background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",height:230,borderRadius:0,[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}},"& .SCCategoryHeader-info":{paddingLeft:e.spacing(2),paddingRight:e.spacing(2),marginTop:e.spacing(1),marginBottom:e.spacing(2),"& .SCCategoryHeader-name, & .SCCategoryHeader-slogan":{display:"block",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",textAlign:"center",marginBottom:`${e.spacing(1)} !important`},"& .SCCategoryHeader-name":{fontSize:"1.857rem",fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing()},"& .SCCategoryHeader-slogan":{fontSize:"1rem",fontWeight:e.typography.fontWeightMedium,marginBottom:`${e.spacing(0)} !important`},"& .SCCategoryHeader-followed, & .SCCategoryHeader-action":{textAlign:"center",marginBottom:e.spacing(2)},"& .SCCategoryHeader-followed":{marginBottom:`${e.spacing(0)} !important`,"& .SCCategoryHeader-followed-counter":{fontSize:"1rem",fontWeight:e.typography.fontWeightRegular,display:"inline"}}}}),skeletonRoot:({theme:e})=>({"& .SCCategoryHeader-skeleton-cover":{[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}}})}}},4145:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& .SCCategoryTemplate-feed":{marginTop:e.spacing(2)}}),skeletonRoot:({theme:e})=>({marginTop:0,[e.breakpoints.up("md")]:{marginTop:30}})}}},4610:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},7313:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2)}),dialogRoot:({theme:e})=>({})}}},1596:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({display:"flex",alignItems:"center",flexWrap:"wrap","& .MuiButtonBase-root":{padding:6,borderRadius:50,minWidth:"auto"},"& .SCChangeCoverButton-help-popover":{marginLeft:e.spacing(1)}})}}},9830:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(1),minWidth:"auto"})}}},1698:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(1),minWidth:"auto"})}}},7477:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({padding:e.spacing(1),minWidth:"auto"}),dialogRoot:({theme:e})=>({"& .MuiDialogContent-root":{paddingLeft:e.spacing(2)},"& .SCChangePictureButton-images-list":{maxHeight:500},"& .SCChangePictureButton-image-item":{"& .MuiImageListItemBar-actionIcon, .MuiIconButton-root":{color:e.palette.common.white},"& .SCChangePictureButton-primary":{border:"solid"}}})}}},6282:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({borderRadius:0})}}},2534:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({overflow:"visible",width:"100%","& .SCCommentObject-comment":{paddingBottom:0,overflow:"visible","& > div":{alignItems:"flex-start"},"& .SCBaseItem-image .MuiBadge-badge":{top:e.spacing(1.5)},"& .SCBaseItem-text":{marginBottom:0,marginTop:e.spacing(.2)}},"& .SCCommentObject-nested-comments":{paddingTop:0,paddingBottom:0,paddingLeft:e.spacing(2),"& ul.MuiList-root":{paddingTop:0,paddingBottom:0,width:"100%","& li.MuiListItem-root":{paddingTop:5}},"& .SCCommentObjectReply-root .SCEditor-root":{padding:"6px"},[e.breakpoints.up("sm")]:{paddingLeft:e.spacing(6)}},"& .SCCommentObject-content":{overflowWrap:"anywhere",position:"relative",display:"flex",padding:"6px",borderRadius:.5*e.shape.borderRadius,borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),"& .MuiCardContent-root":{flexGrow:1,padding:0,"& > p:first-of-type":{paddingTop:4}},"& .SCCommentObject-text-content":{margin:0,"& a":{color:e.palette.text.secondary,textDecoration:"underlined","&:hover":{textDecoration:"none"}},"& p":{margin:0,marginBlockStart:"0.3em",marginBlockEnd:"0.3em"},"& img":{maxWidth:"100%"}}},"& .SCCommentObject-show-more-content":{color:e.palette.text.secondary,textDecoration:"underlined","&:hover":{textDecoration:"none"}},"& .SCCommentObject-avatar, & .SCCommentObjectReply-avatar":{top:e.spacing(),width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCCommentObject-author":{textDecoration:"none",color:e.palette.text.primary,"& span":{fontWeight:"600"}},"& .SCCommentObject-comment-actions-menu":{alignItems:"flexStart"},"& .SCCommentObject-deleted":{opacity:.3},"& .SCCommentObject-content-sub-section":{display:"flex",justifyContent:"flex-start",alignItems:"center",color:e.palette.text.secondary},"& .SCCommentObject-comment-sub-section":{display:"flex",flexWrap:"wrap",alignItems:"center",color:e.palette.primary.main,marginTop:0,position:"relative","& > *":{marginRight:e.spacing(1)},"& .SCCommentObject-activity-at":{color:"inherit",textDecoration:"none","&:hover":{textDecoration:"underline"}},"& .SCCommentObjectReply":{color:"inherit",textDecorationStyle:"solid",fontSize:"0.857rem",padding:e.spacing(1),textTransform:"capitalize"},"& .SCBullet-root":{display:"none"},[e.breakpoints.up("sm")]:{"& > *":{marginRight:0},"& .SCCommentObject-vote-audience":{position:"absolute",right:0,top:0},"& .SCBullet-root":{display:"inline"}}}}),skeletonRoot:({theme:e})=>({paddingBottom:e.spacing(),overflow:"visible","& > div":{alignItems:"flex-start"},"& .SCCommentObject-avatar":{top:e.spacing()},"& .SCCommentObject-primary-content":{marginBottom:e.spacing()},"&.SCWidget-root":{"& .SCBaseItem-text":{marginBottom:0,"& > .SCWidget-root":{borderRadius:.5*e.shape.borderRadius,borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)},"& .MuiCardContent-root":{padding:e.spacing(1)}}}})}};t.default=n},1387:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({border:"0 none",marginBottom:e.spacing(1),overflow:"visible","& .SCBaseItem-content":{alignItems:"flex-start","& .SCBaseItem-text":{marginTop:0,marginBottom:0,"& .SCBaseItem-secondary":{overflow:"visible"}},"& .SCBaseItem-image":{marginTop:e.spacing(.2),"& .MuiBadge-badge":{top:e.spacing(1.25)},"& .SCCommentObjectReply-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}},"& .SCCommentObjectReply-comment":{overflow:"visible",borderRadius:.5*e.shape.borderRadius},"& .SCCommentObjectReply-actions":{marginLeft:e.spacing(),paddingBottom:e.spacing()}})}}},3673:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%","& .SCCommentsFeedObject-no-comments":{padding:e.spacing(),paddingLeft:0},"& .SCCommentsFeedObject-comment-not-found":{padding:e.spacing()},"& .SCCommentObject-root":{"& > div":{background:"transparent"}},"& .SCCommentObject-skeleton-root":{background:"transparent",boxShadow:"none",border:0,margin:e.spacing(.5,0),"& .SCBaseItem-text":{"& .SCWidget-root":{"& .MuiCardContent-root":{padding:e.spacing(2)}}}},"& .SCCommentsObject-skeleton-root":{marginBottom:e.spacing(.5)},"& .SCCommentObjectReply-root":{background:"transparent","& .SCCommentObjectReply-comment":{marginBottom:e.spacing(4)}}}),skeletonRoot:({theme:e})=>({})}}},7537:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({boxShadow:"none",position:"relative",display:"flex",flexWrap:"wrap",width:"100%",paddingBottom:e.spacing(),"& .SCCommentsObject-load-more-comments-button":{textTransform:"initial",padding:e.spacing()},"& .SCCommentsObject-load-previous-comments-button":{textTransform:"initial",padding:e.spacing()},"& .SCCommentsObject-comments-counter":{paddingRight:e.spacing()},"& .SCCommentsObject-pagination-link":{display:"none"},"& .SCCommentsObject-pagination":{width:"100%","& button":{fontWeight:e.typography.fontWeightLight,textDecoration:"underline",textUnderlineOffset:3,textDecorationStyle:"dashed"},"& .SCCommentsObject-comments-counter":{fontSize:"0.8rem"}}}),skeletonRoot:({theme:e})=>({width:"100%"})}}},8990:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiDialog-paper":{position:"relative",overflowX:"hidden","& > form":{zIndex:0},"& .MuiDialogTitle-root":{position:"absolute",top:0,left:0,right:0,padding:e.spacing(.5,2,.5,1),display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",borderBottom:`1px solid ${e.palette.grey[400]}`,zIndex:2,backgroundColor:e.palette.background.paper,"& .MuiTypography-root":{flexGrow:1,textAlign:"left",fontWeight:e.typography.fontWeightMedium}},"& .MuiDialogContent-root":{margin:"45px 0",padding:e.spacing(1,2),height:`calc(100vh - 45px - 45px - ${e.spacing(2)})`,"& .SCEditor-root":{padding:e.spacing(1,0),"& .SCEditor-placeholder":{left:0,top:e.spacing(1),position:"absolute"},"&.SCEditor-toolbar":{position:"static","& .SCEditor-placeholder":{marginTop:-40,position:"static"},"& .SCEditorToolbarPlugin-root":{zIndex:1,position:"absolute",display:"flex",bottom:e.spacing(7),right:e.spacing(.2),left:e.spacing(.2),marginBottom:0,backgroundColor:e.palette.background.paper}}}},"& .SCComposer-types":{position:"absolute",zIndex:2,bottom:e.spacing(7),left:0,right:0,justifyContent:"center"},"& .MuiDialogActions-root":{position:"absolute",bottom:0,left:0,right:0,padding:e.spacing(.5,1),display:"flex",flexDirection:"row",justifyContent:"space-between",zIndex:1,backgroundColor:e.palette.background.paper,borderTop:`1px solid ${e.palette.grey[400]}`},"& .SCComposer-general-error":{marginBottom:e.spacing(2),color:e.palette.error.main}},[e.breakpoints.up("md")]:{"& .MuiDialog-paper":{"& > form":{zIndex:0},"& .MuiDialogContent-root":{minHeight:300,height:"auto",maxHeight:600},"& .MuiDialogActions-root":{justifyContent:"center"}}}}),attributesRoot:({theme:e})=>({}),contentDiscussionRoot:({theme:e})=>({"& .SCComposer-content-discussion-title":{paddingBottom:e.spacing(2),"& .MuiInputBase-root":{paddingLeft:0,paddingRight:0,paddingBottom:0,fontSize:"1.429rem",fontWeight:e.typography.fontWeightBold,"& fieldset":{display:"none"},"&.MuiInputBase-adornedEnd .MuiTypography-root":{alignSelf:"end"},"&.Mui-error":{color:e.palette.error.main}},"& .MuiFormHelperText-root":{marginLeft:0}}}),contentPollRoot:({theme:e})=>({padding:e.spacing(2),"& .SCComposer-content-poll-title, & .SCComposer-content-poll-choices, & .SCComposer-content-poll-choice-new, & .SCComposer-content-poll-metadata":{marginBottom:e.spacing(3)},"& .SCComposer-content-poll-choices .MuiTextField-root":{marginBottom:e.spacing()},"& .SCComposer-content-poll-metadata":{marginTop:e.spacing(3)}}),contentPostRoot:({theme:e})=>({}),layerTransitionRoot:({theme:e})=>({position:"absolute",top:0,left:0,right:0,bottom:0,zIndex:5,background:e.palette.background.paper,"& .MuiDialogContent-root":{height:"calc(100% - 45px - 16px) !important",marginBottom:"0 !important"}}),layerAudienceRoot:({theme:e})=>({"& .MuiTabs-root":{minHeight:"auto",marginBottom:e.spacing(4),"& .MuiTabs-flexContainer":{justifyContent:"center","& .MuiTab-labelIcon":{minHeight:"auto",flexDirection:"row","& .MuiIcon-root":{marginRight:e.spacing(1)}}}},"& .SCComposer-layer-audience-message":{textAlign:"center",marginBottom:e.spacing(4)}}),layerCategoryRoot:({theme:e})=>({}),layerGroupRoot:({theme:e})=>({}),layerCloseRoot:({theme:e})=>({"& .SCComposer-layer-content":{"& .MuiTypography-root":{textAlign:"center"},"& .MuiList-root":{"& .MuiListItem-root":{padding:0,"& .MuiTypography-root":{fontSize:"1.143rem"},"&:nth-last-of-type(1)":{color:e.palette.error.main}}}}}),layerLocationRoot:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),typeSwitchButtonGroupRoot:({theme:e})=>({"& .MuiToggleButton-root":{backgroundColor:e.palette.common.black,color:(0,i.alpha)(e.palette.common.white,.5),padding:e.spacing(.5,2),fontSize:"1rem",fontWeight:e.typography.fontWeightBold,textTransform:"capitalize","&.Mui-selected, &:hover, &:active, &.Mui-selected:hover":{color:e.palette.common.white,backgroundColor:e.palette.common.black},"&:nth-of-type(1)":{paddingLeft:e.spacing(4)},"&:nth-last-of-type(1)":{paddingRight:e.spacing(4)}}})}};t.default=n},5372:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCConsentSolution-title":{display:"flex",justifyContent:"center",fontWeight:800,[e.breakpoints.down("sm")]:{fontSize:"0.9rem"}},"& .SCConsentSolution-title-back":{display:"flex",justifyContent:"left"},"& .SCConsentSolution-content":{padding:e.spacing(2),overflowX:"hidden",fontSize:"0.8rem",[e.breakpoints.down("sm")]:{padding:12,"& h6":{fontSize:"0.8rem"},"& span, p, li":{fontSize:"0.7rem"},"& li":{fontSize:"0.7rem"},"& button":{fontSize:"0.6rem"}}},"& .SCConsentSolution-consent":{borderTop:0,overflowY:"visible",[e.breakpoints.down("sm")]:{paddingTop:5,paddingBottom:5}},"& .SCConsentSolution-consent-switch":{margin:`${e.spacing()} 3px`,"& > span:first-of-type":{marginRight:10},[e.breakpoints.down("sm")]:{".MuiFormControlLabel-label":{fontSize:"0.7rem"}}},"& .SCConsentSolution-delete-account-button":{cursor:"pointer","&:hover":{textDecoration:"underline"}},"& .SCConsentSolution-confirm-delete-account-button":{color:"#FFF !important",marginRight:e.spacing(2),marginBottom:e.spacing()},"& .SCConsentSolution-logout-account-button":{marginBottom:e.spacing()},"& .SCConsentSolution-data-portability":{marginBottom:e.spacing(2)},"& .SCConsentSolution-alert-accept-document":{padding:e.spacing(),[e.breakpoints.down("sm")]:{fontSize:"0.7rem",padding:5}},"& .SCConsentSolution-alert-accept-conditions":{fontSize:"0.8rem",fontWeight:300,color:e.palette.grey.A700,padding:`${e.spacing()} ${e.spacing()}`,[e.breakpoints.down("sm")]:{fontSize:"0.6rem"}}}),skeletonRoot:({theme:e})=>({"& .SCConsentSolution-title":{display:"flex",alignItems:"center",justifyContent:"center"},"& .SCConsentSolution-content":{paddingTop:e.spacing(3),paddingBottom:e.spacing(5)},"& .SCConsentSolution-consent":{borderTop:0,overflowY:"visible",display:"flex"},"& .SCConsentSolution-consent-switch":{width:64,height:31,borderRadius:22,marginRight:e.spacing()},"& .SCConsentSolution-consent-switch-label":{marginTop:23}})}}},5403:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCContributionActionsMenu-button":{color:e.palette.primary.main,"&:hover":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}},"& .SCContributionActionsMenu-visibility-icons":{color:e.palette.secondary.main,"& > span: nth-of-type(2)":{position:"relative",top:1}}}),popperRoot:({theme:e})=>({zIndex:2,"& .SCContributionActionsMenu-popper-root":{overflow:"visible",filter:"drop-shadow(0px -1px 5px rgba(0,0,0,0.10))",mt:1.5},"& .SCContributionActionsMenu-paper":{width:280,"& .SCContributionActionsMenu-sub-item":{"& .MuiListItemIcon-root":{color:e.palette.text.secondary},"&:hover":{backgroundColor:(0,i.alpha)(e.palette.text.primary,e.palette.action.hoverOpacity)}}},"& .SCContributionActionsMenu-footer-sub-items":{margin:"10px 10px 10px 17px",border:"1px solid #dddddd",padding:5,borderRadius:3,fontSize:11},"& .SCContributionActionsMenu-selected-icon":{marginLeft:2,"&.MuiListItemIcon-root":{width:"10px"},"& svg":{fontSize:"1.4rem"}},"& .SCContributionActionsMenu-section-badge":{padding:0,minWidth:15,height:15,top:3},"& .SCContributionActionsMenu-section-with-selection-icon":{fontSize:12,color:e.palette.common.white}})}};t.default=n},3156:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{"& .MuiIcon-root":{fontSize:"0.75rem !important"}}})}}},3605:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCCreateEventWidget-image":{height:"110px"},"& .SCCreateEventWidget-calendar":{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)",color:e.palette.common.white},"& .SCCreateEventWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 0 !important`,"& .SCCreateEventWidget-title":{textAlign:"center",marginBottom:e.spacing(2)},"& .SCCreateEventWidget-spacing":{marginBottom:e.spacing(2)}},"& .SCCreateEventWidget-actions":{padding:`0 ${e.spacing(2)} ${e.spacing(2)}`,justifyContent:"center"}}),skeletonRoot:({theme:e})=>({"& .SCCreateEventWidget-calendar":{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"},"& .SCCreateEventWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 0 !important`,"& .SCCreateEventWidget-title":{textAlign:"center"},"& .SCCreateEventWidget-spacing":{marginBottom:e.spacing(2)}},"& .SCCreateEventWidget-actions":{padding:`0 ${e.spacing(2)} ${e.spacing(2)}`,justifyContent:"center"}})}}},9518:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}})}}},3039:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({margin:e.spacing(2,0),"& .SCCustomAdv-wrap":{width:"100%",position:"relative"},"& .SCCustomAdv-image":{width:"100%"},"& .SCCustomAdv-embed-code":{width:"100%"},"& .SCCustomAdv-prefixed-height":{position:"absolute",top:0,left:0,bottom:0,right:0}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},9158:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:370,[e.breakpoints.up("sm")]:{minWidth:"345px !important"},"& .SCCustomSnackMessage-card":{width:"100%","& .SCCustomSnackMessage-content":{position:"relative",padding:e.spacing(2,4,2,2),"& .SCCustomSnackMessage-close":{position:"absolute",right:0,top:0,zIndex:1},a:{color:e.palette.text.primary,textDecoration:"none","&:hover":{textDecoration:"underline"}}}}})}}},2941:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({color:"inherit",verticalAlign:"middle","& .MuiIcon-root":{fontSize:"1rem",marginRight:2},"& .MuiTypography-root":{lineHeight:"1rem",fontSize:"0.857rem"}})}}},8201:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:()=>({display:"flex",alignItems:"center"})}}},2937:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}})}}},7319:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({boxSizing:"borderBox",padding:e.spacing(1,2),position:"relative",cursor:"text","& .SCEditor-content":{position:"relative",outline:"none",minHeight:40,paddingBottom:20,"& > p":{margin:0},"& img":{margin:0},"& mention":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)},"& hashtag":{backgroundColor:(0,i.alpha)(e.palette.secondary.main,e.palette.action.activatedOpacity)}},"& .SCEditor-placeholder":{position:"absolute",top:e.spacing(1),left:e.spacing(2),color:e.palette.text.disabled},"& .SCEditor-actions":{position:"absolute",bottom:0,right:e.spacing(),color:e.palette.text.primary,zIndex:1,"& .MuiIcon-root":{fontSize:"1.143rem"}},"& .SCEditor-image":{position:"relative",display:"block","& .selected":{border:`2px solid ${e.palette.secondary.main}`}},"& hr":{cursor:"pointer",margin:"1em 0","&.selected":{outline:`2px solid ${e.palette.secondary.main}`,userSelect:"none"}},"& .SCEditor-ltr":{textAlign:"left"},"& .SCEditor-rtl":{textAlign:"right"},"& .SCEditor-paragraph":{margin:0,position:"relative"},"& .SCEditor-quote":{margin:0,marginLeft:e.spacing(2),marginBottom:e.spacing(1),color:e.palette.text.secondary,borderLeftColor:e.palette.primary.main,borderLeftWidth:e.spacing(.25),borderLeftStyle:"solid",paddingLeft:e.spacing(2)},"& .SCEditor-h1":{fontSize:"1.429rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,1,0)},"& .SCEditor-h2":{fontSize:"1.143rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.8,0)},"& .SCEditor-h3":{fontSize:"1rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.5,0)},"& .SCEditor-textBold":{fontWeight:"bold"},"& .SCEditor-textItalic":{fontStyle:"italic"},"& .SCEditor-textUnderline":{textDecoration:"underline"},"& .SCEditor-textStrikethrough":{textDecoration:"line-through"},"& .SCEditor-textUnderlineStrikethrough":{textDecoration:"underline line-through"},"& .SCEditor-textSubscript":{fontSize:"0.8em",verticalAlign:"sub !important"},"& .SCEditor-textSuperscript":{fontSize:"0.8em",verticalAlign:"super"},"& .SCEditor-link":{color:e.palette.text.secondary,textDecoration:"underline"},"& .SCEditor-link:hover":{textDecoration:"none",cursor:"pointer"},"& .SCEditor-ol1":{padding:0,margin:0},"& .SCEditor-ol2":{padding:0,margin:0,listStyleType:"upper-alpha"},"& .SCEditor-ol3":{padding:0,margin:0,listStyleType:"lower-alpha"},"& .SCEditor-ol4":{padding:0,margin:0,listStyleType:"upper-roman"},"& .SCEditor-ol5":{padding:0,margin:0,listStyleType:"lower-roman"},"& .SCEditor-ul":{padding:0,margin:0},"& .SCEditor-listItem":{margin:"0 32px"}}),toolbar:({theme:e})=>({"& .SCEditor-placeholder":{top:e.spacing(7),left:e.spacing(2)}}),skeletonRoot:({theme:e})=>({}),emojiPluginRoot:({theme:e})=>({}),floatingLinkPluginRoot:({theme:e})=>({zIndex:2e3,"& .MuiPaper-root":{borderRadius:5}}),hashtagPluginRoot:({theme:e})=>({position:"absolute",background:e.palette.background.paper,boxShadow:"0px 5px 10px rgba(0, 0, 0, 0.3)",borderRadius:8,marginLeft:7,marginTop:18,zIndex:3e3,"& ul":{padding:0,listStyle:"none",margin:0,borderRadius:10,"& li":{padding:e.spacing(1),margin:0,minWidth:180,fontSize:e.typography.body2.fontSize,outline:"none",cursor:"pointer",display:"flex",flexDirection:"row",justifyContent:"left",alignItems:"center","&.selected":{background:e.palette.action.selected},"&.hovered":{background:e.palette.action.hover},"& .MuiAvatar-root":{width:20,height:20,marginRight:e.spacing()}}}}),imagePluginRoot:({theme:e})=>({}),mentionPluginRoot:({theme:e})=>({position:"absolute",background:e.palette.background.paper,boxShadow:"0px 5px 10px rgba(0, 0, 0, 0.3)",borderRadius:8,marginLeft:7,marginTop:18,zIndex:3e3,"& ul":{padding:0,listStyle:"none",margin:0,borderRadius:10,"& li":{padding:e.spacing(1),margin:0,minWidth:180,fontSize:e.typography.body2.fontSize,outline:"none",cursor:"pointer",display:"flex",flexDirection:"row",justifyContent:"left",alignItems:"center","&.selected":{background:e.palette.action.selected},"&.hovered":{background:e.palette.action.hover},"& .MuiAvatar-root":{width:20,height:20,marginRight:e.spacing()}}}}),toolbarPluginRoot:({theme:e})=>({borderRadius:.2*e.shape.borderRadius,borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),borderWidth:1,borderStyle:"solid",display:"flex",flexDirection:"row",alignItems:"center",justifyContent:"left",marginBottom:e.spacing(1),padding:0,overflowX:"scroll",MsOverflowStyle:"none",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},"& .MuiTextField-root":{minWidth:100,margin:e.spacing(0,.5)},"& .MuiButtonBase-root":{margin:e.spacing(.5),padding:e.spacing(1),fontSize:"1rem",border:0,borderRadius:.2*e.shape.borderRadius,"&.Mui-disabled":{border:0},"&.MuiToggleButtonGroup-grouped:not(:last-of-type)":{borderTopRightRadius:.2*e.shape.borderRadius,borderBottomRightRadius:.2*e.shape.borderRadius},"&.MuiToggleButtonGroup-grouped:not(:first-of-type)":{borderTopRightRadius:.2*e.shape.borderRadius,borderBottomRightRadius:.2*e.shape.borderRadius,borderTopLeftRadius:.2*e.shape.borderRadius,borderBottomLeftRadius:.2*e.shape.borderRadius}},"& .SCEditor-block-format .MuiIcon-root:first-of-type":{display:"inline-block",marginRight:e.spacing(1)}})}};t.default=n},5545:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .EmojiPickerReact.epr-main":{borderWidth:0}})}}},7222:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),detailRoot:({theme:e})=>({"& .SCEvent-detail-image-wrapper":{position:"relative","& .SCEvent-detail-image":{height:"170px"},"& .SCEvent-detail-in-progress":{backgroundColor:e.palette.secondary.main,position:"absolute",top:10,right:10,color:e.palette.common.white,boxShadow:"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px"}},"& .SCEvent-detail-content":{padding:`52px ${e.spacing(3)} 0 !important`,"& .SCEvent-detail-user":{marginTop:"14px","& .SCBaseItemButton-text":{margin:0}},"& .SCEvent-detail-name-wrapper":{textDecoration:"none",color:"inherit","& .SCEvent-detail-name":{marginBottom:"10px"}},"& .SCEvent-detail-first-divider":{marginTop:"18px",marginBottom:e.spacing()},"& .SCEvent-detail-second-divider":{marginTop:e.spacing(),marginBottom:"18px"}}}),previewRoot:({theme:e})=>({"& .SCEvent-preview-image-wrapper":{position:"relative","& .SCEvent-preview-image":{height:"80px"},"& .SCEvent-preview-in-progress":{height:18,backgroundColor:e.palette.secondary.main,position:"absolute",top:7,right:7,color:e.palette.common.white,boxShadow:"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px","& span":{fontSize:"0.8rem",paddingLeft:e.spacing(.5),paddingRight:e.spacing(.5)}}},"& .SCEvent-preview-content":{padding:`${e.spacing()} !important`,"& .SCEventInfoDetails-icon-text-wrapper":{"& .MuiTypography-root":{fontSize:"0.8rem"}},"& .SCEvent-detail-user":{marginTop:"14px","& .SCBaseItemButton-text":{margin:0}},"& .SCEvent-preview-name-wrapper":{marginTop:3,textDecoration:"none",color:"inherit","& h5":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}}}),snippetRoot:({theme:e})=>({overflow:"visible",boxSizing:"border-box",paddingLeft:`${e.spacing()} !important`,paddingRight:`${e.spacing()} !important`,"& .SCBaseItem-image":{"& .MuiAvatar-root":{width:100,height:60,"& img":{borderRadius:"5px"}}},"& .SCEvent-snippet-image":{position:"relative","& .SCEvent-snippet-in-progress":{height:18,backgroundColor:e.palette.secondary.main,position:"absolute",top:5,right:3,color:e.palette.common.white,boxShadow:"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px","& span":{fontSize:"0.8rem",paddingLeft:e.spacing(.5),paddingRight:e.spacing(.5)}}},"& .SCBaseItem-text":{fontSize:e.typography.fontSize,"& .SCEvent-snippet-primary":{color:e.palette.text.primary,textDecoration:"none","&:hover":{textDecoration:"none"},"& p":{fontWeight:e.typography.fontWeightBold}},"& .SCEvent-snippet-secondary":{color:e.palette.text.secondary}}}),skeletonRoot:({theme:e})=>({"& .SCEvent-skeleton-detail-root":{"& .SCEvent-skeleton-detail-calendar":{position:"absolute",bottom:"-36px",left:"24px",boxShadow:"0px 3px 8px #00000040"},"& .SCEvent-skeleton-detail-content":{padding:`52px ${e.spacing(3)} 0 !important`,"& .SCEvent-skeleton-detail-user":{marginTop:"14px","& .SCBaseItemButton-text":{margin:0}},"& .SCEvent-skeleton-detail-name-wrapper":{textDecoration:"none",color:"inherit","& .SCEvent-skeleton-detail-name":{marginBottom:"10px"}},"& .SCEvent-skeleton-detail-first-divider":{marginTop:"18px",marginBottom:e.spacing()},"& .SCEvent-skeleton-detail-second-divider":{marginTop:e.spacing(),marginBottom:"18px"}}},"& .SCEvent-skeleton-preview-root":{"& .SCEvent-skeleton-preview-content":{padding:e.spacing()},"& .SCEvent-skeleton-preview-image":{position:"relative","& .MuiSkeleton-root":{borderRadius:"5px"},"& .MuiIcon-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCBaseItem-actions":{maxWidth:"none !important"}},"& .SCEvent-skeleton-snippet-root":{overflow:"visible",boxSizing:"border-box",paddingLeft:`${e.spacing()} !important`,paddingRight:`${e.spacing()} !important`,"& .SCEvent-skeleton-snippet-image":{position:"relative","& .MuiSkeleton-root":{borderRadius:"5px"},"& .MuiIcon-root":{color:e.palette.common.white,position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},"& .SCBaseItem-actions":{maxWidth:"none !important"}}})}}},5806:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .MuiDivider-root":{margin:e.spacing(1)},"& .MuiIcon-root":{fontSize:"15px"}}),drawerRoot:({theme:e})=>({"& .SCEventActionsMenu-item":{paddingTop:0,paddingBottom:0},"& .MuiDivider-root":{margin:e.spacing(2)},"& .MuiIcon-root":{fontSize:"15px"}})}}},300:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCEventForm-cover":{position:"relative",height:120,minHeight:120,"& .SCEventForm-upload-event-cover-root":{position:"absolute",right:e.spacing(2),bottom:e.spacing(1),padding:e.spacing(1),minWidth:"auto"}},"& .SCEventForm-header":{marginTop:e.spacing(4.5),color:e.palette.text.secondary},"& .SCEventForm-form":{"& .SCEventForm-picker":{width:"50%","& .MuiFormHelperText-root":{height:0,marginTop:0}},"& .MuiTextField-root, .SCEventForm-frequency":{marginBottom:e.spacing(2)},"& .MuiButton-text":{justifyContent:"start",paddingLeft:e.spacing(1),"&:hover":{backgroundColor:"transparent"}}},"& .SCEventForm-date-time":{display:"flex",alignItems:"center",justifyContent:"space-between",gap:e.spacing(1),"& .MuiInputBase-root":{paddingLeft:e.spacing(.5)}},"& .SCEventForm-error":{color:e.palette.error.main},"& .SCEventForm-switch":{"& .MuiButtonBase-root":{"&.Mui-checked":{color:e.palette.secondary.main,"& + .MuiSwitch-track":{backgroundColor:e.palette.secondary.main}}}},"& .SCEventForm-switch-label":{fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",justifyContent:"center",gap:e.spacing(.5)},"& .SCEventForm-active":{color:e.palette.secondary.main},"& .SCEventForm-actions":{marginTop:e.spacing(2),display:"flex",justifyContent:"flex-end","& button":{width:"fit-content"}},"& .SCEventForm-privacy-section":{marginTop:e.spacing(2),justifyContent:"center","& .SCEventForm-privacy-section-info":{marginBottom:e.spacing(2)}},"& .SCEventForm-visibility-section-info":{marginTop:e.spacing(1)},"& .MuiDivider-root":{marginTop:e.spacing(2),border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`},"& .MuiDialogTitle-root":{"& span":{flexGrow:1,textAlign:"center"}},"& .SCEventForm-event-address-root":{marginTop:e.spacing(2),backgroundColor:e.palette.grey.A200,borderRadius:5,"& .SCEventForm-event-address-tabs":{padding:e.spacing(0,2,0,2),"& .MuiTabs-indicator":{bottom:e.spacing(1.5)}},"& .SCEventForm-event-address-tab":{textTransform:"none"},"& .SCEventForm-event-address-tab-content":{padding:e.spacing(.5,2,2,2)}}})}};t.default=n},7039:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiDialogTitle-root":{"& span":{flexGrow:1,textAlign:"center"}}})}}},3244:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(901),n={styleOverrides:{root:({theme:e,isEventAdmin:t,isEventFinished:o})=>({"& .SCEventHeader-cover":{position:"relative",minHeight:150,background:"linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)",height:230,borderRadius:0,[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)}},"& .SCEventHeader-in-progress":{color:e.palette.secondary.main,paddingLeft:e.spacing(2),display:"inline-flex",alignItems:"center",gap:"4px",marginBottom:e.spacing(.5),"&:before":{content:'""',width:"8px",height:"8px",borderRadius:"9999px",backgroundColor:e.palette.secondary.main,animation:"pulse-animation 2s linear infinite","@keyframes pulse-animation":{"0%":{opacity:1},"50%":{opacity:0},"100%":{opacity:1}}}},"& .SCEventHeader-chip":{marginLeft:e.spacing(2),marginBottom:e.spacing(),backgroundColor:e.palette.grey[500],"& .SCEventHeader-chip-icon":{marginLeft:e.spacing(1)}},"& .SCEventHeader-time":{textTransform:"uppercase",fontSize:"1.143rem",fontWeight:e.typography.fontWeightLight,color:o?e.palette.grey[500]:e.palette.text.secondary,paddingLeft:e.spacing(2)},"& .SCEventHeader-info":{marginTop:e.spacing(6),"& .SCEventHeader-name":{fontSize:"1.857rem",fontWeight:e.typography.fontWeightBold,paddingLeft:e.spacing(2),color:o?e.palette.grey[500]:"inherit"},"& .SCEventHeader-visibility":{display:"flex",justifyContent:"flex-start",alignItems:"center",gap:e.spacing(.5),paddingLeft:e.spacing(2),color:o?e.palette.grey[500]:"inherit","& .SCEventHeader-visibility-item":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightLight,color:e.palette.text.secondary,display:"flex",justifyContent:"center",alignItems:"center",gap:e.spacing(.5)}},"& .SCEditEvenButton-root":{marginLeft:"auto",marginTop:e.spacing(-4.25),marginRight:e.spacing(1)},"& .SCEvenSubscribeButton-root":{marginTop:e.spacing(1)},"& .SCUser-root":{borderTop:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderBottom:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,marginTop:e.spacing(1),"& .SCBaseItemButton-content":{paddingLeft:e.spacing(1)},"& .SCBaseItemButton-actions":{maxWidth:"none",[e.breakpoints.up("sm")]:{width:t&&"60%"},"& .SCEventHeader-multi-actions":{display:"flex",justifyContent:"space-between",alignItems:"center","& .SCEventInviteButton-root":{marginRight:e.spacing(1)}}}},"& .SCUser-skeleton-root":{marginTop:e.spacing(2),"& .SCBaseItem-content":{paddingLeft:e.spacing(2)},"& .SCBaseItem-actions":{paddingRight:e.spacing(2)}}}}),skeletonRoot:({theme:e})=>({position:"relative","& .SCEventHeader-cover":{height:190},"& .SCEventHeader-avatar":{top:140,display:"block",position:"absolute",marginLeft:e.spacing(2),"& .MuiSkeleton-root":{border:"#FFF solid 5px"}},"& .SCEventHeader-info":{marginTop:60,marginLeft:e.spacing(2)}})}};t.default=n},911:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({gap:e.spacing(.5),"& .SCEventInfoDetails-icon-text-wrapper":{flexDirection:"row",alignItems:"center",gap:e.spacing(.75),"& > p":{textTransform:"capitalize"},"& .SCEventInfoDetails-link":{textDecoration:"none",color:e.palette.text.primary,"&:hover":{textDecoration:"underlined"},"& .SCEventInfoDetails-url":{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box","-webkit-line-clamp":"1","-webkit-box-orient":"vertical"}},"& .SCEventInfoDetails-in-progress":{width:"6px",height:"6px",borderRadius:"9999px",backgroundColor:e.palette.secondary.main}},"& .SCEventInfoDetails-creation-wrapper":{flexDirection:"row",alignItems:"center",gap:e.spacing(1)}})}}},957:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEventInfoWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 13px !important`,"& .SCEventInfoWidget-title-wrapper":{flexDirection:"row",alignItems:"center",gap:"9px",marginBottom:e.spacing(1)},"& .SCEventInfoWidget-text-wrapper":{marginBottom:e.spacing(3),"& .SCEventInfoWidget-show-more":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightBold,padding:e.spacing(.25),justifyContent:"start","&:hover":{backgroundColor:"transparent"}}}}}),skeletonRoot:({theme:e})=>({"& .SCEventInfoWidget-skeleton-content":{padding:`${e.spacing(2)} ${e.spacing(2)} 13px !important`}})}}},8586:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}}),dialogRoot:({theme:e})=>({"& .SCBaseDialog-title-root span ":{width:"100%",display:"flex",alignItems:"center",justifyContent:"space-between","& .SCEventInviteButton-dialog-title":{fontWeight:e.typography.fontWeightBold,fontSize:e.typography.h4.fontSize}},"& .SCEventInviteButton-input":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.selectedOpacity),borderRadius:e.shape.borderRadius,height:e.spacing(3.75),padding:e.spacing(.5,1),"& .SCEventInviteButton-icon ":{marginLeft:e.spacing(1)},"&.Mui-focused .MuiOutlinedInput-notchedOutline":{border:"1px solid"}},"& .SCEventInviteButton-invited-box":{marginTop:e.spacing(2),marginBottom:e.spacing(3),"& .MuiChip-root":{marginBottom:e.spacing(1)}},"& .SCEventInviteButton-suggested":{"& h4":{marginBottom:e.spacing(1)},"& .SCUser-root":{"&:hover":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}}}})}};t.default=n},797:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title":{fontWeight:e.typography.fontWeightBold},"& .SCEventLocationWidget-map":{marginBottom:e.spacing(1),minHeight:248,width:"100%"}}),skeletonRoot:({theme:e})=>({"& .SCEventLocationWidget-skeleton-map":{margin:e.spacing(1,0,1,0),minHeight:248,width:"100%"}})}}},3086:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,showPadding:t})=>({"& .SCEventMediaWidget-header":{padding:t?e.spacing("10px",2):e.spacing(2)},"& .SCEventMediaWidget-content":{padding:e.spacing(2),"& .SCEventMediaWidget-grid":{display:"grid",gap:"5px",gridTemplateColumns:"repeat(3, 1fr)","& > .SCEventMediaWidget-media":{position:"relative",width:"100%",paddingBottom:"100%",backgroundSize:"cover",cursor:"pointer","& > .SCEventMediaWidget-media-layer":{position:"absolute",inset:0,backgroundColor:"rgba(102, 102, 102, 0.2)",opacity:.8},"& > .SCEventMediaWidget-count-hidden-media-wrapper":{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)",color:e.palette.common.white,"& > .SCEventMediaWidget-count-hidden-media":{fontSize:"200%"}}}}},"& .SCEventMediaWidget-actions":{padding:e.spacing(0,2,"10px"),justifyContent:"center"}}),skeletonRoot:({})=>({"& .SCEventMediaWidget-grid":{display:"grid",gap:"5px",gridTemplateColumns:"repeat(3, 1fr)","& > .SCEventMediaWidget-media":{paddingBottom:"100%"}}}),dialogRoot:({theme:e})=>({"& .SCEventMediaWidget-grid":{display:"grid",gap:"5px",gridTemplateColumns:"repeat(3, 1fr)","& > .SCEventMediaWidget-media":{paddingBottom:"100%"},"& > .SCEventMediaWidget-dialog-media-wrapper":{position:"relative",width:"100%",paddingBottom:"100%",backgroundSize:"cover","& > .SCEventMediaWidget-dialog-button-wrapper":{position:"absolute",top:0,width:"100%",height:"30px",backgroundColor:e.palette.common.black,opacity:.6,flexDirection:"row",justifyContent:"flex-end",alignItems:"center","& > .SCEventMediaWidget-dialog-loading-button":{padding:0,minWidth:"50px","& > .MuiLoadingButton-loadingIndicatorCenter":{color:e.palette.common.white}}}}}}),triggerRoot:({isSquare:e})=>({padding:e&&0,borderRadius:e&&0,backgroundColor:e&&"rgba(112, 112, 112, 0.04)","&:hover":{backgroundColor:e&&"rgba(0, 0, 0, 0.04)"},"& > .SCEventMediaWidget-trigger-content":{position:e&&"relative",width:e&&"100%",padding:e&&"10px 60px",paddingBottom:e&&"100%",flexDirection:"row",gap:"5px",alignItems:"center",justifyContent:e?"center":"flex-end","& > .SCEventMediaWidget-trigger-icon":{position:e&&"absolute",top:e&&"50%",transform:e&&"translateY(-50%)",fontSize:"inherit"}}})}}},6166:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEventMembersWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)}}`,"& .SCEventMembersWidget-title":{marginBottom:"18px"},"& .SCEventMembersWidget-tabs-wrapper":{borderBottom:`1px solid ${e.palette.grey[300]}`,"& .SCEventMembersWidget-tab-label-wrapper":{gap:"2px",alignItems:"center"}},"& .SCEventMembersWidget-tab-panel":{padding:`${e.spacing(4)} 0 0`},"& .SCEventMembersWidget-action-button":{left:"50%",transform:"translate(-50%)",color:e.palette.primary.main},"& .SCEventMembersWidget-event-button":{left:"50%",transform:"translate(-50%)"}}}),skeletonRoot:({theme:e})=>({"& .SCEventMembersWidget-content":{padding:`${e.spacing(2)} ${e.spacing(2)}`,"& .SCEventMembersWidget-title":{marginBottom:"18px"},"& .SCEventMembersWidget-tabs-wrapper":{borderBottom:`1px solid ${e.palette.grey[300]}`,"& .SCEventMembersWidget-tab-label-wrapper":{gap:"2px",alignItems:"center"}},"& .SCEventMembersWidget-tab-panel":{padding:`${e.spacing(4)} 0 0`},"& .SCEventMembersWidget-action-button":{left:"50%",transform:"translate(-50%)"}}}),dialogRoot:()=>({})}}},7948:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,followers:t})=>({gap:e.spacing(1),marginTop:"0 !important",minWidth:"auto","&:hover":{backgroundColor:"unset"},"& .MuiAvatarGroup-root":{"&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root":{"&.MuiAvatar-colorDefault":{marginLeft:0,backgroundColor:"transparent",color:e.palette.primary.main,border:"0 none",borderRadius:0,padding:1}},"& .MuiAvatar-root":{height:e.selfcommunity.user.avatar.sizeSmall,border:`1px solid ${e.palette.common.white}`,fontSize:"0.7rem","&:first-of-type":{width:t>3?"auto":e.selfcommunity.user.avatar.sizeSmall},"&:not(:first-of-type)":{width:e.selfcommunity.user.avatar.sizeSmall}}},"& .SCEventParticipantsButton-participants":{color:e.palette.grey[600]}}),dialogRoot:({theme:e})=>({"& .SCEventParticipantsButton-infinite-scroll":{height:"400px !important",[e.breakpoints.down("md")]:{height:"100%"}}})}}},3868:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{selectRoot:({theme:e})=>({backgroundColor:e.palette.grey.A200,justifyContent:"space-between",height:33,borderRadius:"5px",[e.breakpoints.down("md")]:{padding:"10px"},"&:hover, &:active":{backgroundColor:e.palette.common.black,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white}},"&.SCEventSubscribeButton-going":{backgroundColor:`${e.palette.success.dark} !important`,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white},"&:hover":{backgroundColor:e.palette.success.dark,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white}}},"&.SCEventSubscribeButton-not-going":{backgroundColor:e.palette.error.dark,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white},"&:hover":{backgroundColor:e.palette.error.dark,color:e.palette.common.white,"& .MuiIcon-root":{color:e.palette.common.white}}}}),requestRoot:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .MuiPaper-root":{width:195,borderRadius:"5px","& .MuiList-root .SCEventSubscribeButton-item":{paddingTop:0,paddingBottom:0,"&.Mui-disabled":{paddingTop:e.spacing(1),paddingBottom:e.spacing(1)},"& .Mui-checked .MuiSvgIcon-root":{color:e.palette.success.main},"& > .MuiFormControlLabel-root":{width:"100%",marginLeft:0,justifyContent:"space-between"}}}}),drawerRoot:({theme:e})=>({"& .MuiPaper-root":{"& .SCEventSubscribeButton-item":{paddingTop:0,paddingBottom:0,"& .Mui-checked .MuiSvgIcon-root":{color:e.palette.success.main},"& > .MuiFormControlLabel-root":{width:"100%",marginLeft:0,justifyContent:"space-between"}}}})}}},2595:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCEvents-filters":{alignItems:"center",marginTop:e.spacing(),marginBottom:e.spacing(2),"& .SCEvents-search":{"& .MuiInputBase-root":{paddingRight:0,"& .MuiButtonBase-root":{borderRadius:"0 5px 5px 0",height:"37px","& .MuiButton-endIcon":{margin:0}}}}},"& .SCEvents-events":{marginTop:e.spacing(2),[e.breakpoints.down("md")]:{marginBottom:e.spacing(7)},"& .SCEvents-item":{paddingTop:e.spacing(2)},"& .SCEvents-item-skeleton":{paddingTop:e.spacing(2)},"& .SCBaseItem-root":{display:"flex",justifyContent:"space-between"},"& .SCEvent-skeleton-preview-name":{marginTop:6,marginBottom:6},"& .SCEvent-skeleton-snippet .SCBaseItem-content":{maxWidth:"70%"}},"& .SCEvents-no-results":{marginTop:e.spacing(3),display:"flex",flexDirection:"column",alignItems:"flex-start","& .SCEvent-skeleton-root":{marginBottom:e.spacing(2),minWidth:"50%",[e.breakpoints.down("md")]:{width:"100%"}},"& .SCEvent-skeleton-snippet .SCBaseItem-content":{maxWidth:"70%"},"& .MuiTypography-body1":{fontWeight:e.typography.fontWeightMedium,fontSize:"16px",whiteSpace:"pre-line"}},"& .SCEvents-show-more":{paddingLeft:e.spacing(1),"&.Mui-selected, &:hover":{backgroundColor:"transparent"}}}),skeletonRoot:({theme:e})=>({"& .SCEvents-skeleton-events":{justifyContent:"center",marginTop:e.spacing(2),"& .SCEvents-skeleton-item":{paddingTop:e.spacing(2)}}}),eventsChipRoot:({theme:e,showFollowed:t,showPastEvents:o})=>({height:e.spacing(4.75),borderRadius:e.spacing(.5),color:t||o?e.palette.common.white:e.palette.text.primary,"& .MuiIcon-root":{fontSize:"1rem",color:e.palette.common.white}})}}},6191:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2)})}}},7553:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({maxWidth:e.breakpoints.values.lg,"& .SCFeed-left":{padding:0,[e.breakpoints.up("sm")]:{padding:e.spacing(1.25)},"& > div:first-of-type":{marginTop:0},"& > .SCWidget-root, & > .SCCustomAdv-root":{maxWidth:850,marginLeft:"auto",marginRight:"auto"}},"& .SCFeed-left-items":{"& > div":{paddingBottom:e.spacing(2)}},"& .SCFeed-right":{padding:e.spacing(1.25,0),"& > .SCWidget-root":{marginBottom:e.spacing(3)}},"& .SCFeed-start":{"& > .SCWidget-root":{padding:0,marginBottom:e.spacing(2)},"& .SCFeed-header-item":{animation:"pulse-animation 2s ease-in-out","@keyframes pulse-animation":{"0%":{opacity:0}}}},"& .SCFeed-end":{"& > .SCWidget-root":{padding:0,marginBottom:e.spacing(2)}},"& .SCFeed-end-message":{textAlign:"center","& > div":{padding:e.spacing(2)}},"& .SCFeed-refresh":{},"& .SCFeed-pagination-link":{display:"none"}}),skeletonRoot:({theme:e})=>({maxWidth:e.breakpoints.values.lg,"& .SCFeed-left":{padding:0,[e.breakpoints.up("sm")]:{padding:e.spacing(1.25)},"&:last-child":{paddingBottom:e.spacing(4)},"& > .SCWidget-root":{marginBottom:e.spacing(2)}},"& .SCFeed-right":{padding:e.spacing(1.25,0),"& .SCWidget-root":{marginBottom:e.spacing(3)}}})}}},8050:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({width:"100%","& .SCFeedObject-title-section":{"& a":{textDecoration:"none"},"& a:hover":{textDecoration:"underline"}},"& .SCFeedObject-username":{textDecoration:"none",color:e.palette.text.primary},"& .SCFeedObject-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium},"& .SCFeedObject-header":{paddingTop:e.spacing(1),paddingBottom:0,"& .MuiCardHeader-subheader":{display:"flex",alignItems:"center"}},"& .SCFeedObject-category":{color:e.palette.primary.main,textAlign:"center",borderBottom:"1px solid rgba(0, 0, 0, 0.12)",maxHeight:30,display:"flex",flexDirection:"row",overflowY:"hidden",overflowX:"auto",justifyContent:"center",MsOverflowStyle:"none",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},"& a:not(.MuiChip-clickable)":{color:"inherit",textDecoration:"none","&::after":{content:'"\\2022"',padding:e.spacing()},"&:last-child::after":{display:"none"},"&:hover":{color:e.palette.secondary.main},"& span":{textTransform:"initial",fontWeight:e.typography.fontWeightBold}},"& .SCFeedObject-group, & .SCFeedObject-event":{marginRight:`${e.spacing(1)} !important`}},"& .SCFeedObject-group, & .SCFeedObject-event":{justifyContent:"flex-start",padding:e.spacing(.5),"& a":{padding:e.spacing(.5),marginBottom:e.spacing(.5),color:e.palette.common.white,"&:hover":{backgroundColor:e.palette.common.black},"& span":{color:e.palette.common.white,textTransform:"initial"}}},"& .SCFeedObject-content":{padding:e.spacing(1,0,0,0),"&.SCFeedObject-error":{padding:e.spacing(2),textAlign:"center"}},"& .SCFeedObject-snippet":{"& > div":{alignItems:"flex-start"},"& .SCBaseItem-text":{marginTop:0}},"& .SCFeedObject-snippet-content a":{textDecoration:"none",color:e.palette.text.secondary},"& .SCFeedObject-tag":{display:"inline-flex"},"& .SCFeedObject-location":{display:"inline-flex"},"& .SCFeedObject-actions-section":{padding:0,display:"flex",flexDirection:"column"},"& .SCFeedObject-reply-content":{width:"100%",boxSizing:"border-box",margin:0,padding:e.spacing(.2,2)},"& .SCFeedObject-info-section":{padding:e.spacing(0,2)},"& .SCFeedObject-activity-at":{textDecoration:"none",color:"inherit",marginTop:0},"& .SCFeedObject-deleted":{opacity:.3,"&:hover":{opacity:1}},"&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search, &.SCFeedObject-share":{border:"0 none",boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",borderRadius:0,[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius},"& .SCFeedObject-category":{borderBottom:"1px solid rgba(221, 221, 221, 1)",margin:e.spacing(0,2),"& .SCFeedObject-group, & .SCFeedObject-event":{borderBottom:"none",margin:e.spacing(0),"& .MuiChip-icon":{marginLeft:e.spacing(1),marginRight:e.spacing(-1),fontWeight:e.typography.fontWeightRegular}}},"& .SCFeedObject-group, & .SCFeedObject-event":{borderBottom:"1px solid rgba(221, 221, 221, 1)",margin:e.spacing(1,2,0,2)},"& .SCFeedObject-header":{"& .MuiCardHeader-avatar":{marginRight:e.spacing(1.5),".MuiBadge-badge":{right:e.spacing(.25)}},"& .SCFeedObject-username":{fontWeight:e.typography.fontWeightBold},"& .MuiCardHeader-subheader":{fontSize:"0.857rem",color:e.palette.primary.main,"& .SCFeedObject-activity-at":{display:"inline-flex","&:hover":{color:"inherit",textDecoration:"underline"}},"& .SCFeedObject-tag, & .SCFeedObject-location":{"& .MuiIcon-root":{fontSize:"1rem",color:"inherit"}}}},"& .SCFeedObject-content":{"& .SCFeedObject-title-section":{"& .SCFeedObject-title":{fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(1),padding:e.spacing(0,2)},"& a":{color:"inherit"}},"& .SCFeedObject-text-section":{overflowWrap:"anywhere","& > :first-of-type":{marginBottom:0,padding:e.spacing(0,2,.5),display:"block"},"& hr":{margin:"1em 0"},"& a":{color:e.palette.text.secondary,textDecoration:"underline","&:hover":{textDecoration:"none",cursor:"pointer"}},"& img":{maxWidth:"100%"},"& blockquote":{margin:0,marginLeft:e.spacing(2),marginBottom:e.spacing(1),color:e.palette.text.secondary,borderLeftColor:e.palette.primary.main,borderLeftWidth:e.spacing(.25),borderLeftStyle:"solid",paddingLeft:e.spacing(2)},"& h1":{fontSize:"1.429rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,1,0)},"& h2":{fontSize:"1.143rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.8,0)},"& h3":{fontSize:"1rem",color:e.palette.text.primary,fontWeight:e.typography.fontWeightBold,margin:e.spacing(0,0,.5,0)},"& p":{margin:0},"& b":{fontWeight:"bold"},"& i":{fontStyle:"italic"},"& u":{textDecoration:"underline"},"& s":{textDecoration:"line-through"},"& sub":{fontSize:"0.8em",verticalAlign:"sub !important"},"& sup":{fontSize:"0.8em",verticalAlign:"super"},"& ol":{padding:0,margin:0},"& ol ol":{padding:0,margin:0,listStyleType:"upper-alpha"},"& ol ol ol":{padding:0,margin:0,listStyleType:"lower-alpha"},"& ol ol ol ol":{padding:0,margin:0,listStyleType:"upper-roman"},"& ol ol ol ol ol":{padding:0,margin:0,listStyleType:"lower-roman"},"& ul":{padding:0,margin:0},"& li":{margin:"0 32px"},"& span span":{display:"inline-block",width:"100%"}},"& .SCFeedObject-medias-section":{"& .SCFeedObjectMediaPreview-root":{margin:e.spacing(0,1)}},"& .SCFeedObject-show-more":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightBold,padding:e.spacing(.25),justifyContent:"start","&:hover":{backgroundColor:"transparent"}}},"& .SCFeedObject-actions-section":{"&:last-of-type":{marginBottom:0},"& .SCFeedObject-actions-root":{margin:0,padding:e.spacing(.2,2,0,2),"& .SCFeedObject-actions-action":{marginTop:0,"& .SCFeedObject-action-vote-view-audience-button, & .SCFeedObject-action-comment-view-audience-button, & .SCFeedObject-action-share-view-audience-button, & .SCReactionAction-view-audience-button":{fontSize:"0.857rem",fontWeight:e.typography.fontWeightRegular,marginTop:e.spacing(0),marginBottom:0,color:e.palette.primary.main,"&:hover":{color:"inherit"}},"& .MuiDivider-root":{borderColor:e.palette.grey[300]},"& .SCFeedObject-action-vote-button, & .SCFeedObject-action-comment-button, & .SCFeedObject-action-share-button, & .SCReactionAction-button":{color:e.palette.primary.main,marginTop:e.spacing(-.5),marginBottom:e.spacing(.5),borderRadius:"50%",padding:e.spacing(1),minWidth:0,"& .MuiIcon-root":{fontSize:"1.57rem"},"& > img":{width:"1.57rem",height:"1.57rem"}}}},"& .SCFeedObject-reply-content":{marginLeft:0,background:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity),"& .SCCommentObjectReply-root":{background:"transparent",marginBottom:0,"& .SCCommentObjectReply-comment":{background:"transparent",border:"0 none","& .SCEditor-root":{"& .SCEditor-placeholder":{fontWeight:e.typography.fontWeightMedium},"& .SCEditor-content":{paddingBottom:0,minHeight:0},"& .SCEditor-actions":{bottom:0}},"&.SCCommentObjectReply-has-value .SCEditor-root .SCEditor-actions":{bottom:e.spacing(-4)}}}}},"& .SCFeedObject-activities-section":{"& .SCFeedObject-activities-content":{paddingTop:0,paddingBottom:0,"& .SCFeedObject-activities-menu-selector":{"& .MuiButton-root":{marginTop:e.spacing(.2),fontSize:"0.857rem",fontWeight:e.typography.fontWeightRegular,padding:e.spacing(1)}},"& .SCCommentObject-root":{marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0}},"& .SCCommentObject-skeleton-root":{background:"transparent",marginTop:5,marginBottom:"7px !important","& .SCBaseItem-text":{"& .SCWidget-root":{"& .MuiCardContent-root":{padding:e.spacing()}}}},"& .SCCommentObjectReply-root":{"& .SCCommentObjectReply-comment":{marginBottom:"0 !important",border:`1px solid ${e.palette.grey[300]}`,"& .SCEditor-root":{minHeight:e.spacing(4),marginTop:0,"& .SCEditor-content":{minHeight:0},"& .SCEditor-actions":{bottom:e.spacing(-4)}}}}}},"&.SCFeedObject-snippet":{"& .SCFeedObject-username":{fontSize:"1rem",fontWeight:e.typography.fontWeightBold,display:"block",marginBottom:e.spacing(1)},"& .SCFeedObject-snippet-content":{fontSize:"1rem",marginBottom:e.spacing(1)},"& .SCFeedObject-activity-at":{display:"inline-flex","&:hover":{color:"inherit",textDecoration:"underline"}}},"&.SCFeedObject-detail .SCFeedObject-reply-content":{borderBottom:"0 none"},"&.SCFeedObject-share":{boxShadow:"none",border:"1px solid rgba(0, 0, 0, 0.12)"}}),skeletonRoot:({theme:e})=>({"&.SCFeedObject-preview, &.SCFeedObject-detail, &.SCFeedObject-search":{border:"0 none",boxShadow:"0px 0px 10px rgba(0, 0, 0, 0.1)",borderRadius:0,[e.breakpoints.up("sm")]:{borderRadius:e.shape.borderRadius}},"& .SCFeedObject-media":{height:250,marginBottom:20},"& .SCFeedObject-snippet > *":{paddingLeft:0,paddingRight:0}}),actionsRoot:({theme:e})=>({margin:"0px 0px",color:"#3A3A3A","& .SCFeedObject-actions-action":{textAlign:"center"}}),actionCommentRoot:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column","&.SCFeedObject-action-share-inline":{flexDirection:"row-reverse"},"& .SCFeedObject-action-vote-divider":{width:"100%",borderBottom:0}}),actionFollowRoot:({theme:e})=>({"& .SCFeedObject-action-follow-button":{color:e.palette.primary.main,"&.SCFeedObject-action-follow-iconized":{borderRadius:"50%",padding:e.spacing(1),minWidth:"auto",fontSize:"1.429rem"},"&.SCFeedObject-action-follow-followed":{color:e.palette.secondary.main}}}),actionShareRoot:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column","&.SCFeedObject-action-share-inline":{flexDirection:"row-reverse"},"& .SCFeedObject-action-vote-divider":{width:"100%",borderBottom:0},"& .SCFeedObject-action-share-view-audience-button":{whiteSpace:"nowrap"}}),actionVoteRoot:({theme:e})=>({display:"flex",justifyContent:"center",alignItems:"center",flexDirection:"column","&.SCFeedObject-action-vote-inline":{flexDirection:"row-reverse"},"& .SCFeedObject-action-vote-divider":{width:"100%",borderBottom:0}}),activitiesRoot:({theme:e})=>({width:"100%"}),activitiesMenuRoot:({theme:e})=>({"& .SCFeedObject-activities-menu-selector":{display:"flex",alignItems:"center",textAlign:"center",justifyContent:"flex-end"},"& .SCFeedObject-activities-menu-selector .MuiButton-root":{textTransform:"capitalize",fontWeight:e.typography.fontWeightBold}}),contributorsRoot:({theme:e})=>({"& .SCFeedObject-contributors-btn-participants":{padding:e.spacing(.5),marginLeft:e.spacing(-.5),color:"inherit",fontWeight:e.typography.fontWeightLight,fontSize:"0.875rem"},minHeight:28,marginTop:0,marginBottom:0,"& .MuiAvatarGroup-root":{justifyContent:"flex-end"},"& .MuiAvatar-root":{backgroundColor:"#d5d5d5",border:"2px solid #FFF !important",color:"#FFF",fontSize:"0.55rem",width:e.selfcommunity.user.avatar.sizeSmall,height:e.selfcommunity.user.avatar.sizeSmall,marginLeft:e.spacing(-1),lineHeight:"24px"}}),contributorsSkeletonRoot:({theme:e})=>({}),pollObjectRoot:({theme:e})=>({marginTop:e.spacing(1),marginBottom:e.spacing(1),borderTop:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,borderBottom:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`,boxShadow:"none",borderRadius:0,"& .MuiButton-root":{"&:focus:not(:focus-visible)":{borderColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}},"& .MuiCardHeader-root":{textAlign:"center",padding:e.spacing(2),"& .SCFeedObject-poll-object-toggle-button":{fontSize:"0.875rem",textTransform:"uppercase","& .MuiButton-endIcon":{display:"none"},"& .SCFeedObject-poll-object-expand-icon":{marginBottom:2,marginLeft:-2,transition:e.transitions.create("transform",{duration:e.transitions.duration.shortest})},"& .SCFeedObject-poll-object-collapsed-icon":{transform:"rotate(180deg)"}}},"& .SCFeedObject-poll-object-title":{textAlign:"center",color:e.palette.text.primary,marginBottom:e.spacing(1),fontWeight:e.typography.fontWeightBold,wordWrap:"break-word"},"& .SCFeedObject-poll-object-voters, & .SCFeedObject-poll-object-votes":{display:"flex",margin:e.spacing(1),alignItems:"center",justifyContent:"center","& .MuiIcon-root":{width:"1em",marginRight:e.spacing(1)}},"& .SCFeedObject-poll-object-expiration, & .SCFeedObject-poll-object-close, & .SCFeedObject-poll-object-voters":{textAlign:"center",color:e.palette.text.secondary,marginBottom:e.spacing(2.5),fontWeight:e.typography.fontWeightLight,fontSize:"0.765rem"},"& .SCFeedObject-poll-object-voters .MuiTypography-root":{fontWeight:e.typography.fontWeightLight,fontSize:"1rem"},"& ul":{padding:e.spacing(2.5),marginBottom:e.spacing(2.5),backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity),borderRadius:e.shape.borderRadius,"& li":{padding:0}}}),pollObjectChoicesRoot:({theme:e})=>({backgroundColor:"transparent",marginBottom:e.spacing(3),padding:0,width:"100%",borderRadius:0,"& .SCFeedObject-poll-object-choices-label, & .SCFeedObject-poll-object-choices-vote":{marginBottom:0,fontWeight:e.typography.fontWeightBold},"& .SCFeedObject-poll-object-choices-progress":{display:"flex",flexDirection:"row",alignItems:"center",marginBottom:0,"& .MuiLinearProgress-root":{height:10,borderRadius:e.shape.borderRadius,flexGrow:2,marginRight:e.spacing(2),backgroundColor:e.palette.common.white},"& > .MuiTypography-root":{fontSize:"0.987rem",fontWeight:e.typography.fontWeightLight}}}),relevantActivitiesRoot:({theme:e})=>({"& .SCFeedObject-relevant-activities-activity":{"& > .SCBaseItem-root":{borderRadius:0,marginBottom:e.spacing(2),"& .SCBaseItem-content":{alignItems:"flex-start","& .SCBaseItem-text":{margin:0,"& .SCBaseItem-primary":{display:"inline-block",marginBottom:e.spacing(.5),"& a:nth-of-type(1)":{fontWeight:e.typography.fontWeightBold,textDecoration:"none"},"& a":{color:e.palette.text.secondary,textDecoration:"underlined","&:hover":{textDecoration:"none"}}},"& .SCBaseItem-secondary":{fontSize:"0.857rem"}}}},"& .SCFeedObject-activity-comment-username, & .SCFeedObject-activity-follow-username, & .SCFeedObject-activity-poll-vote-username, & .SCFeedObject-activity-vote-up-username":{color:"inherit"},"& .SCFeedObject-activity-comment-avatar, & .SCFeedObject-activity-follow-avatar, & .SCFeedObject-activity-poll-vote-avatar, & .SCFeedObject-activity-vote-up-avatar":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}),activityCommentRoot:({theme:e})=>({}),activityFollowRoot:({theme:e})=>({}),activityPollVoteRoot:({theme:e})=>({}),activityVoteUpRoot:({theme:e})=>({})}};t.default=n},4060:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCCommentsFeedObject-root":{padding:e.spacing(2,1),"& .SCCommentsObject-root h6":{paddingLeft:e.spacing(2)}},"& .SCFeedObject-detail":{"& .SCFeedObject-content":{"& .SCFeedObject-text-section .SCFeedObject-text":{"& span":{display:"inline-block",width:"100%"}}}}}),skeletonRoot:({theme:e})=>({marginTop:e.spacing(2),"& .SCCommentsObject-skeleton-root":{"& .SCWidget-root":{marginBottom:"0px !important"}},"& .SCCommentObject-skeleton-root":{background:"transparent",boxShadow:"none",border:0,paddingLeft:"0px !important","& .SCCommentObject-skeleton-root":{marginBottom:"0px !important"}}})}}},2319:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},1634:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({textAlign:"center",marginBottom:e.spacing(2),"& div:last-child":{paddingBottom:e.spacing(2)},"& .MuiCardContent-root":{" > .MuiButton-sizeMedium":{marginLeft:-3,marginTop:-1}},"& .SCFeedUpdatesWidget-button-load-more":{textTransform:"capitalize"}}),skeletonRoot:({theme:e})=>({})}}},2e3:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCFooter-copyright":{marginTop:e.spacing(3),fontSize:"0.857rem"},"& .SCFooter-item-list":{display:"flex",justifyContent:"center",flexDirection:"row","& .SCFooter-item":{padding:e.spacing(.5,1),color:e.palette.text.primary}}}),skeletonRoot:({theme:e})=>({})}}},6886:(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.borderRadiusSm},"& .SCBaseItemButton-image":{marginRight:e.spacing(1.25),"& .MuiAvatar-root":{width:e.selfcommunity.group.avatar.sizeSmall,height:e.selfcommunity.group.avatar.sizeSmall,"& img":{borderRadius:0}}},"& .SCBaseItemButton-primary":{display:"flex",alignItems:"center",fontWeight:e.typography.fontWeightBold,"& .SCGroup-icon":{marginLeft:e.spacing(.5)}},"& .SCBaseItemButton-secondary":{fontSize:"0.857rem"},"& .SCGroup-actions":{"& .MuiIcon-root":{fontSize:"1.286rem",color:e.palette.primary.main},"& .MuiButtonBase-root":{marginLeft:e.spacing(1)}}}),skeletonRoot:({theme:e})=>({})}}},8775:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .MuiDivider-root":{margin:e.spacing(1)},"& .MuiIcon-root":{fontSize:"15px"}}),drawerRoot:({theme:e})=>({"& .SCGroupActionsMenu-item":{paddingTop:0,paddingBottom:0},"& .MuiDivider-root":{margin:e.spacing(2)},"& .MuiIcon-root":{fontSize:"15px"}})}}},9819:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({})}}},9697:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& .SCGroupInfoWidget-root":{padding:e.spacing(1)}}),skeletonRoot:({theme:e})=>({marginTop:0,[e.breakpoints.up("md")]:{marginTop:30}})}}},2579:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .SCGroupForm-cover":{position:"relative",height:120,minHeight:120,"& .SCGroupForm-avatar":{top:120,display:"block",position:"absolute",transform:"translate(-50%, -50%)",left:"50%","& .MuiAvatar-root":{height:e.selfcommunity.group.avatar.sizeMedium,width:e.selfcommunity.group.avatar.sizeMedium,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover","& img":{height:e.selfcommunity.group.avatar.sizeMedium,width:e.selfcommunity.group.avatar.sizeMedium}}},"& .SCChangeGroupPictureButton-root":{top:120,left:"50%",transform:"translate(90%, -50%)",position:"relative",display:"flex"},"& .SCChangeGroupCoverButton-root":{position:"absolute",right:e.spacing(2),bottom:e.spacing(2)}},"& .SCGroupForm-header":{marginTop:e.spacing(4.5),color:e.palette.text.secondary},"& .SCGroupForm-error":{color:e.palette.error.main},"& .SCGroupForm-switch":{"& .MuiButtonBase-root":{"&.Mui-checked":{color:e.palette.secondary.main,"& + .MuiSwitch-track":{backgroundColor:e.palette.secondary.main}}}},"& .SCGroupForm-switch-label":{fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",justifyContent:"center",gap:e.spacing(.5)},"& .SCGroupForm-active":{color:e.palette.secondary.main},"& .SCGroupForm-privacy-section":{marginTop:e.spacing(2),"& .SCGroupForm-privacy-section-info":{marginBottom:e.spacing(2)}},"& .SCGroupForm-visibility-section-info":{marginTop:e.spacing(1)},"& .MuiDivider-root":{marginTop:e.spacing(2),border:`1px solid ${(0,i.alpha)(e.palette.primary.main,e.palette.action.activatedOpacity)}`},"& .SCGroupForm-invite-section":{marginTop:e.spacing(2),display:"flex",justifyContent:"center",alignItems:"center"}})}};t.default=n},4290:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroupHeader-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)}},"& .SCGroupHeader-info":{marginTop:e.spacing(6.5),display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center","& .SCGroupHeader-members":{marginBottom:`${e.spacing(0)} !important`,"& .SCGroupHeader-members-counter":{fontSize:"1rem",fontWeight:e.typography.fontWeightRegular,display:"inline"}},"& .SCGroupHeader-visibility":{display:"flex",justifyContent:"center",alignItems:"center",gap:e.spacing(1),"& .SCGroupHeader-visibility-item":{fontSize:e.typography.fontSize,fontWeight:e.typography.fontWeightLight,display:"flex",justifyContent:"center",alignItems:"center",gap:e.spacing(.5)}},"& .SCGroupHeader-multi-actions":{display:"flex",marginLeft:"auto",marginTop:e.spacing(-4.25),"& .SCEditGroupButton-root":{marginRight:e.spacing(1)}},"& .SCGroupSubscribeButton-root":{marginTop:e.spacing(1)}},"& .SCGroupHeader-avatar":{top:230,display:"block",position:"absolute",transform:"translate(-50%, -50%)",left:"50%","& .MuiAvatar-root":{height:e.selfcommunity.group.avatar.sizeLarge,width:e.selfcommunity.group.avatar.sizeLarge,borderRadius:"50%",border:`#FFF solid ${e.spacing(.5)}`,objectFit:"cover"}},"& .SCGroupHeader-change-picture":{top:230,left:"50%",transform:"translate(90%, -50%)",position:"relative",display:"flex"},"& .SCGroupHeader-name":{marginBottom:e.spacing(1),fontWeight:e.typography.fontWeightBold,fontSize:"1.429rem",textAlign:"center"},"& .SCGroupHeader-change-cover":{position:"absolute",right:e.spacing(2),bottom:e.spacing(2)}}),skeletonRoot:({theme:e})=>({position:"relative","& .SCGroupHeader-cover":{[e.breakpoints.up("md")]:{borderRadius:e.spacing(0,0,2.5,2.5)},height:230},"& .SCGroupHeader-avatar":{top:230,display:"block",position:"absolute",transform:"translate(-50%, -50%)",left:"50%","& .MuiSkeleton-root":{border:"#FFF solid 5px"}},"& .SCGroupHeader-info":{display:"flex",justifyContent:"center",flexDirection:"column",alignItems:"center",marginTop:60}})}}},1064:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroupInfoWidget-title":{fontWeight:e.typography.fontWeightBold,marginBottom:e.spacing(1)},"& .SCGroupInfoWidget-description":{marginBottom:e.spacing(1)},"& .SCGroupInfoWidget-privacy":{marginBottom:e.spacing(1),"& .SCGroupInfoWidget-privacy-title":{color:e.palette.secondary.main,fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",gap:e.spacing(.5)}},"& .SCGroupInfoWidget-visibility-title":{color:e.palette.secondary.main,fontWeight:e.typography.fontWeightMedium,display:"flex",alignItems:"center",gap:e.spacing(.5)},"& .SCGroupInfoWidget-date":{paddingTop:`${e.spacing(1)} !important`},"& .SCGroupInfoWidget-admin":{marginTop:e.spacing(1)}}),skeletonRoot:({theme:e})=>({})}}},4331:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(8719),n={styleOverrides:{root:({theme:e})=>({"& .MuiButton-startIcon":{marginRight:e.spacing(.5),"& .MuiIcon-root":{fontSize:"0.75rem !important"}}}),dialogRoot:({theme:e})=>({"& .SCBaseDialog-title-root span ":{width:"100%",display:"flex",alignItems:"center",justifyContent:"space-between","& .SCGroupInviteButton-dialog-title":{fontWeight:e.typography.fontWeightBold,fontSize:e.typography.h4.fontSize}},"& .SCGroupInviteButton-input":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.selectedOpacity),borderRadius:e.shape.borderRadius,height:e.spacing(3.75),padding:e.spacing(.5,1),"& .SCGroupInviteButton-icon ":{marginLeft:e.spacing(1)},"&.Mui-focused .MuiOutlinedInput-notchedOutline":{border:"1px solid"}},"& .SCGroupInviteButton-invited-box":{marginTop:e.spacing(2),marginBottom:e.spacing(3),"& .MuiChip-root":{marginBottom:e.spacing(1)}},"& .SCGroupInviteButton-suggested":{"& h4":{marginBottom:e.spacing(1)},"& .SCUser-root":{"&:hover":{backgroundColor:(0,i.alpha)(e.palette.primary.main,e.palette.action.hoverOpacity)}}}})}};t.default=n},8825:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},1920:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e,subscribers:t})=>({padding:e.spacing(),"& .MuiAvatarGroup-root":{"&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root":{"&.MuiAvatar-colorDefault":{marginLeft:0,backgroundColor:"transparent",color:e.palette.primary.main,border:"0 none",borderRadius:0,padding:1}},"& .MuiAvatar-root":{height:e.selfcommunity.user.avatar.sizeSmall,border:`1px solid ${e.palette.common.white}`,fontSize:"0.7rem","&:first-of-type":{width:t>3?"auto":e.selfcommunity.user.avatar.sizeSmall},"&:not(:first-of-type)":{width:e.selfcommunity.user.avatar.sizeSmall}}}}),dialogRoot:()=>({})}}},9453:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroupMembersWidget-actions":{margin:e.spacing(0,0,2,1)}}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},9353:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),dialogRoot:({theme:e})=>({})}}},2647:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({}),menuRoot:({theme:e})=>({"& .SCGroupSettingsIconButton-paper":{maxWidth:400,padding:e.spacing(1)}}),drawerRoot:({theme:e})=>({"& .MuiList-root":{"& a":{color:"inherit"}}})}}},4422:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginTop:0,"& .SCCategoryTemplate-feed":{marginTop:e.spacing(2)},"& .SCGroupInfoWidget-root":{marginTop:e.spacing(2)}}),skeletonRoot:({theme:e})=>({marginTop:0,[e.breakpoints.up("md")]:{marginTop:30}})}}},7172:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCGroups-skeleton-root ":{"& .MuiGrid-item":{paddingTop:0}},"& .MuiGrid-container":{justifyContent:"center"},"& .SCGroups-filters":{marginTop:e.spacing(),marginBottom:e.spacing(2)},"& .SCGroups-groups":{marginTop:e.spacing(2),"& .SCGroups-item":{[e.breakpoints.up("md")]:{padding:e.spacing(2)},width:"auto","& > div":{cursor:"default",padding:e.spacing(1)}}},"& .SCGroups-no-results":{marginTop:e.spacing(3),display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center","& h4":{fontWeight:e.typography.fontWeightBold,fontSize:e.typography.h4.fontSize},"& .MuiTypography-body1":{fontWeight:e.typography.fontWeightMedium,fontSize:e.typography.body1.fontSize}},"& .SCGroups-end-message":{display:"flex",alignItems:"center",justifyContent:"center","& .MuiButtonBase-root":{paddingLeft:e.spacing(1),"&.Mui-selected, &:hover":{backgroundColor:"transparent"}}}}),skeletonRoot:({theme:e})=>({"& .SCGroups-groups":{justifyContent:"center",marginTop:e.spacing(3),"& .SCGroup-skeleton-root":{padding:e.spacing(1),width:"auto"}}})}}},7576:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({width:"100%","& .MuiCardContent-root":{padding:e.spacing(1)},"& .SCIncubator-name":{display:"flex"},"& .SCIncubator-slogan":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"},"& .SCIncubator-progress-bar":{position:"relative",marginTop:e.spacing(1),"& .MuiLinearProgress-root":{height:e.spacing(3)},"& .MuiGrid-item":{paddingTop:e.spacing(0)}},"& .MuiCardActions-root":{marginLeft:e.spacing(1)}}),skeletonRoot:({theme:e})=>({width:"100%","& .MuiCardContent-root":{"& .SCIncubator-secondary":{marginTop:e.spacing(1)},"& .SCIncubator-progress-bar":{marginTop:e.spacing(1)}},"& .MuiCardActions-root":{marginLeft:e.spacing(2)}})}}},6096:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCIncubatorDetail-share-card":{margin:e.spacing()}})}}},5137:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)},"& .SCIncubatorListWidget-header":{display:"flex",alignItems:"center"},"& .SCIncubatorListWidget-actions":{display:"flex",justifyContent:"space-between"}}),dialogRoot:({theme:e})=>({}),skeletonRoot:({theme:e})=>({}),createDialogRoot:({theme:e})=>({margin:2,[e.breakpoints.down(500)]:{minWidth:300},"& .SCIncubatorListWidget-intro":{whiteSpace:"pre-line"},"& .SCIncubatorListWidget-form":{marginTop:e.spacing(1),marginBottom:e.spacing(1)},"& .SCIncubatorListWidget-name":{"& .MuiInputBase-root":{height:"40px"}},"& .SCIncubatorListWidget-submitted-message":{padding:e.spacing(1),borderRadius:"8px",backgroundColor:"#bdd5bd"}})}}},7972:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .MuiCardContent-root":{padding:e.spacing(2)}}),dialogRoot:({theme:e})=>({}),skeletonRoot:({theme:e})=>({})}}},9002:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({marginBottom:e.spacing(2),"& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child":{padding:e.spacing(.5,2),display:"flex",flexDirection:"row",justifyContent:"space-between",[e.breakpoints.up("sm")]:{padding:e.spacing(.5,1,.5,2)},"& .SCInlineComposerWidget-input":{display:"flex",flexGrow:2,"& .MuiButton-root":{fontWeight:e.typography.fontWeightMedium,letterSpacing:"0.17px",padding:e.spacing(.5,0),"&:hover":{color:e.palette.text.secondary,background:"white",border:"none"}},"& .MuiButton-text":{justifyContent:"flex-start",textTransform:"none"}},"& .SCInlineComposerWidget-avatar":{display:"flex",alignItems:"center",[e.breakpoints.up("sm")]:{marginLeft:e.spacing(2)},"& .MuiAvatar-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}}),skeletonRoot:({theme:e})=>({marginBottom:e.spacing(2),"& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child":{padding:e.spacing(.5,1),display:"flex",flexDirection:"row",justifyContent:"space-between",[e.breakpoints.up("sm")]:{padding:e.spacing(.5,1,.5,2)},"& .SCInlineComposerWidget-input":{display:"flex",flexGrow:2,height:30,width:"80%","& .MuiSkeleton-root":{width:"100%",height:"100%"}},"& .SCInlineComposerWidget-avatar":{display:"flex",alignItems:"center",[e.breakpoints.up("sm")]:{marginLeft:e.spacing(2)},"& .MuiSkeleton-root":{width:e.selfcommunity.user.avatar.sizeMedium,height:e.selfcommunity.user.avatar.sizeMedium}}}})}}},9078:(e,t)=>{t.__esModule=!0,t.default=void 0;t.default={styleOverrides:{root:({theme:e})=>({"& .SCLanguageSwitcher-label":{fontWeight:e.typography.fontWeightBold},"& .MuiInputBase-root":{textTransform:"uppercase"},"& fieldset.MuiOutlinedInput-notchedOutline":{borderWidth:0}})}}},116:(e,t,o)=>{t.__esModule=!0,t.default=void 0;var i=o(5435);let n,a,r,d=e=>e;var s={styleOverrides:{root:({theme:e})=>{const t=(0,i.keyframes)(n||(n=d`
|
|
3
3
|
0% {
|
|
4
4
|
transform: rotate(0deg)
|
|
5
5
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/react-theme-default",
|
|
3
|
-
"version": "0.4.2-alpha.
|
|
3
|
+
"version": "0.4.2-alpha.3",
|
|
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.6.4-alpha.0",
|
|
69
|
-
"@selfcommunity/react-ui": "^0.10.2-alpha.
|
|
69
|
+
"@selfcommunity/react-ui": "^0.10.2-alpha.3",
|
|
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": "
|
|
120
|
+
"gitHead": "0e2bee55d24019c545a2e1a882a9df659b071a84"
|
|
121
121
|
}
|