isometrik-chat 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -0
- package/babel.config.js +6 -0
- package/dist/index.js +684 -0
- package/package.json +59 -0
- package/public/Logo-192x192.png +0 -0
- package/public/Logo-512x512.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/fonts/BenjaminVictoria.ttf +0 -0
- package/public/icons/arrow_logo.svg +9 -0
- package/public/icons/assets/ic_placeholder_banner.svg +1 -0
- package/public/icons/attach-file.svg +9 -0
- package/public/icons/audio_pause.svg +1 -0
- package/public/icons/audio_play.svg +6 -0
- package/public/icons/back.svg +3 -0
- package/public/icons/bell.svg +1 -0
- package/public/icons/block.svg +1 -0
- package/public/icons/bottom-arrow.svg +1 -0
- package/public/icons/camera-switch.svg +12 -0
- package/public/icons/camera.svg +4 -0
- package/public/icons/cancel.svg +1 -0
- package/public/icons/chat empty placeholder.svg +58 -0
- package/public/icons/chat_audio_pause.png +0 -0
- package/public/icons/chat_audio_play.png +0 -0
- package/public/icons/close.svg +5 -0
- package/public/icons/crossCarousel.svg +3 -0
- package/public/icons/delete.svg +3 -0
- package/public/icons/disappear.svg +24 -0
- package/public/icons/document.png +0 -0
- package/public/icons/document.svg +1 -0
- package/public/icons/downloadCarousel.svg +6 -0
- package/public/icons/edit-pencil.svg +6 -0
- package/public/icons/emoji.svg +8 -0
- package/public/icons/emojiCarousel.svg +3 -0
- package/public/icons/filter.svg +1 -0
- package/public/icons/forwardCarousel.svg +3 -0
- package/public/icons/gallery.svg +1 -0
- package/public/icons/goToMessageCarousel.svg +3 -0
- package/public/icons/ic_uil_arrow-left.svg +1 -0
- package/public/icons/ic_uil_eye-slash.svg +1 -0
- package/public/icons/ic_uil_eye.svg +1 -0
- package/public/icons/leftArrowCarousel.svg +6 -0
- package/public/icons/light-mode.svg +14 -0
- package/public/icons/lock.svg +1 -0
- package/public/icons/login_background.png +0 -0
- package/public/icons/menu .svg +5 -0
- package/public/icons/menuCarousel.svg +5 -0
- package/public/icons/message.svg +3 -0
- package/public/icons/placeholder.svg +958 -0
- package/public/icons/poll.svg +1 -0
- package/public/icons/retake.png +0 -0
- package/public/icons/right-arrow.svg +3 -0
- package/public/icons/right.svg +3 -0
- package/public/icons/round-star.svg +1 -0
- package/public/icons/search.svg +3 -0
- package/public/icons/send.svg +10 -0
- package/public/icons/starCarousel.svg +3 -0
- package/public/icons/status.svg +1 -0
- package/public/icons/sticker.svg +1 -0
- package/public/icons/thumb-down.svg +1 -0
- package/public/icons/user.svg +1 -0
- package/public/icons/users.svg +1 -0
- package/public/icons/voice.png +0 -0
- package/public/index.html +38 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/offline.html +12 -0
- package/public/robots.txt +3 -0
- package/public/service-worker.js +81 -0
- package/src/App.js +15 -0
- package/src/App.test.js +8 -0
- package/src/Authpage.js +16 -0
- package/src/ChatContext.js +172 -0
- package/src/Data/index.js +110 -0
- package/src/assets/icons.js +49 -0
- package/src/assets/images/WhatsApp.html +258 -0
- package/src/assets/images/WhatsApp_files/301446776_522918349234681_1974693392291574064_n.jpg +0 -0
- package/src/assets/images/WhatsApp_files/app-bf223f825866ee433b07.css +242 -0
- package/src/assets/images/WhatsApp_files/app.77ee8aa7a4c593101105.js +77 -0
- package/src/assets/images/WhatsApp_files/lazy_loaded_high_priority_components.85a06e74a0a4ade1640b.css +16 -0
- package/src/assets/images/WhatsApp_files/lazy_loaded_low_priority_components.8621270bc215a9298a97.css +47 -0
- package/src/assets/images/WhatsApp_files/libsignal-protocol-ee5b8ba.min.js +21 -0
- package/src/assets/images/WhatsApp_files/main.48b845d68e066fb27a75.css +161 -0
- package/src/assets/images/WhatsApp_files/runtime.e6018f3c1e255e8f4dc7.js +2 -0
- package/src/assets/images/WhatsApp_files/stylex-d50abd61e6cf7eab2afd855adccf14e5.css +2841 -0
- package/src/assets/images/WhatsApp_files/vendor1_app.58a51d93a250f83ab555.js +79 -0
- package/src/assets/images/bg.jpeg +0 -0
- package/src/assets/images/drkbg.jpg +0 -0
- package/src/assets/images/notFound.jpeg +0 -0
- package/src/assets/images/watsapp.jpg +0 -0
- package/src/assets/images/watsappbg.png +0 -0
- package/src/assets/images/wb.jpg +0 -0
- package/src/assets/images/whatsapp.jpeg +0 -0
- package/src/components/ChatBox/AudioBubble.js +162 -0
- package/src/components/ChatBox/ChatBubble.js +232 -0
- package/src/components/ChatBox/DocumentBubble.js +87 -0
- package/src/components/ChatBox/MessagesBox.js +533 -0
- package/src/components/CustomModal.js +60 -0
- package/src/components/Icon.js +10 -0
- package/src/components/ImageComponent.js +24 -0
- package/src/components/MediaDocs.js +155 -0
- package/src/components/MediaDocumentContainer.js +55 -0
- package/src/components/MessageInfoDropdown.js +124 -0
- package/src/components/Modal/AllowMicPermissionModal.js +63 -0
- package/src/components/Modal/BlockUnblockChatModal.js +78 -0
- package/src/components/Modal/CameraPermissionBlockedModal.js +61 -0
- package/src/components/Modal/CameraPermissionRequestModal.js +60 -0
- package/src/components/Modal/ClearChatModal.js +78 -0
- package/src/components/Modal/DeleteChatModal.js +79 -0
- package/src/components/Modal/MicPermissionDisableModal.js +63 -0
- package/src/components/Modal/Modal.js +103 -0
- package/src/components/Modal/ModalDialog.js +103 -0
- package/src/components/Modal/ProfilePictureUploadPreview.js +160 -0
- package/src/components/OutsideAlerter/OutsideAlerter.js +38 -0
- package/src/components/ProfilePicture/ProfilePicture.js +127 -0
- package/src/components/Registration/Login.js +265 -0
- package/src/components/Registration/SignUp.js +322 -0
- package/src/components/SnackBar.js +42 -0
- package/src/components/common/Modal/useDetectOutsideClick.js +23 -0
- package/src/components/common/styled/PageWrapper.js +25 -0
- package/src/components/formcontrol/CustomButton.js +38 -0
- package/src/components/formcontrol/InputText.js +60 -0
- package/src/global-styles.js +42 -0
- package/src/hooks/useDeviceType.js +28 -0
- package/src/hooks/useThrottle.js +29 -0
- package/src/index.css +225 -0
- package/src/index.js +23 -0
- package/src/lib/constant.js +21 -0
- package/src/lib/functionality.js +13 -0
- package/src/lib/helpers.js +320 -0
- package/src/lib/mockData/index.js +76 -0
- package/src/lib/session/index.js +31 -0
- package/src/lib/validation.js +4 -0
- package/src/logo.svg +1 -0
- package/src/pages/WhatsappMainBox/index.js +574 -0
- package/src/reportWebVitals.js +13 -0
- package/src/services/deliveryStatus.js +27 -0
- package/src/setupTests.js +5 -0
- package/src/utils/chatSdk.js +14 -0
- package/src/utils/global.js +57 -0
- package/src/utils/media.js +79 -0
- package/src/view/component/BlockedContactSlide.js +134 -0
- package/src/view/component/Carousle/UpperMenuBar.js +106 -0
- package/src/view/component/Carousle/index.js +204 -0
- package/src/view/component/Chatbox.js/AudioRecorder.js +311 -0
- package/src/view/component/Chatbox.js/ChatBubbleReply.js +27 -0
- package/src/view/component/Chatbox.js/TakePhoto.js +363 -0
- package/src/view/component/Chatbox.js/index.js +856 -0
- package/src/view/component/Chatbox.js/styles.css +231 -0
- package/src/view/component/Contact/index.js +56 -0
- package/src/view/component/Contact/styles.css +208 -0
- package/src/view/component/ContactInfo/index.js +543 -0
- package/src/view/component/ContactInfo/styles.css +289 -0
- package/src/view/component/Context/index.js +3 -0
- package/src/view/component/DialogBox.js +15 -0
- package/src/view/component/ImageCropper/ImageCropper.js +128 -0
- package/src/view/component/Loader/Loader.js +52 -0
- package/src/view/component/Loader/UserPagingLoader.js +62 -0
- package/src/view/component/MainChatBox/index.js +819 -0
- package/src/view/component/MainChatBox/styles.css +124 -0
- package/src/view/component/Menu/index.js +261 -0
- package/src/view/component/Menu/styles.css +68 -0
- package/src/view/component/Profile/ProfileInfoContainer.js +112 -0
- package/src/view/component/Profile/ProfileUpdate.js +178 -0
- package/src/view/component/Profile/TakeProfilePhoto.js +391 -0
- package/src/view/component/Profile/index.js +550 -0
- package/src/view/component/Profile/styles.css +370 -0
- package/src/view/component/ReplyChatMessage/ReplyChatMessage.js +48 -0
- package/src/view/component/SeachBar/index.js +106 -0
- package/src/view/component/SeachBar/styles.css +53 -0
- package/src/view/component/Siderbar/index.js +512 -0
- package/src/view/component/Siderbar/styles.css +138 -0
- package/src/view/component/Toaster/Toaster.js +117 -0
- package/src/view/component/UserDetailsCard/UserDetailCard.js +337 -0
- package/src/view/component/deleteMessageMoal.js +80 -0
- package/src/view/component/emoji/index.js +22 -0
- package/src/view/component/emoji/sstyles.css +0 -0
- package/src/view/component/forwardData/index.js +327 -0
- package/src/view/component/forwardData/styles.css +112 -0
- package/src/view/component/forwardPopup/index.js +55 -0
- package/src/view/component/forwardPopup/styles.css +144 -0
- package/src/view/component/mediaList/index.js +92 -0
- package/src/view/component/menuDialog/index.js +71 -0
- package/src/view/component/menuDialog/styles.css +24 -0
- package/src/view/component/pagination/pagination.js +52 -0
- package/src/view/component/pagination/paginationForMsg.js +43 -0
- package/src/view/component/sidebarChat/index.js +321 -0
- package/src/view/component/sidebarChat/styles.css +109 -0
|
@@ -0,0 +1,2841 @@
|
|
|
1
|
+
.a1m9qzja{flex:1}
|
|
2
|
+
.aja0x350{text-decoration:none}
|
|
3
|
+
.ajuzgosp{transform:translateX(50%)}
|
|
4
|
+
.b4xm8rjh{transform:scale(1)}
|
|
5
|
+
.b5bqnu92{transform:translateY(-240%)}
|
|
6
|
+
.bglikw2g{transform:scale(.01)}
|
|
7
|
+
.bnt9nn9b{transform:translate(5px)}
|
|
8
|
+
.bqte3on1{transform:translateX(-1px)}
|
|
9
|
+
.btgdcgtm{transform:translateX(-100%) translateY(-50%)}
|
|
10
|
+
.bwjm0vhl{transform:rotate(-90deg)}
|
|
11
|
+
.bxpi4b5r{transform:translate3d(0,0,0)}
|
|
12
|
+
.byw3xhqn{transition:opacity .3s var(--t-ease),transform .3s var(--t-ease)}
|
|
13
|
+
.c5h0bzs2{transition:opacity .08s linear}
|
|
14
|
+
.cgi16xlc{transform:translateZ(0)}
|
|
15
|
+
.cljgexa3{transform:translateY(6px)}
|
|
16
|
+
.cxnvdhix{transform:translateX(1px)}
|
|
17
|
+
.d4g41f7d{transition:opacity .2s ease-in-out}
|
|
18
|
+
.d7dzraxg{transform:translateX(2px)}
|
|
19
|
+
.d9ddx5tg{background:linear-gradient(to top,rgba(var(--overlay-rgb),.5),rgba(var(--overlay-rgb),0))}
|
|
20
|
+
.e3l9pkzr{background:var(--video-player-background)}
|
|
21
|
+
.e79a4tva{transform:translateY(24px)}
|
|
22
|
+
.e95mh68g{transform:translateX(12px)}
|
|
23
|
+
.eipqoq80{transform:translate(0,0) scale(.8)!important}
|
|
24
|
+
.etdxpurf{transform:translateY(-2px)}
|
|
25
|
+
.eu5j4lnj{transition:padding-left .3s var(--t-ease)}
|
|
26
|
+
.g6mp970w{transition:transform $t-fast cubic-bezier(.09,.87,.72,1)}
|
|
27
|
+
.gk6igrwd{outline:none}
|
|
28
|
+
.gqonocmn{transform:translateY(-120%)}
|
|
29
|
+
.h442i0ze{transform:translateX(50%) translateY(-100%)}
|
|
30
|
+
.haigt2tc{transition:opacity .3s ease}
|
|
31
|
+
.hda1r0l0{transform:scale(.82)}
|
|
32
|
+
.hir9ny8g{transform:rotate(45deg)}
|
|
33
|
+
.hvx74mdw{transform:translateX(50%) translateY(100%)}
|
|
34
|
+
.iw1tz1w0{transition:background-color .2s}
|
|
35
|
+
.iwt3stqw{transition:transform .15s ease}
|
|
36
|
+
.j7iro104{transform:translateY(-360%)}
|
|
37
|
+
.j8qkm4ft{transform:perspective(1px)}
|
|
38
|
+
.jciay5ix{}
|
|
39
|
+
.kk3akd72{flex:none}
|
|
40
|
+
.kqm7f4gm{background:var(--background-default)}
|
|
41
|
+
.kvhexry3{transition:transform .075s ease-out,opacity .25s ease-in-out}
|
|
42
|
+
.lidvm163{transform:scale(.9375)}
|
|
43
|
+
.lvbah2qd{transform:translateY(10px)}
|
|
44
|
+
.m7vo9q63{transform:translateY(-50%)}
|
|
45
|
+
.mdse5hul{transform:scale(.5)}
|
|
46
|
+
.mfeq4yke{transition:opacity .075s}
|
|
47
|
+
.mob44t3l{transform:scale(.875)}
|
|
48
|
+
.mpzqt04v{transform:translateY(7px)}
|
|
49
|
+
.mrtez2t4{transform:scale(0)}
|
|
50
|
+
.mx771qyo{flex:1 1 auto}
|
|
51
|
+
.n4o0o7gj{transform:scaleX(-1)}
|
|
52
|
+
.n5hs2j7m{flex:0 0 auto}
|
|
53
|
+
.odkvbdo1{transition:transform .2s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1)}
|
|
54
|
+
.of0uvz1c{transform:scale(.87)}
|
|
55
|
+
.onkrk2ft{transition:opacity .15s ease}
|
|
56
|
+
.ozhy756y{text-decoration:line-through}
|
|
57
|
+
.p1bddo5c{background:var(--beta-tag-background)}
|
|
58
|
+
.p5jrpzbl{transform:scale(.92)}
|
|
59
|
+
.p83aruvr{transform:translate(0,0) scale(.85)!important}
|
|
60
|
+
.pcik6s50{transition:border-width var(--t-fast) cubic-bezier(.09,.87,.72,1)}
|
|
61
|
+
.pdwgdm2l{transform:rotate(90deg)}
|
|
62
|
+
.po5z5zgs{transform:translateY(2px)}
|
|
63
|
+
.qbtd8e50{transition:border-color .2px ease-out}
|
|
64
|
+
.qdd0en2n{transform:translateY(0)}
|
|
65
|
+
.qh5tioqs{transition:padding-left .3s var(--t-ease-reverse)}
|
|
66
|
+
.qizq0yyl{transition:transform .3s,opacity .3s}
|
|
67
|
+
.qk2y3tb3{transform:translate(-50%,-50%)}
|
|
68
|
+
.qlxkrvdn{transform:translateZ(0);}
|
|
69
|
+
.qvwhnwh7{transition:transform .2s}
|
|
70
|
+
.qybahty3{transform:rotate(230deg)}
|
|
71
|
+
.rbxsf3hm{transform:scale(.85)}
|
|
72
|
+
.rj4tx0cq{transition:width .3s}
|
|
73
|
+
.sihoqmp4{transform:translateY(-50px)}
|
|
74
|
+
.slzs0jzd{transform:translate(0,0) scale(.9)!important}
|
|
75
|
+
.sqzaidt6{transform:scale(.25)}
|
|
76
|
+
.t1844p82{transform:translate3d(100,0,0)}
|
|
77
|
+
.t21h2yns{transform:scale(.7)}
|
|
78
|
+
.t9w6h8zt{transform:translateX(-50%)}
|
|
79
|
+
.teu70ee9{transform:translateX(100%) translateY(-50%)}
|
|
80
|
+
.tqd5if5z{background:var(--media-inner-border)}
|
|
81
|
+
html:not([dir='rtl']) .a0tvyxpe{border-right:2px solid #fff}
|
|
82
|
+
html[dir='rtl'] .a0tvyxpe{border-left:2px solid #fff}
|
|
83
|
+
html:not([dir='rtl']) .af7d455f{border-left:2px solid rgba(var(--inverse-rgb),.1)}
|
|
84
|
+
html[dir='rtl'] .af7d455f{border-right:2px solid rgba(var(--inverse-rgb),.1)}
|
|
85
|
+
html:not([dir='rtl']) .af84pui9{border-right:2px solid var(--panel-header-background)}
|
|
86
|
+
html[dir='rtl'] .af84pui9{border-left:2px solid var(--panel-header-background)}
|
|
87
|
+
.afzp6nl2{border-bottom:1px solid rgba(var(--primary-rgb),.2)}
|
|
88
|
+
.aickbkrb{border-bottom:2px solid rgba(var(--primary-rgb),.75)}
|
|
89
|
+
.at9xyjjq{border-bottom:1px solid var(--ptt-draft-waveform-background-border)}
|
|
90
|
+
.av59jz02{border-bottom:2px solid var(--checkbox-mark)}
|
|
91
|
+
html:not([dir='rtl']) .av6w3u2w{border-left:1px solid var(--border-panel)}
|
|
92
|
+
html[dir='rtl'] .av6w3u2w{border-right:1px solid var(--border-panel)}
|
|
93
|
+
.avd5zzxf{border-bottom:1px solid var(--reactions-bubble-border)}
|
|
94
|
+
.b16c6ymn{border-top:1px solid var(--ptt-draft-waveform-background-border)}
|
|
95
|
+
.bajl15op{border-bottom:6px solid var(--background-default-hover)}
|
|
96
|
+
html:not([dir='rtl']) .bd2x2sk5{border-left:2px solid var(--icon-disabled)}
|
|
97
|
+
html[dir='rtl'] .bd2x2sk5{border-right:2px solid var(--icon-disabled)}
|
|
98
|
+
.bh3h7g0c{border-bottom:1px solid var(--sticker-button-background)}
|
|
99
|
+
html:not([dir='rtl']) .bhvruqn2{border-right:2px solid rgba(var(--inverse-rgb),.1)}
|
|
100
|
+
html[dir='rtl'] .bhvruqn2{border-left:2px solid rgba(var(--inverse-rgb),.1)}
|
|
101
|
+
.bjj8y24l{border-bottom:4px solid var(--wallpaper-thumb-border-active)}
|
|
102
|
+
html:not([dir='rtl']) .bmro6pka{border-left:1px solid var(--icon-disabled)}
|
|
103
|
+
html[dir='rtl'] .bmro6pka{border-right:1px solid var(--icon-disabled)}
|
|
104
|
+
.btoh1681{border-top:2px solid var(--icon-disabled)}
|
|
105
|
+
.c2eze1zb{border-bottom:2px solid var(--icon-disabled)}
|
|
106
|
+
.cc8mgx9x{border-top:0}
|
|
107
|
+
.cd4l02zd{border-top:2px solid rgba(var(--primary-rgb),.75)}
|
|
108
|
+
.d27kr2rt{border-top:unset}
|
|
109
|
+
.d311eqfx{border-bottom:1px solid var(--input-border)}
|
|
110
|
+
.d9802myq{border-bottom:0}
|
|
111
|
+
.daad4uqs{border-bottom:1px solid var(--border-default)}
|
|
112
|
+
html:not([dir='rtl']) .dcbm44dr{border-left:2px solid var(--background-default-hover)}
|
|
113
|
+
html[dir='rtl'] .dcbm44dr{border-right:2px solid var(--background-default-hover)}
|
|
114
|
+
html:not([dir='rtl']) .dic3qptu{border-left:1px solid}
|
|
115
|
+
html[dir='rtl'] .dic3qptu{border-right:1px solid}
|
|
116
|
+
html:not([dir='rtl']) .digrcooj{border-right:1px solid}
|
|
117
|
+
html[dir='rtl'] .digrcooj{border-left:1px solid}
|
|
118
|
+
.dkf3g4f3{border-top:4px solid var(--wallpaper-thumb-border-hover)}
|
|
119
|
+
.dl47i6rc{border-top:1px solid var(--border-stronger)}
|
|
120
|
+
.dukfh0op{border-top:4px solid var(--wallpaper-thumb-border-active)}
|
|
121
|
+
html:not([dir='rtl']) .e4xiuwjv{border-left:0}
|
|
122
|
+
html[dir='rtl'] .e4xiuwjv{border-right:0}
|
|
123
|
+
.efpv7i3f{border-bottom:1px solid var(--background-default-hover)}
|
|
124
|
+
.ei53l81b{border-top:1px solid var(--border-bubble)}
|
|
125
|
+
.er60nxep{border-top:2px solid var(--modal-background)}
|
|
126
|
+
html:not([dir='rtl']) .eta5aym1{border-right:0}
|
|
127
|
+
html[dir='rtl'] .eta5aym1{border-left:0}
|
|
128
|
+
html:not([dir='rtl']) .f22u1y93{border-left:1px solid var(--qc-button-border)}
|
|
129
|
+
html[dir='rtl'] .f22u1y93{border-right:1px solid var(--qc-button-border)}
|
|
130
|
+
.f2vo98sp{border-top:4px solid var(--white)}
|
|
131
|
+
html:not([dir='rtl']) .f3pti8mu{border-left:2px solid var(--modal-background)}
|
|
132
|
+
html[dir='rtl'] .f3pti8mu{border-right:2px solid var(--modal-background)}
|
|
133
|
+
html:not([dir='rtl']) .fe0724t5{border-right:2px solid var(--background-default-active)}
|
|
134
|
+
html[dir='rtl'] .fe0724t5{border-left:2px solid var(--background-default-active)}
|
|
135
|
+
html:not([dir='rtl']) .fefz13mk{border-right:1px solid var(--border-strong)}
|
|
136
|
+
html[dir='rtl'] .fefz13mk{border-left:1px solid var(--border-strong)}
|
|
137
|
+
html:not([dir='rtl']) .femjv38p{border-right:4px solid var(--blue-light)}
|
|
138
|
+
html[dir='rtl'] .femjv38p{border-left:4px solid var(--blue-light)}
|
|
139
|
+
html:not([dir='rtl']) .fg094308{border-right:4px solid transparent}
|
|
140
|
+
html[dir='rtl'] .fg094308{border-left:4px solid transparent}
|
|
141
|
+
.flf84san{border-bottom:1px solid}
|
|
142
|
+
.g0j88qvc{border-top:1px dashed var(--media-inner-border)}
|
|
143
|
+
.g4g5yoif{border-bottom:2px solid var(--modal-background)}
|
|
144
|
+
html:not([dir='rtl']) .g5xlzzjq{border-right:4px solid var(--white)}
|
|
145
|
+
html[dir='rtl'] .g5xlzzjq{border-left:4px solid var(--white)}
|
|
146
|
+
.g80wewbe{border-top:2px solid var(--secondary-light)}
|
|
147
|
+
html:not([dir='rtl']) .g9ebf9yp{border-left:unset}
|
|
148
|
+
html[dir='rtl'] .g9ebf9yp{border-right:unset}
|
|
149
|
+
.gb6ia7xa{border-top:1px solid}
|
|
150
|
+
.ggdspdaz{border-bottom:2px solid var(--input-border-active)}
|
|
151
|
+
html:not([dir='rtl']) .giz8vor8{border-left:4px solid var(--wallpaper-thumb-border-active)}
|
|
152
|
+
html[dir='rtl'] .giz8vor8{border-right:4px solid var(--wallpaper-thumb-border-active)}
|
|
153
|
+
.gjeyj30g{border-bottom:1px solid var(--icon-disabled)}
|
|
154
|
+
.gq6acybq{border-top:.5px solid var(--border-list)}
|
|
155
|
+
.grf4wkbn{border-left:none}
|
|
156
|
+
html:not([dir='rtl']) .h0ed51ke{border-left:2px solid rgba(var(--primary-rgb),.75)}
|
|
157
|
+
html[dir='rtl'] .h0ed51ke{border-right:2px solid rgba(var(--primary-rgb),.75)}
|
|
158
|
+
html:not([dir='rtl']) .h826kv5n{border-left:4px solid transparent}
|
|
159
|
+
html[dir='rtl'] .h826kv5n{border-right:4px solid transparent}
|
|
160
|
+
.h82jhl79{border-top:2px solid rgba(var(--shadow-rgb),.01)}
|
|
161
|
+
.hcpeg58q{border-top:1px solid var(--reactions-bubble-border)}
|
|
162
|
+
.hoxr7m2v{border-bottom:1px solid var(--qc-button-border)}
|
|
163
|
+
html:not([dir='rtl']) .hqx4twni{border-left:1px solid var(--border-stronger)}
|
|
164
|
+
html[dir='rtl'] .hqx4twni{border-right:1px solid var(--border-stronger)}
|
|
165
|
+
html:not([dir='rtl']) .ikkoynhc{border-left:5px dashed var(--attach-media-drop-border)}
|
|
166
|
+
html[dir='rtl'] .ikkoynhc{border-right:5px dashed var(--attach-media-drop-border)}
|
|
167
|
+
.im448w36{border-bottom:2px solid var(--background-default)}
|
|
168
|
+
.inlya0ko{border-bottom:4px solid var(--white)}
|
|
169
|
+
.iupwfssi{border-top:1px dashed var(--border-list)}
|
|
170
|
+
.iur5tn1g{border-bottom:4px solid var(--thumb-border-viewer-active)}
|
|
171
|
+
.iys7crcf{border-top:2px solid var(--background-default-hover)}
|
|
172
|
+
.izjj9xk3{border-bottom:2px solid var(--panel-header-background)}
|
|
173
|
+
.j4zbmt6h{border-bottom:1px solid var(--border-bubble)}
|
|
174
|
+
.jevf67zx{border-top:1px solid var(--background-default-hover)}
|
|
175
|
+
html:not([dir='rtl']) .jj3p8fxw{border-left:2px solid rgba(var(--shadow-rgb),.01)}
|
|
176
|
+
html[dir='rtl'] .jj3p8fxw{border-right:2px solid rgba(var(--shadow-rgb),.01)}
|
|
177
|
+
.jjt3y76m{border-bottom:2px solid var(--background-default-hover)}
|
|
178
|
+
html:not([dir='rtl']) .jkanexlp{border-right:none}
|
|
179
|
+
html[dir='rtl'] .jkanexlp{border-left:none}
|
|
180
|
+
.jl194bqt{border-bottom:4px solid var(--blue-light)}
|
|
181
|
+
.jmaq5bi8{border-top:4px solid var(--thumb-border-viewer-active)}
|
|
182
|
+
.joyebr9p{border-top:5px dashed var(--attach-media-drop-border)}
|
|
183
|
+
html:not([dir='rtl']) .jradjnc8{border-right:5px dashed var(--attach-media-drop-border)}
|
|
184
|
+
html[dir='rtl'] .jradjnc8{border-left:5px dashed var(--attach-media-drop-border)}
|
|
185
|
+
.jzfpk5uu{border-bottom:4px solid transparent}
|
|
186
|
+
html:not([dir='rtl']) .k59id2ex{border-right:1px solid var(--qc-button-border)}
|
|
187
|
+
html[dir='rtl'] .k59id2ex{border-left:1px solid var(--qc-button-border)}
|
|
188
|
+
.k8viy54k{border-bottom:1px solid grey}
|
|
189
|
+
html:not([dir='rtl']) .krn0l44i{border-left:4px solid var(--white)}
|
|
190
|
+
html[dir='rtl'] .krn0l44i{border-right:4px solid var(--white)}
|
|
191
|
+
html:not([dir='rtl']) .kwb2ulcm{border-right:2px solid var(--background-default-hover)}
|
|
192
|
+
html[dir='rtl'] .kwb2ulcm{border-left:2px solid var(--background-default-hover)}
|
|
193
|
+
.l78o2i9s{border-top:1px solid var(--qc-button-border)}
|
|
194
|
+
.lbsrbgll{border-top:1px solid var(--sticker-button-background)}
|
|
195
|
+
html:not([dir='rtl']) .lf2f5g3m{border-right:2px solid var(--background-default)}
|
|
196
|
+
html[dir='rtl'] .lf2f5g3m{border-left:2px solid var(--background-default)}
|
|
197
|
+
html:not([dir='rtl']) .lll8t7px{border-left:4px solid var(--blue-light)}
|
|
198
|
+
html[dir='rtl'] .lll8t7px{border-right:4px solid var(--blue-light)}
|
|
199
|
+
.lufur1ix{border-top:1px solid var(--media-inner-border)}
|
|
200
|
+
html:not([dir='rtl']) .m98q8jdg{border-right:2px solid rgba(var(--primary-rgb),.75)}
|
|
201
|
+
html[dir='rtl'] .m98q8jdg{border-left:2px solid rgba(var(--primary-rgb),.75)}
|
|
202
|
+
.mcq5gaun{border-top:4px solid transparent}
|
|
203
|
+
.mkjmy6nk{border-top:2px solid var(--panel-header-background)}
|
|
204
|
+
.mug5vpb7{border-top:1px solid var(--border-panel)}
|
|
205
|
+
.n7quhhxz{border-top:2px solid var(--background-default-active)}
|
|
206
|
+
.n8n2xqzm{border-bottom:1px solid var(--border-stronger)}
|
|
207
|
+
html:not([dir='rtl']) .na7ur5ty{border-right:1px solid var(--icon-disabled)}
|
|
208
|
+
html[dir='rtl'] .na7ur5ty{border-left:1px solid var(--icon-disabled)}
|
|
209
|
+
.nqo088zx{border-bottom:2px solid rgba(var(--inverse-rgb),.1)}
|
|
210
|
+
html:not([dir='rtl']) .nsmrnv0a{border-left:none}
|
|
211
|
+
html[dir='rtl'] .nsmrnv0a{border-right:none}
|
|
212
|
+
html:not([dir='rtl']) .o6q0nafl{border-left:2px solid var(--panel-header-background)}
|
|
213
|
+
html[dir='rtl'] .o6q0nafl{border-right:2px solid var(--panel-header-background)}
|
|
214
|
+
html:not([dir='rtl']) .o872nhkh{border-left:4px solid var(--wallpaper-thumb-border-hover)}
|
|
215
|
+
html[dir='rtl'] .o872nhkh{border-right:4px solid var(--wallpaper-thumb-border-hover)}
|
|
216
|
+
html:not([dir='rtl']) .o8ek0a1j{border-left:2px solid #fff}
|
|
217
|
+
html[dir='rtl'] .o8ek0a1j{border-right:2px solid #fff}
|
|
218
|
+
.ob9ouq0z{border-bottom:1px solid var(--border-strong)}
|
|
219
|
+
.omlynucm{border-top:2px solid #fff}
|
|
220
|
+
.oosapc3q{border-top:1px solid var(--border-strong)}
|
|
221
|
+
.opq9nt8f{border-bottom:5px dashed var(--attach-media-drop-border)}
|
|
222
|
+
html:not([dir='rtl']) .ou0nhrxb{border-left:2px solid var(--background-default)}
|
|
223
|
+
html[dir='rtl'] .ou0nhrxb{border-right:2px solid var(--background-default)}
|
|
224
|
+
html:not([dir='rtl']) .p6ubcsnv{border-right:1px solid var(--reactions-bubble-border)}
|
|
225
|
+
html[dir='rtl'] .p6ubcsnv{border-left:1px solid var(--reactions-bubble-border)}
|
|
226
|
+
html:not([dir='rtl']) .pdo9fnbd{border-right:1px solid var(--border-stronger)}
|
|
227
|
+
html[dir='rtl'] .pdo9fnbd{border-left:1px solid var(--border-stronger)}
|
|
228
|
+
html:not([dir='rtl']) .popit0kw{border-right:4px solid var(--thumb-border-viewer-active)}
|
|
229
|
+
html[dir='rtl'] .popit0kw{border-left:4px solid var(--thumb-border-viewer-active)}
|
|
230
|
+
html:not([dir='rtl']) .ppgl3mp3{border-right:2px solid var(--modal-background)}
|
|
231
|
+
html[dir='rtl'] .ppgl3mp3{border-left:2px solid var(--modal-background)}
|
|
232
|
+
.q0ohlrvj{border-right:2px solid var(--checkbox-mark)}
|
|
233
|
+
html:not([dir='rtl']) .q1alctvk{border-right:1px solid var(--ptt-draft-waveform-background-border)}
|
|
234
|
+
html[dir='rtl'] .q1alctvk{border-left:1px solid var(--ptt-draft-waveform-background-border)}
|
|
235
|
+
html:not([dir='rtl']) .q2i1o5qz{border-right:unset}
|
|
236
|
+
html[dir='rtl'] .q2i1o5qz{border-left:unset}
|
|
237
|
+
html:not([dir='rtl']) .q49csmvs{border-right:1px solid var(--sticker-button-background)}
|
|
238
|
+
html[dir='rtl'] .q49csmvs{border-left:1px solid var(--sticker-button-background)}
|
|
239
|
+
.q4zabkcz{border-top:none}
|
|
240
|
+
html:not([dir='rtl']) .q568nw76{border-left:1px solid var(--ptt-draft-waveform-background-border)}
|
|
241
|
+
html[dir='rtl'] .q568nw76{border-right:1px solid var(--ptt-draft-waveform-background-border)}
|
|
242
|
+
.qd2jueek{border-top:2px solid rgba(var(--inverse-rgb),.1)}
|
|
243
|
+
html:not([dir='rtl']) .qdxezjgn{border-left:2px solid var(--background-default-active)}
|
|
244
|
+
html[dir='rtl'] .qdxezjgn{border-right:2px solid var(--background-default-active)}
|
|
245
|
+
.qj9nvfuq{border-bottom:1px solid var(----border-stronger)}
|
|
246
|
+
.qldwl5fi{border-bottom:4px solid var(--active-tab-marker)}
|
|
247
|
+
.qmxv8cnq{border-bottom:1px solid var(--border-list)}
|
|
248
|
+
html:not([dir='rtl']) .qqik71jn{border-left:1px solid var(--reactions-bubble-border)}
|
|
249
|
+
html[dir='rtl'] .qqik71jn{border-right:1px solid var(--reactions-bubble-border)}
|
|
250
|
+
html:not([dir='rtl']) .qrr5pbl4{border-left:4px solid var(--thumb-border-viewer-active)}
|
|
251
|
+
html[dir='rtl'] .qrr5pbl4{border-right:4px solid var(--thumb-border-viewer-active)}
|
|
252
|
+
html:not([dir='rtl']) .qv8mjgpu{border-right:2px solid rgba(var(--shadow-rgb),.01)}
|
|
253
|
+
html[dir='rtl'] .qv8mjgpu{border-left:2px solid rgba(var(--shadow-rgb),.01)}
|
|
254
|
+
.r40aedaz{border-bottom:unset}
|
|
255
|
+
.rhlnfygg{border-bottom:2px solid rgba(var(--shadow-rgb),.01)}
|
|
256
|
+
.rj102gmn{border-top:1px solid rgba(var(--white-rgb),.15)}
|
|
257
|
+
html:not([dir='rtl']) .rkx1utm6{border-left:1px solid white}
|
|
258
|
+
html[dir='rtl'] .rkx1utm6{border-right:1px solid white}
|
|
259
|
+
.rom324v9{border-top:1px solid var(--icon-disabled)}
|
|
260
|
+
.s2jbbbom{border-bottom:4px solid var(--wallpaper-thumb-border-hover)}
|
|
261
|
+
html:not([dir='rtl']) .s6gr8jre{border-right:4px solid var(--wallpaper-thumb-border-hover)}
|
|
262
|
+
html[dir='rtl'] .s6gr8jre{border-left:4px solid var(--wallpaper-thumb-border-hover)}
|
|
263
|
+
.se50n2qd{border-bottom:2px solid #fff}
|
|
264
|
+
.sh1gyqlg{border-bottom:2px solid var(--background-default-active)}
|
|
265
|
+
html:not([dir='rtl']) .sngpozrj{border-right:2px solid var(--icon-disabled)}
|
|
266
|
+
html[dir='rtl'] .sngpozrj{border-left:2px solid var(--icon-disabled)}
|
|
267
|
+
.swyb62mu{border-top:1px solid var(--border-list)}
|
|
268
|
+
.te2w76pw{border-top:2px solid var(--background-default)}
|
|
269
|
+
.tf4adjai{border-bottom:1px solid var(--gray-200)}
|
|
270
|
+
html:not([dir='rtl']) .tfeq9cll{border-right:4px solid var(--wallpaper-thumb-border-active)}
|
|
271
|
+
html[dir='rtl'] .tfeq9cll{border-left:4px solid var(--wallpaper-thumb-border-active)}
|
|
272
|
+
.thn59n0e{border-bottom:none}
|
|
273
|
+
html:not([dir='rtl']) .tntx47yo{border-left:1px solid var(--border-strong)}
|
|
274
|
+
html[dir='rtl'] .tntx47yo{border-right:1px solid var(--border-strong)}
|
|
275
|
+
.tpkuw0xv{border-top:4px solid var(--blue-light)}
|
|
276
|
+
html:not([dir='rtl']) .tqxyxngt{border-left:1px solid var(--sticker-button-background)}
|
|
277
|
+
html[dir='rtl'] .tqxyxngt{border-right:1px solid var(--sticker-button-background)}
|
|
278
|
+
html:not([dir='rtl']) .aaf8t3t8{border-right-color:#8696A0}
|
|
279
|
+
html[dir='rtl'] .aaf8t3t8{border-left-color:#8696A0}
|
|
280
|
+
html:not([dir='rtl']) .afj3pimr{border-right-width:8px}
|
|
281
|
+
html[dir='rtl'] .afj3pimr{border-left-width:8px}
|
|
282
|
+
html:not([dir='rtl']) .al6evcnd{border-right-color:var(--poll-checkbox-default-border-color-sender)}
|
|
283
|
+
html[dir='rtl'] .al6evcnd{border-left-color:var(--poll-checkbox-default-border-color-sender)}
|
|
284
|
+
html:not([dir='rtl']) .ayqm650w{border-right-color:var(--thumb-border-active)}
|
|
285
|
+
html[dir='rtl'] .ayqm650w{border-left-color:var(--thumb-border-active)}
|
|
286
|
+
.azxge7i2{border-top-color:var(--poll-bar-fill-receiver)}
|
|
287
|
+
html:not([dir='rtl']) .b70p9lzv{border-left-color:var(--poll-checkmark-sender)}
|
|
288
|
+
html[dir='rtl'] .b70p9lzv{border-right-color:var(--poll-checkmark-sender)}
|
|
289
|
+
html:not([dir='rtl']) .bau1qttc{border-right-color:transparent}
|
|
290
|
+
html[dir='rtl'] .bau1qttc{border-left-color:transparent}
|
|
291
|
+
html:not([dir='rtl']) .bbryylkj{border-right-color:var(--chat-marker-border)}
|
|
292
|
+
html[dir='rtl'] .bbryylkj{border-left-color:var(--chat-marker-border)}
|
|
293
|
+
html:not([dir='rtl']) .boshimb4{border-right-color:var(--compose-input-border)}
|
|
294
|
+
html[dir='rtl'] .boshimb4{border-left-color:var(--compose-input-border)}
|
|
295
|
+
html:not([dir='rtl']) .br6oik82{border-left-color:var(--checkbox-background)}
|
|
296
|
+
html[dir='rtl'] .br6oik82{border-right-color:var(--checkbox-background)}
|
|
297
|
+
.brlum6w4{border-bottom-color:var(--poll-bar-fill-sender)}
|
|
298
|
+
.bw1ke36e{border-top-color:var(--poll-invalid-warning-border-receiver)}
|
|
299
|
+
.c30xqvpq{border-top-width:8px}
|
|
300
|
+
html:not([dir='rtl']) .cayimkie{border-left-color:var(--chat-marker-border)}
|
|
301
|
+
html[dir='rtl'] .cayimkie{border-right-color:var(--chat-marker-border)}
|
|
302
|
+
.cb1qetwp{border-top-color:var(--poll-checkbox-default-border-color-sender)}
|
|
303
|
+
html:not([dir='rtl']) .ccjuay6o{border-left-color:var(--poll-checkbox-default-border-color-sender)}
|
|
304
|
+
html[dir='rtl'] .ccjuay6o{border-right-color:var(--poll-checkbox-default-border-color-sender)}
|
|
305
|
+
html:not([dir='rtl']) .cfczyq4y{border-right-color:var(--button-background-disabled)}
|
|
306
|
+
html[dir='rtl'] .cfczyq4y{border-left-color:var(--button-background-disabled)}
|
|
307
|
+
.cmcp1to6{border-bottom-style:solid}
|
|
308
|
+
html:not([dir='rtl']) .cot8q50n{border-right-color:var(--poll-invalid-warning-border-receiver)}
|
|
309
|
+
html[dir='rtl'] .cot8q50n{border-left-color:var(--poll-invalid-warning-border-receiver)}
|
|
310
|
+
html:not([dir='rtl']) .czqm0sgq{border-left-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
311
|
+
html[dir='rtl'] .czqm0sgq{border-right-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
312
|
+
.d1poss59{border-top-style:solid}
|
|
313
|
+
.defngil2{border-top-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
314
|
+
.dqiebsww{border-bottom-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
315
|
+
html:not([dir='rtl']) .e6y86myk{border-left-width:8px}
|
|
316
|
+
html[dir='rtl'] .e6y86myk{border-right-width:8px}
|
|
317
|
+
html:not([dir='rtl']) .e932eind{border-left-color:transparent}
|
|
318
|
+
html[dir='rtl'] .e932eind{border-right-color:transparent}
|
|
319
|
+
html:not([dir='rtl']) .eg0col54{border-left-style:solid}
|
|
320
|
+
html[dir='rtl'] .eg0col54{border-right-style:solid}
|
|
321
|
+
html:not([dir='rtl']) .emi0afa8{border-right-color:var(--poll-invalid-warning-border-sender)}
|
|
322
|
+
html[dir='rtl'] .emi0afa8{border-left-color:var(--poll-invalid-warning-border-sender)}
|
|
323
|
+
html:not([dir='rtl']) .ffk547it{border-right-color:var(--archived-chat-marker-border)}
|
|
324
|
+
html[dir='rtl'] .ffk547it{border-left-color:var(--archived-chat-marker-border)}
|
|
325
|
+
.fkk8pyer{border-bottom-color:var(--button-background-disabled)}
|
|
326
|
+
.fl2x09zf{border-top-width:0}
|
|
327
|
+
html:not([dir='rtl']) .g4qqiwrf{border-left-color:var(--archived-chat-marker-border)}
|
|
328
|
+
html[dir='rtl'] .g4qqiwrf{border-right-color:var(--archived-chat-marker-border)}
|
|
329
|
+
html:not([dir='rtl']) .g6apb8n0{border-left-color:var(--button-background-disabled)}
|
|
330
|
+
html[dir='rtl'] .g6apb8n0{border-right-color:var(--button-background-disabled)}
|
|
331
|
+
.gd2nkthe{border-top-color:var(--archived-chat-marker-border)}
|
|
332
|
+
.gik13rpp{border-top-color:var(--poll-bar-fill-sender)}
|
|
333
|
+
.gofg5ll1{border-top-width:1px}
|
|
334
|
+
html:not([dir='rtl']) .gwvgr1ja{border-right-width:.5px}
|
|
335
|
+
html[dir='rtl'] .gwvgr1ja{border-left-width:.5px}
|
|
336
|
+
html:not([dir='rtl']) .gyj32ejw{border-right-style:solid}
|
|
337
|
+
html[dir='rtl'] .gyj32ejw{border-left-style:solid}
|
|
338
|
+
.h27iupyh{border-bottom-color:transparent}
|
|
339
|
+
.hdjlbwd0{border-bottom-width:8px}
|
|
340
|
+
.i2ep37lh{border-top-color:var(--poll-checkmark-receiver)}
|
|
341
|
+
html:not([dir='rtl']) .i7b7jz71{border-left-color:var(--poll-checkmark-receiver)}
|
|
342
|
+
html[dir='rtl'] .i7b7jz71{border-right-color:var(--poll-checkmark-receiver)}
|
|
343
|
+
.icn0nyel{border-top-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
344
|
+
html:not([dir='rtl']) .iv7mupbu{border-right-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
345
|
+
html[dir='rtl'] .iv7mupbu{border-left-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
346
|
+
.j8n3wzpc{border-bottom-color:var(--poll-invalid-warning-border-receiver)}
|
|
347
|
+
html:not([dir='rtl']) .jy0rc3ak{border-left-color:var(--compose-input-border)}
|
|
348
|
+
html[dir='rtl'] .jy0rc3ak{border-right-color:var(--compose-input-border)}
|
|
349
|
+
.ky8osgiz{border-top-color:transparent}
|
|
350
|
+
.l2vfukj0{border-bottom-color:var(--poll-bar-fill-receiver)}
|
|
351
|
+
html:not([dir='rtl']) .ldwklxfk{border-left-width:.5px}
|
|
352
|
+
html[dir='rtl'] .ldwklxfk{border-right-width:.5px}
|
|
353
|
+
html:not([dir='rtl']) .lq03rdsz{border-left-color:var(--poll-invalid-warning-border-sender)}
|
|
354
|
+
html[dir='rtl'] .lq03rdsz{border-right-color:var(--poll-invalid-warning-border-sender)}
|
|
355
|
+
html:not([dir='rtl']) .lr2nq6lc{border-left-width:0}
|
|
356
|
+
html[dir='rtl'] .lr2nq6lc{border-right-width:0}
|
|
357
|
+
.ltplle4q{border-bottom-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
358
|
+
.lw07f11l{border-bottom-color:var(--compose-input-border)}
|
|
359
|
+
.lzkf35j0{border-bottom-color:var(--poll-checkbox-default-border-color-sender)}
|
|
360
|
+
html:not([dir='rtl']) .mftvbulq{border-right-color:var(--poll-checkmark-sender)}
|
|
361
|
+
html[dir='rtl'] .mftvbulq{border-left-color:var(--poll-checkmark-sender)}
|
|
362
|
+
html:not([dir='rtl']) .mzoqfcbu{border-left-width:1px}
|
|
363
|
+
html[dir='rtl'] .mzoqfcbu{border-right-width:1px}
|
|
364
|
+
.nncek28p{border-bottom-color:var(--checkbox-background)}
|
|
365
|
+
.nnij903c{border-bottom-width:0}
|
|
366
|
+
.o163osd1{border-top-color:var(--button-background-disabled)}
|
|
367
|
+
html:not([dir='rtl']) .o6lgiwdn{border-left-color:var(--poll-bar-fill-sender)}
|
|
368
|
+
html[dir='rtl'] .o6lgiwdn{border-right-color:var(--poll-bar-fill-sender)}
|
|
369
|
+
.oc1v1hjw{border-top-color:var(--poll-checkmark-sender)}
|
|
370
|
+
.oteuebma{border-bottom-width:1px}
|
|
371
|
+
.oyhj0yr2{border-top-color:var(--chat-marker-border)}
|
|
372
|
+
html:not([dir='rtl']) .p7waza29{border-right-width:1px}
|
|
373
|
+
html[dir='rtl'] .p7waza29{border-left-width:1px}
|
|
374
|
+
.pvtpfg0c{border-bottom-color:var(--poll-checkmark-receiver)}
|
|
375
|
+
html:not([dir='rtl']) .pwi4tpqv{border-left-color:var(--poll-bar-fill-receiver)}
|
|
376
|
+
html[dir='rtl'] .pwi4tpqv{border-right-color:var(--poll-bar-fill-receiver)}
|
|
377
|
+
.pxy3fndx{border-top-color:var(--poll-invalid-warning-border-sender)}
|
|
378
|
+
html:not([dir='rtl']) .q645k7dr{border-right-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
379
|
+
html[dir='rtl'] .q645k7dr{border-left-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
380
|
+
html:not([dir='rtl']) .q8kvkxy1{border-left-color:var(--thumb-border-active)}
|
|
381
|
+
html[dir='rtl'] .q8kvkxy1{border-right-color:var(--thumb-border-active)}
|
|
382
|
+
.qei0rtf7{border-top-color:var(--checkbox-background)}
|
|
383
|
+
html:not([dir='rtl']) .quedrkhz{border-right-color:var(--poll-bar-fill-sender)}
|
|
384
|
+
html[dir='rtl'] .quedrkhz{border-left-color:var(--poll-bar-fill-sender)}
|
|
385
|
+
html:not([dir='rtl']) .r2wk4q3o{border-right-width:0}
|
|
386
|
+
html[dir='rtl'] .r2wk4q3o{border-left-width:0}
|
|
387
|
+
html:not([dir='rtl']) .rey418v5{border-right-color:var(--poll-bar-fill-receiver)}
|
|
388
|
+
html[dir='rtl'] .rey418v5{border-left-color:var(--poll-bar-fill-receiver)}
|
|
389
|
+
html:not([dir='rtl']) .rgg6xpk2{border-left-color:var(--poll-invalid-warning-border-receiver)}
|
|
390
|
+
html[dir='rtl'] .rgg6xpk2{border-right-color:var(--poll-invalid-warning-border-receiver)}
|
|
391
|
+
.rgw1ykpw{border-bottom-color:var(--poll-checkmark-sender)}
|
|
392
|
+
.rlosfh74{border-bottom-color:#8696A0}
|
|
393
|
+
.ronchshs{border-bottom-color:var(--poll-invalid-warning-border-sender)}
|
|
394
|
+
.rqga0wu5{border-top-color:var(--thumb-border-active)}
|
|
395
|
+
.rr3sdg1y{border-top-color:#8696A0}
|
|
396
|
+
.rsltai19{border-top-color:var(--compose-input-border)}
|
|
397
|
+
html:not([dir='rtl']) .s6krxjcp{border-left-color:#8696A0}
|
|
398
|
+
html[dir='rtl'] .s6krxjcp{border-right-color:#8696A0}
|
|
399
|
+
html:not([dir='rtl']) .s9q6xkrg{border-right-color:var(--poll-checkmark-receiver)}
|
|
400
|
+
html[dir='rtl'] .s9q6xkrg{border-left-color:var(--poll-checkmark-receiver)}
|
|
401
|
+
.s9qlqkcs{border-bottom-color:var(--archived-chat-marker-border)}
|
|
402
|
+
.sb46ev41{border-bottom-color:var(--thumb-border-active)}
|
|
403
|
+
html:not([dir='rtl']) .toeh7gh7{border-right-color:var(--checkbox-background)}
|
|
404
|
+
html[dir='rtl'] .toeh7gh7{border-left-color:var(--checkbox-background)}
|
|
405
|
+
.tus15p9f{border-bottom-color:var(--chat-marker-border)}
|
|
406
|
+
html:not([dir='rtl']) .uqagbp64{border-left-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
407
|
+
html[dir='rtl'] .uqagbp64{border-right-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
408
|
+
html:not([dir='rtl']) .a0vc5f8u{border-bottom-left-radius:0}
|
|
409
|
+
html[dir='rtl'] .a0vc5f8u{border-bottom-right-radius:0}
|
|
410
|
+
.a15vwmim{padding-bottom:1px}
|
|
411
|
+
.a21kwdn3{animation-fill-mode:forwards}
|
|
412
|
+
.a2hqsskl{width:28px}
|
|
413
|
+
.a2zl6d5m{height:212px}
|
|
414
|
+
.a3i62pwv{animation-name:dnba9ujq-B}
|
|
415
|
+
html:not([dir='rtl']) .a3oefunm{margin-left:10px}
|
|
416
|
+
html[dir='rtl'] .a3oefunm{margin-right:10px}
|
|
417
|
+
html:not([dir='rtl']) .a4bg1r4i{border-bottom-right-radius:100%}
|
|
418
|
+
html[dir='rtl'] .a4bg1r4i{border-bottom-left-radius:100%}
|
|
419
|
+
.a4bywxmn{padding-top:24px}
|
|
420
|
+
.a4rz4n5c{margin-top:14px}
|
|
421
|
+
html:not([dir='rtl']) .a4wbe7um{padding-left:2px!important}
|
|
422
|
+
html[dir='rtl'] .a4wbe7um{padding-right:2px!important}
|
|
423
|
+
.a4ywakfo{line-height:1.5}
|
|
424
|
+
html:not([dir='rtl']) .a57u14ck{border-top-right-radius:100%}
|
|
425
|
+
html[dir='rtl'] .a57u14ck{border-top-left-radius:100%}
|
|
426
|
+
.a5fn8qve{background-color:var(--system-message-background)}
|
|
427
|
+
html:not([dir='rtl']) .a5i9q28d{padding-right:22px}
|
|
428
|
+
html[dir='rtl'] .a5i9q28d{padding-left:22px}
|
|
429
|
+
.a5uym4to{stroke:var(--spinner-default)}
|
|
430
|
+
.a633jkfz{color:var(--panel-primary)}
|
|
431
|
+
html:not([dir='rtl']) .a6gmrtb7{margin-left:25px}
|
|
432
|
+
html[dir='rtl'] .a6gmrtb7{margin-right:25px}
|
|
433
|
+
.a6lcuizr{flex-grow:5}
|
|
434
|
+
.a6r0u4sv{color:rgba(var(--primary-strong-rgb),.35)}
|
|
435
|
+
.a70a3vn1{top:14px}
|
|
436
|
+
.a71rq12o{padding-top:18px}
|
|
437
|
+
.a906e4bh{animation-duration:.25s}
|
|
438
|
+
.a95fzlb5{--T68779821:0 0 32px rgba(var(--background-default-rgb),.95);box-shadow:0 0 32px rgba(var(--background-default-rgb),.95)}
|
|
439
|
+
.a95u9rhs{color:var(--ptt-draft-button-play-pause)}
|
|
440
|
+
html:not([dir='rtl']) .a9yjteo0{border-top-left-radius:25px}
|
|
441
|
+
html[dir='rtl'] .a9yjteo0{border-top-right-radius:25px}
|
|
442
|
+
.aa0kojfi{padding-bottom:3px}
|
|
443
|
+
.abnmhpvo{filter:drop-shadow(0 0 1px rgba(0,0,0,.4))}
|
|
444
|
+
.abox56pv{text-shadow:0 1px 2px rgba(var(--shadow-rgb),.3)}
|
|
445
|
+
html:not([dir='rtl']) .abxuf49s{padding-right:6px}
|
|
446
|
+
html[dir='rtl'] .abxuf49s{padding-left:6px}
|
|
447
|
+
.ac2vgrno{justify-content:center}
|
|
448
|
+
.ackpuwnh{right:4px}
|
|
449
|
+
html:not([dir='rtl']) .acy0weht{margin-left:var(--quote-left-margin)}
|
|
450
|
+
html[dir='rtl'] .acy0weht{margin-right:var(--quote-left-margin)}
|
|
451
|
+
.ad0o4787{stroke:var(--white)}
|
|
452
|
+
.aejjokna{box-shadow:0 0 6px rgba(0,0,0,.2)}
|
|
453
|
+
html:not([dir='rtl']) .aemtu0ky{border-bottom-left-radius:12px}
|
|
454
|
+
html[dir='rtl'] .aemtu0ky{border-bottom-right-radius:12px}
|
|
455
|
+
.af9wj70c{padding-top:40px}
|
|
456
|
+
html:not([dir='rtl']) .afb5cxhb{border-bottom-right-radius:9999px}
|
|
457
|
+
html[dir='rtl'] .afb5cxhb{border-bottom-left-radius:9999px}
|
|
458
|
+
.afo7vhit{color:rgba(var(--inverse-rgb),.32)}
|
|
459
|
+
.aft2yglh{color:var(--svg-secondary-color,var(--secondary))}
|
|
460
|
+
.ag5g9lrv{overflow-y:auto}
|
|
461
|
+
.ag95hn57{white-space:pre}
|
|
462
|
+
.aga1he8v{margin-left:28px}
|
|
463
|
+
.agi2at81{top:4px}
|
|
464
|
+
.agjvi7sf{top:15%}
|
|
465
|
+
.aik2f73q{height:120px}
|
|
466
|
+
.aiput80m{padding-bottom:10px}
|
|
467
|
+
.aiwu9bi8{opacity:.38}
|
|
468
|
+
.ajgik1ph{color:var(--icon-ack)}
|
|
469
|
+
.ajgl1lbb{cursor:pointer}
|
|
470
|
+
html:not([dir='rtl']) .ajyz1gl2{border-top-left-radius:14px}
|
|
471
|
+
html[dir='rtl'] .ajyz1gl2{border-top-right-radius:14px}
|
|
472
|
+
.akk8kuog{min-width:22px}
|
|
473
|
+
html:not([dir='rtl']) .akljc1zx{margin-left:1px}
|
|
474
|
+
html[dir='rtl'] .akljc1zx{margin-right:1px}
|
|
475
|
+
.aliwjmjd{margin-top:-8px}
|
|
476
|
+
.amaavye1{background-color:var(--background-default-hover)}
|
|
477
|
+
.amac7m9s{line-height:20}
|
|
478
|
+
.amd08ebk{box-shadow:0 1px 2px rgba(0,0,0,.09)}
|
|
479
|
+
.amgz1mtg{color:var(--label-secondary-text)}
|
|
480
|
+
.an6tjemt{z-index:var(--layer-4)}
|
|
481
|
+
html:not([dir='rtl']) .anwdwcjt{right:9px}
|
|
482
|
+
html[dir='rtl'] .anwdwcjt{left:9px}
|
|
483
|
+
.aoclmdzt{color:rgba(var(--primary-strong-rgb),.4)}
|
|
484
|
+
.aoi073rw{-webkit-box-orient:vertical}
|
|
485
|
+
html:not([dir='rtl']) .aokg6g0y{border-top-right-radius:var(--radius-bubble)}
|
|
486
|
+
html[dir='rtl'] .aokg6g0y{border-top-left-radius:var(--radius-bubble)}
|
|
487
|
+
html:not([dir='rtl']) .aoogvgrq{border-bottom-right-radius:50%}
|
|
488
|
+
html[dir='rtl'] .aoogvgrq{border-bottom-left-radius:50%}
|
|
489
|
+
html:not([dir='rtl']) .ap18qm3b{border-top-left-radius:1.1em}
|
|
490
|
+
html[dir='rtl'] .ap18qm3b{border-top-right-radius:1.1em}
|
|
491
|
+
html:not([dir='rtl']) .ap6veyk2{border-top-right-radius:5px}
|
|
492
|
+
html[dir='rtl'] .ap6veyk2{border-top-left-radius:5px}
|
|
493
|
+
.aprpv14t{text-transform:capitalize}
|
|
494
|
+
.aquyuamc{background-color:var(--teal)}
|
|
495
|
+
.ar4jf3c7{width:120px}
|
|
496
|
+
.ariinwu3{transition-property:background-color}
|
|
497
|
+
html:not([dir='rtl']) .atp9n7ve{padding-right:7px}
|
|
498
|
+
html[dir='rtl'] .atp9n7ve{padding-left:7px}
|
|
499
|
+
.atxxqlz9{z-index:1002}
|
|
500
|
+
html:not([dir='rtl']) .aumms1qt{border-bottom-left-radius:1.1em}
|
|
501
|
+
html[dir='rtl'] .aumms1qt{border-bottom-right-radius:1.1em}
|
|
502
|
+
html:not([dir='rtl']) .aumn88wd{margin-right:17px}
|
|
503
|
+
html[dir='rtl'] .aumn88wd{margin-left:17px}
|
|
504
|
+
html:not([dir='rtl']) .aurtnaek{border-top-right-radius:calc(var(--radius-app) - 1px)}
|
|
505
|
+
html[dir='rtl'] .aurtnaek{border-top-left-radius:calc(var(--radius-app) - 1px)}
|
|
506
|
+
.aus7m8kn{padding-bottom:32%}
|
|
507
|
+
.auwbiavf{min-height:var(--quoted-compose-height-full)}
|
|
508
|
+
html:not([dir='rtl']) .avk8rzj1{margin-left:-30px}
|
|
509
|
+
html[dir='rtl'] .avk8rzj1{margin-right:-30px}
|
|
510
|
+
.axi1ht8l{opacity:0}
|
|
511
|
+
.ayenx209{box-shadow:none!important}
|
|
512
|
+
.ayh9k7s5{bottom:38px}
|
|
513
|
+
html:not([dir='rtl']) .aznl1635{border-bottom-right-radius:14px}
|
|
514
|
+
html[dir='rtl'] .aznl1635{border-bottom-left-radius:14px}
|
|
515
|
+
html:not([dir='rtl']) .b021xdil{margin-right:var(--chat-spacing)}
|
|
516
|
+
html[dir='rtl'] .b021xdil{margin-left:var(--chat-spacing)}
|
|
517
|
+
.b0ssv71y{color:var(--panel-header-background)}
|
|
518
|
+
.b0ysteiu{margin-right:5px}
|
|
519
|
+
.b19fvycv{background-color:var(--modal-background)}
|
|
520
|
+
.b1iopwm6{font-family:Apple Color Emoji,-apple-system,Noto-Emoji,sans-serif}
|
|
521
|
+
.b1lctrli{height:var(--sticker-size-panel)}
|
|
522
|
+
.b1qcobdr{width:calc(100% - 40px)}
|
|
523
|
+
.b1w2sqt8{max-width:350px}
|
|
524
|
+
@keyframes b2uml6y0-B{html:not([dir='rtl']) 0%{border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;animation-timing-function:linear;}25%{border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;}28%{border-top-left-radius:45%;border-top-right-radius:45%;border-bottom-right-radius:45%;border-bottom-left-radius:45%;}34%{border-top-left-radius:43%;border-top-right-radius:43%;border-bottom-right-radius:43%;border-bottom-left-radius:43%;}43%{border-top-left-radius:26px;border-top-right-radius:26px;border-bottom-right-radius:26px;border-bottom-left-radius:26px;}62%{border-top-left-radius:28px;border-top-right-radius:28px;border-bottom-right-radius:28px;border-bottom-left-radius:28px;}100%{border-top-left-radius:30px;border-top-right-radius:30px;border-bottom-right-radius:30px;border-bottom-left-radius:30px;}}
|
|
525
|
+
@keyframes b2uml6y0-B{html[dir='rtl'] 0%{border-top-right-radius:50%;border-top-left-radius:50%;border-bottom-left-radius:50%;border-bottom-right-radius:50%;animation-timing-function:linear;}25%{border-top-right-radius:50%;border-top-left-radius:50%;border-bottom-left-radius:50%;border-bottom-right-radius:50%;}28%{border-top-right-radius:45%;border-top-left-radius:45%;border-bottom-left-radius:45%;border-bottom-right-radius:45%;}34%{border-top-right-radius:43%;border-top-left-radius:43%;border-bottom-left-radius:43%;border-bottom-right-radius:43%;}43%{border-top-right-radius:26px;border-top-left-radius:26px;border-bottom-left-radius:26px;border-bottom-right-radius:26px;}62%{border-top-right-radius:28px;border-top-left-radius:28px;border-bottom-left-radius:28px;border-bottom-right-radius:28px;}100%{border-top-right-radius:30px;border-top-left-radius:30px;border-bottom-left-radius:30px;border-bottom-right-radius:30px;}}
|
|
526
|
+
.b3di99y3{filter:none}
|
|
527
|
+
html:not([dir='rtl']) .b4u6kxhc{right:6px}
|
|
528
|
+
html[dir='rtl'] .b4u6kxhc{left:6px}
|
|
529
|
+
.b6f1x6w7{word-wrap:break-word}
|
|
530
|
+
@keyframes b6khuor9-B{0%{transform:scale3d(0,0,0);}100%{transform:scale3d(1,1,1);}}
|
|
531
|
+
.b6qzmhfs{width:50px}
|
|
532
|
+
.b6vz4lkg{width:93px}
|
|
533
|
+
.b6yx6y2g{left:calc(-1 * var(--blur-radius-thumbnail))}
|
|
534
|
+
.b73q89nx{animation-name:bz1wtss1-B}
|
|
535
|
+
html:not([dir='rtl']) .b7dpvuw3{padding-right:var(--padding-drawer-side)}
|
|
536
|
+
html[dir='rtl'] .b7dpvuw3{padding-left:var(--padding-drawer-side)}
|
|
537
|
+
.b7n2qyd4{padding-top:12px}
|
|
538
|
+
.b82nm36r{height:65px}
|
|
539
|
+
.b8cdf3jl{padding-top:28px}
|
|
540
|
+
.b8z6cu80{width:31%}
|
|
541
|
+
.b97gdkd1{padding-top:19.5px}
|
|
542
|
+
.b9fczbqn{z-index:2}
|
|
543
|
+
.b9l0eqez{margin-top:1px}
|
|
544
|
+
.ba1bgrqy{max-width:417px}
|
|
545
|
+
.ba95y10t{top:19px}
|
|
546
|
+
.baeo9xnf{width:36px}
|
|
547
|
+
.baku5n5n{color:var(--button-disabled)}
|
|
548
|
+
.bar07sny{min-width:var(--thumb-width)}
|
|
549
|
+
.bavixdlz{padding-bottom:13px}
|
|
550
|
+
.bay3hw0d{padding-top:27px}
|
|
551
|
+
.bbl9m3t3{height:0}
|
|
552
|
+
.bbp2hc0k{width:4px}
|
|
553
|
+
html:not([dir='rtl']) .bbr44loe{border-top-left-radius:8px}
|
|
554
|
+
html[dir='rtl'] .bbr44loe{border-top-right-radius:8px}
|
|
555
|
+
html:not([dir='rtl']) .bbs9k8l5{border-bottom-left-radius:18px}
|
|
556
|
+
html[dir='rtl'] .bbs9k8l5{border-bottom-right-radius:18px}
|
|
557
|
+
.bbv8nyr4{white-space:pre-wrap}
|
|
558
|
+
.bc38n4nm{color:var(--cart-interstitial-icon)}
|
|
559
|
+
html:not([dir='rtl']) .bcfko8ch{margin-right:32px}
|
|
560
|
+
html[dir='rtl'] .bcfko8ch{margin-left:32px}
|
|
561
|
+
.bck672cy{height:38px!important}
|
|
562
|
+
.bcr6az0x{font-weight:300}
|
|
563
|
+
html:not([dir='rtl']) .bcymb0na{padding-right:30px}
|
|
564
|
+
html[dir='rtl'] .bcymb0na{padding-left:30px}
|
|
565
|
+
.bd96tnyg{image-rendering:-webkit-optimize-contrast!important}
|
|
566
|
+
html:not([dir='rtl']) .bdbt56hn{padding-left:4px}
|
|
567
|
+
html[dir='rtl'] .bdbt56hn{padding-right:4px}
|
|
568
|
+
.bddvio20{margin-top:25px}
|
|
569
|
+
.bej5yntv{animation-timing-function:easeOutCubic}
|
|
570
|
+
.bfbxj8tr{right:8px}
|
|
571
|
+
html:not([dir='rtl']) .bfic5nuo{margin-left:75px}
|
|
572
|
+
html[dir='rtl'] .bfic5nuo{margin-right:75px}
|
|
573
|
+
.bfvdtf1u{animation-name:ge0l3a7l-B}
|
|
574
|
+
.bgigc5s4{z-index:var(--layer-8)}
|
|
575
|
+
.bgtrvtbx{padding-bottom:var(--blur-radius-thumbnail)}
|
|
576
|
+
html:not([dir='rtl']) .bi2mdrpt{border-top-left-radius:0}
|
|
577
|
+
html[dir='rtl'] .bi2mdrpt{border-top-right-radius:0}
|
|
578
|
+
.bibl1e27{margin-bottom:28px}
|
|
579
|
+
html:not([dir='rtl']) .bj4p3wqc{border-bottom-left-radius:60px}
|
|
580
|
+
html[dir='rtl'] .bj4p3wqc{border-bottom-right-radius:60px}
|
|
581
|
+
.bjmq0orh{font-size:.90625rem}
|
|
582
|
+
.bk1nl7o2{flex-grow:4}
|
|
583
|
+
.bk9ojlrj{color:var(--avatar-circle-gray)}
|
|
584
|
+
.bkifpc9x{transition-timing-function:ease-out}
|
|
585
|
+
.bkoknyjm{max-width:calc(var(--width-msg-bubble-with-media) - 6px)}
|
|
586
|
+
.blj1rie1{bottom:4px}
|
|
587
|
+
html:not([dir='rtl']) .bmj4fdax{padding-left:1.25em}
|
|
588
|
+
html[dir='rtl'] .bmj4fdax{padding-right:1.25em}
|
|
589
|
+
.bmot90v7{height:24px}
|
|
590
|
+
.bn05jr7j{cursor:zoom-in}
|
|
591
|
+
.bn27j4ou{background-color:var(--button-primary-background)}
|
|
592
|
+
.bn7x0pqn{margin-bottom:-5px}
|
|
593
|
+
.bntscc16{background-color:var(--outgoing-background)}
|
|
594
|
+
.bo8jc6qi{transition-property:transform}
|
|
595
|
+
html:not([dir='rtl']) .boajuire{border-top-left-radius:3px}
|
|
596
|
+
html[dir='rtl'] .boajuire{border-top-right-radius:3px}
|
|
597
|
+
.boenfpwf{width:90%}
|
|
598
|
+
.bot80yxp{color:var(--product-thumb-overlay-text)}
|
|
599
|
+
.bpanfbxe{width:104px}
|
|
600
|
+
.bq39o27w{background-color:rgba(var(--progress-primary-rgb),.6)}
|
|
601
|
+
.bqmxb3s7{top:16px}
|
|
602
|
+
html:not([dir='rtl']) .bqysl6j9{border-bottom-left-radius:4px}
|
|
603
|
+
html[dir='rtl'] .bqysl6j9{border-bottom-right-radius:4px}
|
|
604
|
+
.brac1wpa{margin-bottom:10px}
|
|
605
|
+
.brh521k9{opacity:.7}
|
|
606
|
+
.brqbuz94{height:49px}
|
|
607
|
+
.bs7a17vp{opacity:1}
|
|
608
|
+
.bsd0t79a{color:var(--ptt-draft-button-play-pause-out-of-chat)}
|
|
609
|
+
html:not([dir='rtl']) .bsg2wrd4{margin-right:-20px}
|
|
610
|
+
html[dir='rtl'] .bsg2wrd4{margin-left:-20px}
|
|
611
|
+
.bsih0in0{height:58px}
|
|
612
|
+
.bsvz8e3l{line-height:1.3333}
|
|
613
|
+
.btb1m7bk{display:grid}
|
|
614
|
+
.btzd6xh9{direction:ltr}
|
|
615
|
+
html:not([dir='rtl']) .btzf6ewn{padding-right:12px}
|
|
616
|
+
html[dir='rtl'] .btzf6ewn{padding-left:12px}
|
|
617
|
+
html:not([dir='rtl']) .bugiwsl0{margin-right:8px}
|
|
618
|
+
html[dir='rtl'] .bugiwsl0{margin-left:8px}
|
|
619
|
+
html:not([dir='rtl']) .bv1sdm6y{margin-left:20px}
|
|
620
|
+
html[dir='rtl'] .bv1sdm6y{margin-right:20px}
|
|
621
|
+
.bvcnfjzh{height:auto}
|
|
622
|
+
.bvgz89zs{stroke-linecap:round}
|
|
623
|
+
.bvhm1occ{margin-bottom:30px}
|
|
624
|
+
.bvyb7wbk{line-height:11px}
|
|
625
|
+
.bvz86wrv{min-width:49px}
|
|
626
|
+
.bw3xoias{color:rgba(var(--inverse-rgb),.85)}
|
|
627
|
+
html:not([dir='rtl']) .bx0vhl82{margin-left:-2px}
|
|
628
|
+
html[dir='rtl'] .bx0vhl82{margin-right:-2px}
|
|
629
|
+
@keyframes bx6fce78-B{0%{opacity:0;transform:translateY(-50px);}30%{opacity:0;transform:translateY(-50px);}100%{opacity:1;transform:translateY(0);}}
|
|
630
|
+
.bx7g2weo{cursor:default}
|
|
631
|
+
.bxcbqipq{padding-bottom:5px}
|
|
632
|
+
.byg5ndfj{padding-top:32px}
|
|
633
|
+
.byvcucqk{min-width:40px}
|
|
634
|
+
@keyframes bz1wtss1-B{0%{top:9px;left:6px;width:0;height:0;}100%{top:-1px;left:4px;width:5px;height:10px;}}
|
|
635
|
+
.bz50z0yh{max-width:258px}
|
|
636
|
+
.bzb0giyb{top:100px}
|
|
637
|
+
.bze30y65{font-size:0.9375rem}
|
|
638
|
+
.c0uhu3dl{padding-bottom:.4em}
|
|
639
|
+
.c1gtxk6a{width:432px}
|
|
640
|
+
.c2jc77nu{white-space:initial}
|
|
641
|
+
.c32ccnay{display:-webkit-box}
|
|
642
|
+
.c3gfj3cx{background-color:var(--overlay)}
|
|
643
|
+
.c46o30wg{margin-top:20px}
|
|
644
|
+
.c4c7fvpi{max-height:calc(var(--line-height-quoted) * 2)}
|
|
645
|
+
.c4f797jd{line-height:13px}
|
|
646
|
+
.c59meja3{min-width:35px}
|
|
647
|
+
html:not([dir='rtl']) .c5wy1lv0{border-bottom-right-radius:4px}
|
|
648
|
+
html[dir='rtl'] .c5wy1lv0{border-bottom-left-radius:4px}
|
|
649
|
+
.c5zpj14d{bottom:100%}
|
|
650
|
+
.c6axuxzh{margin-top:11px}
|
|
651
|
+
.c6qoq7mr{max-width:400px}
|
|
652
|
+
.c8nijwnu{background-position-y:center}
|
|
653
|
+
.c97dh06e{width:3px}
|
|
654
|
+
.cats8p75{opacity:.55}
|
|
655
|
+
.cb8ormfa{text-align:right}
|
|
656
|
+
.cbjz30lg{max-width:330px}
|
|
657
|
+
.cbqxid7y{height:85%}
|
|
658
|
+
.cc4ue8kt{color:var(--icon-pinned)}
|
|
659
|
+
.cca4rwve{position:-webkit-sticky;position:sticky}
|
|
660
|
+
.cctpw5f5{height:500px}
|
|
661
|
+
html:not([dir='rtl']) .cdp1hot0{left:42px}
|
|
662
|
+
html[dir='rtl'] .cdp1hot0{right:42px}
|
|
663
|
+
.ce5kru2g{color:var(--reactions-bubble-counter)}
|
|
664
|
+
.ceoseaut{background-color:black}
|
|
665
|
+
.cf2oroyo{max-width:var(--width-video-portrait-bubble)}
|
|
666
|
+
.cfhfab5z{fill:currentColor}
|
|
667
|
+
.cfzgl7ar{min-width:.9em}
|
|
668
|
+
.cgbgrqfg{top:70px}
|
|
669
|
+
html:not([dir='rtl']) .cgpjrhzi{margin-right:6.5px}
|
|
670
|
+
html[dir='rtl'] .cgpjrhzi{margin-left:6.5px}
|
|
671
|
+
html:not([dir='rtl']) .cheugonp{left:10px}
|
|
672
|
+
html[dir='rtl'] .cheugonp{right:10px}
|
|
673
|
+
html:not([dir='rtl']) .chuyt2sy{padding-left:11px}
|
|
674
|
+
html[dir='rtl'] .chuyt2sy{padding-right:11px}
|
|
675
|
+
html:not([dir='rtl']) .chvde1w8{padding-right:108px}
|
|
676
|
+
html[dir='rtl'] .chvde1w8{padding-left:108px}
|
|
677
|
+
.cihm0v32{padding-top:72px}
|
|
678
|
+
html:not([dir='rtl']) .citmgm7b{right:10px}
|
|
679
|
+
html[dir='rtl'] .citmgm7b{left:10px}
|
|
680
|
+
.ckm995li{padding-bottom:4px}
|
|
681
|
+
.ckq3dtew{max-width:920px}
|
|
682
|
+
.cl7oiv0o{min-height:44px}
|
|
683
|
+
html:not([dir='rtl']) .claouzo6{margin-right:6px}
|
|
684
|
+
html[dir='rtl'] .claouzo6{margin-left:6px}
|
|
685
|
+
html:not([dir='rtl']) .clw8hvz5{padding-right:calc(50% - 250px)}
|
|
686
|
+
html[dir='rtl'] .clw8hvz5{padding-left:calc(50% - 250px)}
|
|
687
|
+
.cm280p3y{box-sizing:border-box}
|
|
688
|
+
.cn2ptbqf{background-color:var(--wallpaper-background)}
|
|
689
|
+
html:not([dir='rtl']) .cnpay6qi{border-bottom-left-radius:3px}
|
|
690
|
+
html[dir='rtl'] .cnpay6qi{border-bottom-right-radius:3px}
|
|
691
|
+
.cnprk2g9{width:112px}
|
|
692
|
+
.cogk65jn{bottom:-12px}
|
|
693
|
+
.cosm3z4q{width:var(--compose-box-open-menu-width-status-reply)}
|
|
694
|
+
.cpfmwfku{transition-property:background-color,border-color}
|
|
695
|
+
html:not([dir='rtl']) .cphhpnv8{border-bottom-right-radius:var(--radius-app)}
|
|
696
|
+
html[dir='rtl'] .cphhpnv8{border-bottom-left-radius:var(--radius-app)}
|
|
697
|
+
.cpkabmy0{color:var(--pnh-nux)}
|
|
698
|
+
.cpwx3oa4{line-height:1.2727}
|
|
699
|
+
.cq4aadlz{font-size:0.5625rem}
|
|
700
|
+
.cqiun4t2{font-size:1.125rem}
|
|
701
|
+
html:not([dir='rtl']) .cqsf3vkf{border-bottom-left-radius:var(--radius-thumb)}
|
|
702
|
+
html[dir='rtl'] .cqsf3vkf{border-bottom-right-radius:var(--radius-thumb)}
|
|
703
|
+
.cqvkqxai{background-color:var(--toast-background)}
|
|
704
|
+
.cr2cog7z{line-height:15px}
|
|
705
|
+
.cr6d9hz6{transition-property:opacity}
|
|
706
|
+
.crlpoz9d{width:calc(100% - 80px)}
|
|
707
|
+
.crm5a8gb{color:var(--button-primary-background)}
|
|
708
|
+
.cs9t9or5{color:var(--icon-fixed)}
|
|
709
|
+
.csxx893n{margin-top:26px}
|
|
710
|
+
html:not([dir='rtl']) .csyx12jj{border-bottom-right-radius:12px}
|
|
711
|
+
html[dir='rtl'] .csyx12jj{border-bottom-left-radius:12px}
|
|
712
|
+
.ctdnaqea{font-size:1.375rem}
|
|
713
|
+
@keyframes ctfi49jn-B{0%{color:var(--white);}100%{background-color:rgba(var(--white-rgb),1.0);color:var(--black);}}
|
|
714
|
+
.ctv2fiom{padding-bottom:72px}
|
|
715
|
+
.cu1tgave{max-width:calc(var(--width-album-grid-bubble) - var(--width-album-extra-padding))}
|
|
716
|
+
.culzvsue{max-width:500px}
|
|
717
|
+
.cumqsjf0{background-color:var(--drawer-gallery-background)}
|
|
718
|
+
.cvsrm5e1{bottom:5px}
|
|
719
|
+
html:not([dir='rtl']) .cw0ivh8j{border-bottom-left-radius:8px}
|
|
720
|
+
html[dir='rtl'] .cw0ivh8j{border-bottom-right-radius:8px}
|
|
721
|
+
.cw3vfol9{word-break:break-word}
|
|
722
|
+
html:not([dir='rtl']) .cw6dh6i2{left:auto}
|
|
723
|
+
html[dir='rtl'] .cw6dh6i2{right:auto}
|
|
724
|
+
.cwh5h8h7{margin-bottom:90px}
|
|
725
|
+
@keyframes cwns2890-B{0%{opacity:1;}100%{opacity:0;}}
|
|
726
|
+
.cwwc04gk{color:var(--icon-strong)}
|
|
727
|
+
.cxec7x23{width:1px}
|
|
728
|
+
html:not([dir='rtl']) .cxgkfk16{border-bottom-right-radius:var(--radius-compose)}
|
|
729
|
+
html[dir='rtl'] .cxgkfk16{border-bottom-left-radius:var(--radius-compose)}
|
|
730
|
+
.cxkis295{width:25px}
|
|
731
|
+
.cy13c0w7{top:-10px}
|
|
732
|
+
.cyi0n1nm{color:var(--media-gallery-thumb-icon)}
|
|
733
|
+
html:not([dir='rtl']) .cynldqnp{border-top-left-radius:calc(var(--radius-app) + 1px)}
|
|
734
|
+
html[dir='rtl'] .cynldqnp{border-top-right-radius:calc(var(--radius-app) + 1px)}
|
|
735
|
+
.d0st09ow{width:29%}
|
|
736
|
+
.d10gensu{max-height:182px}
|
|
737
|
+
.d1gmyy70{--T68779821:0 1px 3px rgba(var(--shadow-rgb),.16);box-shadow:0 1px 3px rgba(var(--shadow-rgb),.16)}
|
|
738
|
+
html:not([dir='rtl']) .d1nvxjvo{--T68779821:inset -10px 10px 25px rgba(var(--shadow-rgb),.25);box-shadow:inset -10px 10px 25px rgba(var(--shadow-rgb),.25)}
|
|
739
|
+
html[dir='rtl'] .d1nvxjvo{--T68779821:inset 10px 10px 25px rgba(var(--shadow-rgb),.25);box-shadow:inset 10px 10px 25px rgba(var(--shadow-rgb),.25)}
|
|
740
|
+
.d1pdhp1p{height:calc(var(--compose-box-menu-height) - 2 * var(--compose-box-top-bottom-padding))}
|
|
741
|
+
.d30du0rx{text-transform:none}
|
|
742
|
+
.d30yvege{animation-name:he6jpvhu-B}
|
|
743
|
+
.d3pjxk2u{content:""}
|
|
744
|
+
.d4q9loza{background-image:linear-gradient(to bottom,rgba(var(--shadow-rgb),0) 0,rgba(var(--shadow-rgb),.002) 1.8%,rgba(var(--shadow-rgb),.006) 4.8%,rgba(var(--shadow-rgb),.016) 9%,rgba(var(--shadow-rgb),.032) 13.9%,rgba(var(--shadow-rgb),.057) 19.8%,rgba(var(--shadow-rgb),.097) 27%,rgba(var(--shadow-rgb),.149) 35%,rgba(var(--shadow-rgb),.213) 43.5%,rgba(var(--shadow-rgb),.294) 53%,rgba(var(--shadow-rgb),.416) 66%,rgba(var(--shadow-rgb),.568) 81%,rgba(var(--shadow-rgb),.769) 100%)}
|
|
745
|
+
html:not([dir='rtl']) .d4vkij7k{right:30px}
|
|
746
|
+
html[dir='rtl'] .d4vkij7k{left:30px}
|
|
747
|
+
.d53dy967{letter-spacing:1px}
|
|
748
|
+
.d53pemmv{line-height:24}
|
|
749
|
+
.d5zlj0ol{background-color:var(--media-editor-document-caption-input-background)}
|
|
750
|
+
.d6finlhe{will-change:opacity,transform}
|
|
751
|
+
html:not([dir='rtl']) .d6h2ibm4{border-top-right-radius:7px}
|
|
752
|
+
html[dir='rtl'] .d6h2ibm4{border-top-left-radius:7px}
|
|
753
|
+
.d72ibw2u{background-color:var(--poll-modal-footer-background-color)}
|
|
754
|
+
.d7kr9pz8{width:102px}
|
|
755
|
+
.d7qcm159{animation-name:e4z3xolt-B}
|
|
756
|
+
.d8ddvuix{min-width:800px}
|
|
757
|
+
@keyframes d8h0nk90-B{100%{transform:translateX(-50%);}}
|
|
758
|
+
.d9lyu8cj{height:3px}
|
|
759
|
+
.db4qzak4{height:46px}
|
|
760
|
+
.dba1p600{stroke:var(--button-primary-background)}
|
|
761
|
+
.dblt22a0{margin-bottom:16px}
|
|
762
|
+
.dbs0ofhi{top:59px}
|
|
763
|
+
html:not([dir='rtl']) .dc5qina8{border-bottom-right-radius:20px}
|
|
764
|
+
html[dir='rtl'] .dc5qina8{border-bottom-left-radius:20px}
|
|
765
|
+
.dcnh1tix{background-size:20px}
|
|
766
|
+
.ddamih75{animation-name:hisddxiu-B}
|
|
767
|
+
.ddl5anf2{background-color:var(--product-thumb-background-deeper)}
|
|
768
|
+
html:not([dir='rtl']) .ddw6s8x9{padding-left:17px}
|
|
769
|
+
html[dir='rtl'] .ddw6s8x9{padding-right:17px}
|
|
770
|
+
.de33c33s{color:var(--payment-status-pending)}
|
|
771
|
+
.delct6vn{background-position:50% 50%}
|
|
772
|
+
.dfw30kuc{-webkit-clip-path:polygon(50% 0,0 0,0 100%,50% 100%,50% 50%);clip-path:polygon(50% 0,0 0,0 100%,50% 100%,50% 50%)}
|
|
773
|
+
.dh5rsm73{width:18px}
|
|
774
|
+
@keyframes dhlqzo2r-B{0%{transform:scale3d(1,1,1);}100%{transform:scale3d(0,0,0);}}
|
|
775
|
+
.dhq51u3o{height:26px}
|
|
776
|
+
.di8pw70h{padding-bottom:88px}
|
|
777
|
+
.diqd3znl{background-color:var(--checkbox-background)}
|
|
778
|
+
.dj1c3cmq{margin-top:8px}
|
|
779
|
+
.dj32rci9{width:5px}
|
|
780
|
+
.djhxrpsl{max-height:40px}
|
|
781
|
+
html:not([dir='rtl']) .dkaqw61n{left:-10px}
|
|
782
|
+
html[dir='rtl'] .dkaqw61n{right:-10px}
|
|
783
|
+
.dkeqio29{margin-top:22px}
|
|
784
|
+
.dknb6df3{max-width:20em}
|
|
785
|
+
.dktwgxt5{letter-spacing:-0.44px}
|
|
786
|
+
html:not([dir='rtl']) .dl2ettod{margin-left:32px}
|
|
787
|
+
html[dir='rtl'] .dl2ettod{margin-right:32px}
|
|
788
|
+
html:not([dir='rtl']) .dl6j7rsh{margin-right:-30px}
|
|
789
|
+
html[dir='rtl'] .dl6j7rsh{margin-left:-30px}
|
|
790
|
+
.dld5k21c{max-width:270px}
|
|
791
|
+
.dledyozo{padding-bottom:20.5px}
|
|
792
|
+
.dlt2z1m8{width:410px}
|
|
793
|
+
.dn3ua38v{margin-top:var(--h-pane-header)}
|
|
794
|
+
.dn50c4kw{animation-duration:2.7s}
|
|
795
|
+
.dn5wc90o{min-height:16px}
|
|
796
|
+
.dnb887gk{flex-wrap:nowrap}
|
|
797
|
+
@keyframes dnba9ujq-B{0%{transform:translateX(0);}100%{transform:translateX(171.5px);}}
|
|
798
|
+
.dng4fqht{height:76px}
|
|
799
|
+
html:not([dir='rtl']) .dntxsmpk{border-top-left-radius:2px}
|
|
800
|
+
html[dir='rtl'] .dntxsmpk{border-top-right-radius:2px}
|
|
801
|
+
.do8e0lj9{color:var(--bubble-meta-icon)}
|
|
802
|
+
.dobzgj6y{animation-name:p457vbfl-B}
|
|
803
|
+
.dpkuihx7{bottom:6px}
|
|
804
|
+
.dq3evca1{width:96px}
|
|
805
|
+
.dr6m1ylk{grid-template-columns:repeat(auto-fill,var(--sticker-size-store))}
|
|
806
|
+
html:not([dir='rtl']) .druapeav{right:32px}
|
|
807
|
+
html[dir='rtl'] .druapeav{left:32px}
|
|
808
|
+
html:not([dir='rtl']) .ds60debm{margin-right:15px}
|
|
809
|
+
html[dir='rtl'] .ds60debm{margin-left:15px}
|
|
810
|
+
.dsh4tgtl{font-size:0.75rem}
|
|
811
|
+
.dte9zi8s{background-color:orange}
|
|
812
|
+
html:not([dir='rtl']) .dtx25v1e{border-bottom-left-radius:5px}
|
|
813
|
+
html[dir='rtl'] .dtx25v1e{border-bottom-right-radius:5px}
|
|
814
|
+
.du8bjn1j{margin-bottom:20px}
|
|
815
|
+
.dud78hvd{color:yellow}
|
|
816
|
+
.durt31hz{line-height:1.2308}
|
|
817
|
+
.dv18d5t9{color:var(--forwarded-indicator-text)}
|
|
818
|
+
.dwvzf427{margin-top:-2.5px}
|
|
819
|
+
.dxy1asz1{width:70px}
|
|
820
|
+
.dyxdk6fi{width:48px}
|
|
821
|
+
.e0pgnxzj{height:85px}
|
|
822
|
+
.e1gr2w1z{font-weight:normal}
|
|
823
|
+
.e1lnay39{background-image:linear-gradient(to top,rgba(var(--overlay-rgb),.5),rgba(var(--overlay-rgb),0))}
|
|
824
|
+
.e1vllz7m{color:rgba(var(--link-rgb),.9)}
|
|
825
|
+
html:not([dir='rtl']) .e1yunedv{padding-left:9px}
|
|
826
|
+
html[dir='rtl'] .e1yunedv{padding-right:9px}
|
|
827
|
+
.e2xccmyv{margin-bottom:50px}
|
|
828
|
+
.e3b81npk{transition-property:box-shadow}
|
|
829
|
+
.e3miq1pi{margin-top:32px}
|
|
830
|
+
.e3u7tipa{order:2}
|
|
831
|
+
html:not([dir='rtl']) .e3yfz9gx{border-bottom-right-radius:0}
|
|
832
|
+
html[dir='rtl'] .e3yfz9gx{border-bottom-left-radius:0}
|
|
833
|
+
.e4a3aln8{width:33px}
|
|
834
|
+
.e4eao3g2{align-items:baseline}
|
|
835
|
+
html:not([dir='rtl']) .e4n4g5wb{float:left}
|
|
836
|
+
html[dir='rtl'] .e4n4g5wb{float:right}
|
|
837
|
+
.e4p1bexh{height:15px}
|
|
838
|
+
.e4qy2s3t{line-height:1.4286}
|
|
839
|
+
@keyframes e4z3xolt-B{100%{opacity:0;}}
|
|
840
|
+
.e5nnjop8{width:330px}
|
|
841
|
+
.e5sv7owa{height:335px}
|
|
842
|
+
html:not([dir='rtl']) .e65innqk{text-align:right}
|
|
843
|
+
html[dir='rtl'] .e65innqk{text-align:left}
|
|
844
|
+
html:not([dir='rtl']) .e6ckhcgy{--T68779821:0 1px 1px 0 rgba(var(--shadow-rgb),.06),0 2px 5px 0 rgba(var(--shadow-rgb),.2);box-shadow:0 1px 1px 0 rgba(var(--shadow-rgb),.06),0 2px 5px 0 rgba(var(--shadow-rgb),.2)}
|
|
845
|
+
html[dir='rtl'] .e6ckhcgy{--T68779821:0 1px 1px 0 rgba(var(--shadow-rgb),.06), 0 2px 5px 0 rgba(var(--shadow-rgb),.2);box-shadow:0 1px 1px 0 rgba(var(--shadow-rgb),.06), 0 2px 5px 0 rgba(var(--shadow-rgb),.2)}
|
|
846
|
+
html:not([dir='rtl']) .e6ezto3k{right:1px}
|
|
847
|
+
html[dir='rtl'] .e6ezto3k{left:1px}
|
|
848
|
+
@keyframes e6ri2msi-B{100%{transform:translateX(50%);}}
|
|
849
|
+
html:not([dir='rtl']) .e6tbvuqx{border-bottom-left-radius:7px}
|
|
850
|
+
html[dir='rtl'] .e6tbvuqx{border-bottom-right-radius:7px}
|
|
851
|
+
.e7al1772{color:var(--system-message-text)}
|
|
852
|
+
.e8h85j61{height:var(--h-pane-header)}
|
|
853
|
+
html:not([dir='rtl']) .e8k79tju{padding-left:30px}
|
|
854
|
+
html[dir='rtl'] .e8k79tju{padding-right:30px}
|
|
855
|
+
.e90a4zdp{max-height:50px}
|
|
856
|
+
.e9dx81qg{width:212px}
|
|
857
|
+
.e9w3sbd1{--T68779821:0 -5px 7px -5px rgba(var(--shadow-rgb),.05);box-shadow:0 -5px 7px -5px rgba(var(--shadow-rgb),.05)}
|
|
858
|
+
.e9zg6kuq{max-width:none}
|
|
859
|
+
html:not([dir='rtl']) .eab7llgz{margin-left:2%}
|
|
860
|
+
html[dir='rtl'] .eab7llgz{margin-right:2%}
|
|
861
|
+
@keyframes easeekon-B{0%{right:100%;left:-200%;}60%{right:-8%;left:107%;}100%{right:-8%;left:107%;}}
|
|
862
|
+
.eb4rp10x{padding-bottom:6px}
|
|
863
|
+
.eb9g83lr{animation-duration:.75s}
|
|
864
|
+
html:not([dir='rtl']) .ebjesfe0{right:0}
|
|
865
|
+
html[dir='rtl'] .ebjesfe0{left:0}
|
|
866
|
+
.ebu6xrgy{opacity:.6}
|
|
867
|
+
.ec1z5skj{margin-bottom:auto}
|
|
868
|
+
.ec3rya3v{transition-property:fill-opacity}
|
|
869
|
+
html:not([dir='rtl']) .ecxr5yey{border-bottom-right-radius:calc(var(--radius-app) + 1px)}
|
|
870
|
+
html[dir='rtl'] .ecxr5yey{border-bottom-left-radius:calc(var(--radius-app) + 1px)}
|
|
871
|
+
.ecxtzlut{background-color:rgba(var(--shadow-rgb),.3)}
|
|
872
|
+
.ed316hig{color:var(--chat-marker)}
|
|
873
|
+
.edisrohx{color:var(--cell-chat-title-color,var(--primary-strong))}
|
|
874
|
+
html:not([dir='rtl']) .edqan5gp{left:26px}
|
|
875
|
+
html[dir='rtl'] .edqan5gp{right:26px}
|
|
876
|
+
.ee0xuasv{width:calc(87% + 18px)}
|
|
877
|
+
.eej3x5sv{left:-10px}
|
|
878
|
+
.ef2byrub{animation-duration:.35s}
|
|
879
|
+
.efgp0a3n{animation-timing-function:cubic-bezier(.1,.82,.25,1)}
|
|
880
|
+
.efio351b{bottom:-23px}
|
|
881
|
+
.efjhou1r{margin-right:3px}
|
|
882
|
+
.eg0stril{top:calc((var(--compose-box-menu-height) - 2 * var(--compose-box-top-bottom-padding) - 24) * .5)}
|
|
883
|
+
.eg3lofc5{margin-top:15px}
|
|
884
|
+
.egl74e4l{transition-property:opacity,height,transform,width}
|
|
885
|
+
.ehl15zf9{animation-duration:.16s}
|
|
886
|
+
.ei5e7seu{min-height:1em}
|
|
887
|
+
@keyframes eirysc09-B{0%{stroke-dasharray:1,150;stroke-dashoffset:0;}100%{stroke-dasharray:90,150;stroke-dashoffset:-124;}50%{stroke-dasharray:90,150;stroke-dashoffset:-35;}}
|
|
888
|
+
.ej3x2ktq{background-color:var(--panel-background-deeper)}
|
|
889
|
+
.ej4zaygv{transition-property:opacity,height}
|
|
890
|
+
.ekdr8vow{width:26px}
|
|
891
|
+
.ekpn4oxx{padding-bottom:12px}
|
|
892
|
+
html:not([dir='rtl']) .ekvw3o37{padding-left:var(--bubble-padding)}
|
|
893
|
+
html[dir='rtl'] .ekvw3o37{padding-right:var(--bubble-padding)}
|
|
894
|
+
.eliz2k8b{transition-duration:.14s,.14s}
|
|
895
|
+
.elxb2u3l{align-items:stretch}
|
|
896
|
+
.em2tzsnp{max-height:72px}
|
|
897
|
+
.em5jvqoa{animation-timing-function:ease-out}
|
|
898
|
+
.emqjox7q{background-color:var(--panel-background-deep)}
|
|
899
|
+
.emrlamx0{padding-top:10px}
|
|
900
|
+
html:not([dir='rtl']) .emy6cf64{padding-left:100px}
|
|
901
|
+
html[dir='rtl'] .emy6cf64{padding-right:100px}
|
|
902
|
+
html:not([dir='rtl']) .en6yos0k{right:5px}
|
|
903
|
+
html[dir='rtl'] .en6yos0k{left:5px}
|
|
904
|
+
.en8d0ozt{margin-bottom:-34px}
|
|
905
|
+
.enbbiyaj{font-size:1rem}
|
|
906
|
+
.epdck8xl{background-color:var(--photopicker-overlay-background)}
|
|
907
|
+
.epwkujcx{height:36px}
|
|
908
|
+
.eq83pvwj{color:var(--poll-button-disabled-sender)}
|
|
909
|
+
.eqlnm1ad{background-color:var(--gray-600)}
|
|
910
|
+
.ercejckq{z-index:1000}
|
|
911
|
+
.erpdyial{line-height:21px}
|
|
912
|
+
.eruf1vka{color:var(--gray-600)}
|
|
913
|
+
html:not([dir='rtl']) .es0dlo02{border-top-left-radius:var(--radius-compose)}
|
|
914
|
+
html[dir='rtl'] .es0dlo02{border-top-right-radius:var(--radius-compose)}
|
|
915
|
+
.esbfogcw{padding-top:7px}
|
|
916
|
+
.esbg2say{animation-timing-function:cubic-bezier(.45,0,.55,1),linear}
|
|
917
|
+
.etgvethi{margin-top:21.5px}
|
|
918
|
+
.eu4m05gk{opacity:.2}
|
|
919
|
+
.eujn52yf{padding-top:4px}
|
|
920
|
+
@keyframes ev8ckacf-B{100%{transform:rotate(360deg);}}
|
|
921
|
+
.evq4wxsl{background-color:var(--icon-high-emphasis)}
|
|
922
|
+
.evzurl1e{color:rgba(var(--green-deep-rgb),.7)}
|
|
923
|
+
.ew1qayco{vertical-align:-1px}
|
|
924
|
+
.ew8mgplc{display:inline}
|
|
925
|
+
.ex3gcxaf{align-self:flex-start}
|
|
926
|
+
.exvbdj68{will-change:transform}
|
|
927
|
+
.eynyaxvo{padding-bottom:50px}
|
|
928
|
+
.f09rd1o5{background-color:var(--ptt-ooc-background)}
|
|
929
|
+
.f0mh0h6e{max-height:200px}
|
|
930
|
+
.f1qlncqe{height:170px}
|
|
931
|
+
.f2o2jtpu{height:19.5px}
|
|
932
|
+
.f2yrvmhs{background-color:var(--empty-state-background)}
|
|
933
|
+
.f3a6saz0{height:var(--width-album-grid-bubble)}
|
|
934
|
+
html:not([dir='rtl']) .f459d30t{margin-left:-20px}
|
|
935
|
+
html[dir='rtl'] .f459d30t{margin-right:-20px}
|
|
936
|
+
.f4pf1esu{height:2px}
|
|
937
|
+
.f4q7vbcz{max-width:336px}
|
|
938
|
+
.f4vvi1mq{width:258px}
|
|
939
|
+
html:not([dir='rtl']) .f4zm7zaq{border-top-left-radius:calc(var(--radius-app) - 1px)}
|
|
940
|
+
html[dir='rtl'] .f4zm7zaq{border-top-right-radius:calc(var(--radius-app) - 1px)}
|
|
941
|
+
.f6aumy9w{margin-bottom:-3px}
|
|
942
|
+
.f6cvynhn{background-color:var(--compose-input-background)}
|
|
943
|
+
.f6essjlf{width:164px}
|
|
944
|
+
.f6ipylw5{background-color:var(--panel-header-background)}
|
|
945
|
+
.f6un2avg{right:-10px}
|
|
946
|
+
html:not([dir='rtl']) .f78eapp6{padding-left:15px}
|
|
947
|
+
html[dir='rtl'] .f78eapp6{padding-right:15px}
|
|
948
|
+
.f7v6by6u{bottom:12px}
|
|
949
|
+
.f7wxzknn{background-color:var(--sticker-button-background)}
|
|
950
|
+
.f804f6gw{display:block}
|
|
951
|
+
.f83pkj4x{padding-bottom:var(--width-album-extra-padding)}
|
|
952
|
+
html:not([dir='rtl']) .f88dsuqf{left:-999999px}
|
|
953
|
+
html[dir='rtl'] .f88dsuqf{right:-999999px}
|
|
954
|
+
.f8jlpxt4{font-size:0.875rem}
|
|
955
|
+
.f8m0rgwh{flex-direction:column}
|
|
956
|
+
.f8mos8ky{animation-timing-function:linear}
|
|
957
|
+
.f8xtxj1z{max-height:var(--preview-thumb-size)}
|
|
958
|
+
.f8zw8ovf{min-width:60px}
|
|
959
|
+
.f9dkde2y{--T68779821:inset 0 0 15px var(--shadow-light);box-shadow:inset 0 0 15px var(--shadow-light)}
|
|
960
|
+
html:not([dir='rtl']) .f9ovudaz{padding-right:0}
|
|
961
|
+
html[dir='rtl'] .f9ovudaz{padding-left:0}
|
|
962
|
+
html:not([dir='rtl']) .f9uipba7{right:4px}
|
|
963
|
+
html[dir='rtl'] .f9uipba7{left:4px}
|
|
964
|
+
html:not([dir='rtl']) .fahkg6u0{box-shadow:0 1px 0 rgba(0,0,0,.07),0 0 3px rgba(0,0,0,.04)}
|
|
965
|
+
html[dir='rtl'] .fahkg6u0{box-shadow:0 1px 0 rgba(0,0,0,.07), 0 0 3px rgba(0,0,0,.04)}
|
|
966
|
+
.faxx4fbg{float:right}
|
|
967
|
+
.fbgy3m38{padding-top:8px}
|
|
968
|
+
.fbq6tem4{background-color:var(--avatar-circle-gray-active)}
|
|
969
|
+
.fcd3cnzj{bottom:16px}
|
|
970
|
+
.fcdez9h5{width:75px}
|
|
971
|
+
@keyframes fceppddp-B{0%{transform:scale(1);}50%{transform:scale(1.25);}100%{transform:scale(1);}}
|
|
972
|
+
.fcxg0yzc{top:7px}
|
|
973
|
+
.fd365im1{overflow-wrap:break-word}
|
|
974
|
+
.fdblgtiy{color:rgba(var(--inverse-rgb),.72)}
|
|
975
|
+
html:not([dir='rtl']) .fdi1u0wl{left:29px}
|
|
976
|
+
html[dir='rtl'] .fdi1u0wl{right:29px}
|
|
977
|
+
.fdmybch3{animation-delay:.4s,2.8s}
|
|
978
|
+
.fe33t0ud{left:unset}
|
|
979
|
+
.fe3aadhc{height:100px}
|
|
980
|
+
.fe5nidar{font-size:1.0625rem}
|
|
981
|
+
html:not([dir='rtl']) .fe61fa5g{border-top-left-radius:var(--radius-app)}
|
|
982
|
+
html[dir='rtl'] .fe61fa5g{border-top-right-radius:var(--radius-app)}
|
|
983
|
+
html:not([dir='rtl']) .febin9tk{margin-right:-36px}
|
|
984
|
+
html[dir='rtl'] .febin9tk{margin-left:-36px}
|
|
985
|
+
.fewfhwl7{vertical-align:top}
|
|
986
|
+
.ffxp8o2t{color:var(----chat-info-medium-emphasis)}
|
|
987
|
+
.ffyh53uw{height:82px}
|
|
988
|
+
.fgslzg21{max-height:168px}
|
|
989
|
+
.fgtikrv0{margin-top:16px}
|
|
990
|
+
.fhelu9n7{margin-bottom:40px}
|
|
991
|
+
.fhf7t426{justify-content:flex-start}
|
|
992
|
+
html:not([dir='rtl']) .fhfm09ip{padding-right:2px}
|
|
993
|
+
html[dir='rtl'] .fhfm09ip{padding-left:2px}
|
|
994
|
+
.fi5r6efy{width:86px}
|
|
995
|
+
.fmhufpvf{background-color:rgba(var(--white-rgb),.5)}
|
|
996
|
+
html:not([dir='rtl']) .folpon7g{padding-right:3px}
|
|
997
|
+
html[dir='rtl'] .folpon7g{padding-left:3px}
|
|
998
|
+
html:not([dir='rtl']) .fooq7fky{margin-left:8px}
|
|
999
|
+
html[dir='rtl'] .fooq7fky{margin-right:8px}
|
|
1000
|
+
.fpj7ivsd{width:var(--preview-thumb-size)}
|
|
1001
|
+
html:not([dir='rtl']) .fptqv7l3{border-top-right-radius:20%}
|
|
1002
|
+
html[dir='rtl'] .fptqv7l3{border-top-left-radius:20%}
|
|
1003
|
+
.fq1kqmrp{opacity:.06}
|
|
1004
|
+
html:not([dir='rtl']) .fqwk616h{border-bottom-right-radius:6px}
|
|
1005
|
+
html[dir='rtl'] .fqwk616h{border-bottom-left-radius:6px}
|
|
1006
|
+
.fr2082sw{background-color:var(--avatar-background)}
|
|
1007
|
+
.fs6hn1up{height:30px}
|
|
1008
|
+
.fsgosuut{height:80px}
|
|
1009
|
+
.fsk8o631{color:var(--teal-lighter)}
|
|
1010
|
+
.fsmudgz7{filter:blur(var(--blur-radius-thumbnail))}
|
|
1011
|
+
html:not([dir='rtl']) .ft2m32mm{padding-right:8px}
|
|
1012
|
+
html[dir='rtl'] .ft2m32mm{padding-left:8px}
|
|
1013
|
+
.fujac5jc{height:106px}
|
|
1014
|
+
.fujhy7ri{width:68px}
|
|
1015
|
+
.futycye9{background-color:var(--active-tab-marker)}
|
|
1016
|
+
.fvb4mgxr{background-color:var(--media-gallery-thumb-background)}
|
|
1017
|
+
.fvlmj93r{transition-property:background-color,color}
|
|
1018
|
+
.fvnbr7o8{font-size:2.5rem}
|
|
1019
|
+
.fwna6xbl{stroke-dashoffset:0}
|
|
1020
|
+
.fwsb36il{font-size:0.5rem}
|
|
1021
|
+
.fwz54z48{background-image:linear-gradient(to bottom,rgba(var(--overlay-rgb),.3),rgba(var(--overlay-rgb),0))}
|
|
1022
|
+
.fx1ldmn8{transition-property:all}
|
|
1023
|
+
.fyre6qy8{height:var(--preview-thumb-size-small)}
|
|
1024
|
+
.fyxs1hr1{background-color:#222}
|
|
1025
|
+
.fyxtz58m{line-height:0}
|
|
1026
|
+
.fyy3ld6e{width:var(--compose-box-menu-item-width)}
|
|
1027
|
+
html:not([dir='rtl']) .fz4q5utg{right:7px}
|
|
1028
|
+
html[dir='rtl'] .fz4q5utg{left:7px}
|
|
1029
|
+
.g01nkquw{color:var(--text-medium-emphasis)}
|
|
1030
|
+
.g07l9dru{--T68779821:0 2px 3px rgba(var(--shadow-rgb),.1);box-shadow:0 2px 3px rgba(var(--shadow-rgb),.1)}
|
|
1031
|
+
.g0bfn8tw{color:var(--payment-status-failed)}
|
|
1032
|
+
.g0rxnol2{position:relative}
|
|
1033
|
+
html:not([dir='rtl']) .g0zx2qg0{border-bottom-left-radius:99999px}
|
|
1034
|
+
html[dir='rtl'] .g0zx2qg0{border-bottom-right-radius:99999px}
|
|
1035
|
+
.g105fvfm{margin-bottom:5px}
|
|
1036
|
+
html:not([dir='rtl']) .g130k69c{border-top-left-radius:20px}
|
|
1037
|
+
html[dir='rtl'] .g130k69c{border-top-right-radius:20px}
|
|
1038
|
+
.g1eqewly{margin-top:3px}
|
|
1039
|
+
html:not([dir='rtl']) .g1jn521u{border-top-left-radius:18px}
|
|
1040
|
+
html[dir='rtl'] .g1jn521u{border-top-right-radius:18px}
|
|
1041
|
+
.g2bpp9au{z-index:10}
|
|
1042
|
+
.g2k4c4jm{animation-name:kd4yxhpv-B}
|
|
1043
|
+
.g2xi8p6r{line-height:18px}
|
|
1044
|
+
.g39owkbt{animation-name:gk5gj346-B}
|
|
1045
|
+
.g3ewzqzm{top:-2px}
|
|
1046
|
+
.g3ty6e9x{justify-items:center}
|
|
1047
|
+
html:not([dir='rtl']) .g4gtvyba{border-top-right-radius:var(--radius-compose)}
|
|
1048
|
+
html[dir='rtl'] .g4gtvyba{border-top-left-radius:var(--radius-compose)}
|
|
1049
|
+
.g4oj0cdv{min-height:20px}
|
|
1050
|
+
.g4tbm4ed{height:192px}
|
|
1051
|
+
.g4ti3y4y{color:var(--gray-500)}
|
|
1052
|
+
.g5crjs6l{visibility:visible}
|
|
1053
|
+
.g6kkip0l{background-color:var(--drawer-background)}
|
|
1054
|
+
.g7kbfqzr{animation-name:cwns2890-B}
|
|
1055
|
+
html:not([dir='rtl']) .g888flyt{margin-left:23px}
|
|
1056
|
+
html[dir='rtl'] .g888flyt{margin-right:23px}
|
|
1057
|
+
.g8xmoczg{background-color:rgba(var(--overlay-rgb),.35)}
|
|
1058
|
+
.g965lu3b{height:10px}
|
|
1059
|
+
html:not([dir='rtl']) .g9p5wyxn{border-top-left-radius:50%}
|
|
1060
|
+
html[dir='rtl'] .g9p5wyxn{border-top-right-radius:50%}
|
|
1061
|
+
.g9q9estb{background-color:var(--message-background-deep)}
|
|
1062
|
+
html:not([dir='rtl']) .g9zvcdbd{margin-left:12px}
|
|
1063
|
+
html[dir='rtl'] .g9zvcdbd{margin-right:12px}
|
|
1064
|
+
.gaqnkt02{animation-timing-function:ease-in-out}
|
|
1065
|
+
.gaujl5hk{padding-top:14px}
|
|
1066
|
+
.gbtdc75f{width:100px}
|
|
1067
|
+
.gc15jzxb{min-height:40px}
|
|
1068
|
+
.gdaqao4w{margin-bottom:18px}
|
|
1069
|
+
.gdrnme8s{animation-name:ev8ckacf-B}
|
|
1070
|
+
@keyframes ge0l3a7l-B{0%{max-height:40px;}100%{max-height:168px;}}
|
|
1071
|
+
.ge6flnsz{opacity:.45}
|
|
1072
|
+
.gfz4du6o{overflow-x:hidden}
|
|
1073
|
+
.ggj6brxn{flex-grow:1}
|
|
1074
|
+
.gh2eiktu{background-color:var(--chat-marker-background)}
|
|
1075
|
+
.gh97vfwp{background-color:var(--avatar-circle-gray)}
|
|
1076
|
+
.gibn6ev6{stroke:rgba(var(--green-rgb),.7)}
|
|
1077
|
+
.gire0wgi{position:static}
|
|
1078
|
+
.gixhl6f9{max-height:35%}
|
|
1079
|
+
html:not([dir='rtl']) .gj5xqxfh{margin-left:2px}
|
|
1080
|
+
html[dir='rtl'] .gj5xqxfh{margin-right:2px}
|
|
1081
|
+
.gj6qtt9u{flex-grow:3}
|
|
1082
|
+
.gjfcmax9{padding-bottom:22px}
|
|
1083
|
+
.gjuq5ydh{align-self:auto}
|
|
1084
|
+
@keyframes gk5gj346-B{0%{transform:translateX(0);}100%{transform:translateX(-171.5px);}}
|
|
1085
|
+
.gm0rsm7k{height:8px}
|
|
1086
|
+
.gmjkez2w{background-color:var(--conversation-panel-background)}
|
|
1087
|
+
.gndfcl4n{align-items:center}
|
|
1088
|
+
.gnkxn0la{--T68779821:inset 0 0 0 1px rgba(var(--secondary-rgb),.2);box-shadow:inset 0 0 0 1px rgba(var(--secondary-rgb),.2)}
|
|
1089
|
+
.gofbmt1g{width:auto}
|
|
1090
|
+
.gpgqxepn{padding-bottom:2rem}
|
|
1091
|
+
.gpmkiw74{align-items:start}
|
|
1092
|
+
.gq1t1y46{color:var(--bubble-meta)}
|
|
1093
|
+
.gq7nj7y3{padding-top:50px}
|
|
1094
|
+
html:not([dir='rtl']) .gqi0zhd6{margin-right:16px}
|
|
1095
|
+
html[dir='rtl'] .gqi0zhd6{margin-left:16px}
|
|
1096
|
+
.graaj7av{height:72px}
|
|
1097
|
+
html:not([dir='rtl']) .gre9kwvr{padding-right:2px!important}
|
|
1098
|
+
html[dir='rtl'] .gre9kwvr{padding-left:2px!important}
|
|
1099
|
+
.grkbsjmy{transition-duration:.4s}
|
|
1100
|
+
.gro5s87f{color:var(--text-muted)}
|
|
1101
|
+
.grt5ktjy{right:0}
|
|
1102
|
+
.gs65objp{animation-timing-function:cubic-bezier(.85,0,.15,1)}
|
|
1103
|
+
.gsc9792w{padding-top:var(--bubble-padding)}
|
|
1104
|
+
.gsqs0kct{animation-name:bx6fce78-B}
|
|
1105
|
+
.gt1inm12{color:var(--tooltip-text)}
|
|
1106
|
+
.gtffwfyy{color:var(--status-link-preview-secondary)}
|
|
1107
|
+
.gtscxtjd{color:inherit}
|
|
1108
|
+
.gulicvea{background-color:var(--panel-background-colored-deeper)}
|
|
1109
|
+
.gun6vjuz{height:30px!important}
|
|
1110
|
+
html:not([dir='rtl']) .guo0zu0m{left:28px}
|
|
1111
|
+
html[dir='rtl'] .guo0zu0m{right:28px}
|
|
1112
|
+
html:not([dir='rtl']) .gv1bfy1o{padding-right:48px}
|
|
1113
|
+
html[dir='rtl'] .gv1bfy1o{padding-left:48px}
|
|
1114
|
+
html:not([dir='rtl']) .gv7ona1m{margin-left:28px}
|
|
1115
|
+
html[dir='rtl'] .gv7ona1m{margin-right:28px}
|
|
1116
|
+
.gw1xhhb9{height:641px}
|
|
1117
|
+
html:not([dir='rtl']) .gwd8mfxi{border-bottom-right-radius:24px}
|
|
1118
|
+
html[dir='rtl'] .gwd8mfxi{border-bottom-left-radius:24px}
|
|
1119
|
+
html:not([dir='rtl']) .gwq3iy2m{margin-right:22px}
|
|
1120
|
+
html[dir='rtl'] .gwq3iy2m{margin-left:22px}
|
|
1121
|
+
html:not([dir='rtl']) .gx1rr48f{padding-left:0}
|
|
1122
|
+
html[dir='rtl'] .gx1rr48f{padding-right:0}
|
|
1123
|
+
@keyframes gxjzahal-B{0%{transform:translateY(5px);opacity:0;}100%{transform:translateY(0);opacity:1;}}
|
|
1124
|
+
.gxpaki6b{max-height:96px}
|
|
1125
|
+
.gxu21ubf{flex-basis:25px}
|
|
1126
|
+
.gy96ms01{right:unset}
|
|
1127
|
+
html:not([dir='rtl']) .gygahxu2{border-bottom-right-radius:20%}
|
|
1128
|
+
html[dir='rtl'] .gygahxu2{border-bottom-left-radius:20%}
|
|
1129
|
+
.gz7w46tb{line-height:1}
|
|
1130
|
+
.gzqlv4l6{padding-top:48px}
|
|
1131
|
+
.gzzbkayp{animation-duration:.17s}
|
|
1132
|
+
.h0psn3nu{background-color:rgba(var(--overlay-rgb),.07)}
|
|
1133
|
+
.h0viaqh7{padding-top:.3em}
|
|
1134
|
+
.h15s16sg{color:var(--background)}
|
|
1135
|
+
html:not([dir='rtl']) .h1a3x9ys{border-bottom-left-radius:100%}
|
|
1136
|
+
html[dir='rtl'] .h1a3x9ys{border-bottom-right-radius:100%}
|
|
1137
|
+
html:not([dir='rtl']) .h1a80dm5{padding-right:24px}
|
|
1138
|
+
html[dir='rtl'] .h1a80dm5{padding-left:24px}
|
|
1139
|
+
html:not([dir='rtl']) .h223g3sc{right:20px}
|
|
1140
|
+
html[dir='rtl'] .h223g3sc{left:20px}
|
|
1141
|
+
.h2mkl1gk{--T68779821:0 2px 13px rgba(var(--shadow-rgb),.5);box-shadow:0 2px 13px rgba(var(--shadow-rgb),.5)}
|
|
1142
|
+
.h2qzpyga{cursor:not-allowed}
|
|
1143
|
+
.h2zl7k75{min-height:130px}
|
|
1144
|
+
html:not([dir='rtl']) .h35p8r1c{margin-left:-5px}
|
|
1145
|
+
html[dir='rtl'] .h35p8r1c{margin-right:-5px}
|
|
1146
|
+
.h3bz2vby{--T68779821:0 2px 4px rgba(var(--shadow-rgb),.16);box-shadow:0 2px 4px rgba(var(--shadow-rgb),.16)}
|
|
1147
|
+
.h3jhcnxg{min-width:-moz-fit-content;min-width:fit-content}
|
|
1148
|
+
.h432zind{font-style:italic}
|
|
1149
|
+
.h4dw90qs{width:80px}
|
|
1150
|
+
html:not([dir='rtl']) .h5uqwbaf{padding-right:14px}
|
|
1151
|
+
html[dir='rtl'] .h5uqwbaf{padding-left:14px}
|
|
1152
|
+
@keyframes h6b26ba3-B{0%{background-position:-400px;}100%{background-position:400px;}}
|
|
1153
|
+
.h6edk2v2{animation-duration:.4s,.3s}
|
|
1154
|
+
.h6rxrygl{color:var(--drawer-section-background)}
|
|
1155
|
+
.h9iecx73{padding-top:100%}
|
|
1156
|
+
.h9l086de{fill:var(--secondary)}
|
|
1157
|
+
.ha4ip43m{filter:contrast(0) brightness(100%)}
|
|
1158
|
+
.hafg4y3t{color:#25d366}
|
|
1159
|
+
.havzjkop{color:#fff}
|
|
1160
|
+
.hb09shpw{color:var(--payment-status-success)}
|
|
1161
|
+
.hbhfgwk1{background-size:contain}
|
|
1162
|
+
.hblzrxh7{width:500px}
|
|
1163
|
+
.hbnrezoj{animation-duration:2s}
|
|
1164
|
+
.hc2u0oym{padding-top:19px}
|
|
1165
|
+
.hcag4mye{color:var(----secondary-lighter)}
|
|
1166
|
+
.hcuw515p{animation-duration:.5s}
|
|
1167
|
+
.hd6b059k{top:1px}
|
|
1168
|
+
.hddtmpml{filter:blur(3px)}
|
|
1169
|
+
.hdpg1tjz{top:-1px}
|
|
1170
|
+
.hdyxztb8{fill-opacity:.6}
|
|
1171
|
+
@keyframes he6jpvhu-B{0%{transform:scale(0,0);}20%{transform:scale(0,0);}100%{transform:scale (1,1);}}
|
|
1172
|
+
.he7yjufn{height:var(--height-thumb-shade)}
|
|
1173
|
+
html:not([dir='rtl']) .heai6z19{margin-left:-6px}
|
|
1174
|
+
html[dir='rtl'] .heai6z19{margin-right:-6px}
|
|
1175
|
+
.hftcxtij{--T68779821:0 1px 3px rgba(var(--shadow-rgb),.4);box-shadow:0 1px 3px rgba(var(--shadow-rgb),.4)}
|
|
1176
|
+
.hgg0ttet{width:22px}
|
|
1177
|
+
.hgytzyjk{padding-bottom:30}
|
|
1178
|
+
.hha4v2jc{margin-bottom:var(--thumb-spacing)}
|
|
1179
|
+
@keyframes hi39smf1-B{0%{transform:translateY(0);}100%{transform:translateY(-17px);}}
|
|
1180
|
+
html:not([dir='rtl']) .hiez0fsc{padding-right:26px}
|
|
1181
|
+
html[dir='rtl'] .hiez0fsc{padding-left:26px}
|
|
1182
|
+
@keyframes hisddxiu-B{0%{transform:scale(1);}50%{transform:scale(.7);}100%{transform:scale(1);}}
|
|
1183
|
+
.hj839x6e{width:44px}
|
|
1184
|
+
html:not([dir='rtl']) .hjje1qk3{--T68779821:0 1px 1px rgba(var(--shadow-rgb),.14),0 2px 1px rgba(var(--shadow-rgb),.12),0 1px 3px rgba(var(--shadow-rgb),.2);box-shadow:0 1px 1px rgba(var(--shadow-rgb),.14),0 2px 1px rgba(var(--shadow-rgb),.12),0 1px 3px rgba(var(--shadow-rgb),.2);}
|
|
1185
|
+
html[dir='rtl'] .hjje1qk3{--T68779821:0 1px 1px rgba(var(--shadow-rgb),.14), 0 2px 1px rgba(var(--shadow-rgb),.12), 0 1px 3px rgba(var(--shadow-rgb),.2);box-shadow:0 1px 1px rgba(var(--shadow-rgb),.14), 0 2px 1px rgba(var(--shadow-rgb),.12), 0 1px 3px rgba(var(--shadow-rgb),.2);}
|
|
1186
|
+
html:not([dir='rtl']) .hjr9v96k{margin-right:-1px}
|
|
1187
|
+
html[dir='rtl'] .hjr9v96k{margin-left:-1px}
|
|
1188
|
+
.hjz8m82x{padding-bottom:32px}
|
|
1189
|
+
html:not([dir='rtl']) .hm7f711o{border-bottom-left-radius:20%}
|
|
1190
|
+
html[dir='rtl'] .hm7f711o{border-bottom-right-radius:20%}
|
|
1191
|
+
.hmfli31t{background-color:var(--poll-bar-container-sender)}
|
|
1192
|
+
html:not([dir='rtl']) .hmkl5ysc{padding-left:25px}
|
|
1193
|
+
html[dir='rtl'] .hmkl5ysc{padding-right:25px}
|
|
1194
|
+
.hmy10g0s{white-space:normal}
|
|
1195
|
+
.hn08p73j{color:rgba(var(--primary-strong-rgb),.3)}
|
|
1196
|
+
.hntizkrm{background-color:var(--button-background-disabled)}
|
|
1197
|
+
.hnx8ox4h{font-weight:500}
|
|
1198
|
+
html:not([dir='rtl']) .ho9ovbg7{border-top-left-radius:4px}
|
|
1199
|
+
html[dir='rtl'] .ho9ovbg7{border-top-right-radius:4px}
|
|
1200
|
+
.hocact0c{top:87px}
|
|
1201
|
+
.holukk2e{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}
|
|
1202
|
+
.hp2ib53p{line-height:1.1875}
|
|
1203
|
+
.hp5m5kpu{width:200px}
|
|
1204
|
+
.hp667wtd{color:var(--secondary-lighter)}
|
|
1205
|
+
.hpdpob1j{height:18px}
|
|
1206
|
+
.hpebpoc7{background-color:var(--panel-background-colored)}
|
|
1207
|
+
.hqec7i8t{width:75%}
|
|
1208
|
+
.hql59cr1{letter-spacing:-0.2px}
|
|
1209
|
+
html:not([dir='rtl']) .hqw9ulo5{margin-left:24px}
|
|
1210
|
+
html[dir='rtl'] .hqw9ulo5{margin-right:24px}
|
|
1211
|
+
html:not([dir='rtl']) .hr3av0uk{border-top-left-radius:999px}
|
|
1212
|
+
html[dir='rtl'] .hr3av0uk{border-top-right-radius:999px}
|
|
1213
|
+
.hr4hzv79{animation-name:gxjzahal-B,ctfi49jn-B}
|
|
1214
|
+
.hrdw4pet{background-position:0 0}
|
|
1215
|
+
.hscjuerc{letter-spacing:.25px}
|
|
1216
|
+
html:not([dir='rtl']) .hsk1pqkj{border-top-right-radius:0}
|
|
1217
|
+
html[dir='rtl'] .hsk1pqkj{border-top-left-radius:0}
|
|
1218
|
+
.hsombceh{bottom:10px}
|
|
1219
|
+
.hsqj3bek{color:var(--svg-gray-button)}
|
|
1220
|
+
.hswow7x1{transition-duration:.2s}
|
|
1221
|
+
html:not([dir='rtl']) .htg54gjl{padding-right:31px}
|
|
1222
|
+
html[dir='rtl'] .htg54gjl{padding-left:31px}
|
|
1223
|
+
.htjsae3x{line-height:1.25}
|
|
1224
|
+
html:not([dir='rtl']) .htq1q0kf{margin-left:15px}
|
|
1225
|
+
html[dir='rtl'] .htq1q0kf{margin-right:15px}
|
|
1226
|
+
.huo8y3a1{width:var(--compose-box-open-menu-width)}
|
|
1227
|
+
.hv5pdlef{margin-top:93px}
|
|
1228
|
+
html:not([dir='rtl']) .hwxn6iyz{border-bottom-right-radius:5px}
|
|
1229
|
+
html[dir='rtl'] .hwxn6iyz{border-bottom-left-radius:5px}
|
|
1230
|
+
.hwyr1eu5{min-width:170px}
|
|
1231
|
+
.hxazv0ps{width:55px}
|
|
1232
|
+
html:not([dir='rtl']) .hxjsrjta{padding-left:28px}
|
|
1233
|
+
html[dir='rtl'] .hxjsrjta{padding-right:28px}
|
|
1234
|
+
.hxov8ih6{--T68779821:inset 0 -10px 9px -10px rgba(var(--shadow-rgb),.1);box-shadow:inset 0 -10px 9px -10px rgba(var(--shadow-rgb),.1)}
|
|
1235
|
+
.hxudpzjg{background-size:1600% auto}
|
|
1236
|
+
.hymafltn{margin-top:5px}
|
|
1237
|
+
.hza3nq4c{background-color:var(--switch-track-checked-color)}
|
|
1238
|
+
.hzeshm6i{line-height:1.6}
|
|
1239
|
+
.i033jvx7{white-space:pre-line}
|
|
1240
|
+
.i0c11cip{color:rgba(var(--primary-stronger-rgb),.35)}
|
|
1241
|
+
html:not([dir='rtl']) .i0tg5vk9{border-top-right-radius:50%}
|
|
1242
|
+
html[dir='rtl'] .i0tg5vk9{border-top-left-radius:50%}
|
|
1243
|
+
.i0x3nve6{width:16px}
|
|
1244
|
+
.i16jpgpt{background-color:var(--background-default-active)}
|
|
1245
|
+
.i1lv5eai{-webkit-clip-path:polygon(100% 0,50% 0,50% 55%,49% 73%,41% 82%,50% 88%,50% 100%,100% 100%);clip-path:polygon(100% 0,50% 0,50% 55%,49% 73%,41% 82%,50% 88%,50% 100%,100% 100%)}
|
|
1246
|
+
html:not([dir='rtl']) .i213mnjx{border-top-right-radius:12px}
|
|
1247
|
+
html[dir='rtl'] .i213mnjx{border-top-left-radius:12px}
|
|
1248
|
+
.i2cyxsuq{animation-name:d8h0nk90-B}
|
|
1249
|
+
.i2tfkqu4{stroke:var(--status-ring-read)}
|
|
1250
|
+
.i35u2c65{--T68779821:0 1px 1px 0 rgba(var(--shadow-rgb),.06);box-shadow:0 1px 1px 0 rgba(var(--shadow-rgb),.06)}
|
|
1251
|
+
.i3it5ig8{padding-bottom:1.5px}
|
|
1252
|
+
html:not([dir='rtl']) .i3rsbmdh{border-top-left-radius:7px}
|
|
1253
|
+
html[dir='rtl'] .i3rsbmdh{border-top-right-radius:7px}
|
|
1254
|
+
.i44ccddp{overflow-x:auto}
|
|
1255
|
+
.i4pc7asj{padding-top:17px}
|
|
1256
|
+
.i5q8zipx{font-size:.875rem}
|
|
1257
|
+
.i5tg98hk{padding-top:0}
|
|
1258
|
+
html:not([dir='rtl']) .i5w8n1e6{border-bottom-right-radius:3px}
|
|
1259
|
+
html[dir='rtl'] .i5w8n1e6{border-bottom-left-radius:3px}
|
|
1260
|
+
.i7clx65o{line-height:23px}
|
|
1261
|
+
html:not([dir='rtl']) .i7sa5vq0{right:16px}
|
|
1262
|
+
html[dir='rtl'] .i7sa5vq0{left:16px}
|
|
1263
|
+
.i86elurf{display:inline-flex}
|
|
1264
|
+
.i86xphuw{background-color:var(--border-default)}
|
|
1265
|
+
.i8b0kslj{color:var(--text-secondary)}
|
|
1266
|
+
html:not([dir='rtl']) .i8b31kl9{padding-left:18px}
|
|
1267
|
+
html[dir='rtl'] .i8b31kl9{padding-right:18px}
|
|
1268
|
+
.i8de924n{animation-name:h6b26ba3-B}
|
|
1269
|
+
html:not([dir='rtl']) .i8go5xc4{padding-right:9px}
|
|
1270
|
+
html[dir='rtl'] .i8go5xc4{padding-left:9px}
|
|
1271
|
+
.i8t1ujht{color:var(--ptt-draft-button-send)}
|
|
1272
|
+
.i94gqilv{width:24px}
|
|
1273
|
+
.i9q6l8xd{animation-name:s2wya820-B}
|
|
1274
|
+
html:not([dir='rtl']) .i9wwz5gb{cursor:e-resize}
|
|
1275
|
+
html[dir='rtl'] .i9wwz5gb{cursor:w-resize}
|
|
1276
|
+
html:not([dir='rtl']) .ia5k4ep2{right:22px}
|
|
1277
|
+
html[dir='rtl'] .ia5k4ep2{left:22px}
|
|
1278
|
+
html:not([dir='rtl']) .ia9wx81j{margin-left:22%}
|
|
1279
|
+
html[dir='rtl'] .ia9wx81j{margin-right:22%}
|
|
1280
|
+
.iaxh5e60{max-width:200px}
|
|
1281
|
+
.ibyb1pgl{max-height:100%}
|
|
1282
|
+
.icj6mcig{height:14px}
|
|
1283
|
+
.idmi9oma{background-color:rgba(var(--background-default-rgb),.95)}
|
|
1284
|
+
.idnewlvo{width:82px}
|
|
1285
|
+
.idwf4z32{line-height:19px}
|
|
1286
|
+
.iedsav3z{stroke:var(--status-ring-unread)}
|
|
1287
|
+
.if44n927{margin-top:-3px}
|
|
1288
|
+
html:not([dir='rtl']) .iffbo4e8{padding-right:20px}
|
|
1289
|
+
html[dir='rtl'] .iffbo4e8{padding-left:20px}
|
|
1290
|
+
html:not([dir='rtl']) .ig3kka7n{border-top-left-radius:100%}
|
|
1291
|
+
html[dir='rtl'] .ig3kka7n{border-top-right-radius:100%}
|
|
1292
|
+
html:not([dir='rtl']) .igb3k0ri{padding-right:19px}
|
|
1293
|
+
html[dir='rtl'] .igb3k0ri{padding-left:19px}
|
|
1294
|
+
.ignnouf6{margin-top:28px}
|
|
1295
|
+
.ih8khgda{max-height:60px}
|
|
1296
|
+
.ihvf49ua{background-color:var(--background-default)}
|
|
1297
|
+
.iibwf64q{bottom:-10px}
|
|
1298
|
+
.iin4x6c7{margin-top:6px}
|
|
1299
|
+
html:not([dir='rtl']) .ij4mqf17{padding-right:100px}
|
|
1300
|
+
html[dir='rtl'] .ij4mqf17{padding-left:100px}
|
|
1301
|
+
.ijehb8ro{transition-timing-function:easeInSine}
|
|
1302
|
+
.ijnr8jqx{animation-duration:.12s}
|
|
1303
|
+
.ik2lb43m{background-color:var(--forward-caption-preview-background)}
|
|
1304
|
+
.ikaz7xrh{background-image:linear-gradient(to right,var(--progress-background) 4%,var(--wds-cool-gray-alpha-40) 25%,var(--progress-background) 36%)}
|
|
1305
|
+
html:not([dir='rtl']) .ikc09dv3{margin-right:var(--thumb-spacing)}
|
|
1306
|
+
html[dir='rtl'] .ikc09dv3{margin-left:var(--thumb-spacing)}
|
|
1307
|
+
html:not([dir='rtl']) .ikqdvm1y{border-top-left-radius:10px}
|
|
1308
|
+
html[dir='rtl'] .ikqdvm1y{border-top-right-radius:10px}
|
|
1309
|
+
html:not([dir='rtl']) .ikqwvqb4{border-top-right-radius:9999px}
|
|
1310
|
+
html[dir='rtl'] .ikqwvqb4{border-top-left-radius:9999px}
|
|
1311
|
+
html:not([dir='rtl']) .ikwl5qvt{border-top-right-radius:1.1em}
|
|
1312
|
+
html[dir='rtl'] .ikwl5qvt{border-top-left-radius:1.1em}
|
|
1313
|
+
.il1gyv3w{min-width:.8em}
|
|
1314
|
+
.ilf8vifs{height:16px}
|
|
1315
|
+
.ilpu1yob{padding-top:$chat-spacing}
|
|
1316
|
+
.ilqz664c{width:65px}
|
|
1317
|
+
.inadp68n{background-color:var(--sender-superpower-title)}
|
|
1318
|
+
.inogquss{margin-bottom:1px}
|
|
1319
|
+
.inww9tbj{margin-bottom:4px}
|
|
1320
|
+
.io08vzmp{color:var(--unread-marker-background)}
|
|
1321
|
+
.io7enyfj{fill-opacity:1}
|
|
1322
|
+
.io9pg0pp{background-color:rgba(233,28,67,.1)}
|
|
1323
|
+
html:not([dir='rtl']) .io9rddya{border-top-right-radius:999px}
|
|
1324
|
+
html[dir='rtl'] .io9rddya{border-top-left-radius:999px}
|
|
1325
|
+
.iod7fm94{max-height:296px}
|
|
1326
|
+
.iozoqvlu{background-size:1000px 100%}
|
|
1327
|
+
.ipp30ku8{background-color:var(--attach-media-drop-overlay)}
|
|
1328
|
+
.ipry0idr{font-size:6.25rem}
|
|
1329
|
+
.iq0m558w{line-height:inherit}
|
|
1330
|
+
.iq9gefj9{height:64px!important}
|
|
1331
|
+
.iqn2u7bu{color:#FFF}
|
|
1332
|
+
.iqrewfee{font-size:1.1875rem}
|
|
1333
|
+
html:not([dir='rtl']) .iqx13udk{padding-right:1px}
|
|
1334
|
+
html[dir='rtl'] .iqx13udk{padding-left:1px}
|
|
1335
|
+
html:not([dir='rtl']) .isfiuinm{margin-left:auto}
|
|
1336
|
+
html[dir='rtl'] .isfiuinm{margin-right:auto}
|
|
1337
|
+
html:not([dir='rtl']) .isg5rw3j{margin-right:-4px}
|
|
1338
|
+
html[dir='rtl'] .isg5rw3j{margin-left:-4px}
|
|
1339
|
+
html:not([dir='rtl']) .itegkywt{padding-right:10px}
|
|
1340
|
+
html[dir='rtl'] .itegkywt{padding-left:10px}
|
|
1341
|
+
html:not([dir='rtl']) .itf0yk5b{left:-40px}
|
|
1342
|
+
html[dir='rtl'] .itf0yk5b{right:-40px}
|
|
1343
|
+
html:not([dir='rtl']) .itgzszx5{margin-right:10.5px}
|
|
1344
|
+
html[dir='rtl'] .itgzszx5{margin-left:10.5px}
|
|
1345
|
+
.itj3kzbg{z-index:110}
|
|
1346
|
+
.itoi26wd{height:2.5px}
|
|
1347
|
+
.ity2ubfj{z-index:999999999}
|
|
1348
|
+
.iuagithl{bottom:30px}
|
|
1349
|
+
.iuhl9who{line-height:1.43}
|
|
1350
|
+
.iv396pab{line-height:2}
|
|
1351
|
+
html:not([dir='rtl']) .ivui8b66{float:right}
|
|
1352
|
+
html[dir='rtl'] .ivui8b66{float:left}
|
|
1353
|
+
html:not([dir='rtl']) .ixn6u0rb{border-top-right-radius:2px}
|
|
1354
|
+
html[dir='rtl'] .ixn6u0rb{border-top-left-radius:2px}
|
|
1355
|
+
html:not([dir='rtl']) .ixsqo53d{padding-right:34px}
|
|
1356
|
+
html[dir='rtl'] .ixsqo53d{padding-left:34px}
|
|
1357
|
+
.iy2cu22y{margin-top:12px}
|
|
1358
|
+
html:not([dir='rtl']) .iy3dfvyp{padding-left:34px}
|
|
1359
|
+
html[dir='rtl'] .iy3dfvyp{padding-right:34px}
|
|
1360
|
+
.iyjcf3gk{margin-bottom:24px}
|
|
1361
|
+
.iyofsbg4{right:3px}
|
|
1362
|
+
.izlvswng{color:var(--primary-title)}
|
|
1363
|
+
.izvjr1tp{animation-duration:.7s}
|
|
1364
|
+
.j00wzxgm{min-width:7px}
|
|
1365
|
+
.j07hyc8x{margin-top:-7px}
|
|
1366
|
+
.j0epb7j8{margin-bottom:1.5em}
|
|
1367
|
+
.j0vv7iav{vertical-align:-2px}
|
|
1368
|
+
.j16a598t{animation-duration:.1s}
|
|
1369
|
+
.j19d4s4u{height:164px}
|
|
1370
|
+
.j1p1mz06{justify-content:space-around}
|
|
1371
|
+
@keyframes j1vtk5sh-B{0%{transform:scale(.01);}25%{transform:scale(.21,1);animation-timing-function:cubic-bezier(.83,0,.17,1);}62%{transform:scaleX(1.05);animation-timing-function:cubic-bezier(.83,0,.17,1);}100%{transform:scaleX(1);}}
|
|
1372
|
+
.j1wdo6yn{background-color:rgba(var(--inverse-rgb),0)}
|
|
1373
|
+
@keyframes j1z081e5-B{0%{top:9px;left:6px;width:0;height:0;}100%{top:1px;left:4px;width:4px;height:8px;}}
|
|
1374
|
+
.j216idpa{max-width:300px}
|
|
1375
|
+
.j2j5w4e7{max-width:170px}
|
|
1376
|
+
html:not([dir='rtl']) .j2mzdvlq{right:8px}
|
|
1377
|
+
html[dir='rtl'] .j2mzdvlq{left:8px}
|
|
1378
|
+
html:not([dir='rtl']) .j2yjyrsv{padding-right:52px}
|
|
1379
|
+
html[dir='rtl'] .j2yjyrsv{padding-left:52px}
|
|
1380
|
+
.j33zqi64{left:6px}
|
|
1381
|
+
.j3as33wi{right:50%}
|
|
1382
|
+
.j3e9rhaw{min-width:72px}
|
|
1383
|
+
.j3oq2rgp{color:var(--highlight)}
|
|
1384
|
+
.j4enbv94{margin-bottom:2px}
|
|
1385
|
+
.j5au4wul{color:var(--success)}
|
|
1386
|
+
.j69yk9hm{margin-right:4px}
|
|
1387
|
+
.j6fiq9dm{animation-timing-function:steps(15)}
|
|
1388
|
+
.j6t0p44n{animation-name:fceppddp-B}
|
|
1389
|
+
.j74n1y92{height:112px}
|
|
1390
|
+
.j7fhyocb{min-width:77px}
|
|
1391
|
+
.j7l1k36l{order:0}
|
|
1392
|
+
.j8e73hjv{height:35px}
|
|
1393
|
+
.j8fxo1e4{cursor:-webkit-grab;cursor:grab}
|
|
1394
|
+
.j8gd1g7w{background-color:var(--avatar-circle-gray-dark)}
|
|
1395
|
+
.j8h4s3v0{color:var(--link-preview-light)}
|
|
1396
|
+
.j8jyn9yl{color:var(--media-editor-icon-color)}
|
|
1397
|
+
html:not([dir='rtl']) .j90th5db{border-bottom-right-radius:1.1em}
|
|
1398
|
+
html[dir='rtl'] .j90th5db{border-bottom-left-radius:1.1em}
|
|
1399
|
+
.j950s1re{bottom:-40px}
|
|
1400
|
+
.j9ny8kmf{stroke:var(--teal)}
|
|
1401
|
+
.jabl2ek9{width:28.8px}
|
|
1402
|
+
html:not([dir='rtl']) .jaoskmb8{padding-right:17px}
|
|
1403
|
+
html[dir='rtl'] .jaoskmb8{padding-left:17px}
|
|
1404
|
+
.jb7wq3az{transition-property:width,background-color}
|
|
1405
|
+
.jbm6vef4{width:0}
|
|
1406
|
+
.jbxl65f1{height:34px}
|
|
1407
|
+
.jbydbyre{height:var(--thumb-height)}
|
|
1408
|
+
.jc2at2x4{animation-name:tt97e0k0-B}
|
|
1409
|
+
.jd93c9cp{padding-bottom:16px}
|
|
1410
|
+
html:not([dir='rtl']) .jdimvq34{border-top-right-radius:99999px}
|
|
1411
|
+
html[dir='rtl'] .jdimvq34{border-top-left-radius:99999px}
|
|
1412
|
+
.jdreu547{margin-top:-12px}
|
|
1413
|
+
.jdwybkuq{height:20px}
|
|
1414
|
+
html:not([dir='rtl']) .je7dqiji{margin-left:80px}
|
|
1415
|
+
html[dir='rtl'] .je7dqiji{margin-right:80px}
|
|
1416
|
+
.je90h8md{background-color:var(--security-icon-background)}
|
|
1417
|
+
.jeo84yz3{width:var(--width-payment-bubble)}
|
|
1418
|
+
.jevcxcag{z-index:98}
|
|
1419
|
+
.jfnhg5wd{background-color:inherit}
|
|
1420
|
+
html:not([dir='rtl']) .jfqm35v0{padding-right:4px}
|
|
1421
|
+
html[dir='rtl'] .jfqm35v0{padding-left:4px}
|
|
1422
|
+
.jg9mtn4o{margin-bottom:36px}
|
|
1423
|
+
.jgi8eev7{line-height:1.4}
|
|
1424
|
+
.jgly3g7g{width:72px}
|
|
1425
|
+
.jgz0asyo{top:6px}
|
|
1426
|
+
.jht8oeb6{background-color:var(--incoming-background)}
|
|
1427
|
+
html:not([dir='rtl']) .ji0r0qsd{left:11px}
|
|
1428
|
+
html[dir='rtl'] .ji0r0qsd{right:11px}
|
|
1429
|
+
.jk96mlgm{color:var(--button-secondary-hover)}
|
|
1430
|
+
.jkv2xdwy{width:128px}
|
|
1431
|
+
html:not([dir='rtl']) .jl1nm5p1{padding-left:.5rem}
|
|
1432
|
+
html[dir='rtl'] .jl1nm5p1{padding-right:.5rem}
|
|
1433
|
+
@keyframes jlc02bb6-B{30%{opacity:0;transform:translateY(-50px);}100%{opacity:1;transform:translateY(0);}}
|
|
1434
|
+
.jmly3brn{color:var(--gray-300)}
|
|
1435
|
+
.jn5oezdz{color:var(--communities-green)}
|
|
1436
|
+
.jncsylhy{color:var(--archived-chat-marker)}
|
|
1437
|
+
.jnl3jror{z-index:1}
|
|
1438
|
+
html:not([dir='rtl']) .jnwc1y2a{margin-right:0}
|
|
1439
|
+
html[dir='rtl'] .jnwc1y2a{margin-left:0}
|
|
1440
|
+
.joi2o88i{animation-name:e6ri2msi-B}
|
|
1441
|
+
.joup3a2m{animation-duration:.32s,.12s}
|
|
1442
|
+
.jp8f8qpf{font-family:monospace}
|
|
1443
|
+
.jpfst8ig{width:78%}
|
|
1444
|
+
.jpthtbts{object-fit:cover}
|
|
1445
|
+
.jq3rn4u7{color:var(--teal)}
|
|
1446
|
+
.jswlwoyz{width:30px}
|
|
1447
|
+
.jte5jbqx{width:11px}
|
|
1448
|
+
.ju2rvew0{background-color:var(--round-icon-background)}
|
|
1449
|
+
html:not([dir='rtl']) .jv1ikj1l{border-top-left-radius:60px}
|
|
1450
|
+
html[dir='rtl'] .jv1ikj1l{border-top-right-radius:60px}
|
|
1451
|
+
.jv6unooo{-webkit-clip-path:polygon(50% 0,100% 0,99% 100%,49% 100%,52% 59%,54% 65%,50% 63%,48% 66%,46% 63%,49% 50%);clip-path:polygon(50% 0,100% 0,99% 100%,49% 100%,52% 59%,54% 65%,50% 63%,48% 66%,46% 63%,49% 50%)}
|
|
1452
|
+
.jv8uhy2r{pointer-events:auto}
|
|
1453
|
+
.jvy3y6qh{background-color:var(--chip-button-background)}
|
|
1454
|
+
.jwo15fhv{max-width:520px}
|
|
1455
|
+
html:not([dir='rtl']) .jwvfxh5v{margin-left:var(--chat-spacing)}
|
|
1456
|
+
html[dir='rtl'] .jwvfxh5v{margin-right:var(--chat-spacing)}
|
|
1457
|
+
.jxacihee{bottom:0}
|
|
1458
|
+
html:not([dir='rtl']) .jyk8994j{border-bottom-right-radius:60px}
|
|
1459
|
+
html[dir='rtl'] .jyk8994j{border-bottom-left-radius:60px}
|
|
1460
|
+
.jzfo78pl{margin-left:auto}
|
|
1461
|
+
.jzp2c175{padding-bottom:40px}
|
|
1462
|
+
.k06jqncy{color:var(--text-secondary-lighter)}
|
|
1463
|
+
.k07a8sro{padding-bottom:.3em}
|
|
1464
|
+
.k0lnf8n4{margin-bottom:14px}
|
|
1465
|
+
.k13l3mcg{font-family:var(--font-family-monospace)}
|
|
1466
|
+
.k17s6i4e{color:var(--inverse)}
|
|
1467
|
+
html:not([dir='rtl']) .k1a7joe8{border-top-right-radius:20px}
|
|
1468
|
+
html[dir='rtl'] .k1a7joe8{border-top-left-radius:20px}
|
|
1469
|
+
html:not([dir='rtl']) .k1jo73ug{margin-right:auto}
|
|
1470
|
+
html[dir='rtl'] .k1jo73ug{margin-left:auto}
|
|
1471
|
+
.k239c91b{color:rgba(var(--inverse-rgb),.8)}
|
|
1472
|
+
.k2bacm8l{color:var(--primary-stronger)}
|
|
1473
|
+
.k2umuq2k{bottom:32px}
|
|
1474
|
+
.k35l1n51{color:var(--text-primary-strong)}
|
|
1475
|
+
html:not([dir='rtl']) .k3h23tga{padding-right:var(--chat-spacing)}
|
|
1476
|
+
html[dir='rtl'] .k3h23tga{padding-left:var(--chat-spacing)}
|
|
1477
|
+
.k45dudtp{height:60px}
|
|
1478
|
+
.k46w8fxw{transition-timing-function:var(--t-ease)}
|
|
1479
|
+
.k4bq6kvk{background-color:var(--avatar-circle-green)}
|
|
1480
|
+
html:not([dir='rtl']) .k4wy2cgb{padding-left:7px}
|
|
1481
|
+
html[dir='rtl'] .k4wy2cgb{padding-right:7px}
|
|
1482
|
+
.k5z04t9s{align-self:start}
|
|
1483
|
+
html:not([dir='rtl']) .k6f31xd0{border-top-left-radius:12px}
|
|
1484
|
+
html[dir='rtl'] .k6f31xd0{border-top-right-radius:12px}
|
|
1485
|
+
html:not([dir='rtl']) .k6hyhuy2{right:13px}
|
|
1486
|
+
html[dir='rtl'] .k6hyhuy2{left:13px}
|
|
1487
|
+
.k6px2m13{background-color:var(--avatar-circle-gray-light)}
|
|
1488
|
+
html:not([dir='rtl']) .k6y3xtnu{margin-left:3px}
|
|
1489
|
+
html[dir='rtl'] .k6y3xtnu{margin-right:3px}
|
|
1490
|
+
.k8kmlv7u{background-color:var(--ptt-ooc-avatar-background)}
|
|
1491
|
+
.k9cretck{line-height:22px}
|
|
1492
|
+
.kanlod6e{height:1px}
|
|
1493
|
+
.kaq19mkm{opacity:var(--dimmed)}
|
|
1494
|
+
.kb1vfvhz{animation-duration:10s}
|
|
1495
|
+
.kbne4t5p{vertical-align:text-bottom}
|
|
1496
|
+
.kbtdaxqp{max-width:246px}
|
|
1497
|
+
.kc4t2p4u{background-position-x:center}
|
|
1498
|
+
.kcgo1i74{justify-content:flex-end}
|
|
1499
|
+
.kcq1et6t{color:var(--status-secondary)}
|
|
1500
|
+
@keyframes kd4yxhpv-B{0%{transform:translateY(17px);}100%{transform:translateY(-16px);}}
|
|
1501
|
+
.kenirpp9{grid-template-rows:repeat(auto-fill,var(--sticker-size-store))}
|
|
1502
|
+
.kfa44f3y{top:200px}
|
|
1503
|
+
html:not([dir='rtl']) .kfr1vweg{border-bottom-left-radius:20px}
|
|
1504
|
+
html[dir='rtl'] .kfr1vweg{border-bottom-right-radius:20px}
|
|
1505
|
+
.kgc6pkg6{height:93px}
|
|
1506
|
+
.kh4n4d4z{-webkit-font-smoothing:antialiased}
|
|
1507
|
+
.kh81x8bz{width:38px}
|
|
1508
|
+
html:not([dir='rtl']) .khscay3k{padding-left:20px}
|
|
1509
|
+
html[dir='rtl'] .khscay3k{padding-right:20px}
|
|
1510
|
+
.khvhiq1o{font-family:Noto-Emoji,sans-serif}
|
|
1511
|
+
.kiiy14zj{margin-top:2px}
|
|
1512
|
+
html:not([dir='rtl']) .kjemk6od{margin-right:3px}
|
|
1513
|
+
html[dir='rtl'] .kjemk6od{margin-left:3px}
|
|
1514
|
+
.kji9i36c{transition-delay:.4s}
|
|
1515
|
+
html:not([dir='rtl']) .kjjye8e3{padding-left:14px}
|
|
1516
|
+
html[dir='rtl'] .kjjye8e3{padding-right:14px}
|
|
1517
|
+
.kkfs9yjl{top:-5px}
|
|
1518
|
+
.kl1dhzdn{animation-timing-function:var(--t-ease)}
|
|
1519
|
+
.km15ofqp{min-width:50px}
|
|
1520
|
+
.kmqqq083{margin-top:18px}
|
|
1521
|
+
.kojwoqec{visibility:hidden}
|
|
1522
|
+
html:not([dir='rtl']) .kozhillt{margin-left:77px}
|
|
1523
|
+
html[dir='rtl'] .kozhillt{margin-right:77px}
|
|
1524
|
+
.kpdgp91a{float:left}
|
|
1525
|
+
.kpwy2cir{margin-top:50px}
|
|
1526
|
+
.kqpkm0zi{visibility:hidden!important}
|
|
1527
|
+
.kqvcv5rh{background-color:var(--chat-info-drawer-thumb-background)}
|
|
1528
|
+
.kr1k453a{width:inherit}
|
|
1529
|
+
.kr3beu63{min-width:var(--quoted-compose-height-full)}
|
|
1530
|
+
.kr606f8j{min-width:164px}
|
|
1531
|
+
.ktbp76dp{max-width:var(--width-msg-bubble-with-media)}
|
|
1532
|
+
.ktfrpxia{min-width:0}
|
|
1533
|
+
html:not([dir='rtl']) .ku3lw4j3{right:15px}
|
|
1534
|
+
html[dir='rtl'] .ku3lw4j3{left:15px}
|
|
1535
|
+
html:not([dir='rtl']) .ku7dt4i2{padding-left:26px}
|
|
1536
|
+
html[dir='rtl'] .ku7dt4i2{padding-right:26px}
|
|
1537
|
+
.kuk548i2{font-size:1.875rem}
|
|
1538
|
+
.kuml4n87{color:var(--ptt-text)}
|
|
1539
|
+
.kupmgzgy{text-overflow:clip}
|
|
1540
|
+
.kv0r5hzt{color:var(--icon-bright-highlight)}
|
|
1541
|
+
.kv6wexeh{margin-top:-4px}
|
|
1542
|
+
html:not([dir='rtl']) .kvbanpuc{padding-right:32px}
|
|
1543
|
+
html[dir='rtl'] .kvbanpuc{padding-left:32px}
|
|
1544
|
+
.kvdvyush{line-height:var(--line-height-quoted)}
|
|
1545
|
+
.kvmx9pbu{cursor:-webkit-grabbing;cursor:grabbing}
|
|
1546
|
+
.kw851w1p{color:rgba(var(--primary-strong-rgb),.32)}
|
|
1547
|
+
.kwjb00gf{bottom:-42px}
|
|
1548
|
+
.kwqfpmxe{filter:blur(20px)}
|
|
1549
|
+
.kx1rlajt{background-color:rgba(var(--overlay-rgb),.5)}
|
|
1550
|
+
.ky3f94nk{color:var(--active-tab-marker)}
|
|
1551
|
+
.ky53r25y{background-color:rgba(11,20,26,.04)}
|
|
1552
|
+
html:not([dir='rtl']) .kyc7k6mt{padding-right:15px}
|
|
1553
|
+
html[dir='rtl'] .kyc7k6mt{padding-left:15px}
|
|
1554
|
+
html:not([dir='rtl']) .kygtoxk5{border-top-left-radius:11px}
|
|
1555
|
+
html[dir='rtl'] .kygtoxk5{border-top-right-radius:11px}
|
|
1556
|
+
.kyitrrqy{margin-top:36px}
|
|
1557
|
+
.kyr91zaj{bottom:-30px}
|
|
1558
|
+
.kzgl1sas{stroke-dasharray:1,150}
|
|
1559
|
+
.kzotrnxx{width:var(--quoted-compose-height-full)}
|
|
1560
|
+
.kzrzzy77{color:var(--notification-e2e-icon)}
|
|
1561
|
+
.kzxpayn5{color:var(--gray-400)}
|
|
1562
|
+
.kzyzudjh{margin-bottom:3px}
|
|
1563
|
+
.l07amlnk{flex-basis:1px}
|
|
1564
|
+
.l0vqccxk{line-height:1.5385}
|
|
1565
|
+
html:not([dir='rtl']) .l147y7tb{border-top-left-radius:6px}
|
|
1566
|
+
html[dir='rtl'] .l147y7tb{border-top-right-radius:6px}
|
|
1567
|
+
.l1l4so3b{line-height:1.1429}
|
|
1568
|
+
html:not([dir='rtl']) .l29l74oy{margin-left:60px}
|
|
1569
|
+
html[dir='rtl'] .l29l74oy{margin-right:60px}
|
|
1570
|
+
.l33m68ws{align-self:stretch}
|
|
1571
|
+
.l355kaf8{z-index:var(--layer-3)}
|
|
1572
|
+
html:not([dir='rtl']) .l3dnfgho{margin-left:-1px}
|
|
1573
|
+
html[dir='rtl'] .l3dnfgho{margin-right:-1px}
|
|
1574
|
+
.l3hfgdr1{left:50%}
|
|
1575
|
+
html:not([dir='rtl']) .l3k7h4x6{padding-left:50px}
|
|
1576
|
+
html[dir='rtl'] .l3k7h4x6{padding-right:50px}
|
|
1577
|
+
html:not([dir='rtl']) .l5pmshjt{border-top-right-radius:calc(var(--radius-app) + 1px)}
|
|
1578
|
+
html[dir='rtl'] .l5pmshjt{border-top-left-radius:calc(var(--radius-app) + 1px)}
|
|
1579
|
+
html:not([dir='rtl']) .l5wf47vo{right:40px}
|
|
1580
|
+
html[dir='rtl'] .l5wf47vo{left:40px}
|
|
1581
|
+
.l5wrc0op{color:var(--status-link-preview-title)}
|
|
1582
|
+
.l5xxxszt{padding-bottom:var(--padding-psa-message)}
|
|
1583
|
+
.l64xl67m{bottom:56px}
|
|
1584
|
+
.l7jjieqr{display:inline-block}
|
|
1585
|
+
.l7ubuiw1{padding-bottom:54px}
|
|
1586
|
+
.l85iiqla{line-height:1.3125}
|
|
1587
|
+
html:not([dir='rtl']) .l8dmboli{padding-left:var(--blur-radius-thumbnail)}
|
|
1588
|
+
html[dir='rtl'] .l8dmboli{padding-right:var(--blur-radius-thumbnail)}
|
|
1589
|
+
html:not([dir='rtl']) .l8fojup5{border-top-left-radius:var(--radius-thumb)}
|
|
1590
|
+
html[dir='rtl'] .l8fojup5{border-top-right-radius:var(--radius-thumb)}
|
|
1591
|
+
@keyframes l9dax0qz-B{0%{transform:scale(.01);}50%{transform:scale(1.1);}100%{transform:scale(1);}}
|
|
1592
|
+
html:not([dir='rtl']) .l9g3jx6n{padding-right:16px}
|
|
1593
|
+
html[dir='rtl'] .l9g3jx6n{padding-left:16px}
|
|
1594
|
+
.la59b5bx{background-color:var(--media-editor-video-caption-input-background)}
|
|
1595
|
+
.lak21jic{font-size:0.6875rem}
|
|
1596
|
+
.lalctav4{margin-left:8px}
|
|
1597
|
+
.laorhtua{max-width:100%}
|
|
1598
|
+
.lb5m6g5c{flex-basis:auto}
|
|
1599
|
+
.lbj9vhti{background-color:var(--switch-button-color)}
|
|
1600
|
+
.lbzzw5jd{background-color:var(--ptt-draft-waveform-background)}
|
|
1601
|
+
.lcw3x5qt{background-color:var(--avatar-circle-green-lighter)}
|
|
1602
|
+
.lds9pm4u{height:inherit}
|
|
1603
|
+
.le5p0ye3{white-space:nowrap}
|
|
1604
|
+
.lemzf3q7{min-width:var(--quote-right-margin)}
|
|
1605
|
+
.lffynu9d{height:600px}
|
|
1606
|
+
html:not([dir='rtl']) .lfum0007{margin-right:30px}
|
|
1607
|
+
html[dir='rtl'] .lfum0007{margin-left:30px}
|
|
1608
|
+
.lgn58c33{--T68779821:0 0 0 2px rgba(var(--color-blue-light-rgb),.4);box-shadow:0 0 0 2px rgba(var(--color-blue-light-rgb),.4)}
|
|
1609
|
+
.lgxs6e1q{--T68779821:0 0 0 2px rgba(var(--focus-rgb),.5);box-shadow:0 0 0 2px rgba(var(--focus-rgb),.5)}
|
|
1610
|
+
.lhcgb2gc{padding-bottom:48px}
|
|
1611
|
+
.lhggkp7q{position:absolute}
|
|
1612
|
+
.lhhjz8ro{font-size:2.1875rem}
|
|
1613
|
+
.lhj4utae{text-overflow:ellipsis}
|
|
1614
|
+
.lhjw8glk{grid-row-gap:32px}
|
|
1615
|
+
html:not([dir='rtl']) .lhp4ctto{margin-left:7px}
|
|
1616
|
+
html[dir='rtl'] .lhp4ctto{margin-right:7px}
|
|
1617
|
+
.lhsttmr3{-webkit-clip-path:polygon(0 0,0 100%,51% 100%,44% 63%,49% 66%,51% 64%,51% 61%,53% 60%,49% 55%,44% 1%);clip-path:polygon(0 0,0 100%,51% 100%,44% 63%,49% 66%,51% 64%,51% 61%,53% 60%,49% 55%,44% 1%)}
|
|
1618
|
+
.lia7vegv{will-change:scale}
|
|
1619
|
+
.lidbxt4q{left:5px}
|
|
1620
|
+
.ligcydkd{width:280px}
|
|
1621
|
+
.lignnmtc{min-height:72px}
|
|
1622
|
+
html:not([dir='rtl']) .ljrqcn24{text-align:left}
|
|
1623
|
+
html[dir='rtl'] .ljrqcn24{text-align:right}
|
|
1624
|
+
html:not([dir='rtl']) .lk91ofgv{padding-right:36px}
|
|
1625
|
+
html[dir='rtl'] .lk91ofgv{padding-left:36px}
|
|
1626
|
+
.lk9bdx0e{width:320px}
|
|
1627
|
+
.lkhkxwyq{flex-wrap:wrap}
|
|
1628
|
+
.lkjmyc96{background-color:var(--drawer-section-background)}
|
|
1629
|
+
.llkbrke6{min-width:100%}
|
|
1630
|
+
html:not([dir='rtl']) .llnowng2{border-top-left-radius:5px}
|
|
1631
|
+
html[dir='rtl'] .llnowng2{border-top-right-radius:5px}
|
|
1632
|
+
html:not([dir='rtl']) .llwlbyh8{border-bottom-right-radius:11px}
|
|
1633
|
+
html[dir='rtl'] .llwlbyh8{border-bottom-left-radius:11px}
|
|
1634
|
+
.lmoo7qev{background-color:var(--icon-disabled)}
|
|
1635
|
+
.lmuv1eak{margin-bottom:-15px}
|
|
1636
|
+
.ln8gz9je{width:100%}
|
|
1637
|
+
.lna84pfr{padding-top:var(--width-album-extra-padding)}
|
|
1638
|
+
.lniyxyh2{height:40px}
|
|
1639
|
+
html:not([dir='rtl']) .lnjlmjd6{padding-right:5px}
|
|
1640
|
+
html[dir='rtl'] .lnjlmjd6{padding-left:5px}
|
|
1641
|
+
.losjomng{background-color:var(--button-secondary-background)}
|
|
1642
|
+
.lpfcdsx3{color:var(--link-preview)}
|
|
1643
|
+
.lqdozo90{padding-top:13px}
|
|
1644
|
+
html:not([dir='rtl']) .lqec2n0o{padding-left:var(--w-select)}
|
|
1645
|
+
html[dir='rtl'] .lqec2n0o{padding-right:var(--w-select)}
|
|
1646
|
+
.lqpp6bxj{top:-40px}
|
|
1647
|
+
.lqxtw3mz{z-index:20}
|
|
1648
|
+
html:not([dir='rtl']) .lrpjbpgm{border-bottom-left-radius:var(--radius-bubble)}
|
|
1649
|
+
html[dir='rtl'] .lrpjbpgm{border-bottom-right-radius:var(--radius-bubble)}
|
|
1650
|
+
.lrw9n60e{bottom:3px}
|
|
1651
|
+
.ls0cxkps{animation-timing-function:cubic-bezier(.65,.815,.735,.395)}
|
|
1652
|
+
html:not([dir='rtl']) .ltcz4qz9{right:-1px}
|
|
1653
|
+
html[dir='rtl'] .ltcz4qz9{left:-1px}
|
|
1654
|
+
.ltyqj8pj{width:-moz-fit-content;width:fit-content}
|
|
1655
|
+
.lu2z1zfr{transition-timing-function:linear}
|
|
1656
|
+
.lu4oe39f{min-width:150px}
|
|
1657
|
+
.lvug1qsr{animation-name:s71btfur-B}
|
|
1658
|
+
.lxctpz5v{opacity:0!important}
|
|
1659
|
+
.lxozqee9{color:var(--status-primary)}
|
|
1660
|
+
.lxsc1wef{margin-top:24px}
|
|
1661
|
+
.lxvt2vq0{padding-bottom:33%}
|
|
1662
|
+
.ly2gu7o9{position:fixed!important}
|
|
1663
|
+
.ly777k5r{background-image:linear-gradient(to top,rgba(var(--shadow-rgb),0) 0,rgba(var(--shadow-rgb),.002) 1.8%,rgba(var(--shadow-rgb),.006) 4.8%,rgba(var(--shadow-rgb),.016) 9%,rgba(var(--shadow-rgb),.032) 13.9%,rgba(var(--shadow-rgb),.057) 19.8%,rgba(var(--shadow-rgb),.097) 27%,rgba(var(--shadow-rgb),.149) 35%,rgba(var(--shadow-rgb),.213) 43.5%,rgba(var(--shadow-rgb),.294) 53%,rgba(var(--shadow-rgb),.416) 66%,rgba(var(--shadow-rgb),.568) 81%,rgba(var(--shadow-rgb),.769) 100%)}
|
|
1664
|
+
html:not([dir='rtl']) .ly84yby8{padding-left:2em}
|
|
1665
|
+
html[dir='rtl'] .ly84yby8{padding-right:2em}
|
|
1666
|
+
.lyerox4x{background-color:var(--poll-modal-background-color)}
|
|
1667
|
+
.lyrceosr{margin-right:8px}
|
|
1668
|
+
html:not([dir='rtl']) .lysxvg3k{border-bottom-left-radius:calc(var(--radius-app) + 1px)}
|
|
1669
|
+
html[dir='rtl'] .lysxvg3k{border-bottom-right-radius:calc(var(--radius-app) + 1px)}
|
|
1670
|
+
.lyutrhe2{color:var(--unread-marker-text)}
|
|
1671
|
+
html:not([dir='rtl']) .lyvj5e2u{padding-left:16px}
|
|
1672
|
+
html[dir='rtl'] .lyvj5e2u{padding-right:16px}
|
|
1673
|
+
.lzi2pvmc{padding-bottom:24px}
|
|
1674
|
+
.m0h2a7mj{flex-shrink:1}
|
|
1675
|
+
html:not([dir='rtl']) .m0ig7u5t{margin-left:0!important}
|
|
1676
|
+
html[dir='rtl'] .m0ig7u5t{margin-right:0!important}
|
|
1677
|
+
.m0jbzij3{height:59px}
|
|
1678
|
+
.m0s4cjtr{width:20px}
|
|
1679
|
+
.m1c2hokz{word-break:break-all}
|
|
1680
|
+
.m1e7cby3{font-weight:400}
|
|
1681
|
+
html:not([dir='rtl']) .m1h4cxg8{padding-left:30}
|
|
1682
|
+
html[dir='rtl'] .m1h4cxg8{padding-right:30}
|
|
1683
|
+
.m21mz96n{animation-name:hi39smf1-B}
|
|
1684
|
+
html:not([dir='rtl']) .m2gb0jvt{border-top-left-radius:24px}
|
|
1685
|
+
html[dir='rtl'] .m2gb0jvt{border-top-right-radius:24px}
|
|
1686
|
+
.m35p33ho{color:var(--notification-info-icon)}
|
|
1687
|
+
.m3ct2rho{margin-top:auto}
|
|
1688
|
+
.m3h9lho3{width:var(--width-msg-bubble-with-media)}
|
|
1689
|
+
.m3o1wsh7{height:48px}
|
|
1690
|
+
html:not([dir='rtl']) .m3qqxsiz{border-top-right-radius:10px}
|
|
1691
|
+
html[dir='rtl'] .m3qqxsiz{border-top-left-radius:10px}
|
|
1692
|
+
html:not([dir='rtl']) .m4o8c6m0{margin-left:41px}
|
|
1693
|
+
html[dir='rtl'] .m4o8c6m0{margin-right:41px}
|
|
1694
|
+
.m4sq1sd8{color:#243545}
|
|
1695
|
+
html:not([dir='rtl']) .m51t5hoj{margin-left:2rem}
|
|
1696
|
+
html[dir='rtl'] .m51t5hoj{margin-right:2rem}
|
|
1697
|
+
.m62443ks{pointer-events:none}
|
|
1698
|
+
.m6k4hpz6{height:200px}
|
|
1699
|
+
html:not([dir='rtl']) .m7kgcvyw{left:50%}
|
|
1700
|
+
html[dir='rtl'] .m7kgcvyw{right:50%}
|
|
1701
|
+
.m7o6y653{padding-top:var(--blur-radius-thumbnail)}
|
|
1702
|
+
html:not([dir='rtl']) .m8i16etx{border-bottom-right-radius:8px}
|
|
1703
|
+
html[dir='rtl'] .m8i16etx{border-bottom-left-radius:8px}
|
|
1704
|
+
@keyframes m8lv8jz8-B{0%{transform:scale(0);}50%{transform:scale(1.1);}100%{transform:scale(1);}}
|
|
1705
|
+
.m9lpqg3r{height:96px}
|
|
1706
|
+
.ma4rpf0l{margin-top:-2px}
|
|
1707
|
+
.maaasku1{font-size:9pt}
|
|
1708
|
+
.masnrobp{background-color:var(--switch-track-color)}
|
|
1709
|
+
html:not([dir='rtl']) .mavwm6a7{margin-left:26px}
|
|
1710
|
+
html[dir='rtl'] .mavwm6a7{margin-right:26px}
|
|
1711
|
+
.mb8var44{z-index:100}
|
|
1712
|
+
.mbixqzja{stroke:var(--spinner-outgoing)}
|
|
1713
|
+
.mbtxrpqz{z-index:0}
|
|
1714
|
+
html:not([dir='rtl']) .mc6o24uu{padding-left:5px}
|
|
1715
|
+
html[dir='rtl'] .mc6o24uu{padding-right:5px}
|
|
1716
|
+
.mcwxqdig{padding-bottom:11px}
|
|
1717
|
+
.mdtr2l4m{margin-bottom:27px}
|
|
1718
|
+
.mdwxuyu9{height:var(--quoted-compose-height-full)}
|
|
1719
|
+
.meh5ksr1{width:64px!important}
|
|
1720
|
+
.mesvn7sa{fill:var(--status-secondary)}
|
|
1721
|
+
html:not([dir='rtl']) .mf2g8abl{right:3px}
|
|
1722
|
+
html[dir='rtl'] .mf2g8abl{left:3px}
|
|
1723
|
+
.mfzfak1c{color:var(--primary-text)}
|
|
1724
|
+
html:not([dir='rtl']) .mg7w9a8q{margin-right:25px}
|
|
1725
|
+
html[dir='rtl'] .mg7w9a8q{margin-left:25px}
|
|
1726
|
+
.mge1ni6g{isolation:isolate}
|
|
1727
|
+
.mggyuyyy{margin-bottom:42px}
|
|
1728
|
+
.mgp6u6um{width:35px}
|
|
1729
|
+
html:not([dir='rtl']) .mgssq8h7{padding-right:var(--compose-box-left-right-padding)}
|
|
1730
|
+
html[dir='rtl'] .mgssq8h7{padding-left:var(--compose-box-left-right-padding)}
|
|
1731
|
+
html:not([dir='rtl']) .mhcwslh8{padding-left:6px}
|
|
1732
|
+
html[dir='rtl'] .mhcwslh8{padding-right:6px}
|
|
1733
|
+
html:not([dir='rtl']) .mhmt5mju{border-bottom-left-radius:11px}
|
|
1734
|
+
html[dir='rtl'] .mhmt5mju{border-bottom-right-radius:11px}
|
|
1735
|
+
html:not([dir='rtl']) .mhohgsbe{border-bottom-left-radius:calc(var(--radius-app) - 1px)}
|
|
1736
|
+
html[dir='rtl'] .mhohgsbe{border-bottom-right-radius:calc(var(--radius-app) - 1px)}
|
|
1737
|
+
.mhp1pqu9{min-width:24px}
|
|
1738
|
+
.mjl5wphb{animation-timing-function:cubic-bezier(.83,0,.17,1)}
|
|
1739
|
+
html:not([dir='rtl']) .mjn2akup{padding-left:2px}
|
|
1740
|
+
html[dir='rtl'] .mjn2akup{padding-right:2px}
|
|
1741
|
+
html:not([dir='rtl']) .mjscftrx{border-top-right-radius:6px}
|
|
1742
|
+
html[dir='rtl'] .mjscftrx{border-top-left-radius:6px}
|
|
1743
|
+
.mks54fll{transition-timing-function:ease-in-out}
|
|
1744
|
+
.ml33x45x{color:var(--security-icon-lock)}
|
|
1745
|
+
.ml4r5409{text-align:left}
|
|
1746
|
+
.ml8t9l8k{stroke:var(--secondary-lighter)}
|
|
1747
|
+
.mlen7d4n{max-height:544px}
|
|
1748
|
+
html:not([dir='rtl']) .mmj7r7ye{border-bottom-left-radius:10px}
|
|
1749
|
+
html[dir='rtl'] .mmj7r7ye{border-bottom-right-radius:10px}
|
|
1750
|
+
html:not([dir='rtl']) .mmw11n2j{padding-left:var(--width-album-extra-padding)}
|
|
1751
|
+
html[dir='rtl'] .mmw11n2j{padding-right:var(--width-album-extra-padding)}
|
|
1752
|
+
.mmx92utk{animation-name:l9dax0qz-B,sl8wg78j-B}
|
|
1753
|
+
.mnd5airb{color:rgba(var(--icon-strong-rgb),.5)}
|
|
1754
|
+
html:not([dir='rtl']) .mnh9o63b{border-bottom-left-radius:24px}
|
|
1755
|
+
html[dir='rtl'] .mnh9o63b{border-bottom-right-radius:24px}
|
|
1756
|
+
.mnhq3yws{margin-top:2em}
|
|
1757
|
+
.mnqpe3xa{height:55px}
|
|
1758
|
+
.monsh5ao{margin-bottom:$bubble-padding}
|
|
1759
|
+
.mpdn4nr2{margin-bottom:0}
|
|
1760
|
+
.mqqyhd6v{gap:16px}
|
|
1761
|
+
.mr0xwlll{vertical-align:-4px}
|
|
1762
|
+
.mr8pev2x{animation-name:j1z081e5-B}
|
|
1763
|
+
html:not([dir='rtl']) .mrnekr2l{border-top-right-radius:18px}
|
|
1764
|
+
html[dir='rtl'] .mrnekr2l{border-top-left-radius:18px}
|
|
1765
|
+
.ms8wnqe5{fill:var(--primary)}
|
|
1766
|
+
.msavwer2{padding-top:30px}
|
|
1767
|
+
.msvqejku{max-height:102px}
|
|
1768
|
+
.mu5rq31i{width:var(--compose-box-menu-width-status-reply)}
|
|
1769
|
+
.mvf5n2qr{top:5px}
|
|
1770
|
+
.mvj9yovn{bottom:calc(var(--compose-box-top-bottom-padding) + 3px)}
|
|
1771
|
+
.mvxzr2tb{color:var(--danger)}
|
|
1772
|
+
html:not([dir='rtl']) .mw4yctpw{margin-right:4px}
|
|
1773
|
+
html[dir='rtl'] .mw4yctpw{margin-left:4px}
|
|
1774
|
+
.mw9hwy0h{padding-top:26px}
|
|
1775
|
+
.mwp4sxku{max-height:100px}
|
|
1776
|
+
.mx3ldrxl{background-color:var(--poll-invalid-warning-icon-container-background)}
|
|
1777
|
+
.mx6rw3sv{max-width:376px}
|
|
1778
|
+
.my8w5w2u{background-color:var(--switch-button-checked-color)}
|
|
1779
|
+
.myeiuhv9{top:50%}
|
|
1780
|
+
.myel2vfb{padding-bottom:19px}
|
|
1781
|
+
html:not([dir='rtl']) .mykz8fp3{margin-left:-10px}
|
|
1782
|
+
html[dir='rtl'] .mykz8fp3{margin-right:-10px}
|
|
1783
|
+
.mymavskd{color:rgba(var(--primary-strong-rgb),.55)}
|
|
1784
|
+
.myzbk5ck{color:var(--empty-state-icon)}
|
|
1785
|
+
.mz6luxmp{padding-bottom:84px}
|
|
1786
|
+
.n0uige08{animation-name:o1lewlc5-B}
|
|
1787
|
+
.n0ziumnz{padding-bottom:9px}
|
|
1788
|
+
.n1yiu2zv{padding-top:6px}
|
|
1789
|
+
.n25td99q{cursor:move}
|
|
1790
|
+
.n32e9pn8{max-width:540px}
|
|
1791
|
+
.n3bptxsn{padding-bottom:15px}
|
|
1792
|
+
html:not([dir='rtl']) .n3fdhnkw{margin-right:-6px}
|
|
1793
|
+
html[dir='rtl'] .n3fdhnkw{margin-left:-6px}
|
|
1794
|
+
html:not([dir='rtl']) .n3l3zu01{border-bottom-left-radius:14px}
|
|
1795
|
+
html[dir='rtl'] .n3l3zu01{border-bottom-right-radius:14px}
|
|
1796
|
+
.n3nyt3io{cursor:text}
|
|
1797
|
+
.n43pk08i{height:var(--preview-thumb-size)}
|
|
1798
|
+
.n45ix5k8{background-color:var(--border-panel)}
|
|
1799
|
+
html:not([dir='rtl']) .n58sa971{border-bottom-left-radius:50px}
|
|
1800
|
+
html[dir='rtl'] .n58sa971{border-bottom-right-radius:50px}
|
|
1801
|
+
.n5a6z3tu{margin-bottom:-12px}
|
|
1802
|
+
html:not([dir='rtl']) .n642r0m2{right:18px}
|
|
1803
|
+
html[dir='rtl'] .n642r0m2{left:18px}
|
|
1804
|
+
html:not([dir='rtl']) .n6habkpv{margin-left:66px}
|
|
1805
|
+
html[dir='rtl'] .n6habkpv{margin-right:66px}
|
|
1806
|
+
@keyframes n6o53yaz-B{0%{transform:scale(1.2);}70%{opacity:1;transform:scale(1.7);}100%{opacity:0;transform:scale(.1);}}
|
|
1807
|
+
.n73lgpzo{width:var(--compose-box-full-open-menu-width)}
|
|
1808
|
+
.n791o4v8{opacity:.5}
|
|
1809
|
+
.n803nsoz{bottom:40px}
|
|
1810
|
+
.n8lfltvd{gap:24px}
|
|
1811
|
+
.n8sohn9f{max-width:125px}
|
|
1812
|
+
.n9ozkf7y{padding-right:11px}
|
|
1813
|
+
.nammujze{max-height:16px}
|
|
1814
|
+
.nbciif1m{transition-duration:.15s}
|
|
1815
|
+
.nbczt5ty{z-index:var(--layer-2)}
|
|
1816
|
+
.nbipi2bn{font-weight:bold}
|
|
1817
|
+
.ncl55kzk{z-index:9999}
|
|
1818
|
+
.ndlvrqf7{margin-bottom:2em}
|
|
1819
|
+
.neme6l2y{vertical-align:middle}
|
|
1820
|
+
.nfc7olq2{width:49px}
|
|
1821
|
+
.nfki698u{z-index:111}
|
|
1822
|
+
.nfnc8vpt{max-height:535px}
|
|
1823
|
+
.ngycyvoj{margin-bottom:6px}
|
|
1824
|
+
.nhajnb67{width:436px}
|
|
1825
|
+
.nhwamvof{min-height:49px}
|
|
1826
|
+
.nioqejvd{height:calc(100% - 60px)}
|
|
1827
|
+
html:not([dir='rtl']) .nji5cgl4{left:-1px}
|
|
1828
|
+
html[dir='rtl'] .nji5cgl4{right:-1px}
|
|
1829
|
+
.njub1g37{margin-bottom:7px}
|
|
1830
|
+
html:not([dir='rtl']) .nlio6qai{border-bottom-left-radius:9999px}
|
|
1831
|
+
html[dir='rtl'] .nlio6qai{border-bottom-right-radius:9999px}
|
|
1832
|
+
.nlnf8xo7{padding-top:20px}
|
|
1833
|
+
.nlxcpvin{letter-spacing:1.5px}
|
|
1834
|
+
.nmeg1xfo{clip:rect(0 0 0 0)}
|
|
1835
|
+
.nmreelbr{animation-name:eirysc09-B}
|
|
1836
|
+
html:not([dir='rtl']) .nnr224yo{border-bottom-right-radius:99999px}
|
|
1837
|
+
html[dir='rtl'] .nnr224yo{border-bottom-left-radius:99999px}
|
|
1838
|
+
html:not([dir='rtl']) .nntdgyy8{padding-left:19px}
|
|
1839
|
+
html[dir='rtl'] .nntdgyy8{padding-right:19px}
|
|
1840
|
+
.noboit18{height:62px}
|
|
1841
|
+
.notw83rv{opacity:.25}
|
|
1842
|
+
.npn6ik2d{width:calc(var(--width-video-link-preview-bubble) - 6px + 10px)}
|
|
1843
|
+
.nq7eualt{animation-duration:.3s}
|
|
1844
|
+
html:not([dir='rtl']) .nqm9sais{border-bottom-right-radius:var(--radius-bubble)}
|
|
1845
|
+
html[dir='rtl'] .nqm9sais{border-bottom-left-radius:var(--radius-bubble)}
|
|
1846
|
+
html:not([dir='rtl']) .nqtxkp62{padding-left:12px}
|
|
1847
|
+
html[dir='rtl'] .nqtxkp62{padding-right:12px}
|
|
1848
|
+
.nrvfj28n{transition-property:border-color}
|
|
1849
|
+
.ns59xd2u{flex-wrap:wrap-reverse}
|
|
1850
|
+
html:not([dir='rtl']) .nsd82api{border-bottom-right-radius:calc(var(--radius-app) - 1px)}
|
|
1851
|
+
html[dir='rtl'] .nsd82api{border-bottom-left-radius:calc(var(--radius-app) - 1px)}
|
|
1852
|
+
.nt24zk05{background-color:var(--poll-disabled-checked-checkbox-receiver)}
|
|
1853
|
+
.ntadmmlx{height:102px}
|
|
1854
|
+
html:not([dir='rtl']) .ntr8esoy{margin-right:7px}
|
|
1855
|
+
html[dir='rtl'] .ntr8esoy{margin-left:7px}
|
|
1856
|
+
.ntz4oiyn{z-index:101}
|
|
1857
|
+
html:not([dir='rtl']) .nu34rnf1{padding-left:8px}
|
|
1858
|
+
html[dir='rtl'] .nu34rnf1{padding-right:8px}
|
|
1859
|
+
.nu7pwgvd{min-height:0}
|
|
1860
|
+
.nucpke6t{min-width:48px}
|
|
1861
|
+
.nuiuantz{color:var(--chip-button-foreground)}
|
|
1862
|
+
.nv3qcefw{overflow-y:visible}
|
|
1863
|
+
html:not([dir='rtl']) .nvib3uz4{padding-left:76px}
|
|
1864
|
+
html[dir='rtl'] .nvib3uz4{padding-right:76px}
|
|
1865
|
+
html:not([dir='rtl']) .nxn8agaf{margin-left:-4px}
|
|
1866
|
+
html[dir='rtl'] .nxn8agaf{margin-right:-4px}
|
|
1867
|
+
.nylzjxre{margin-top:30px}
|
|
1868
|
+
.nym7wvdi{margin-bottom:1.75rem}
|
|
1869
|
+
.nypubj7v{gap:10px}
|
|
1870
|
+
.nz2484kf{color:transparent}
|
|
1871
|
+
.nz9pocw8{color:var(--button-round-background)}
|
|
1872
|
+
html:not([dir='rtl']) .nzcjdldu{margin-left:16px}
|
|
1873
|
+
html[dir='rtl'] .nzcjdldu{margin-right:16px}
|
|
1874
|
+
.o0rubyzf{color:var(--link)}
|
|
1875
|
+
.o0vrdr7e{max-height:90px}
|
|
1876
|
+
html:not([dir='rtl']) .o0wkt7aw{border-bottom-left-radius:2px}
|
|
1877
|
+
html[dir='rtl'] .o0wkt7aw{border-bottom-right-radius:2px}
|
|
1878
|
+
.o12a8ak1{transform-origin:left}
|
|
1879
|
+
.o12azb7x{background-color:var(--poll-bar-fill-sender)}
|
|
1880
|
+
html:not([dir='rtl']) .o1cmhq28{margin-left:10.5px}
|
|
1881
|
+
html[dir='rtl'] .o1cmhq28{margin-right:10.5px}
|
|
1882
|
+
.o1dusru6{height:33px}
|
|
1883
|
+
@keyframes o1lewlc5-B{from{opacity:0;}to{opacity:1;}}
|
|
1884
|
+
.o22r6p4i{width:76px}
|
|
1885
|
+
.o27ac25e{background-color:var(--product-placeholder-background)}
|
|
1886
|
+
.o2es7gts{align-self:center}
|
|
1887
|
+
.o2sglzf9{color:rgba(var(--danger-rgb),.65)}
|
|
1888
|
+
.o2v2jkg7{color:var(--button-secondary)}
|
|
1889
|
+
html:not([dir='rtl']) .o2zu3hjb{border-bottom-left-radius:50%}
|
|
1890
|
+
html[dir='rtl'] .o2zu3hjb{border-bottom-right-radius:50%}
|
|
1891
|
+
.o3jcrxmo{color:var(--message-placeholder-icon)}
|
|
1892
|
+
.o3plsq22{max-height:calc(var(--preview-thumb-size) * 3)}
|
|
1893
|
+
.o404977b{min-height:151px}
|
|
1894
|
+
.o4oavg8t{color:var(--map-overlay-foreground)}
|
|
1895
|
+
.o4u7okr9{justify-content:space-between}
|
|
1896
|
+
.o779q1nt{max-width:650px}
|
|
1897
|
+
.o8fg3bdd{background-color:var(--map-overlay-background)}
|
|
1898
|
+
html:not([dir='rtl']) .o8gxb310{--T68779821:0 2px 5px 0 rgba(var(--shadow-rgb),.26),0 2px 10px 0 rgba(var(--shadow-rgb),.16);box-shadow:0 2px 5px 0 rgba(var(--shadow-rgb),.26),0 2px 10px 0 rgba(var(--shadow-rgb),.16)}
|
|
1899
|
+
html[dir='rtl'] .o8gxb310{--T68779821:0 2px 5px 0 rgba(var(--shadow-rgb),.26), 0 2px 10px 0 rgba(var(--shadow-rgb),.16);box-shadow:0 2px 5px 0 rgba(var(--shadow-rgb),.26), 0 2px 10px 0 rgba(var(--shadow-rgb),.16)}
|
|
1900
|
+
html:not([dir='rtl']) .o93wvyfv{border-top-right-radius:3px}
|
|
1901
|
+
html[dir='rtl'] .o93wvyfv{border-top-left-radius:3px}
|
|
1902
|
+
.o9i7y497{margin-top:-1px}
|
|
1903
|
+
.o9wlm8ph{-webkit-transition:-webkit-filter .16s linear}
|
|
1904
|
+
.oa9ii99z{transition-timing-function:cubic-bezier(.4,0,.2,1)}
|
|
1905
|
+
.oauresqk{animation-duration:1s}
|
|
1906
|
+
.obt84bhp{margin-top:-24px}
|
|
1907
|
+
.oc1ubkv0{margin-right:auto}
|
|
1908
|
+
.ocd2b0bc{padding-top:3px}
|
|
1909
|
+
.ocs0cmsa{min-height:24px}
|
|
1910
|
+
.octy2vkd{color:white}
|
|
1911
|
+
.odoy9p39{color:var(--ptt-draft-button-stop)}
|
|
1912
|
+
html:not([dir='rtl']) .oer0kere{border-top-left-radius:9999px}
|
|
1913
|
+
html[dir='rtl'] .oer0kere{border-top-right-radius:9999px}
|
|
1914
|
+
.ofb4x1dx{margin-bottom:22px}
|
|
1915
|
+
.ofejerhi{text-transform:uppercase}
|
|
1916
|
+
.ofrvpfun{min-height:165px}
|
|
1917
|
+
.og7unhan{background-color:rgba(233,28,67,.3)}
|
|
1918
|
+
html:not([dir='rtl']) .ohq8n1fk{right:12px}
|
|
1919
|
+
html[dir='rtl'] .ohq8n1fk{left:12px}
|
|
1920
|
+
.ohuqqxaf{height:45px}
|
|
1921
|
+
html:not([dir='rtl']) .ohzpzhf7{border-top-right-radius:60px}
|
|
1922
|
+
html[dir='rtl'] .ohzpzhf7{border-top-left-radius:60px}
|
|
1923
|
+
.oimozejp{width:19.5px}
|
|
1924
|
+
html:not([dir='rtl']) .ojci89ib{margin-right:1px}
|
|
1925
|
+
html[dir='rtl'] .ojci89ib{margin-left:1px}
|
|
1926
|
+
html:not([dir='rtl']) .okbql4zm{left:6px}
|
|
1927
|
+
html[dir='rtl'] .okbql4zm{right:6px}
|
|
1928
|
+
.okhds9gt{height:$height-pane-footer}
|
|
1929
|
+
.okm7a8wg{-webkit-clip-path:inset(50%);clip-path:inset(50%)}
|
|
1930
|
+
.okw0zzku{cursor:auto}
|
|
1931
|
+
html:not([dir='rtl']) .om6y7gxh{margin-right:2px}
|
|
1932
|
+
html[dir='rtl'] .om6y7gxh{margin-left:2px}
|
|
1933
|
+
.om7fnf5u{padding-top:1.5px}
|
|
1934
|
+
.omdkrxc4{line-height:1.47}
|
|
1935
|
+
.omzt3tek{line-height:14px}
|
|
1936
|
+
html:not([dir='rtl']) .ooj5yc5b{border-top-right-radius:8px}
|
|
1937
|
+
html[dir='rtl'] .ooj5yc5b{border-top-left-radius:8px}
|
|
1938
|
+
html:not([dir='rtl']) .oov82czi{border-bottom-left-radius:25px}
|
|
1939
|
+
html[dir='rtl'] .oov82czi{border-bottom-right-radius:25px}
|
|
1940
|
+
.opbtbchl{top:-34px}
|
|
1941
|
+
.opp68qpq{margin-top:10px}
|
|
1942
|
+
.oq31bsqd{padding-bottom:8px}
|
|
1943
|
+
.oq44ahr5{flex-shrink:0}
|
|
1944
|
+
.oqp0d33z{margin-bottom:25px}
|
|
1945
|
+
.or9x5nie{margin-bottom:8px}
|
|
1946
|
+
.ora14ekb{overflow-x:visible}
|
|
1947
|
+
.ormcsqwh{overflow-x:scroll}
|
|
1948
|
+
html:not([dir='rtl']) .osk001mr{border-bottom-right-radius:999px}
|
|
1949
|
+
html[dir='rtl'] .osk001mr{border-bottom-left-radius:999px}
|
|
1950
|
+
.osuelnrh{background-color:var(--product-thumb-background)}
|
|
1951
|
+
.osvl0z4i{padding-left:19px}
|
|
1952
|
+
.osz0hll6{animation-name:sl8wg78j-B}
|
|
1953
|
+
.ot1opfol{width:var(--preview-thumb-size-small)}
|
|
1954
|
+
.otypc3uk{width:var(--quote-right-margin)}
|
|
1955
|
+
.ou3430m0{-webkit-backface-visibility:hidden;backface-visibility:hidden}
|
|
1956
|
+
.ou6eaia9{right:7px}
|
|
1957
|
+
.ov069gg1{height:38px}
|
|
1958
|
+
.ovhn1urg{background-color:var(--unread-marker-background)}
|
|
1959
|
+
.ovllcyds{font-size:0.8125rem}
|
|
1960
|
+
.ovutvysd{background-color:white}
|
|
1961
|
+
.oxe6ytxh{background-image:linear-gradient(rgba(0,0,0,0) 70%,rgba(0,0,0,.6) 100%)}
|
|
1962
|
+
.oxqu41e7{width:5%}
|
|
1963
|
+
.oxt0snpo{height:258px}
|
|
1964
|
+
.oxu48h6d{background-color:var(--gray-60)}
|
|
1965
|
+
.oybnjv0e{top:calc((var(--compose-box-menu-height) - 2 * var(--compose-box-top-bottom-padding) - 26) * .5)}
|
|
1966
|
+
html:not([dir='rtl']) .oybqnh0n{margin-left:48px}
|
|
1967
|
+
html[dir='rtl'] .oybqnh0n{margin-right:48px}
|
|
1968
|
+
html:not([dir='rtl']) .oz083wsx{margin-right:12px}
|
|
1969
|
+
html[dir='rtl'] .oz083wsx{margin-left:12px}
|
|
1970
|
+
html:not([dir='rtl']) .oz0g9ue8{margin-left:6px}
|
|
1971
|
+
html[dir='rtl'] .oz0g9ue8{margin-right:6px}
|
|
1972
|
+
.p0tugu6q{padding-top:2px!important}
|
|
1973
|
+
.p1zdgkh6{background-color:var(--modal-backdrop)}
|
|
1974
|
+
.p2rjqpw5{opacity:.9}
|
|
1975
|
+
html:not([dir='rtl']) .p2tfx3a3{padding-left:calc(50% - 250px)}
|
|
1976
|
+
html[dir='rtl'] .p2tfx3a3{padding-right:calc(50% - 250px)}
|
|
1977
|
+
.p357zi0d{display:flex}
|
|
1978
|
+
html:not([dir='rtl']) .p3lsiedt{margin-left:5px}
|
|
1979
|
+
html[dir='rtl'] .p3lsiedt{margin-right:5px}
|
|
1980
|
+
.p3nha244{transition-property:height}
|
|
1981
|
+
.p3z46sn7{animation-name:n6o53yaz-B}
|
|
1982
|
+
.p41u7gyj{background-color:var(--pip-player-background)}
|
|
1983
|
+
@keyframes p457vbfl-B{100%{background-position-x:100%;}}
|
|
1984
|
+
.p45gu9p9{padding-bottom:var(--bubble-padding)}
|
|
1985
|
+
.p4t1lx4y{transition-duration:.3s}
|
|
1986
|
+
.p56o3wws{width:70%}
|
|
1987
|
+
.p5g9vl8k{color:var(--text-primary)}
|
|
1988
|
+
.p6im964z{top:-999999px}
|
|
1989
|
+
.p6nhtbpp{color:var(--business-name-subtitle)}
|
|
1990
|
+
.p7idzaix{color:var(--gray-30)}
|
|
1991
|
+
.p9a4hubg{padding-bottom:14px}
|
|
1992
|
+
.p9fp32ui{font-size:1.25rem}
|
|
1993
|
+
.pa888v5w{transition-duration:.5s}
|
|
1994
|
+
.paaq2zjn{top:calc(-1 * var(--blur-radius-thumbnail))}
|
|
1995
|
+
.pahbacuu{color:var(--poll-invalid-warning-icon-color)}
|
|
1996
|
+
html:not([dir='rtl']) .pap8jtso{border-top-left-radius:20%}
|
|
1997
|
+
html[dir='rtl'] .pap8jtso{border-top-right-radius:20%}
|
|
1998
|
+
html:not([dir='rtl']) .paxyh2gw{border-top-right-radius:var(--radius-thumb)}
|
|
1999
|
+
html[dir='rtl'] .paxyh2gw{border-top-left-radius:var(--radius-thumb)}
|
|
2000
|
+
.pazt69qo{min-height:56px}
|
|
2001
|
+
html:not([dir='rtl']) .pbp0z3j0{padding-right:13px}
|
|
2002
|
+
html[dir='rtl'] .pbp0z3j0{padding-left:13px}
|
|
2003
|
+
.pbzwqulz{background-color:var(--ptt-gray-badge)}
|
|
2004
|
+
.pcbmd69e{padding-bottom:18px}
|
|
2005
|
+
.pcpjcif5{z-index:-10}
|
|
2006
|
+
.pcx1034m{margin-top:-30px}
|
|
2007
|
+
.pdhqso7h{background-color:var(--poll-bar-fill-receiver)}
|
|
2008
|
+
.pel5o5rz{margin-bottom:0!important}
|
|
2009
|
+
.pev8zhet{animation-name:pq09yad9-B}
|
|
2010
|
+
.pewhpk3o{animation-name:pzfsvsci-B}
|
|
2011
|
+
.pext2d22{animation-duration:.4s}
|
|
2012
|
+
html:not([dir='rtl']) .pfv1hzq5{padding-right:var(--blur-radius-thumbnail)}
|
|
2013
|
+
html[dir='rtl'] .pfv1hzq5{padding-left:var(--blur-radius-thumbnail)}
|
|
2014
|
+
.pglj95m3{z-index:var(--layer-9)}
|
|
2015
|
+
.pgz13gmm{bottom:-4px}
|
|
2016
|
+
.ph7hol3q{color:var(--link-preview-lighter)}
|
|
2017
|
+
.phqmzxqs{font-size:100%}
|
|
2018
|
+
.phxz9vjq{margin-top:1.5em}
|
|
2019
|
+
html:not([dir='rtl']) .pi22tx4b{border-bottom-right-radius:25px}
|
|
2020
|
+
html[dir='rtl'] .pi22tx4b{border-bottom-left-radius:25px}
|
|
2021
|
+
.pjbr9b9i{padding-bottom:7px}
|
|
2022
|
+
.pjnyesq6{top:47px}
|
|
2023
|
+
.pkk2s34l{background-color:var(--video-player-background)}
|
|
2024
|
+
.pknvbjv8{bottom:80px}
|
|
2025
|
+
html:not([dir='rtl']) .pkud3j3x{border-bottom-left-radius:6px}
|
|
2026
|
+
html[dir='rtl'] .pkud3j3x{border-bottom-right-radius:6px}
|
|
2027
|
+
html:not([dir='rtl']) .pl8jymf4{left:58px}
|
|
2028
|
+
html[dir='rtl'] .pl8jymf4{right:58px}
|
|
2029
|
+
.plagcuwv{max-width:380px}
|
|
2030
|
+
.plmgw4ct{background-color:var(--poll-bar-container-receiver)}
|
|
2031
|
+
.pm5hny62{color:var(--secondary)}
|
|
2032
|
+
html:not([dir='rtl']) .pmmx02fg{margin-left:-7px}
|
|
2033
|
+
html[dir='rtl'] .pmmx02fg{margin-right:-7px}
|
|
2034
|
+
html:not([dir='rtl']) .pnfw7ual{padding-right:58px}
|
|
2035
|
+
html[dir='rtl'] .pnfw7ual{padding-left:58px}
|
|
2036
|
+
html:not([dir='rtl']) .poiibwu2{margin-right:24px}
|
|
2037
|
+
html[dir='rtl'] .poiibwu2{margin-left:24px}
|
|
2038
|
+
html:not([dir='rtl']) .pox2cllw{border-top-right-radius:25px}
|
|
2039
|
+
html[dir='rtl'] .pox2cllw{border-top-left-radius:25px}
|
|
2040
|
+
.pp1m8hwk{color:var(--intro-secondary)}
|
|
2041
|
+
.pp8r7oc8{color:rgba(var(--inverse-rgb),.9)}
|
|
2042
|
+
.ppled2lx{height:100%}
|
|
2043
|
+
.pppsat04{padding-right:0}
|
|
2044
|
+
.ppup7n5u{z-index:990}
|
|
2045
|
+
.ppv8chjk{background-color:rgba(var(--white-rgb),.2)}
|
|
2046
|
+
.ppypbuwx{padding-top:2px}
|
|
2047
|
+
@keyframes pq09yad9-B{0%{transform:translateY(-17px);}100%{transform:translateY(0);}}
|
|
2048
|
+
.pqvv99ib{animation-timing-function:cubic-bezier(.1,.82,.25,1);}
|
|
2049
|
+
.prstqlfy{min-width:90px}
|
|
2050
|
+
.prv4wu9t{color:var(--secondary-stronger)}
|
|
2051
|
+
.przvwfww{padding-bottom:0}
|
|
2052
|
+
html:not([dir='rtl']) .psacz3a6{padding-right:var(--width-album-extra-padding)}
|
|
2053
|
+
html[dir='rtl'] .psacz3a6{padding-left:var(--width-album-extra-padding)}
|
|
2054
|
+
.psqdn66s{-webkit-line-clamp:10}
|
|
2055
|
+
.ptatjang{left:4px}
|
|
2056
|
+
.ptcoeott{stroke:var(--spinner-incoming)}
|
|
2057
|
+
.ptxfukc7{height:124px}
|
|
2058
|
+
.pu4k07i0{transition-timing-function:ease}
|
|
2059
|
+
.pu5bh2m8{background-color:var(--forward-caption-preview-content)}
|
|
2060
|
+
.puskumha{background-color:var(--tooltip-background)}
|
|
2061
|
+
.pvbam5uh{line-height:24px}
|
|
2062
|
+
.px10qoeu{z-index:200}
|
|
2063
|
+
html:not([dir='rtl']) .pxobjmf4{padding-left:var(--padding-drawer-side)}
|
|
2064
|
+
html[dir='rtl'] .pxobjmf4{padding-right:var(--padding-drawer-side)}
|
|
2065
|
+
.pxvlsfnc{padding-top:15px}
|
|
2066
|
+
.pydpkpus{height:90px}
|
|
2067
|
+
.pz0xruzv{margin-bottom:15px}
|
|
2068
|
+
.pz6hjxg7{width:20px!important}
|
|
2069
|
+
html:not([dir='rtl']) .pz6oj2k2{border-top-right-radius:50px}
|
|
2070
|
+
html[dir='rtl'] .pz6oj2k2{border-top-left-radius:50px}
|
|
2071
|
+
@keyframes pzfsvsci-B{0%{right:100%;left:-35%;}60%{right:-90%;left:100%;}100%{right:-90%;left:100%;}}
|
|
2072
|
+
.q1n4p668{height:56px}
|
|
2073
|
+
.q1nnjopg{padding-bottom:17px}
|
|
2074
|
+
.q1tx93la{padding-bottom:28px}
|
|
2075
|
+
.q297boen{z-index:1001}
|
|
2076
|
+
html:not([dir='rtl']) .q471nw87{margin-right:5px}
|
|
2077
|
+
html[dir='rtl'] .q471nw87{margin-left:5px}
|
|
2078
|
+
.q5jc98e4{line-height:16px}
|
|
2079
|
+
.q5zg7svt{animation-delay:.1s}
|
|
2080
|
+
.q6wg26sa{line-height:1.3}
|
|
2081
|
+
.q70jrbp7{color:var(--chat-meta)}
|
|
2082
|
+
.q7l348o2{flex-basis:50%}
|
|
2083
|
+
.q7zw29cd{height:70px}
|
|
2084
|
+
.q82cfhbg{right:20px}
|
|
2085
|
+
.q9lllk4z{font-size:1.5rem}
|
|
2086
|
+
.qaop2s2o{stroke:rgba(var(--white-rgb),.9)}
|
|
2087
|
+
.qbqilfqo{padding-top:1px}
|
|
2088
|
+
html:not([dir='rtl']) .qcdmbpik{padding-right:20}
|
|
2089
|
+
html[dir='rtl'] .qcdmbpik{padding-left:20}
|
|
2090
|
+
.qcuzhokb{color:var(--reaction-button)}
|
|
2091
|
+
.qdcfy29e{max-height:400px}
|
|
2092
|
+
.qddwjlxl{margin-left:5px}
|
|
2093
|
+
html:not([dir='rtl']) .qf85nsmm{padding-right:var(--bubble-padding)}
|
|
2094
|
+
html[dir='rtl'] .qf85nsmm{padding-left:var(--bubble-padding)}
|
|
2095
|
+
.qfejxiq4{text-align:center}
|
|
2096
|
+
.qg52vu03{line-height:25px}
|
|
2097
|
+
.qg8w82as{width:19px}
|
|
2098
|
+
.qgpfrw6h{height:22px}
|
|
2099
|
+
.qibyn6m3{display:none}
|
|
2100
|
+
html:not([dir='rtl']) .qiohso4h{padding-left:1px}
|
|
2101
|
+
html[dir='rtl'] .qiohso4h{padding-right:1px}
|
|
2102
|
+
.qiqvuef5{color:var(--white)}
|
|
2103
|
+
.qispqosg{color:var(--poll-button-disabled-receiver)}
|
|
2104
|
+
html:not([dir='rtl']) .qj4wrk6p{border-top-right-radius:var(--radius-app)}
|
|
2105
|
+
html[dir='rtl'] .qj4wrk6p{border-top-left-radius:var(--radius-app)}
|
|
2106
|
+
.qj9ovlz3{background-color:#FFF}
|
|
2107
|
+
.qjp6ryme{z-index:4}
|
|
2108
|
+
html:not([dir='rtl']) .qkgcnfab{padding-right:2em}
|
|
2109
|
+
html[dir='rtl'] .qkgcnfab{padding-left:2em}
|
|
2110
|
+
.qlb265nb{padding-top:9px}
|
|
2111
|
+
.qlcjp10l{top:10px}
|
|
2112
|
+
.qlylaf53{margin-top:40px}
|
|
2113
|
+
.qmp0wt83{height:50px}
|
|
2114
|
+
.qnwaluaf{background-size:cover}
|
|
2115
|
+
html:not([dir='rtl']) .qnz2jpws{margin-left:4px}
|
|
2116
|
+
html[dir='rtl'] .qnz2jpws{margin-right:4px}
|
|
2117
|
+
html:not([dir='rtl']) .qo25nl7o{left:16px}
|
|
2118
|
+
html[dir='rtl'] .qo25nl7o{right:16px}
|
|
2119
|
+
.qomlamqu{padding-top:5px}
|
|
2120
|
+
.qpocut9d{left:8px}
|
|
2121
|
+
.qpqgzaqc{left:1px}
|
|
2122
|
+
.qpsqveag{background-color:#000}
|
|
2123
|
+
.qpz0rf1m{background-color:var(--media-editor-image-caption-input-background)}
|
|
2124
|
+
.qq0sjtgm{top:0}
|
|
2125
|
+
.qqhth2cz{background-color:var(--progress-background)}
|
|
2126
|
+
.qqs366u4{background-color:var(--panel-background)}
|
|
2127
|
+
html:not([dir='rtl']) .qquthbrt{padding-left:32px}
|
|
2128
|
+
html[dir='rtl'] .qquthbrt{padding-right:32px}
|
|
2129
|
+
html:not([dir='rtl']) .qre9j5mv{padding-right:28px}
|
|
2130
|
+
html[dir='rtl'] .qre9j5mv{padding-left:28px}
|
|
2131
|
+
.qrhr4x0p{background-color:var(--multi-skin-tone-picker-emoji-selected-background)}
|
|
2132
|
+
.qrsyb3yy{margin-bottom:3%}
|
|
2133
|
+
.qssinsw9{width:40px}
|
|
2134
|
+
.qsxhpkal{height:12px}
|
|
2135
|
+
html:not([dir='rtl']) .qt3358re{padding-left:48px}
|
|
2136
|
+
html[dir='rtl'] .qt3358re{padding-right:48px}
|
|
2137
|
+
.qt60bha0{margin-top:4px}
|
|
2138
|
+
.qtkrkp8h{padding-bottom:$chat-spacing}
|
|
2139
|
+
html:not([dir='rtl']) .quywxd7h{padding-left:52px}
|
|
2140
|
+
html[dir='rtl'] .quywxd7h{padding-right:52px}
|
|
2141
|
+
.qw8wxbb9{animation-duration:3s}
|
|
2142
|
+
.qwwpii8a{left:23px}
|
|
2143
|
+
.qwzl264q{z-index:999}
|
|
2144
|
+
html:not([dir='rtl']) .qzp46edm{left:4px}
|
|
2145
|
+
html[dir='rtl'] .qzp46edm{right:4px}
|
|
2146
|
+
.qzvtbs9h{flex-direction:column-reverse}
|
|
2147
|
+
.r0at9tra{width:74px}
|
|
2148
|
+
.r0t2rwfu{filter:blur(5px)}
|
|
2149
|
+
.r15c9g6i{align-items:flex-start}
|
|
2150
|
+
html:not([dir='rtl']) .r18xjin9{border-top-left-radius:50px}
|
|
2151
|
+
html[dir='rtl'] .r18xjin9{border-top-right-radius:50px}
|
|
2152
|
+
html:not([dir='rtl']) .r1ncx0sg{border-bottom-right-radius:10px}
|
|
2153
|
+
html[dir='rtl'] .r1ncx0sg{border-bottom-left-radius:10px}
|
|
2154
|
+
.r1vzeywj{max-width:240px}
|
|
2155
|
+
.r1zrmw6q{background-color:var(--panel-header-icon)}
|
|
2156
|
+
.r219jyu0{padding-bottom:20px}
|
|
2157
|
+
.r2u2pyhj{margin-bottom:32px}
|
|
2158
|
+
.r428hpel{max-height:auto}
|
|
2159
|
+
.r4cqfcp6{padding-bottom:2px!important}
|
|
2160
|
+
.r5imph41{margin-bottom:-2px}
|
|
2161
|
+
.r5qsrrlp{line-height:20px}
|
|
2162
|
+
html:not([dir='rtl']) .r67mms0c{margin-right:0!important}
|
|
2163
|
+
html[dir='rtl'] .r67mms0c{margin-left:0!important}
|
|
2164
|
+
.r6jd426a{align-items:flex-end}
|
|
2165
|
+
.r6jkzfdg{background-color:var(--avatar-circle-green-light)}
|
|
2166
|
+
.r6unq4of{--T68779821:0 0 0 3px rgba(var(--focus-rgb),.5);box-shadow:0 0 0 3px rgba(var(--focus-rgb),.5)}
|
|
2167
|
+
html:not([dir='rtl']) .r6x3u63k{margin-left:30px}
|
|
2168
|
+
html[dir='rtl'] .r6x3u63k{margin-right:30px}
|
|
2169
|
+
html:not([dir='rtl']) .r76eoqdq{right:-13px}
|
|
2170
|
+
html[dir='rtl'] .r76eoqdq{left:-13px}
|
|
2171
|
+
.r7fjleex{overflow-y:hidden}
|
|
2172
|
+
.r7focko8{color:rgba(var(--primary-strong-rgb),.1)}
|
|
2173
|
+
.r7wby6hd{background-color:var(--archived-chat-marker-background)}
|
|
2174
|
+
.r7yn1a4o{min-width:18px}
|
|
2175
|
+
.r83rrh3w{color:var(--quick-action-button)}
|
|
2176
|
+
.r8dd7jr1{top:8px}
|
|
2177
|
+
.r8knbtme{font-size:0.625rem}
|
|
2178
|
+
.r8quorc8{color:var(--ptt-draft-button-cancel)}
|
|
2179
|
+
html:not([dir='rtl']) .r9gcara8{margin-right:80px}
|
|
2180
|
+
html[dir='rtl'] .r9gcara8{margin-left:80px}
|
|
2181
|
+
.ra71746h{height:105px}
|
|
2182
|
+
.rahkaw8d{color:rgba(var(--primary-stronger-rgb),.55)}
|
|
2183
|
+
html:not([dir='rtl']) .ramqyho6{margin-right:2rem}
|
|
2184
|
+
html[dir='rtl'] .ramqyho6{margin-left:2rem}
|
|
2185
|
+
.rbcxfhjb{max-width:var(--width-album-grid-bubble)}
|
|
2186
|
+
.rbdaq05k{color:var(--color-black)}
|
|
2187
|
+
.rc6mlzu0{-webkit-appearance:none}
|
|
2188
|
+
.rcg4vxlo{cursor:inherit}
|
|
2189
|
+
.rd228egi{height:44px}
|
|
2190
|
+
.re3l9645{color:var(--cell-chat-secondary-color,var(--secondary))}
|
|
2191
|
+
.rek1qe2c{margin-top:1em}
|
|
2192
|
+
html:not([dir='rtl']) .rezueyon{right:14px}
|
|
2193
|
+
html[dir='rtl'] .rezueyon{left:14px}
|
|
2194
|
+
.rf8kfq28{top:15px}
|
|
2195
|
+
html:not([dir='rtl']) .rfxpxord{border-top-right-radius:24px}
|
|
2196
|
+
html[dir='rtl'] .rfxpxord{border-top-left-radius:24px}
|
|
2197
|
+
.rgji5j3u{bottom:44px}
|
|
2198
|
+
.rgvqn4sm{min-width:2.25em}
|
|
2199
|
+
.rgztdhlt{transform-origin:center center}
|
|
2200
|
+
html:not([dir='rtl']) .rh5xaqwm{border-bottom-right-radius:7px}
|
|
2201
|
+
html[dir='rtl'] .rh5xaqwm{border-bottom-left-radius:7px}
|
|
2202
|
+
.rhe1kc9j{filter:drop-shadow(-1px 1px 1px rgba(0,0,0,.5))}
|
|
2203
|
+
html:not([dir='rtl']) .riy2oczp{padding-left:.4em}
|
|
2204
|
+
html[dir='rtl'] .riy2oczp{padding-right:.4em}
|
|
2205
|
+
.rjkg9koz{bottom:-5px}
|
|
2206
|
+
.rjo8vgbg{flex-basis:0}
|
|
2207
|
+
.rjxfi64q{height:var(--sticker-size-details)}
|
|
2208
|
+
.rk2490ta{text-align:initial}
|
|
2209
|
+
.rkip0xea{margin-bottom:9px}
|
|
2210
|
+
.rku33uoa{padding-bottom:calc(var(--width-album-extra-padding) + 22px)}
|
|
2211
|
+
.rkwy1u70{max-width:420px}
|
|
2212
|
+
.rkx9gk34{margin-bottom:-4px}
|
|
2213
|
+
.rkxvyd19{user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}
|
|
2214
|
+
.rl8piizt{top:-30px}
|
|
2215
|
+
html:not([dir='rtl']) .rmnzjp8r{padding-right:60px}
|
|
2216
|
+
html[dir='rtl'] .rmnzjp8r{padding-left:60px}
|
|
2217
|
+
html:not([dir='rtl']) .rmtqb32e{padding-right:25px}
|
|
2218
|
+
html[dir='rtl'] .rmtqb32e{padding-left:25px}
|
|
2219
|
+
html:not([dir='rtl']) .rn41jex5{padding-left:13px}
|
|
2220
|
+
html[dir='rtl'] .rn41jex5{padding-right:13px}
|
|
2221
|
+
.rnigfn14{animation-name:easeekon-B}
|
|
2222
|
+
.rntbvq1t{margin-top:3em}
|
|
2223
|
+
.ro9hr2xy{margin-left:10px}
|
|
2224
|
+
.ronsgs3n{background-color:var(--panel-background-lighter)}
|
|
2225
|
+
.rowl85m6{-webkit-text-decoration-color:var(--primary);text-decoration-color:var(--primary)}
|
|
2226
|
+
html:not([dir='rtl']) .rpa8ovna{margin-right:75px}
|
|
2227
|
+
html[dir='rtl'] .rpa8ovna{margin-left:75px}
|
|
2228
|
+
html:not([dir='rtl']) .rppts313{padding-left:10px}
|
|
2229
|
+
html[dir='rtl'] .rppts313{padding-right:10px}
|
|
2230
|
+
.rpvcun8f{overflow-y:scroll}
|
|
2231
|
+
html:not([dir='rtl']) .rq6dtfpq{border-top-left-radius:var(--radius-bubble)}
|
|
2232
|
+
html[dir='rtl'] .rq6dtfpq{border-top-right-radius:var(--radius-bubble)}
|
|
2233
|
+
.rqm6ogl5{height:25px}
|
|
2234
|
+
.rrbwxby4{padding-left:6px}
|
|
2235
|
+
.rrq4r3yd{background-color:var(--incoming-background-deeper)}
|
|
2236
|
+
.rsmgdaqi{right:5px}
|
|
2237
|
+
.rtue7xhx{width:300px}
|
|
2238
|
+
.rtx6r8la{transition-duration:.08s}
|
|
2239
|
+
.ruh8h8mp{max-height:54px}
|
|
2240
|
+
.rut305bb{bottom:inherit}
|
|
2241
|
+
.rv6u8h8g{background-color:var(--rich-text-panel-background)}
|
|
2242
|
+
html:not([dir='rtl']) .rvlagp7p{margin-right:20px}
|
|
2243
|
+
html[dir='rtl'] .rvlagp7p{margin-left:20px}
|
|
2244
|
+
.rvmgzurb{width:42px}
|
|
2245
|
+
html:not([dir='rtl']) .rw274qym{margin-left:-34px}
|
|
2246
|
+
html[dir='rtl'] .rw274qym{margin-right:-34px}
|
|
2247
|
+
.rwlvdxyg{align-self:flex-end}
|
|
2248
|
+
.rwz6x5of{text-indent:2px}
|
|
2249
|
+
.rx2toazg{background-color:var(--status-thumbnail-background)}
|
|
2250
|
+
.rxgtltrb{background-color:rgba(var(--danger-rgb),.5)}
|
|
2251
|
+
.ryab0j1q{right:auto}
|
|
2252
|
+
html:not([dir='rtl']) .ryaohf54{margin-right:-3px}
|
|
2253
|
+
html[dir='rtl'] .ryaohf54{margin-left:-3px}
|
|
2254
|
+
html:not([dir='rtl']) .rykvhg4p{border-top-right-radius:11px}
|
|
2255
|
+
html[dir='rtl'] .rykvhg4p{border-top-left-radius:11px}
|
|
2256
|
+
.rys9xrs2{z-index:3}
|
|
2257
|
+
.rz1eta6h{background-color:var(--drawer-loading-backgroud)}
|
|
2258
|
+
.s0bejz76{animation-name:jlc02bb6-B}
|
|
2259
|
+
.s0eflmyh{background-color:var(--outgoing-background-deeper)}
|
|
2260
|
+
.s11ka3oa{margin-top:9px}
|
|
2261
|
+
.s15egc35{margin-top:0!important}
|
|
2262
|
+
.s19nnkrm{background-color:var(--qc-quantity-label-highlighted-background)}
|
|
2263
|
+
.s1e5xcja{justify-content:space-evenly}
|
|
2264
|
+
html:not([dir='rtl']) .s2vc4xk1{border-bottom-right-radius:2px}
|
|
2265
|
+
html[dir='rtl'] .s2vc4xk1{border-bottom-left-radius:2px}
|
|
2266
|
+
@keyframes s2wya820-B{0%{transform:scale(0,0);}20%{transform:scale(0,0);}100%{transform:scale(1,1);}}
|
|
2267
|
+
.s4k44ver{color:var(--icon-lighter)}
|
|
2268
|
+
.s4recxw2{color:#86A3B3}
|
|
2269
|
+
.s52zzds6{text-shadow:0 0 1px rgba(var(--shadow-rgb),.36)}
|
|
2270
|
+
html:not([dir='rtl']) .s5g3tb4o{right:-40px}
|
|
2271
|
+
html[dir='rtl'] .s5g3tb4o{left:-40px}
|
|
2272
|
+
.s5lidh1j{z-index:99}
|
|
2273
|
+
@keyframes s71btfur-B{0%{transform:translateY(-17px);}100%{transform:translateY(17px);}}
|
|
2274
|
+
.s79hpmcy{transform-origin:center}
|
|
2275
|
+
.s7fqlky6{padding-top:22px}
|
|
2276
|
+
html:not([dir='rtl']) .s7jcu7x1{right:-7px}
|
|
2277
|
+
html[dir='rtl'] .s7jcu7x1{left:-7px}
|
|
2278
|
+
.s7u03v8d{-webkit-line-clamp:3}
|
|
2279
|
+
.s7ynmu90{bottom:2px}
|
|
2280
|
+
.s88au2vo{height:20px!important}
|
|
2281
|
+
.s8gyl5p1{padding-bottom:2px}
|
|
2282
|
+
.s9fl9ege{padding-bottom:var(--padding-drawer-bottom)}
|
|
2283
|
+
.s9lgn3x7{background-color:rgba(0,0,0,.3)}
|
|
2284
|
+
html:not([dir='rtl']) .s9xya5d7{padding-left:36px}
|
|
2285
|
+
html[dir='rtl'] .s9xya5d7{padding-right:36px}
|
|
2286
|
+
html:not([dir='rtl']) .sa2xs5zj{border-bottom-right-radius:50px}
|
|
2287
|
+
html[dir='rtl'] .sa2xs5zj{border-bottom-left-radius:50px}
|
|
2288
|
+
.sabn9a5k{color:var(--document-meta)}
|
|
2289
|
+
.sai7fuui{height:32px}
|
|
2290
|
+
.sap93d0t{flex-direction:row}
|
|
2291
|
+
.sazkszsz{width:10px}
|
|
2292
|
+
.sbdla0oe{background-color:red}
|
|
2293
|
+
.sbs3osm6{color:var(--primary-muted)}
|
|
2294
|
+
html:not([dir='rtl']) .sd2p8cyi{margin-left:-3px}
|
|
2295
|
+
html[dir='rtl'] .sd2p8cyi{margin-right:-3px}
|
|
2296
|
+
.sdfuwbjb{min-height:100%}
|
|
2297
|
+
html:not([dir='rtl']) .sdo006nr{cursor:w-resize}
|
|
2298
|
+
html[dir='rtl'] .sdo006nr{cursor:e-resize}
|
|
2299
|
+
.sdtr5tj1{height:104px}
|
|
2300
|
+
.se2m7z6i{background-color:var(--drawer-background-deep)}
|
|
2301
|
+
.se52eggw{background-color:var(--announcement-speaker-background)}
|
|
2302
|
+
.seuajalt{color:var(--button-bubble)}
|
|
2303
|
+
html:not([dir='rtl']) .sfeitywo{border-bottom-right-radius:var(--radius-thumb)}
|
|
2304
|
+
html[dir='rtl'] .sfeitywo{border-bottom-left-radius:var(--radius-thumb)}
|
|
2305
|
+
.sfq62bwo{background-color:var(--poll-disabled-checked-checkbox-sender)}
|
|
2306
|
+
.sg3pxicu{object-fit:contain}
|
|
2307
|
+
.sgifyl94{width:90px}
|
|
2308
|
+
.sh5ccnuw{height:calc(100% - var(--h-pane-header))}
|
|
2309
|
+
.shdiholb{font-family:inherit}
|
|
2310
|
+
.shq0pg4y{filter:drop-shadow(0 1px 4px rgba(var(--shadow-rgb),.25))}
|
|
2311
|
+
.shxf19cy{min-height:175px}
|
|
2312
|
+
.sid27bd6{line-height:17px}
|
|
2313
|
+
.siuioimt{height:var(--height-video-thumb)}
|
|
2314
|
+
html:not([dir='rtl']) .sjajxv0r{padding-right:40px}
|
|
2315
|
+
html[dir='rtl'] .sjajxv0r{padding-left:40px}
|
|
2316
|
+
.sjyhwr5o{background-color:none}
|
|
2317
|
+
.sku37djt{stroke:var(--spinner-highlight)}
|
|
2318
|
+
@keyframes sl8wg78j-B{0%{opacity:0;}100%{opacity:1;}}
|
|
2319
|
+
.slgfab0f{padding-bottom:30px}
|
|
2320
|
+
.slppp3mo{transition-duration:.1s}
|
|
2321
|
+
.smoo1fur{height:54px}
|
|
2322
|
+
.smvc51u0{height:182px}
|
|
2323
|
+
html:not([dir='rtl']) .snweb893{padding-left:3px}
|
|
2324
|
+
html[dir='rtl'] .snweb893{padding-right:3px}
|
|
2325
|
+
.snyj76hw{position:fixed}
|
|
2326
|
+
.snzbljq1{width:210px}
|
|
2327
|
+
html:not([dir='rtl']) .spjzgwxb{margin-right:10px}
|
|
2328
|
+
html[dir='rtl'] .spjzgwxb{margin-left:10px}
|
|
2329
|
+
.sptw4ec9{height:131px}
|
|
2330
|
+
.sq87qsu4{padding-bottom:26px}
|
|
2331
|
+
.sqt7gjsm{width:38px!important}
|
|
2332
|
+
.sr23wnuw{width:var(--sticker-size-details)}
|
|
2333
|
+
.srqslfex{display:inline-table}
|
|
2334
|
+
.ss1fofi6{background-color:var(--status-primary)}
|
|
2335
|
+
.sst5o6l9{background-color:var(--avatar-circle-green-dark)}
|
|
2336
|
+
.st4e8vvm{--T68779821:0 0 2px rgba(var(--shadow-rgb),.25);box-shadow:0 0 2px rgba(var(--shadow-rgb),.25)}
|
|
2337
|
+
html:not([dir='rtl']) .sta02ykp{padding-left:24px}
|
|
2338
|
+
html[dir='rtl'] .sta02ykp{padding-right:24px}
|
|
2339
|
+
.stnyektq{height:28px}
|
|
2340
|
+
.suguakab{-webkit-line-clamp:2}
|
|
2341
|
+
.sujcw0sb{width:69px}
|
|
2342
|
+
.sunvlxxz{color:var(--ptt-blue)}
|
|
2343
|
+
.svlsagor{color:var(--icon)}
|
|
2344
|
+
html:not([dir='rtl']) .svoq16ka{margin-left:0}
|
|
2345
|
+
html[dir='rtl'] .svoq16ka{margin-right:0}
|
|
2346
|
+
.svot0ezm{caret-color:var(--primary)}
|
|
2347
|
+
.svpeipy5{background-color:var(--intro-background)}
|
|
2348
|
+
.sw4r90y6{animation-duration:1.5s}
|
|
2349
|
+
html:not([dir='rtl']) .swewzx26{border-bottom-left-radius:999px}
|
|
2350
|
+
html[dir='rtl'] .swewzx26{border-bottom-right-radius:999px}
|
|
2351
|
+
.swltuhs1{-webkit-clip-path:polygon(0 0,50% 0,50% 55%,49% 73%,41% 82%,50% 88%,50% 100%,0 100%);clip-path:polygon(0 0,50% 0,50% 55%,49% 73%,41% 82%,50% 88%,50% 100%,0 100%)}
|
|
2352
|
+
.sx18v0w4{margin-left:2px}
|
|
2353
|
+
.sx61ek5s{transform-origin:50% 50%}
|
|
2354
|
+
html:not([dir='rtl']) .sxdjimme{left:12px}
|
|
2355
|
+
html[dir='rtl'] .sxdjimme{right:12px}
|
|
2356
|
+
.sxkbojvh{gap:20px}
|
|
2357
|
+
.sxl192xd{background-repeat:no-repeat}
|
|
2358
|
+
.sxls5clz{max-height:calc(var(--width-video-link-preview-bubble) - 6px)}
|
|
2359
|
+
html:not([dir='rtl']) .sxwtddgj{margin-left:-33px}
|
|
2360
|
+
html[dir='rtl'] .sxwtddgj{margin-right:-33px}
|
|
2361
|
+
.sy6s5v3r{font-weight:600}
|
|
2362
|
+
.syca7q87{background-color:rgba(0,0,0,.5)}
|
|
2363
|
+
.syhq9jn2{line-height:var(--line-height-quoted-author)}
|
|
2364
|
+
.t17ktnxr{padding-bottom:80px}
|
|
2365
|
+
.t1nufmh4{height:28.8px}
|
|
2366
|
+
.t207h1ry{--T68779821:0 0 0 9999px rgba(var(--shadow-rgb),.4);box-shadow:0 0 0 9999px rgba(var(--shadow-rgb),.4)}
|
|
2367
|
+
.t2ljgofx{min-height:50px}
|
|
2368
|
+
.t2quo9z4{padding-top:30}
|
|
2369
|
+
.t35qvd06{color:var(--input-placeholder)}
|
|
2370
|
+
.t3g6t33p{background-position:center}
|
|
2371
|
+
.t3rh7lfs{color:var(--secondary-light)}
|
|
2372
|
+
.t4tp0euv{line-height:1.7}
|
|
2373
|
+
.t4z0zxz2{margin-bottom:70px}
|
|
2374
|
+
.t4zgqcuo{margin-bottom:12px}
|
|
2375
|
+
.t5t8swlc{height:69px}
|
|
2376
|
+
.t63vcusb{color:var(--security-icon-shield)}
|
|
2377
|
+
.t6dtdvhe{padding-top:23px}
|
|
2378
|
+
.t6kbzwdk{padding-left:9px}
|
|
2379
|
+
.t6kzo9t1{background-color:rgba(var(--black-rgb),.15)}
|
|
2380
|
+
.t7i5gvrw{color:#919191}
|
|
2381
|
+
.t9hu7tsx{width:calc(100% - 20px)}
|
|
2382
|
+
html:not([dir='rtl']) .t9wpllip{margin-right:18px}
|
|
2383
|
+
html[dir='rtl'] .t9wpllip{margin-left:18px}
|
|
2384
|
+
.tbdapmoc{background-color:var(--wds-cool-gray-500)}
|
|
2385
|
+
.tbmiozwh{background-repeat:repeat}
|
|
2386
|
+
html:not([dir='rtl']) .tcg15ap9{border-top-right-radius:4px}
|
|
2387
|
+
html[dir='rtl'] .tcg15ap9{border-top-left-radius:4px}
|
|
2388
|
+
.tcisnlar{width:400px}
|
|
2389
|
+
html:not([dir='rtl']) .tcyu26xv{padding-right:18px}
|
|
2390
|
+
html[dir='rtl'] .tcyu26xv{padding-left:18px}
|
|
2391
|
+
html:not([dir='rtl']) .td5bf8pq{padding-right:50px}
|
|
2392
|
+
html[dir='rtl'] .td5bf8pq{padding-left:50px}
|
|
2393
|
+
.tddarlmj{width:34px}
|
|
2394
|
+
.tdpsya9q{-webkit-clip-path:polygon(0 33%,17% 57%,23% 54%,59% 80%,67% 85%,75% 83%,90% 62%,52% 31%,38% 36%,31% 33%,31% 29%,39% 24%,44% 17%,33% 21%,15% 7%);clip-path:polygon(0 33%,17% 57%,23% 54%,59% 80%,67% 85%,75% 83%,90% 62%,52% 31%,38% 36%,31% 33%,31% 29%,39% 24%,44% 17%,33% 21%,15% 7%)}
|
|
2395
|
+
html:not([dir='rtl']) .tdx57lpj{padding-left:40px}
|
|
2396
|
+
html[dir='rtl'] .tdx57lpj{padding-right:40px}
|
|
2397
|
+
.te4632jy{top:-17px}
|
|
2398
|
+
.tenvxyss{max-height:28px}
|
|
2399
|
+
.tffp5ko5{text-align:inherit}
|
|
2400
|
+
.tffqa6uj{background-color:var(--popup-panel-background)}
|
|
2401
|
+
.tfhkdmxh{width:640px}
|
|
2402
|
+
.tfi85p4o{width:calc(100% - 58px)}
|
|
2403
|
+
html:not([dir='rtl']) .tfm3omh7{border-bottom-left-radius:var(--radius-app)}
|
|
2404
|
+
html[dir='rtl'] .tfm3omh7{border-bottom-right-radius:var(--radius-app)}
|
|
2405
|
+
.th20vg8r{margin-top:1.75rem}
|
|
2406
|
+
.th8ck7tu{--T68779821:0 -1px 3px var(--shadow-light)!important;box-shadow:0 -1px 3px var(--shadow-light)!important}
|
|
2407
|
+
.thbdkvv5{padding-right:7px}
|
|
2408
|
+
.thghmljt{z-index:var(--layer-1)}
|
|
2409
|
+
.thr4l2wc{background-color:transparent}
|
|
2410
|
+
.tiex1193{min-height:35px}
|
|
2411
|
+
html:not([dir='rtl']) .tigrmefi{margin-left:9px}
|
|
2412
|
+
html[dir='rtl'] .tigrmefi{margin-right:9px}
|
|
2413
|
+
.tio0brup{--T68779821:0 1px 3px var(--shadow-light);box-shadow:0 1px 3px var(--shadow-light)}
|
|
2414
|
+
.tjqq3gw7{background-color:rgba(var(--overlay-rgb),.7)}
|
|
2415
|
+
html:not([dir='rtl']) .tkdu00h0{left:0}
|
|
2416
|
+
html[dir='rtl'] .tkdu00h0{right:0}
|
|
2417
|
+
.tkmeqcnu{animation-iteration-count:infinite}
|
|
2418
|
+
.tknnhhou{width:32px}
|
|
2419
|
+
.tkq7s68q{line-height:1.2}
|
|
2420
|
+
.tl2vja3b{color:var(--primary-strong)}
|
|
2421
|
+
.tl6iuc6d{height:86px}
|
|
2422
|
+
html:not([dir='rtl']) .tlxzx3g9{left:115px}
|
|
2423
|
+
html[dir='rtl'] .tlxzx3g9{right:115px}
|
|
2424
|
+
.tng8x1zc{margin-bottom:-7px}
|
|
2425
|
+
.to2l77zo{user-select:text;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text}
|
|
2426
|
+
.tp4bj0rl{background-color:rgba(0,0,0,.4)}
|
|
2427
|
+
html:not([dir='rtl']) .tpmajp1w{padding-right:.4em}
|
|
2428
|
+
html[dir='rtl'] .tpmajp1w{padding-left:.4em}
|
|
2429
|
+
.tqcro9j5{width:30px!important}
|
|
2430
|
+
.tqh8z113{max-height:var(--quoted-compose-height-full)}
|
|
2431
|
+
.trnfqnf9{max-height:376px}
|
|
2432
|
+
.tspiaou6{padding-top:.25em}
|
|
2433
|
+
.tt14wmjx{-moz-osx-font-smoothing:grayscale}
|
|
2434
|
+
html:not([dir='rtl']) .tt8exp03{border-top-left-radius:99999px}
|
|
2435
|
+
html[dir='rtl'] .tt8exp03{border-top-right-radius:99999px}
|
|
2436
|
+
.tt8xd2xn{margin-top:0}
|
|
2437
|
+
@keyframes tt97e0k0-B{0%{transform:scale(0);}25%{transform:scale(1.2);}50%{transform:scale(1.2);}75%{transform:scale(.94);}100%{transform:scale(1);}}
|
|
2438
|
+
.ttegvvei{height:var(--cell-height)}
|
|
2439
|
+
.tthqcax0{max-width:168px}
|
|
2440
|
+
.ttixo1rk{will-change:translateX}
|
|
2441
|
+
.ttu8nud2{flex-shrink:999}
|
|
2442
|
+
html:not([dir='rtl']) .ttv0su4g{right:-4px}
|
|
2443
|
+
html[dir='rtl'] .ttv0su4g{left:-4px}
|
|
2444
|
+
.ttwqun4y{max-width:var(--thumb-width)}
|
|
2445
|
+
.tukmaf4q{left:0}
|
|
2446
|
+
html:not([dir='rtl']) .tulms67e{margin-right:60px}
|
|
2447
|
+
html[dir='rtl'] .tulms67e{margin-left:60px}
|
|
2448
|
+
.tvf2evcx{flex-grow:0}
|
|
2449
|
+
.tviruh8d{color:var(--primary)}
|
|
2450
|
+
.tvjloe4n{min-height:90px}
|
|
2451
|
+
.tvsr5v2h{padding-top:16px}
|
|
2452
|
+
.tvsw1x19{max-height:220px}
|
|
2453
|
+
.ur864smd{background-color:var(--white)}
|
|
2454
|
+
.v76qf5v1{flex-direction:row-reverse}
|
|
2455
|
+
.vhqtnu57{-webkit-clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,50% 50%);clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,50% 50%)}
|
|
2456
|
+
.wojub8o1{max-width:450px}
|
|
2457
|
+
html:not([dir='rtl']) .wu0i2wpa{border-bottom-right-radius:18px}
|
|
2458
|
+
html[dir='rtl'] .wu0i2wpa{border-bottom-left-radius:18px}
|
|
2459
|
+
.wvgvrgjz{font-weight:700}
|
|
2460
|
+
html:not([dir='rtl']) .y4d21rkf{border-top-right-radius:14px}
|
|
2461
|
+
html[dir='rtl'] .y4d21rkf{border-top-left-radius:14px}
|
|
2462
|
+
.yn8wkgi7{width:260px}
|
|
2463
|
+
.ysae3w6m{letter-spacing:0}
|
|
2464
|
+
.ywgftmbl{width:var(--sticker-size-panel)}
|
|
2465
|
+
.z4cnh15p{background-color:rgba(0,0,0,.2)}
|
|
2466
|
+
html:not([dir='rtl']) .zpv227fn{border-bottom-left-radius:var(--radius-compose)}
|
|
2467
|
+
html[dir='rtl'] .zpv227fn{border-bottom-right-radius:var(--radius-compose)}
|
|
2468
|
+
.zqptfkjs{grid-column-gap:16px}
|
|
2469
|
+
.bblgmxd8::before{transform:translateX(0)}
|
|
2470
|
+
.bsbo06yw::before{transform:translate(-50%,-50%)}
|
|
2471
|
+
.cai600lj:after{transform:translate(-50%,-50%)}
|
|
2472
|
+
.ecn6b8u2::before{transform:scale3d(1,1,1)}
|
|
2473
|
+
.fji5f4ri:after{background:var(--icon)}
|
|
2474
|
+
.k95pjfv1:before{transform:translate(-50%,-50%)}
|
|
2475
|
+
@media (min-width: 1024px){.kmu397b4.kmu397b4{flex:0 1 50%}}
|
|
2476
|
+
.kq7idzux::before{transform:scale3d(0,0,0)}
|
|
2477
|
+
.ksm4whjd:before{background:rgba(var(--overlay-rgb),1)}
|
|
2478
|
+
.lupmkxp7::before{transform:translateX(300%)}
|
|
2479
|
+
.n2obx7p9::after{transform:translate(-50%,-50%)}
|
|
2480
|
+
.nkmjymgc:before{background:var(--icon)}
|
|
2481
|
+
.nws64mye::before{transform:translateX(100%)}
|
|
2482
|
+
.rnzbggcn::before{background:rgba(var(--overlay-rgb),.6)}
|
|
2483
|
+
.tobsugo9:before{transform:scale(.01)}
|
|
2484
|
+
.xcz0gzg4::before{transform:translateX(200%)}
|
|
2485
|
+
html:not([dir='rtl']) .e1cue241:before{border-right:1px solid var(--reactions-bubble-border)}
|
|
2486
|
+
html[dir='rtl'] .e1cue241:before{border-left:1px solid var(--reactions-bubble-border)}
|
|
2487
|
+
html:not([dir='rtl']) .ecfmpeow::after{border-right:2px solid rgba(var(--focus-rgb),.5)}
|
|
2488
|
+
html[dir='rtl'] .ecfmpeow::after{border-left:2px solid rgba(var(--focus-rgb),.5)}
|
|
2489
|
+
.edpn7icu:before{border-bottom:1px solid var(--reactions-bubble-border)}
|
|
2490
|
+
html:not([dir='rtl']) .efr419eo:before{border-right:2px solid rgba(var(--inverse-rgb),.1)}
|
|
2491
|
+
html[dir='rtl'] .efr419eo:before{border-left:2px solid rgba(var(--inverse-rgb),.1)}
|
|
2492
|
+
html:not([dir='rtl']) .ehkk8km3::after{border-left:3px solid var(--blue-light)}
|
|
2493
|
+
html[dir='rtl'] .ehkk8km3::after{border-right:3px solid var(--blue-light)}
|
|
2494
|
+
.h5n1mx1r::after{border-top:3px solid var(--blue-light)}
|
|
2495
|
+
.h5u7ittv:before{border-top:2px solid rgba(var(--inverse-rgb),.1)}
|
|
2496
|
+
html:not([dir='rtl']) .hf27ygvl:before{border-left:2px solid rgba(var(--inverse-rgb),.1)}
|
|
2497
|
+
html[dir='rtl'] .hf27ygvl:before{border-right:2px solid rgba(var(--inverse-rgb),.1)}
|
|
2498
|
+
.hwm8yfef:before{border-top:1px solid var(--reactions-bubble-border)}
|
|
2499
|
+
.k2qxvnve:before{border-bottom:2px solid rgba(var(--inverse-rgb),.1)}
|
|
2500
|
+
html:not([dir='rtl']) .m8pn3r4v::after{border-left:2px solid rgba(var(--focus-rgb),.5)}
|
|
2501
|
+
html[dir='rtl'] .m8pn3r4v::after{border-right:2px solid rgba(var(--focus-rgb),.5)}
|
|
2502
|
+
.nb7togzf::after{border-top:2px solid rgba(var(--focus-rgb),.5)}
|
|
2503
|
+
.nz84ehyz::after{border-bottom:3px solid var(--blue-light)}
|
|
2504
|
+
html:not([dir='rtl']) .oxr79dxs::after{border-right:3px solid var(--blue-light)}
|
|
2505
|
+
html[dir='rtl'] .oxr79dxs::after{border-left:3px solid var(--blue-light)}
|
|
2506
|
+
html:not([dir='rtl']) .sx64hb76:before{border-left:1px solid var(--reactions-bubble-border)}
|
|
2507
|
+
html[dir='rtl'] .sx64hb76:before{border-right:1px solid var(--reactions-bubble-border)}
|
|
2508
|
+
.y6oajnjd::after{border-bottom:2px solid rgba(var(--focus-rgb),.5)}
|
|
2509
|
+
.a5zjmw75:before{top:-1px}
|
|
2510
|
+
.a83sq2ph::after{top:-4px}
|
|
2511
|
+
.a8g7dr2m:before{top:0}
|
|
2512
|
+
html:not([dir='rtl']) .a9153urd::-ms-thumb{border-bottom-right-radius:50%}
|
|
2513
|
+
html[dir='rtl'] .a9153urd::-ms-thumb{border-bottom-left-radius:50%}
|
|
2514
|
+
.a9fxutt7:before{left:50%}
|
|
2515
|
+
html:not([dir='rtl']) .aa14nhyp::-ms-thumb{border-bottom-left-radius:50%}
|
|
2516
|
+
html[dir='rtl'] .aa14nhyp::-ms-thumb{border-bottom-right-radius:50%}
|
|
2517
|
+
html:not([dir='rtl']) .aa3thtin:before{border-bottom-left-radius:50px}
|
|
2518
|
+
html[dir='rtl'] .aa3thtin:before{border-bottom-right-radius:50px}
|
|
2519
|
+
@media (min-width: 1300px){html:not([dir='rtl']) .acdu7ris.acdu7ris{margin-right:-10px}}
|
|
2520
|
+
@media (min-width: 1300px){html[dir='rtl'] .acdu7ris.acdu7ris{margin-left:-10px}}
|
|
2521
|
+
.adibp37i::-webkit-slider-thumb{height:12px}
|
|
2522
|
+
html:not([dir='rtl']) .affkug9a::after{border-top-right-radius:50%}
|
|
2523
|
+
html[dir='rtl'] .affkug9a::after{border-top-left-radius:50%}
|
|
2524
|
+
html:not([dir='rtl']) .ajr0z13z:before{padding-left:4px}
|
|
2525
|
+
html[dir='rtl'] .ajr0z13z:before{padding-right:4px}
|
|
2526
|
+
html:not([dir='rtl']) .asu8qs9d:before{padding-right:4px}
|
|
2527
|
+
html[dir='rtl'] .asu8qs9d:before{padding-left:4px}
|
|
2528
|
+
.atf5nwhf::after{width:70px}
|
|
2529
|
+
.atsy7pmd:before{width:44px}
|
|
2530
|
+
.b0f5vxaq:after{display:block}
|
|
2531
|
+
.b213shb5::before{width:25%}
|
|
2532
|
+
.b5q10lpa:before{box-shadow:0 2px 30px rgba(0,0,0,.2)}
|
|
2533
|
+
.badepdzx::before{animation-fill-mode:forwards}
|
|
2534
|
+
@media (max-width: 1024px){.bazijzwv.bazijzwv{width:14%}}
|
|
2535
|
+
.beenm9b3::before{top:0}
|
|
2536
|
+
.bha6utru:before{animation-timing-function:cubic-bezier(.65,0,.35,1),linear}
|
|
2537
|
+
html:not([dir='rtl']) .bl44g9bl::before{border-bottom-left-radius:var(--radius-thumb)}
|
|
2538
|
+
html[dir='rtl'] .bl44g9bl::before{border-bottom-right-radius:var(--radius-thumb)}
|
|
2539
|
+
html:not([dir='rtl']) .boj8yvfr:before{left:-1px}
|
|
2540
|
+
html[dir='rtl'] .boj8yvfr:before{right:-1px}
|
|
2541
|
+
@media (max-width: 800px){.btsmn2h9.btsmn2h9{width:calc(87% + 18px)}}
|
|
2542
|
+
.c0bbmqe2:before{padding-bottom:0}
|
|
2543
|
+
.c4kjmepz::before{left:50%}
|
|
2544
|
+
.chh99fau::before{display:block}
|
|
2545
|
+
html:not([dir='rtl']) .cjjm5daf::after{border-bottom-right-radius:50%}
|
|
2546
|
+
html[dir='rtl'] .cjjm5daf::after{border-bottom-left-radius:50%}
|
|
2547
|
+
.ckfn5qle::before{content:""}
|
|
2548
|
+
@media (min-width: 1024px){.covohgai.covohgai{width:840px}}
|
|
2549
|
+
html:not([dir='rtl']) .cpexef3b::-webkit-slider-thumb{border-top-right-radius:50%}
|
|
2550
|
+
html[dir='rtl'] .cpexef3b::-webkit-slider-thumb{border-top-left-radius:50%}
|
|
2551
|
+
.cstjocha::-ms-thumb{height:12px}
|
|
2552
|
+
html:not([dir='rtl']) .csvggiwl::-moz-range-thumb{border-bottom-right-radius:50%}
|
|
2553
|
+
html[dir='rtl'] .csvggiwl::-moz-range-thumb{border-bottom-left-radius:50%}
|
|
2554
|
+
.cvxgn1dw:before{width:calc(100% - 8px)}
|
|
2555
|
+
html:not([dir='rtl']) .d1bl3yr6::-webkit-slider-thumb{border-bottom-left-radius:50%}
|
|
2556
|
+
html[dir='rtl'] .d1bl3yr6::-webkit-slider-thumb{border-bottom-right-radius:50%}
|
|
2557
|
+
.daumfqvy:before{left:0}
|
|
2558
|
+
.dbiwaw4z::after{width:3px}
|
|
2559
|
+
.dg973b83:before{animation-name:m8lv8jz8-B}
|
|
2560
|
+
html:not([dir='rtl']) .dgvzf84s::before{border-top-right-radius:50%}
|
|
2561
|
+
html[dir='rtl'] .dgvzf84s::before{border-top-left-radius:50%}
|
|
2562
|
+
.dgw4ccbq::before{z-index:9}
|
|
2563
|
+
.dkvli2l0:after{position:absolute}
|
|
2564
|
+
.dn131129::-ms-thumb{width:12px}
|
|
2565
|
+
html:not([dir='rtl']) .dowrn9ox::-ms-thumb{border-top-left-radius:50%}
|
|
2566
|
+
html[dir='rtl'] .dowrn9ox::-ms-thumb{border-top-right-radius:50%}
|
|
2567
|
+
html:not([dir='rtl']) .dr53e3n4::before{right:0}
|
|
2568
|
+
html[dir='rtl'] .dr53e3n4::before{left:0}
|
|
2569
|
+
html:not([dir='rtl']) .dyphzmav::-webkit-slider-thumb{border-top-left-radius:50%}
|
|
2570
|
+
html[dir='rtl'] .dyphzmav::-webkit-slider-thumb{border-top-right-radius:50%}
|
|
2571
|
+
.e05q9v5p:before{width:258px}
|
|
2572
|
+
.e10y1bxp:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}
|
|
2573
|
+
html:not([dir='rtl']) .e8mfq481:before{border-top-left-radius:50%}
|
|
2574
|
+
html[dir='rtl'] .e8mfq481:before{border-top-right-radius:50%}
|
|
2575
|
+
html:not([dir='rtl']) .e8y0iqoj:before{left:0}
|
|
2576
|
+
html[dir='rtl'] .e8y0iqoj:before{right:0}
|
|
2577
|
+
html:not([dir='rtl']) .e9cl6z7p:before{box-shadow:0 1px 0 rgba(0,0,0,.07),0 0 3px rgba(0,0,0,.04)}
|
|
2578
|
+
html[dir='rtl'] .e9cl6z7p:before{box-shadow:0 1px 0 rgba(0,0,0,.07), 0 0 3px rgba(0,0,0,.04)}
|
|
2579
|
+
.eb03v51h::before{background-color:var(--menu-tabs-list-active)}
|
|
2580
|
+
.eg5obqgd::-moz-range-thumb{background-color:var(--media-editor-icon-color)}
|
|
2581
|
+
.eglpomy2::after{z-index:1}
|
|
2582
|
+
.egohdep1::before{animation-duration:.115s}
|
|
2583
|
+
@media (max-width:880px){html:not([dir='rtl']) .ekmn1tbb.ekmn1tbb{right:110px}}
|
|
2584
|
+
@media (max-width:880px){html[dir='rtl'] .ekmn1tbb.ekmn1tbb{left:110px}}
|
|
2585
|
+
.ekwltmu8::before{width:48px}
|
|
2586
|
+
@media (min-width: 1024px){.er6vhnn5.er6vhnn5{overflow-y:hidden}}
|
|
2587
|
+
@media (min-width: 1024px){.esbr2q4m.esbr2q4m{padding-bottom:14px}}
|
|
2588
|
+
.evuypb09::before{width:100%}
|
|
2589
|
+
.f0gwgpfb:before{animation-timing-function:cubic-bezier(.83,0,.17,1)}
|
|
2590
|
+
html:not([dir='rtl']) .f0tdcqsg::-moz-range-thumb{border-top-left-radius:50%}
|
|
2591
|
+
html[dir='rtl'] .f0tdcqsg::-moz-range-thumb{border-top-right-radius:50%}
|
|
2592
|
+
.f6d3q6r3::before{animation-duration:.07s}
|
|
2593
|
+
.f6m8gik5::before{animation-name:dhlqzo2r-B}
|
|
2594
|
+
.f76rftwh::before{content:"~"}
|
|
2595
|
+
.f8t368tc::-webkit-slider-thumb{background-color:var(--media-editor-icon-color)}
|
|
2596
|
+
html:not([dir='rtl']) .f9qgu6hk::-ms-thumb{border-top-right-radius:50%}
|
|
2597
|
+
html[dir='rtl'] .f9qgu6hk::-ms-thumb{border-top-left-radius:50%}
|
|
2598
|
+
html:not([dir='rtl']) .faao65il::before{border-top-right-radius:var(--radius-thumb)}
|
|
2599
|
+
html[dir='rtl'] .faao65il::before{border-top-left-radius:var(--radius-thumb)}
|
|
2600
|
+
.ffcfminx::after{height:82px}
|
|
2601
|
+
.fikuqynl::after{height:70px}
|
|
2602
|
+
.flcm9zni::before{height:100%}
|
|
2603
|
+
html:not([dir='rtl']) .fx6vfo4m::before{left:0}
|
|
2604
|
+
html[dir='rtl'] .fx6vfo4m::before{right:0}
|
|
2605
|
+
@media (max-width: 800px){.g3bgiwf5.g3bgiwf5{display:none}}
|
|
2606
|
+
.g9lbsnvk::before{background-color:var(--reactions-tray-active-round-background)}
|
|
2607
|
+
.ga96p4vz:before{background-color:var(--reactions-tray-background)}
|
|
2608
|
+
html:not([dir='rtl']) .gaz0s4oj::before{border-top-left-radius:var(--radius-thumb)}
|
|
2609
|
+
html[dir='rtl'] .gaz0s4oj::before{border-top-right-radius:var(--radius-thumb)}
|
|
2610
|
+
@media screen and (max-width: 850px){.gdbw3fpr.gdbw3fpr{min-width:600px}}
|
|
2611
|
+
@media (max-width: 1023px){.gi7c5dsw.gi7c5dsw{width:440px}}
|
|
2612
|
+
.grpxnwfq:before{animation-duration:.52s}
|
|
2613
|
+
.gtx3tadu:before{will-change:transform,borderRadius}
|
|
2614
|
+
html:not([dir='rtl']) .h1m5ryc4::after{border-bottom-left-radius:50%}
|
|
2615
|
+
html[dir='rtl'] .h1m5ryc4::after{border-bottom-right-radius:50%}
|
|
2616
|
+
.h67vyybg::-ms-thumb{background-color:var(--media-editor-icon-color)}
|
|
2617
|
+
html:not([dir='rtl']) .h7jn2p0k:before{border-top-left-radius:var(--radius-thumb)}
|
|
2618
|
+
html[dir='rtl'] .h7jn2p0k:before{border-top-right-radius:var(--radius-thumb)}
|
|
2619
|
+
@media (max-width: 1023px){.h8v2zhlv.h8v2zhlv{max-width:235px}}
|
|
2620
|
+
.harwy2hg:after{left:50%}
|
|
2621
|
+
.hetm8iza::before{pointer-events:none}
|
|
2622
|
+
@media (min-width: 1300px){html:not([dir='rtl']) .hfp8519b.hfp8519b{margin-left:-10px}}
|
|
2623
|
+
@media (min-width: 1300px){html[dir='rtl'] .hfp8519b.hfp8519b{margin-right:-10px}}
|
|
2624
|
+
@media (max-width:880px){.hpb4froj.hpb4froj{text-overflow:ellipsis}}
|
|
2625
|
+
@media (max-width:880px){.hys5s3z0.hys5s3z0{overflow-x:hidden}}
|
|
2626
|
+
.i0a739jv::before{height:3px}
|
|
2627
|
+
.i0r7mfoh:after{height:20px}
|
|
2628
|
+
.i1pbklkw::before{height:4px}
|
|
2629
|
+
.i206tstk::before{transition-timing-function:var(--t-ease)}
|
|
2630
|
+
.i539y0ga::before{white-space:pre}
|
|
2631
|
+
@media (min-width: 1024px){html:not([dir='rtl']) .ia382lwg.ia382lwg{margin-left:-22px}}
|
|
2632
|
+
@media (min-width: 1024px){html[dir='rtl'] .ia382lwg.ia382lwg{margin-right:-22px}}
|
|
2633
|
+
@media (min-width: 1024px){html:not([dir='rtl']) .ig95634g.ig95634g{padding-right:22px}}
|
|
2634
|
+
@media (min-width: 1024px){html[dir='rtl'] .ig95634g.ig95634g{padding-left:22px}}
|
|
2635
|
+
.ijeufx4s:before{top:50%}
|
|
2636
|
+
@media screen and (max-width: 660px){.inad9r27.inad9r27{min-width:500px}}
|
|
2637
|
+
@media (min-width: 1024px){.io2webec.io2webec{overflow-x:hidden}}
|
|
2638
|
+
.iu8zqbur::before{top:50%}
|
|
2639
|
+
@media (min-width: 1024px){.iw92fjir.iw92fjir{box-sizing:border-box}}
|
|
2640
|
+
.j09sh4ga::-moz-range-thumb{width:12px}
|
|
2641
|
+
html:not([dir='rtl']) .ja8s2tk6::before{border-bottom-left-radius:50%}
|
|
2642
|
+
html[dir='rtl'] .ja8s2tk6::before{border-bottom-right-radius:50%}
|
|
2643
|
+
.jaq0b63r:before{height:3px}
|
|
2644
|
+
.jhdjhcni::before{--T68779821:inset 0 -10px 9px -10px rgba(var(--shadow-rgb),.1);box-shadow:inset 0 -10px 9px -10px rgba(var(--shadow-rgb),.1)}
|
|
2645
|
+
.jiaumjzp::before{position:absolute}
|
|
2646
|
+
.jpisi10r::before{opacity:1}
|
|
2647
|
+
@media (min-width: 800px) and (max-width: 999px), (min-width: 1025px) and (max-width: 1180px){.jyd2w1n8.jyd2w1n8{display:none}}
|
|
2648
|
+
html:not([dir='rtl']) .k0x1nux4:before{border-bottom-right-radius:50%}
|
|
2649
|
+
html[dir='rtl'] .k0x1nux4:before{border-bottom-left-radius:50%}
|
|
2650
|
+
.k15o3o4i:after{content:""}
|
|
2651
|
+
.k2u5p2o8::before{animation-timing-function:cubic-bezier(.85,0,.15,1)}
|
|
2652
|
+
.khfyavfg::after{top:50%}
|
|
2653
|
+
html:not([dir='rtl']) .kjzphxlt:before{border-bottom-right-radius:var(--radius-thumb)}
|
|
2654
|
+
html[dir='rtl'] .kjzphxlt:before{border-bottom-left-radius:var(--radius-thumb)}
|
|
2655
|
+
.kkl0lao1:before{width:100%}
|
|
2656
|
+
.kq7zil7g::before{transform-origin:right}
|
|
2657
|
+
@media (max-width:880px){.ktnphmnq.ktnphmnq{overflow-y:hidden}}
|
|
2658
|
+
.l0wh9vpf::before{width:33.33%}
|
|
2659
|
+
.l1wvjj35::after{display:block}
|
|
2660
|
+
.l9a7srmz::after{height:20px}
|
|
2661
|
+
.lhcc0jp6::-webkit-slider-thumb{-webkit-appearance:none}
|
|
2662
|
+
.lij4d1x3:before{content:""}
|
|
2663
|
+
.ln1ej6zg::before{width:20px}
|
|
2664
|
+
@media (min-width: 1024px){html:not([dir='rtl']) .lqlaz5rc.lqlaz5rc{margin-right:-22px}}
|
|
2665
|
+
@media (min-width: 1024px){html[dir='rtl'] .lqlaz5rc.lqlaz5rc{margin-left:-22px}}
|
|
2666
|
+
html:not([dir='rtl']) .lrgradkh:before{border-bottom-left-radius:var(--radius-thumb)}
|
|
2667
|
+
html[dir='rtl'] .lrgradkh:before{border-bottom-right-radius:var(--radius-thumb)}
|
|
2668
|
+
@media (max-width: 1023px){.ltfv880v.ltfv880v{box-sizing:border-box}}
|
|
2669
|
+
html:not([dir='rtl']) .lvfi4jc9:before{border-bottom-right-radius:50px}
|
|
2670
|
+
html[dir='rtl'] .lvfi4jc9:before{border-bottom-left-radius:50px}
|
|
2671
|
+
.lw9p9708::after{content:""}
|
|
2672
|
+
.m6f3ikd5:before{height:56px}
|
|
2673
|
+
@media (max-width: 1023px){.mdkfpzhl.mdkfpzhl{padding-top:3px}}
|
|
2674
|
+
html:not([dir='rtl']) .mdwvbymx::-webkit-slider-thumb{border-bottom-right-radius:50%}
|
|
2675
|
+
html[dir='rtl'] .mdwvbymx::-webkit-slider-thumb{border-bottom-left-radius:50%}
|
|
2676
|
+
.me48zpqo:before{z-index:101}
|
|
2677
|
+
.mkhwmcgj:before{height:44px}
|
|
2678
|
+
.mpj7bzys::-moz-selection{background-color:rgba(var(--wds-cobalt-200-rgb),.5)}
|
|
2679
|
+
.mpj7bzys::selection{background-color:rgba(var(--wds-cobalt-200-rgb),.5)}
|
|
2680
|
+
@media (max-width: 800px){.n0hkwe29.n0hkwe29{width:29%}}
|
|
2681
|
+
@media (max-width: 1024px){.ndsmr6pb.ndsmr6pb{width:calc(84% + 36px)}}
|
|
2682
|
+
.nly7wueh::after{left:50%}
|
|
2683
|
+
.nnoyk08r:before{opacity:.3}
|
|
2684
|
+
@media (min-width: 1024px){.nqllc0nc.nqllc0nc{padding-top:14px}}
|
|
2685
|
+
html:not([dir='rtl']) .nrbk08ob::after{left:-4px}
|
|
2686
|
+
html[dir='rtl'] .nrbk08ob::after{right:-4px}
|
|
2687
|
+
.ns36z7zv::before{transform-origin:left}
|
|
2688
|
+
html:not([dir='rtl']) .nuykgz0k::after{border-top-left-radius:50%}
|
|
2689
|
+
html[dir='rtl'] .nuykgz0k::after{border-top-right-radius:50%}
|
|
2690
|
+
.o0bwohyy:before{height:24px}
|
|
2691
|
+
@media (max-width: 1441px){.o135me7o.o135me7o{width:80%}}
|
|
2692
|
+
.o1rppbag::before{height:48px}
|
|
2693
|
+
@media (max-width: 1216px) and (min-width: 1025px){.o2s45it5.o2s45it5{display:none}}
|
|
2694
|
+
.o38lwax9::before{animation-name:b6khuor9-B}
|
|
2695
|
+
html:not([dir='rtl']) .o9exb5zn::before{border-bottom-right-radius:var(--radius-thumb)}
|
|
2696
|
+
html[dir='rtl'] .o9exb5zn::before{border-bottom-left-radius:var(--radius-thumb)}
|
|
2697
|
+
.oa3lyrek:before{display:block}
|
|
2698
|
+
.of3b7f0x::before{z-index:2}
|
|
2699
|
+
.oiu8h712::before{transition-property:transform}
|
|
2700
|
+
.ota1mbrf:before{animation-name:j1vtk5sh-B,sl8wg78j-B,b2uml6y0-B}
|
|
2701
|
+
.otswzj8x:before{z-index:-1}
|
|
2702
|
+
.ov67bkzj::-webkit-scrollbar-track{background-color:var(--background-default)}
|
|
2703
|
+
html:not([dir='rtl']) .ox1qo7wz::-moz-range-thumb{border-top-right-radius:50%}
|
|
2704
|
+
html[dir='rtl'] .ox1qo7wz::-moz-range-thumb{border-top-left-radius:50%}
|
|
2705
|
+
.oxaw94s0:before{position:absolute}
|
|
2706
|
+
.pf2k5wc9::before{transition-duration:.3s}
|
|
2707
|
+
.pirim95u:before{z-index:2}
|
|
2708
|
+
html:not([dir='rtl']) .pts78uye:before{border-top-right-radius:50px}
|
|
2709
|
+
html[dir='rtl'] .pts78uye:before{border-top-left-radius:50px}
|
|
2710
|
+
html:not([dir='rtl']) .q05gkqfx:before{border-top-right-radius:var(--radius-thumb)}
|
|
2711
|
+
html[dir='rtl'] .q05gkqfx:before{border-top-left-radius:var(--radius-thumb)}
|
|
2712
|
+
.q2g3zwp2::-moz-range-thumb{height:12px}
|
|
2713
|
+
.q80nfrzu:before{height:100%}
|
|
2714
|
+
.qbfuvgfc:after{width:3px}
|
|
2715
|
+
.qi2a0yje:after{top:50%}
|
|
2716
|
+
html:not([dir='rtl']) .qs89ku6w::before{border-bottom-right-radius:50%}
|
|
2717
|
+
html[dir='rtl'] .qs89ku6w::before{border-bottom-left-radius:50%}
|
|
2718
|
+
@media (min-width: 1024px){.qt8u2dv2.qt8u2dv2{flex-flow:row wrap}}
|
|
2719
|
+
.qvdn5vl1::before{animation-delay:.085s}
|
|
2720
|
+
.r1v61bue:before{animation-fill-mode:forwards}
|
|
2721
|
+
.r4xl2n04:before{padding-top:0}
|
|
2722
|
+
.rd85shf7:before{width:300px}
|
|
2723
|
+
@media (min-width: 1024px){html:not([dir='rtl']) .rff0pby1.rff0pby1{padding-left:22px}}
|
|
2724
|
+
@media (min-width: 1024px){html[dir='rtl'] .rff0pby1.rff0pby1{padding-right:22px}}
|
|
2725
|
+
.rhdd2pe1::before{bottom:0}
|
|
2726
|
+
html:not([dir='rtl']) .rl2cs7re:before{border-top-right-radius:50%}
|
|
2727
|
+
html[dir='rtl'] .rl2cs7re:before{border-top-left-radius:50%}
|
|
2728
|
+
.ryfqqswh:before{animation-duration:.4s,.1s,.4s}
|
|
2729
|
+
html:not([dir='rtl']) .s0ncokgg::before{border-top-left-radius:50%}
|
|
2730
|
+
html[dir='rtl'] .s0ncokgg::before{border-top-right-radius:50%}
|
|
2731
|
+
.s24c542q:before{background-color:var(--incoming-background)}
|
|
2732
|
+
.s4y2fk9h::after{width:82px}
|
|
2733
|
+
html:not([dir='rtl']) .s849znjx::-moz-range-thumb{border-bottom-left-radius:50%}
|
|
2734
|
+
html[dir='rtl'] .s849znjx::-moz-range-thumb{border-bottom-right-radius:50%}
|
|
2735
|
+
.s8o24zke::after{box-sizing:border-box}
|
|
2736
|
+
@media (max-width: 1024px){.s9437i69.s9437i69{display:inherit}}
|
|
2737
|
+
html:not([dir='rtl']) .sa9sd5it:before{border-top-left-radius:50px}
|
|
2738
|
+
html[dir='rtl'] .sa9sd5it:before{border-top-right-radius:50px}
|
|
2739
|
+
.sadoqatt::after{background-color:var(--icon)}
|
|
2740
|
+
.seopfc61::before{content:"\020"}
|
|
2741
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx){.shnvsdv4.shnvsdv4{background-size:412.5px 749.25px}}
|
|
2742
|
+
@media (max-width: 1023px){.sk9gzju7.sk9gzju7{margin-top:24px}}
|
|
2743
|
+
.slvs4faj:before{width:20px}
|
|
2744
|
+
.ssu9o2eo:before{max-width:300px}
|
|
2745
|
+
@media (max-width: 1023px){html:not([dir='rtl']) .szpwbp00.szpwbp00{padding-right:18px}}
|
|
2746
|
+
@media (max-width: 1023px){html[dir='rtl'] .szpwbp00.szpwbp00{padding-left:18px}}
|
|
2747
|
+
.t1e0qc4e:before{max-width:258px}
|
|
2748
|
+
.t4c1fkc8::before{background-color:var(--icon)}
|
|
2749
|
+
.t68znmxb::-webkit-slider-thumb{width:12px}
|
|
2750
|
+
@media (max-width:880px){.tf9oak2v.tf9oak2v{white-space:nowrap}}
|
|
2751
|
+
@media (max-width: 1023px){html:not([dir='rtl']) .tfy4sp8n.tfy4sp8n{padding-left:0}}
|
|
2752
|
+
@media (max-width: 1023px){html[dir='rtl'] .tfy4sp8n.tfy4sp8n{padding-right:0}}
|
|
2753
|
+
@media (max-width: 1023px){.tggrzbf0.tggrzbf0{padding-bottom:3px}}
|
|
2754
|
+
html:not([dir='rtl']) .thgejxps:before{border-bottom-left-radius:50%}
|
|
2755
|
+
html[dir='rtl'] .thgejxps:before{border-bottom-right-radius:50%}
|
|
2756
|
+
.tkubpkrc::after{position:absolute}
|
|
2757
|
+
.tvgeahmr:before{will-change:scale}
|
|
2758
|
+
.xzlurrtv::-moz-selection{color:transparent}
|
|
2759
|
+
.xzlurrtv::selection{color:transparent}
|
|
2760
|
+
html:not([dir='rtl']) .nadoev3v:first-child{margin-left:0}
|
|
2761
|
+
html[dir='rtl'] .nadoev3v:first-child{margin-right:0}
|
|
2762
|
+
.p8zrgzvm:last-child{display:none}
|
|
2763
|
+
.dc9pxb7p:nth-child(1){animation-delay:.13s,.13s}
|
|
2764
|
+
.fv5qzaj9:nth-child(3){animation-delay:.27s,.27s}
|
|
2765
|
+
.heuvjs6j:nth-child(2){animation-delay:.165s,.165s}
|
|
2766
|
+
.hxte1zbr:nth-child(6){animation-delay:.13s,.13s}
|
|
2767
|
+
.kqjy5z83:nth-child(5){animation-delay:.2s,.2s}
|
|
2768
|
+
.kwb1nczx:nth-child(4){animation-delay:.235s,.235s}
|
|
2769
|
+
.mfdt667m:nth-child(4){animation-delay:.2s,.2s}
|
|
2770
|
+
.mpyszoyv:nth-child(7){animation-delay:.13s,.13s}
|
|
2771
|
+
.mtkupoln:nth-child(2){animation-delay:.27s,.27s}
|
|
2772
|
+
.n4ocl5sr:nth-child(6){animation-delay:.305s,.305s}
|
|
2773
|
+
.n9b0ado8:nth-child(7){animation-delay:.34s,.34s}
|
|
2774
|
+
.o04j5cds:nth-child(3){animation-delay:.2s,.2s}
|
|
2775
|
+
.oxe1zlk6:nth-child(6){animation-delay:.165s,.165s}
|
|
2776
|
+
.pbiji778:nth-child(2){animation-delay:.305s,.305s}
|
|
2777
|
+
.qr6bg16l:nth-child(3){animation-delay:.235s,.235s}
|
|
2778
|
+
.qwbhdnx1:nth-child(5){animation-delay:.27s,.27s}
|
|
2779
|
+
.r4zq3v0s:nth-child(1){animation-delay:.34s,.34s}
|
|
2780
|
+
.rwtgomn0:nth-child(1){animation-delay:.305s,.305s}
|
|
2781
|
+
.sf9ilnrw:nth-child(5){animation-delay:.165s,.165s}
|
|
2782
|
+
.e722dx1l:hover{transition:opacity .25s ease-in}
|
|
2783
|
+
.edeob0r2:hover{text-decoration:underline}
|
|
2784
|
+
.iqk5z7se:hover{outline:none}
|
|
2785
|
+
.ksz6vod1:hover{transform:scale(1.1)}
|
|
2786
|
+
.m71s4v11:hover{transform:scale(1.2)}
|
|
2787
|
+
.o69d8n2f:hover{text-decoration:none}
|
|
2788
|
+
.pzeoqukz:hover{outline:3px solid rgba(var(--thumb-border-viewer-active-rgb),.7)}
|
|
2789
|
+
.sl8qjjwd:hover{transform:scale(1.06)}
|
|
2790
|
+
html:not([dir='rtl']) .jkgllu2t:hover{border-left:1px solid var(--qc-button-border-active)}
|
|
2791
|
+
html[dir='rtl'] .jkgllu2t:hover{border-right:1px solid var(--qc-button-border-active)}
|
|
2792
|
+
html:not([dir='rtl']) .lsy1kxda:hover{border-right:1px solid var(--qc-button-border-active)}
|
|
2793
|
+
html[dir='rtl'] .lsy1kxda:hover{border-left:1px solid var(--qc-button-border-active)}
|
|
2794
|
+
.oswfv6e2:hover{border-bottom:1px solid var(--qc-button-border-active)}
|
|
2795
|
+
.qtthaaob:hover{border-top:1px solid var(--qc-button-border-active)}
|
|
2796
|
+
.cjq3wztw:hover{background-color:var(--menu-bar-item-background-active)}
|
|
2797
|
+
.cx8fzybs:hover{will-change:width}
|
|
2798
|
+
.dul83ws3:hover{color:var(--button-secondary-hover)}
|
|
2799
|
+
.fiyt298h:hover{color:var(--ptt-draft-button-send-hover)}
|
|
2800
|
+
.glk0grvq:hover{color:var(--gray-400)}
|
|
2801
|
+
.gnd3v8n5:hover{opacity:.8}
|
|
2802
|
+
.jhshxy31:hover{background-color:var(--gray-30)!important}
|
|
2803
|
+
.k3zau70k:hover{color:var(--button-disabled)}
|
|
2804
|
+
.k9vvdk9a:hover{opacity:1}
|
|
2805
|
+
.kbf8aj4n:hover{color:var(--icon-lighter)}
|
|
2806
|
+
.mtber8f9:hover{color:var(--ptt-draft-button-cancel-hover)}
|
|
2807
|
+
.oehg7oif:hover{color:var(--button-secondary)}
|
|
2808
|
+
.os03hap6:hover{background-color:var(--background-default-hover)}
|
|
2809
|
+
.qpj2ed6z:hover{color:var(--ptt-draft-button-stop-hover)}
|
|
2810
|
+
.rx9719la:hover{z-index:10000}
|
|
2811
|
+
.sao4npu1:hover{color:var(--ptt-draft-button-play-pause-hover)}
|
|
2812
|
+
.t94efhq2:hover{cursor:pointer}
|
|
2813
|
+
.tbi410a4:hover{color:var(--text-secondary-emphasized)}
|
|
2814
|
+
.esbo3we0:focus{--T68779821:0 0 0 2px rgba(var(--focus-rgb),.5);box-shadow:0 0 0 2px rgba(var(--focus-rgb),.5)}
|
|
2815
|
+
html:not([dir='rtl']) .f9yclydc:focus{border-bottom-right-radius:2px}
|
|
2816
|
+
html[dir='rtl'] .f9yclydc:focus{border-bottom-left-radius:2px}
|
|
2817
|
+
.gegvef6x:focus{filter:brightness(.7)}
|
|
2818
|
+
html:not([dir='rtl']) .h6r5aqpz:focus{border-bottom-left-radius:18px!important}
|
|
2819
|
+
html[dir='rtl'] .h6r5aqpz:focus{border-bottom-right-radius:18px!important}
|
|
2820
|
+
html:not([dir='rtl']) .jbikg389:focus{border-bottom-left-radius:50%!important}
|
|
2821
|
+
html[dir='rtl'] .jbikg389:focus{border-bottom-right-radius:50%!important}
|
|
2822
|
+
html:not([dir='rtl']) .jzps8tg2:focus{border-bottom-right-radius:50%!important}
|
|
2823
|
+
html[dir='rtl'] .jzps8tg2:focus{border-bottom-left-radius:50%!important}
|
|
2824
|
+
html:not([dir='rtl']) .kq55ehwl:focus{border-top-right-radius:18px!important}
|
|
2825
|
+
html[dir='rtl'] .kq55ehwl:focus{border-top-left-radius:18px!important}
|
|
2826
|
+
html:not([dir='rtl']) .mmjxyicr:focus{border-top-left-radius:2px}
|
|
2827
|
+
html[dir='rtl'] .mmjxyicr:focus{border-top-right-radius:2px}
|
|
2828
|
+
html:not([dir='rtl']) .mn9o3mn1:focus{border-top-left-radius:50%!important}
|
|
2829
|
+
html[dir='rtl'] .mn9o3mn1:focus{border-top-right-radius:50%!important}
|
|
2830
|
+
html:not([dir='rtl']) .mtzt60z0:focus{border-bottom-left-radius:2px}
|
|
2831
|
+
html[dir='rtl'] .mtzt60z0:focus{border-bottom-right-radius:2px}
|
|
2832
|
+
html:not([dir='rtl']) .oyztl3ar:focus{border-top-left-radius:18px!important}
|
|
2833
|
+
html[dir='rtl'] .oyztl3ar:focus{border-top-right-radius:18px!important}
|
|
2834
|
+
html:not([dir='rtl']) .r1jx4bdh:focus{border-top-right-radius:2px}
|
|
2835
|
+
html[dir='rtl'] .r1jx4bdh:focus{border-top-left-radius:2px}
|
|
2836
|
+
html:not([dir='rtl']) .t2hfvjzt:focus{border-bottom-right-radius:18px!important}
|
|
2837
|
+
html[dir='rtl'] .t2hfvjzt:focus{border-bottom-left-radius:18px!important}
|
|
2838
|
+
.t5zm8b4w:focus{--T68779821:0 0 0 2px rgba(var(--focus-rgb),.5);box-shadow:0 0 0 2px rgba(var(--focus-rgb),.5);}
|
|
2839
|
+
html:not([dir='rtl']) .xthzmdyy:focus{border-top-right-radius:50%!important}
|
|
2840
|
+
html[dir='rtl'] .xthzmdyy:focus{border-top-left-radius:50%!important}
|
|
2841
|
+
.epia9gcq:disabled{opacity:.4}
|