@dialpad/dialtone 8.19.0 → 8.20.1

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.
@@ -89,7 +89,7 @@
89
89
  // ----------------------------------------------------------------------------
90
90
  .d-checkbox-group,
91
91
  .d-radio-group {
92
- display: flex;
92
+ display: inline-flex;
93
93
  gap: var(--dt-space-400); // 8
94
94
 
95
95
  // -- Wrapper Disabled State
@@ -103,6 +103,12 @@
103
103
  }
104
104
  }
105
105
 
106
+ .d-input-group__fieldset {
107
+ display: flex;
108
+ flex-direction: column;
109
+ align-items: flex-start;
110
+ }
111
+
106
112
 
107
113
  // ============================================================================
108
114
  // $ INPUT BLOCKS
@@ -131,6 +137,7 @@
131
137
  display: inline-flex;
132
138
  flex: 1 auto;
133
139
  flex-direction: column;
140
+ align-items: flex-start;
134
141
  color: var(--dt-color-foreground-primary);
135
142
  font-weight: var(--dt-font-weight-normal);
136
143
  font-size: var(--dt-font-size-200);
@@ -15,13 +15,22 @@
15
15
  .d-root-layout {
16
16
  position: relative;
17
17
  display: grid;
18
- grid-template:
19
- 'header' auto
20
- 'body' 1fr
21
- 'footer' auto / 1fr;
22
- width: 100%;
18
+ grid-template-areas:
19
+ 'header header'
20
+ 'sidebar body'
21
+ 'footer footer';
22
+ grid-template-rows: min-content 1fr min-content;
23
+ grid-template-columns: min-content 1fr;
23
24
  min-height: 100vh;
24
25
 
26
+ &--inverted {
27
+ grid-template-areas:
28
+ 'header header'
29
+ 'body sidebar'
30
+ 'footer footer';
31
+ grid-template-columns: 1fr min-content;
32
+ }
33
+
25
34
  &--fixed {
26
35
  height: 100vh;
27
36
  }
@@ -32,36 +41,19 @@
32
41
  &--sticky {
33
42
  position: sticky;
34
43
  top: 0;
35
- z-index: var(--zi-base1);
36
- }
37
- }
38
-
39
- &__body {
40
- display: flex;
41
- grid-area: body;
42
- height: 100%;
43
- overflow: auto;
44
- box-shadow: none;
45
-
46
- &--invert {
47
- flex-direction: row-reverse;
44
+ z-index: var(--zi-navigation);
48
45
  }
49
46
  }
50
47
 
51
48
  &__sidebar {
52
- flex-shrink: 0;
49
+ grid-area: sidebar;
53
50
  height: 100%;
54
51
  box-shadow: none;
55
-
56
- &--sticky {
57
- position: sticky;
58
- top: 0;
59
- overflow: auto;
60
- }
61
52
  }
62
53
 
63
54
  &__content {
64
- flex: 1;
55
+ grid-area: body;
56
+ overflow-y: auto;
65
57
  box-shadow: none;
66
58
 
67
59
  &:focus-visible {
@@ -76,36 +68,36 @@
76
68
 
77
69
  @media (max-width: 480px) {
78
70
  .d-root-layout__responsive--sm {
79
- .d-root-layout__body {
80
- flex-direction: column;
81
-
82
- &--invert {
83
- flex-direction: column-reverse;
84
- }
85
- }
71
+ grid-template-areas:
72
+ 'header'
73
+ 'sidebar'
74
+ 'body'
75
+ 'footer';
76
+ grid-template-rows: min-content min-content 1fr min-content;
77
+ grid-template-columns: 1fr;
86
78
  }
87
79
  }
88
80
 
89
81
  @media (max-width: 640px) {
90
82
  .d-root-layout__responsive--md {
91
- .d-root-layout__body {
92
- flex-direction: column;
93
-
94
- &--invert {
95
- flex-direction: column-reverse;
96
- }
97
- }
83
+ grid-template-areas:
84
+ 'header'
85
+ 'sidebar'
86
+ 'body'
87
+ 'footer';
88
+ grid-template-rows: min-content min-content 1fr min-content;
89
+ grid-template-columns: 1fr;
98
90
  }
99
91
  }
100
92
 
101
93
  @media (max-width: 980px) {
102
94
  .d-root-layout__responsive--lg {
103
- .d-root-layout__body {
104
- flex-direction: column;
105
-
106
- &--invert {
107
- flex-direction: column-reverse;
108
- }
109
- }
95
+ grid-template-areas:
96
+ 'header'
97
+ 'sidebar'
98
+ 'body'
99
+ 'footer';
100
+ grid-template-rows: min-content min-content 1fr min-content;
101
+ grid-template-columns: 1fr;
110
102
  }
111
103
  }
@@ -2792,7 +2792,7 @@ legend .d-label {
2792
2792
  }
2793
2793
  .d-checkbox-group,
2794
2794
  .d-radio-group {
2795
- display: flex;
2795
+ display: inline-flex;
2796
2796
  gap: var(--dt-space-400);
2797
2797
  }
2798
2798
  .d-checkbox-group.d-checkbox-group--disabled .d-checkbox__label,
@@ -2806,6 +2806,11 @@ legend .d-label {
2806
2806
  color: var(--dt-color-foreground-disabled);
2807
2807
  cursor: not-allowed;
2808
2808
  }
2809
+ .d-input-group__fieldset {
2810
+ display: flex;
2811
+ flex-direction: column;
2812
+ align-items: flex-start;
2813
+ }
2809
2814
  .d-checkbox__input,
2810
2815
  .d-radio__input {
2811
2816
  display: flex;
@@ -2822,6 +2827,7 @@ legend .d-label {
2822
2827
  display: inline-flex;
2823
2828
  flex: 1 auto;
2824
2829
  flex-direction: column;
2830
+ align-items: flex-start;
2825
2831
  color: var(--dt-color-foreground-primary);
2826
2832
  font-weight: var(--dt-font-weight-normal);
2827
2833
  font-size: var(--dt-font-size-200);
@@ -3768,10 +3774,18 @@ legend .d-label {
3768
3774
  .d-root-layout {
3769
3775
  position: relative;
3770
3776
  display: grid;
3771
- grid-template: 'header' auto 'body' 1fr 'footer' auto / 1fr;
3772
- width: 100%;
3777
+ grid-template-areas: 'header header' 'sidebar body' 'footer footer';
3778
+ grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
3779
+ grid-template-rows: min-content 1fr min-content;
3780
+ grid-template-columns: -webkit-min-content 1fr;
3781
+ grid-template-columns: min-content 1fr;
3773
3782
  min-height: 100vh;
3774
3783
  }
3784
+ .d-root-layout--inverted {
3785
+ grid-template-areas: 'header header' 'body sidebar' 'footer footer';
3786
+ grid-template-columns: 1fr -webkit-min-content;
3787
+ grid-template-columns: 1fr min-content;
3788
+ }
3775
3789
  .d-root-layout--fixed {
3776
3790
  height: 100vh;
3777
3791
  }
@@ -3781,30 +3795,16 @@ legend .d-label {
3781
3795
  .d-root-layout__header--sticky {
3782
3796
  position: sticky;
3783
3797
  top: 0;
3784
- z-index: var(--zi-base1);
3785
- }
3786
- .d-root-layout__body {
3787
- display: flex;
3788
- grid-area: body;
3789
- height: 100%;
3790
- overflow: auto;
3791
- box-shadow: none;
3792
- }
3793
- .d-root-layout__body--invert {
3794
- flex-direction: row-reverse;
3798
+ z-index: var(--zi-navigation);
3795
3799
  }
3796
3800
  .d-root-layout__sidebar {
3797
- flex-shrink: 0;
3801
+ grid-area: sidebar;
3798
3802
  height: 100%;
3799
3803
  box-shadow: none;
3800
3804
  }
3801
- .d-root-layout__sidebar--sticky {
3802
- position: sticky;
3803
- top: 0;
3804
- overflow: auto;
3805
- }
3806
3805
  .d-root-layout__content {
3807
- flex: 1;
3806
+ grid-area: body;
3807
+ overflow-y: auto;
3808
3808
  box-shadow: none;
3809
3809
  }
3810
3810
  .d-root-layout__content:focus-visible {
@@ -15598,11 +15598,11 @@ body {
15598
15598
  }
15599
15599
 
15600
15600
  @media (max-width: 480px) {
15601
- .d-root-layout__responsive--sm .d-root-layout__body {
15602
- flex-direction: column;
15603
- }
15604
- .d-root-layout__responsive--sm .d-root-layout__body--invert {
15605
- flex-direction: column-reverse;
15601
+ .d-root-layout__responsive--sm {
15602
+ grid-template-areas: 'header' 'sidebar' 'body' 'footer';
15603
+ grid-template-rows: -webkit-min-content -webkit-min-content 1fr -webkit-min-content;
15604
+ grid-template-rows: min-content min-content 1fr min-content;
15605
+ grid-template-columns: 1fr;
15606
15606
  }
15607
15607
  .sm\:d-stack {
15608
15608
  --stack-gap: 0;
@@ -16332,11 +16332,11 @@ body {
16332
16332
  }
16333
16333
 
16334
16334
  @media (max-width: 640px) {
16335
- .d-root-layout__responsive--md .d-root-layout__body {
16336
- flex-direction: column;
16337
- }
16338
- .d-root-layout__responsive--md .d-root-layout__body--invert {
16339
- flex-direction: column-reverse;
16335
+ .d-root-layout__responsive--md {
16336
+ grid-template-areas: 'header' 'sidebar' 'body' 'footer';
16337
+ grid-template-rows: -webkit-min-content -webkit-min-content 1fr -webkit-min-content;
16338
+ grid-template-rows: min-content min-content 1fr min-content;
16339
+ grid-template-columns: 1fr;
16340
16340
  }
16341
16341
  .md\:d-stack {
16342
16342
  --stack-gap: 0;
@@ -17066,11 +17066,11 @@ body {
17066
17066
  }
17067
17067
 
17068
17068
  @media (max-width: 980px) {
17069
- .d-root-layout__responsive--lg .d-root-layout__body {
17070
- flex-direction: column;
17071
- }
17072
- .d-root-layout__responsive--lg .d-root-layout__body--invert {
17073
- flex-direction: column-reverse;
17069
+ .d-root-layout__responsive--lg {
17070
+ grid-template-areas: 'header' 'sidebar' 'body' 'footer';
17071
+ grid-template-rows: -webkit-min-content -webkit-min-content 1fr -webkit-min-content;
17072
+ grid-template-rows: min-content min-content 1fr min-content;
17073
+ grid-template-columns: 1fr;
17074
17074
  }
17075
17075
  .lg\:d-stack {
17076
17076
  --stack-gap: 0;
@@ -18528,4 +18528,4 @@ body {
18528
18528
  }
18529
18529
 
18530
18530
 
18531
- .dt-item-layout[data-v-9afad3c4]{align-items:stretch}.dt-item-layout--content[data-v-9afad3c4]{display:flex;flex-direction:column;justify-content:center}.dt-item-layout--selected[data-v-9afad3c4]{display:flex;align-items:center}.dt-list-item{list-style:none;background-color:var(--dt-action-color-background-muted-default)}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-radius-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-action-color-background-muted-hover)}.dt-list-item--highlighted:active{background-color:var(--dt-action-color-background-muted-active)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.dt-emoji-suggestion-list{background-color:var(--dt-color-surface-secondary)!important;border-color:var(--dt-color-border-subtle)!important;max-height:var(--dt-size-875)!important;overflow:hidden!important;overflow-y:scroll!important}.dt-emoji-suggestion-list .dt-item-layout--title{display:flex}.dt-emoji-suggestion-list-item{display:flex!important;border:var(--dt-size-100) solid transparent;min-width:var(--dt-size-850);width:var(--dt-size-100-percent)!important}.dt-emoji-suggestion-list-item.is-selected{border-color:var(--bc-bold)}.dt-emoji-suggestion-list-text{margin-left:var(--dt-size-350)}.ProseMirror p.is-editor-empty:first-child:before{content:attr(data-placeholder);float:left;color:var(--dt-color-foreground-placeholder);pointer-events:none;height:0}.dt-message-input--remaining-char{font-size:1.2rem}.message-input-button__disabled{background-color:unset;color:var(--theme-sidebar-icon-color);cursor:default}.dt-message-input-notice .d-notice__icon{margin-right:8px}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{-webkit-animation-name:placeholder-throb;animation-name:placeholder-throb;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}.dt-emoji[data-v-6ad3e149]{display:inline-block}.d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.d-avatar--clickable{--avatar-color-border: transparent;cursor:pointer;padding:0;background-color:transparent;border-radius:var(--dt-size-radius-circle);border:var(--dt-size-border-100) solid var(--avatar-color-border)}.d-avatar--clickable:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.d-avatar--clickable:hover{--avatar-color-border: var(--dt-color-border-default)}.d-avatar--clickable:active{--avatar-color-border: var(--dt-color-border-moderate);-webkit-transform:scale(.98);transform:scale(.98)}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:flex}.vue-recycle-scroller__slot{flex:auto 0 0}.vue-recycle-scroller__item-wrapper{flex:1;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-3d0f9d2e]{--contact-info-avatar-border-color: var(--dt-color-surface-primary);display:flex}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout{flex:1 1 0}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start;align-items:center}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--right{min-width:0;align-items:center}.dt-contact-info--avatars .d-avatar[data-v-3d0f9d2e]{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--contact-info-avatar-border-color);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-400);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base1);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.settings-menu-button[data-v-b0dfa8b3]{padding:var(--dt-space-0);border-radius:var(--dt-size-550);height:var(--dt-size-600);width:var(--dt-size-550);color:var(--dt-theme-topbar-button-color-foreground);background-color:var(--dt-theme-topbar-button-color-background)}.settings-menu-button[data-v-b0dfa8b3]:hover{background-color:var(--dt-theme-topbar-button-color-background-hover);color:var(--dt-theme-topbar-button-color-foreground-hover)}.settings-menu-button[data-v-b0dfa8b3]:active{background-color:var(--dt-theme-topbar-button-color-background-active)}.settings-menu-button-update[data-v-b0dfa8b3]{background-color:hsla(var(--dt-color-blue-200-hsl) / 25%);color:var(--dt-color-blue-500);border-color:hsla(var(--dt-color-blue-200-hsl) / 25%);border-radius:var(--dt-size-radius-pill);height:var(--dt-size-600)}.settings-menu-button-update[data-v-b0dfa8b3]:hover{background-color:hsla(var(--dt-color-blue-200-hsl) / 50%);color:var(--dt-theme-topbar-button-color-foreground-hover)}.dt-leftbar-row[data-v-49d75ce6]{--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);--leftbar-row-radius: var(--dt-size-radius-pill);--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--dt-theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-49d75ce6]:hover,.dt-leftbar-row[data-v-49d75ce6]:focus-within{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-49d75ce6]:hover .d-presence,.dt-leftbar-row[data-v-49d75ce6]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-49d75ce6]:hover .d-avatar__count,.dt-leftbar-row[data-v-49d75ce6]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-49d75ce6]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread)}.dt-leftbar-row--unread-count[data-v-49d75ce6] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-49d75ce6]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-49d75ce6]{--leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground)}.dt-leftbar-row--selected[data-v-49d75ce6] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-49d75ce6] .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-49d75ce6]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-49d75ce6]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);-webkit-animation:wave-49d75ce6 1.5s ease infinite;animation:wave-49d75ce6 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-49d75ce6]:nth-child(1){-webkit-animation-delay:0ms;animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-49d75ce6]:nth-child(2){-webkit-animation-delay:var(--td100);animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-49d75ce6]:nth-child(3){-webkit-animation-delay:var(--td200);animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-49d75ce6]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-49d75ce6]:active{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-49d75ce6]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-49d75ce6]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-49d75ce6]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-49d75ce6]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-49d75ce6]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);-webkit-transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:flex-end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-49d75ce6]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-49d75ce6]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-49d75ce6;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-49d75ce6;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-49d75ce6;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-49d75ce6]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-49d75ce6] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);color:var(--leftbar-row-description-color-foreground);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-49d75ce6] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-49d75ce6] .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--dt-theme-sidebar-status-color-foreground)}.dt-leftbar-row__icon-cc[data-v-49d75ce6]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-49d75ce6]{-webkit-animation-name:opacity-pulsate-49d75ce6;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-49d75ce6;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-49d75ce6;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-49d75ce6{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-49d75ce6{0%,to{opacity:.2}50%{opacity:1}}@-webkit-keyframes wave-49d75ce6{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}@keyframes wave-49d75ce6{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--dt-theme-mention-color-background);color:var(--dt-theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-secondary-inverted)}.dt-feed-item-row[data-v-de44d2c0]{transition-duration:2s!important}.dt-feed-item-row .content-text-wrapper-class[data-v-de44d2c0]:not(img){line-height:1.6rem}.dt-feed-item-row[data-v-de44d2c0] .dt-item-layout--left .d-avatar{align-self:flex-start;margin-top:var(--dt-space-300)}.dt-feed-item-pill--border[data-v-59051987]{border:double 1px transparent;border-radius:4.8rem;background-origin:border-box;background-clip:content-box,border-box;overflow:hidden}.dt-feed-item-pill--border-default[data-v-59051987]{background:var(--dt-color-border-default)}.dt-feed-item-pill--border-ai[data-v-59051987]{background-image:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)),var(--dt-badge-color-background-ai)}.dt-feed-item-pill--border-critical[data-v-59051987]{background:var(--dt-color-foreground-critical)}.dt-feed-item-pill--icon[data-v-59051987]{-webkit-animation:fade-59051987 .15s ease-in;animation:fade-59051987 .15s ease-in}@-webkit-keyframes fade-59051987{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes fade-59051987{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.dt-emoji-row{display:flex;flex-wrap:wrap}.dt-emoji-row__reaction{padding:var(--dt-space-300) var(--dt-space-400);gap:var(--dt-space-300);border-radius:var(--dt-size-radius-500);margin-bottom:0;transition-delay:0s;transition-duration:var(--td50);transition-property:all;transition-timing-function:var(--ttf-in-out);color:var(--dt-color-foreground-secondary);background-color:var(--dt-color-surface-moderate-opaque)}.dt-emoji-row__reaction:hover,.dt-emoji-row__reaction:focus{border-color:hsla(var(--dt-color-black-600-hsl)/100%)!important}.dt-emoji-row__reaction--selected{color:var(--dt-color-link-primary);background-color:var(--dt-color-purple-100)!important;border-color:var(--dt-color-brand-purple)!important}.dt-emoji-row__reaction--selected:hover{color:var(--dt-color-link-primary)}.dt-recipe-callbox[data-v-66800ae7]{padding:0;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);border-radius:var(--dt-size-radius-300)}.dt-recipe-callbox--video[data-v-66800ae7]{display:flex;border-radius:var(--dt-size-radius-200) var(--dt-size-radius-200) 0 0;overflow:clip;margin-bottom:var(--dt-space-300-negative)}.dt-recipe-callbox--main-content[data-v-66800ae7]{padding:0;border-radius:var(--dt-size-radius-300);border:var(--dt-size-border-100) solid transparent;align-items:stretch}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-default[data-v-66800ae7]{border-color:var(--dt-color-border-default)}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-ai[data-v-66800ae7]{background:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,linear-gradient(135deg,var(--dt-color-border-accent),var(--dt-color-border-brand)) border-box}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-critical[data-v-66800ae7]{background:radial-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,radial-gradient(circle,#E7301D,#F78B23) border-box}.dt-recipe-callbox--main-content-top[data-v-66800ae7]{display:flex;align-items:center;padding:var(--dt-space-350) var(--dt-space-400)}.dt-recipe-callbox--main-content-bottom[data-v-66800ae7]{border-top:1px solid var(--dt-color-border-subtle)}.dt-recipe-callbox--avatar[data-v-66800ae7]{margin-right:var(--dt-space-400)}.dt-recipe-callbox--content[data-v-66800ae7]{display:flex;flex-direction:column;flex:1 0 auto;min-width:0}.dt-recipe-callbox--content-title[data-v-66800ae7]{overflow:clip;white-space:nowrap;text-overflow:ellipsis;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);font-weight:var(--dt-font-weight-bold);border:none;padding:0;width:0;min-width:100%;text-align:left;-webkit-user-select:text;-ms-user-select:text;user-select:text;line-height:normal}.dt-recipe-callbox--content-badge[data-v-66800ae7]{line-height:normal}.dt-recipe-callbox--content-subtitle[data-v-66800ae7]{padding:0;font-size:var(--dt-font-size-100);color:var(--dt-color-foreground-tertiary);line-height:normal;overflow:hidden;width:0;min-width:100%}.dt-recipe-callbox--right[data-v-66800ae7]{display:flex;justify-content:right}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]{cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;border-radius:var(--dt-size-100)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:hover,.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:active{text-decoration:underline}.dt-recipe-callbox .dt-recipe-callbox-badge--warning[data-v-66800ae7]{background-color:var(--dt-color-surface-warning)}
18531
+ .d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.d-avatar--clickable{--avatar-color-border: transparent;cursor:pointer;padding:0;background-color:transparent;border-radius:var(--dt-size-radius-circle);border:var(--dt-size-border-100) solid var(--avatar-color-border)}.d-avatar--clickable:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.d-avatar--clickable:hover{--avatar-color-border: var(--dt-color-border-default)}.d-avatar--clickable:active{--avatar-color-border: var(--dt-color-border-moderate);-webkit-transform:scale(.98);transform:scale(.98)}.dt-item-layout[data-v-9afad3c4]{align-items:stretch}.dt-item-layout--content[data-v-9afad3c4]{display:flex;flex-direction:column;justify-content:center}.dt-item-layout--selected[data-v-9afad3c4]{display:flex;align-items:center}.dt-list-item{list-style:none;background-color:var(--dt-action-color-background-muted-default)}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-radius-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-action-color-background-muted-hover)}.dt-list-item--highlighted:active{background-color:var(--dt-action-color-background-muted-active)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.dt-suggestion-list{position:relative;padding:var(--dt-size-300);max-height:var(--dt-size-875)!important}.dt-suggestion-list--item{border:var(--dt-size-100) solid transparent}.dt-suggestion-list--item.is-selected{border-color:var(--dt-color-border-bold)}.dt-link--mention{background-color:hsl(var(--dt-color-purple-400-hsl) / 10%);color:var(--dt-color-link-primary);border-radius:var(--dt-space-200);height:1.8rem}.dt-link--mention:hover{color:var(--dt-color-link-primary);background-color:hsl(var(--dt-color-purple-500-hsl) / 10%)}.ProseMirror p.is-editor-empty:first-child:before{content:attr(data-placeholder);float:left;color:var(--dt-color-foreground-placeholder);pointer-events:none;height:0}.dt-message-input--remaining-char{font-size:1.2rem}.message-input-button__disabled{background-color:unset;color:var(--theme-sidebar-icon-color);cursor:default}.dt-message-input-notice .d-notice__icon{margin-right:8px}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{-webkit-animation-name:placeholder-throb;animation-name:placeholder-throb;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}.dt-emoji[data-v-6ad3e149]{display:inline-block}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.d-root-layout{position:relative;display:grid;grid-template-areas:"header header" "sidebar body" "footer footer";grid-template-columns:-webkit-min-content 1fr;grid-template-columns:min-content 1fr;min-height:100vh}.d-root-layout--inverted{grid-template-areas:"header header" "body sidebar" "footer footer";grid-template-columns:1fr -webkit-min-content;grid-template-columns:1fr min-content}.d-root-layout--fixed{height:100vh}.d-root-layout__header{grid-area:header}.d-root-layout__header--sticky{position:sticky;top:0;z-index:var(--zi-base1)}.d-root-layout__sidebar{grid-area:sidebar;height:100%;box-shadow:none}.d-root-layout__content{grid-area:body;box-shadow:none;overflow-y:auto}.d-root-layout__content:focus-visible{box-shadow:none}.d-root-layout__footer{grid-area:footer}@media (max-width: 480px){.d-root-layout__responsive--sm{grid-template-areas:"header" "sidebar" "body" "footer";grid-template-columns:1fr}}@media (max-width: 640px){.d-root-layout__responsive--md{grid-template-areas:"header" "sidebar" "body" "footer";grid-template-columns:1fr}}@media (max-width: 980px){.d-root-layout__responsive--lg{grid-template-areas:"header" "sidebar" "body" "footer";grid-template-columns:1fr}}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:flex}.vue-recycle-scroller__slot{flex:auto 0 0}.vue-recycle-scroller__item-wrapper{flex:1;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-3d0f9d2e]{--contact-info-avatar-border-color: var(--dt-color-surface-primary);display:flex}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout{flex:1 1 0}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start;align-items:center}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--right{min-width:0;align-items:center}.dt-contact-info--avatars .d-avatar[data-v-3d0f9d2e]{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--contact-info-avatar-border-color);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-400);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.settings-menu-button[data-v-b0dfa8b3]{padding:var(--dt-space-0);border-radius:var(--dt-size-550);height:var(--dt-size-600);width:var(--dt-size-550);color:var(--dt-theme-topbar-button-color-foreground);background-color:var(--dt-theme-topbar-button-color-background)}.settings-menu-button[data-v-b0dfa8b3]:hover{background-color:var(--dt-theme-topbar-button-color-background-hover);color:var(--dt-theme-topbar-button-color-foreground-hover)}.settings-menu-button[data-v-b0dfa8b3]:active{background-color:var(--dt-theme-topbar-button-color-background-active)}.settings-menu-button-update[data-v-b0dfa8b3]{background-color:hsla(var(--dt-color-blue-200-hsl) / 25%);color:var(--dt-color-blue-500);border-color:hsla(var(--dt-color-blue-200-hsl) / 25%);border-radius:var(--dt-size-radius-pill);height:var(--dt-size-600)}.settings-menu-button-update[data-v-b0dfa8b3]:hover{background-color:hsla(var(--dt-color-blue-200-hsl) / 50%);color:var(--dt-theme-topbar-button-color-foreground-hover)}.dt-leftbar-row[data-v-49d75ce6]{--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);--leftbar-row-radius: var(--dt-size-radius-pill);--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--dt-theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-49d75ce6]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-49d75ce6]:hover,.dt-leftbar-row[data-v-49d75ce6]:focus-within{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-49d75ce6]:hover .d-presence,.dt-leftbar-row[data-v-49d75ce6]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-49d75ce6]:hover .d-avatar__count,.dt-leftbar-row[data-v-49d75ce6]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-49d75ce6]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread)}.dt-leftbar-row--unread-count[data-v-49d75ce6] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-49d75ce6]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-49d75ce6]{--leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground)}.dt-leftbar-row--selected[data-v-49d75ce6] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-49d75ce6] .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-49d75ce6]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-49d75ce6]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);-webkit-animation:wave-49d75ce6 1.5s ease infinite;animation:wave-49d75ce6 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-49d75ce6]:nth-child(1){-webkit-animation-delay:0ms;animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-49d75ce6]:nth-child(2){-webkit-animation-delay:var(--td100);animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-49d75ce6]:nth-child(3){-webkit-animation-delay:var(--td200);animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-49d75ce6]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-49d75ce6]:active{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-49d75ce6]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-49d75ce6]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-49d75ce6]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-49d75ce6]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-49d75ce6]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);-webkit-transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:flex-end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-49d75ce6]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-49d75ce6]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-49d75ce6;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-49d75ce6;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-49d75ce6;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-49d75ce6]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-49d75ce6] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);color:var(--leftbar-row-description-color-foreground);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-49d75ce6] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-49d75ce6] .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--dt-theme-sidebar-status-color-foreground)}.dt-leftbar-row__icon-cc[data-v-49d75ce6]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-49d75ce6]{-webkit-animation-name:opacity-pulsate-49d75ce6;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-49d75ce6;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-49d75ce6;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-49d75ce6{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-49d75ce6{0%,to{opacity:.2}50%{opacity:1}}@-webkit-keyframes wave-49d75ce6{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}@keyframes wave-49d75ce6{0%,50%,to{-webkit-transform:translate(0);transform:translate(0)}10%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--dt-theme-mention-color-background);color:var(--dt-theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-secondary-inverted)}.dt-feed-item-row[data-v-de44d2c0]{transition-duration:2s!important}.dt-feed-item-row .content-text-wrapper-class[data-v-de44d2c0]:not(img){line-height:1.6rem}.dt-feed-item-row[data-v-de44d2c0] .dt-item-layout--left .d-avatar{align-self:flex-start;margin-top:var(--dt-space-300)}.dt-feed-item-pill--border[data-v-59051987]{border:double 1px transparent;border-radius:4.8rem;background-origin:border-box;background-clip:content-box,border-box;overflow:hidden}.dt-feed-item-pill--border-default[data-v-59051987]{background:var(--dt-color-border-default)}.dt-feed-item-pill--border-ai[data-v-59051987]{background-image:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)),var(--dt-badge-color-background-ai)}.dt-feed-item-pill--border-critical[data-v-59051987]{background:var(--dt-color-foreground-critical)}.dt-feed-item-pill--icon[data-v-59051987]{-webkit-animation:fade-59051987 .15s ease-in;animation:fade-59051987 .15s ease-in}@-webkit-keyframes fade-59051987{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes fade-59051987{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.dt-emoji-row{display:flex;flex-wrap:wrap}.dt-emoji-row__reaction{padding:var(--dt-space-300) var(--dt-space-400);gap:var(--dt-space-300);border-radius:var(--dt-size-radius-500);margin-bottom:0;transition-delay:0s;transition-duration:var(--td50);transition-property:all;transition-timing-function:var(--ttf-in-out);color:var(--dt-color-foreground-secondary);background-color:var(--dt-color-surface-moderate-opaque)}.dt-emoji-row__reaction:hover,.dt-emoji-row__reaction:focus{border-color:hsla(var(--dt-color-black-600-hsl)/100%)!important}.dt-emoji-row__reaction--selected{color:var(--dt-color-link-primary);background-color:var(--dt-color-purple-100)!important;border-color:var(--dt-color-brand-purple)!important}.dt-emoji-row__reaction--selected:hover{color:var(--dt-color-link-primary)}.dt-recipe-callbox[data-v-66800ae7]{padding:0;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);border-radius:var(--dt-size-radius-300)}.dt-recipe-callbox--video[data-v-66800ae7]{display:flex;border-radius:var(--dt-size-radius-200) var(--dt-size-radius-200) 0 0;overflow:clip;margin-bottom:var(--dt-space-300-negative)}.dt-recipe-callbox--main-content[data-v-66800ae7]{padding:0;border-radius:var(--dt-size-radius-300);border:var(--dt-size-border-100) solid transparent;align-items:stretch}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-default[data-v-66800ae7]{border-color:var(--dt-color-border-default)}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-ai[data-v-66800ae7]{background:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,linear-gradient(135deg,var(--dt-color-border-accent),var(--dt-color-border-brand)) border-box}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-critical[data-v-66800ae7]{background:radial-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,radial-gradient(circle,#E7301D,#F78B23) border-box}.dt-recipe-callbox--main-content-top[data-v-66800ae7]{display:flex;align-items:center;padding:var(--dt-space-350) var(--dt-space-400)}.dt-recipe-callbox--main-content-bottom[data-v-66800ae7]{border-top:1px solid var(--dt-color-border-subtle)}.dt-recipe-callbox--avatar[data-v-66800ae7]{margin-right:var(--dt-space-400)}.dt-recipe-callbox--content[data-v-66800ae7]{display:flex;flex-direction:column;flex:1 0 auto;min-width:0}.dt-recipe-callbox--content-title[data-v-66800ae7]{overflow:clip;white-space:nowrap;text-overflow:ellipsis;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);font-weight:var(--dt-font-weight-bold);border:none;padding:0;width:0;min-width:100%;text-align:left;-webkit-user-select:text;-ms-user-select:text;user-select:text;line-height:normal}.dt-recipe-callbox--content-badge[data-v-66800ae7]{line-height:normal}.dt-recipe-callbox--content-subtitle[data-v-66800ae7]{padding:0;font-size:var(--dt-font-size-100);color:var(--dt-color-foreground-tertiary);line-height:normal;overflow:hidden;width:0;min-width:100%}.dt-recipe-callbox--right[data-v-66800ae7]{display:flex;justify-content:right}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]{cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;border-radius:var(--dt-size-100)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:hover,.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:active{text-decoration:underline}.dt-recipe-callbox .dt-recipe-callbox-badge--warning[data-v-66800ae7]{background-color:var(--dt-color-surface-warning)}