twitter_embed 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.
@@ -0,0 +1,3 @@
1
+ module TwitterEmbed
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,28 @@
1
+ require_relative 'lib/twitter_embed/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "twitter_embed"
5
+ spec.version = TwitterEmbed::VERSION
6
+ spec.authors = ["Fernand"]
7
+ spec.email = ["wwwfernand@yahoo.com"]
8
+
9
+ spec.summary = %q{crawl Twitter's embed HTML}
10
+ spec.description = %q{retrieve }
11
+ spec.homepage = "https://github.com/wwwfernand/TwitterEmbed"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.1")
14
+
15
+ # Specify which files should be added to the gem when it is released.
16
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
17
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
18
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ end
20
+ spec.files += Dir['lib/*', 'vendor/**/*']
21
+ spec.bindir = "exe"
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ["lib"]
24
+
25
+ spec.add_dependency "rails"
26
+ #spec.add_dependency "sass"
27
+ #spec.add_dependency "sass-rails"
28
+ end
@@ -0,0 +1,14 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's
5
+ // vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require widgets
14
+ //= require_tree .
@@ -0,0 +1,16 @@
1
+ function setImage(e){
2
+ if (e.src == '' && e.dataset['src-1x'] != ''){
3
+ e.src=e.dataset['src-1x'];
4
+ }
5
+ }
6
+
7
+ window.onload = function() {
8
+ console.log('start!');
9
+ var mainEls=document.getElementsByClassName("SandboxRoot");
10
+ for (var i = 0; i < mainEls.length; i++) {
11
+ var imgs = mainEls.item(i).getElementsByTagName("img");
12
+ for (var j = 0; j < imgs.length; j++) {
13
+ setImage(imgs.item(j));
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,361 @@
1
+ html {
2
+ font-family: sans-serif;
3
+ -ms-text-size-adjust: 100%;
4
+ -webkit-text-size-adjust: 100%
5
+ }
6
+
7
+ body {
8
+ margin: 0
9
+ }
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ menu,
21
+ nav,
22
+ section,
23
+ summary {
24
+ display: block
25
+ }
26
+
27
+ audio,
28
+ canvas,
29
+ progress,
30
+ video {
31
+ display: inline-block;
32
+ vertical-align: baseline
33
+ }
34
+
35
+ audio:not([controls]) {
36
+ display: none;
37
+ height: 0
38
+ }
39
+
40
+ [hidden],
41
+ template {
42
+ display: none
43
+ }
44
+
45
+ a {
46
+ background-color: transparent
47
+ }
48
+
49
+ a:active,
50
+ a:hover {
51
+ outline: 0
52
+ }
53
+
54
+ abbr[title] {
55
+ border-bottom: 1px dotted
56
+ }
57
+
58
+ b,
59
+ strong {
60
+ font-weight: 700
61
+ }
62
+
63
+ dfn {
64
+ font-style: italic
65
+ }
66
+
67
+ h1 {
68
+ font-size: 2em;
69
+ margin: .67em 0
70
+ }
71
+
72
+ mark {
73
+ background: #ff0;
74
+ color: #000
75
+ }
76
+
77
+ small {
78
+ font-size: 80%
79
+ }
80
+
81
+ sub,
82
+ sup {
83
+ font-size: 75%;
84
+ line-height: 0;
85
+ position: relative;
86
+ vertical-align: baseline
87
+ }
88
+
89
+ sup {
90
+ top: -.5em
91
+ }
92
+
93
+ sub {
94
+ bottom: -.25em
95
+ }
96
+
97
+ img {
98
+ border: 0
99
+ }
100
+
101
+ svg:not(:root) {
102
+ overflow: hidden
103
+ }
104
+
105
+ figure {
106
+ margin: 1em 40px
107
+ }
108
+
109
+ hr {
110
+ -moz-box-sizing: content-box;
111
+ box-sizing: content-box;
112
+ height: 0
113
+ }
114
+
115
+ pre {
116
+ overflow: auto
117
+ }
118
+
119
+ code,
120
+ kbd,
121
+ pre,
122
+ samp {
123
+ font-family: monospace, monospace;
124
+ font-size: 1em
125
+ }
126
+
127
+ button,
128
+ input,
129
+ optgroup,
130
+ select,
131
+ textarea {
132
+ color: inherit;
133
+ font: inherit;
134
+ margin: 0
135
+ }
136
+
137
+ button {
138
+ overflow: visible
139
+ }
140
+
141
+ button,
142
+ select {
143
+ text-transform: none
144
+ }
145
+
146
+ button,
147
+ html input[type=button],
148
+ input[type=reset],
149
+ input[type=submit] {
150
+ -webkit-appearance: button;
151
+ cursor: pointer
152
+ }
153
+
154
+ button[disabled],
155
+ html input[disabled] {
156
+ cursor: default
157
+ }
158
+
159
+ button::-moz-focus-inner,
160
+ input::-moz-focus-inner {
161
+ border: 0;
162
+ padding: 0
163
+ }
164
+
165
+ input {
166
+ line-height: normal
167
+ }
168
+
169
+ input[type=checkbox],
170
+ input[type=radio] {
171
+ -moz-box-sizing: border-box;
172
+ box-sizing: border-box;
173
+ padding: 0
174
+ }
175
+
176
+ input[type=number]::-webkit-inner-spin-button,
177
+ input[type=number]::-webkit-outer-spin-button {
178
+ height: auto
179
+ }
180
+
181
+ input[type=search] {
182
+ -webkit-appearance: textfield;
183
+ -moz-box-sizing: content-box;
184
+ box-sizing: content-box
185
+ }
186
+
187
+ input[type=search]::-webkit-search-cancel-button,
188
+ input[type=search]::-webkit-search-decoration {
189
+ -webkit-appearance: none
190
+ }
191
+
192
+ fieldset {
193
+ border: 1px solid silver;
194
+ margin: 0 2px;
195
+ padding: .35em .625em .75em
196
+ }
197
+
198
+ legend {
199
+ border: 0;
200
+ padding: 0
201
+ }
202
+
203
+ textarea {
204
+ overflow: auto
205
+ }
206
+
207
+ optgroup {
208
+ font-weight: 700
209
+ }
210
+
211
+ table {
212
+ border-collapse: collapse;
213
+ border-spacing: 0
214
+ }
215
+
216
+ td,
217
+ th {
218
+ padding: 0
219
+ }
220
+
221
+ .u-block {
222
+ display: block!important
223
+ }
224
+
225
+ .u-hidden {
226
+ display: none!important
227
+ }
228
+
229
+ .u-hiddenVisually {
230
+ position: absolute!important;
231
+ overflow: hidden!important;
232
+ width: 1px!important;
233
+ height: 1px!important;
234
+ padding: 0!important;
235
+ border: 0!important;
236
+ clip: rect(1px, 1px, 1px, 1px)!important
237
+ }
238
+
239
+ .u-inline {
240
+ display: inline!important
241
+ }
242
+
243
+ .u-inlineBlock {
244
+ display: inline-block!important;
245
+ max-width: 100%
246
+ }
247
+
248
+ .u-table {
249
+ display: table!important
250
+ }
251
+
252
+ .u-tableCell {
253
+ display: table-cell!important
254
+ }
255
+
256
+ .u-tableRow {
257
+ display: table-row!important
258
+ }
259
+
260
+ .u-cf:after,
261
+ .u-cf:before {
262
+ content: " ";
263
+ display: table
264
+ }
265
+
266
+ .u-cf:after {
267
+ clear: both
268
+ }
269
+
270
+ .u-nbfc {
271
+ overflow: hidden!important
272
+ }
273
+
274
+ .u-nbfcAlt {
275
+ display: table-cell!important;
276
+ width: 10000px!important
277
+ }
278
+
279
+ .u-floatLeft {
280
+ float: left!important
281
+ }
282
+
283
+ .u-floatRight {
284
+ float: right!important
285
+ }
286
+
287
+ .u-textBreak {
288
+ word-wrap: break-word!important
289
+ }
290
+
291
+ .u-textCenter {
292
+ text-align: center!important
293
+ }
294
+
295
+ .u-textLeft {
296
+ text-align: left!important
297
+ }
298
+
299
+ .u-textRight {
300
+ text-align: right!important
301
+ }
302
+
303
+ .u-textInheritColor {
304
+ color: inherit!important
305
+ }
306
+
307
+ .u-textKern {
308
+ text-rendering: optimizeLegibility;
309
+ -webkit-font-feature-settings: "kern" 1, "kern";
310
+ -moz-font-feature-settings: "kern" 1, "kern";
311
+ font-feature-settings: "kern" 1, "kern";
312
+ -webkit-font-kerning: normal;
313
+ -moz-font-kerning: normal;
314
+ font-kerning: normal
315
+ }
316
+
317
+ .u-textNoWrap {
318
+ white-space: nowrap!important
319
+ }
320
+
321
+ .u-textTruncate {
322
+ max-width: 100%;
323
+ overflow: hidden!important;
324
+ text-overflow: ellipsis!important;
325
+ white-space: nowrap!important;
326
+ word-wrap: normal!important
327
+ }
328
+
329
+ blockquote,
330
+ button,
331
+ h1,
332
+ h2,
333
+ h3,
334
+ h4,
335
+ h5,
336
+ h6,
337
+ iframe,
338
+ ol,
339
+ p,
340
+ ul {
341
+ margin: 0;
342
+ padding: 0;
343
+ list-style: none;
344
+ border: none
345
+ }
346
+
347
+ b,
348
+ i {
349
+ font-weight: 400;
350
+ font-style: normal
351
+ }
352
+
353
+ abbr,
354
+ abbr[title] {
355
+ border-bottom: 0
356
+ }
357
+
358
+ .SandboxRoot {
359
+ direction: ltr;
360
+ text-align: left
361
+ }
@@ -0,0 +1,1445 @@
1
+ .twitter_embed_dark
2
+ {
3
+ .SandboxRoot {
4
+ display: block;
5
+ background: 0 0;
6
+ font: normal normal 16px/1.4 Helvetica, Roboto, "Segoe UI", Calibri, sans-serif;
7
+ color: #f5f8fa;
8
+ white-space: normal;
9
+ white-space: initial
10
+ }
11
+
12
+ a {
13
+ color: #3b94d9;
14
+ text-decoration: none
15
+ }
16
+
17
+ a:visited {
18
+ color: #3b94d9;
19
+ text-decoration: none;
20
+ outline: 0
21
+ }
22
+
23
+ a:focus {
24
+ color: #55acee;
25
+ text-decoration: underline
26
+ }
27
+
28
+ a:hover {
29
+ color: #55acee;
30
+ text-decoration: none;
31
+ outline: 0
32
+ }
33
+
34
+ a:active {
35
+ color: #3b94d9;
36
+ text-decoration: none;
37
+ outline: 0
38
+ }
39
+
40
+ .SandboxRoot.env-bp-min .u-hiddenInNarrowEnv {
41
+ display: none
42
+ }
43
+
44
+ .SandboxRoot:not(.env-bp-min) .u-hiddenInWideEnv {
45
+ display: none
46
+ }
47
+
48
+ .u-linkBlend:not(:focus):not(:hover):not(:active) {
49
+ font-weight: inherit;
50
+ color: inherit;
51
+ text-decoration: inherit
52
+ }
53
+
54
+ .Avatar {
55
+ max-width: 100%;
56
+ max-height: 100%;
57
+ border-radius: 50%
58
+ }
59
+
60
+ .Avatar--fill {
61
+ width: 100%;
62
+ height: 100%
63
+ }
64
+
65
+ .Button,
66
+ .Button:link,
67
+ .Button:visited {
68
+ -webkit-appearance: none;
69
+ background-color: #f5f8fa;
70
+ background-image: -webkit-linear-gradient(#fff, #f5f8fa);
71
+ background-image: -moz-linear-gradient(#fff, #f5f8fa);
72
+ background-image: -o-linear-gradient(#fff, #f5f8fa);
73
+ background-image: linear-gradient(#fff, #f5f8fa);
74
+ border: 1px solid #e1e8ed;
75
+ border-radius: 4px;
76
+ -moz-box-sizing: border-box;
77
+ box-sizing: border-box;
78
+ color: #292f33;
79
+ cursor: pointer;
80
+ display: inline-block;
81
+ font: inherit;
82
+ line-height: normal;
83
+ margin: 0;
84
+ padding: 8px 15px 7px;
85
+ position: relative;
86
+ text-align: center;
87
+ text-decoration: none;
88
+ -webkit-user-select: none;
89
+ -moz-user-select: none;
90
+ -ms-user-select: none;
91
+ user-select: none;
92
+ white-space: normal
93
+ }
94
+
95
+ .Button::-moz-focus-inner {
96
+ border: 0;
97
+ padding: 0
98
+ }
99
+
100
+ .Button:active,
101
+ .Button:focus,
102
+ .Button:hover {
103
+ text-decoration: none
104
+ }
105
+
106
+ .Button:hover {
107
+ background-color: #e1e8ed;
108
+ background-image: -webkit-linear-gradient(#fff, #e1e8ed);
109
+ background-image: -moz-linear-gradient(#fff, #e1e8ed);
110
+ background-image: -o-linear-gradient(#fff, #e1e8ed);
111
+ background-image: linear-gradient(#fff, #e1e8ed);
112
+ border-color: #e1e8ed
113
+ }
114
+
115
+ .Button:focus {
116
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(0, 132, 180, .5)
117
+ }
118
+
119
+ .Button:active {
120
+ background-color: #e1e8ed;
121
+ background-image: -webkit-linear-gradient(#fff, #f5f8fa);
122
+ background-image: -moz-linear-gradient(#fff, #f5f8fa);
123
+ background-image: -o-linear-gradient(#fff, #f5f8fa);
124
+ background-image: linear-gradient(#fff, #f5f8fa);
125
+ border-color: #ccd6dd;
126
+ box-shadow: inset 0 1px 4px rgba(0, 0, 0, .2)
127
+ }
128
+
129
+ .Button.is-disabled,
130
+ .Button:disabled {
131
+ cursor: default;
132
+ opacity: .6
133
+ }
134
+
135
+ .Button-label {
136
+ font-weight: 700
137
+ }
138
+
139
+ .Button--full {
140
+ display: block;
141
+ width: 100%
142
+ }
143
+
144
+ .Emoji--forText {
145
+ height: 1.25em;
146
+ width: 1.25em;
147
+ padding: 0 .05em 0 .1em;
148
+ vertical-align: -.2em
149
+ }
150
+
151
+ .Emoji--forLinks {
152
+ background-position: .1em;
153
+ background-repeat: no-repeat;
154
+ background-size: 1.25em 1.25em;
155
+ letter-spacing: 1.1em;
156
+ line-height: 1.25em;
157
+ padding-top: .15em;
158
+ -moz-user-select: none;
159
+ -ms-user-select: none
160
+ }
161
+
162
+ .Icon {
163
+ display: inline-block;
164
+ height: 1.25em;
165
+ background-repeat: no-repeat;
166
+ background-size: contain;
167
+ vertical-align: text-bottom
168
+ }
169
+
170
+ .Icon--alertsPill {
171
+ width: 1.07639em;
172
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2062%2072%22%3E%3Cpath%20fill%3D%22%23dd2e44%22%20d%3D%22M51%2014H11c-4.42%200-8%203.58-8%208v28c0%204.418%203.58%208%208%208h40c4.418%200%208-3.582%208-8V22c0-4.42-3.582-8-8-8zM12.107%2036.997L12%2037c-1.057%200-1.94-.826-1.996-1.894-.34-6.354%203.132-12.276%208.844-15.088.99-.487%202.19-.08%202.677.912s.08%202.19-.912%202.678c-4.272%202.103-6.87%206.532-6.615%2011.285.06%201.103-.788%202.045-1.89%202.104zm7%201L19%2038c-1.057%200-1.94-.827-1.996-1.894-.234-4.39%202.164-8.478%206.108-10.413.992-.488%202.19-.08%202.677.914.486.99.077%202.19-.915%202.676-2.503%201.23-4.025%203.824-3.876%206.61.056%201.104-.79%202.045-1.893%202.104zm21.106%209.11c-.21.774-.94%201.282-1.733%201.387-.093.014-.188.02-.285.02H34.4C33.93%2049.955%2032.593%2051%2031%2051c-1.596%200-2.932-1.047-3.398-2.485h-3.78c-.91%200-1.817-.544-2.046-1.426-.223-.86.042-1.692.792-2.145.2-.248%201.048-1.487%201.048-4.71%200-5.407%202.46-8.042%205.273-8.893.13-1.054%201.02-1.873%202.108-1.873%201.093%200%201.983.823%202.11%201.88%202.827.86%205.272%203.486%205.286%208.858.008%203.192.827%204.462%201.044%204.742.014.01.027.02.04.032.718.466.96%201.286.735%202.125zm4.785-11C44.94%2037.172%2044.058%2038%2043.002%2038c-.036%200-.072%200-.108-.003-1.103-.06-1.95-1-1.89-2.104.147-2.786-1.375-5.38-3.877-6.61-.992-.486-1.4-1.685-.914-2.676.487-.99%201.685-1.4%202.677-.914%203.944%201.936%206.34%206.024%206.108%2010.413zm7-1C51.94%2036.172%2051.058%2037%2050.002%2037c-.036%200-.072%200-.108-.003-1.103-.06-1.95-1-1.89-2.104.253-4.753-2.344-9.183-6.616-11.285-.99-.488-1.4-1.687-.912-2.678.487-.99%201.686-1.4%202.677-.912%205.713%202.812%209.184%208.734%208.845%2015.088z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M38.89%2025.693c-.992-.487-2.19-.077-2.677.914-.487.99-.078%202.19.914%202.676%202.503%201.23%204.025%203.824%203.876%206.61-.06%201.104.788%202.045%201.89%202.104.037.002.073.003.11.003%201.055%200%201.937-.827%201.994-1.894.234-4.39-2.163-8.477-6.107-10.413zM43.154%2020.02c-.99-.49-2.19-.08-2.677.91-.488.992-.08%202.19.912%202.68%204.27%202.102%206.868%206.53%206.614%2011.284-.06%201.103.788%202.045%201.89%202.104l.108.002c1.055%200%201.938-.827%201.995-1.894.34-6.354-3.13-12.276-8.843-15.087zM39.48%2044.982l-.04-.032c-.217-.28-1.036-1.55-1.044-4.742-.013-5.37-2.46-8-5.286-8.857-.127-1.057-1.017-1.88-2.11-1.88-1.09%200-1.98.818-2.11%201.872-2.812.85-5.272%203.486-5.272%208.892%200%203.224-.847%204.463-1.048%204.71-.75.453-1.016%201.285-.792%202.145.23.88%201.136%201.425%202.047%201.425h3.78C28.068%2049.953%2029.404%2051%2031%2051c1.593%200%202.93-1.047%203.398-2.485h3.796c.097%200%20.192-.007.285-.02.792-.105%201.523-.613%201.732-1.388.227-.84-.016-1.66-.732-2.125zM24.874%2029.283c.992-.486%201.4-1.685.914-2.676-.487-.993-1.685-1.402-2.677-.914-3.943%201.936-6.34%206.023-6.107%2010.413C17.06%2037.173%2017.943%2038%2019%2038c.035%200%20.07%200%20.107-.003%201.103-.06%201.95-1%201.89-2.104-.148-2.786%201.374-5.38%203.877-6.61zM20.613%2023.608c.99-.488%201.4-1.687.912-2.678s-1.687-1.4-2.677-.912c-5.712%202.812-9.183%208.733-8.844%2015.088C10.06%2036.174%2010.944%2037%2012%2037c.035%200%20.07%200%20.107-.003%201.103-.06%201.95-1%201.89-2.104-.253-4.752%202.343-9.182%206.616-11.285z%22%2F%3E%3C%2Fsvg%3E)
173
+ }
174
+
175
+ .Icon--lightning {
176
+ width: .625em;
177
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2072%22%3E%3Cpath%20fill%3D%22%232b7bb9%22%20d%3D%22M30.738%2028.01C30.382%2027.387%2029.718%2027%2029%2027H18.145l6.686-15.194c.273-.62.215-1.333-.155-1.898C24.305%209.34%2023.675%209%2023%209H11c-.925%200-1.73.634-1.945%201.533l-6%2025c-.143.596-.005%201.224.374%201.705.38.482.957.762%201.57.762h7.278L8.034%2060.632c-.18.953.353%201.897%201.26%202.24.23.087.47.128.706.128.69%200%201.35-.357%201.72-.98l19-32c.367-.617.374-1.384.018-2.01z%22%2F%3E%3C%2Fsvg%3E)
178
+ }
179
+
180
+ .Icon--playCircle {
181
+ width: 1.04167em;
182
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2072%22%3E%3Cpath%20opacity%3D%22.8%22%20fill%3D%22%231DA1F2%22%20d%3D%22M30%2012C16.768%2012%206%2022.765%206%2036s10.766%2023.998%2024%2023.998%2024-10.765%2024-24S43.235%2012%2030%2012z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M39.2%2034.34l-12-9c-.606-.455-1.418-.528-2.094-.19-.677.34-1.106%201.032-1.106%201.79v18c0%20.758.428%201.45%201.106%201.79.283.14.59.21.894.21.425%200%20.847-.136%201.2-.4l12-9c.503-.377.8-.97.8-1.6%200-.63-.295-1.223-.8-1.6z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M30%2015c11.598%200%2021%209.402%2021%2021s-9.4%2020.998-21%2020.998-21-9.402-21-21S18.4%2015%2030%2015m0-6C15.112%209%203%2021.11%203%2036s12.112%2026.998%2027%2026.998%2027-12.11%2027-27S44.888%209%2030%209z%22%2F%3E%3C%2Fsvg%3E)
183
+ }
184
+
185
+ .Icon--reply {
186
+ width: 1.28472em;
187
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%238899a6%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E);
188
+ -webkit-transform: scaleX(1);
189
+ -moz-transform: scaleX(1);
190
+ -ms-transform: scaleX(1);
191
+ -o-transform: scaleX(1);
192
+ transform: scaleX(1)
193
+ }
194
+
195
+ .Icon--retweet {
196
+ width: 1.28472em;
197
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2074%2072%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%238899a6%22%20d%3D%22M70.676%2036.644C70.166%2035.636%2069.13%2035%2068%2035h-7V19c0-2.21-1.79-4-4-4H34c-2.21%200-4%201.79-4%204s1.79%204%204%204h18c.552%200%20.998.446%201%20.998V35h-7c-1.13%200-2.165.636-2.676%201.644-.51%201.01-.412%202.22.257%203.13l11%2015C55.148%2055.545%2056.046%2056%2057%2056s1.855-.455%202.42-1.226l11-15c.668-.912.767-2.122.256-3.13zM40%2048H22c-.54%200-.97-.427-.992-.96L21%2036h7c1.13%200%202.166-.636%202.677-1.644.51-1.01.412-2.22-.257-3.13l-11-15C18.854%2015.455%2017.956%2015%2017%2015s-1.854.455-2.42%201.226l-11%2015c-.667.912-.767%202.122-.255%203.13C3.835%2035.365%204.87%2036%206%2036h7l.012%2016.003c.002%202.208%201.792%203.997%204%203.997h22.99c2.208%200%204-1.79%204-4s-1.792-4-4-4z%22%2F%3E%3C%2Fsvg%3E);
198
+ -webkit-transform: scaleX(1);
199
+ -moz-transform: scaleX(1);
200
+ -ms-transform: scaleX(1);
201
+ -o-transform: scaleX(1);
202
+ transform: scaleX(1)
203
+ }
204
+
205
+ .Icon--retweetBadge {
206
+ width: 1.04167em;
207
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2260%22%20height%3D%2272%22%20viewBox%3D%220%200%2060%2072%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2319cf86%22%20d%3D%22M49%209H11c-4.418%200-8%203.582-8%208v38c0%204.418%203.582%208%208%208h38c4.418%200%208-3.582%208-8V17c0-4.418-3.582-8-8-8zM21%2044h10c1.657%200%203%201.343%203%203s-1.343%203-3%203H17c-1.657%200-3-1.343-3-3V36H9c-.77%200-1.47-.44-1.803-1.134-.333-.692-.24-1.516.24-2.115l8-10c.76-.947%202.365-.947%203.124%200l8%2010c.48.6.576%201.425.243%202.117C26.47%2035.56%2025.77%2036%2025%2036h-5v7c0%20.553.448%201%201%201zm31.562-4.75l-8%2010c-.38.474-.954.75-1.562.75s-1.182-.276-1.562-.75l-8-10c-.48-.6-.574-1.424-.24-2.116C33.53%2036.44%2034.23%2036%2035%2036h5v-7c0-.553-.447-1-1-1H29c-1.657%200-3-1.343-3-3s1.343-3%203-3h14c1.657%200%203%201.343%203%203v11h5c.77%200%201.47.44%201.803%201.134.333.692.24%201.515-.24%202.115z%22%2F%3E%3C%2Fsvg%3E);
208
+ -webkit-transform: scaleX(1);
209
+ -moz-transform: scaleX(1);
210
+ -ms-transform: scaleX(1);
211
+ -o-transform: scaleX(1);
212
+ transform: scaleX(1)
213
+ }
214
+
215
+ .Icon--mute {
216
+ width: 1.18056em;
217
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2068%2072%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20class%3D%22icon%22%20d%3D%22M37.105%209.21c-1.142-.45-2.447-.162-3.29.734L18.705%2026H7c-1.657%200-3%201.343-3%203v14c0%201.657%201.343%203%203%203h11.704l15.11%2016.056c.844.896%202.15%201.185%203.29.733C38.25%2062.334%2039%2061.23%2039%2060V12c0-1.23-.75-2.335-1.895-2.79zM45%2048c-.746%200-1.492-.276-2.073-.832-1.197-1.146-1.24-3.044-.094-4.24C44.733%2040.937%2046%2039%2046%2036s-1.267-4.938-3.168-6.927c-1.145-1.197-1.103-3.096.094-4.24%201.198-1.147%203.097-1.104%204.242.094C49.418%2027.277%2052%2030.663%2052%2036s-2.583%208.722-4.832%2011.073C46.578%2047.69%2045.79%2048%2045%2048z%22%2F%3E%3Cpath%20class%3D%22icon%22%20d%3D%22M54%2054c-.746%200-1.492-.276-2.073-.832-1.197-1.146-1.24-3.044-.094-4.24%203.365-3.52%205.152-7.992%205.168-12.938-.015-4.926-1.802-9.4-5.167-12.917-1.145-1.197-1.103-3.096.094-4.24%201.197-1.146%203.097-1.104%204.242.094%204.447%204.65%206.81%2010.55%206.83%2017.063-.02%206.532-2.383%2012.434-6.83%2017.083-.59.616-1.38.927-2.17.927z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)
218
+ }
219
+
220
+ .Icon--unmute {
221
+ width: 1.18056em;
222
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2068%2072%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20class%3D%22icon%22%20d%3D%22M37.105%209.21c-1.142-.45-2.447-.162-3.29.734L18.705%2026H7c-1.657%200-3%201.343-3%203v14c0%201.657%201.343%203%203%203h11.704l15.11%2016.056c.844.896%202.15%201.185%203.29.733C38.25%2062.334%2039%2061.23%2039%2060V12c0-1.23-.75-2.335-1.895-2.79zM58.242%2036l5.88-5.88c1.17-1.17%201.17-3.07%200-4.24-1.172-1.173-3.072-1.173-4.243%200L54%2031.757l-5.88-5.88c-1.17-1.17-3.07-1.17-4.24%200-1.173%201.172-1.173%203.072%200%204.243L49.757%2036l-5.88%205.88c-1.17%201.17-1.17%203.07%200%204.24.586.587%201.354.88%202.122.88s1.536-.293%202.12-.88L54%2040.243l5.88%205.88c.584.585%201.352.878%202.12.878s1.536-.293%202.12-.88c1.173-1.17%201.173-3.07%200-4.24L58.243%2036z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)
223
+ }
224
+
225
+ .Icon--twitter {
226
+ width: 1.25em;
227
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h72v72H0z%22%2F%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%231da1f2%22%20d%3D%22M68.812%2015.14c-2.348%201.04-4.87%201.744-7.52%202.06%202.704-1.62%204.78-4.186%205.757-7.243-2.53%201.5-5.33%202.592-8.314%203.176C56.35%2010.59%2052.948%209%2049.182%209c-7.23%200-13.092%205.86-13.092%2013.093%200%201.026.118%202.02.338%202.98C25.543%2024.527%2015.9%2019.318%209.44%2011.396c-1.125%201.936-1.77%204.184-1.77%206.58%200%204.543%202.312%208.552%205.824%2010.9-2.146-.07-4.165-.658-5.93-1.64-.002.056-.002.11-.002.163%200%206.345%204.513%2011.638%2010.504%2012.84-1.1.298-2.256.457-3.45.457-.845%200-1.666-.078-2.464-.23%201.667%205.2%206.5%208.985%2012.23%209.09-4.482%203.51-10.13%205.605-16.26%205.605-1.055%200-2.096-.06-3.122-.184%205.794%203.717%2012.676%205.882%2020.067%205.882%2024.083%200%2037.25-19.95%2037.25-37.25%200-.565-.013-1.133-.038-1.693%202.558-1.847%204.778-4.15%206.532-6.774z%22%2F%3E%3C%2Fsvg%3E)
228
+ }
229
+
230
+ .Icon--twitterWhite {
231
+ width: 1.25em;
232
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h72v72H0z%22%2F%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23fff%22%20d%3D%22M68.812%2015.14c-2.348%201.04-4.87%201.744-7.52%202.06%202.704-1.62%204.78-4.186%205.757-7.243-2.53%201.5-5.33%202.592-8.314%203.176C56.35%2010.59%2052.948%209%2049.182%209c-7.23%200-13.092%205.86-13.092%2013.093%200%201.026.118%202.02.338%202.98C25.543%2024.527%2015.9%2019.318%209.44%2011.396c-1.125%201.936-1.77%204.184-1.77%206.58%200%204.543%202.312%208.552%205.824%2010.9-2.146-.07-4.165-.658-5.93-1.64-.002.056-.002.11-.002.163%200%206.345%204.513%2011.638%2010.504%2012.84-1.1.298-2.256.457-3.45.457-.845%200-1.666-.078-2.464-.23%201.667%205.2%206.5%208.985%2012.23%209.09-4.482%203.51-10.13%205.605-16.26%205.605-1.055%200-2.096-.06-3.122-.184%205.794%203.717%2012.676%205.882%2020.067%205.882%2024.083%200%2037.25-19.95%2037.25-37.25%200-.565-.013-1.133-.038-1.693%202.558-1.847%204.778-4.15%206.532-6.774z%22%2F%3E%3C%2Fsvg%3E)
233
+ }
234
+
235
+ .Icon--verified {
236
+ width: 1.11111em;
237
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2064%2072%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h64v72H0z%22%2F%3E%3Cpath%20fill%3D%22%231da1f2%22%20d%3D%22M3%2037.315c0%204.125%202.162%207.726%205.363%209.624-.056.467-.09.937-.09%201.42%200%206.103%204.72%2011.045%2010.546%2011.045%201.295%200%202.542-.234%203.687-.686C24.22%2062.4%2027.827%2064.93%2032%2064.93c4.174%200%207.782-2.53%209.49-6.213%201.148.45%202.39.685%203.69.685%205.826%200%2010.546-4.94%2010.546-11.045%200-.483-.037-.953-.093-1.42C58.83%2045.04%2061%2041.44%2061%2037.314c0-4.37-2.42-8.15-5.933-9.946.427-1.203.658-2.5.658-3.865%200-6.104-4.72-11.045-10.545-11.045-1.302%200-2.543.232-3.69.688-1.707-3.685-5.315-6.216-9.49-6.216-4.173%200-7.778%202.53-9.492%206.216-1.146-.455-2.393-.688-3.688-.688-5.827%200-10.545%204.94-10.545%2011.045%200%201.364.23%202.662.656%203.864C5.42%2029.163%203%2032.944%203%2037.314z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.87%2039.08l7.015%206.978c.585.582%201.35.873%202.116.873.77%200%201.542-.294%202.127-.883.344-.346%2015.98-15.974%2015.98-15.974%201.172-1.172%201.172-3.07%200-4.243-1.17-1.17-3.07-1.172-4.242%200l-13.87%2013.863-4.892-4.868c-1.174-1.168-3.074-1.164-4.242.01-1.168%201.176-1.163%203.075.01%204.244z%22%2F%3E%3C%2Fsvg%3E)
238
+ }
239
+
240
+ .Icon--vine {
241
+ width: .9375em;
242
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2054%2072%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23fff%22%20d%3D%22M48.23%2031.25c1.21-2.712%201.877-6.235%201.877-9.32%200-8.304-4.205-13.136-11.894-13.136-7.91%200-12.54%206.136-12.54%2014.225%200%208.01%203.71%2014.887%209.838%2018.018-2.573%205.194-5.853%209.775-9.264%2013.22-6.2-7.56-11.803-17.644-14.103-37.32H3c4.223%2032.774%2016.814%2043.21%2020.143%2045.213%201.883%201.147%203.505%201.09%205.227.112%202.705-1.555%2010.814-9.738%2015.32-19.33%201.883-.005%204.153-.223%206.417-.737V35.74c-1.384.32-2.726.465-3.934.465-6.776%200-11.997-4.774-11.997-13.082%200-4.068%201.558-6.184%203.767-6.184%202.1%200%203.493%201.9%203.493%205.754%200%202.186-.575%204.59-1.01%206.01%200%200%202.093%203.677%207.804%202.547z%22%2F%3E%3C%2Fsvg%3E)
243
+ }
244
+
245
+ .Icon--verifiedWhite {
246
+ width: 1.11111em;
247
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2072%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M57%2037.288c0-4.07-2.25-7.59-5.523-9.26.397-1.12.613-2.328.613-3.598%200-5.683-4.394-10.283-9.818-10.283-1.212%200-2.368.216-3.436.64C37.246%2011.357%2033.886%209%2030%209c-3.885%200-7.242%202.357-8.837%205.787-1.066-.424-2.228-.64-3.434-.64-5.426%200-9.82%204.6-9.82%2010.283%200%201.27.217%202.478.612%203.598-3.27%201.67-5.52%205.192-5.52%209.26%200%203.84%202.01%207.193%204.99%208.96-.05.435-.082.874-.082%201.323%200%205.683%204.392%2010.284%209.818%2010.284%201.206%200%202.368-.218%203.434-.638C22.758%2060.644%2026.115%2063%2030%2063c3.887%200%207.246-2.356%208.837-5.784%201.068.42%202.224.638%203.436.638%205.423%200%209.818-4.6%209.818-10.283%200-.448-.034-.886-.085-1.322C54.98%2044.48%2057%2041.128%2057%2037.288zm-14.797-6.742s-14.558%2014.55-14.878%2014.872c-.546.548-1.263.823-1.98.823-.712%200-1.425-.27-1.97-.812l-6.53-6.498c-1.093-1.088-1.098-2.857-.01-3.95%201.087-1.095%202.856-1.098%203.95-.01l4.555%204.53%2012.914-12.906c1.09-1.09%202.86-1.09%203.95%200%201.09%201.093%201.09%202.86%200%203.952z%22%2F%3E%3C%2Fsvg%3E)
248
+ }
249
+
250
+ .Icon--heart {
251
+ width: 1.25em;
252
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%238899a6%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)
253
+ }
254
+
255
+ .Icon--informationCircleWhite {
256
+ height: 18px;
257
+ width: 18px;
258
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23fff%22%20d%3D%22M12%2018.042c-.553%200-1-.447-1-1v-5.5c0-.553.447-1%201-1s1%20.447%201%201v5.5c0%20.553-.447%201-1%201z%22%2F%3E%3Ccircle%20class%3D%22icon%22%20fill%3D%22%23fff%22%20cx%3D%2212%22%20cy%3D%228.042%22%20r%3D%221.25%22%2F%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23fff%22%20d%3D%22M12%2022.75C6.072%2022.75%201.25%2017.928%201.25%2012S6.072%201.25%2012%201.25%2022.75%206.072%2022.75%2012%2017.928%2022.75%2012%2022.75zm0-20C6.9%202.75%202.75%206.9%202.75%2012S6.9%2021.25%2012%2021.25s9.25-4.15%209.25-9.25S17.1%202.75%2012%202.75z%22%2F%3E%3C%2Fsvg%3E)
259
+ }
260
+
261
+ .Icon--profile {
262
+ width: 1.25em;
263
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23657786%22%20d%3D%22M12%2011.816c1.355%200%202.872-.15%203.84-1.256.814-.93%201.078-2.368.806-4.392-.38-2.825-2.117-4.512-4.646-4.512S7.734%203.343%207.354%206.17c-.272%202.022-.008%203.46.806%204.39.968%201.107%202.485%201.256%203.84%201.256zM8.84%206.368c.162-1.2.787-3.212%203.16-3.212s2.998%202.013%203.16%203.212c.207%201.55.057%202.627-.45%203.205-.455.52-1.266.743-2.71.743s-2.255-.223-2.71-.743c-.507-.578-.657-1.656-.45-3.205zm11.44%2012.868c-.877-3.526-4.282-5.99-8.28-5.99s-7.403%202.464-8.28%205.99c-.172.692-.028%201.4.395%201.94.408.52%201.04.82%201.733.82h12.304c.693%200%201.325-.3%201.733-.82.424-.54.567-1.247.394-1.94zm-1.576%201.016c-.126.16-.316.246-.552.246H5.848c-.235%200-.426-.085-.552-.246-.137-.174-.18-.412-.12-.654.71-2.855%203.517-4.85%206.824-4.85s6.114%201.994%206.824%204.85c.06.242.017.48-.12.654z%22%2F%3E%3C%2Fsvg%3E)
264
+ }
265
+
266
+ .Icon--profileCTA {
267
+ width: 1.25em;
268
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%233b94d9%22%20d%3D%22M12%2011.816c1.355%200%202.872-.15%203.84-1.256.814-.93%201.078-2.368.806-4.392-.38-2.825-2.117-4.512-4.646-4.512S7.734%203.343%207.354%206.17c-.272%202.022-.008%203.46.806%204.39.968%201.107%202.485%201.256%203.84%201.256zM8.84%206.368c.162-1.2.787-3.212%203.16-3.212s2.998%202.013%203.16%203.212c.207%201.55.057%202.627-.45%203.205-.455.52-1.266.743-2.71.743s-2.255-.223-2.71-.743c-.507-.578-.657-1.656-.45-3.205zm11.44%2012.868c-.877-3.526-4.282-5.99-8.28-5.99s-7.403%202.464-8.28%205.99c-.172.692-.028%201.4.395%201.94.408.52%201.04.82%201.733.82h12.304c.693%200%201.325-.3%201.733-.82.424-.54.567-1.247.394-1.94zm-1.576%201.016c-.126.16-.316.246-.552.246H5.848c-.235%200-.426-.085-.552-.246-.137-.174-.18-.412-.12-.654.71-2.855%203.517-4.85%206.824-4.85s6.114%201.994%206.824%204.85c.06.242.017.48-.12.654z%22%2F%3E%3C%2Fsvg%3E)
269
+ }
270
+
271
+ .Icon--replyCTA {
272
+ width: 1.25em;
273
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%233b94d9%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E);
274
+ -webkit-transform: scaleX(1);
275
+ -moz-transform: scaleX(1);
276
+ -ms-transform: scaleX(1);
277
+ -o-transform: scaleX(1);
278
+ transform: scaleX(1)
279
+ }
280
+
281
+ .Icon--chevronRightCTA {
282
+ width: 1.25em;
283
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%238899a6%22%20d%3D%22M17.207%2011.293l-7.5-7.5c-.39-.39-1.023-.39-1.414%200s-.39%201.023%200%201.414L15.086%2012l-6.793%206.793c-.39.39-.39%201.023%200%201.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023%200-1.414z%22%2F%3E%3C%2Fsvg%3E);
284
+ -webkit-transform: scaleX(1);
285
+ -moz-transform: scaleX(1);
286
+ -ms-transform: scaleX(1);
287
+ -o-transform: scaleX(1);
288
+ transform: scaleX(1)
289
+ }
290
+
291
+ .Interstitial {
292
+ position: absolute;
293
+ top: 0;
294
+ left: 0;
295
+ width: 100%;
296
+ height: 100%;
297
+ border-radius: 5px;
298
+ background: rgba(0, 0, 0, .75);
299
+ font-size: 17px
300
+ }
301
+
302
+ .Interstitial-subtext {
303
+ font-size: 13px
304
+ }
305
+
306
+ .Interstitial-link {
307
+ font-size: 13px
308
+ }
309
+
310
+ .Interstitial-link,
311
+ .Interstitial-link:active,
312
+ .Interstitial-link:focus,
313
+ .Interstitial-link:hover,
314
+ .Interstitial-link:visited {
315
+ text-decoration: underline
316
+ }
317
+
318
+ .Interstitial-link,
319
+ .Interstitial-link:active,
320
+ .Interstitial-link:visited {
321
+ color: #71c9f8;
322
+ -webkit-text-decoration-color: #71c9f8;
323
+ -moz-text-decoration-color: #71c9f8;
324
+ text-decoration-color: #71c9f8
325
+ }
326
+
327
+ .Interstitial-link:focus {
328
+ color: #9bdbfd;
329
+ -webkit-text-decoration-color: #9bdbfd;
330
+ -moz-text-decoration-color: #9bdbfd;
331
+ text-decoration-color: #9bdbfd
332
+ }
333
+
334
+ .Interstitial-link:hover {
335
+ color: #9bdbfd;
336
+ -webkit-text-decoration-color: #9bdbfd;
337
+ -moz-text-decoration-color: #9bdbfd;
338
+ text-decoration-color: #9bdbfd
339
+ }
340
+
341
+ .Interstitial-cookieConsent {
342
+ position: absolute;
343
+ top: 50%;
344
+ left: 50%;
345
+ margin-right: -50%;
346
+ -webkit-transform: translate(-50%, -50%);
347
+ -moz-transform: translate(-50%, -50%);
348
+ -ms-transform: translate(-50%, -50%);
349
+ -o-transform: translate(-50%, -50%);
350
+ transform: translate(-50%, -50%);
351
+ text-align: center;
352
+ padding: 10px;
353
+ color: #ccd6dd
354
+ }
355
+
356
+ .Interstitial-cookieConsentButton {
357
+ display: block;
358
+ margin: 10px auto;
359
+ padding: 5px 20px;
360
+ background: rgba(0, 0, 0, .25);
361
+ border: 1px solid #ccd6dd;
362
+ border-radius: 4px;
363
+ color: inherit;
364
+ font-size: 15px;
365
+ cursor: pointer
366
+ }
367
+
368
+ .Interstitial-cookieConsentButton:hover {
369
+ background: rgba(255, 255, 255, .1)
370
+ }
371
+
372
+ .SandboxRoot.env-bp-min .Interstitial {
373
+ font-size: 13px
374
+ }
375
+
376
+ .SandboxRoot.env-bp-min .Interstitial-subtext {
377
+ display: none
378
+ }
379
+
380
+ .Identity-name {
381
+ font-weight: 700
382
+ }
383
+
384
+ .Identity-screenName {
385
+ color: #8899a6
386
+ }
387
+
388
+ .Identity:focus {
389
+ text-decoration: none
390
+ }
391
+
392
+ .Identity:focus .Identity-name {
393
+ text-decoration: underline
394
+ }
395
+
396
+ .Identity--blended:focus,
397
+ .Identity--blended:hover {
398
+ color: inherit
399
+ }
400
+
401
+ .Identity--blended .Identity-screenName {
402
+ color: inherit
403
+ }
404
+
405
+ .Identity--withInlineAvatar {
406
+ line-height: 16px
407
+ }
408
+
409
+ .Identity--withInlineAvatar .Identity-avatar {
410
+ width: 16px;
411
+ height: 16px;
412
+ border-radius: 2px;
413
+ vertical-align: top
414
+ }
415
+
416
+ .PrettyLink:focus {
417
+ text-decoration: none
418
+ }
419
+
420
+ .PrettyLink:focus .PrettyLink-value {
421
+ text-decoration: underline
422
+ }
423
+
424
+ .ScribeTarget-pixel {
425
+ background-color: transparent;
426
+ position: absolute;
427
+ width: 1px;
428
+ height: 1px;
429
+ overflow: hidden;
430
+ padding: 0;
431
+ border-width: 0;
432
+ border-style: none;
433
+ border-style: initial;
434
+ border-color: currentColor;
435
+ border-color: initial;
436
+ -webkit-border-image: none;
437
+ -moz-border-image: none;
438
+ -o-border-image: none;
439
+ border-image: none;
440
+ -webkit-border-image: initial;
441
+ -moz-border-image: initial;
442
+ -o-border-image: initial;
443
+ border-image: initial
444
+ }
445
+
446
+ .CroppedImage {
447
+ position: relative;
448
+ display: inline-block;
449
+ overflow: hidden
450
+ }
451
+
452
+ .CroppedImage-image {
453
+ position: absolute;
454
+ top: 0;
455
+ left: 0;
456
+ min-height: 100%;
457
+ min-width: 100%
458
+ }
459
+
460
+ .CroppedImage--fillHeight .CroppedImage-image {
461
+ height: 100%;
462
+ width: auto
463
+ }
464
+
465
+ .CroppedImage--fillWidth .CroppedImage-image {
466
+ width: 100%;
467
+ height: auto
468
+ }
469
+
470
+ .FilledIframe {
471
+ max-width: 100%;
472
+ max-height: 100%
473
+ }
474
+
475
+ .FilledIframe--upscale {
476
+ width: 100%;
477
+ height: 100%
478
+ }
479
+
480
+ .ImageGrid {
481
+ position: relative
482
+ }
483
+
484
+ .ImageGrid-image {
485
+ position: absolute;
486
+ width: 50%;
487
+ padding-bottom: 25%;
488
+ border: 0 solid #66757f;
489
+ -webkit-transform: rotate(0);
490
+ -moz-transform: rotate(0);
491
+ -ms-transform: rotate(0);
492
+ -o-transform: rotate(0);
493
+ transform: rotate(0)
494
+ }
495
+
496
+ .ImageGrid--2 .ImageGrid-image {
497
+ padding-bottom: 50%
498
+ }
499
+
500
+ .ImageGrid--2 .ImageGrid-image-0 {
501
+ top: 0;
502
+ left: 0
503
+ }
504
+
505
+ .ImageGrid--2 .ImageGrid-image-1 {
506
+ top: 0;
507
+ right: 0;
508
+ border-left-width: 1px
509
+ }
510
+
511
+ .ImageGrid--3 .ImageGrid-image-0 {
512
+ float: left;
513
+ padding-bottom: 50%;
514
+ top: 0;
515
+ left: 0
516
+ }
517
+
518
+ .ImageGrid--3 .ImageGrid-image-1 {
519
+ top: 0;
520
+ right: 0;
521
+ border-left-width: 1px
522
+ }
523
+
524
+ .ImageGrid--3 .ImageGrid-image-2 {
525
+ bottom: 0;
526
+ right: 0;
527
+ border-width: 1px 0 0 1px
528
+ }
529
+
530
+ .ImageGrid--4 .ImageGrid-image-0 {
531
+ top: 0;
532
+ left: 0
533
+ }
534
+
535
+ .ImageGrid--4 .ImageGrid-image-1 {
536
+ top: 0;
537
+ right: 0;
538
+ border-left-width: 1px
539
+ }
540
+
541
+ .ImageGrid--4 .ImageGrid-image-2 {
542
+ bottom: 0;
543
+ left: 0;
544
+ border-top-width: 1px
545
+ }
546
+
547
+ .ImageGrid--4 .ImageGrid-image-3 {
548
+ bottom: 0;
549
+ right: 0;
550
+ border-width: 1px 0 0 1px
551
+ }
552
+
553
+ .PlayButton {
554
+ font-size: 43px;
555
+ background-color: transparent
556
+ }
557
+
558
+ .PlayButton--centered {
559
+ -webkit-transform: translateX(-50%) translateY(-50%);
560
+ -moz-transform: translateX(-50%) translateY(-50%);
561
+ -ms-transform: translateX(-50%) translateY(-50%);
562
+ -o-transform: translateX(-50%) translateY(-50%);
563
+ transform: translateX(-50%) translateY(-50%)
564
+ }
565
+
566
+ .NaturalImage {
567
+ position: relative
568
+ }
569
+
570
+ .NaturalImage-image {
571
+ max-width: 100%;
572
+ border: 0;
573
+ line-height: 0;
574
+ height: auto
575
+ }
576
+
577
+ .NaturalImage-ctaOverlay {
578
+ position: absolute;
579
+ top: 50%;
580
+ left: 50%
581
+ }
582
+
583
+ .NaturalImage--fill .NaturalImage-image {
584
+ width: 100%
585
+ }
586
+
587
+ .MediaCard-media {
588
+ position: relative;
589
+ width: 100%;
590
+ overflow: hidden
591
+ }
592
+
593
+ .MediaCard-widthConstraint {
594
+ max-width: 100%
595
+ }
596
+
597
+ .MediaCard-mediaContainer {
598
+ position: relative;
599
+ padding-bottom: 0;
600
+ background-color: #292f33
601
+ }
602
+
603
+ .MediaCard--roundedBottom,
604
+ .MediaCard--roundedTop {
605
+ overflow: hidden
606
+ }
607
+
608
+ .MediaCard--roundedTop {
609
+ border-top-left-radius: 4px;
610
+ border-top-right-radius: 4px
611
+ }
612
+
613
+ .MediaCard--roundedBottom {
614
+ border-bottom-left-radius: 4px;
615
+ border-bottom-right-radius: 4px
616
+ }
617
+
618
+ .MediaCard-nsfwInfo {
619
+ display: none;
620
+ position: absolute;
621
+ top: 0;
622
+ left: 0;
623
+ z-index: 30;
624
+ width: 100%;
625
+ padding: 0 14px;
626
+ -moz-box-sizing: border-box;
627
+ box-sizing: border-box;
628
+ text-align: center
629
+ }
630
+
631
+ .MediaCard-nsfwHeading {
632
+ margin: 14px;
633
+ font-size: 14px;
634
+ font-weight: 700
635
+ }
636
+
637
+ .MediaCard-dismissNsfw {
638
+ margin: 14px
639
+ }
640
+
641
+ .MediaCard-mediaAsset {
642
+ display: block;
643
+ position: absolute;
644
+ top: 0;
645
+ left: 0;
646
+ width: 100%;
647
+ height: 100%;
648
+ line-height: 0;
649
+ -webkit-transition: opacity .5s;
650
+ -o-transition: opacity .5s;
651
+ -moz-transition: opacity .5s;
652
+ transition: opacity .5s;
653
+ background-color: #000
654
+ }
655
+
656
+ .MediaCard-mediaPlaceholder {
657
+ background: #292f33
658
+ }
659
+
660
+ .MediaCard-mediaPlaceholder.is-backgrounded {
661
+ filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
662
+ -webkit-filter: blur(10px);
663
+ filter: blur(10px)
664
+ }
665
+
666
+ .MediaCard-actionControl {
667
+ position: absolute;
668
+ top: 50%;
669
+ left: 50%
670
+ }
671
+
672
+ .MediaCard-siteUser {
673
+ margin: 0 0 14px
674
+ }
675
+
676
+ .MediaCard-bylineUser {
677
+ color: #8899a6;
678
+ margin: 14px 0
679
+ }
680
+
681
+ .MediaCard.is-nsfw .MediaCard-nsfwInfo {
682
+ display: block
683
+ }
684
+
685
+ .MediaCard.is-nsfw .MediaCard-mediaAsset {
686
+ opacity: 0
687
+ }
688
+
689
+ .PrerenderedCard {
690
+ display: none;
691
+ height: 0;
692
+ width: 100%;
693
+ overflow: hidden
694
+ }
695
+
696
+ .PrerenderedCard.is-constrainedByMaxWidth {
697
+ display: block
698
+ }
699
+
700
+ .PrerenderedCard.is-loaded {
701
+ height: auto
702
+ }
703
+
704
+ .tcu-textMute,
705
+ a.tcu-graylink {
706
+ color: #8899a6
707
+ }
708
+
709
+ .CallToAction {
710
+ display: -webkit-box;
711
+ display: -webkit-flex;
712
+ display: -moz-box;
713
+ display: -ms-flexbox;
714
+ display: flex;
715
+ -webkit-box-align: center;
716
+ -webkit-align-items: center;
717
+ -moz-box-align: center;
718
+ -ms-flex-align: center;
719
+ align-items: center;
720
+ border-color: #66757f;
721
+ border-style: solid;
722
+ border-radius: 0 0 4px 4px;
723
+ border-width: 1px 0 0 0;
724
+ padding: 9px 20px;
725
+ font-size: 14px
726
+ }
727
+
728
+ .SandboxRoot.env-bp-min .CallToAction {
729
+ font-size: 12.25px
730
+ }
731
+
732
+ .CallToAction:hover .Icon--profileCTA {
733
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2355acee%22%20d%3D%22M12%2011.816c1.355%200%202.872-.15%203.84-1.256.814-.93%201.078-2.368.806-4.392-.38-2.825-2.117-4.512-4.646-4.512S7.734%203.343%207.354%206.17c-.272%202.022-.008%203.46.806%204.39.968%201.107%202.485%201.256%203.84%201.256zM8.84%206.368c.162-1.2.787-3.212%203.16-3.212s2.998%202.013%203.16%203.212c.207%201.55.057%202.627-.45%203.205-.455.52-1.266.743-2.71.743s-2.255-.223-2.71-.743c-.507-.578-.657-1.656-.45-3.205zm11.44%2012.868c-.877-3.526-4.282-5.99-8.28-5.99s-7.403%202.464-8.28%205.99c-.172.692-.028%201.4.395%201.94.408.52%201.04.82%201.733.82h12.304c.693%200%201.325-.3%201.733-.82.424-.54.567-1.247.394-1.94zm-1.576%201.016c-.126.16-.316.246-.552.246H5.848c-.235%200-.426-.085-.552-.246-.137-.174-.18-.412-.12-.654.71-2.855%203.517-4.85%206.824-4.85s6.114%201.994%206.824%204.85c.06.242.017.48-.12.654z%22%2F%3E%3C%2Fsvg%3E)
734
+ }
735
+
736
+ .CallToAction:hover .Icon--replyCTA {
737
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2355acee%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)
738
+ }
739
+
740
+ .CallToAction:focus .Icon--profileCTA {
741
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2355acee%22%20d%3D%22M12%2011.816c1.355%200%202.872-.15%203.84-1.256.814-.93%201.078-2.368.806-4.392-.38-2.825-2.117-4.512-4.646-4.512S7.734%203.343%207.354%206.17c-.272%202.022-.008%203.46.806%204.39.968%201.107%202.485%201.256%203.84%201.256zM8.84%206.368c.162-1.2.787-3.212%203.16-3.212s2.998%202.013%203.16%203.212c.207%201.55.057%202.627-.45%203.205-.455.52-1.266.743-2.71.743s-2.255-.223-2.71-.743c-.507-.578-.657-1.656-.45-3.205zm11.44%2012.868c-.877-3.526-4.282-5.99-8.28-5.99s-7.403%202.464-8.28%205.99c-.172.692-.028%201.4.395%201.94.408.52%201.04.82%201.733.82h12.304c.693%200%201.325-.3%201.733-.82.424-.54.567-1.247.394-1.94zm-1.576%201.016c-.126.16-.316.246-.552.246H5.848c-.235%200-.426-.085-.552-.246-.137-.174-.18-.412-.12-.654.71-2.855%203.517-4.85%206.824-4.85s6.114%201.994%206.824%204.85c.06.242.017.48-.12.654z%22%2F%3E%3C%2Fsvg%3E)
742
+ }
743
+
744
+ .CallToAction:focus .Icon--replyCTA {
745
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2355acee%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)
746
+ }
747
+
748
+ .CallToAction-icon {
749
+ display: inline
750
+ }
751
+
752
+ .CallToAction-icon .Icon {
753
+ display: block
754
+ }
755
+
756
+ .CallToAction-text {
757
+ margin-left: 4px;
758
+ color: #3b94d9
759
+ }
760
+
761
+ .CallToAction:hover .CallToAction-text {
762
+ color: #55acee
763
+ }
764
+
765
+ .CallToAction:focus .CallToAction-text {
766
+ color: #55acee
767
+ }
768
+
769
+ .CallToAction-chevron {
770
+ margin-left: auto;
771
+ display: inline
772
+ }
773
+
774
+ .CallToAction-chevron .Icon {
775
+ display: block
776
+ }
777
+
778
+ .EmbeddedTweet {
779
+ overflow: hidden;
780
+ cursor: pointer;
781
+ background-color: #000;
782
+ border: 1px solid #66757f;
783
+ border-radius: 5px;
784
+ max-width: 520px
785
+ }
786
+
787
+ .EmbeddedTweet:hover {
788
+ border-color: #8899a6
789
+ }
790
+
791
+ .EmbeddedTweet-ancestor {
792
+ padding: 20px 20px 0 20px
793
+ }
794
+
795
+ .EmbeddedTweet-tweet {
796
+ padding: 20px 20px 11.6px 20px
797
+ }
798
+
799
+ .EmbeddedTweet-ancestor+.EmbeddedTweet-tweetContainer .EmbeddedTweet-tweet {
800
+ padding-top: 0
801
+ }
802
+
803
+ .EmbeddedTweet--cta .EmbeddedTweet-tweet {
804
+ padding-bottom: 10px
805
+ }
806
+
807
+ .SandboxRoot.env-bp-min .EmbeddedTweet-ancestor {
808
+ padding: 17.5px 17.5px 0 17.5px
809
+ }
810
+
811
+ .SandboxRoot.env-bp-min .EmbeddedTweet-tweet {
812
+ padding: 17.5px 17.5px 10.15px 17.5px
813
+ }
814
+
815
+ .SandboxRoot.env-bp-min .EmbeddedTweet-ancestor+.EmbeddedTweet-tweetContainer .EmbeddedTweet-tweet {
816
+ padding-top: 0
817
+ }
818
+
819
+ .Tweet-header {
820
+ display: -webkit-box;
821
+ display: -webkit-flex;
822
+ display: -moz-box;
823
+ display: -ms-flexbox;
824
+ display: flex
825
+ }
826
+
827
+ .Tweet-brand {
828
+ margin-left: auto
829
+ }
830
+
831
+ .Tweet-inReplyTo {
832
+ margin-bottom: 2px;
833
+ font-size: 14px;
834
+ color: #8899a6
835
+ }
836
+
837
+ .Tweet-author {
838
+ margin-top: 2px;
839
+ line-height: 0
840
+ }
841
+
842
+ .Tweet-authorLink {
843
+ line-height: 1.2
844
+ }
845
+
846
+ .Tweet-authorScreenName {
847
+ font-size: 14px
848
+ }
849
+
850
+ .Tweet-authorScreenName:before {
851
+ white-space: pre;
852
+ content: "\A\200e"
853
+ }
854
+
855
+ .Tweet-text {
856
+ white-space: pre-wrap;
857
+ cursor: text;
858
+ word-wrap: break-word
859
+ }
860
+
861
+ .Tweet-body {
862
+ margin-top: 13px
863
+ }
864
+
865
+ .Tweet-text[dir=ltr] {
866
+ text-align: left;
867
+ direction: ltr
868
+ }
869
+
870
+ .Tweet-text[dir=rtl] {
871
+ text-align: right;
872
+ direction: rtl
873
+ }
874
+
875
+ .Tweet-text+.Tweet-alert,
876
+ .Tweet-text+.Tweet-metadata {
877
+ margin-top: 3.2px
878
+ }
879
+
880
+ .Tweet-alert,
881
+ .Tweet-metadata {
882
+ font-size: 14px;
883
+ color: #8899a6
884
+ }
885
+
886
+ .Tweet-alert+.Tweet-metadata {
887
+ margin-top: 10.4px
888
+ }
889
+
890
+ .Tweet-card {
891
+ margin-top: 10.4px;
892
+ font-size: 14px
893
+ }
894
+
895
+ .Tweet-actions {
896
+ margin-top: 8.4px
897
+ }
898
+
899
+ .Tweet-action {
900
+ display: inline-block
901
+ }
902
+
903
+ .Tweet-action+.Tweet-action {
904
+ margin-left: 14px
905
+ }
906
+
907
+ .Tweet--compact {
908
+ font-size: 14px
909
+ }
910
+
911
+ .Tweet--compact .Tweet-author,
912
+ .Tweet--compact .TweetAuthor {
913
+ margin-top: 0
914
+ }
915
+
916
+ .Tweet--compact .Tweet-inReplyTo {
917
+ margin-bottom: 0
918
+ }
919
+
920
+ .Tweet--compact .Tweet-body {
921
+ margin-top: 0
922
+ }
923
+
924
+ .Tweet--compact .Tweet-metadata {
925
+ white-space: nowrap;
926
+ margin-right: 5px;
927
+ -webkit-align-self: flex-start;
928
+ -ms-flex-item-align: start;
929
+ align-self: flex-start
930
+ }
931
+
932
+ .Tweet--compact .Tweet-metadata--rightAligned {
933
+ margin-right: 0;
934
+ margin-left: auto
935
+ }
936
+
937
+ .Tweet--compact .Tweet-inReplyTo,
938
+ .Tweet--compact .Tweet-metadata,
939
+ .Tweet--compact .TweetAuthor-screenName {
940
+ font-size: 13px
941
+ }
942
+
943
+ .Tweet--compact .Tweet-ancestorContents {
944
+ min-width: 0;
945
+ -webkit-box-flex: 1;
946
+ -webkit-flex: 1;
947
+ -moz-box-flex: 1;
948
+ -ms-flex: 1;
949
+ flex: 1;
950
+ padding-bottom: 14px
951
+ }
952
+
953
+ .Tweet--compact .Tweet-inReplyTo {
954
+ margin-left: 9px
955
+ }
956
+
957
+ .Tweet--compact .Tweet-body {
958
+ margin-left: 9px
959
+ }
960
+
961
+ .Tweet--compact .Tweet-ancestorContainer {
962
+ display: -webkit-box;
963
+ display: -webkit-flex;
964
+ display: -moz-box;
965
+ display: -ms-flexbox;
966
+ display: flex;
967
+ position: relative
968
+ }
969
+
970
+ .Tweet--compact .Tweet-ancestorContainer::after {
971
+ border-color: #3d5466;
972
+ border-style: solid;
973
+ border-width: 1px;
974
+ content: "";
975
+ top: 26px;
976
+ bottom: 2px;
977
+ left: 17px;
978
+ position: absolute;
979
+ width: 0;
980
+ z-index: 1
981
+ }
982
+
983
+ .Tweet--compact .Tweet-ancestorContents .Tweet-body {
984
+ margin-left: 0
985
+ }
986
+
987
+ .Tweet--compact .Tweet-ancestorContents .Tweet-inReplyTo {
988
+ margin-left: 0
989
+ }
990
+
991
+ .SandboxRoot.env-bp-min .Tweet-body {
992
+ margin-top: 11.9px
993
+ }
994
+
995
+ .SandboxRoot.env-bp-min .Tweet-alert,
996
+ .SandboxRoot.env-bp-min .Tweet-authorScreenName,
997
+ .SandboxRoot.env-bp-min .Tweet-card,
998
+ .SandboxRoot.env-bp-min .Tweet-inReplyTo,
999
+ .SandboxRoot.env-bp-min .Tweet-metadata {
1000
+ font-size: 12.25px
1001
+ }
1002
+
1003
+ .SandboxRoot.env-bp-min .Tweet-text+.Tweet-alert,
1004
+ .SandboxRoot.env-bp-min .Tweet-text+.Tweet-metadata {
1005
+ margin-top: 2.8px
1006
+ }
1007
+
1008
+ .SandboxRoot.env-bp-min .Tweet-alert+.Tweet-metadata {
1009
+ margin-top: 9.1px
1010
+ }
1011
+
1012
+ .SandboxRoot.env-bp-min .Tweet-card {
1013
+ margin-top: 9.1px
1014
+ }
1015
+
1016
+ .SandboxRoot.env-bp-min .Tweet-actions {
1017
+ margin-top: 7.35px
1018
+ }
1019
+
1020
+ .SandboxRoot.env-bp-min .Tweet-action+.Tweet-action {
1021
+ margin-left: 14px
1022
+ }
1023
+
1024
+ .SandboxRoot.env-bp-min .Tweet--compact {
1025
+ font-size: 12.25px
1026
+ }
1027
+
1028
+ .SandboxRoot.env-bp-min .Tweet--compact .Tweet-body {
1029
+ margin-top: 0
1030
+ }
1031
+
1032
+ .SandboxRoot.env-bp-min .Tweet-action--newsAction+.Tweet-action--newsAction {
1033
+ margin-left: 7px
1034
+ }
1035
+
1036
+ .SandboxRoot.env-bp-min .Tweet--compact .Tweet-ancestorContents {
1037
+ padding-bottom: 11.4px
1038
+ }
1039
+
1040
+ .Tweet-action--newsActions {
1041
+ display: -webkit-box;
1042
+ display: -webkit-flex;
1043
+ display: -moz-box;
1044
+ display: -ms-flexbox;
1045
+ display: flex;
1046
+ white-space: nowrap;
1047
+ overflow: hidden;
1048
+ margin-right: 15px
1049
+ }
1050
+
1051
+ .Tweet-action--newsAction+.Tweet-action--newsAction {
1052
+ margin-left: 7px;
1053
+ white-space: nowrap;
1054
+ overflow: hidden
1055
+ }
1056
+
1057
+ .Tweet-action--heart,
1058
+ .Tweet-action--profile,
1059
+ .Tweet-action--reply {
1060
+ display: -webkit-box;
1061
+ display: -webkit-flex;
1062
+ display: -moz-box;
1063
+ display: -ms-flexbox;
1064
+ display: flex;
1065
+ -webkit-box-align: center;
1066
+ -webkit-align-items: center;
1067
+ -moz-box-align: center;
1068
+ -ms-flex-align: center;
1069
+ align-items: center
1070
+ }
1071
+
1072
+ .Tweet-action--newsAction .TweetAction-stat {
1073
+ margin-left: 3px;
1074
+ white-space: nowrap;
1075
+ overflow: hidden;
1076
+ text-overflow: ellipsis;
1077
+ min-width: 0
1078
+ }
1079
+
1080
+ .Tweet-action--newsAction .TweetAction-icon {
1081
+ -webkit-flex-shrink: 0;
1082
+ -ms-flex-negative: 0;
1083
+ flex-shrink: 0
1084
+ }
1085
+
1086
+ .Tweet-target {
1087
+ height: 1px;
1088
+ width: 1px
1089
+ }
1090
+
1091
+ .TweetAction,
1092
+ .TweetAction:visited {
1093
+ color: #8899a6
1094
+ }
1095
+
1096
+ .TweetAction-stat {
1097
+ display: inline-block;
1098
+ font-size: 14px;
1099
+ vertical-align: text-bottom
1100
+ }
1101
+
1102
+ .TweetAction--reply:active,
1103
+ .TweetAction--reply:focus,
1104
+ .TweetAction--reply:hover {
1105
+ color: #1DA1F2;
1106
+ text-decoration: none
1107
+ }
1108
+
1109
+ .TweetAction--reply:active .TweetAction-icon,
1110
+ .TweetAction--reply:focus .TweetAction-icon,
1111
+ .TweetAction--reply:hover .TweetAction-icon {
1112
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%231DA1F2%22%20d%3D%22M14.046%202.242l-4.148-.01h-.002c-4.374%200-7.8%203.427-7.8%207.802%200%204.098%203.186%207.206%207.465%207.37v3.828c0%20.108.045.286.12.403.143.225.385.347.633.347.138%200%20.277-.038.402-.118.264-.168%206.473-4.14%208.088-5.506%201.902-1.61%203.04-3.97%203.043-6.312v-.017c-.006-4.368-3.43-7.788-7.8-7.79zm3.787%2012.972c-1.134.96-4.862%203.405-6.772%204.643V16.67c0-.414-.334-.75-.75-.75h-.395c-3.66%200-6.318-2.476-6.318-5.886%200-3.534%202.768-6.302%206.3-6.302l4.147.01h.002c3.532%200%206.3%202.766%206.302%206.296-.003%201.91-.942%203.844-2.514%205.176z%22%2F%3E%3C%2Fsvg%3E)
1113
+ }
1114
+
1115
+ .TweetAction--retweet:active,
1116
+ .TweetAction--retweet:focus,
1117
+ .TweetAction--retweet:hover {
1118
+ color: #17BF63;
1119
+ text-decoration: none
1120
+ }
1121
+
1122
+ .TweetAction--retweet:active .TweetAction-icon,
1123
+ .TweetAction--retweet:focus .TweetAction-icon,
1124
+ .TweetAction--retweet:hover .TweetAction-icon {
1125
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2074%2072%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2317BF63%22%20d%3D%22M70.676%2036.644C70.166%2035.636%2069.13%2035%2068%2035h-7V19c0-2.21-1.79-4-4-4H34c-2.21%200-4%201.79-4%204s1.79%204%204%204h18c.552%200%20.998.446%201%20.998V35h-7c-1.13%200-2.165.636-2.676%201.644-.51%201.01-.412%202.22.257%203.13l11%2015C55.148%2055.545%2056.046%2056%2057%2056s1.855-.455%202.42-1.226l11-15c.668-.912.767-2.122.256-3.13zM40%2048H22c-.54%200-.97-.427-.992-.96L21%2036h7c1.13%200%202.166-.636%202.677-1.644.51-1.01.412-2.22-.257-3.13l-11-15C18.854%2015.455%2017.956%2015%2017%2015s-1.854.455-2.42%201.226l-11%2015c-.667.912-.767%202.122-.255%203.13C3.835%2035.365%204.87%2036%206%2036h7l.012%2016.003c.002%202.208%201.792%203.997%204%203.997h22.99c2.208%200%204-1.79%204-4s-1.792-4-4-4z%22%2F%3E%3C%2Fsvg%3E)
1126
+ }
1127
+
1128
+ .TweetAction--heart:active,
1129
+ .TweetAction--heart:focus,
1130
+ .TweetAction--heart:hover {
1131
+ color: #E0245E;
1132
+ text-decoration: none
1133
+ }
1134
+
1135
+ .TweetAction--heart:active .TweetAction-icon,
1136
+ .TweetAction--heart:focus .TweetAction-icon,
1137
+ .TweetAction--heart:hover .TweetAction-icon {
1138
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23E0245E%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)
1139
+ }
1140
+
1141
+ .TweetAction--profile:active,
1142
+ .TweetAction--profile:focus,
1143
+ .TweetAction--profile:hover {
1144
+ color: #1DA1F2;
1145
+ text-decoration: none
1146
+ }
1147
+
1148
+ .TweetAction--profile:active .TweetAction-icon,
1149
+ .TweetAction--profile:focus .TweetAction-icon,
1150
+ .TweetAction--profile:hover .TweetAction-icon {
1151
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%2355acee%22%20d%3D%22M12%2011.816c1.355%200%202.872-.15%203.84-1.256.814-.93%201.078-2.368.806-4.392-.38-2.825-2.117-4.512-4.646-4.512S7.734%203.343%207.354%206.17c-.272%202.022-.008%203.46.806%204.39.968%201.107%202.485%201.256%203.84%201.256zM8.84%206.368c.162-1.2.787-3.212%203.16-3.212s2.998%202.013%203.16%203.212c.207%201.55.057%202.627-.45%203.205-.455.52-1.266.743-2.71.743s-2.255-.223-2.71-.743c-.507-.578-.657-1.656-.45-3.205zm11.44%2012.868c-.877-3.526-4.282-5.99-8.28-5.99s-7.403%202.464-8.28%205.99c-.172.692-.028%201.4.395%201.94.408.52%201.04.82%201.733.82h12.304c.693%200%201.325-.3%201.733-.82.424-.54.567-1.247.394-1.94zm-1.576%201.016c-.126.16-.316.246-.552.246H5.848c-.235%200-.426-.085-.552-.246-.137-.174-.18-.412-.12-.654.71-2.855%203.517-4.85%206.824-4.85s6.114%201.994%206.824%204.85c.06.242.017.48-.12.654z%22%2F%3E%3C%2Fsvg%3E)
1152
+ }
1153
+
1154
+ .SandboxRoot.env-bp-min .TweetAction-stat {
1155
+ font-size: 12.25px
1156
+ }
1157
+
1158
+ .TweetAuthor {
1159
+ display: -webkit-box;
1160
+ display: -webkit-flex;
1161
+ display: -moz-box;
1162
+ display: -ms-flexbox;
1163
+ display: flex;
1164
+ -webkit-box-orient: vertical;
1165
+ -webkit-box-direction: normal;
1166
+ -webkit-flex-direction: column;
1167
+ -moz-box-orient: vertical;
1168
+ -moz-box-direction: normal;
1169
+ -ms-flex-direction: column;
1170
+ flex-direction: column;
1171
+ overflow: hidden;
1172
+ width: -webkit-min-content;
1173
+ width: -moz-min-content;
1174
+ width: min-content
1175
+ }
1176
+
1177
+ .TweetAuthor-highlightedLabel a {
1178
+ -webkit-text-decoration-color: #8899a6;
1179
+ -moz-text-decoration-color: #8899a6;
1180
+ text-decoration-color: #8899a6
1181
+ }
1182
+
1183
+ .TweetAuthor-link {
1184
+ display: -webkit-box;
1185
+ display: -webkit-flex;
1186
+ display: -moz-box;
1187
+ display: -ms-flexbox;
1188
+ display: flex;
1189
+ -webkit-box-align: start;
1190
+ -webkit-align-items: flex-start;
1191
+ -moz-box-align: start;
1192
+ -ms-flex-align: start;
1193
+ align-items: flex-start
1194
+ }
1195
+
1196
+ .TweetAuthor-avatar {
1197
+ -webkit-flex-basis: 36px;
1198
+ -ms-flex-preferred-size: 36px;
1199
+ flex-basis: 36px;
1200
+ -webkit-box-flex: 0;
1201
+ -webkit-flex: none;
1202
+ -moz-box-flex: 0;
1203
+ -ms-flex: none;
1204
+ flex: none;
1205
+ height: 36px;
1206
+ background-color: transparent;
1207
+ margin-right: 9px
1208
+ }
1209
+
1210
+ .TweetAuthor-avatar--ancestor {
1211
+ -webkit-flex-basis: 24px;
1212
+ -ms-flex-preferred-size: 24px;
1213
+ flex-basis: 24px;
1214
+ height: 24px;
1215
+ margin-left: 6px
1216
+ }
1217
+
1218
+ .TweetAuthor-name {
1219
+ overflow: hidden;
1220
+ text-overflow: ellipsis;
1221
+ white-space: nowrap;
1222
+ padding-right: 4px
1223
+ }
1224
+
1225
+ .TweetAuthor-screenName {
1226
+ font-size: 14px;
1227
+ overflow: hidden;
1228
+ text-overflow: ellipsis;
1229
+ white-space: nowrap;
1230
+ -webkit-flex-shrink: 1;
1231
+ -ms-flex-negative: 1;
1232
+ flex-shrink: 1
1233
+ }
1234
+
1235
+ .TweetAuthor-decoratedName {
1236
+ display: -webkit-box;
1237
+ display: -webkit-flex;
1238
+ display: -moz-box;
1239
+ display: -ms-flexbox;
1240
+ display: flex;
1241
+ -webkit-box-align: center;
1242
+ -webkit-align-items: center;
1243
+ -moz-box-align: center;
1244
+ -ms-flex-align: center;
1245
+ align-items: center;
1246
+ min-width: 0
1247
+ }
1248
+
1249
+ .TweetAuthor--oneLine .TweetAuthor-decoratedName {
1250
+ width: auto;
1251
+ -webkit-flex-shrink: 0;
1252
+ -ms-flex-negative: 0;
1253
+ flex-shrink: 0;
1254
+ max-width: 100%
1255
+ }
1256
+
1257
+ .TweetAuthor-nameScreenNameContainer {
1258
+ display: -webkit-box;
1259
+ display: -webkit-flex;
1260
+ display: -moz-box;
1261
+ display: -ms-flexbox;
1262
+ display: flex;
1263
+ -webkit-box-orient: vertical;
1264
+ -webkit-box-direction: normal;
1265
+ -webkit-flex-direction: column;
1266
+ -moz-box-orient: vertical;
1267
+ -moz-box-direction: normal;
1268
+ -ms-flex-direction: column;
1269
+ flex-direction: column;
1270
+ line-height: 1.2;
1271
+ -webkit-box-align: start;
1272
+ -webkit-align-items: flex-start;
1273
+ -moz-box-align: start;
1274
+ -ms-flex-align: start;
1275
+ align-items: flex-start;
1276
+ min-width: 0
1277
+ }
1278
+
1279
+ .TweetAuthor--oneLine .TweetAuthor-nameScreenNameContainer {
1280
+ -webkit-box-orient: horizontal;
1281
+ -webkit-box-direction: normal;
1282
+ -webkit-flex-direction: row;
1283
+ -moz-box-orient: horizontal;
1284
+ -moz-box-direction: normal;
1285
+ -ms-flex-direction: row;
1286
+ flex-direction: row;
1287
+ -webkit-box-align: center;
1288
+ -webkit-align-items: center;
1289
+ -moz-box-align: center;
1290
+ -ms-flex-align: center;
1291
+ align-items: center
1292
+ }
1293
+
1294
+ .TweetAuthor-verifiedBadge {
1295
+ position: static;
1296
+ -webkit-box-flex: 0;
1297
+ -webkit-flex: none;
1298
+ -moz-box-flex: 0;
1299
+ -ms-flex: none;
1300
+ flex: none;
1301
+ padding-right: 4px
1302
+ }
1303
+
1304
+ .SandboxRoot.env-bp-min .TweetAuthor-screenName {
1305
+ font-size: 12.25px
1306
+ }
1307
+
1308
+ .HighlightedUserLabel {
1309
+ display: -webkit-box;
1310
+ display: -webkit-flex;
1311
+ display: -moz-box;
1312
+ display: -ms-flexbox;
1313
+ display: flex;
1314
+ -webkit-box-align: center;
1315
+ -webkit-align-items: center;
1316
+ -moz-box-align: center;
1317
+ -ms-flex-align: center;
1318
+ align-items: center;
1319
+ font-size: 14px
1320
+ }
1321
+
1322
+ .HighlightedUserLabel-imageContainer {
1323
+ -webkit-box-flex: 0;
1324
+ -webkit-flex: 0 0 16px;
1325
+ -moz-box-flex: 0;
1326
+ -ms-flex: 0 0 16px;
1327
+ flex: 0 0 16px
1328
+ }
1329
+
1330
+ .HighlightedUserLabel-image {
1331
+ display: block;
1332
+ border-radius: 0
1333
+ }
1334
+
1335
+ .HighlightedUserLabel-description {
1336
+ margin-left: 4px;
1337
+ color: #8899a6;
1338
+ text-overflow: ellipsis;
1339
+ white-space: nowrap;
1340
+ overflow: hidden
1341
+ }
1342
+
1343
+ .SandboxRoot.env-bp-min .HighlightedUserLabel {
1344
+ font-size: 12.25px
1345
+ }
1346
+
1347
+ .QuoteTweet {
1348
+ border: solid 1px #66757f;
1349
+ border-radius: 4px
1350
+ }
1351
+
1352
+ .QuoteTweet:active,
1353
+ .QuoteTweet:hover {
1354
+ border-color: #8899a6
1355
+ }
1356
+
1357
+ .QuoteTweet-link,
1358
+ .QuoteTweet-link:active,
1359
+ .QuoteTweet-link:focus,
1360
+ .QuoteTweet-link:hover,
1361
+ .QuoteTweet-link:visited {
1362
+ text-decoration: none;
1363
+ color: #f5f8fa
1364
+ }
1365
+
1366
+ .QuoteTweet-text {
1367
+ margin-top: 4px;
1368
+ max-width: 100%;
1369
+ overflow: hidden;
1370
+ white-space: pre-wrap;
1371
+ word-wrap: break-word
1372
+ }
1373
+
1374
+ .QuoteTweet-nonMediaContainer {
1375
+ margin: 10px
1376
+ }
1377
+
1378
+ .TweetInfo {
1379
+ display: -webkit-box;
1380
+ display: -webkit-flex;
1381
+ display: -moz-box;
1382
+ display: -ms-flexbox;
1383
+ display: flex;
1384
+ margin-top: 10.4px;
1385
+ font-size: 14px
1386
+ }
1387
+
1388
+ .SandboxRoot.env-bp-min .TweetInfo {
1389
+ font-size: 12.25px
1390
+ }
1391
+
1392
+ .TweetInfo-timeGeo {
1393
+ margin-left: 12px;
1394
+ color: #8899a6;
1395
+ -webkit-box-flex: 1;
1396
+ -webkit-flex: 1;
1397
+ -moz-box-flex: 1;
1398
+ -ms-flex: 1;
1399
+ flex: 1
1400
+ }
1401
+
1402
+ .TweetInfo-heart {
1403
+ display: -webkit-box;
1404
+ display: -webkit-flex;
1405
+ display: -moz-box;
1406
+ display: -ms-flexbox;
1407
+ display: flex;
1408
+ color: #8899a6
1409
+ }
1410
+
1411
+ .TweetInfo-heart:active,
1412
+ .TweetInfo-heart:focus,
1413
+ .TweetInfo-heart:hover {
1414
+ color: #E0245E;
1415
+ text-decoration: none
1416
+ }
1417
+
1418
+ .TweetInfo-heart:active .Icon--heart,
1419
+ .TweetInfo-heart:focus .Icon--heart,
1420
+ .TweetInfo-heart:hover .Icon--heart {
1421
+ background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23E0245E%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E)
1422
+ }
1423
+
1424
+ .TweetInfo-heartStat {
1425
+ margin-left: 3px
1426
+ }
1427
+
1428
+ .TweetInfo-heartStat:active,
1429
+ .TweetInfo-heartStat:focus,
1430
+ .TweetInfo-heartStat:hover {
1431
+ color: #E0245E
1432
+ }
1433
+
1434
+ .wvp-player-container iframe {
1435
+ width: 100%;
1436
+ height: 100%;
1437
+ position: absolute;
1438
+ top: 0;
1439
+ left: 0
1440
+ }
1441
+
1442
+ .SandboxRoot.env-bp-min {
1443
+ font-size: 14px
1444
+ }
1445
+ }