@stream-io/video-react-sdk 0.0.1-alpha.9

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.
Files changed (418) hide show
  1. package/CHANGELOG.md +183 -0
  2. package/LICENSE +219 -0
  3. package/README.md +5 -0
  4. package/dist/css/styles.css +2351 -0
  5. package/dist/css/styles.css.map +1 -0
  6. package/dist/index.d.ts +6 -0
  7. package/dist/index.js +15 -0
  8. package/dist/index.js.map +1 -0
  9. package/dist/src/components/Avatar/Avatar.d.ts +14 -0
  10. package/dist/src/components/Avatar/Avatar.js +11 -0
  11. package/dist/src/components/Avatar/Avatar.js.map +1 -0
  12. package/dist/src/components/Avatar/index.d.ts +1 -0
  13. package/dist/src/components/Avatar/index.js +2 -0
  14. package/dist/src/components/Avatar/index.js.map +1 -0
  15. package/dist/src/components/Button/CompositeButton.d.ts +16 -0
  16. package/dist/src/components/Button/CompositeButton.js +15 -0
  17. package/dist/src/components/Button/CompositeButton.js.map +1 -0
  18. package/dist/src/components/Button/CopyToClipboardButton.d.ts +27 -0
  19. package/dist/src/components/Button/CopyToClipboardButton.js +54 -0
  20. package/dist/src/components/Button/CopyToClipboardButton.js.map +1 -0
  21. package/dist/src/components/Button/IconButton.d.ts +7 -0
  22. package/dist/src/components/Button/IconButton.js +26 -0
  23. package/dist/src/components/Button/IconButton.js.map +1 -0
  24. package/dist/src/components/Button/TextButton.d.ts +2 -0
  25. package/dist/src/components/Button/TextButton.js +17 -0
  26. package/dist/src/components/Button/TextButton.js.map +1 -0
  27. package/dist/src/components/Button/index.d.ts +4 -0
  28. package/dist/src/components/Button/index.js +5 -0
  29. package/dist/src/components/Button/index.js.map +1 -0
  30. package/dist/src/components/CallControls/CallControls.d.ts +7 -0
  31. package/dist/src/components/CallControls/CallControls.js +8 -0
  32. package/dist/src/components/CallControls/CallControls.js.map +1 -0
  33. package/dist/src/components/CallControls/CallStatsButton.d.ts +6 -0
  34. package/dist/src/components/CallControls/CallStatsButton.js +10 -0
  35. package/dist/src/components/CallControls/CallStatsButton.js.map +1 -0
  36. package/dist/src/components/CallControls/CancelCallButton.d.ts +8 -0
  37. package/dist/src/components/CallControls/CancelCallButton.js +25 -0
  38. package/dist/src/components/CallControls/CancelCallButton.js.map +1 -0
  39. package/dist/src/components/CallControls/ReactionsButton.d.ts +11 -0
  40. package/dist/src/components/CallControls/ReactionsButton.js +33 -0
  41. package/dist/src/components/CallControls/ReactionsButton.js.map +1 -0
  42. package/dist/src/components/CallControls/RecordCallButton.d.ts +7 -0
  43. package/dist/src/components/CallControls/RecordCallButton.js +51 -0
  44. package/dist/src/components/CallControls/RecordCallButton.js.map +1 -0
  45. package/dist/src/components/CallControls/ScreenShareButton.d.ts +7 -0
  46. package/dist/src/components/CallControls/ScreenShareButton.js +54 -0
  47. package/dist/src/components/CallControls/ScreenShareButton.js.map +1 -0
  48. package/dist/src/components/CallControls/ToggleAudioButton.d.ts +9 -0
  49. package/dist/src/components/CallControls/ToggleAudioButton.js +66 -0
  50. package/dist/src/components/CallControls/ToggleAudioButton.js.map +1 -0
  51. package/dist/src/components/CallControls/ToggleAudioOutputButton.d.ts +5 -0
  52. package/dist/src/components/CallControls/ToggleAudioOutputButton.js +9 -0
  53. package/dist/src/components/CallControls/ToggleAudioOutputButton.js.map +1 -0
  54. package/dist/src/components/CallControls/ToggleCameraButton.d.ts +10 -0
  55. package/dist/src/components/CallControls/ToggleCameraButton.js +64 -0
  56. package/dist/src/components/CallControls/ToggleCameraButton.js.map +1 -0
  57. package/dist/src/components/CallControls/ToggleParticipantListButton.d.ts +6 -0
  58. package/dist/src/components/CallControls/ToggleParticipantListButton.js +7 -0
  59. package/dist/src/components/CallControls/ToggleParticipantListButton.js.map +1 -0
  60. package/dist/src/components/CallControls/index.d.ts +10 -0
  61. package/dist/src/components/CallControls/index.js +11 -0
  62. package/dist/src/components/CallControls/index.js.map +1 -0
  63. package/dist/src/components/CallParticipantsList/BlockedUserListing.d.ts +4 -0
  64. package/dist/src/components/CallParticipantsList/BlockedUserListing.js +19 -0
  65. package/dist/src/components/CallParticipantsList/BlockedUserListing.js.map +1 -0
  66. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.d.ts +6 -0
  67. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.js +7 -0
  68. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.js.map +1 -0
  69. package/dist/src/components/CallParticipantsList/CallParticipantListing.d.ts +8 -0
  70. package/dist/src/components/CallParticipantsList/CallParticipantListing.js +4 -0
  71. package/dist/src/components/CallParticipantsList/CallParticipantListing.js.map +1 -0
  72. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.d.ts +15 -0
  73. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js +77 -0
  74. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js.map +1 -0
  75. package/dist/src/components/CallParticipantsList/CallParticipantsList.d.ts +15 -0
  76. package/dist/src/components/CallParticipantsList/CallParticipantsList.js +82 -0
  77. package/dist/src/components/CallParticipantsList/CallParticipantsList.js.map +1 -0
  78. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.d.ts +2 -0
  79. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.js +5 -0
  80. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.js.map +1 -0
  81. package/dist/src/components/CallParticipantsList/index.d.ts +3 -0
  82. package/dist/src/components/CallParticipantsList/index.js +4 -0
  83. package/dist/src/components/CallParticipantsList/index.js.map +1 -0
  84. package/dist/src/components/CallRecordingList/CallRecordingList.d.ts +20 -0
  85. package/dist/src/components/CallRecordingList/CallRecordingList.js +9 -0
  86. package/dist/src/components/CallRecordingList/CallRecordingList.js.map +1 -0
  87. package/dist/src/components/CallRecordingList/CallRecordingListHeader.d.ts +7 -0
  88. package/dist/src/components/CallRecordingList/CallRecordingListHeader.js +8 -0
  89. package/dist/src/components/CallRecordingList/CallRecordingListHeader.js.map +1 -0
  90. package/dist/src/components/CallRecordingList/CallRecordingListItem.d.ts +7 -0
  91. package/dist/src/components/CallRecordingList/CallRecordingListItem.js +11 -0
  92. package/dist/src/components/CallRecordingList/CallRecordingListItem.js.map +1 -0
  93. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.d.ts +2 -0
  94. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.js +5 -0
  95. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.js.map +1 -0
  96. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.d.ts +7 -0
  97. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.js +7 -0
  98. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.js.map +1 -0
  99. package/dist/src/components/CallRecordingList/index.d.ts +5 -0
  100. package/dist/src/components/CallRecordingList/index.js +6 -0
  101. package/dist/src/components/CallRecordingList/index.js.map +1 -0
  102. package/dist/src/components/Debug/DebugParticipantPublishQuality.d.ts +6 -0
  103. package/dist/src/components/Debug/DebugParticipantPublishQuality.js +46 -0
  104. package/dist/src/components/Debug/DebugParticipantPublishQuality.js.map +1 -0
  105. package/dist/src/components/Debug/DebugStatsView.d.ts +7 -0
  106. package/dist/src/components/Debug/DebugStatsView.js +26 -0
  107. package/dist/src/components/Debug/DebugStatsView.js.map +1 -0
  108. package/dist/src/components/Debug/useIsDebugMode.d.ts +5 -0
  109. package/dist/src/components/Debug/useIsDebugMode.js +18 -0
  110. package/dist/src/components/Debug/useIsDebugMode.js.map +1 -0
  111. package/dist/src/components/DeviceSettings/DeviceSelector.d.ts +7 -0
  112. package/dist/src/components/DeviceSettings/DeviceSelector.js +26 -0
  113. package/dist/src/components/DeviceSettings/DeviceSelector.js.map +1 -0
  114. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.d.ts +9 -0
  115. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js +18 -0
  116. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js.map +1 -0
  117. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.d.ts +5 -0
  118. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js +10 -0
  119. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js.map +1 -0
  120. package/dist/src/components/DeviceSettings/DeviceSettings.d.ts +2 -0
  121. package/dist/src/components/DeviceSettings/DeviceSettings.js +15 -0
  122. package/dist/src/components/DeviceSettings/DeviceSettings.js.map +1 -0
  123. package/dist/src/components/DeviceSettings/index.d.ts +4 -0
  124. package/dist/src/components/DeviceSettings/index.js +5 -0
  125. package/dist/src/components/DeviceSettings/index.js.map +1 -0
  126. package/dist/src/components/Icon/Icon.d.ts +5 -0
  127. package/dist/src/components/Icon/Icon.js +4 -0
  128. package/dist/src/components/Icon/Icon.js.map +1 -0
  129. package/dist/src/components/Icon/index.d.ts +1 -0
  130. package/dist/src/components/Icon/index.js +2 -0
  131. package/dist/src/components/Icon/index.js.map +1 -0
  132. package/dist/src/components/LoadingIndicator/LoadingIndicator.d.ts +11 -0
  133. package/dist/src/components/LoadingIndicator/LoadingIndicator.js +6 -0
  134. package/dist/src/components/LoadingIndicator/LoadingIndicator.js.map +1 -0
  135. package/dist/src/components/LoadingIndicator/index.d.ts +1 -0
  136. package/dist/src/components/LoadingIndicator/index.js +2 -0
  137. package/dist/src/components/LoadingIndicator/index.js.map +1 -0
  138. package/dist/src/components/Menu/GenericMenu.d.ts +3 -0
  139. package/dist/src/components/Menu/GenericMenu.js +20 -0
  140. package/dist/src/components/Menu/GenericMenu.js.map +1 -0
  141. package/dist/src/components/Menu/MenuToggle.d.ts +12 -0
  142. package/dist/src/components/Menu/MenuToggle.js +40 -0
  143. package/dist/src/components/Menu/MenuToggle.js.map +1 -0
  144. package/dist/src/components/Menu/index.d.ts +2 -0
  145. package/dist/src/components/Menu/index.js +3 -0
  146. package/dist/src/components/Menu/index.js.map +1 -0
  147. package/dist/src/components/Moderation/Restricted.d.ts +19 -0
  148. package/dist/src/components/Moderation/Restricted.js +13 -0
  149. package/dist/src/components/Moderation/Restricted.js.map +1 -0
  150. package/dist/src/components/Moderation/index.d.ts +1 -0
  151. package/dist/src/components/Moderation/index.js +2 -0
  152. package/dist/src/components/Moderation/index.js.map +1 -0
  153. package/dist/src/components/Notification/Notification.d.ts +11 -0
  154. package/dist/src/components/Notification/Notification.js +25 -0
  155. package/dist/src/components/Notification/Notification.js.map +1 -0
  156. package/dist/src/components/Notification/PermissionNotification.d.ts +33 -0
  157. package/dist/src/components/Notification/PermissionNotification.js +26 -0
  158. package/dist/src/components/Notification/PermissionNotification.js.map +1 -0
  159. package/dist/src/components/Notification/SpeakingWhileMutedNotification.d.ts +3 -0
  160. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js +45 -0
  161. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js.map +1 -0
  162. package/dist/src/components/Notification/index.d.ts +3 -0
  163. package/dist/src/components/Notification/index.js +4 -0
  164. package/dist/src/components/Notification/index.js.map +1 -0
  165. package/dist/src/components/Permissions/PermissionRequests.d.ts +8 -0
  166. package/dist/src/components/Permissions/PermissionRequests.js +109 -0
  167. package/dist/src/components/Permissions/PermissionRequests.js.map +1 -0
  168. package/dist/src/components/Permissions/index.d.ts +1 -0
  169. package/dist/src/components/Permissions/index.js +2 -0
  170. package/dist/src/components/Permissions/index.js.map +1 -0
  171. package/dist/src/components/Reaction/Reaction.d.ts +10 -0
  172. package/dist/src/components/Reaction/Reaction.js +28 -0
  173. package/dist/src/components/Reaction/Reaction.js.map +1 -0
  174. package/dist/src/components/Reaction/index.d.ts +1 -0
  175. package/dist/src/components/Reaction/index.js +2 -0
  176. package/dist/src/components/Reaction/index.js.map +1 -0
  177. package/dist/src/components/Search/SearchInput.d.ts +14 -0
  178. package/dist/src/components/Search/SearchInput.js +34 -0
  179. package/dist/src/components/Search/SearchInput.js.map +1 -0
  180. package/dist/src/components/Search/SearchResults.d.ts +14 -0
  181. package/dist/src/components/Search/SearchResults.js +12 -0
  182. package/dist/src/components/Search/SearchResults.js.map +1 -0
  183. package/dist/src/components/Search/hooks/index.d.ts +1 -0
  184. package/dist/src/components/Search/hooks/index.js +2 -0
  185. package/dist/src/components/Search/hooks/index.js.map +1 -0
  186. package/dist/src/components/Search/hooks/useSearch.d.ts +15 -0
  187. package/dist/src/components/Search/hooks/useSearch.js +39 -0
  188. package/dist/src/components/Search/hooks/useSearch.js.map +1 -0
  189. package/dist/src/components/Search/index.d.ts +2 -0
  190. package/dist/src/components/Search/index.js +3 -0
  191. package/dist/src/components/Search/index.js.map +1 -0
  192. package/dist/src/components/StreamCall/CallParticipantsScreenView.d.ts +5 -0
  193. package/dist/src/components/StreamCall/CallParticipantsScreenView.js +34 -0
  194. package/dist/src/components/StreamCall/CallParticipantsScreenView.js.map +1 -0
  195. package/dist/src/components/StreamCall/CallParticipantsView.d.ts +5 -0
  196. package/dist/src/components/StreamCall/CallParticipantsView.js +11 -0
  197. package/dist/src/components/StreamCall/CallParticipantsView.js.map +1 -0
  198. package/dist/src/components/StreamCall/CallStats.d.ts +2 -0
  199. package/dist/src/components/StreamCall/CallStats.js +69 -0
  200. package/dist/src/components/StreamCall/CallStats.js.map +1 -0
  201. package/dist/src/components/StreamCall/CallStatsLatencyChart.d.ts +7 -0
  202. package/dist/src/components/StreamCall/CallStatsLatencyChart.js +39 -0
  203. package/dist/src/components/StreamCall/CallStatsLatencyChart.js.map +1 -0
  204. package/dist/src/components/StreamCall/Stage.d.ts +8 -0
  205. package/dist/src/components/StreamCall/Stage.js +13 -0
  206. package/dist/src/components/StreamCall/Stage.js.map +1 -0
  207. package/dist/src/components/StreamCall/hooks/index.d.ts +1 -0
  208. package/dist/src/components/StreamCall/hooks/index.js +2 -0
  209. package/dist/src/components/StreamCall/hooks/index.js.map +1 -0
  210. package/dist/src/components/StreamCall/hooks/useScrollPosition.d.ts +6 -0
  211. package/dist/src/components/StreamCall/hooks/useScrollPosition.js +63 -0
  212. package/dist/src/components/StreamCall/hooks/useScrollPosition.js.map +1 -0
  213. package/dist/src/components/StreamCall/index.d.ts +3 -0
  214. package/dist/src/components/StreamCall/index.js +4 -0
  215. package/dist/src/components/StreamCall/index.js.map +1 -0
  216. package/dist/src/components/StreamMeeting/StreamMeeting.d.ts +34 -0
  217. package/dist/src/components/StreamMeeting/StreamMeeting.js +26 -0
  218. package/dist/src/components/StreamMeeting/StreamMeeting.js.map +1 -0
  219. package/dist/src/components/StreamMeeting/index.d.ts +1 -0
  220. package/dist/src/components/StreamMeeting/index.js +2 -0
  221. package/dist/src/components/StreamMeeting/index.js.map +1 -0
  222. package/dist/src/components/Tooltip/Tooltip.d.ts +15 -0
  223. package/dist/src/components/Tooltip/Tooltip.js +22 -0
  224. package/dist/src/components/Tooltip/Tooltip.js.map +1 -0
  225. package/dist/src/components/Tooltip/WithTooltip.d.ts +5 -0
  226. package/dist/src/components/Tooltip/WithTooltip.js +23 -0
  227. package/dist/src/components/Tooltip/WithTooltip.js.map +1 -0
  228. package/dist/src/components/Tooltip/hooks/index.d.ts +1 -0
  229. package/dist/src/components/Tooltip/hooks/index.js +2 -0
  230. package/dist/src/components/Tooltip/hooks/index.js.map +1 -0
  231. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.d.ts +6 -0
  232. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.js +14 -0
  233. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.js.map +1 -0
  234. package/dist/src/components/Tooltip/index.d.ts +2 -0
  235. package/dist/src/components/Tooltip/index.js +3 -0
  236. package/dist/src/components/Tooltip/index.js.map +1 -0
  237. package/dist/src/components/Video/VideoPreview.d.ts +13 -0
  238. package/dist/src/components/Video/VideoPreview.js +70 -0
  239. package/dist/src/components/Video/VideoPreview.js.map +1 -0
  240. package/dist/src/components/Video/index.d.ts +4 -0
  241. package/dist/src/components/Video/index.js +5 -0
  242. package/dist/src/components/Video/index.js.map +1 -0
  243. package/dist/src/components/index.d.ts +16 -0
  244. package/dist/src/components/index.js +17 -0
  245. package/dist/src/components/index.js.map +1 -0
  246. package/dist/src/core/components/Audio/Audio.d.ts +6 -0
  247. package/dist/src/core/components/Audio/Audio.js +39 -0
  248. package/dist/src/core/components/Audio/Audio.js.map +1 -0
  249. package/dist/src/core/components/Audio/index.d.ts +1 -0
  250. package/dist/src/core/components/Audio/index.js +2 -0
  251. package/dist/src/core/components/Audio/index.js.map +1 -0
  252. package/dist/src/core/components/CallLayout/PaginatedGridLayout.d.ts +21 -0
  253. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js +39 -0
  254. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js.map +1 -0
  255. package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +2 -0
  256. package/dist/src/core/components/CallLayout/SpeakerLayout.js +52 -0
  257. package/dist/src/core/components/CallLayout/SpeakerLayout.js.map +1 -0
  258. package/dist/src/core/components/CallLayout/index.d.ts +2 -0
  259. package/dist/src/core/components/CallLayout/index.js +3 -0
  260. package/dist/src/core/components/CallLayout/index.js.map +1 -0
  261. package/dist/src/core/components/ParticipantBox/ParticipantBox.d.ts +48 -0
  262. package/dist/src/core/components/ParticipantBox/ParticipantBox.js +58 -0
  263. package/dist/src/core/components/ParticipantBox/ParticipantBox.js.map +1 -0
  264. package/dist/src/core/components/ParticipantBox/index.d.ts +1 -0
  265. package/dist/src/core/components/ParticipantBox/index.js +2 -0
  266. package/dist/src/core/components/ParticipantBox/index.js.map +1 -0
  267. package/dist/src/core/components/Video/BaseVideo.d.ts +9 -0
  268. package/dist/src/core/components/Video/BaseVideo.js +54 -0
  269. package/dist/src/core/components/Video/BaseVideo.js.map +1 -0
  270. package/dist/src/core/components/Video/Video.d.ts +8 -0
  271. package/dist/src/core/components/Video/Video.js +151 -0
  272. package/dist/src/core/components/Video/Video.js.map +1 -0
  273. package/dist/src/core/components/Video/VideoPlaceholder.d.ts +6 -0
  274. package/dist/src/core/components/Video/VideoPlaceholder.js +12 -0
  275. package/dist/src/core/components/Video/VideoPlaceholder.js.map +1 -0
  276. package/dist/src/core/components/Video/index.d.ts +2 -0
  277. package/dist/src/core/components/Video/index.js +3 -0
  278. package/dist/src/core/components/Video/index.js.map +1 -0
  279. package/dist/src/core/components/index.d.ts +5 -0
  280. package/dist/src/core/components/index.js +5 -0
  281. package/dist/src/core/components/index.js.map +1 -0
  282. package/dist/src/core/contexts/MediaDevicesContext.d.ts +82 -0
  283. package/dist/src/core/contexts/MediaDevicesContext.js +215 -0
  284. package/dist/src/core/contexts/MediaDevicesContext.js.map +1 -0
  285. package/dist/src/core/contexts/index.d.ts +1 -0
  286. package/dist/src/core/contexts/index.js +2 -0
  287. package/dist/src/core/contexts/index.js.map +1 -0
  288. package/dist/src/core/hooks/index.d.ts +2 -0
  289. package/dist/src/core/hooks/index.js +3 -0
  290. package/dist/src/core/hooks/index.js.map +1 -0
  291. package/dist/src/core/hooks/useAudioPublisher.d.ts +12 -0
  292. package/dist/src/core/hooks/useAudioPublisher.js +89 -0
  293. package/dist/src/core/hooks/useAudioPublisher.js.map +1 -0
  294. package/dist/src/core/hooks/useVideoPublisher.d.ts +12 -0
  295. package/dist/src/core/hooks/useVideoPublisher.js +91 -0
  296. package/dist/src/core/hooks/useVideoPublisher.js.map +1 -0
  297. package/dist/src/core/index.d.ts +3 -0
  298. package/dist/src/core/index.js +4 -0
  299. package/dist/src/core/index.js.map +1 -0
  300. package/dist/src/hooks/index.d.ts +2 -0
  301. package/dist/src/hooks/index.js +3 -0
  302. package/dist/src/hooks/index.js.map +1 -0
  303. package/dist/src/hooks/useFloatingUIPreset.d.ts +9 -0
  304. package/dist/src/hooks/useFloatingUIPreset.js +29 -0
  305. package/dist/src/hooks/useFloatingUIPreset.js.map +1 -0
  306. package/dist/src/hooks/useRtcStats.d.ts +11 -0
  307. package/dist/src/hooks/useRtcStats.js +39 -0
  308. package/dist/src/hooks/useRtcStats.js.map +1 -0
  309. package/dist/src/types/components.d.ts +7 -0
  310. package/dist/src/types/components.js +2 -0
  311. package/dist/src/types/components.js.map +1 -0
  312. package/dist/src/types/index.d.ts +1 -0
  313. package/dist/src/types/index.js +2 -0
  314. package/dist/src/types/index.js.map +1 -0
  315. package/index.ts +18 -0
  316. package/package.json +49 -0
  317. package/src/components/Avatar/Avatar.tsx +45 -0
  318. package/src/components/Avatar/index.ts +1 -0
  319. package/src/components/Button/CompositeButton.tsx +59 -0
  320. package/src/components/Button/CopyToClipboardButton.tsx +129 -0
  321. package/src/components/Button/IconButton.tsx +32 -0
  322. package/src/components/Button/TextButton.tsx +12 -0
  323. package/src/components/Button/index.ts +4 -0
  324. package/src/components/CallControls/CallControls.tsx +32 -0
  325. package/src/components/CallControls/CallStatsButton.tsx +28 -0
  326. package/src/components/CallControls/CancelCallButton.tsx +28 -0
  327. package/src/components/CallControls/ReactionsButton.tsx +75 -0
  328. package/src/components/CallControls/RecordCallButton.tsx +68 -0
  329. package/src/components/CallControls/ScreenShareButton.tsx +85 -0
  330. package/src/components/CallControls/ToggleAudioButton.tsx +112 -0
  331. package/src/components/CallControls/ToggleAudioOutputButton.tsx +21 -0
  332. package/src/components/CallControls/ToggleCameraButton.tsx +109 -0
  333. package/src/components/CallControls/ToggleParticipantListButton.tsx +17 -0
  334. package/src/components/CallControls/index.ts +10 -0
  335. package/src/components/CallParticipantsList/BlockedUserListing.tsx +38 -0
  336. package/src/components/CallParticipantsList/CallParticipantListHeader.tsx +29 -0
  337. package/src/components/CallParticipantsList/CallParticipantListing.tsx +22 -0
  338. package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +249 -0
  339. package/src/components/CallParticipantsList/CallParticipantsList.tsx +255 -0
  340. package/src/components/CallParticipantsList/EmptyParticipantSearchList.tsx +7 -0
  341. package/src/components/CallParticipantsList/index.ts +3 -0
  342. package/src/components/CallRecordingList/CallRecordingList.tsx +60 -0
  343. package/src/components/CallRecordingList/CallRecordingListHeader.tsx +29 -0
  344. package/src/components/CallRecordingList/CallRecordingListItem.tsx +67 -0
  345. package/src/components/CallRecordingList/EmptyCallRecordingListing.tsx +11 -0
  346. package/src/components/CallRecordingList/LoadingCallRecordingListing.tsx +21 -0
  347. package/src/components/CallRecordingList/index.ts +5 -0
  348. package/src/components/Debug/DebugParticipantPublishQuality.tsx +62 -0
  349. package/src/components/Debug/DebugStatsView.tsx +55 -0
  350. package/src/components/Debug/useIsDebugMode.ts +24 -0
  351. package/src/components/DeviceSettings/DeviceSelector.tsx +106 -0
  352. package/src/components/DeviceSettings/DeviceSelectorAudio.tsx +52 -0
  353. package/src/components/DeviceSettings/DeviceSelectorVideo.tsx +22 -0
  354. package/src/components/DeviceSettings/DeviceSettings.tsx +39 -0
  355. package/src/components/DeviceSettings/index.ts +4 -0
  356. package/src/components/Icon/Icon.tsx +11 -0
  357. package/src/components/Icon/index.ts +1 -0
  358. package/src/components/LoadingIndicator/LoadingIndicator.tsx +28 -0
  359. package/src/components/LoadingIndicator/index.ts +1 -0
  360. package/src/components/Menu/GenericMenu.tsx +16 -0
  361. package/src/components/Menu/MenuToggle.tsx +81 -0
  362. package/src/components/Menu/index.ts +2 -0
  363. package/src/components/Moderation/Restricted.tsx +38 -0
  364. package/src/components/Moderation/index.ts +1 -0
  365. package/src/components/Notification/Notification.tsx +61 -0
  366. package/src/components/Notification/PermissionNotification.tsx +97 -0
  367. package/src/components/Notification/SpeakingWhileMutedNotification.tsx +60 -0
  368. package/src/components/Notification/index.ts +3 -0
  369. package/src/components/Permissions/PermissionRequests.tsx +182 -0
  370. package/src/components/Permissions/index.ts +1 -0
  371. package/src/components/Reaction/Reaction.tsx +48 -0
  372. package/src/components/Reaction/index.ts +1 -0
  373. package/src/components/Search/SearchInput.tsx +56 -0
  374. package/src/components/Search/SearchResults.tsx +40 -0
  375. package/src/components/Search/hooks/index.ts +1 -0
  376. package/src/components/Search/hooks/useSearch.ts +52 -0
  377. package/src/components/Search/index.ts +2 -0
  378. package/src/components/StreamCall/CallParticipantsScreenView.tsx +126 -0
  379. package/src/components/StreamCall/CallParticipantsView.tsx +25 -0
  380. package/src/components/StreamCall/CallStats.tsx +162 -0
  381. package/src/components/StreamCall/CallStatsLatencyChart.tsx +58 -0
  382. package/src/components/StreamCall/Stage.tsx +22 -0
  383. package/src/components/StreamCall/hooks/index.ts +1 -0
  384. package/src/components/StreamCall/hooks/useScrollPosition.ts +95 -0
  385. package/src/components/StreamCall/index.ts +4 -0
  386. package/src/components/StreamMeeting/StreamMeeting.tsx +80 -0
  387. package/src/components/StreamMeeting/index.ts +1 -0
  388. package/src/components/Tooltip/Tooltip.tsx +51 -0
  389. package/src/components/Tooltip/WithTooltip.tsx +39 -0
  390. package/src/components/Tooltip/hooks/index.ts +1 -0
  391. package/src/components/Tooltip/hooks/useEnterLeaveHandlers.ts +28 -0
  392. package/src/components/Tooltip/index.ts +2 -0
  393. package/src/components/Video/VideoPreview.tsx +127 -0
  394. package/src/components/Video/index.ts +4 -0
  395. package/src/components/index.ts +16 -0
  396. package/src/core/components/Audio/Audio.tsx +42 -0
  397. package/src/core/components/Audio/index.ts +1 -0
  398. package/src/core/components/CallLayout/PaginatedGridLayout.tsx +163 -0
  399. package/src/core/components/CallLayout/SpeakerLayout.tsx +145 -0
  400. package/src/core/components/CallLayout/index.ts +2 -0
  401. package/src/core/components/ParticipantBox/ParticipantBox.tsx +248 -0
  402. package/src/core/components/ParticipantBox/index.ts +1 -0
  403. package/src/core/components/Video/BaseVideo.tsx +68 -0
  404. package/src/core/components/Video/Video.tsx +238 -0
  405. package/src/core/components/Video/VideoPlaceholder.tsx +40 -0
  406. package/src/core/components/Video/index.ts +2 -0
  407. package/src/core/components/index.ts +7 -0
  408. package/src/core/contexts/MediaDevicesContext.tsx +373 -0
  409. package/src/core/contexts/index.ts +1 -0
  410. package/src/core/hooks/index.ts +2 -0
  411. package/src/core/hooks/useAudioPublisher.ts +118 -0
  412. package/src/core/hooks/useVideoPublisher.ts +120 -0
  413. package/src/core/index.ts +3 -0
  414. package/src/hooks/index.ts +2 -0
  415. package/src/hooks/useFloatingUIPreset.ts +48 -0
  416. package/src/hooks/useRtcStats.ts +36 -0
  417. package/src/types/components.ts +7 -0
  418. package/src/types/index.ts +1 -0
@@ -0,0 +1,2351 @@
1
+ @charset "UTF-8";
2
+ .str-video *,
3
+ .str-video *::before,
4
+ .str-video *::after {
5
+ box-sizing: border-box;
6
+ }
7
+ .str-video button {
8
+ cursor: pointer;
9
+ border-style: none;
10
+ box-shadow: none;
11
+ }
12
+
13
+ .str-video .ngxp__container {
14
+ opacity: 1;
15
+ z-index: 1;
16
+ padding: 0;
17
+ border: none;
18
+ }
19
+ .str-video .ngxp__container > .ngxp__arrow,
20
+ .str-video .ngxp__container > .ngxp__arrow:before {
21
+ width: 0;
22
+ height: 0;
23
+ }
24
+
25
+ .str-video {
26
+ /* Used for elements where sizing is necessary (such as icons, avatar), you can use this variable to scale those elements */
27
+ --str-video__spacing-px: 1px;
28
+ /* Used for margins and paddings */
29
+ --str-video__spacing-0_5: 0.125rem;
30
+ /* Used for margins and paddings */
31
+ --str-video__spacing-1: 0.25rem;
32
+ /* Used for margins and paddings */
33
+ --str-video__spacing-1_5: 0.375rem;
34
+ /* Used for margins and paddings */
35
+ --str-video__spacing-2: 0.5rem;
36
+ /* Used for margins and paddings */
37
+ --str-video__spacing-2_5: 0.625rem;
38
+ /* Used for margins and paddings */
39
+ --str-video__spacing-3: 0.75rem;
40
+ /* Used for margins and paddings */
41
+ --str-video__spacing-3_5: 0.875rem;
42
+ /* Used for margins and paddings */
43
+ --str-video__spacing-4: 1rem;
44
+ /* Used for margins and paddings */
45
+ --str-video__spacing-5: 1.25rem;
46
+ /* Used for margins and paddings */
47
+ --str-video__spacing-6: 1.5rem;
48
+ /* Used for margins and paddings */
49
+ --str-video__spacing-7: 1.75rem;
50
+ /* Used for margins and paddings */
51
+ --str-video__spacing-8: 2rem;
52
+ /* Used for margins and paddings */
53
+ --str-video__spacing-9: 2.25rem;
54
+ /* Used for margins and paddings */
55
+ --str-video__spacing-10: 2.5rem;
56
+ /* Used for margins and paddings */
57
+ --str-video__spacing-11: 2.75rem;
58
+ /* Used for margins and paddings */
59
+ --str-video__spacing-12: 3rem;
60
+ /* Used for margins and paddings */
61
+ --str-video__spacing-14: 3.5rem;
62
+ /* Used for margins and paddings */
63
+ --str-video__spacing-16: 4rem;
64
+ }
65
+
66
+ .str-video {
67
+ /* Border radius used for slightly rounded elements */
68
+ --str-video__border-radius-xxxs: 2px;
69
+ /* Border radius used for slightly rounded elements */
70
+ --str-video__border-radius-xxs: 4px;
71
+ /* Border radius used for slightly rounded elements */
72
+ --str-video__border-radius-xs: 8px;
73
+ /* Border radius used for slightly rounded elements */
74
+ --str-video__border-radius-sm: 12px;
75
+ /* Border radius used for rounded elements */
76
+ --str-video__border-radius-md: 18px;
77
+ /* Border radius used for rounded elements */
78
+ --str-video__border-radius-lg: 20px;
79
+ /* Border radius used for rounded elements */
80
+ --str-video__border-radius-xl: 30px;
81
+ /* Border radius used for circular elements */
82
+ --str-video__border-radius-circle: 999px;
83
+ /* The font used in the video, by default, we use [preinstalled OS fonts](https://systemfontstack.com/) */
84
+ --str-video__font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu,
85
+ Cantarell, Helvetica Neue, sans-serif;
86
+ /* The font used for caption texts */
87
+ --str-video__caption-text: 0.75rem/1rem var(--str-video__font-family);
88
+ /* The font used for caption texts with emphasize */
89
+ --str-video__caption-medium-text: 500 0.75rem/1rem var(--str-video__font-family);
90
+ /* The font used for body texts */
91
+ --str-video__body-text: 0.875rem/1rem var(--str-video__font-family);
92
+ /* The font used for body texts with emphasize */
93
+ --str-video__body-medium-text: 500 0.875rem/1rem var(--str-video__font-family);
94
+ /* The font used for body texts */
95
+ --str-video__body2-text: 0.9375rem/1rem var(--str-video__font-family);
96
+ /* The font used for body texts with emphasize */
97
+ --str-video__body2-medium-text: 500 0.9375rem/1rem var(--str-video__font-family);
98
+ /* The font used for subtitle texts */
99
+ --str-video__subtitle-text: 1rem/1.25rem var(--str-video__font-family);
100
+ /* The font used for subtitle texts with emphasize */
101
+ --str-video__subtitle-medium-text: 500 1rem/1.25rem var(--str-video__font-family);
102
+ /* The font used for subtitle texts */
103
+ --str-video__subtitle2-text: 1.25rem/1.5rem var(--str-video__font-family);
104
+ /* The font used for subtitle texts with emphasize */
105
+ --str-video__subtitle2-medium-text: 500 1.25rem/1.5rem var(--str-video__font-family);
106
+ /* The font used for headline texts */
107
+ --str-video__headline-text: 1.5rem/1.5rem var(--str-video__font-family);
108
+ /* The font used for headline texts */
109
+ --str-video__headline2-text: 1.8rem/1.8rem var(--str-video__font-family);
110
+ }
111
+
112
+ .str-video,
113
+ .str-video__theme-light {
114
+ /* Used for emphasis, brands can inject their main color using this variable */
115
+ --str-video__primary-color: var(--str-video__blue500);
116
+ /* Used for emphasised overlays - color of --str-video__primary-color with alpha channel */
117
+ --str-video__primary-overlay-color: rgba(0, 95, 255, 0.6);
118
+ /* Used for emphasis, brands can inject their main color using this variable, it has less emphasis than primary color */
119
+ --str-video__primary-color-low-emphasis: var(--str-video__blue300);
120
+ /* Used to indicate that a UI element with primary color is in an active state */
121
+ --str-video__active-primary-color: var(--str-video__blue600);
122
+ /* If the primary color is used as a background, text/icons are displayed in this color */
123
+ --str-video__on-primary-color: var(--str-video__grey50);
124
+ /* Used as a background color for the main video UI components */
125
+ --str-video__background-color: var(--str-video__grey50);
126
+ /* Used as a background color for the main video UI components */
127
+ --str-video__secondary-background-color: var(--str-video__grey50);
128
+ /* Used as a background color to give emphasis, but less vibrant than the primary color */
129
+ --str-video__primary-surface-color: var(--str-video__blue100);
130
+ /* Used as a background color to give emphasis, but less vibrant than the primary surface color */
131
+ --str-video__primary-surface-color-low-emphasis: var(--str-video__blue50);
132
+ /* A neutral color used to give emphasis to different surfaces */
133
+ --str-video__surface-color: var(--str-video__grey300);
134
+ /* A neutral color used to give emphasis to different surfaces */
135
+ --str-video__secondary-surface-color: var(--str-video__grey200);
136
+ /* A neutral color used to give emphasis to different surfaces */
137
+ --str-video__tertiary-surface-color: var(--str-video__grey100);
138
+ /* The main color used for texts/icons */
139
+ --str-video__text-color: var(--str-video__grey950);
140
+ /* Used for texts/icons that need less emphasis */
141
+ --str-video__text-low-emphasis-color: var(--str-video__grey500);
142
+ /* Used for displaying disabled UI elements (typically buttons) */
143
+ --str-video__disabled-color: var(--str-video__grey400);
144
+ /* Used for text/icon colors if disabled color is used as a background color */
145
+ --str-video__on-disabled-color: var(--str-video__grey50);
146
+ /* Used for error messages, and destructive actions */
147
+ --str-video__danger-color: var(--str-video__red400);
148
+ /* The background color used to highlight a message when jumping to a message. Only available in React SDK. */
149
+ --str-video__message-highlight-color: var(--str-video__yellow100);
150
+ /* Used for displaying the unread badge */
151
+ --str-video__unread-badge-color: var(--str-video__red400);
152
+ /* Used for text/icon colors if unread badge color is used as a background color */
153
+ --str-video__on-unread-badge-color: var(--str-video__grey50);
154
+ /* The background color used for overlays */
155
+ --str-video__overlay-color: rgba(252, 252, 252, 0.9);
156
+ /* The background color used for subtle overlays */
157
+ --str-video__secondary-overlay-color: rgba(0, 0, 0, 0.2);
158
+ /* The text/icon color used on subtle overlays */
159
+ --str-video__secondary-overlay-text-color: var(--str-video__grey50);
160
+ /* The background color used for opaque surfaces */
161
+ --str-video__opaque-surface-background-color: rgba(0, 0, 0, 0.8);
162
+ /* The text color used on opaque surfaces */
163
+ --str-video__opaque-surface-text-color: var(--str-video__grey50);
164
+ /* If a component has a box shadow applied to it, this will be the color used for the shadow */
165
+ --str-video__box-shadow-color: rgba(0, 0, 0, 0.18);
166
+ /* Used for online indicator and success messages */
167
+ --str-video__info-color: var(--str-video__green500);
168
+ }
169
+
170
+ .str-video__theme-dark {
171
+ --str-video__primary-color: var(--str-video__blue400);
172
+ --str-video__primary-overlay-color: rgba(51, 126, 255, 0.6);
173
+ --str-video__primary-color-low-emphasis: var(--str-video__blue700);
174
+ --str-video__active-primary-color: var(--str-video__blue600);
175
+ --str-video__on-primary-color: var(--str-video__grey50);
176
+ --str-video__background-color: var(--str-video__grey950);
177
+ --str-video__secondary-background-color: var(--str-video__grey900);
178
+ --str-video__primary-surface-color: var(--str-video__blue900);
179
+ --str-video__primary-surface-color-low-emphasis: var(--str-video__blue950);
180
+ --str-video__surface-color: var(--str-video__grey700);
181
+ --str-video__secondary-surface-color: var(--str-video__grey800);
182
+ --str-video__tertiary-surface-color: var(--str-video__grey900);
183
+ --str-video__text-color: var(--str-video__grey50);
184
+ --str-video__text-low-emphasis-color: var(--str-video__grey500);
185
+ --str-video__disabled-color: var(--str-video__grey600);
186
+ --str-video__on-disabled-color: var(--str-video__grey50);
187
+ --str-video__danger-color: var(--str-video__red600);
188
+ --str-video__message-highlight-color: var(--str-video__yellow900);
189
+ --str-video__unread-badge-color: var(--str-video__red400);
190
+ --str-video__on-unread-badge-color: var(--str-video__grey50);
191
+ --str-video__overlay-color: rgba(0, 0, 0, 0.7);
192
+ --str-video__secondary-overlay-color: rgba(0, 0, 0, 0.4);
193
+ --str-video__secondary-overlay-text-color: var(--str-video__grey50);
194
+ --str-video__opaque-surface-background-color: rgba(250, 250, 250, 0.85);
195
+ --str-video__opaque-surface-text-color: var(--str-video__grey900);
196
+ --str-video__box-shadow-color: rgba(0, 0, 0, 0.8);
197
+ --str-video__info-color: var(--str-video__green500);
198
+ }
199
+
200
+ .str-video {
201
+ --str-video__blue950: #001333;
202
+ --str-video__blue900: #00163d;
203
+ --str-video__blue800: #002666;
204
+ --str-video__blue700: #003999;
205
+ --str-video__blue600: #004ccc;
206
+ --str-video__blue500: #005fff;
207
+ --str-video__blue400: #337eff;
208
+ --str-video__blue300: #669fff;
209
+ --str-video__blue200: #ccdfff;
210
+ --str-video__blue100: #e0f0ff;
211
+ --str-video__blue50: #ebf5ff;
212
+ --str-video__grey950: #080707;
213
+ --str-video__grey900: #17191c;
214
+ --str-video__grey800: #1c1e22;
215
+ --str-video__grey700: #272a30;
216
+ --str-video__grey600: #4c525c;
217
+ --str-video__grey500: #72767e;
218
+ --str-video__grey400: #b4b7bb;
219
+ --str-video__grey300: #dbdde1;
220
+ --str-video__grey200: #e9eaed;
221
+ --str-video__grey100: #f4f4f5;
222
+ --str-video__grey50: #ffffff;
223
+ --str-video__red900: #330003;
224
+ --str-video__red800: #660006;
225
+ --str-video__red700: #990008;
226
+ --str-video__red600: #cc000b;
227
+ --str-video__red500: #ff000e;
228
+ --str-video__red400: #ff3742;
229
+ --str-video__red300: #ff666e;
230
+ --str-video__red200: #ff999f;
231
+ --str-video__red100: #ffe5e7;
232
+ --str-video__green900: #062d16;
233
+ --str-video__green800: #0d592c;
234
+ --str-video__green700: #138643;
235
+ --str-video__green600: #19b359;
236
+ --str-video__green500: #20e070;
237
+ --str-video__green400: #4ce68c;
238
+ --str-video__green300: #79eca9;
239
+ --str-video__green200: #a6f2c6;
240
+ --str-video__green100: #e9f1ff;
241
+ --str-video__yellow900: #332500;
242
+ --str-video__yellow800: #664900;
243
+ --str-video__yellow700: #996e00;
244
+ --str-video__yellow600: #cc9200;
245
+ --str-video__yellow500: #ffb700;
246
+ --str-video__yellow400: #ffd466;
247
+ --str-video__yellow300: #ffe299;
248
+ --str-video__yellow200: #fff1cc;
249
+ --str-video__yellow100: #fff8e5;
250
+ }
251
+
252
+ .str-video,
253
+ .str-video__call,
254
+ .str-video__theme-variables {
255
+ --str-video__background-color0: #000000;
256
+ --str-video__background-color1: #1c1e22;
257
+ --str-video__background-color2: #272a30;
258
+ --str-video__background-color3: #9e9e9e;
259
+ --str-video__background-color4: #121416;
260
+ --str-video__background-color5: #4a5059;
261
+ --str-video__danger-color1: #ff3742;
262
+ --str-video__danger-color2: #ff000e;
263
+ --str-video__overlay-color: rgba(39, 42, 48, 0.75);
264
+ --str-video__text-color1: #ffffff;
265
+ --str-video__text-color2: #b4b7bb;
266
+ --str-video__text-color3: #72767e;
267
+ --str-video__text-color4: #f7f7f8;
268
+ --str-video__border-radius1: 8px;
269
+ --str-video__border-radius2: 12px;
270
+ --str-video__border-radius-circle: 9999px;
271
+ --str-video__primary-color: #005fff;
272
+ --str-video__secondary-color: #337eff;
273
+ --str-video__icon--call-end: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAyNiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDIuNDY4NzRDMTEuMzMzMyAyLjQ2ODc0IDkuNzE4NzUgMi43MjkxNiA4LjIwODMzIDMuMjE4NzRWNi40NDc5MUM4LjIwODMzIDYuODU0MTYgNy45Njg3NSA3LjIxODc0IDcuNjI1IDcuMzg1NDFDNi42MDQxNyA3Ljg5NTgzIDUuNjc3MDggOC41NTIwOCA0Ljg1NDE3IDkuMzEyNDlDNC42NjY2NyA5LjQ5OTk5IDQuNDA2MjUgOS42MDQxNiA0LjEyNSA5LjYwNDE2QzMuODMzMzMgOS42MDQxNiAzLjU3MjkyIDkuNDg5NTggMy4zODU0MiA5LjMwMjA4TDAuODAyMDgzIDYuNzE4NzRDMC42MTQ1ODMgNi41NDE2NiAwLjUgNi4yODEyNCAwLjUgNS45ODk1N0MwLjUgNS42OTc5MSAwLjYxNDU4MyA1LjQzNzQ5IDAuODAyMDgzIDUuMjQ5OTlDMy45NzkxNyAyLjIzOTU3IDguMjcwODMgMC4zODU0MDYgMTMgMC4zODU0MDZDMTcuNzI5MiAwLjM4NTQwNiAyMi4wMjA4IDIuMjM5NTcgMjUuMTk3OSA1LjI0OTk5QzI1LjM4NTQgNS40Mzc0OSAyNS41IDUuNjk3OTEgMjUuNSA1Ljk4OTU3QzI1LjUgNi4yODEyNCAyNS4zODU0IDYuNTQxNjYgMjUuMTk3OSA2LjcyOTE2TDIyLjYxNDYgOS4zMTI0OUMyMi40MjcxIDkuNDk5OTkgMjIuMTY2NyA5LjYxNDU4IDIxLjg3NSA5LjYxNDU4QzIxLjU5MzggOS42MTQ1OCAyMS4zMzMzIDkuNDk5OTkgMjEuMTQ1OCA5LjMyMjkxQzIwLjMyMjkgOC41NTIwOCAxOS4zODU0IDcuOTA2MjQgMTguMzY0NiA3LjM5NTgyQzE4LjAyMDggNy4yMjkxNiAxNy43ODEyIDYuODc0OTkgMTcuNzgxMiA2LjQ1ODMyVjMuMjI5MTZDMTYuMjgxMiAyLjcyOTE2IDE0LjY2NjcgMi40Njg3NCAxMyAyLjQ2ODc0WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
274
+ --str-video__icon--camera: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjExMTEgMTBWNS4zMzMzM0MxOC4xMTExIDQuNiAxNy41NjExIDQgMTYuODg4OSA0SDIuMjIyMjJDMS41NSA0IDEgNC42IDEgNS4zMzMzM1YxOC42NjY3QzEgMTkuNCAxLjU1IDIwIDIuMjIyMjIgMjBIMTYuODg4OUMxNy41NjExIDIwIDE4LjExMTEgMTkuNCAxOC4xMTExIDE4LjY2NjdWMTRMMjEuMjYyOCAxNy40MzgzQzIxLjg3OTEgMTguMTEwNSAyMyAxNy42NzQ1IDIzIDE2Ljc2MjVWNy4yMzc0N0MyMyA2LjMyNTQ2IDIxLjg3OTEgNS44ODk0NSAyMS4yNjI4IDYuNTYxNzRMMTguMTExMSAxMFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
275
+ --str-video__icon--camera-off: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIzIDYuMjEwNTNMMTguMzY4NCAxMC44NDIxVjYuNzg5NDdDMTguMzY4NCA2LjE1MjYzIDE3Ljg0NzQgNS42MzE1OCAxNy4yMTA1IDUuNjMxNThIMTAuMDU0N0wyMyAxOC41NzY4VjYuMjEwNTNaTTIuNDcwNTMgMUwxIDIuNDcwNTNMNC4xNjEwNSA1LjYzMTU4SDMuMzE1NzlDMi42Nzg5NSA1LjYzMTU4IDIuMTU3ODkgNi4xNTI2MyAyLjE1Nzg5IDYuNzg5NDdWMTguMzY4NEMyLjE1Nzg5IDE5LjAwNTMgMi42Nzg5NSAxOS41MjYzIDMuMzE1NzkgMTkuNTI2M0gxNy4yMTA1QzE3LjQ1MzcgMTkuNTI2MyAxNy42NjIxIDE5LjQzMzcgMTcuODM1OCAxOS4zMTc5TDIxLjUyOTUgMjNMMjMgMjEuNTI5NUwyLjQ3MDUzIDFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
276
+ --str-video__icon--caret: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOSA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogICAgPHBhdGggZD0iTTQuNTAwMjQgMC43Njc3QzQuMzYzMjggMC43Njc3IDQuMjM4NCAwLjgyMDA2OCA0LjEzNzY5IDAuOTI4ODMzTDEuMDY4MTEgNC4wNjY4OUMwLjk3OTQ5MSA0LjE1NTUyIDAuOTM1MTggNC4yNjQyOCAwLjkzNTE4IDQuMzk3MjJDMC45MzUxOCA0LjY1OTA2IDEuMTQwNjIgNC44NjQ1IDEuMzk4NDQgNC44NjQ1QzEuNTI3MzQgNC44NjQ1IDEuNjQ4MTkgNC44MTIxMyAxLjczNjgyIDQuNzIzNTFMNC41MDAyNCAxLjg5MTZMNy4yNjM2NyA0LjcyMzUxQzcuMzU2MzIgNC44MTIxMyA3LjQ3MzE0IDQuODY0NSA3LjYwMjA1IDQuODY0NUM3Ljg2Mzg5IDQuODY0NSA4LjA2OTM0IDQuNjU5MDYgOC4wNjkzNCA0LjM5NzIyQzguMDY5MzQgNC4yNjgzMSA4LjAyMSA0LjE1NTUyIDcuOTMyMzcgNC4wNjY4OUw0Ljg2Mjc5IDAuOTI4ODMzQzQuNzU4MDYgMC44MjAwNjggNC42MzcyMSAwLjc2NzcgNC41MDAyNCAwLjc2NzdaIiBmaWxsPSIjNzI3NjdFIi8+Cjwvc3ZnPgo=");
277
+ --str-video__icon--chat: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIzIDMuMTk1MDdWMTcuNzI2M0g0LjQ2MjVMMyAxOS4xNDMxVjMuMTk1MDdIMjNaTTIzIDAuNzczMTkzSDNDMS42MjUgMC43NzMxOTMgMC41IDEuODYzMDQgMC41IDMuMTk1MDdWMjIuMDczNkMwLjUgMjMuMTUxMyAxLjg1IDIzLjY5NjIgMi42Mzc1IDIyLjkzMzNMNS41IDIwLjE0ODJIMjNDMjQuMzc1IDIwLjE0ODIgMjUuNSAxOS4wNTgzIDI1LjUgMTcuNzI2M1YzLjE5NTA3QzI1LjUgMS44NjMwNCAyNC4zNzUgMC43NzMxOTMgMjMgMC43NzMxOTNaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
278
+ --str-video__icon--close: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEwIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8cGF0aCBkPSJNOS4xOTk0OSAwLjMwNTY3MUM4LjkzOTQ5IDAuMDQ1NjcwNyA4LjUxOTQ5IDAuMDQ1NjcwNyA4LjI1OTQ5IDAuMzA1NjcxTDQuOTk5NDkgMy41NTlMMS43Mzk0OSAwLjI5OTAwNEMxLjQ3OTQ5IDAuMDM5MDAzOSAxLjA1OTQ5IDAuMDM5MDAzOSAwLjc5OTQ5MiAwLjI5OTAwNEMwLjUzOTQ5MiAwLjU1OTAwNCAwLjUzOTQ5MiAwLjk3OTAwNCAwLjc5OTQ5MiAxLjIzOUw0LjA1OTQ5IDQuNDk5TDAuNzk5NDkyIDcuNzU5QzAuNTM5NDkyIDguMDE5IDAuNTM5NDkyIDguNDM5IDAuNzk5NDkyIDguNjk5QzEuMDU5NDkgOC45NTkgMS40Nzk0OSA4Ljk1OSAxLjczOTQ5IDguNjk5TDQuOTk5NDkgNS40MzlMOC4yNTk0OSA4LjY5OUM4LjUxOTQ5IDguOTU5IDguOTM5NDkgOC45NTkgOS4xOTk0OSA4LjY5OUM5LjQ1OTQ5IDguNDM5IDkuNDU5NDkgOC4wMTkgOS4xOTk0OSA3Ljc1OUw1LjkzOTQ5IDQuNDk5TDkuMTk5NDkgMS4yMzlDOS40NTI4MyAwLjk4NTY3MSA5LjQ1MjgzIDAuNTU5MDA0IDkuMTk5NDkgMC4zMDU2NzFaIiBmaWxsPSIjNzI3NjdFIi8+Cjwvc3ZnPgo=");
279
+ --str-video__icon--connection-quality-poor: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC40OTgwNDciIHk9IjAuNTAwOTc3IiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHJ4PSI2IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjg1Ii8+CjxwYXRoIGQ9Ik0xMi40OTggMTYuNTAxTDEyLjQ5OCAxMS41MDEiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik03LjQ5ODA1IDE2LjUwMUw3LjQ5ODA1IDE0LjUwMSIgc3Ryb2tlPSIjRkYzNzQyIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgLz4KPHBhdGggZD0iTTE3LjQ5OCAxNi41MDFMMTcuNDk4IDguNTAwOTgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiAvPgo8L3N2Zz4K");
280
+ --str-video__icon--connection-quality-good: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC40OTgwNDciIHk9IjAuNDk5MDIzIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHJ4PSI2IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjg1Ii8+CjxwYXRoIGQ9Ik0xMi40OTggMTYuNDk5TDEyLjQ5OCAxMS40OTkiIHN0cm9rZT0iIzAwNkNGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTcuNDk4MDUgMTYuNDk5TDcuNDk4MDUgMTQuNDk5IiBzdHJva2U9IiMwMDZDRkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNy40OTggMTYuNDk5TDE3LjQ5OCA4LjQ5OTAyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
281
+ --str-video__icon--connection-quality-excellent: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC40OTgwNDciIHk9IjAuNDk5MDIzIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHJ4PSI2IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjg1Ii8+CjxwYXRoIGQ9Ik0xMi40OTggMTYuNDk5TDEyLjQ5OCAxMS40OTkiIHN0cm9rZT0iIzAwNkNGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTcuNDk4MDUgMTYuNDk5TDcuNDk4MDUgMTQuNDk5IiBzdHJva2U9IiMwMDZDRkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNy40OTggMTYuNDk5TDE3LjQ5OCA4LjQ5OTAyIiBzdHJva2U9IiMwMDZDRkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
282
+ --str-video__icon--copy: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0zLjUgMCAxOSAxOSI+PHBhdGggZD0iTTExLjQxNSA1LjA2OHY5LjE2YS40NjMuNDYzIDAgMCAxLS40NjIuNDYxSDkuNDc3djEuNDc3YS40NjMuNDYzIDAgMCAxLS40NjIuNDYySDEuMDQ3YS40NjMuNDYzIDAgMCAxLS40NjItLjQ2MlY0Ljk3NmEuNDYzLjQ2MyAwIDAgMSAuNDYyLS40NjJoMS40NzZWMy4wMzdhLjQ2My40NjMgMCAwIDEgLjQ2Mi0uNDYyaDUuOTM3ek04LjM2OSA3Ljg3NEg2LjYyOGEuNTI5LjUyOSAwIDAgMS0uNTI3LS41MjdWNS42MjJIMS42OTN2OS44OTdIOC4zN3ptLTQuNzM3LTQuMTl2LjgzaDMuMzUybDEuMDk1IDEuMDk1YS41MTguNTE4IDAgMCAxLS4wNC0uMlYzLjY4NHptNS44NDUgMy4zMjN2Ni41NzRoLjgzVjUuOTM2aC0xLjc0YS41MTcuNTE3IDAgMCAxLS4yLS4wNHoiLz48L3N2Zz4K");
283
+ --str-video__icon--dominant-speaker: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAxNCAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuMDY4MzU5NCAxMi44NDE5QzAuMDY4MzU5NCAxMy4yMzIzIDAuMzczMDQ3IDEzLjUyNzQgMC43OTE5OTIgMTMuNTI3NEg2LjMxNDQ1TDMuNDEwNCAyMS4zMjU1QzMuMDIwMDIgMjIuMzYzNCA0LjA5NTk1IDIyLjkxNTYgNC43ODE0OSAyMi4wNzc3TDEzLjY3NDYgMTEuMDcwOUMxMy44NDU5IDEwLjg1MTkgMTMuOTMxNiAxMC42NTE5IDEzLjkzMTYgMTAuNDMzQzEzLjkzMTYgMTAuMDMzMSAxMy42MjcgOS43NDc0MSAxMy4yMDggOS43NDc0MUg3LjY4NTU1TDEwLjU4OTYgMS45Mzk3OUMxMC45OCAwLjkwMTk0NyA5LjkwNDA1IDAuMzQ5NzAxIDkuMjE4NTEgMS4xOTcxMUwwLjMzNDk2MSAxMi4yMDM5QzAuMTYzNTc0IDEyLjQxMzQgMC4wNjgzNTk0IDEyLjYxMzQgMC4wNjgzNTk0IDEyLjg0MTlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
284
+ --str-video__icon--download: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiPjxwYXRoIGQ9Ik01MTIgNjY2LjUgMzY3LjIgNTIxLjdsMzYuMi0zNi4yIDgzIDgzVjI1Nmg1MS4ydjMxMi41bDgzLTgzIDM2LjIgMzYuMkw1MTIgNjY2LjV6bS0yMDQuOCA1MC4zVjc2OGg0MDkuNnYtNTEuMkgzMDcuMnoiLz48L3N2Zz4K");
285
+ --str-video__icon--ellipsis: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj4KCTxwYXRoCgkJZD0iTTM1MiAyNTZDMzUyIDIzOC4zIDM2Ni4zIDIyNCAzODQgMjI0QzQwMS43IDIyNCA0MTYgMjM4LjMgNDE2IDI1NkM0MTYgMjczLjcgNDAxLjcgMjg4IDM4NCAyODhDMzY2LjMgMjg4IDM1MiAyNzMuNyAzNTIgMjU2ek0xOTIgMjU2QzE5MiAyMzguMyAyMDYuMyAyMjQgMjI0IDIyNEMyNDEuNyAyMjQgMjU2IDIzOC4zIDI1NiAyNTZDMjU2IDI3My43IDI0MS43IDI4OCAyMjQgMjg4QzIwNi4zIDI4OCAxOTIgMjczLjcgMTkyIDI1NnpNOTYgMjU2Qzk2IDI3My43IDgxLjY3IDI4OCA2NCAyODhDNDYuMzMgMjg4IDMyIDI3My43IDMyIDI1NkMzMiAyMzguMyA0Ni4zMyAyMjQgNjQgMjI0QzgxLjY3IDIyNCA5NiAyMzguMyA5NiAyNTZ6IgoJLz4KPC9zdmc+Cg==");
286
+ --str-video__icon--film-roll: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMzQzLjY1NiA0NTEuMTA5QzQxMCA0MTEuNDM4IDQ1NC40MjIgMzM4LjkwNiA0NTQuNDIyIDI1NmMwLTEyNS40ODQtMTAxLjcxOS0yMjcuMjE5LTIyNy4yMDMtMjI3LjIxOUMxMDEuNzE5IDI4Ljc4MSAwIDEzMC41MTYgMCAyNTZzMTAxLjcxOSAyMjcuMjE5IDIyNy4yMTkgMjI3LjIxOUg1MTJWNDUxLjExSDM0My42NTZ6bS0yNS4xNzItMzA1LjIzNGMyMy41NDctMTMuNTk0IDUzLjY0MS01LjUzMSA2Ny4yMzQgMTguMDE2czUuNTMxIDUzLjY1Ni0xOC4wMTYgNjcuMjVjLTIzLjU0NyAxMy41NzgtNTMuNjQxIDUuNTE2LTY3LjIzNC0xOC4wMTYtMTMuNjA5LTIzLjU2Mi01LjUzLTUzLjY1NiAxOC4wMTYtNjcuMjV6bS0xOC4wMzEgMTUxLjgxM2MxMy42MDktMjMuNTQ3IDQzLjcwMy0zMS42MDkgNjcuMjUtMTguMDE2IDIzLjU0NyAxMy42MDkgMzEuNjA5IDQzLjcwMyAxOC4wMTYgNjcuMjVzLTQzLjY4OCAzMS42MDktNjcuMjUgMTguMDE2Yy0yMy41MzEtMTMuNTk0LTMxLjYxLTQzLjcwNC0xOC4wMTYtNjcuMjV6TTIyNy4yMTkgNzIuMzc1YzI3LjE4OCAwIDQ5LjIxOSAyMi4wMzEgNDkuMjE5IDQ5LjIxOXMtMjIuMDMxIDQ5LjI1LTQ5LjIxOSA0OS4yNS00OS4yNS0yMi4wNjMtNDkuMjUtNDkuMjUgMjIuMDYyLTQ5LjIxOSA0OS4yNS00OS4yMTl6TTI0OS45MzggMjU2YzAgMTIuNTYzLTEwLjE3MiAyMi43MTktMjIuNzE5IDIyLjcxOS0xMi41NjMgMC0yMi43MTktMTAuMTU2LTIyLjcxOS0yMi43MTlzMTAuMTU2LTIyLjcxOSAyMi43MTktMjIuNzE5YzEyLjU0NyAwIDIyLjcxOSAxMC4xNTcgMjIuNzE5IDIyLjcxOXpNNjguNzAzIDE2My44OTFjMTMuNTk0LTIzLjU0NyA0My43MDMtMzEuNjA5IDY3LjI1LTE4LjAxNnMzMS42MDkgNDMuNjg4IDE4LjAxNiA2Ny4yNWMtMTMuNTk0IDIzLjUzMS00My43MDMgMzEuNjA5LTY3LjI1IDE4LjAxNi0yMy41MzEtMTMuNTk0LTMxLjYxLTQzLjcwMy0xOC4wMTYtNjcuMjV6bTY3LjI2NiAyMDEuMDQ3Yy0yMy41NjMgMTMuNTk0LTUzLjY1NiA1LjUzMS02Ny4yNjYtMTguMDE2LTEzLjU3OC0yMy41NDctNS41MTYtNTMuNjU2IDE4LjAxNi02Ny4yNjYgMjMuNTQ3LTEzLjU5NCA1My42NTYtNS41MTYgNjcuMjUgMTguMDMxczUuNTMxIDUzLjY1Ny0xOCA2Ny4yNTF6bTQyIDI0LjI2NWMwLTI3LjE4OCAyMi4wNjMtNDkuMjM0IDQ5LjI1LTQ5LjIzNHM0OS4yMTkgMjIuMDQ3IDQ5LjIxOSA0OS4yMzQtMjIuMDMxIDQ5LjIzNC00OS4yMTkgNDkuMjM0LTQ5LjI1LTIyLjA0Ni00OS4yNS00OS4yMzR6Ii8+PC9zdmc+Cg==");
287
+ --str-video__icon--grid: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAzMyAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMzAuMzMxMSIgeT0iMTYiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAzMC4zMzExIDE2KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMTYuMTA5NCIgeT0iMTYiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAxNi4xMDk0IDE2KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMjMuMjIwNyIgeT0iMTYiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAyMy4yMjA3IDE2KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iOC45OTgwNSIgeT0iMTYiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA4Ljk5ODA1IDE2KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMzAuMzMxMSIgeT0iOS43NzczNCIgd2lkdGg9IjQuNDQ0NDQiIGhlaWdodD0iNS4zMzMzMyIgcng9IjEiIHRyYW5zZm9ybT0icm90YXRlKDkwIDMwLjMzMTEgOS43NzczNCkiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHg9IjMwLjMzMTEiIHk9IjMuNTU0NjkiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAzMC4zMzExIDMuNTU0NjkpIiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIyMy4yMjA3IiB5PSI5Ljc3NzM0IiB3aWR0aD0iNC40NDQ0NCIgaGVpZ2h0PSI1LjMzMzMzIiByeD0iMSIgdHJhbnNmb3JtPSJyb3RhdGUoOTAgMjMuMjIwNyA5Ljc3NzM0KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMjMuMjIwNyIgeT0iMy41NTQ2OSIgd2lkdGg9IjQuNDQ0NDQiIGhlaWdodD0iNS4zMzMzMyIgcng9IjEiIHRyYW5zZm9ybT0icm90YXRlKDkwIDIzLjIyMDcgMy41NTQ2OSkiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHg9IjE2LjEwOTQiIHk9IjkuNzc3MzQiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAxNi4xMDk0IDkuNzc3MzQpIiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIxNi4xMDk0IiB5PSIzLjU1NDY5IiB3aWR0aD0iNC40NDQ0NCIgaGVpZ2h0PSI1LjMzMzMzIiByeD0iMSIgdHJhbnNmb3JtPSJyb3RhdGUoOTAgMTYuMTA5NCAzLjU1NDY5KSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iOC45OTgwNSIgeT0iOS43NzczNCIgd2lkdGg9IjQuNDQ0NDQiIGhlaWdodD0iNS4zMzMzMyIgcng9IjEiIHRyYW5zZm9ybT0icm90YXRlKDkwIDguOTk4MDUgOS43NzczNCkiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHg9IjguOTk4MDUiIHk9IjMuNTU0NjkiIHdpZHRoPSI0LjQ0NDQ0IiBoZWlnaHQ9IjUuMzMzMzMiIHJ4PSIxIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA4Ljk5ODA1IDMuNTU0NjkpIiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB4PSIxLjQ5ODA1IiB5PSIwLjUiIHdpZHRoPSIzMSIgaGVpZ2h0PSIyMyIgcng9IjIuNSIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L3N2Zz4K");
288
+ --str-video__icon--info-document: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjUgMjNINC41QzMuNCAyMyAyLjUgMjIuMSAyLjUgMjFWN0g0LjVWMjFIMTguNVYyM1pNMTUuNSAxSDguNUM3LjQgMSA2LjUxIDEuOSA2LjUxIDNMNi41IDE3QzYuNSAxOC4xIDcuMzkgMTkgOC40OSAxOUgxOS41QzIwLjYgMTkgMjEuNSAxOC4xIDIxLjUgMTdWN0wxNS41IDFaTTE5LjUgMTdIOC41VjNIMTQuNjdMMTkuNSA3LjgzVjE3WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTE0LjgwNjIgMTQuNTY5M0gxMi44MDYyTDEyLjgwNjIgOS41NjkzNEgxNC44MDYyTDE0LjgwNjIgMTQuNTY5M1oiIGZpbGw9ImJsYWNrIi8+CjxwYXRoIGQ9Ik0xNC44OTAxIDYuNTczMjRDMTQuODkwMSA3LjE3MTkxIDE0LjQwNDggNy42NTcyMyAxMy44MDYyIDcuNjU3MjNDMTMuMjA3NSA3LjY1NzIzIDEyLjcyMjIgNy4xNzE5MSAxMi43MjIyIDYuNTczMjRDMTIuNzIyMiA1Ljk3NDU3IDEzLjIwNzUgNS40ODkyNiAxMy44MDYyIDUuNDg5MjZDMTQuNDA0OCA1LjQ4OTI2IDE0Ljg5MDEgNS45NzQ1NyAxNC44OTAxIDYuNTczMjRaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
289
+ --str-video__icon--info-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjRweCIgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTExIDdoMnYyaC0yem0wIDRoMnY2aC0yem0xLTlDNi40OCAyIDIgNi40OCAyIDEyczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNy41MiAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPjwvc3ZnPg==");
290
+ --str-video__icon--loading: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMSAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAuOTIxMyAxNUMzMC45MjEzIDIzLjI4NDMgMjQuMjA1NiAzMCAxNS45MjEzIDMwQzEwLjcxNTQgMzAgNi4xMjg5OSAyNy4zNDggMy40MzkyMSAyMy4zMjE0TDUuMTAzNDkgMjIuMjExOUM3LjQzNDYzIDI1LjcwMTYgMTEuNDA5NiAyOCAxNS45MjEzIDI4QzIzLjEwMSAyOCAyOC45MjEzIDIyLjE3OTcgMjguOTIxMyAxNUMyOC45MjEzIDcuODIwMyAyMy4xMDEgMiAxNS45MjEzIDJMMTUuOTIxMyAwQzI0LjIwNTYgMCAzMC45MjEzIDYuNzE1NzMgMzAuOTIxMyAxNVoiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl8xODYwXzExMDYyMykiLz4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xODYwXzExMDYyMyIgeDE9IjMuNDM5MjEiIHkxPSIwIiB4Mj0iMy40MzkyMSIgeTI9IjMwIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxzdG9wIGlkPSJzdG9wLXNlbWl0cmFuc3BhcmVudCIgc3RvcC1vcGFjaXR5PSIwLjAxIi8+CiAgICAgICAgICAgIDxzdG9wIGlkPSJzdG9wLW9wYXF1ZSIgb2Zmc2V0PSIxIiAvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+Cjwvc3ZnPg==");
291
+ --str-video__icon--magnifier-glass: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik04LjQ4NDkxIDcuODYwM0g3Ljk1NTk3TDcuNzY4NSA3LjY3OTUyQzguNTcxOTUgNi43NDIxNiA4Ljk4NzA2IDUuNDYzMzQgOC43NTk0MiA0LjEwNDE4QzguNDQ0NzMgMi4yNDI4NSA2Ljg5MTQgMC43NTY0NzQgNS4wMTY2OSAwLjUyODgzQzIuMTg0NTMgMC4xODA2NjkgLTAuMTk5MDMxIDIuNTY0MjMgMC4xNDkxMyA1LjM5NjM5QzAuMzc2Nzc0IDcuMjcxMSAxLjg2MzE1IDguODI0NDMgMy43MjQ0OCA5LjEzOTEyQzUuMDgzNjQgOS4zNjY3NiA2LjM2MjQ2IDguOTUxNjUgNy4yOTk4MiA4LjE0ODJMNy40ODA2IDguMzM1NjdWOC44NjQ2MUwxMC4zMjYxIDExLjcxMDJDMTAuNjAwNyAxMS45ODQ3IDExLjA0OTIgMTEuOTg0NyAxMS4zMjM4IDExLjcxMDJDMTEuNTk4MyAxMS40MzU2IDExLjU5ODMgMTAuOTg3IDExLjMyMzggMTAuNzEyNUw4LjQ4NDkxIDcuODYwM1pNNC40Njc2NiA3Ljg2MDNDMi44MDA1MSA3Ljg2MDMgMS40NTQ3MyA2LjUxNDUyIDEuNDU0NzMgNC44NDczNkMxLjQ1NDczIDMuMTgwMjEgMi44MDA1MSAxLjgzNDQzIDQuNDY3NjYgMS44MzQ0M0M2LjEzNDgyIDEuODM0NDMgNy40ODA2IDMuMTgwMjEgNy40ODA2IDQuODQ3MzZDNy40ODA2IDYuNTE0NTIgNi4xMzQ4MiA3Ljg2MDMgNC40Njc2NiA3Ljg2MDNaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
292
+ --str-video__icon--mic: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDE0Ljg5NDdDMTMuODk3MSAxNC44OTQ3IDE1LjQyODYgMTMuMzQzMiAxNS40Mjg2IDExLjQyMTFWNC40NzM2OEMxNS40Mjg2IDIuNTUxNTggMTMuODk3MSAxIDEyIDFDMTAuMTAyOSAxIDguNTcxNDMgMi41NTE1OCA4LjU3MTQzIDQuNDczNjhWMTEuNDIxMUM4LjU3MTQzIDEzLjM0MzIgMTAuMTAyOSAxNC44OTQ3IDEyIDE0Ljg5NDdaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTcuNzE0MyAxMS40MjExQzE3LjcxNDMgMTQuNjE2OCAxNS4xNTQzIDE3LjIxMDUgMTIgMTcuMjEwNUM4Ljg0NTcxIDE3LjIxMDUgNi4yODU3MSAxNC42MTY4IDYuMjg1NzEgMTEuNDIxMUg0QzQgMTUuNTA4NCA2Ljk4Mjg2IDE4Ljg2NjMgMTAuODU3MSAxOS40MzM3VjIzSDEzLjE0MjlWMTkuNDMzN0MxNy4wMTcxIDE4Ljg2NjMgMjAgMTUuNTA4NCAyMCAxMS40MjExSDE3LjcxNDNaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
293
+ --str-video__icon--mic-off: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5Ljc3NzggMTEuNDIxMUgxNy44ODg5QzE3Ljg4ODkgMTIuMjc3OSAxNy43MTExIDEzLjA3NjggMTcuNDExMSAxMy43OTQ3TDE4Ljc3NzggMTUuMjE4OUMxOS40IDE0LjA4NDIgMTkuNzc3OCAxMi43OTg5IDE5Ljc3NzggMTEuNDIxMVpNMTUuMzExMSAxMS42MTc5QzE1LjMxMTEgMTEuNTQ4NCAxNS4zMzMzIDExLjQ5MDUgMTUuMzMzMyAxMS40MjExVjQuNDczNjhDMTUuMzMzMyAyLjU1MTU4IDEzLjg0NDQgMSAxMiAxQzEwLjE1NTYgMSA4LjY2NjY3IDIuNTUxNTggOC42NjY2NyA0LjQ3MzY4VjQuNjgyMTFMMTUuMzExMSAxMS42MTc5Wk0zLjQxMTExIDIuMTU3ODlMMiAzLjYyODQyTDguNjc3NzggMTAuNTg3NFYxMS40MjExQzguNjc3NzggMTMuMzQzMiAxMC4xNTU2IDE0Ljg5NDcgMTIgMTQuODk0N0MxMi4yNDQ0IDE0Ljg5NDcgMTIuNDg4OSAxNC44NiAxMi43MjIyIDE0LjgwMjFMMTQuNTY2NyAxNi43MjQyQzEzLjc3NzggMTcuMTA2MyAxMi45IDE3LjMyNjMgMTIgMTcuMzI2M0M4LjkzMzMzIDE3LjMyNjMgNi4xMTExMSAxNC44OTQ3IDYuMTExMTEgMTEuNDIxMUg0LjIyMjIyQzQuMjIyMjIgMTUuMzY5NSA3LjI0NDQ0IDE4LjYzNDcgMTAuODg4OSAxOS4yMDIxVjIzSDEzLjExMTFWMTkuMjAyMUMxNC4xMjIyIDE5LjA1MTYgMTUuMDc3OCAxOC42ODExIDE1LjkzMzMgMTguMTZMMjAuNTg4OSAyM0wyMiAyMS41Mjk1TDMuNDExMTEgMi4xNTc4OVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
294
+ --str-video__icon--network-quality: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeT0iMC41IiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHJ4PSI2IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjg1Ii8+CjxwYXRoIGQ9Ik0xMiAxNi41TDEyIDExLjUiIHN0cm9rZT0iIzAwNkNGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTcgMTYuNUw3IDE0LjUiIHN0cm9rZT0iIzAwNkNGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3IDE2LjVMMTcgOC41IiBzdHJva2U9IiMwMDZDRkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==");
295
+ --str-video__icon--participants: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMSAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0yMS4zMzc1IDE2LjM5OTZDMjMuMDUgMTcuNTI1OCAyNC4yNSAxOS4wNTE2IDI0LjI1IDIxLjA4NTlWMjQuNzE4OEgyOS4yNVYyMS4wODU5QzI5LjI1IDE4LjQ0NjEgMjQuNzg3NSAxNi44ODQgMjEuMzM3NSAxNi4zOTk2WiIgZmlsbD0id2hpdGUiLz4KICAgIDxwYXRoIGQ9Ik0xOS4yNSAxNS4wMzEyQzIyLjAxMjUgMTUuMDMxMiAyNC4yNSAxMi44NjM3IDI0LjI1IDEwLjE4NzVDMjQuMjUgNy41MTEzMyAyMi4wMTI1IDUuMzQzNzUgMTkuMjUgNS4zNDM3NUMxOC42NjI1IDUuMzQzNzUgMTguMTEyNSA1LjQ2NDg0IDE3LjU4NzUgNS42MzQzN0MxOC42MjUgNi44ODE2NCAxOS4yNSA4LjQ2Nzk3IDE5LjI1IDEwLjE4NzVDMTkuMjUgMTEuOTA3IDE4LjYyNSAxMy40OTM0IDE3LjU4NzUgMTQuNzQwNkMxOC4xMTI1IDE0LjkxMDIgMTguNjYyNSAxNS4wMzEyIDE5LjI1IDE1LjAzMTJaIiBmaWxsPSJ3aGl0ZSIvPgogICAgPHBhdGggZD0iTTExLjc1IDE1LjAzMTJDMTQuNTEyNSAxNS4wMzEyIDE2Ljc1IDEyLjg2MzcgMTYuNzUgMTAuMTg3NUMxNi43NSA3LjUxMTMzIDE0LjUxMjUgNS4zNDM3NSAxMS43NSA1LjM0Mzc1QzguOTg3NSA1LjM0Mzc1IDYuNzUgNy41MTEzMyA2Ljc1IDEwLjE4NzVDNi43NSAxMi44NjM3IDguOTg3NSAxNS4wMzEyIDExLjc1IDE1LjAzMTJaTTExLjc1IDcuNzY1NjJDMTMuMTI1IDcuNzY1NjIgMTQuMjUgOC44NTU0NyAxNC4yNSAxMC4xODc1QzE0LjI1IDExLjUxOTUgMTMuMTI1IDEyLjYwOTQgMTEuNzUgMTIuNjA5NEMxMC4zNzUgMTIuNjA5NCA5LjI1IDExLjUxOTUgOS4yNSAxMC4xODc1QzkuMjUgOC44NTU0NyAxMC4zNzUgNy43NjU2MiAxMS43NSA3Ljc2NTYyWiIgZmlsbD0id2hpdGUiLz4KICAgIDxwYXRoIGQ9Ik0xMS43NSAxNi4yNDIyQzguNDEyNSAxNi4yNDIyIDEuNzUgMTcuODY0OCAxLjc1IDIxLjA4NTlWMjQuNzE4OEgyMS43NVYyMS4wODU5QzIxLjc1IDE3Ljg2NDggMTUuMDg3NSAxNi4yNDIyIDExLjc1IDE2LjI0MjJaTTE5LjI1IDIyLjI5NjlINC4yNVYyMS4wOThDNC41IDIwLjIyNjIgOC4zNzUgMTguNjY0MSAxMS43NSAxOC42NjQxQzE1LjEyNSAxOC42NjQxIDE5IDIwLjIyNjIgMTkuMjUgMjEuMDg1OVYyMi4yOTY5WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
296
+ --str-video__icon--reactions: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNiAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjM3NSAxMS4zMjAzQzE4LjQxMDUgMTEuMzIwMyAxOS4yNSAxMC41MDcxIDE5LjI1IDkuNTAzOTFDMTkuMjUgOC41MDA3MyAxOC40MTA1IDcuNjg3NSAxNy4zNzUgNy42ODc1QzE2LjMzOTUgNy42ODc1IDE1LjUgOC41MDA3MyAxNS41IDkuNTAzOTFDMTUuNSAxMC41MDcxIDE2LjMzOTUgMTEuMzIwMyAxNy4zNzUgMTEuMzIwM1oiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik04LjYyNSAxMS4zMjAzQzkuNjYwNTMgMTEuMzIwMyAxMC41IDEwLjUwNzEgMTAuNSA5LjUwMzkxQzEwLjUgOC41MDA3MyA5LjY2MDUzIDcuNjg3NSA4LjYyNSA3LjY4NzVDNy41ODk0NyA3LjY4NzUgNi43NSA4LjUwMDczIDYuNzUgOS41MDM5MUM2Ljc1IDEwLjUwNzEgNy41ODk0NyAxMS4zMjAzIDguNjI1IDExLjMyMDNaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTMgMTkuNzk2OUMxNS44NSAxOS43OTY5IDE4LjI3NSAxNy43ODY3IDE5LjI1IDE0Ljk1MzFINi43NUM3LjcyNSAxNy43ODY3IDEwLjE1IDE5Ljc5NjkgMTMgMTkuNzk2OVoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xMi45ODc1IDAuNDIxODc1QzYuMDg3NSAwLjQyMTg3NSAwLjUgNS44NDY4OCAwLjUgMTIuNTMxMkMwLjUgMTkuMjE1NiA2LjA4NzUgMjQuNjQwNiAxMi45ODc1IDI0LjY0MDZDMTkuOSAyNC42NDA2IDI1LjUgMTkuMjE1NiAyNS41IDEyLjUzMTJDMjUuNSA1Ljg0Njg4IDE5LjkgMC40MjE4NzUgMTIuOTg3NSAwLjQyMTg3NVpNMTMgMjIuMjE4OEM3LjQ3NSAyMi4yMTg4IDMgMTcuODgzNiAzIDEyLjUzMTJDMyA3LjE3ODkxIDcuNDc1IDIuODQzNzUgMTMgMi44NDM3NUMxOC41MjUgMi44NDM3NSAyMyA3LjE3ODkxIDIzIDEyLjUzMTJDMjMgMTcuODgzNiAxOC41MjUgMjIuMjE4OCAxMyAyMi4yMTg4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
297
+ --str-video__icon--recording-off: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNiAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDAuNDIxODc1QzYuMSAwLjQyMTg3NSAwLjUgNS44NDY4OCAwLjUgMTIuNTMxMkMwLjUgMTkuMjE1NiA2LjEgMjQuNjQwNiAxMyAyNC42NDA2QzE5LjkgMjQuNjQwNiAyNS41IDE5LjIxNTYgMjUuNSAxMi41MzEyQzI1LjUgNS44NDY4OCAxOS45IDAuNDIxODc1IDEzIDAuNDIxODc1Wk0xMyAyMi4yMTg4QzcuNDc1IDIyLjIxODggMyAxNy44ODM2IDMgMTIuNTMxMkMzIDcuMTc4OTEgNy40NzUgMi44NDM3NSAxMyAyLjg0Mzc1QzE4LjUyNSAyLjg0Mzc1IDIzIDcuMTc4OTEgMjMgMTIuNTMxMkMyMyAxNy44ODM2IDE4LjUyNSAyMi4yMTg4IDEzIDIyLjIxODhaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTMgMTguNTg1OUMxNi40NTE4IDE4LjU4NTkgMTkuMjUgMTUuODc1MiAxOS4yNSAxMi41MzEyQzE5LjI1IDkuMTg3MzQgMTYuNDUxOCA2LjQ3NjU2IDEzIDYuNDc2NTZDOS41NDgyMiA2LjQ3NjU2IDYuNzUgOS4xODczNCA2Ljc1IDEyLjUzMTJDNi43NSAxNS44NzUyIDkuNTQ4MjIgMTguNTg1OSAxMyAxOC41ODU5WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
298
+ --str-video__icon--recording-on: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNiAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDAuNDIxODc1QzYuMSAwLjQyMTg3NSAwLjUgNS44NDY4OCAwLjUgMTIuNTMxMkMwLjUgMTkuMjE1NiA2LjEgMjQuNjQwNiAxMyAyNC42NDA2QzE5LjkgMjQuNjQwNiAyNS41IDE5LjIxNTYgMjUuNSAxMi41MzEyQzI1LjUgNS44NDY4OCAxOS45IDAuNDIxODc1IDEzIDAuNDIxODc1Wk0xMyAyMi4yMTg4QzcuNDc1IDIyLjIxODggMyAxNy44ODM2IDMgMTIuNTMxMkMzIDcuMTc4OTEgNy40NzUgMi44NDM3NSAxMyAyLjg0Mzc1QzE4LjUyNSAyLjg0Mzc1IDIzIDcuMTc4OTEgMjMgMTIuNTMxMkMyMyAxNy44ODM2IDE4LjUyNSAyMi4yMTg4IDEzIDIyLjIxODhaIiBmaWxsPSIjZDkzMDI1Ii8+CjxwYXRoIGQ9Ik0xMyAxOC41ODU5QzE2LjQ1MTggMTguNTg1OSAxOS4yNSAxNS44NzUyIDE5LjI1IDEyLjUzMTJDMTkuMjUgOS4xODczNCAxNi40NTE4IDYuNDc2NTYgMTMgNi40NzY1NkM5LjU0ODIyIDYuNDc2NTYgNi43NSA5LjE4NzM0IDYuNzUgMTIuNTMxMkM2Ljc1IDE1Ljg3NTIgOS41NDgyMiAxOC41ODU5IDEzIDE4LjU4NTlaIiBmaWxsPSIjZDkzMDI1Ii8+Cjwvc3ZnPgo=");
299
+ --str-video__icon--refresh: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTIwIDE5MjAiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTk2MCAwdjIxMy4zMzNjNDExLjYyNyAwIDc0Ni42NjcgMzM0LjkzNCA3NDYuNjY3IDc0Ni42NjdTMTM3MS42MjcgMTcwNi42NjcgOTYwIDE3MDYuNjY3IDIxMy4zMzMgMTM3MS43MzMgMjEzLjMzMyA5NjBjMC0xOTcuMDEzIDc4LjQtMzgyLjUwNyAyMTMuMzM0LTUyMC43NDd2MjU0LjA4SDY0MFYxMDYuNjY3SDUzLjMzM1YzMjBoMTkxLjA0Qzg4LjY0IDQ5NC4wOCAwIDcyMC45NiAwIDk2MGMwIDUyOS4yOCA0MzAuNjEzIDk2MCA5NjAgOTYwczk2MC00MzAuNzIgOTYwLTk2MFMxNDg5LjM4NyAwIDk2MCAwIi8+PC9zdmc+Cg==");
300
+ --str-video__icon--screen-share-off: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAzMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI1IDE3Ljc5NjlDMjYuMzc1IDE3Ljc5NjkgMjcuNDg3NSAxNi43MDcgMjcuNDg3NSAxNS4zNzVMMjcuNSAzLjI2NTYyQzI3LjUgMS45MjE0OCAyNi4zNzUgMC44NDM3NSAyNSAwLjg0Mzc1SDVDMy42MTI1IDAuODQzNzUgMi41IDEuOTIxNDggMi41IDMuMjY1NjJWMTUuMzc1QzIuNSAxNi43MDcgMy42MTI1IDE3Ljc5NjkgNSAxNy43OTY5SDBWMjAuMjE4OEgzMFYxNy43OTY5SDI1Wk01IDE1LjM3NVYzLjI2NTYySDI1VjE1LjM4NzFMNSAxNS4zNzVaTTE2LjI1IDcuMDU1ODZDMTEuMzg3NSA3LjcwOTc3IDkuNDUgMTAuOTMwOSA4Ljc1IDE0LjE2NDFDMTAuNDg3NSAxMS44OTk2IDEyLjc3NSAxMC44NzAzIDE2LjI1IDEwLjg3MDNWMTMuNTIyM0wyMS4yNSA4Ljk5MzM2TDE2LjI1IDQuNDc2NTZWNy4wNTU4NloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
301
+ --str-video__icon--screen-share-on: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAzMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI1IDE3Ljc5NjlDMjYuMzc1IDE3Ljc5NjkgMjcuNDg3NSAxNi43MDcgMjcuNDg3NSAxNS4zNzVMMjcuNSAzLjI2NTYyQzI3LjUgMS45MjE0OCAyNi4zNzUgMC44NDM3NSAyNSAwLjg0Mzc1SDVDMy42MTI1IDAuODQzNzUgMi41IDEuOTIxNDggMi41IDMuMjY1NjJWMTUuMzc1QzIuNSAxNi43MDcgMy42MTI1IDE3Ljc5NjkgNSAxNy43OTY5SDBWMjAuMjE4OEgzMFYxNy43OTY5SDI1Wk01IDE1LjM3NVYzLjI2NTYySDI1VjE1LjM4NzFMNSAxNS4zNzVaTTE2LjI1IDcuMDU1ODZDMTEuMzg3NSA3LjcwOTc3IDkuNDUgMTAuOTMwOSA4Ljc1IDE0LjE2NDFDMTAuNDg3NSAxMS44OTk2IDEyLjc3NSAxMC44NzAzIDE2LjI1IDEwLjg3MDNWMTMuNTIyM0wyMS4yNSA4Ljk5MzM2TDE2LjI1IDQuNDc2NTZWNy4wNTU4NloiIGZpbGw9IiMwMDVGRkYiLz4KPC9zdmc+Cg==");
302
+ --str-video__icon--settings: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNOS4xMTAzNSAxOS4xOTA0SDEwLjg4NTdDMTEuNjE1MiAxOS4xOTA0IDEyLjE4NjUgMTguNzQyMiAxMi4zNTM1IDE4LjA0NzlMMTIuNzEzOSAxNi40OTIyTDEyLjk0MjQgMTYuNDA0M0wxNC4yOTU5IDE3LjIzOTNDMTQuOTExMSAxNy42MjYgMTUuNjMxOCAxNy41MjkzIDE2LjE0MTYgMTcuMDEwN0wxNy4zNzIxIDE1Ljc4MDNDMTcuODk5NCAxNS4yNjE3IDE3Ljk4NzMgMTQuNTQxIDE3LjYwMDYgMTMuOTM0NkwxNi43NjU2IDEyLjU4OThMMTYuODQ0NyAxMi4zNzAxTDE4LjQwMDQgMTIuMDA5OEMxOS4wODU5IDExLjgzNCAxOS41NDMgMTEuMjYyNyAxOS41NDMgMTAuNTQyVjguODEwNTVDMTkuNTQzIDguMDg5ODQgMTkuMDk0NyA3LjUxODU1IDE4LjQwMDQgNy4zNDI3N0wxNi44NjIzIDYuOTczNjNMMTYuNzc0NCA2Ljc0NTEyTDE3LjYwOTQgNS40MDAzOUMxNy45OTYxIDQuNzkzOTUgMTcuODk5NCA0LjA4MjAzIDE3LjM4MDkgMy41NDU5TDE2LjE1MDQgMi4zMTU0M0MxNS42NDA2IDEuODA1NjYgMTQuOTE5OSAxLjcwODk4IDE0LjMxMzUgMi4wODY5MUwxMi45NiAyLjkxMzA5TDEyLjcxMzkgMi44MTY0MUwxMi4zNTM1IDEuMjYwNzRDMTIuMTg2NSAwLjU2NjQwNiAxMS42MTUyIDAuMTE4MTY0IDEwLjg4NTcgMC4xMTgxNjRIOS4xMTAzNUM4LjM3MjA3IDAuMTE4MTY0IDcuODA5NTcgMC41NjY0MDYgNy42NDI1OCAxLjI2MDc0TDcuMjgyMjMgMi44MTY0MUw3LjAzNjEzIDIuOTEzMDlMNS42ODI2MiAyLjA4NjkxQzUuMDY3MzggMS43MDg5OCA0LjM0NjY4IDEuODA1NjYgMy44MzY5MSAyLjMxNTQzTDIuNjA2NDUgMy41NDU5QzIuMDg3ODkgNC4wODIwMyAxLjk5MTIxIDQuNzkzOTUgMi4zNzc5MyA1LjQwMDM5TDMuMjIxNjggNi43NDUxMkwzLjEyNSA2Ljk3MzYzTDEuNTk1NyA3LjM0Mjc3QzAuODkyNTc4IDcuNTE4NTUgMC40NTMxMjUgOC4wODk4NCAwLjQ1MzEyNSA4LjgxMDU1VjEwLjU0MkMwLjQ1MzEyNSAxMS4yNjI3IDAuOTAxMzY3IDExLjgzNCAxLjU5NTcgMTIuMDA5OEwzLjE0MjU4IDEyLjM3MDFMMy4yMzA0NyAxMi41ODk4TDIuMzg2NzIgMTMuOTM0NkMyIDE0LjU0MSAyLjA5NjY4IDE1LjI2MTcgMi42MTUyMyAxNS43ODAzTDMuODQ1NyAxNy4wMTA3QzQuMzY0MjYgMTcuNTI5MyA1LjA4NDk2IDE3LjYyNiA1LjY5MTQxIDE3LjIzOTNMNy4wNDQ5MiAxNi40MDQzTDcuMjgyMjMgMTYuNDkyMkw3LjY0MjU4IDE4LjA0NzlDNy44MDk1NyAxOC43NDIyIDguMzcyMDcgMTkuMTkwNCA5LjExMDM1IDE5LjE5MDRaTTkuMzIxMjkgMTcuNTk5NkM5LjE3MTg4IDE3LjU5OTYgOS4xMDE1NiAxNy41MjkzIDkuMDc1MiAxNy4zOTc1TDguNTU2NjQgMTUuMjM1NEM3Ljk5NDE0IDE1LjEwMzUgNy40NjY4IDE0Ljg4MzggNy4wMzYxMyAxNC42MTEzTDUuMTM3NyAxNS43ODAzQzUuMDMyMjMgMTUuODUwNiA0LjkyNjc2IDE1Ljg0MTggNC44MTI1IDE1LjczNjNMMy44ODA4NiAxNC44MDQ3QzMuNzg0MTggMTQuNzA4IDMuNzc1MzkgMTQuNjAyNSAzLjg1NDQ5IDE0LjQ4ODNMNS4wMjM0NCAxMi41ODk4QzQuNzc3MzQgMTIuMTc2OCA0LjU0MDA0IDExLjY0OTQgNC40MDgyIDExLjA5NTdMMi4yMzczIDEwLjU3NzFDMi4xMDU0NyAxMC41NTA4IDIuMDQzOTUgMTAuNDgwNSAyLjA0Mzk1IDEwLjMzMTFWOS4wMTI3QzIuMDQzOTUgOC44NTQ0OSAyLjEwNTQ3IDguNzkyOTcgMi4yMzczIDguNzU3ODFMNC40MDgyIDguMjQ4MDVDNC41NDAwNCA3LjY1OTE4IDQuNzk0OTIgNy4xMTQyNiA1LjAwNTg2IDYuNzM2MzNMMy44NDU3IDQuODQ2NjhDMy43NjY2IDQuNzIzNjMgMy43NjY2IDQuNjE4MTYgMy44NzIwNyA0LjUxMjdMNC44MDM3MSAzLjU4OTg0QzQuOTE3OTcgMy40OTMxNiA1LjAwNTg2IDMuNDc1NTkgNS4xMzc3IDMuNTQ1OUw3LjAyNzM0IDQuNjk3MjdDNy40MjI4NSA0LjQ1OTk2IDguMDAyOTMgNC4yMTM4NyA4LjU1NjY0IDQuMDczMjRMOS4wNzUyIDEuOTExMTNDOS4xMDE1NiAxLjc3OTMgOS4xNzE4OCAxLjcwODk4IDkuMzIxMjkgMS43MDg5OEgxMC42NzQ4QzEwLjgyNDIgMS43MDg5OCAxMC44OTQ1IDEuNzcwNTEgMTAuOTEyMSAxLjkxMTEzTDExLjQzOTUgNC4wOTA4MkMxMi4wMTA3IDQuMjIyNjYgMTIuNTI5MyA0LjQ1OTk2IDEyLjk2IDQuNzA2MDVMMTQuODQ5NiAzLjU1NDY5QzE0Ljk4MTQgMy40ODQzOCAxNS4wNjkzIDMuNDkzMTYgMTUuMTc0OCAzLjU5ODYzTDE2LjExNTIgNC41MjE0OEMxNi4yMjA3IDQuNjE4MTYgMTYuMjIwNyA0LjcyMzYzIDE2LjE0MTYgNC44NDY2OEwxNC45ODE0IDYuNzM2MzNDMTUuMTkyNCA3LjExNDI2IDE1LjQ1NjEgNy42NTkxOCAxNS41ODc5IDguMjQ4MDVMMTcuNzUgOC43NTc4MUMxNy44OTA2IDguNzkyOTcgMTcuOTUyMSA4Ljg1NDQ5IDE3Ljk1MjEgOS4wMTI3VjEwLjMzMTFDMTcuOTUyMSAxMC40ODA1IDE3Ljg4MTggMTAuNTUwOCAxNy43NSAxMC41NzcxTDE1LjU3OTEgMTEuMDk1N0MxNS40NDczIDExLjY0OTQgMTUuMjEgMTIuMTc2OCAxNC45NzI3IDEyLjU4OThMMTYuMTMyOCAxNC40ODgzQzE2LjIwMzEgMTQuNjAyNSAxNi4yMDMxIDE0LjcwOCAxNi4xMDY0IDE0Ljc5NTlMMTUuMTc0OCAxNS43MzYzQzE1LjA2MDUgMTUuODQxOCAxNC45NTUxIDE1Ljg1MDYgMTQuODQ5NiAxNS43ODAzTDEyLjk1MTIgMTQuNjExM0MxMi41MjA1IDE0Ljg4MzggMTIuMDE5NSAxNS4xMDM1IDExLjQzOTUgMTUuMjM1NEwxMC45MTIxIDE3LjM5NzVDMTAuODk0NSAxNy41MzgxIDEwLjgyNDIgMTcuNTk5NiAxMC42NzQ4IDE3LjU5OTZIOS4zMjEyOVpNOS45OTgwNSAxMi45OTQxQzExLjgyNjIgMTIuOTk0MSAxMy4zMjkxIDExLjQ5MTIgMTMuMzI5MSA5LjY1NDNDMTMuMzI5MSA3LjgzNDk2IDExLjgyNjIgNi4zMzIwMyA5Ljk5ODA1IDYuMzMyMDNDOC4xNjk5MiA2LjMzMjAzIDYuNjU4MiA3LjgzNDk2IDYuNjU4MiA5LjY1NDNDNi42NTgyIDExLjQ5MTIgOC4xNjExMyAxMi45OTQxIDkuOTk4MDUgMTIuOTk0MVpNOS45OTgwNSAxMS40OTEyQzguOTk2MDkgMTEuNDkxMiA4LjE2OTkyIDEwLjY2NSA4LjE2OTkyIDkuNjU0M0M4LjE2OTkyIDguNjYxMTMgOC45OTYwOSA3Ljg0Mzc1IDkuOTk4MDUgNy44NDM3NUMxMC45ODI0IDcuODQzNzUgMTEuNzk5OCA4LjY2MTEzIDExLjc5OTggOS42NTQzQzExLjc5OTggMTAuNjU2MiAxMC45ODI0IDExLjQ5MTIgOS45OTgwNSAxMS40OTEyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
303
+ --str-video__icon--speaker: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuMjUgNy44OTg0OVYxNS4xNjQxSDUuMjVMMTEuNSAyMS4yMTg4VjEuODQzOEw1LjI1IDcuODk4NDlIMC4yNVpNMTcuMTI1IDExLjUzMTNDMTcuMTI1IDkuMzg3OTQgMTUuODUgNy41NDczMSAxNCA2LjY1MTIyVjE2LjM5OTNDMTUuODUgMTUuNTE1MyAxNy4xMjUgMTMuNjc0NyAxNy4xMjUgMTEuNTMxM1pNMTQgMC45MTEzNzdWMy40MDU5MUMxNy42MTI1IDQuNDQ3MzEgMjAuMjUgNy42OTI2MyAyMC4yNSAxMS41MzEzQzIwLjI1IDE1LjM3IDE3LjYxMjUgMTguNjE1MyAxNCAxOS42NTY3VjIyLjE1MTJDMTkuMDEyNSAyMS4wNDkzIDIyLjc1IDE2LjcxNDEgMjIuNzUgMTEuNTMxM0MyMi43NSA2LjM0ODQ5IDE5LjAxMjUgMi4wMTMzMyAxNCAwLjkxMTM3N1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
304
+ --str-video__icon--stats: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxLjA3NDIgNi4yMDgyOEwxMi4wNzQyIDEyLjczODNMNy42OTQyMiA4LjM1ODI4TDMuMDc0MjIgMTEuNzM4M1Y5LjI1ODI4TDcuOTA0MjIgNS43MzgyOEwxMi4yODQyIDEwLjExODNMMjEuMDc0MiAzLjczODI4VjYuMjA4MjhaTTIxLjA3NDIgMTUuNzM4M0gxNi4zNzQyTDEyLjIwNDIgMTkuMDc4M0w2LjA3NDIyIDEzLjE0ODNMMy4wNzQyMiAxNS4yNzgzVjE3LjczODNMNS44NzQyMiAxNS43MzgzTDEyLjA3NDIgMjEuNzM4M0wxNy4wNzQyIDE3LjczODNIMjEuMDc0MlYxNS43MzgzWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
305
+ --str-video__icon--user-plus: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xMi40OTkgMy42MjQwMlYxLjc0OTAySDExLjI0OVYzLjYyNDAySDkuMzc0MDJWNC44NzQwMkgxMS4yNDlWNi43NDkwMkgxMi40OTlWNC44NzQwMkgxNC4zNzRWMy42MjQwMkgxMi40OTlaTTUuNjI0MDIgNS40OTkwMkM3LjAwNTI3IDUuNDk5MDIgOC4xMjQwMiA0LjM4MDI3IDguMTI0MDIgMi45OTkwMkM4LjEyNDAyIDEuNjE3NzcgNy4wMDUyNyAwLjQ5OTAyMyA1LjYyNDAyIDAuNDk5MDIzQzQuMjQyNzcgMC40OTkwMjMgMy4xMjQwMiAxLjYxNzc3IDMuMTI0MDIgMi45OTkwMkMzLjEyNDAyIDQuMzgwMjcgNC4yNDI3NyA1LjQ5OTAyIDUuNjI0MDIgNS40OTkwMlpNNS42MjQwMiAxLjc0OTAyQzYuMzExNTIgMS43NDkwMiA2Ljg3NDAyIDIuMzExNTIgNi44NzQwMiAyLjk5OTAyQzYuODc0MDIgMy42ODY1MiA2LjMxMTUyIDQuMjQ5MDIgNS42MjQwMiA0LjI0OTAyQzQuOTM2NTIgNC4yNDkwMiA0LjM3NDAyIDMuNjg2NTIgNC4zNzQwMiAyLjk5OTAyQzQuMzc0MDIgMi4zMTE1MiA0LjkzNjUyIDEuNzQ5MDIgNS42MjQwMiAxLjc0OTAyWk05LjYxNzc3IDcuMDk5MDJDOC41Njc3NyA2LjU2MTUyIDcuMjA1MjcgNi4xMjQwMiA1LjYyNDAyIDYuMTI0MDJDNC4wNDI3NyA2LjEyNDAyIDIuNjgwMjcgNi41NjE1MiAxLjYzMDI3IDcuMDk5MDJDMS4wMDUyNyA3LjQxNzc3IDAuNjI0MDIzIDguMDYxNTIgMC42MjQwMjMgOC43NjE1MlYxMC40OTlIMTAuNjI0VjguNzYxNTJDMTAuNjI0IDguMDYxNTIgMTAuMjQyOCA3LjQxNzc3IDkuNjE3NzcgNy4wOTkwMlpNOS4zNzQwMiA5LjI0OTAySDEuODc0MDJWOC43NjE1MkMxLjg3NDAyIDguNTI0MDIgMS45OTkwMiA4LjMxMTUyIDIuMTk5MDIgOC4yMTE1MkMyLjk0Mjc3IDcuODMwMjcgNC4xNDI3NyA3LjM3NDAyIDUuNjI0MDIgNy4zNzQwMkM3LjEwNTI3IDcuMzc0MDIgOC4zMDUyNyA3LjgzMDI3IDkuMDQ5MDIgOC4yMTE1MkM5LjI0OTAyIDguMzExNTIgOS4zNzQwMiA4LjUyNDAyIDkuMzc0MDIgOC43NjE1MlY5LjI0OTAyWiIgZmlsbD0iI0Y3RjdGOCIvPgo8L3N2Zz4K");
306
+ --str-video__icon--pin: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxMyAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMDY4MTkgMi40NTIyMlY2LjQ2MzYzQzguMDY4MTkgNy4zNjIxOCA4LjM2NTA0IDguMTk2NTYgOC44NzA0NyA4Ljg3MDQ3SDQuMDU2NzhDNC41NzgyNyA4LjE4MDUxIDQuODU5MDYgNy4zNDYxNCA0Ljg1OTA2IDYuNDYzNjNWMi40NTIyMkg4LjA2ODE5Wk0xMC40NzUgMC44NDc2NTZIMi40NTIyMkMyLjAxMDk2IDAuODQ3NjU2IDEuNjQ5OTQgMS4yMDg2OCAxLjY0OTk0IDEuNjQ5OTRDMS42NDk5NCAyLjA5MTE5IDIuMDEwOTYgMi40NTIyMiAyLjQ1MjIyIDIuNDUyMjJIMy4yNTQ1VjYuNDYzNjNDMy4yNTQ1IDcuNzk1NDEgMi4xNzk0NCA4Ljg3MDQ3IDAuODQ3NjU2IDguODcwNDdWMTAuNDc1SDUuNjM3MjhWMTYuMDkxTDYuNDM5NTYgMTYuODkzM0w3LjI0MTg0IDE2LjA5MVYxMC40NzVIMTIuMDc5NlY4Ljg3MDQ3QzEwLjc0NzggOC44NzA0NyA5LjY3Mjc1IDcuNzk1NDEgOS42NzI3NSA2LjQ2MzYzVjIuNDUyMjJIMTAuNDc1QzEwLjkxNjMgMi40NTIyMiAxMS4yNzczIDIuMDkxMTkgMTEuMjc3MyAxLjY0OTk0QzExLjI3NzMgMS4yMDg2OCAxMC45MTYzIDAuODQ3NjU2IDEwLjQ3NSAwLjg0NzY1NloiIGZpbGw9IiM3Mjc2N0UiLz4KPC9zdmc+Cg==");
307
+ --str-video__icon--no-audio: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyMCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjMzNjI5IDAuNzcyNzA5TDkuNzQ5MjQgMC40NDI2MTNDOS45MzYxNCAwLjI5MjkyOSAxMC4yMTE5IDAuMzE5NTk2IDEwLjM2NTEgMC41MDIxNzZDMTAuNDI5MyAwLjU3ODY3NyAxMC40NjQ0IDAuNjc0NTYzIDEwLjQ2NDMgMC43NzM0ODdWMS4zMzU0NlYxLjMzNzE1VjEuODY0NDdWMS45MjUyM1YxMy4yMDcyVjEzLjI2ODFWMTMuNzk1NVYxMy43OTcxVjE0LjM1OUMxMC40NjQ0IDE0LjU5NTEgMTAuMjY4NiAxNC43ODY2IDEwLjAyNjkgMTQuNzg2OEM5LjkyNTY4IDE0Ljc4NjggOS44Mjc1MyAxNC43NTI2IDkuNzQ5MjIgMTQuNjg5OUw5LjMzNjI2IDE0LjM1OTdMOS4zMzUzOSAxNC4zNTlMOC45MDg2MSAxNC4wMTc4TDguODU5NzMgMTMuOTc4N0w1LjExNjcyIDEwLjk4NjFMNS4xMTU4NSAxMC45ODYxSDEuNzEyMTNDMS4yMjg3NiAxMC45ODYxIDAuODM2OTE0IDEwLjYwMzMgMC44MzY5MTQgMTAuMTMxMlY1LjAwMTMzQzAuODM2OTE0IDQuNTI5MTQgMS4yMjg3NiA0LjE0NjM1IDEuNzEyMTMgNC4xNDYzNUg1LjExNTg1TDguODU5NzMgMS4xNTM2NUw4LjkwOTY0IDEuMTEzNzVMOS4zMzUzMiAwLjc3MzQ4N0w5LjMzNjI5IDAuNzcyNzA5Wk02LjExNzcyIDUuMzk5N0w4Ljg1OTczIDMuMjA3ODVWMTEuOTI0M0w2LjExODcxIDkuNzMyODhMNS42Nzg2NSA5LjM4MTA1TDUuMTE1ODUgOS4zODE1N0g1LjExNTIzTDUuMTE0MzYgOS4zODE1N0wyLjQ0MTQ4IDkuMzgxNTdWNS43NTA5Mkg1LjExNTg1SDUuNjc4MzRMNi4xMTc3MiA1LjM5OTdaTTE5LjUyNDQgOS44NjQ0NkwxNy4yMjYyIDcuNTY2MjRMMTkuNTI0NCA1LjI2ODAxQzE5LjgzNzcgNC45NTQ3IDE5LjgzMiA0LjQ0MTA4IDE5LjUxODcgNC4xMjc3N0MxOS4yMDU0IDMuODE0NDYgMTguNjkxOCAzLjgwODgyIDE4LjM3ODUgNC4xMjIxM0wxNi4wODAzIDYuNDIwMzVMMTMuNzgyIDQuMTIyMTNDMTMuNDY4NyAzLjgwODgyIDEyLjk1NTEgMy44MTQ0NiAxMi42NDE4IDQuMTI3NzdDMTIuMzI4NSA0LjQ0MTA4IDEyLjMyMjggNC45NTQ3IDEyLjYzNjIgNS4yNjgwMUwxNC45MzQ0IDcuNTY2MjRMMTIuNjM2MiA5Ljg2NDQ2QzEyLjMyMjggMTAuMTc3OCAxMi4zMjg1IDEwLjY5MTQgMTIuNjQxOCAxMS4wMDQ3QzEyLjk1NTEgMTEuMzE4IDEzLjQ2ODcgMTEuMzIzNyAxMy43ODIgMTEuMDEwM0wxNi4wODAzIDguNzEyMTJMMTguMzc4NSAxMS4wMTAzQzE4LjY5MTggMTEuMzIzNyAxOS4yMDU0IDExLjMxOCAxOS41MTg3IDExLjAwNDdDMTkuODMyIDEwLjY5MTQgMTkuODM3NyAxMC4xNzc4IDE5LjUyNDQgOS44NjQ0NloiIGZpbGw9IiM3Mjc2N0UiLz4KPC9zdmc+Cg==");
308
+ --str-video__icon--camera-off-outline: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuODUxMzggNS41MDk5OUw1LjI0NjgyIDMuOTA1NDNMMS45MTczNSAwLjU4Mzk4NEwwLjc4NjEzMyAxLjcxNTJMMi45NzYzNiAzLjkwNTQzSDIuMzkwN0MxLjk0OTQ0IDMuOTA1NDMgMS41ODg0MSA0LjI2NjQ2IDEuNTg4NDEgNC43MDc3MVYxMi43MzA1QzEuNTg4NDEgMTMuMTcxOCAxLjk0OTQ0IDEzLjUzMjggMi4zOTA3IDEzLjUzMjhIMTIuMDE4MUMxMi4xODY2IDEzLjUzMjggMTIuMzMxIDEzLjQ2ODYgMTIuNDU5MyAxMy4zODg0TDE1LjAxMDYgMTUuOTM5N0wxNi4xNDE4IDE0LjgwODRMOS4wMzM1OSA3LjcwMDIyTDYuODUxMzggNS41MDk5OVpNMy4xOTI5OCAxMS45MjgyVjUuNTA5OTlINC41ODA5MkwxMC45OTkyIDExLjkyODJIMy4xOTI5OFpNMTEuMjE1OCA1LjUwOTk5VjcuNjAzOTVMMTYuMDI5NSAxMi40MTc2VjQuMzA2NTdMMTIuODIwNCA3LjUxNTdWNC43MDc3MUMxMi44MjA0IDQuMjY2NDYgMTIuNDU5MyAzLjkwNTQzIDEyLjAxODEgMy45MDU0M0g3LjUxNzI4TDkuMTIxODQgNS41MDk5OUgxMS4yMTU4WiIgZmlsbD0iIzcyNzY3RSIvPgo8L3N2Zz4K");
309
+ --str-video__icon--not-allowed: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNyAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguNDY0MjIgMC45MzU1NDdDNC4wMzU2MyAwLjkzNTU0NyAwLjQ0MTQwNiA0LjUyOTc3IDAuNDQxNDA2IDguOTU4MzZDMC40NDE0MDYgMTMuMzg3IDQuMDM1NjMgMTYuOTgxMiA4LjQ2NDIyIDE2Ljk4MTJDMTIuODkyOCAxNi45ODEyIDE2LjQ4NyAxMy4zODcgMTYuNDg3IDguOTU4MzZDMTYuNDg3IDQuNTI5NzcgMTIuODkyOCAwLjkzNTU0NyA4LjQ2NDIyIDAuOTM1NTQ3Wk0yLjA0NTk3IDguOTU4MzZDMi4wNDU5NyA1LjQxMjI4IDQuOTE4MTQgMi41NDAxMSA4LjQ2NDIyIDIuNTQwMTFDOS45NDg0NCAyLjU0MDExIDExLjMxMjMgMy4wNDU1NSAxMi4zOTU0IDMuODk1OTdMMy40MDE4MyAxMi44ODk1QzIuNTUxNDEgMTEuODA2NSAyLjA0NTk3IDEwLjQ0MjYgMi4wNDU5NyA4Ljk1ODM2Wk04LjQ2NDIyIDE1LjM3NjZDNi45OCAxNS4zNzY2IDUuNjE2MTIgMTQuODcxMiA0LjUzMzA0IDE0LjAyMDhMMTMuNTI2NiA1LjAyNzE4QzE0LjM3NyA2LjExMDI2IDE0Ljg4MjUgNy40NzQxNCAxNC44ODI1IDguOTU4MzZDMTQuODgyNSAxMi41MDQ0IDEyLjAxMDMgMTUuMzc2NiA4LjQ2NDIyIDE1LjM3NjZaIiBmaWxsPSIjNzI3NjdFIi8+Cjwvc3ZnPgo=");
310
+ }
311
+
312
+ .str-video__avatar {
313
+ width: 2rem;
314
+ height: 2rem;
315
+ object-fit: cover;
316
+ }
317
+
318
+ .str-video__avatar--initials-fallback {
319
+ width: 2rem;
320
+ height: 2rem;
321
+ display: flex;
322
+ justify-content: center;
323
+ align-items: center;
324
+ }
325
+
326
+ .str-video {
327
+ /* The font color applied inside the component */
328
+ --str-video__avatar--color: var(--str-video__text-color1);
329
+ /* The background color of the component */
330
+ --str-video__avatar--background-color: var(--str-video__background-color1);
331
+ /* The border radius used for the borders of the component */
332
+ --str-video__avatar--border-radius: var(--str-video__border-radius-circle);
333
+ }
334
+
335
+ .str-video__avatar {
336
+ background: var(--str-video__avatar--background-color);
337
+ color: var(--str-video__avatar--color);
338
+ box-shadow: var(--str-video__avatar--box-shadow);
339
+ border-radius: var(--str-video__avatar--border-radius);
340
+ border-block-start: var(--str-video__avatar--border-block-start);
341
+ border-block-end: var(--str-video__avatar--border-block-end);
342
+ border-inline-start: var(--str-video__avatar--border-inline-start);
343
+ border-inline-end: var(--str-video__avatar--border-inline-end);
344
+ }
345
+
346
+ .str-video__avatar--initials-fallback {
347
+ background-color: var(--str-video__primary-color);
348
+ font-size: 1rem;
349
+ font-weight: 600;
350
+ border-radius: var(--str-video__border-radius-circle);
351
+ text-transform: uppercase;
352
+ }
353
+
354
+ .str-video__composite-button {
355
+ display: flex;
356
+ flex-direction: column;
357
+ align-items: center;
358
+ gap: 0.25rem;
359
+ height: 100%;
360
+ }
361
+ .str-video__composite-button .str-video__composite-button__button-group {
362
+ display: flex;
363
+ align-items: center;
364
+ gap: 0.5rem;
365
+ padding: 0.5rem;
366
+ height: 38px;
367
+ }
368
+ .str-video__composite-button .str-video__composite-button__button-group .str-video__call-controls__button {
369
+ padding: 0;
370
+ }
371
+ .str-video__composite-button .str-video__composite-button__button-group .str-video__call-controls__button.str-video__menu-toggle-button {
372
+ height: 100%;
373
+ padding-inline: 2px;
374
+ }
375
+ .str-video__composite-button .str-video__composite-button__button-group .str-video__loading-indicator__icon {
376
+ width: 1.375rem;
377
+ height: 1.375rem;
378
+ -webkit-mask-size: 1.25rem;
379
+ mask-size: 1.25rem;
380
+ }
381
+
382
+ .str-video__call-controls__button {
383
+ padding: 0.5rem;
384
+ }
385
+ .str-video__call-controls__button--variant-danger {
386
+ padding: 0.5rem 1rem;
387
+ }
388
+ .str-video__call-controls__button[disabled] {
389
+ cursor: not-allowed;
390
+ opacity: 0.7;
391
+ }
392
+ .str-video__call-controls__button .str-video__icon--caret-down {
393
+ width: 0.5rem;
394
+ height: 0.5rem;
395
+ }
396
+ .str-video__call-controls__button .str-video__icon--caret-up {
397
+ width: 0.5rem;
398
+ height: 0.5rem;
399
+ }
400
+ .str-video__call-controls__button .str-video__icon--call-end {
401
+ width: 1.5rem;
402
+ height: 1.5rem;
403
+ }
404
+
405
+ .str-video__text-button {
406
+ all: unset;
407
+ padding: 5px;
408
+ font-size: 12px;
409
+ border-radius: var(--str-video__participant-list-header__close-button--border-radius);
410
+ background: var(--str-video__participant-list-header__close-button--background-color);
411
+ }
412
+
413
+ .str-video {
414
+ /* The font color applied inside the component */
415
+ --str-video__composite-button__button-group--color: var(
416
+ --str-video__text-color1
417
+ );
418
+ /* The background color of the component */
419
+ --str-video__composite-button__button-group--background-color: var(
420
+ --str-video__background-color1
421
+ );
422
+ /* The border radius used for the borders of the component */
423
+ --str-video__composite-button__button-group--border-radius: var(
424
+ --str-video__border-radius-xs
425
+ );
426
+ /* The background color of the component */
427
+ --str-video__composite-button__button-group-active--background-color: var(
428
+ --str-video__text-color3
429
+ );
430
+ }
431
+
432
+ .str-video__composite-button__button-group {
433
+ background: var(--str-video__composite-button__button-group--background-color);
434
+ color: var(--str-video__composite-button__button-group--color);
435
+ box-shadow: var(--str-video__composite-button__button-group--box-shadow);
436
+ border-radius: var(--str-video__composite-button__button-group--border-radius);
437
+ border-block-start: var(--str-video__composite-button__button-group--border-block-start);
438
+ border-block-end: var(--str-video__composite-button__button-group--border-block-end);
439
+ border-inline-start: var(--str-video__composite-button__button-group--border-inline-start);
440
+ border-inline-end: var(--str-video__composite-button__button-group--border-inline-end);
441
+ }
442
+ .str-video__composite-button__button-group .str-video__call-controls__button {
443
+ background-color: transparent;
444
+ }
445
+ .str-video__composite-button__button-group .str-video__call-controls__button.str-video__menu-toggle-button {
446
+ background-color: var(--str-video__background-color1);
447
+ }
448
+
449
+ .str-video__composite-button__caption {
450
+ font-size: 12px;
451
+ line-height: 15px;
452
+ text-align: center;
453
+ overflow: hidden;
454
+ white-space: nowrap;
455
+ }
456
+
457
+ .str-video__composite-button__button-group:hover,
458
+ .str-video__composite-button__button-group--active {
459
+ background-color: var(--str-video__composite-button__button-group-active--background-color);
460
+ }
461
+
462
+ .str-video__call-controls__button {
463
+ border-radius: var(--str-video__border-radius-xs);
464
+ text-decoration: none;
465
+ box-shadow: none;
466
+ border: none;
467
+ background-color: var(--str-video__background-color1);
468
+ }
469
+ .str-video__call-controls__button:hover {
470
+ text-decoration: none;
471
+ background-color: var(--str-video__composite-button__button-group-active--background-color);
472
+ }
473
+ .str-video__call-controls__button--variant-danger {
474
+ background-color: var(--str-video__danger-color1);
475
+ }
476
+ .str-video__call-controls__button--variant-danger:hover {
477
+ background-color: var(--str-video__danger-color2);
478
+ }
479
+ .str-video__call-controls__button--enabled {
480
+ background: var(--str-video__text-color3);
481
+ }
482
+
483
+ .str-video__call-controls {
484
+ display: flex;
485
+ justify-content: center;
486
+ gap: 1rem;
487
+ padding: 1rem 0;
488
+ }
489
+ .str-video__call-controls .str-video__reactions-menu {
490
+ background-color: var(--str-video__background-color1);
491
+ display: flex;
492
+ flex-direction: column;
493
+ padding: 10px;
494
+ border-radius: var(--str-video__border-radius1);
495
+ }
496
+ .str-video__call-controls .str-video__reactions-menu .str-video__reactions-menu__button {
497
+ font-size: 1.5rem;
498
+ background-color: var(--str-video__background-color1);
499
+ }
500
+
501
+ .str-video__call-participants-screen-view {
502
+ height: 100%;
503
+ display: flex;
504
+ gap: 0.625rem;
505
+ }
506
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__screen {
507
+ flex: 4;
508
+ display: flex;
509
+ flex-direction: column;
510
+ justify-content: center;
511
+ height: 100%;
512
+ gap: 0.5rem;
513
+ padding: 0.3125rem;
514
+ }
515
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__wrapper {
516
+ position: relative;
517
+ flex: 1;
518
+ min-width: 0;
519
+ min-height: 0;
520
+ display: flex;
521
+ align-items: center;
522
+ justify-content: center;
523
+ }
524
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__overlay {
525
+ position: absolute;
526
+ background-color: var(--str-video__overlay-color);
527
+ top: 0;
528
+ left: 0;
529
+ right: 0;
530
+ bottom: 0;
531
+ display: flex;
532
+ align-items: flex-end;
533
+ gap: 1.5625rem;
534
+ padding: 2rem 0.75rem;
535
+ }
536
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__screen__presenter {
537
+ padding: 0.625rem 0 0.625rem 0.625rem;
538
+ background-color: var(--str-video__background-color1);
539
+ border-radius: var(--str-video__border-radius1);
540
+ }
541
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__participants-wrapper {
542
+ flex: 1 1;
543
+ overflow-y: auto;
544
+ scrollbar-width: none;
545
+ width: 100%;
546
+ }
547
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__participants-wrapper::-webkit-scrollbar {
548
+ display: none;
549
+ }
550
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__participants-wrapper .str-video__call-participants-screen-view__participants {
551
+ display: flex;
552
+ flex-direction: column;
553
+ justify-content: center;
554
+ gap: 1rem;
555
+ }
556
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__buttons-wrapper {
557
+ position: relative;
558
+ display: flex;
559
+ flex: 1 1;
560
+ align-items: center;
561
+ flex-direction: column;
562
+ }
563
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__buttons-wrapper .str-video__call-participants-screen-view__button-up {
564
+ position: absolute;
565
+ top: 0.5rem;
566
+ z-index: 1;
567
+ }
568
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__buttons-wrapper .str-video__call-participants-screen-view__button-up .str-video__call-controls__button--icon {
569
+ width: 0.8rem;
570
+ height: 0.8rem;
571
+ }
572
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__buttons-wrapper .str-video__call-participants-screen-view__button-down {
573
+ position: absolute;
574
+ bottom: 0.5rem;
575
+ z-index: 1;
576
+ }
577
+ .str-video__call-participants-screen-view .str-video__call-participants-screen-view__buttons-wrapper .str-video__call-participants-screen-view__button-down .str-video__call-controls__button--icon {
578
+ width: 0.8rem;
579
+ height: 0.8rem;
580
+ }
581
+ .str-video__call-participants-screen-view .str-video__screen-share {
582
+ min-height: 0;
583
+ object-fit: contain;
584
+ }
585
+ .str-video__call-participants-screen-view .str-video__video--wide {
586
+ width: 100%;
587
+ height: 100%;
588
+ }
589
+ .str-video__call-participants-screen-view .str-video__video--tall {
590
+ height: 100%;
591
+ width: 100%;
592
+ object-fit: contain;
593
+ }
594
+
595
+ .str-video__call-participants-view {
596
+ display: grid;
597
+ grid-auto-rows: auto min-content;
598
+ grid-column-gap: 0.625rem;
599
+ grid-row-gap: 0.625rem;
600
+ align-items: center;
601
+ justify-items: center;
602
+ height: 100%;
603
+ }
604
+ .str-video__call-participants-view.str-video__grid-1 {
605
+ grid-template-columns: repeat(1, 1fr);
606
+ grid-template-rows: repeat(1, 1fr);
607
+ }
608
+ .str-video__call-participants-view.str-video__grid-2 {
609
+ grid-template-columns: repeat(2, 1fr);
610
+ grid-template-rows: repeat(1, 1fr);
611
+ }
612
+ .str-video__call-participants-view.str-video__grid-3 {
613
+ grid-template-columns: repeat(2, 1fr);
614
+ grid-template-rows: repeat(2, 1fr);
615
+ }
616
+ .str-video__call-participants-view.str-video__grid-4 {
617
+ grid-template-columns: repeat(2, 1fr);
618
+ grid-template-rows: repeat(2, 1fr);
619
+ }
620
+ .str-video__call-participants-view.str-video__grid-5 {
621
+ grid-template-columns: repeat(3, 1fr);
622
+ grid-template-rows: repeat(2, 1fr);
623
+ }
624
+ .str-video__call-participants-view.str-video__grid-6 {
625
+ grid-template-columns: repeat(3, 1fr);
626
+ grid-template-rows: repeat(2, 1fr);
627
+ }
628
+ .str-video__call-participants-view.str-video__grid-7 {
629
+ grid-template-columns: repeat(3, 1fr);
630
+ grid-template-rows: repeat(3, 1fr);
631
+ }
632
+ .str-video__call-participants-view.str-video__grid-8 {
633
+ grid-template-columns: repeat(3, 1fr);
634
+ grid-template-rows: repeat(3, 1fr);
635
+ }
636
+ .str-video__call-participants-view.str-video__grid-9 {
637
+ grid-template-columns: repeat(3, 1fr);
638
+ grid-template-rows: repeat(3, 1fr);
639
+ }
640
+ .str-video__call-participants-view.str-video__grid-10 {
641
+ grid-template-columns: repeat(4, 1fr);
642
+ grid-template-rows: repeat(3, 1fr);
643
+ }
644
+ .str-video__call-participants-view.str-video__grid-11 {
645
+ grid-template-columns: repeat(4, 1fr);
646
+ grid-template-rows: repeat(3, 1fr);
647
+ }
648
+ .str-video__call-participants-view.str-video__grid-12 {
649
+ grid-template-columns: repeat(4, 1fr);
650
+ grid-auto-rows: 1fr;
651
+ }
652
+ .str-video__call-participants-view.str-video__grid-13 {
653
+ grid-template-columns: repeat(5, 1fr);
654
+ grid-auto-rows: 1fr;
655
+ }
656
+ .str-video__call-participants-view.str-video__grid-14 {
657
+ grid-template-columns: repeat(5, 1fr);
658
+ grid-auto-rows: 1fr;
659
+ }
660
+ .str-video__call-participants-view.str-video__grid-15 {
661
+ grid-template-columns: repeat(5, 1fr);
662
+ grid-auto-rows: 1fr;
663
+ }
664
+ .str-video__call-participants-view.str-video__grid-16 {
665
+ grid-template-columns: repeat(5, 1fr);
666
+ grid-auto-rows: 1fr;
667
+ }
668
+ .str-video__call-participants-view.str-video__grid-17 {
669
+ grid-template-columns: repeat(5, 1fr);
670
+ grid-auto-rows: 1fr;
671
+ }
672
+ .str-video__call-participants-view.str-video__grid-18 {
673
+ grid-template-columns: repeat(5, 1fr);
674
+ grid-auto-rows: 1fr;
675
+ }
676
+ .str-video__call-participants-view.str-video__grid-19 {
677
+ grid-template-columns: repeat(5, 1fr);
678
+ grid-auto-rows: 1fr;
679
+ }
680
+ .str-video__call-participants-view.str-video__grid-20 {
681
+ grid-template-columns: repeat(5, 1fr);
682
+ grid-auto-rows: 1fr;
683
+ }
684
+ .str-video__call-participants-view.str-video__grid-21 {
685
+ grid-template-columns: repeat(5, 1fr);
686
+ grid-auto-rows: 1fr;
687
+ }
688
+ .str-video__call-participants-view.str-video__grid-22 {
689
+ grid-template-columns: repeat(5, 1fr);
690
+ grid-auto-rows: 1fr;
691
+ }
692
+ .str-video__call-participants-view.str-video__grid-23 {
693
+ grid-template-columns: repeat(5, 1fr);
694
+ grid-auto-rows: 1fr;
695
+ }
696
+ .str-video__call-participants-view.str-video__grid-24 {
697
+ grid-template-columns: repeat(5, 1fr);
698
+ grid-auto-rows: 1fr;
699
+ }
700
+ .str-video__call-participants-view.str-video__grid-25 {
701
+ grid-template-columns: repeat(5, 1fr);
702
+ grid-auto-rows: 1fr;
703
+ }
704
+ .str-video__call-participants-view.str-video__grid-26 {
705
+ grid-template-columns: repeat(6, 1fr);
706
+ grid-auto-rows: 1fr;
707
+ }
708
+ .str-video__call-participants-view.str-video__grid-27 {
709
+ grid-template-columns: repeat(6, 1fr);
710
+ grid-auto-rows: 1fr;
711
+ }
712
+ .str-video__call-participants-view.str-video__grid-28 {
713
+ grid-template-columns: repeat(6, 1fr);
714
+ grid-auto-rows: 1fr;
715
+ }
716
+ .str-video__call-participants-view.str-video__grid-29 {
717
+ grid-template-columns: repeat(6, 1fr);
718
+ grid-auto-rows: 1fr;
719
+ }
720
+ .str-video__call-participants-view.str-video__grid-30 {
721
+ grid-template-columns: repeat(6, 1fr);
722
+ grid-auto-rows: 1fr;
723
+ }
724
+ .str-video__call-participants-view.str-video__grid-31 {
725
+ grid-template-columns: repeat(6, 1fr);
726
+ grid-auto-rows: 1fr;
727
+ }
728
+ .str-video__call-participants-view.str-video__grid-32 {
729
+ grid-template-columns: repeat(6, 1fr);
730
+ grid-auto-rows: 1fr;
731
+ }
732
+ .str-video__call-participants-view.str-video__grid-33 {
733
+ grid-template-columns: repeat(6, 1fr);
734
+ grid-auto-rows: 1fr;
735
+ }
736
+ .str-video__call-participants-view.str-video__grid-34 {
737
+ grid-template-columns: repeat(6, 1fr);
738
+ grid-auto-rows: 1fr;
739
+ }
740
+ .str-video__call-participants-view.str-video__grid-35 {
741
+ grid-template-columns: repeat(6, 1fr);
742
+ grid-auto-rows: 1fr;
743
+ }
744
+ .str-video__call-participants-view.str-video__grid-36 {
745
+ grid-template-columns: repeat(6, 1fr);
746
+ grid-auto-rows: 1fr;
747
+ }
748
+ .str-video__call-participants-view.str-video__grid-37 {
749
+ grid-template-columns: repeat(6, 1fr);
750
+ grid-auto-rows: 1fr;
751
+ }
752
+ .str-video__call-participants-view.str-video__grid-38 {
753
+ grid-template-columns: repeat(6, 1fr);
754
+ grid-auto-rows: 1fr;
755
+ }
756
+ .str-video__call-participants-view.str-video__grid-39 {
757
+ grid-template-columns: repeat(6, 1fr);
758
+ grid-auto-rows: 1fr;
759
+ }
760
+ .str-video__call-participants-view.str-video__grid-40 {
761
+ grid-template-columns: repeat(6, 1fr);
762
+ grid-auto-rows: 1fr;
763
+ }
764
+ .str-video__call-participants-view.str-video__grid-41 {
765
+ grid-template-columns: repeat(6, 1fr);
766
+ grid-auto-rows: 1fr;
767
+ }
768
+ .str-video__call-participants-view.str-video__grid-42 {
769
+ grid-template-columns: repeat(6, 1fr);
770
+ grid-auto-rows: 1fr;
771
+ }
772
+ .str-video__call-participants-view.str-video__grid-43 {
773
+ grid-template-columns: repeat(6, 1fr);
774
+ grid-auto-rows: 1fr;
775
+ }
776
+ .str-video__call-participants-view.str-video__grid-44 {
777
+ grid-template-columns: repeat(6, 1fr);
778
+ grid-auto-rows: 1fr;
779
+ }
780
+ .str-video__call-participants-view.str-video__grid-45 {
781
+ grid-template-columns: repeat(6, 1fr);
782
+ grid-auto-rows: 1fr;
783
+ }
784
+ .str-video__call-participants-view.str-video__grid-46 {
785
+ grid-template-columns: repeat(6, 1fr);
786
+ grid-auto-rows: 1fr;
787
+ }
788
+ .str-video__call-participants-view.str-video__grid-47 {
789
+ grid-template-columns: repeat(6, 1fr);
790
+ grid-auto-rows: 1fr;
791
+ }
792
+ .str-video__call-participants-view.str-video__grid-48 {
793
+ grid-template-columns: repeat(6, 1fr);
794
+ grid-auto-rows: 1fr;
795
+ }
796
+ .str-video__call-participants-view.str-video__grid-49 {
797
+ grid-template-columns: repeat(6, 1fr);
798
+ grid-auto-rows: 1fr;
799
+ }
800
+ .str-video__call-participants-view.str-video__grid-50 {
801
+ grid-template-columns: repeat(6, 1fr);
802
+ grid-auto-rows: 1fr;
803
+ }
804
+
805
+ .str-video__participant-list {
806
+ display: flex;
807
+ flex-direction: column;
808
+ gap: 0.75rem;
809
+ height: 100%;
810
+ width: 100%;
811
+ padding: 0.75rem;
812
+ }
813
+ .str-video__participant-list .str-video__participant-list-header {
814
+ display: flex;
815
+ align-items: center;
816
+ }
817
+ .str-video__participant-list .str-video__participant-list-header .str-video__participant-list-header__title {
818
+ flex: 1;
819
+ }
820
+ .str-video__participant-list .str-video__participant-list-header .str-video__participant-list-header__close-button {
821
+ width: 1.75rem;
822
+ height: 1.75rem;
823
+ }
824
+ .str-video__participant-list .str-video__participant-list-header .str-video__participant-list-header__close-button .str-video__participant-list-header__close-button--icon {
825
+ display: block;
826
+ height: 1rem;
827
+ width: 1rem;
828
+ }
829
+ .str-video__participant-list .str-video__participant-list__content-header {
830
+ display: flex;
831
+ align-items: center;
832
+ gap: 0.5rem;
833
+ }
834
+ .str-video__participant-list .str-video__participant-list__content-header .str-video__participant-list__content-header-title {
835
+ display: flex;
836
+ align-items: center;
837
+ justify-content: space-between;
838
+ flex-grow: 1;
839
+ }
840
+ .str-video__participant-list .str-video__participant-list__content-header .str-video__call-controls__button {
841
+ width: 1.75rem;
842
+ height: 1.75rem;
843
+ display: flex;
844
+ padding: unset;
845
+ align-items: center;
846
+ justify-content: center;
847
+ }
848
+ .str-video__participant-list .str-video__participant-list__content-header .str-video__call-controls__button .str-video__icon--caret-down {
849
+ width: 1rem;
850
+ height: 0.8rem;
851
+ }
852
+ .str-video__participant-list .str-video__participant-list__content {
853
+ height: 0px;
854
+ flex-grow: 1;
855
+ overflow-y: auto;
856
+ }
857
+ .str-video__participant-list .str-video__participant-list__footer {
858
+ display: flex;
859
+ flex-direction: column;
860
+ justify-content: center;
861
+ align-items: stretch;
862
+ gap: 0.5rem;
863
+ }
864
+ .str-video__participant-list .str-video__search-results--loading {
865
+ display: flex;
866
+ justify-content: center;
867
+ align-items: center;
868
+ width: 100%;
869
+ height: 100%;
870
+ }
871
+ .str-video__participant-list .str-video__search-results--loading .str-video__loading-indicator__icon {
872
+ height: 3rem;
873
+ width: 3rem;
874
+ mask-size: 3rem;
875
+ -webkit-mask-size: 3rem;
876
+ }
877
+ .str-video__participant-list .str-video__participant-list--empty {
878
+ display: flex;
879
+ align-items: center;
880
+ width: 100%;
881
+ padding-block: 0.5rem;
882
+ }
883
+
884
+ .str-video__invite-link-button {
885
+ display: flex;
886
+ align-items: center;
887
+ justify-content: center;
888
+ gap: 0.375rem;
889
+ width: 100%;
890
+ position: relative;
891
+ padding-block: 0.5rem;
892
+ }
893
+ .str-video__invite-link-button .str-video__invite-link-tooltip {
894
+ position: absolute;
895
+ bottom: 110%;
896
+ }
897
+ .str-video__invite-link-button .str-video__invite-participant-icon {
898
+ height: 20px;
899
+ width: 20px;
900
+ }
901
+
902
+ .str-video {
903
+ --str-video__participant-list--background-color: var(
904
+ --str-video__background-color1
905
+ );
906
+ --str-video__participant-list--border-radius: var(
907
+ --str-video__border-radius1
908
+ );
909
+ --str-video__participant-list-header--color: var(--str-video__text-color1);
910
+ --str-video__participant-list-header--title-count__color: var(
911
+ --str-video__text-color3
912
+ );
913
+ --str-video__participant-list-header__close-button--background-color: #121416;
914
+ --str-video__participant-list-header__close-button--border-radius: var(
915
+ --str-video__border-radius1
916
+ );
917
+ --str-video__participant-list-header__close-button-icon--background-color: #72767e;
918
+ }
919
+
920
+ .str-video__participant-list {
921
+ background: var(--str-video__participant-list--background-color);
922
+ color: var(--str-video__participant-list--color);
923
+ box-shadow: var(--str-video__participant-list--box-shadow);
924
+ border-radius: var(--str-video__participant-list--border-radius);
925
+ border-block-start: var(--str-video__participant-list--border-block-start);
926
+ border-block-end: var(--str-video__participant-list--border-block-end);
927
+ border-inline-start: var(--str-video__participant-list--border-inline-start);
928
+ border-inline-end: var(--str-video__participant-list--border-inline-end);
929
+ }
930
+ .str-video__participant-list .str-video__participant-list-header__title {
931
+ background: var(--str-video__participant-list-header--background-color);
932
+ color: var(--str-video__participant-list-header--color);
933
+ box-shadow: var(--str-video__participant-list-header--box-shadow);
934
+ border-radius: var(--str-video__participant-list-header--border-radius);
935
+ border-block-start: var(--str-video__participant-list-header--border-block-start);
936
+ border-block-end: var(--str-video__participant-list-header--border-block-end);
937
+ border-inline-start: var(--str-video__participant-list-header--border-inline-start);
938
+ border-inline-end: var(--str-video__participant-list-header--border-inline-end);
939
+ font-size: 1rem;
940
+ line-height: 1.25rem;
941
+ }
942
+ .str-video__participant-list .str-video__participant-list-header__title-count {
943
+ background: var(--str-video__participant-list-header--title-count--background-color);
944
+ color: var(--str-video__participant-list-header--title-count--color);
945
+ box-shadow: var(--str-video__participant-list-header--title-count--box-shadow);
946
+ border-radius: var(--str-video__participant-list-header--title-count--border-radius);
947
+ border-block-start: var(--str-video__participant-list-header--title-count--border-block-start);
948
+ border-block-end: var(--str-video__participant-list-header--title-count--border-block-end);
949
+ border-inline-start: var(--str-video__participant-list-header--title-count--border-inline-start);
950
+ border-inline-end: var(--str-video__participant-list-header--title-count--border-inline-end);
951
+ }
952
+ .str-video__participant-list .str-video__participant-list-header__close-button {
953
+ background: var(--str-video__participant-list-header__close-button--background-color);
954
+ color: var(--str-video__participant-list-header__close-button--color);
955
+ box-shadow: var(--str-video__participant-list-header__close-button--box-shadow);
956
+ border-radius: var(--str-video__participant-list-header__close-button--border-radius);
957
+ border-block-start: var(--str-video__participant-list-header__close-button--border-block-start);
958
+ border-block-end: var(--str-video__participant-list-header__close-button--border-block-end);
959
+ border-inline-start: var(--str-video__participant-list-header__close-button--border-inline-start);
960
+ border-inline-end: var(--str-video__participant-list-header__close-button--border-inline-end);
961
+ }
962
+ .str-video__participant-list .str-video__participant-list-header__close-button .str-video__participant-list-header__close-button--icon {
963
+ mask-image: var(--str-video__icon--close);
964
+ -webkit-mask-image: var(--str-video__icon--close);
965
+ mask-repeat: no-repeat;
966
+ -webkit-mask-repeat: no-repeat;
967
+ mask-position: center;
968
+ -webkit-mask-position: center;
969
+ mask-size: 0.75rem 0.75rem;
970
+ -webkit-mask-size: 0.75rem 0.75rem;
971
+ background-color: var(--str-video__participant-list-header__close-button-icon--background-color);
972
+ }
973
+ .str-video__participant-list .str-video__participant-list--empty {
974
+ font-size: 13px;
975
+ }
976
+ .str-video__participant-list .str-video__participant-list__footer {
977
+ display: flex;
978
+ justify-content: center;
979
+ padding: 0 0.75rem 0.75rem;
980
+ }
981
+ .str-video__participant-list .str-video__participant-list__footer .str-video__invite-link-button {
982
+ font-size: 13px;
983
+ color: var(--str-video__text-color4);
984
+ background-color: var(--str-video__background-color4);
985
+ border-radius: var(--str-video__border-radius-xl);
986
+ }
987
+ .str-video__participant-list .str-video__participant-list__footer .str-video__invite-link-button .str-video__invite-participant-icon {
988
+ mask-image: var(--str-video__icon--user-plus);
989
+ -webkit-mask-image: var(--str-video__icon--user-plus);
990
+ mask-repeat: no-repeat;
991
+ -webkit-mask-repeat: no-repeat;
992
+ mask-position: center;
993
+ -webkit-mask-position: center;
994
+ mask-size: 1rem;
995
+ -webkit-mask-size: 1rem;
996
+ background-color: var(--str-video__text-color4);
997
+ }
998
+
999
+ .str-video__participant-listing-item {
1000
+ display: flex;
1001
+ justify-content: space-between;
1002
+ gap: 0.75rem;
1003
+ padding-block: 0.5rem;
1004
+ width: 100%;
1005
+ align-items: center;
1006
+ }
1007
+ .str-video__participant-listing-item .str-video__call-controls__button {
1008
+ padding: unset;
1009
+ }
1010
+ .str-video__participant-listing-item .str-video__participant-listing-item__display-name {
1011
+ white-space: nowrap;
1012
+ overflow-y: visible;
1013
+ overflow-x: hidden;
1014
+ overflow-x: clip;
1015
+ text-overflow: ellipsis;
1016
+ }
1017
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group {
1018
+ display: flex;
1019
+ align-items: center;
1020
+ padding-inline: 0.5rem;
1021
+ gap: 0.75rem;
1022
+ }
1023
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group .str-video__participant-listing-item__icon {
1024
+ width: 0.75rem;
1025
+ height: 0.75rem;
1026
+ }
1027
+
1028
+ .str-video__participant-listing-item .str-video__participant-listing-item__display-name {
1029
+ font-size: 13px;
1030
+ }
1031
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group .str-video__participant-listing-item__icon-mic {
1032
+ mask-image: var(--str-video__icon--mic);
1033
+ -webkit-mask-image: var(--str-video__icon--mic);
1034
+ mask-repeat: no-repeat;
1035
+ -webkit-mask-repeat: no-repeat;
1036
+ mask-position: center;
1037
+ -webkit-mask-position: center;
1038
+ mask-size: contain;
1039
+ -webkit-mask-size: contain;
1040
+ background-color: var(--str-video__text-color1);
1041
+ }
1042
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group .str-video__participant-listing-item__icon-mic-off {
1043
+ mask-image: var(--str-video__icon--mic-off);
1044
+ -webkit-mask-image: var(--str-video__icon--mic-off);
1045
+ mask-repeat: no-repeat;
1046
+ -webkit-mask-repeat: no-repeat;
1047
+ mask-position: center;
1048
+ -webkit-mask-position: center;
1049
+ mask-size: contain;
1050
+ -webkit-mask-size: contain;
1051
+ background-color: var(--str-video__danger-color1);
1052
+ }
1053
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group .str-video__participant-listing-item__icon-camera {
1054
+ mask-image: var(--str-video__icon--camera);
1055
+ -webkit-mask-image: var(--str-video__icon--camera);
1056
+ mask-repeat: no-repeat;
1057
+ -webkit-mask-repeat: no-repeat;
1058
+ mask-position: center;
1059
+ -webkit-mask-position: center;
1060
+ mask-size: contain;
1061
+ -webkit-mask-size: contain;
1062
+ background-color: var(--str-video__text-color1);
1063
+ }
1064
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group .str-video__participant-listing-item__icon-camera-off {
1065
+ mask-image: var(--str-video__icon--camera-off);
1066
+ -webkit-mask-image: var(--str-video__icon--camera-off);
1067
+ mask-repeat: no-repeat;
1068
+ -webkit-mask-repeat: no-repeat;
1069
+ mask-position: center;
1070
+ -webkit-mask-position: center;
1071
+ mask-size: contain;
1072
+ -webkit-mask-size: contain;
1073
+ background-color: var(--str-video__danger-color1);
1074
+ }
1075
+ .str-video__participant-listing-item .str-video__participant-listing-item__media-indicator-group .str-video__participant-listing-item__icon-pinned {
1076
+ mask-image: var(--str-video__icon--pin);
1077
+ -webkit-mask-image: var(--str-video__icon--pin);
1078
+ mask-repeat: no-repeat;
1079
+ -webkit-mask-repeat: no-repeat;
1080
+ mask-position: center;
1081
+ -webkit-mask-position: center;
1082
+ mask-size: contain;
1083
+ -webkit-mask-size: contain;
1084
+ background-color: var(--str-video__text-color1);
1085
+ }
1086
+
1087
+ .str-video__call-recording-list {
1088
+ padding: 0.625rem;
1089
+ min-width: 300px;
1090
+ }
1091
+
1092
+ .str-video__call-recording-list__header {
1093
+ display: flex;
1094
+ justify-content: space-between;
1095
+ padding: 0rem 0.5rem 0.5rem;
1096
+ align-items: center;
1097
+ }
1098
+ .str-video__call-recording-list__header .str-video__call-recording-list__title {
1099
+ display: flex;
1100
+ gap: 0.5rem;
1101
+ }
1102
+ .str-video__call-recording-list__header .str-video__call-controls__button .str-video__icon {
1103
+ width: 1rem;
1104
+ height: 1rem;
1105
+ }
1106
+
1107
+ .str-video__call-recording-list__listing {
1108
+ padding-inline: 0.5rem;
1109
+ max-height: 400px;
1110
+ overflow-y: auto;
1111
+ }
1112
+ .str-video__call-recording-list__listing.str-video__call-recording-list__listing--empty {
1113
+ display: flex;
1114
+ flex-direction: column;
1115
+ align-items: center;
1116
+ justify-content: space-between;
1117
+ gap: 1rem;
1118
+ padding-block: 2rem;
1119
+ }
1120
+ .str-video__call-recording-list__listing.str-video__call-recording-list__listing--empty .str-video__call-recording-list__listing--icon-empty {
1121
+ width: 3rem;
1122
+ height: 3rem;
1123
+ }
1124
+ .str-video__call-recording-list__listing.str-video__call-recording-list__listing--empty .str-video__call-recording-list__listing--text-empty {
1125
+ margin: 0;
1126
+ }
1127
+
1128
+ .str-video__call-recording-list-item {
1129
+ display: flex;
1130
+ justify-content: space-between;
1131
+ overflow: hidden;
1132
+ width: 100%;
1133
+ padding-block: 0.125rem;
1134
+ }
1135
+ .str-video__call-recording-list-item .str-video__call-recording-list-item__info {
1136
+ display: flex;
1137
+ gap: 0.5rem;
1138
+ }
1139
+ .str-video__call-recording-list-item .str-video__call-recording-list-item__actions {
1140
+ display: flex;
1141
+ }
1142
+ .str-video__call-recording-list-item .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button {
1143
+ display: flex;
1144
+ justify-content: center;
1145
+ align-items: center;
1146
+ padding: 0;
1147
+ width: 1.5rem;
1148
+ height: 1.5rem;
1149
+ }
1150
+ .str-video__call-recording-list-item .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button .str-video__call-recording-list-item__action-button-icon {
1151
+ display: block;
1152
+ width: 1.5rem;
1153
+ height: 1.5rem;
1154
+ }
1155
+ .str-video__call-recording-list-item .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button .str-video__call-recording-list-item__action-button-icon.str-video__copy-button--icon {
1156
+ width: 1.25rem;
1157
+ height: 1.25rem;
1158
+ }
1159
+
1160
+ .str-video__call-recording-list__listing .str-video__loading-indicator {
1161
+ padding-block: 0.5rem;
1162
+ flex-direction: row;
1163
+ justify-content: flex-start;
1164
+ gap: 0.5rem;
1165
+ }
1166
+ .str-video__call-recording-list__listing .str-video__loading-indicator .str-video__loading-indicator__icon.spinner {
1167
+ height: 1rem;
1168
+ width: 1rem;
1169
+ mask-size: 1rem;
1170
+ }
1171
+ .str-video__call-recording-list__listing .str-video__loading-indicator .str-video__loading-indicator-text {
1172
+ white-space: nowrap;
1173
+ overflow-y: visible;
1174
+ overflow-x: hidden;
1175
+ overflow-x: clip;
1176
+ text-overflow: ellipsis;
1177
+ }
1178
+
1179
+ .str-video__call-recording-list__title {
1180
+ font: var(--str-video__subtitle-medium-text);
1181
+ }
1182
+
1183
+ .str-video__call-controls__button--icon-call-recordings {
1184
+ mask-image: var(--str-video__icon--film-roll);
1185
+ -webkit-mask-image: var(--str-video__icon--film-roll);
1186
+ mask-repeat: no-repeat;
1187
+ -webkit-mask-repeat: no-repeat;
1188
+ mask-position: center;
1189
+ -webkit-mask-position: center;
1190
+ mask-size: 2px;
1191
+ -webkit-mask-size: 2px;
1192
+ background-color: var(--str-video__text-color1);
1193
+ }
1194
+
1195
+ .str-video__call-recordings__toggle-button--active {
1196
+ background-color: var(--str-video__text-color3);
1197
+ }
1198
+
1199
+ .str-video__refresh-button {
1200
+ background-color: transparent;
1201
+ cursor: pointer;
1202
+ border-radius: 4px;
1203
+ }
1204
+ .str-video__refresh-button:hover {
1205
+ background-color: var(--str-video__text-color3);
1206
+ }
1207
+ .str-video__refresh-button:active {
1208
+ background-color: var(--str-video__background-color5);
1209
+ transition: background-color 0.2s ease-out;
1210
+ }
1211
+ .str-video__refresh-button .str-video__refresh-button--icon {
1212
+ mask-image: var(--str-video__icon--refresh);
1213
+ -webkit-mask-image: var(--str-video__icon--refresh);
1214
+ mask-repeat: no-repeat;
1215
+ -webkit-mask-repeat: no-repeat;
1216
+ mask-position: center;
1217
+ -webkit-mask-position: center;
1218
+ mask-size: contain;
1219
+ -webkit-mask-size: contain;
1220
+ background-color: var(--str-video__text-color1);
1221
+ }
1222
+
1223
+ .str-video__call-recording-list__listing--icon-empty {
1224
+ mask-image: var(--str-video__icon--film-roll);
1225
+ -webkit-mask-image: var(--str-video__icon--film-roll);
1226
+ mask-repeat: no-repeat;
1227
+ -webkit-mask-repeat: no-repeat;
1228
+ mask-position: center;
1229
+ -webkit-mask-position: center;
1230
+ mask-size: contain;
1231
+ -webkit-mask-size: contain;
1232
+ background-color: var(--str-video__text-color1);
1233
+ }
1234
+
1235
+ .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button {
1236
+ border-radius: 4px;
1237
+ background-color: transparent;
1238
+ }
1239
+ .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button:hover {
1240
+ background-color: var(--str-video__text-color3);
1241
+ }
1242
+ .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button:active {
1243
+ background-color: var(--str-video__background-color5);
1244
+ transition: background-color 0.2s ease-out;
1245
+ }
1246
+ .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button .str-video__download-button--icon {
1247
+ mask-image: var(--str-video__icon--download);
1248
+ -webkit-mask-image: var(--str-video__icon--download);
1249
+ mask-repeat: no-repeat;
1250
+ -webkit-mask-repeat: no-repeat;
1251
+ mask-position: center;
1252
+ -webkit-mask-position: center;
1253
+ mask-size: contain;
1254
+ -webkit-mask-size: contain;
1255
+ background-color: var(--str-video__text-color1);
1256
+ }
1257
+ .str-video__call-recording-list-item__actions .str-video__call-recording-list-item__action-button .str-video__copy-button--icon {
1258
+ mask-image: var(--str-video__icon--copy);
1259
+ -webkit-mask-image: var(--str-video__icon--copy);
1260
+ mask-repeat: no-repeat;
1261
+ -webkit-mask-repeat: no-repeat;
1262
+ mask-position: center;
1263
+ -webkit-mask-position: center;
1264
+ mask-size: contain;
1265
+ -webkit-mask-size: contain;
1266
+ background-color: var(--str-video__text-color1);
1267
+ }
1268
+
1269
+ .str-video__call-recording-list__listing .str-video__loading-indicator .str-video__loading-indicator-text {
1270
+ font: var(--str-video__caption-text);
1271
+ }
1272
+
1273
+ .str-video__call-stats {
1274
+ background-color: var(--str-video__background-color1);
1275
+ border-radius: var(--str-video__border-radius1);
1276
+ padding: 0.75rem;
1277
+ max-width: 400px;
1278
+ display: flex;
1279
+ flex-direction: column;
1280
+ gap: 0.75rem;
1281
+ }
1282
+ .str-video__call-stats h3 {
1283
+ margin: unset;
1284
+ }
1285
+ .str-video__call-stats.str-video__call-stats-angular {
1286
+ width: 400px;
1287
+ }
1288
+ .str-video__call-stats.str-video__call-stats-angular canvas {
1289
+ width: 400px;
1290
+ height: 200px;
1291
+ }
1292
+ .str-video__call-stats .str-video__call-stats__card-container {
1293
+ --gap: 1rem;
1294
+ display: flex;
1295
+ flex-wrap: wrap;
1296
+ flex-direction: row;
1297
+ gap: var(--gap);
1298
+ }
1299
+ .str-video__call-stats .str-video__call-stats__card {
1300
+ background-color: var(--str-video__background-color2);
1301
+ border-radius: var(--str-video__border-radius1);
1302
+ width: calc(50% - var(--gap) / 2);
1303
+ padding: 0.5rem 0.5rem;
1304
+ }
1305
+ .str-video__call-stats .str-video__call-stats__card .str-video__call-stats__card_label {
1306
+ color: var(--str-video__text-color2);
1307
+ font-size: 0.5625rem;
1308
+ font-weight: 500;
1309
+ text-transform: uppercase;
1310
+ }
1311
+ .str-video__call-stats .str-video__call-stats__card .str-video__call-stats__card_value {
1312
+ font-size: 1.0625rem;
1313
+ font-weight: 500;
1314
+ line-height: 1.25rem;
1315
+ }
1316
+ .str-video__call-stats .str-video__call-stats-line-chart-container {
1317
+ height: 15vh;
1318
+ }
1319
+
1320
+ .str-video__device-settings__button .str-video__call-controls__button--icon-device-settings {
1321
+ width: 1.25rem;
1322
+ height: 1.25rem;
1323
+ }
1324
+
1325
+ .str-video__device-settings {
1326
+ padding: 0.625rem;
1327
+ z-index: 1;
1328
+ }
1329
+
1330
+ .str-video__device-settings__device-kind {
1331
+ padding: 0.75rem 1rem;
1332
+ }
1333
+ .str-video__device-settings__device-kind .str-video__device-settings__device-selector-title {
1334
+ padding-bottom: 0.5rem;
1335
+ }
1336
+ .str-video__device-settings__device-kind .str-video__device-settings__option {
1337
+ display: flex;
1338
+ align-items: center;
1339
+ gap: 0.625rem;
1340
+ padding: 0.5rem;
1341
+ }
1342
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio] {
1343
+ margin: 0;
1344
+ height: 1rem;
1345
+ width: 1rem;
1346
+ display: grid;
1347
+ place-content: center;
1348
+ }
1349
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio]::before {
1350
+ content: "";
1351
+ width: 0.5rem;
1352
+ height: 0.5rem;
1353
+ transform: scale(0);
1354
+ }
1355
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio]:checked::before {
1356
+ transform: scale(1);
1357
+ }
1358
+
1359
+ .str-video {
1360
+ /* The font color applied inside the component */
1361
+ --str-video__menu-container--color: var(--str-video__text-color1);
1362
+ /* The background color of the component */
1363
+ --str-video__menu-container--background-color: var(--str-video__background-color1);
1364
+ /* The border radius used for the borders of the component */
1365
+ --str-video__menu-container--border-radius: var(--str-video__border-radius-xs);
1366
+ /* The background color of the component */
1367
+ --str-video__device-settings--background-color: var(--str-video__background-color1);
1368
+ /* The border radius used for the borders of the component */
1369
+ --str-video__device-settings--border-radius: var(--str-video__border-radius-xs);
1370
+ /* The box shadow applied to the component */
1371
+ --str-video__device-settings--box-shadow: 0 0 4px 1px var(--str-video__background-color2);
1372
+ }
1373
+
1374
+ .str-video__device-settings {
1375
+ background: var(--str-video__device-settings--background-color);
1376
+ color: var(--str-video__device-settings--color);
1377
+ box-shadow: var(--str-video__device-settings--box-shadow);
1378
+ border-radius: var(--str-video__device-settings--border-radius);
1379
+ border-block-start: var(--str-video__device-settings--border-block-start);
1380
+ border-block-end: var(--str-video__device-settings--border-block-end);
1381
+ border-inline-start: var(--str-video__device-settings--border-inline-start);
1382
+ border-inline-end: var(--str-video__device-settings--border-inline-end);
1383
+ }
1384
+
1385
+ .str-video__menu-container {
1386
+ background: var(--str-video__menu-container--background-color);
1387
+ color: var(--str-video__menu-container--color);
1388
+ box-shadow: var(--str-video__menu-container--box-shadow);
1389
+ border-radius: var(--str-video__menu-container--border-radius);
1390
+ border-block-start: var(--str-video__menu-container--border-block-start);
1391
+ border-block-end: var(--str-video__menu-container--border-block-end);
1392
+ border-inline-start: var(--str-video__menu-container--border-inline-start);
1393
+ border-inline-end: var(--str-video__menu-container--border-inline-end);
1394
+ }
1395
+
1396
+ .str-video__device-settings__device-kind {
1397
+ font-size: 1rem;
1398
+ }
1399
+ .str-video__device-settings__device-kind .str-video__device-settings__device-selector-title {
1400
+ font: var(--str-video__subtitle-medium-text);
1401
+ }
1402
+ .str-video__device-settings__device-kind .str-video__device-settings__option {
1403
+ color: var(--str-video__text-color3);
1404
+ font: var(--str-video__subtitle-text);
1405
+ border-radius: var(--str-video__border-radius-xxs);
1406
+ cursor: pointer;
1407
+ transition: all 0.3s ease-out;
1408
+ }
1409
+ .str-video__device-settings__device-kind .str-video__device-settings__option:hover, .str-video__device-settings__device-kind .str-video__device-settings__option.str-video__device-settings__option--selected {
1410
+ color: var(--str-video__text-color1);
1411
+ background-color: var(--str-video__background-color2);
1412
+ }
1413
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio] {
1414
+ -webkit-appearance: none;
1415
+ appearance: none;
1416
+ /* For iOS < 15 to remove gradient background */
1417
+ background-color: currentColor;
1418
+ font: inherit;
1419
+ color: var(--str-video__text-color3);
1420
+ border: 0.5rem solid var(--str-video__text-color3);
1421
+ border-radius: var(--str-video__border-radius-circle);
1422
+ }
1423
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio]:checked {
1424
+ border-color: var(--str-video__primary-color);
1425
+ }
1426
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio]::before {
1427
+ border-radius: var(--str-video__border-radius-circle);
1428
+ transition: 120ms transform ease-in-out;
1429
+ }
1430
+ .str-video__device-settings__device-kind .str-video__device-settings__option input[type=radio]:checked::before {
1431
+ box-shadow: inset 0.5rem 0.5rem var(--str-video__text-color1);
1432
+ }
1433
+
1434
+ .str-video__device-settings__button {
1435
+ cursor: pointer;
1436
+ border: none;
1437
+ background-color: var(--str-video__background-color1);
1438
+ }
1439
+ .str-video__device-settings__button .str-video__call-controls__button--icon-device-settings {
1440
+ mask-image: var(--str-video__icon--settings);
1441
+ -webkit-mask-image: var(--str-video__icon--settings);
1442
+ mask-repeat: no-repeat;
1443
+ -webkit-mask-repeat: no-repeat;
1444
+ mask-position: center;
1445
+ -webkit-mask-position: center;
1446
+ mask-size: contain;
1447
+ -webkit-mask-size: contain;
1448
+ background-color: var(--str-video__text-color1);
1449
+ }
1450
+ .str-video__device-settings__button:hover, .str-video__device-settings__button:active {
1451
+ background-color: var(--str-video__text-color3);
1452
+ border-radius: var(--str-video__border-radius1);
1453
+ }
1454
+
1455
+ .str-video__device-settings__button--active {
1456
+ background-color: var(--str-video__text-color3);
1457
+ }
1458
+
1459
+ .str-video__loading-indicator {
1460
+ display: flex;
1461
+ flex-direction: column;
1462
+ align-items: center;
1463
+ }
1464
+
1465
+ .str-video__loading-indicator__icon.spinner {
1466
+ mask-image: var(--str-video__icon--loading);
1467
+ -webkit-mask-image: var(--str-video__icon--loading);
1468
+ mask-repeat: no-repeat;
1469
+ -webkit-mask-repeat: no-repeat;
1470
+ mask-position: center;
1471
+ -webkit-mask-position: center;
1472
+ mask-size: 1rem;
1473
+ -webkit-mask-size: 1rem;
1474
+ background-color: var(--str-video__text-color2);
1475
+ animation: rotation 1s linear infinite;
1476
+ }
1477
+
1478
+ @keyframes rotation {
1479
+ 0% {
1480
+ transform: rotate(0deg);
1481
+ }
1482
+ 100% {
1483
+ transform: rotate(360deg);
1484
+ }
1485
+ }
1486
+ .str-video__menu-container {
1487
+ z-index: 2;
1488
+ }
1489
+
1490
+ .str-video__menu-container {
1491
+ box-shadow: 0px 0px 5px var(--str-video__background-color1);
1492
+ }
1493
+
1494
+ .str-video__generic-menu {
1495
+ list-style: none;
1496
+ margin: unset;
1497
+ padding: 5px;
1498
+ border-radius: var(--str-video__border-radius-xs);
1499
+ display: flex;
1500
+ flex-direction: column;
1501
+ gap: 1px;
1502
+ }
1503
+ .str-video__generic-menu .str-video__generic-menu--item {
1504
+ display: flex;
1505
+ }
1506
+ .str-video__generic-menu .str-video__generic-menu--item button {
1507
+ all: unset;
1508
+ width: 100%;
1509
+ font-size: 13px;
1510
+ padding: 5px 10px;
1511
+ border-radius: var(--str-video__border-radius-xs);
1512
+ gap: 10px;
1513
+ display: flex;
1514
+ align-items: center;
1515
+ position: relative;
1516
+ }
1517
+ .str-video__generic-menu .str-video__generic-menu--item button .str-video__icon {
1518
+ width: 1.1rem;
1519
+ height: 1rem;
1520
+ }
1521
+ .str-video__generic-menu .str-video__generic-menu--item button[aria-selected] {
1522
+ padding: 5px 10px 5px 26px;
1523
+ }
1524
+ .str-video__generic-menu .str-video__generic-menu--item button[aria-selected=true]::after {
1525
+ content: "●";
1526
+ font-size: 10px;
1527
+ left: 10px;
1528
+ position: absolute;
1529
+ }
1530
+
1531
+ .str-video__generic-menu {
1532
+ background: var(--str-video__background-color2);
1533
+ }
1534
+ .str-video__generic-menu .str-video__generic-menu--item button:hover {
1535
+ background: var(--str-video__background-color1);
1536
+ }
1537
+ .str-video__generic-menu .str-video__generic-menu--item button[disabled] {
1538
+ background-color: var(--str-video__background-color5);
1539
+ color: var(--str-video__text-color2);
1540
+ cursor: not-allowed;
1541
+ }
1542
+
1543
+ .str-video__notification {
1544
+ padding: 0.625rem;
1545
+ display: flex;
1546
+ align-items: center;
1547
+ gap: 0.625rem;
1548
+ }
1549
+ .str-video__notification .str-video__notification__icon {
1550
+ display: inline-block;
1551
+ width: 1.5rem;
1552
+ height: 1.5rem;
1553
+ }
1554
+ .str-video__notification .str-video__notification__message {
1555
+ flex: 1;
1556
+ }
1557
+
1558
+ .str-video__notification {
1559
+ background-color: var(--str-video__background-color1);
1560
+ border-radius: var(--str-video__border-radius1);
1561
+ z-index: 100;
1562
+ }
1563
+ .str-video__notification .str-video__notification__icon {
1564
+ mask-image: var(--str-video__icon--info-icon);
1565
+ -webkit-mask-image: var(--str-video__icon--info-icon);
1566
+ mask-repeat: no-repeat;
1567
+ -webkit-mask-repeat: no-repeat;
1568
+ mask-position: center;
1569
+ -webkit-mask-position: center;
1570
+ mask-size: 1.5rem;
1571
+ -webkit-mask-size: 1.5rem;
1572
+ background-color: var(--str-video__text-color1);
1573
+ }
1574
+ .str-video__notification .str-video__notification__message {
1575
+ font-size: 0.75rem;
1576
+ }
1577
+
1578
+ .str-video__permission-requests {
1579
+ background-color: var(--str-video__background-color1);
1580
+ border-radius: 8px;
1581
+ padding: 10px;
1582
+ position: relative;
1583
+ }
1584
+ .str-video__permission-requests .str-video__permission-requests__notification,
1585
+ .str-video__permission-requests .str-video__permission-request {
1586
+ display: flex;
1587
+ gap: 10px;
1588
+ padding: 10px 0;
1589
+ align-items: center;
1590
+ }
1591
+ .str-video__permission-requests .str-video__permission-requests__notification__message,
1592
+ .str-video__permission-requests .str-video__permission-request__message {
1593
+ flex: 1;
1594
+ overflow: hidden;
1595
+ text-overflow: ellipsis;
1596
+ white-space: nowrap;
1597
+ }
1598
+ .str-video__permission-requests .str-video__permission-request__button {
1599
+ background-color: transparent;
1600
+ border: 1px solid var(--str-video__text-color1);
1601
+ border-radius: 4px;
1602
+ color: var(--str-video__color1);
1603
+ cursor: pointer;
1604
+ font-size: 14px;
1605
+ font-weight: 500;
1606
+ padding: 8px;
1607
+ min-width: 120px;
1608
+ }
1609
+ .str-video__permission-requests .str-video__permission-request__button--allow {
1610
+ background-color: var(--str-video__primary-color);
1611
+ border: 1px solid var(--str-video__primary-color);
1612
+ }
1613
+ .str-video__permission-requests .str-video__permission-requests-list {
1614
+ background-color: var(--str-video__background-color1);
1615
+ border-bottom-left-radius: 8px;
1616
+ border-bottom-right-radius: 8px;
1617
+ padding: 10px;
1618
+ width: 100%;
1619
+ z-index: 1;
1620
+ opacity: 0.9;
1621
+ overflow-x: scroll;
1622
+ overflow-y: hidden;
1623
+ }
1624
+ .str-video__permission-requests .str-video__permission-requests-list::-webkit-scrollbar {
1625
+ display: none;
1626
+ }
1627
+
1628
+ .str-video__reaction {
1629
+ position: absolute;
1630
+ right: 0.875rem;
1631
+ bottom: 0.875rem;
1632
+ opacity: 0;
1633
+ transition: opacity 0.2s ease-out;
1634
+ }
1635
+ .str-video__reaction.str-video__reaction--visible {
1636
+ opacity: 1;
1637
+ }
1638
+ .str-video__reaction .str-video__reaction__emoji {
1639
+ font-size: 2.5rem;
1640
+ }
1641
+
1642
+ .str-video__search-input__container {
1643
+ display: flex;
1644
+ gap: 0.5rem;
1645
+ padding: 0.5rem 0.75rem;
1646
+ margin-inline: -0.25rem;
1647
+ }
1648
+ .str-video__search-input__container input {
1649
+ flex: 1;
1650
+ min-width: 0;
1651
+ }
1652
+ .str-video__search-input__container .str-video__search-input__clear-btn {
1653
+ display: flex;
1654
+ align-items: center;
1655
+ justify-content: center;
1656
+ padding: 0;
1657
+ }
1658
+ .str-video__search-input__container .str-video__search-input__icon {
1659
+ padding: 0.25rem;
1660
+ }
1661
+ .str-video__search-input__container .str-video__search-input__icon--active,
1662
+ .str-video__search-input__container .str-video__search-input__icon {
1663
+ display: inline-block;
1664
+ width: 1.125rem;
1665
+ height: 1.125rem;
1666
+ }
1667
+
1668
+ .str-video {
1669
+ --str-video__search-input__container--color: var(--str-video__text-color1);
1670
+ --str-video__search-input__container--background-color: var(
1671
+ --str-video__background-color0
1672
+ );
1673
+ --str-video__search-input__container--border-radius: var(
1674
+ --str-video__border-radius-circle
1675
+ );
1676
+ --str-video__search-input__container--border-block-start: 1px solid
1677
+ transparent;
1678
+ --str-video__search-input__container--border-block-end: 1px solid transparent;
1679
+ --str-video__search-input__container--border-inline-start: 1px solid
1680
+ transparent;
1681
+ --str-video__search-input__container--border-inline-end: 1px solid transparent;
1682
+ --str-video__search-input__placeholder-color: var(--str-video__text-color2);
1683
+ --str-video__search-input__icon--color: var(--str-video__text-color1);
1684
+ }
1685
+
1686
+ .str-video__search-input__container.str-video__search-input__container--active {
1687
+ border-color: var(--str-video__primary-color);
1688
+ }
1689
+
1690
+ .str-video__search-input__container {
1691
+ background: var(--str-video__search-input__container--background-color);
1692
+ color: var(--str-video__search-input__container--color);
1693
+ box-shadow: var(--str-video__search-input__container--box-shadow);
1694
+ border-radius: var(--str-video__search-input__container--border-radius);
1695
+ border-block-start: var(--str-video__search-input__container--border-block-start);
1696
+ border-block-end: var(--str-video__search-input__container--border-block-end);
1697
+ border-inline-start: var(--str-video__search-input__container--border-inline-start);
1698
+ border-inline-end: var(--str-video__search-input__container--border-inline-end);
1699
+ }
1700
+ .str-video__search-input__container input {
1701
+ background-color: transparent;
1702
+ border: none;
1703
+ outline: none;
1704
+ color: inherit;
1705
+ font-size: 13px;
1706
+ }
1707
+ .str-video__search-input__container input::placeholder {
1708
+ color: var(--str-video__search-input__placeholder-color);
1709
+ }
1710
+ .str-video__search-input__container .str-video__search-input__icon {
1711
+ mask-image: var(--str-video__icon--magnifier-glass);
1712
+ -webkit-mask-image: var(--str-video__icon--magnifier-glass);
1713
+ mask-repeat: no-repeat;
1714
+ -webkit-mask-repeat: no-repeat;
1715
+ mask-position: center;
1716
+ -webkit-mask-position: center;
1717
+ mask-size: 0.75rem 0.75rem;
1718
+ -webkit-mask-size: 0.75rem 0.75rem;
1719
+ background-color: var(--str-video__search-input__icon--color);
1720
+ }
1721
+ .str-video__search-input__container .str-video__search-input__clear-btn {
1722
+ background-color: transparent;
1723
+ }
1724
+ .str-video__search-input__container .str-video__search-input__clear-btn .str-video__search-input__icon--active {
1725
+ mask-image: var(--str-video__icon--close);
1726
+ -webkit-mask-image: var(--str-video__icon--close);
1727
+ mask-repeat: no-repeat;
1728
+ -webkit-mask-repeat: no-repeat;
1729
+ mask-position: center;
1730
+ -webkit-mask-position: center;
1731
+ mask-size: 0.75rem 0.75rem;
1732
+ -webkit-mask-size: 0.75rem 0.75rem;
1733
+ background-color: var(--str-video__search-input__icon--color);
1734
+ }
1735
+
1736
+ .str-video__call-angular-host {
1737
+ height: 100%;
1738
+ max-height: 100%;
1739
+ min-height: 0;
1740
+ display: flex;
1741
+ flex-direction: column;
1742
+ }
1743
+
1744
+ .str-video__call {
1745
+ background-color: var(--str-video__background-color2);
1746
+ color: var(--str-video__text-color1);
1747
+ width: 100%;
1748
+ height: 100%;
1749
+ min-height: 0;
1750
+ max-height: 100%;
1751
+ display: flex;
1752
+ flex-direction: column;
1753
+ }
1754
+ .str-video__call .str-video__stage {
1755
+ flex: 1;
1756
+ min-height: 0;
1757
+ padding-inline: 0.375rem;
1758
+ }
1759
+ .str-video__call .str-video__stage-angular-host {
1760
+ min-height: 0;
1761
+ max-height: 100%;
1762
+ height: 100%;
1763
+ display: flex;
1764
+ flex-direction: column;
1765
+ }
1766
+
1767
+ .str-video__tooltip {
1768
+ display: flex;
1769
+ justify-content: center;
1770
+ padding: 0.5rem 1rem;
1771
+ z-index: 1;
1772
+ max-width: 250px;
1773
+ width: max-content;
1774
+ white-space: initial;
1775
+ overflow-wrap: break-word;
1776
+ }
1777
+
1778
+ .str-video {
1779
+ /* The border radius used for the borders of the component */
1780
+ --str-video__tooltip--border-radius: var(--str-video__border-radius-xxxs);
1781
+ /* The text/icon color of the component */
1782
+ --str-video__tooltip--color: var(--str-video__text-color3);
1783
+ /* The background color of the component */
1784
+ --str-video__tooltip--background-color: var(--str-video__background-color4);
1785
+ /* Top border of the component */
1786
+ --str-video__tooltip--border-block-start: none;
1787
+ /* Bottom border of the component */
1788
+ --str-video__tooltip--border-block-end: none;
1789
+ /* Left (right in RTL layout) border of the component */
1790
+ --str-video__tooltip--border-inline-start: none;
1791
+ /* Right (left in RTL layout) border of the component */
1792
+ --str-video__tooltip--border-inline-end: none;
1793
+ /* Box shadow applied to the component */
1794
+ --str-video__tooltip--box-shadow: 0 0 20px var(--str-video__background-color2);
1795
+ }
1796
+
1797
+ .str-video__tooltip {
1798
+ background: var(--str-video__tooltip--background-color);
1799
+ color: var(--str-video__tooltip--color);
1800
+ box-shadow: var(--str-video__tooltip--box-shadow);
1801
+ border-radius: var(--str-video__tooltip--border-radius);
1802
+ border-block-start: var(--str-video__tooltip--border-block-start);
1803
+ border-block-end: var(--str-video__tooltip--border-block-end);
1804
+ border-inline-start: var(--str-video__tooltip--border-inline-start);
1805
+ border-inline-end: var(--str-video__tooltip--border-inline-end);
1806
+ font: var(--str-video__caption-text);
1807
+ }
1808
+ .str-video__tooltip::after {
1809
+ background-color: var(--str-video__tooltip-background-color);
1810
+ }
1811
+
1812
+ .str-video__copy-to-clipboard-button__popup {
1813
+ color: var(--str-video__text-color1);
1814
+ background-color: var(--str-video__secondary-color);
1815
+ font-size: 12px;
1816
+ box-shadow: none;
1817
+ }
1818
+
1819
+ .str-video__video--wide {
1820
+ width: 100%;
1821
+ height: auto;
1822
+ }
1823
+
1824
+ .str-video__video--tall {
1825
+ height: 100%;
1826
+ width: auto;
1827
+ object-fit: contain !important;
1828
+ }
1829
+
1830
+ .str-video__video-preview-container {
1831
+ display: flex;
1832
+ justify-content: center;
1833
+ align-items: center;
1834
+ width: 500px;
1835
+ height: 375px;
1836
+ }
1837
+ .str-video__video-preview-container .str-video__loading-indicator__icon {
1838
+ height: 3rem;
1839
+ width: 3rem;
1840
+ mask-size: 3rem;
1841
+ }
1842
+
1843
+ .str-video__base-video {
1844
+ object-fit: cover;
1845
+ width: 100%;
1846
+ height: 100%;
1847
+ }
1848
+ .str-video__base-video.str-video__remote-video--mirror, .str-video__base-video.str-video__video-preview--mirror {
1849
+ transform: scaleX(-1);
1850
+ }
1851
+ .str-video__base-video.str-video__video-preview--loading {
1852
+ display: none;
1853
+ }
1854
+
1855
+ .str-video {
1856
+ /* The font color applied inside the component */
1857
+ --str-video__video-preview-container--color: var(--str-video__text-color1);
1858
+ /* The background color of the component */
1859
+ --str-video__video-preview-container--background-color: var(--str-video__background-color5);
1860
+ /* The border radius used for the borders of the component */
1861
+ --str-video__video-preview-container--border-radius: var(--str-video__border-radius-xs);
1862
+ /* The border used for the borders of the component */
1863
+ --str-video__video-preview-container--border-block-start: 4px solid var(--str-video__primary-color);
1864
+ /* The border used for the borders of the component */
1865
+ --str-video__video-preview-container--border-block-end: 4px solid var(--str-video__primary-color);
1866
+ /* The border used for the borders of the component */
1867
+ --str-video__video-preview-container--border-inline-start: 4px solid var(--str-video__primary-color);
1868
+ /* The border used for the borders of the component */
1869
+ --str-video__video-preview-container--border-inline-end: 4px solid var(--str-video__primary-color);
1870
+ }
1871
+
1872
+ .str-video__video-preview-container {
1873
+ background: var(--str-video__video-preview-container--background-color);
1874
+ color: var(--str-video__video-preview-container--color);
1875
+ box-shadow: var(--str-video__video-preview-container--box-shadow);
1876
+ border-radius: var(--str-video__video-preview-container--border-radius);
1877
+ border-block-start: var(--str-video__video-preview-container--border-block-start);
1878
+ border-block-end: var(--str-video__video-preview-container--border-block-end);
1879
+ border-inline-start: var(--str-video__video-preview-container--border-inline-start);
1880
+ border-inline-end: var(--str-video__video-preview-container--border-inline-end);
1881
+ overflow: hidden;
1882
+ }
1883
+
1884
+ .str-video__participant-placeholder {
1885
+ aspect-ratio: 4/3;
1886
+ height: 100%;
1887
+ width: 100%;
1888
+ display: flex;
1889
+ align-items: center;
1890
+ justify-content: center;
1891
+ }
1892
+ .str-video__participant-placeholder .str-video__participant-placeholder--avatar {
1893
+ width: 100px;
1894
+ height: 100px;
1895
+ object-fit: cover;
1896
+ }
1897
+ .str-video__participant-placeholder .str-video__participant-placeholder--initials-fallback {
1898
+ display: flex;
1899
+ justify-content: center;
1900
+ align-items: center;
1901
+ width: 100px;
1902
+ height: 100px;
1903
+ }
1904
+
1905
+ .str-video__participant-placeholder {
1906
+ background: var(--str-video__background-color5);
1907
+ border-radius: var(--str-video__border-radius-sm);
1908
+ }
1909
+ .str-video__participant-placeholder .str-video__participant-placeholder--avatar {
1910
+ border-radius: var(--str-video__border-radius-circle);
1911
+ }
1912
+ .str-video__participant-placeholder .str-video__participant-placeholder--initials-fallback {
1913
+ background-color: var(--str-video__primary-color);
1914
+ border-radius: var(--str-video__border-radius-circle);
1915
+ font-size: 32px;
1916
+ font-weight: 600;
1917
+ text-transform: uppercase;
1918
+ }
1919
+
1920
+ .str-video__participant,
1921
+ .str-video__participant-angular-host {
1922
+ position: relative;
1923
+ width: 100%;
1924
+ max-width: 1280px;
1925
+ min-height: 0;
1926
+ max-height: 100%;
1927
+ aspect-ratio: 4/3;
1928
+ }
1929
+ .str-video__participant .str-video__participant_details,
1930
+ .str-video__participant .str-video__call-controls__button,
1931
+ .str-video__participant-angular-host .str-video__participant_details,
1932
+ .str-video__participant-angular-host .str-video__call-controls__button {
1933
+ transition: opacity 200ms ease-out;
1934
+ opacity: 0.3;
1935
+ }
1936
+ .str-video__participant:hover .str-video__participant_details,
1937
+ .str-video__participant:hover .str-video__call-controls__button,
1938
+ .str-video__participant-angular-host:hover .str-video__participant_details,
1939
+ .str-video__participant-angular-host:hover .str-video__call-controls__button {
1940
+ opacity: 1;
1941
+ }
1942
+ .str-video__participant > .str-video__call-controls__button,
1943
+ .str-video__participant-angular-host > .str-video__call-controls__button {
1944
+ position: absolute;
1945
+ top: 0.875rem;
1946
+ right: 0.875rem;
1947
+ z-index: 1;
1948
+ padding: 0.3rem;
1949
+ }
1950
+ .str-video__participant--speaking video,
1951
+ .str-video__participant--speaking .str-video__participant-placeholder,
1952
+ .str-video__participant-angular-host--speaking video,
1953
+ .str-video__participant-angular-host--speaking .str-video__participant-placeholder {
1954
+ outline: 2px solid var(--str-video__primary-color);
1955
+ }
1956
+ .str-video__participant .str-video__video-container,
1957
+ .str-video__participant-angular-host .str-video__video-container {
1958
+ position: relative;
1959
+ height: 100%;
1960
+ min-height: 0;
1961
+ max-height: 100%;
1962
+ display: flex;
1963
+ flex-direction: column;
1964
+ }
1965
+ .str-video__participant .str-video__video-container .str-video__remote-video,
1966
+ .str-video__participant-angular-host .str-video__video-container .str-video__remote-video {
1967
+ border-radius: var(--str-video__border-radius2);
1968
+ width: 100%;
1969
+ object-fit: cover;
1970
+ background: var(--str-video__text-color3);
1971
+ }
1972
+ .str-video__participant .str-video__participant_details,
1973
+ .str-video__participant-angular-host .str-video__participant_details {
1974
+ position: absolute;
1975
+ left: 0.875rem;
1976
+ bottom: 0.875rem;
1977
+ display: flex;
1978
+ align-items: center;
1979
+ gap: 0.3125rem;
1980
+ }
1981
+ .str-video__participant .str-video__participant_details .str-video__participant_name,
1982
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name {
1983
+ border-radius: var(--str-video__border-radius1);
1984
+ background-color: var(--str-video__background-color4);
1985
+ display: flex;
1986
+ align-items: center;
1987
+ gap: 0.3125rem;
1988
+ padding: 4px 6px;
1989
+ white-space: nowrap;
1990
+ overflow: hidden;
1991
+ text-overflow: ellipsis;
1992
+ }
1993
+ .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--audio-muted,
1994
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--audio-muted {
1995
+ width: 1rem;
1996
+ height: 1rem;
1997
+ mask-size: 1rem;
1998
+ -webkit-mask-size: 1rem;
1999
+ background-color: var(--str-video__text-color1);
2000
+ mask-image: var(--str-video__icon--mic-off);
2001
+ -webkit-mask-image: var(--str-video__icon--mic-off);
2002
+ }
2003
+ .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--dominant_speaker,
2004
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--dominant_speaker {
2005
+ width: 1rem;
2006
+ height: 1rem;
2007
+ mask-size: 1rem;
2008
+ -webkit-mask-size: 1rem;
2009
+ background-color: var(--str-video__text-color1);
2010
+ mask-image: var(--str-video__icon--dominant-speaker);
2011
+ -webkit-mask-image: var(--str-video__icon--dominant-speaker);
2012
+ mask-size: contain;
2013
+ -webkit-mask-size: contain;
2014
+ mask-repeat: no-repeat;
2015
+ -webkit-mask-repeat: no-repeat;
2016
+ mask-position: center;
2017
+ -webkit-mask-position: center;
2018
+ }
2019
+ .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--video-muted,
2020
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--video-muted {
2021
+ width: 1rem;
2022
+ height: 1rem;
2023
+ mask-size: 1rem;
2024
+ -webkit-mask-size: 1rem;
2025
+ background-color: var(--str-video__text-color1);
2026
+ mask-image: var(--str-video__icon--camera-off);
2027
+ -webkit-mask-image: var(--str-video__icon--camera-off);
2028
+ }
2029
+ .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--pinned,
2030
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--pinned {
2031
+ width: 1rem;
2032
+ height: 1rem;
2033
+ mask-size: 1rem;
2034
+ -webkit-mask-size: 1rem;
2035
+ background-color: var(--str-video__text-color1);
2036
+ width: 0.8rem;
2037
+ -webkit-mask-size: 0.8rem;
2038
+ height: 1rem;
2039
+ mask-size: 0.8rem;
2040
+ mask-repeat: no-repeat;
2041
+ -webkit-mask-repeat: no-repeat;
2042
+ mask-position: center;
2043
+ -webkit-mask-position: center;
2044
+ mask-image: var(--str-video__icon--pin);
2045
+ -webkit-mask-image: var(--str-video__icon--pin);
2046
+ }
2047
+ .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--network-stats,
2048
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--network-stats {
2049
+ width: 1rem;
2050
+ height: 1rem;
2051
+ mask-size: 1rem;
2052
+ -webkit-mask-size: 1rem;
2053
+ background-color: var(--str-video__text-color1);
2054
+ background-image: var(--str-video__icon--network-quality);
2055
+ cursor: pointer;
2056
+ margin-right: 0.625rem;
2057
+ }
2058
+ .str-video__participant .str-video__participant_details .str-video__participant__connection-quality,
2059
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality {
2060
+ width: 1.5rem;
2061
+ height: 1.5rem;
2062
+ display: block;
2063
+ background-size: cover;
2064
+ }
2065
+ .str-video__participant .str-video__participant_details .str-video__participant__connection-quality--poor,
2066
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality--poor {
2067
+ background-image: var(--str-video__icon--connection-quality-poor);
2068
+ }
2069
+ .str-video__participant .str-video__participant_details .str-video__participant__connection-quality--good,
2070
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality--good {
2071
+ background-image: var(--str-video__icon--connection-quality-good);
2072
+ }
2073
+ .str-video__participant .str-video__participant_details .str-video__participant__connection-quality--excellent,
2074
+ .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality--excellent {
2075
+ background-image: var(--str-video__icon--connection-quality-excellent);
2076
+ }
2077
+
2078
+ .str-video__paginated-grid-layout--wrapper {
2079
+ flex-grow: 1;
2080
+ }
2081
+
2082
+ .str-video__paginated-grid-layout {
2083
+ display: flex;
2084
+ height: 100%;
2085
+ align-items: center;
2086
+ justify-content: space-between;
2087
+ }
2088
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group {
2089
+ display: flex;
2090
+ flex-wrap: wrap;
2091
+ gap: 8px;
2092
+ justify-content: center;
2093
+ max-width: 110vh;
2094
+ padding-inline: 1.25rem;
2095
+ margin: auto;
2096
+ width: 100%;
2097
+ }
2098
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group .str-video__participant {
2099
+ flex: 0 1 calc(25% - 6px);
2100
+ }
2101
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group.str-video__paginated-grid-layout--one .str-video__participant {
2102
+ flex: 0 1 calc(100% - 6px);
2103
+ }
2104
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group.str-video__paginated-grid-layout--two-four .str-video__participant {
2105
+ flex: 0 1 calc(50% - 6px);
2106
+ }
2107
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group.str-video__paginated-grid-layout--five-nine .str-video__participant {
2108
+ flex: 0 1 calc(33% - 6px);
2109
+ }
2110
+
2111
+ .str-video__speaker-layout--wrapper {
2112
+ flex-grow: 1;
2113
+ overflow-y: hidden;
2114
+ }
2115
+
2116
+ .str-video__speaker-layout {
2117
+ display: flex;
2118
+ flex-direction: column;
2119
+ justify-content: center;
2120
+ height: 100%;
2121
+ width: 100%;
2122
+ gap: 1rem;
2123
+ padding-inline: 2px;
2124
+ }
2125
+ .str-video__speaker-layout .str-video__participant {
2126
+ aspect-ratio: 16/9;
2127
+ }
2128
+ .str-video__speaker-layout .str-video__speaker-layout--spotlight {
2129
+ display: flex;
2130
+ align-items: center;
2131
+ justify-content: center;
2132
+ min-height: 0;
2133
+ }
2134
+ .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__participant {
2135
+ width: 100%;
2136
+ max-width: 110vh;
2137
+ }
2138
+ .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__screen-share {
2139
+ outline: none;
2140
+ border-radius: unset;
2141
+ object-fit: contain;
2142
+ }
2143
+ .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__participant_details,
2144
+ .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__call-controls__button {
2145
+ opacity: 1;
2146
+ }
2147
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper {
2148
+ position: relative;
2149
+ display: flex;
2150
+ align-items: center;
2151
+ justify-content: center;
2152
+ }
2153
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-left {
2154
+ position: absolute;
2155
+ left: 0.5rem;
2156
+ z-index: 1;
2157
+ }
2158
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-left .str-video__call-controls__button--icon {
2159
+ width: 0.8rem;
2160
+ height: 0.8rem;
2161
+ }
2162
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-right {
2163
+ position: absolute;
2164
+ right: 0.5rem;
2165
+ z-index: 1;
2166
+ }
2167
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-right .str-video__call-controls__button--icon {
2168
+ width: 0.8rem;
2169
+ height: 0.8rem;
2170
+ }
2171
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper {
2172
+ overflow-x: auto;
2173
+ scrollbar-width: none;
2174
+ }
2175
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper::-webkit-scrollbar {
2176
+ display: none;
2177
+ }
2178
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper .str-video__speaker-layout--participants-bar {
2179
+ display: flex;
2180
+ flex-direction: row;
2181
+ align-items: center;
2182
+ }
2183
+ .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper .str-video__speaker-layout--participants-bar .str-video__speaker-layout--participant-tile {
2184
+ width: 280px;
2185
+ min-width: 280px;
2186
+ max-width: 25vh;
2187
+ padding-inline: 5px;
2188
+ padding-block: 2px;
2189
+ }
2190
+
2191
+ .str-video__icon {
2192
+ background-color: var(--str-video__text-color1);
2193
+ }
2194
+ .str-video__icon--chat {
2195
+ mask-image: var(--str-video__icon--chat);
2196
+ -webkit-mask-image: var(--str-video__icon--chat);
2197
+ }
2198
+ .str-video__icon--reactions {
2199
+ -webkit-mask-image: var(--str-video__icon--reactions);
2200
+ mask-image: var(--str-video__icon--reactions);
2201
+ }
2202
+ .str-video__icon--recording-on {
2203
+ mask-image: var(--str-video__icon--recording-on);
2204
+ -webkit-mask-image: var(--str-video__icon--recording-on);
2205
+ background-color: var(--str-video__danger-color1);
2206
+ }
2207
+ .str-video__icon--recording-off {
2208
+ mask-image: var(--str-video__icon--recording-off);
2209
+ -webkit-mask-image: var(--str-video__icon--recording-off);
2210
+ }
2211
+ .str-video__icon--screen-share-on {
2212
+ mask-image: var(--str-video__icon--screen-share-on);
2213
+ -webkit-mask-image: var(--str-video__icon--screen-share-on);
2214
+ }
2215
+ .str-video__icon--screen-share-off {
2216
+ mask-image: var(--str-video__icon--screen-share-off);
2217
+ -webkit-mask-image: var(--str-video__icon--screen-share-off);
2218
+ }
2219
+ .str-video__icon--caret-down {
2220
+ transform: rotate(180deg);
2221
+ mask-image: var(--str-video__icon--caret);
2222
+ -webkit-mask-image: var(--str-video__icon--caret);
2223
+ }
2224
+ .str-video__icon--caret-up {
2225
+ mask-image: var(--str-video__icon--caret);
2226
+ -webkit-mask-image: var(--str-video__icon--caret);
2227
+ }
2228
+ .str-video__icon--caret-right {
2229
+ transform: rotate(90deg);
2230
+ mask-image: var(--str-video__icon--caret);
2231
+ -webkit-mask-image: var(--str-video__icon--caret);
2232
+ }
2233
+ .str-video__icon--caret-left {
2234
+ transform: rotate(-90deg);
2235
+ mask-image: var(--str-video__icon--caret);
2236
+ -webkit-mask-image: var(--str-video__icon--caret);
2237
+ }
2238
+ .str-video__icon--mic {
2239
+ mask-image: var(--str-video__icon--mic);
2240
+ -webkit-mask-image: var(--str-video__icon--mic);
2241
+ }
2242
+ .str-video__icon--mic-off {
2243
+ mask-image: var(--str-video__icon--mic-off);
2244
+ -webkit-mask-image: var(--str-video__icon--mic-off);
2245
+ }
2246
+ .str-video__icon--camera {
2247
+ mask-image: var(--str-video__icon--camera);
2248
+ -webkit-mask-image: var(--str-video__icon--camera);
2249
+ }
2250
+ .str-video__icon--camera-off {
2251
+ mask-image: var(--str-video__icon--camera-off);
2252
+ -webkit-mask-image: var(--str-video__icon--camera-off);
2253
+ }
2254
+ .str-video__icon--camera-off-outline {
2255
+ mask-image: var(--str-video__icon--camera-off-outline);
2256
+ -webkit-mask-image: var(--str-video__icon--camera-off-outline);
2257
+ }
2258
+ .str-video__icon--call-end {
2259
+ mask-image: var(--str-video__icon--call-end);
2260
+ -webkit-mask-image: var(--str-video__icon--call-end);
2261
+ }
2262
+ .str-video__icon--info {
2263
+ -webkit-mask-image: var(--str-video__icon--info-icon);
2264
+ mask-image: var(--str-video__icon--info-icon);
2265
+ }
2266
+ .str-video__icon--info-document {
2267
+ -webkit-mask-image: var(--str-video__icon--info-document);
2268
+ mask-image: var(--str-video__icon--info-document);
2269
+ }
2270
+ .str-video__icon--stats {
2271
+ -webkit-mask-image: var(--str-video__icon--stats);
2272
+ mask-image: var(--str-video__icon--stats);
2273
+ }
2274
+ .str-video__icon--participants {
2275
+ mask-image: var(--str-video__icon--participants);
2276
+ -webkit-mask-image: var(--str-video__icon--participants);
2277
+ }
2278
+ .str-video__icon--user-plus {
2279
+ mask-image: var(--str-video__icon--user-plus);
2280
+ -webkit-mask-image: var(--str-video__icon--user-plus);
2281
+ }
2282
+ .str-video__icon--speaker {
2283
+ mask-image: var(--str-video__icon--speaker);
2284
+ -webkit-mask-image: var(--str-video__icon--speaker);
2285
+ }
2286
+ .str-video__icon--ellipsis {
2287
+ mask-image: var(--str-video__icon--ellipsis);
2288
+ -webkit-mask-image: var(--str-video__icon--ellipsis);
2289
+ }
2290
+ .str-video__icon--grid {
2291
+ mask-image: var(--str-video__icon--grid);
2292
+ -webkit-mask-image: var(--str-video__icon--grid);
2293
+ }
2294
+ .str-video__icon--pin {
2295
+ mask-image: var(--str-video__icon--pin);
2296
+ -webkit-mask-image: var(--str-video__icon--pin);
2297
+ }
2298
+ .str-video__icon--no-audio {
2299
+ mask-image: var(--str-video__icon--no-audio);
2300
+ -webkit-mask-image: var(--str-video__icon--no-audio);
2301
+ }
2302
+ .str-video__icon--not-allowed {
2303
+ mask-image: var(--str-video__icon--not-allowed);
2304
+ -webkit-mask-image: var(--str-video__icon--not-allowed);
2305
+ }
2306
+ .str-video__icon--call-recordings {
2307
+ mask-image: var(--str-video__icon--film-roll);
2308
+ -webkit-mask-image: var(--str-video__icon--film-roll);
2309
+ }
2310
+ .str-video__icon--device-settings {
2311
+ mask-image: var(--str-video__icon--settings);
2312
+ -webkit-mask-image: var(--str-video__icon--settings);
2313
+ }
2314
+ .str-video__icon--refresh {
2315
+ mask-image: var(--str-video__icon--refresh);
2316
+ -webkit-mask-image: var(--str-video__icon--refresh);
2317
+ }
2318
+
2319
+ .str-video__icon {
2320
+ mask-repeat: no-repeat;
2321
+ -webkit-mask-repeat: no-repeat;
2322
+ mask-position: center;
2323
+ -webkit-mask-position: center;
2324
+ mask-size: contain;
2325
+ -webkit-mask-size: contain;
2326
+ display: block;
2327
+ width: 1.375rem;
2328
+ height: 1.375rem;
2329
+ }
2330
+
2331
+ .str-video__debug__track-stats {
2332
+ font-size: 0.6rem;
2333
+ overflow: scroll;
2334
+ height: 600px;
2335
+ width: 500px;
2336
+ background-color: var(--str-video__background-color1);
2337
+ color: var(--str-video__text-color1);
2338
+ z-index: 10;
2339
+ }
2340
+
2341
+ .str-video__debug__track-stats-icon {
2342
+ display: inline-block;
2343
+ width: 1.5rem;
2344
+ height: 1.5rem;
2345
+ background-position: center;
2346
+ background-repeat: no-repeat;
2347
+ background-image: var(--str-video__icon--network-quality);
2348
+ cursor: pointer;
2349
+ }
2350
+
2351
+ /*# sourceMappingURL=styles.css.map */