@zumer/orbit 0.2.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 +19 -0
- package/dist/orbit.css +5105 -0
- package/dist/orbit.js +586 -0
- package/dist/orbit.min.css +1 -0
- package/dist/orbit.min.js +98 -0
- package/package.json +34 -0
package/dist/orbit.css
ADDED
|
@@ -0,0 +1,5105 @@
|
|
|
1
|
+
|
|
2
|
+
/*
|
|
3
|
+
* orbit
|
|
4
|
+
* v.0.0.1
|
|
5
|
+
* Author Juan Martin Muda - Zumerlab
|
|
6
|
+
* License MIT
|
|
7
|
+
**/
|
|
8
|
+
@charset "UTF-8";
|
|
9
|
+
|
|
10
|
+
/* ../../../../../var/folders/dl/jfswzzq96_7bqvgnhjs47_8w0000gp/T/tmp-84657-gwGj3rAVy3Ol/orbit/src/orbit.css */
|
|
11
|
+
.orbit-zone * {
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
margin: 0;
|
|
14
|
+
}
|
|
15
|
+
.orbit-zone * ::before,
|
|
16
|
+
.orbit-zone * ::after {
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
}
|
|
19
|
+
.orbit-zone * input,
|
|
20
|
+
.orbit-zone * button,
|
|
21
|
+
.orbit-zone * textarea,
|
|
22
|
+
.orbit-zone * select {
|
|
23
|
+
font: inherit;
|
|
24
|
+
}
|
|
25
|
+
.orbit-zone * p,
|
|
26
|
+
.orbit-zone * h1,
|
|
27
|
+
.orbit-zone * h2,
|
|
28
|
+
.orbit-zone * h3,
|
|
29
|
+
.orbit-zone * h4,
|
|
30
|
+
.orbit-zone * h5,
|
|
31
|
+
.orbit-zone * h6 {
|
|
32
|
+
overflow-wrap: break-word;
|
|
33
|
+
}
|
|
34
|
+
.orbit-zone * img,
|
|
35
|
+
.orbit-zone * picture,
|
|
36
|
+
.orbit-zone * video,
|
|
37
|
+
.orbit-zone * canvas,
|
|
38
|
+
.orbit-zone * svg {
|
|
39
|
+
max-width: unset;
|
|
40
|
+
}
|
|
41
|
+
.orbit-zone {
|
|
42
|
+
container-name: orbitzone;
|
|
43
|
+
--o-length: 500px;
|
|
44
|
+
--o-from: 0deg;
|
|
45
|
+
--o-range: 360deg;
|
|
46
|
+
--o-ellipse-x: 1;
|
|
47
|
+
--o-ellipse-y: 1;
|
|
48
|
+
--o-fit-range: 0;
|
|
49
|
+
--o-direction: 1;
|
|
50
|
+
--o-size-ratio: 1;
|
|
51
|
+
width: var(--o-length);
|
|
52
|
+
aspect-ratio: 1;
|
|
53
|
+
position: absolute;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
justify-content: center;
|
|
57
|
+
border: none;
|
|
58
|
+
}
|
|
59
|
+
.orbit,
|
|
60
|
+
[class*=orbit-]:not(.orbit-zone) {
|
|
61
|
+
container-name: orbit;
|
|
62
|
+
--o-base-diameter: var(--o-orbit-number) * var(--o-length) / 12;
|
|
63
|
+
--o-prev-diameter: (var(--o-orbit-number) - 1) * var(--o-length) / 12;
|
|
64
|
+
--o-diameter: calc(var(--o-base-diameter) - ((var(--o-base-diameter) - var(--o-prev-diameter)) * var(--o-orbit-ratio, 0)));
|
|
65
|
+
--o-radius: calc(var(--o-diameter) / 2);
|
|
66
|
+
width: calc(var(--o-diameter) / var(--o-ellipse-x));
|
|
67
|
+
height: calc(var(--o-diameter) / var(--o-ellipse-y));
|
|
68
|
+
position: absolute;
|
|
69
|
+
display: flex;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
align-items: center;
|
|
72
|
+
border-radius: 50%;
|
|
73
|
+
pointer-events: none;
|
|
74
|
+
}
|
|
75
|
+
.satellite {
|
|
76
|
+
container-name: satellite;
|
|
77
|
+
--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);
|
|
78
|
+
--o-transform: translate( calc( (var(--o-radius) - var(--o-aligment, 0px)) / var(--o-ellipse-x) * cos(var(--o-from) + var(--o-angle-composite )) ), calc( (var(--o-radius) - var(--o-aligment, 0px)) / var(--o-ellipse-y) * sin(var(--o-from) + var(--o-angle-composite)) ) );
|
|
79
|
+
transform: var(--o-transform);
|
|
80
|
+
width: calc(var(--o-radius) / var(--o-orbit-number) * var(--o-size-ratio, 1));
|
|
81
|
+
height: calc(var(--o-radius) / var(--o-orbit-number) * var(--o-size-ratio, 1));
|
|
82
|
+
position: absolute;
|
|
83
|
+
display: flex;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
align-items: center;
|
|
86
|
+
border-radius: 50%;
|
|
87
|
+
pointer-events: all;
|
|
88
|
+
}
|
|
89
|
+
.satellite.at-center {
|
|
90
|
+
--o-transform: rotate(0deg);
|
|
91
|
+
}
|
|
92
|
+
.satellite.circle {
|
|
93
|
+
border-radius: 50%;
|
|
94
|
+
}
|
|
95
|
+
.satellite.box {
|
|
96
|
+
border-radius: 0%;
|
|
97
|
+
}
|
|
98
|
+
.satellite.rounded-box {
|
|
99
|
+
border-radius: 8px;
|
|
100
|
+
}
|
|
101
|
+
.spoke {
|
|
102
|
+
container-name: spoke;
|
|
103
|
+
--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);
|
|
104
|
+
--o-transform: translate( calc( (var(--o-radius) - var(--o-aligment, 1px)) / var(--o-ellipse-x) * cos(var(--o-from) + var(--o-angle-composite)) ), calc( (var(--o-radius) - var(--o-aligment, 1px)) / var(--o-ellipse-y) * sin(var(--o-from) + var(--o-angle-composite)) ) ) rotate( calc(var(--o-from) + var(--o-angle-composite)) );
|
|
105
|
+
width: calc(var(--o-radius) / var(--o-orbit-number) * var(--o-size-ratio, 1));
|
|
106
|
+
position: absolute;
|
|
107
|
+
display: flex;
|
|
108
|
+
align-items: center;
|
|
109
|
+
transform: var(--o-transform);
|
|
110
|
+
height: 1px;
|
|
111
|
+
pointer-events: none;
|
|
112
|
+
border: none;
|
|
113
|
+
}
|
|
114
|
+
.spoke.at-center {
|
|
115
|
+
--o-transform: rotate( calc(var(--o-from) + var(--o-angle-composite)) ) ;
|
|
116
|
+
}
|
|
117
|
+
.segment {
|
|
118
|
+
container-name: segment;
|
|
119
|
+
--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);
|
|
120
|
+
--o-y: calc(var(--o-radius) * sin(90deg - var(--o-angle) / 2));
|
|
121
|
+
--o-x: calc(var(--o-radius) * cos(90deg - var(--o-angle) / 2) * 2);
|
|
122
|
+
--o-transform: rotate( calc(var(--o-from) + var(--o-angle-composite))) translate(0, var(--o-y));
|
|
123
|
+
width: var(--o-x);
|
|
124
|
+
position: absolute;
|
|
125
|
+
padding: 0;
|
|
126
|
+
transform: var(--o-transform);
|
|
127
|
+
height: 1px;
|
|
128
|
+
pointer-events: none;
|
|
129
|
+
border: none;
|
|
130
|
+
background: black;
|
|
131
|
+
}
|
|
132
|
+
.segment.outer-orbit {
|
|
133
|
+
--o-y: calc(var(--o-radius));
|
|
134
|
+
width: calc(var(--o-radius) * tan(var(--o-angle)/2) * 2);
|
|
135
|
+
}
|
|
136
|
+
o-sector {
|
|
137
|
+
--o-angle-composite: var(--o-angle) * var(--o-orbit-child-number) * var(--o-direction, 1);
|
|
138
|
+
container-name: osector;
|
|
139
|
+
display: flex;
|
|
140
|
+
justify-content: center;
|
|
141
|
+
align-items: center;
|
|
142
|
+
border-radius: 50%;
|
|
143
|
+
position: absolute;
|
|
144
|
+
pointer-events: none;
|
|
145
|
+
width: 100%;
|
|
146
|
+
stroke-dashoffset: var(--o-angle);
|
|
147
|
+
r: var(--o-radius);
|
|
148
|
+
stroke-width: calc(var(--o-radius) / var(--o-orbit-number) * var(--o-size-ratio, 1));
|
|
149
|
+
transform: rotate(calc(var(--o-from) + var(--o-angle-composite)));
|
|
150
|
+
}
|
|
151
|
+
o-label {
|
|
152
|
+
--o-angle-composite: var(--o-angle) * var(--o-orbit-child-number) * var(--o-direction, 1);
|
|
153
|
+
container-name: otext;
|
|
154
|
+
display: flex;
|
|
155
|
+
justify-content: center;
|
|
156
|
+
align-items: center;
|
|
157
|
+
border-radius: 50%;
|
|
158
|
+
position: absolute;
|
|
159
|
+
pointer-events: none;
|
|
160
|
+
width: 100%;
|
|
161
|
+
fill: currentColor;
|
|
162
|
+
r: var(--o-radius);
|
|
163
|
+
stroke-width: calc(var(--o-radius) / var(--o-orbit-number) * var(--o-size-ratio, 1));
|
|
164
|
+
transform: rotate(calc(var(--o-from) + var(--o-angle-composite)));
|
|
165
|
+
}
|
|
166
|
+
o-progress {
|
|
167
|
+
container-name: oprogress;
|
|
168
|
+
r: var(--o-radius);
|
|
169
|
+
stroke-width: calc(var(--o-radius) / var(--o-orbit-number) * var(--o-size-ratio, 1));
|
|
170
|
+
transform: rotate(var(--o-from));
|
|
171
|
+
position: absolute;
|
|
172
|
+
display: flex;
|
|
173
|
+
justify-content: center;
|
|
174
|
+
align-items: center;
|
|
175
|
+
width: 100%;
|
|
176
|
+
border-radius: 50%;
|
|
177
|
+
pointer-events: none;
|
|
178
|
+
}
|
|
179
|
+
.orbit-0 {
|
|
180
|
+
--o-orbit-number: 0.01;
|
|
181
|
+
}
|
|
182
|
+
:nth-child(1 of .orbit),
|
|
183
|
+
.orbit-1 {
|
|
184
|
+
--o-orbit-number: 1;
|
|
185
|
+
}
|
|
186
|
+
:nth-child(2 of .orbit),
|
|
187
|
+
.orbit-2 {
|
|
188
|
+
--o-orbit-number: 2;
|
|
189
|
+
}
|
|
190
|
+
:nth-child(3 of .orbit),
|
|
191
|
+
.orbit-3 {
|
|
192
|
+
--o-orbit-number: 3;
|
|
193
|
+
}
|
|
194
|
+
:nth-child(4 of .orbit),
|
|
195
|
+
.orbit-4 {
|
|
196
|
+
--o-orbit-number: 4;
|
|
197
|
+
}
|
|
198
|
+
:nth-child(5 of .orbit),
|
|
199
|
+
.orbit-5 {
|
|
200
|
+
--o-orbit-number: 5;
|
|
201
|
+
}
|
|
202
|
+
:nth-child(6 of .orbit),
|
|
203
|
+
.orbit-6 {
|
|
204
|
+
--o-orbit-number: 6;
|
|
205
|
+
}
|
|
206
|
+
:nth-child(7 of .orbit),
|
|
207
|
+
.orbit-7 {
|
|
208
|
+
--o-orbit-number: 7;
|
|
209
|
+
}
|
|
210
|
+
:nth-child(8 of .orbit),
|
|
211
|
+
.orbit-8 {
|
|
212
|
+
--o-orbit-number: 8;
|
|
213
|
+
}
|
|
214
|
+
:nth-child(9 of .orbit),
|
|
215
|
+
.orbit-9 {
|
|
216
|
+
--o-orbit-number: 9;
|
|
217
|
+
}
|
|
218
|
+
:nth-child(10 of .orbit),
|
|
219
|
+
.orbit-10 {
|
|
220
|
+
--o-orbit-number: 10;
|
|
221
|
+
}
|
|
222
|
+
:nth-child(11 of .orbit),
|
|
223
|
+
.orbit-11 {
|
|
224
|
+
--o-orbit-number: 11;
|
|
225
|
+
}
|
|
226
|
+
:nth-child(12 of .orbit),
|
|
227
|
+
.orbit-12 {
|
|
228
|
+
--o-orbit-number: 12;
|
|
229
|
+
}
|
|
230
|
+
:nth-child(1 of .segment) {
|
|
231
|
+
--o-orbit-child-number: -1;
|
|
232
|
+
}
|
|
233
|
+
:nth-child(2 of .segment) {
|
|
234
|
+
--o-orbit-child-number: 0;
|
|
235
|
+
}
|
|
236
|
+
:nth-child(3 of .segment) {
|
|
237
|
+
--o-orbit-child-number: 1;
|
|
238
|
+
}
|
|
239
|
+
:nth-child(4 of .segment) {
|
|
240
|
+
--o-orbit-child-number: 2;
|
|
241
|
+
}
|
|
242
|
+
:nth-child(5 of .segment) {
|
|
243
|
+
--o-orbit-child-number: 3;
|
|
244
|
+
}
|
|
245
|
+
:nth-child(6 of .segment) {
|
|
246
|
+
--o-orbit-child-number: 4;
|
|
247
|
+
}
|
|
248
|
+
:nth-child(7 of .segment) {
|
|
249
|
+
--o-orbit-child-number: 5;
|
|
250
|
+
}
|
|
251
|
+
:nth-child(8 of .segment) {
|
|
252
|
+
--o-orbit-child-number: 6;
|
|
253
|
+
}
|
|
254
|
+
:nth-child(9 of .segment) {
|
|
255
|
+
--o-orbit-child-number: 7;
|
|
256
|
+
}
|
|
257
|
+
:nth-child(10 of .segment) {
|
|
258
|
+
--o-orbit-child-number: 8;
|
|
259
|
+
}
|
|
260
|
+
:nth-child(11 of .segment) {
|
|
261
|
+
--o-orbit-child-number: 9;
|
|
262
|
+
}
|
|
263
|
+
:nth-child(12 of .segment) {
|
|
264
|
+
--o-orbit-child-number: 10;
|
|
265
|
+
}
|
|
266
|
+
:nth-child(13 of .segment) {
|
|
267
|
+
--o-orbit-child-number: 11;
|
|
268
|
+
}
|
|
269
|
+
:nth-child(14 of .segment) {
|
|
270
|
+
--o-orbit-child-number: 12;
|
|
271
|
+
}
|
|
272
|
+
:nth-child(15 of .segment) {
|
|
273
|
+
--o-orbit-child-number: 13;
|
|
274
|
+
}
|
|
275
|
+
:nth-child(16 of .segment) {
|
|
276
|
+
--o-orbit-child-number: 14;
|
|
277
|
+
}
|
|
278
|
+
:nth-child(17 of .segment) {
|
|
279
|
+
--o-orbit-child-number: 15;
|
|
280
|
+
}
|
|
281
|
+
:nth-child(18 of .segment) {
|
|
282
|
+
--o-orbit-child-number: 16;
|
|
283
|
+
}
|
|
284
|
+
:nth-child(19 of .segment) {
|
|
285
|
+
--o-orbit-child-number: 17;
|
|
286
|
+
}
|
|
287
|
+
:nth-child(20 of .segment) {
|
|
288
|
+
--o-orbit-child-number: 18;
|
|
289
|
+
}
|
|
290
|
+
:nth-child(21 of .segment) {
|
|
291
|
+
--o-orbit-child-number: 19;
|
|
292
|
+
}
|
|
293
|
+
:nth-child(22 of .segment) {
|
|
294
|
+
--o-orbit-child-number: 20;
|
|
295
|
+
}
|
|
296
|
+
:nth-child(23 of .segment) {
|
|
297
|
+
--o-orbit-child-number: 21;
|
|
298
|
+
}
|
|
299
|
+
:nth-child(24 of .segment) {
|
|
300
|
+
--o-orbit-child-number: 22;
|
|
301
|
+
}
|
|
302
|
+
:nth-child(25 of .segment) {
|
|
303
|
+
--o-orbit-child-number: 23;
|
|
304
|
+
}
|
|
305
|
+
:nth-child(26 of .segment) {
|
|
306
|
+
--o-orbit-child-number: 24;
|
|
307
|
+
}
|
|
308
|
+
:nth-child(27 of .segment) {
|
|
309
|
+
--o-orbit-child-number: 25;
|
|
310
|
+
}
|
|
311
|
+
:nth-child(28 of .segment) {
|
|
312
|
+
--o-orbit-child-number: 26;
|
|
313
|
+
}
|
|
314
|
+
:nth-child(29 of .segment) {
|
|
315
|
+
--o-orbit-child-number: 27;
|
|
316
|
+
}
|
|
317
|
+
:nth-child(30 of .segment) {
|
|
318
|
+
--o-orbit-child-number: 28;
|
|
319
|
+
}
|
|
320
|
+
:nth-child(31 of .segment) {
|
|
321
|
+
--o-orbit-child-number: 29;
|
|
322
|
+
}
|
|
323
|
+
:nth-child(32 of .segment) {
|
|
324
|
+
--o-orbit-child-number: 30;
|
|
325
|
+
}
|
|
326
|
+
:nth-child(33 of .segment) {
|
|
327
|
+
--o-orbit-child-number: 31;
|
|
328
|
+
}
|
|
329
|
+
:nth-child(34 of .segment) {
|
|
330
|
+
--o-orbit-child-number: 32;
|
|
331
|
+
}
|
|
332
|
+
:nth-child(35 of .segment) {
|
|
333
|
+
--o-orbit-child-number: 33;
|
|
334
|
+
}
|
|
335
|
+
:nth-child(36 of .segment) {
|
|
336
|
+
--o-orbit-child-number: 34;
|
|
337
|
+
}
|
|
338
|
+
:nth-child(37 of .segment) {
|
|
339
|
+
--o-orbit-child-number: 35;
|
|
340
|
+
}
|
|
341
|
+
:nth-child(38 of .segment) {
|
|
342
|
+
--o-orbit-child-number: 36;
|
|
343
|
+
}
|
|
344
|
+
:nth-child(39 of .segment) {
|
|
345
|
+
--o-orbit-child-number: 37;
|
|
346
|
+
}
|
|
347
|
+
:nth-child(40 of .segment) {
|
|
348
|
+
--o-orbit-child-number: 38;
|
|
349
|
+
}
|
|
350
|
+
:nth-child(41 of .segment) {
|
|
351
|
+
--o-orbit-child-number: 39;
|
|
352
|
+
}
|
|
353
|
+
:nth-child(42 of .segment) {
|
|
354
|
+
--o-orbit-child-number: 40;
|
|
355
|
+
}
|
|
356
|
+
:nth-child(43 of .segment) {
|
|
357
|
+
--o-orbit-child-number: 41;
|
|
358
|
+
}
|
|
359
|
+
:nth-child(44 of .segment) {
|
|
360
|
+
--o-orbit-child-number: 42;
|
|
361
|
+
}
|
|
362
|
+
:nth-child(45 of .segment) {
|
|
363
|
+
--o-orbit-child-number: 43;
|
|
364
|
+
}
|
|
365
|
+
:nth-child(46 of .segment) {
|
|
366
|
+
--o-orbit-child-number: 44;
|
|
367
|
+
}
|
|
368
|
+
:nth-child(47 of .segment) {
|
|
369
|
+
--o-orbit-child-number: 45;
|
|
370
|
+
}
|
|
371
|
+
:nth-child(48 of .segment) {
|
|
372
|
+
--o-orbit-child-number: 46;
|
|
373
|
+
}
|
|
374
|
+
:nth-child(49 of .segment) {
|
|
375
|
+
--o-orbit-child-number: 47;
|
|
376
|
+
}
|
|
377
|
+
:nth-child(50 of .segment) {
|
|
378
|
+
--o-orbit-child-number: 48;
|
|
379
|
+
}
|
|
380
|
+
:nth-child(51 of .segment) {
|
|
381
|
+
--o-orbit-child-number: 49;
|
|
382
|
+
}
|
|
383
|
+
:nth-child(52 of .segment) {
|
|
384
|
+
--o-orbit-child-number: 50;
|
|
385
|
+
}
|
|
386
|
+
:nth-child(53 of .segment) {
|
|
387
|
+
--o-orbit-child-number: 51;
|
|
388
|
+
}
|
|
389
|
+
:nth-child(54 of .segment) {
|
|
390
|
+
--o-orbit-child-number: 52;
|
|
391
|
+
}
|
|
392
|
+
:nth-child(55 of .segment) {
|
|
393
|
+
--o-orbit-child-number: 53;
|
|
394
|
+
}
|
|
395
|
+
:nth-child(56 of .segment) {
|
|
396
|
+
--o-orbit-child-number: 54;
|
|
397
|
+
}
|
|
398
|
+
:nth-child(57 of .segment) {
|
|
399
|
+
--o-orbit-child-number: 55;
|
|
400
|
+
}
|
|
401
|
+
:nth-child(58 of .segment) {
|
|
402
|
+
--o-orbit-child-number: 56;
|
|
403
|
+
}
|
|
404
|
+
:nth-child(59 of .segment) {
|
|
405
|
+
--o-orbit-child-number: 57;
|
|
406
|
+
}
|
|
407
|
+
:nth-child(60 of .segment) {
|
|
408
|
+
--o-orbit-child-number: 58;
|
|
409
|
+
}
|
|
410
|
+
:nth-child(1 of .satellite),
|
|
411
|
+
:nth-child(1 of o-sector),
|
|
412
|
+
:nth-child(1 of .spoke),
|
|
413
|
+
:nth-child(1 of o-label) {
|
|
414
|
+
--o-orbit-child-number: 0;
|
|
415
|
+
}
|
|
416
|
+
:nth-child(2 of .satellite),
|
|
417
|
+
:nth-child(2 of o-sector),
|
|
418
|
+
:nth-child(2 of .spoke),
|
|
419
|
+
:nth-child(2 of o-label) {
|
|
420
|
+
--o-orbit-child-number: 1;
|
|
421
|
+
}
|
|
422
|
+
:nth-child(3 of .satellite),
|
|
423
|
+
:nth-child(3 of o-sector),
|
|
424
|
+
:nth-child(3 of .spoke),
|
|
425
|
+
:nth-child(3 of o-label) {
|
|
426
|
+
--o-orbit-child-number: 2;
|
|
427
|
+
}
|
|
428
|
+
:nth-child(4 of .satellite),
|
|
429
|
+
:nth-child(4 of o-sector),
|
|
430
|
+
:nth-child(4 of .spoke),
|
|
431
|
+
:nth-child(4 of o-label) {
|
|
432
|
+
--o-orbit-child-number: 3;
|
|
433
|
+
}
|
|
434
|
+
:nth-child(5 of .satellite),
|
|
435
|
+
:nth-child(5 of o-sector),
|
|
436
|
+
:nth-child(5 of .spoke),
|
|
437
|
+
:nth-child(5 of o-label) {
|
|
438
|
+
--o-orbit-child-number: 4;
|
|
439
|
+
}
|
|
440
|
+
:nth-child(6 of .satellite),
|
|
441
|
+
:nth-child(6 of o-sector),
|
|
442
|
+
:nth-child(6 of .spoke),
|
|
443
|
+
:nth-child(6 of o-label) {
|
|
444
|
+
--o-orbit-child-number: 5;
|
|
445
|
+
}
|
|
446
|
+
:nth-child(7 of .satellite),
|
|
447
|
+
:nth-child(7 of o-sector),
|
|
448
|
+
:nth-child(7 of .spoke),
|
|
449
|
+
:nth-child(7 of o-label) {
|
|
450
|
+
--o-orbit-child-number: 6;
|
|
451
|
+
}
|
|
452
|
+
:nth-child(8 of .satellite),
|
|
453
|
+
:nth-child(8 of o-sector),
|
|
454
|
+
:nth-child(8 of .spoke),
|
|
455
|
+
:nth-child(8 of o-label) {
|
|
456
|
+
--o-orbit-child-number: 7;
|
|
457
|
+
}
|
|
458
|
+
:nth-child(9 of .satellite),
|
|
459
|
+
:nth-child(9 of o-sector),
|
|
460
|
+
:nth-child(9 of .spoke),
|
|
461
|
+
:nth-child(9 of o-label) {
|
|
462
|
+
--o-orbit-child-number: 8;
|
|
463
|
+
}
|
|
464
|
+
:nth-child(10 of .satellite),
|
|
465
|
+
:nth-child(10 of o-sector),
|
|
466
|
+
:nth-child(10 of .spoke),
|
|
467
|
+
:nth-child(10 of o-label) {
|
|
468
|
+
--o-orbit-child-number: 9;
|
|
469
|
+
}
|
|
470
|
+
:nth-child(11 of .satellite),
|
|
471
|
+
:nth-child(11 of o-sector),
|
|
472
|
+
:nth-child(11 of .spoke),
|
|
473
|
+
:nth-child(11 of o-label) {
|
|
474
|
+
--o-orbit-child-number: 10;
|
|
475
|
+
}
|
|
476
|
+
:nth-child(12 of .satellite),
|
|
477
|
+
:nth-child(12 of o-sector),
|
|
478
|
+
:nth-child(12 of .spoke),
|
|
479
|
+
:nth-child(12 of o-label) {
|
|
480
|
+
--o-orbit-child-number: 11;
|
|
481
|
+
}
|
|
482
|
+
:nth-child(13 of .satellite),
|
|
483
|
+
:nth-child(13 of o-sector),
|
|
484
|
+
:nth-child(13 of .spoke),
|
|
485
|
+
:nth-child(13 of o-label) {
|
|
486
|
+
--o-orbit-child-number: 12;
|
|
487
|
+
}
|
|
488
|
+
:nth-child(14 of .satellite),
|
|
489
|
+
:nth-child(14 of o-sector),
|
|
490
|
+
:nth-child(14 of .spoke),
|
|
491
|
+
:nth-child(14 of o-label) {
|
|
492
|
+
--o-orbit-child-number: 13;
|
|
493
|
+
}
|
|
494
|
+
:nth-child(15 of .satellite),
|
|
495
|
+
:nth-child(15 of o-sector),
|
|
496
|
+
:nth-child(15 of .spoke),
|
|
497
|
+
:nth-child(15 of o-label) {
|
|
498
|
+
--o-orbit-child-number: 14;
|
|
499
|
+
}
|
|
500
|
+
:nth-child(16 of .satellite),
|
|
501
|
+
:nth-child(16 of o-sector),
|
|
502
|
+
:nth-child(16 of .spoke),
|
|
503
|
+
:nth-child(16 of o-label) {
|
|
504
|
+
--o-orbit-child-number: 15;
|
|
505
|
+
}
|
|
506
|
+
:nth-child(17 of .satellite),
|
|
507
|
+
:nth-child(17 of o-sector),
|
|
508
|
+
:nth-child(17 of .spoke),
|
|
509
|
+
:nth-child(17 of o-label) {
|
|
510
|
+
--o-orbit-child-number: 16;
|
|
511
|
+
}
|
|
512
|
+
:nth-child(18 of .satellite),
|
|
513
|
+
:nth-child(18 of o-sector),
|
|
514
|
+
:nth-child(18 of .spoke),
|
|
515
|
+
:nth-child(18 of o-label) {
|
|
516
|
+
--o-orbit-child-number: 17;
|
|
517
|
+
}
|
|
518
|
+
:nth-child(19 of .satellite),
|
|
519
|
+
:nth-child(19 of o-sector),
|
|
520
|
+
:nth-child(19 of .spoke),
|
|
521
|
+
:nth-child(19 of o-label) {
|
|
522
|
+
--o-orbit-child-number: 18;
|
|
523
|
+
}
|
|
524
|
+
:nth-child(20 of .satellite),
|
|
525
|
+
:nth-child(20 of o-sector),
|
|
526
|
+
:nth-child(20 of .spoke),
|
|
527
|
+
:nth-child(20 of o-label) {
|
|
528
|
+
--o-orbit-child-number: 19;
|
|
529
|
+
}
|
|
530
|
+
:nth-child(21 of .satellite),
|
|
531
|
+
:nth-child(21 of o-sector),
|
|
532
|
+
:nth-child(21 of .spoke),
|
|
533
|
+
:nth-child(21 of o-label) {
|
|
534
|
+
--o-orbit-child-number: 20;
|
|
535
|
+
}
|
|
536
|
+
:nth-child(22 of .satellite),
|
|
537
|
+
:nth-child(22 of o-sector),
|
|
538
|
+
:nth-child(22 of .spoke),
|
|
539
|
+
:nth-child(22 of o-label) {
|
|
540
|
+
--o-orbit-child-number: 21;
|
|
541
|
+
}
|
|
542
|
+
:nth-child(23 of .satellite),
|
|
543
|
+
:nth-child(23 of o-sector),
|
|
544
|
+
:nth-child(23 of .spoke),
|
|
545
|
+
:nth-child(23 of o-label) {
|
|
546
|
+
--o-orbit-child-number: 22;
|
|
547
|
+
}
|
|
548
|
+
:nth-child(24 of .satellite),
|
|
549
|
+
:nth-child(24 of o-sector),
|
|
550
|
+
:nth-child(24 of .spoke),
|
|
551
|
+
:nth-child(24 of o-label) {
|
|
552
|
+
--o-orbit-child-number: 23;
|
|
553
|
+
}
|
|
554
|
+
:nth-child(25 of .satellite),
|
|
555
|
+
:nth-child(25 of o-sector),
|
|
556
|
+
:nth-child(25 of .spoke),
|
|
557
|
+
:nth-child(25 of o-label) {
|
|
558
|
+
--o-orbit-child-number: 24;
|
|
559
|
+
}
|
|
560
|
+
:nth-child(26 of .satellite),
|
|
561
|
+
:nth-child(26 of o-sector),
|
|
562
|
+
:nth-child(26 of .spoke),
|
|
563
|
+
:nth-child(26 of o-label) {
|
|
564
|
+
--o-orbit-child-number: 25;
|
|
565
|
+
}
|
|
566
|
+
:nth-child(27 of .satellite),
|
|
567
|
+
:nth-child(27 of o-sector),
|
|
568
|
+
:nth-child(27 of .spoke),
|
|
569
|
+
:nth-child(27 of o-label) {
|
|
570
|
+
--o-orbit-child-number: 26;
|
|
571
|
+
}
|
|
572
|
+
:nth-child(28 of .satellite),
|
|
573
|
+
:nth-child(28 of o-sector),
|
|
574
|
+
:nth-child(28 of .spoke),
|
|
575
|
+
:nth-child(28 of o-label) {
|
|
576
|
+
--o-orbit-child-number: 27;
|
|
577
|
+
}
|
|
578
|
+
:nth-child(29 of .satellite),
|
|
579
|
+
:nth-child(29 of o-sector),
|
|
580
|
+
:nth-child(29 of .spoke),
|
|
581
|
+
:nth-child(29 of o-label) {
|
|
582
|
+
--o-orbit-child-number: 28;
|
|
583
|
+
}
|
|
584
|
+
:nth-child(30 of .satellite),
|
|
585
|
+
:nth-child(30 of o-sector),
|
|
586
|
+
:nth-child(30 of .spoke),
|
|
587
|
+
:nth-child(30 of o-label) {
|
|
588
|
+
--o-orbit-child-number: 29;
|
|
589
|
+
}
|
|
590
|
+
:nth-child(31 of .satellite),
|
|
591
|
+
:nth-child(31 of o-sector),
|
|
592
|
+
:nth-child(31 of .spoke),
|
|
593
|
+
:nth-child(31 of o-label) {
|
|
594
|
+
--o-orbit-child-number: 30;
|
|
595
|
+
}
|
|
596
|
+
:nth-child(32 of .satellite),
|
|
597
|
+
:nth-child(32 of o-sector),
|
|
598
|
+
:nth-child(32 of .spoke),
|
|
599
|
+
:nth-child(32 of o-label) {
|
|
600
|
+
--o-orbit-child-number: 31;
|
|
601
|
+
}
|
|
602
|
+
:nth-child(33 of .satellite),
|
|
603
|
+
:nth-child(33 of o-sector),
|
|
604
|
+
:nth-child(33 of .spoke),
|
|
605
|
+
:nth-child(33 of o-label) {
|
|
606
|
+
--o-orbit-child-number: 32;
|
|
607
|
+
}
|
|
608
|
+
:nth-child(34 of .satellite),
|
|
609
|
+
:nth-child(34 of o-sector),
|
|
610
|
+
:nth-child(34 of .spoke),
|
|
611
|
+
:nth-child(34 of o-label) {
|
|
612
|
+
--o-orbit-child-number: 33;
|
|
613
|
+
}
|
|
614
|
+
:nth-child(35 of .satellite),
|
|
615
|
+
:nth-child(35 of o-sector),
|
|
616
|
+
:nth-child(35 of .spoke),
|
|
617
|
+
:nth-child(35 of o-label) {
|
|
618
|
+
--o-orbit-child-number: 34;
|
|
619
|
+
}
|
|
620
|
+
:nth-child(36 of .satellite),
|
|
621
|
+
:nth-child(36 of o-sector),
|
|
622
|
+
:nth-child(36 of .spoke),
|
|
623
|
+
:nth-child(36 of o-label) {
|
|
624
|
+
--o-orbit-child-number: 35;
|
|
625
|
+
}
|
|
626
|
+
:nth-child(37 of .satellite),
|
|
627
|
+
:nth-child(37 of o-sector),
|
|
628
|
+
:nth-child(37 of .spoke),
|
|
629
|
+
:nth-child(37 of o-label) {
|
|
630
|
+
--o-orbit-child-number: 36;
|
|
631
|
+
}
|
|
632
|
+
:nth-child(38 of .satellite),
|
|
633
|
+
:nth-child(38 of o-sector),
|
|
634
|
+
:nth-child(38 of .spoke),
|
|
635
|
+
:nth-child(38 of o-label) {
|
|
636
|
+
--o-orbit-child-number: 37;
|
|
637
|
+
}
|
|
638
|
+
:nth-child(39 of .satellite),
|
|
639
|
+
:nth-child(39 of o-sector),
|
|
640
|
+
:nth-child(39 of .spoke),
|
|
641
|
+
:nth-child(39 of o-label) {
|
|
642
|
+
--o-orbit-child-number: 38;
|
|
643
|
+
}
|
|
644
|
+
:nth-child(40 of .satellite),
|
|
645
|
+
:nth-child(40 of o-sector),
|
|
646
|
+
:nth-child(40 of .spoke),
|
|
647
|
+
:nth-child(40 of o-label) {
|
|
648
|
+
--o-orbit-child-number: 39;
|
|
649
|
+
}
|
|
650
|
+
:nth-child(41 of .satellite),
|
|
651
|
+
:nth-child(41 of o-sector),
|
|
652
|
+
:nth-child(41 of .spoke),
|
|
653
|
+
:nth-child(41 of o-label) {
|
|
654
|
+
--o-orbit-child-number: 40;
|
|
655
|
+
}
|
|
656
|
+
:nth-child(42 of .satellite),
|
|
657
|
+
:nth-child(42 of o-sector),
|
|
658
|
+
:nth-child(42 of .spoke),
|
|
659
|
+
:nth-child(42 of o-label) {
|
|
660
|
+
--o-orbit-child-number: 41;
|
|
661
|
+
}
|
|
662
|
+
:nth-child(43 of .satellite),
|
|
663
|
+
:nth-child(43 of o-sector),
|
|
664
|
+
:nth-child(43 of .spoke),
|
|
665
|
+
:nth-child(43 of o-label) {
|
|
666
|
+
--o-orbit-child-number: 42;
|
|
667
|
+
}
|
|
668
|
+
:nth-child(44 of .satellite),
|
|
669
|
+
:nth-child(44 of o-sector),
|
|
670
|
+
:nth-child(44 of .spoke),
|
|
671
|
+
:nth-child(44 of o-label) {
|
|
672
|
+
--o-orbit-child-number: 43;
|
|
673
|
+
}
|
|
674
|
+
:nth-child(45 of .satellite),
|
|
675
|
+
:nth-child(45 of o-sector),
|
|
676
|
+
:nth-child(45 of .spoke),
|
|
677
|
+
:nth-child(45 of o-label) {
|
|
678
|
+
--o-orbit-child-number: 44;
|
|
679
|
+
}
|
|
680
|
+
:nth-child(46 of .satellite),
|
|
681
|
+
:nth-child(46 of o-sector),
|
|
682
|
+
:nth-child(46 of .spoke),
|
|
683
|
+
:nth-child(46 of o-label) {
|
|
684
|
+
--o-orbit-child-number: 45;
|
|
685
|
+
}
|
|
686
|
+
:nth-child(47 of .satellite),
|
|
687
|
+
:nth-child(47 of o-sector),
|
|
688
|
+
:nth-child(47 of .spoke),
|
|
689
|
+
:nth-child(47 of o-label) {
|
|
690
|
+
--o-orbit-child-number: 46;
|
|
691
|
+
}
|
|
692
|
+
:nth-child(48 of .satellite),
|
|
693
|
+
:nth-child(48 of o-sector),
|
|
694
|
+
:nth-child(48 of .spoke),
|
|
695
|
+
:nth-child(48 of o-label) {
|
|
696
|
+
--o-orbit-child-number: 47;
|
|
697
|
+
}
|
|
698
|
+
:nth-child(49 of .satellite),
|
|
699
|
+
:nth-child(49 of o-sector),
|
|
700
|
+
:nth-child(49 of .spoke),
|
|
701
|
+
:nth-child(49 of o-label) {
|
|
702
|
+
--o-orbit-child-number: 48;
|
|
703
|
+
}
|
|
704
|
+
:nth-child(50 of .satellite),
|
|
705
|
+
:nth-child(50 of o-sector),
|
|
706
|
+
:nth-child(50 of .spoke),
|
|
707
|
+
:nth-child(50 of o-label) {
|
|
708
|
+
--o-orbit-child-number: 49;
|
|
709
|
+
}
|
|
710
|
+
:nth-child(51 of .satellite),
|
|
711
|
+
:nth-child(51 of o-sector),
|
|
712
|
+
:nth-child(51 of .spoke),
|
|
713
|
+
:nth-child(51 of o-label) {
|
|
714
|
+
--o-orbit-child-number: 50;
|
|
715
|
+
}
|
|
716
|
+
:nth-child(52 of .satellite),
|
|
717
|
+
:nth-child(52 of o-sector),
|
|
718
|
+
:nth-child(52 of .spoke),
|
|
719
|
+
:nth-child(52 of o-label) {
|
|
720
|
+
--o-orbit-child-number: 51;
|
|
721
|
+
}
|
|
722
|
+
:nth-child(53 of .satellite),
|
|
723
|
+
:nth-child(53 of o-sector),
|
|
724
|
+
:nth-child(53 of .spoke),
|
|
725
|
+
:nth-child(53 of o-label) {
|
|
726
|
+
--o-orbit-child-number: 52;
|
|
727
|
+
}
|
|
728
|
+
:nth-child(54 of .satellite),
|
|
729
|
+
:nth-child(54 of o-sector),
|
|
730
|
+
:nth-child(54 of .spoke),
|
|
731
|
+
:nth-child(54 of o-label) {
|
|
732
|
+
--o-orbit-child-number: 53;
|
|
733
|
+
}
|
|
734
|
+
:nth-child(55 of .satellite),
|
|
735
|
+
:nth-child(55 of o-sector),
|
|
736
|
+
:nth-child(55 of .spoke),
|
|
737
|
+
:nth-child(55 of o-label) {
|
|
738
|
+
--o-orbit-child-number: 54;
|
|
739
|
+
}
|
|
740
|
+
:nth-child(56 of .satellite),
|
|
741
|
+
:nth-child(56 of o-sector),
|
|
742
|
+
:nth-child(56 of .spoke),
|
|
743
|
+
:nth-child(56 of o-label) {
|
|
744
|
+
--o-orbit-child-number: 55;
|
|
745
|
+
}
|
|
746
|
+
:nth-child(57 of .satellite),
|
|
747
|
+
:nth-child(57 of o-sector),
|
|
748
|
+
:nth-child(57 of .spoke),
|
|
749
|
+
:nth-child(57 of o-label) {
|
|
750
|
+
--o-orbit-child-number: 56;
|
|
751
|
+
}
|
|
752
|
+
:nth-child(58 of .satellite),
|
|
753
|
+
:nth-child(58 of o-sector),
|
|
754
|
+
:nth-child(58 of .spoke),
|
|
755
|
+
:nth-child(58 of o-label) {
|
|
756
|
+
--o-orbit-child-number: 57;
|
|
757
|
+
}
|
|
758
|
+
:nth-child(59 of .satellite),
|
|
759
|
+
:nth-child(59 of o-sector),
|
|
760
|
+
:nth-child(59 of .spoke),
|
|
761
|
+
:nth-child(59 of o-label) {
|
|
762
|
+
--o-orbit-child-number: 58;
|
|
763
|
+
}
|
|
764
|
+
:nth-child(60 of .satellite),
|
|
765
|
+
:nth-child(60 of o-sector),
|
|
766
|
+
:nth-child(60 of .spoke),
|
|
767
|
+
:nth-child(60 of o-label) {
|
|
768
|
+
--o-orbit-child-number: 59;
|
|
769
|
+
}
|
|
770
|
+
.orbit:has(> :nth-child(1 of .satellite), > :nth-child(1 of o-sector), > :nth-child(1 of .spoke), > :nth-child(1 of .segment), > :nth-child(1 of o-label)),
|
|
771
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(1 of .satellite), > :nth-child(1 of o-sector), > :nth-child(1 of .spoke), > :nth-child(1 of .segment), > :nth-child(1 of o-label)) {
|
|
772
|
+
--o-angle: calc(var(--o-range) / (1 - var(--o-fit-range, 0)));
|
|
773
|
+
}
|
|
774
|
+
.orbit:has(> :nth-child(2 of .satellite), > :nth-child(2 of o-sector), > :nth-child(2 of .spoke), > :nth-child(2 of .segment), > :nth-child(2 of o-label)),
|
|
775
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(2 of .satellite), > :nth-child(2 of o-sector), > :nth-child(2 of .spoke), > :nth-child(2 of .segment), > :nth-child(2 of o-label)) {
|
|
776
|
+
--o-angle: calc(var(--o-range) / (2 - var(--o-fit-range, 0)));
|
|
777
|
+
}
|
|
778
|
+
.orbit:has(> :nth-child(3 of .satellite), > :nth-child(3 of o-sector), > :nth-child(3 of .spoke), > :nth-child(3 of .segment), > :nth-child(3 of o-label)),
|
|
779
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(3 of .satellite), > :nth-child(3 of o-sector), > :nth-child(3 of .spoke), > :nth-child(3 of .segment), > :nth-child(3 of o-label)) {
|
|
780
|
+
--o-angle: calc(var(--o-range) / (3 - var(--o-fit-range, 0)));
|
|
781
|
+
}
|
|
782
|
+
.orbit:has(> :nth-child(4 of .satellite), > :nth-child(4 of o-sector), > :nth-child(4 of .spoke), > :nth-child(4 of .segment), > :nth-child(4 of o-label)),
|
|
783
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(4 of .satellite), > :nth-child(4 of o-sector), > :nth-child(4 of .spoke), > :nth-child(4 of .segment), > :nth-child(4 of o-label)) {
|
|
784
|
+
--o-angle: calc(var(--o-range) / (4 - var(--o-fit-range, 0)));
|
|
785
|
+
}
|
|
786
|
+
.orbit:has(> :nth-child(5 of .satellite), > :nth-child(5 of o-sector), > :nth-child(5 of .spoke), > :nth-child(5 of .segment), > :nth-child(5 of o-label)),
|
|
787
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(5 of .satellite), > :nth-child(5 of o-sector), > :nth-child(5 of .spoke), > :nth-child(5 of .segment), > :nth-child(5 of o-label)) {
|
|
788
|
+
--o-angle: calc(var(--o-range) / (5 - var(--o-fit-range, 0)));
|
|
789
|
+
}
|
|
790
|
+
.orbit:has(> :nth-child(6 of .satellite), > :nth-child(6 of o-sector), > :nth-child(6 of .spoke), > :nth-child(6 of .segment), > :nth-child(6 of o-label)),
|
|
791
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(6 of .satellite), > :nth-child(6 of o-sector), > :nth-child(6 of .spoke), > :nth-child(6 of .segment), > :nth-child(6 of o-label)) {
|
|
792
|
+
--o-angle: calc(var(--o-range) / (6 - var(--o-fit-range, 0)));
|
|
793
|
+
}
|
|
794
|
+
.orbit:has(> :nth-child(7 of .satellite), > :nth-child(7 of o-sector), > :nth-child(7 of .spoke), > :nth-child(7 of .segment), > :nth-child(7 of o-label)),
|
|
795
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(7 of .satellite), > :nth-child(7 of o-sector), > :nth-child(7 of .spoke), > :nth-child(7 of .segment), > :nth-child(7 of o-label)) {
|
|
796
|
+
--o-angle: calc(var(--o-range) / (7 - var(--o-fit-range, 0)));
|
|
797
|
+
}
|
|
798
|
+
.orbit:has(> :nth-child(8 of .satellite), > :nth-child(8 of o-sector), > :nth-child(8 of .spoke), > :nth-child(8 of .segment), > :nth-child(8 of o-label)),
|
|
799
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(8 of .satellite), > :nth-child(8 of o-sector), > :nth-child(8 of .spoke), > :nth-child(8 of .segment), > :nth-child(8 of o-label)) {
|
|
800
|
+
--o-angle: calc(var(--o-range) / (8 - var(--o-fit-range, 0)));
|
|
801
|
+
}
|
|
802
|
+
.orbit:has(> :nth-child(9 of .satellite), > :nth-child(9 of o-sector), > :nth-child(9 of .spoke), > :nth-child(9 of .segment), > :nth-child(9 of o-label)),
|
|
803
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(9 of .satellite), > :nth-child(9 of o-sector), > :nth-child(9 of .spoke), > :nth-child(9 of .segment), > :nth-child(9 of o-label)) {
|
|
804
|
+
--o-angle: calc(var(--o-range) / (9 - var(--o-fit-range, 0)));
|
|
805
|
+
}
|
|
806
|
+
.orbit:has(> :nth-child(10 of .satellite), > :nth-child(10 of o-sector), > :nth-child(10 of .spoke), > :nth-child(10 of .segment), > :nth-child(10 of o-label)),
|
|
807
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(10 of .satellite), > :nth-child(10 of o-sector), > :nth-child(10 of .spoke), > :nth-child(10 of .segment), > :nth-child(10 of o-label)) {
|
|
808
|
+
--o-angle: calc(var(--o-range) / (10 - var(--o-fit-range, 0)));
|
|
809
|
+
}
|
|
810
|
+
.orbit:has(> :nth-child(11 of .satellite), > :nth-child(11 of o-sector), > :nth-child(11 of .spoke), > :nth-child(11 of .segment), > :nth-child(11 of o-label)),
|
|
811
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(11 of .satellite), > :nth-child(11 of o-sector), > :nth-child(11 of .spoke), > :nth-child(11 of .segment), > :nth-child(11 of o-label)) {
|
|
812
|
+
--o-angle: calc(var(--o-range) / (11 - var(--o-fit-range, 0)));
|
|
813
|
+
}
|
|
814
|
+
.orbit:has(> :nth-child(12 of .satellite), > :nth-child(12 of o-sector), > :nth-child(12 of .spoke), > :nth-child(12 of .segment), > :nth-child(12 of o-label)),
|
|
815
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(12 of .satellite), > :nth-child(12 of o-sector), > :nth-child(12 of .spoke), > :nth-child(12 of .segment), > :nth-child(12 of o-label)) {
|
|
816
|
+
--o-angle: calc(var(--o-range) / (12 - var(--o-fit-range, 0)));
|
|
817
|
+
}
|
|
818
|
+
.orbit:has(> :nth-child(13 of .satellite), > :nth-child(13 of o-sector), > :nth-child(13 of .spoke), > :nth-child(13 of .segment), > :nth-child(13 of o-label)),
|
|
819
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(13 of .satellite), > :nth-child(13 of o-sector), > :nth-child(13 of .spoke), > :nth-child(13 of .segment), > :nth-child(13 of o-label)) {
|
|
820
|
+
--o-angle: calc(var(--o-range) / (13 - var(--o-fit-range, 0)));
|
|
821
|
+
}
|
|
822
|
+
.orbit:has(> :nth-child(14 of .satellite), > :nth-child(14 of o-sector), > :nth-child(14 of .spoke), > :nth-child(14 of .segment), > :nth-child(14 of o-label)),
|
|
823
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(14 of .satellite), > :nth-child(14 of o-sector), > :nth-child(14 of .spoke), > :nth-child(14 of .segment), > :nth-child(14 of o-label)) {
|
|
824
|
+
--o-angle: calc(var(--o-range) / (14 - var(--o-fit-range, 0)));
|
|
825
|
+
}
|
|
826
|
+
.orbit:has(> :nth-child(15 of .satellite), > :nth-child(15 of o-sector), > :nth-child(15 of .spoke), > :nth-child(15 of .segment), > :nth-child(15 of o-label)),
|
|
827
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(15 of .satellite), > :nth-child(15 of o-sector), > :nth-child(15 of .spoke), > :nth-child(15 of .segment), > :nth-child(15 of o-label)) {
|
|
828
|
+
--o-angle: calc(var(--o-range) / (15 - var(--o-fit-range, 0)));
|
|
829
|
+
}
|
|
830
|
+
.orbit:has(> :nth-child(16 of .satellite), > :nth-child(16 of o-sector), > :nth-child(16 of .spoke), > :nth-child(16 of .segment), > :nth-child(16 of o-label)),
|
|
831
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(16 of .satellite), > :nth-child(16 of o-sector), > :nth-child(16 of .spoke), > :nth-child(16 of .segment), > :nth-child(16 of o-label)) {
|
|
832
|
+
--o-angle: calc(var(--o-range) / (16 - var(--o-fit-range, 0)));
|
|
833
|
+
}
|
|
834
|
+
.orbit:has(> :nth-child(17 of .satellite), > :nth-child(17 of o-sector), > :nth-child(17 of .spoke), > :nth-child(17 of .segment), > :nth-child(17 of o-label)),
|
|
835
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(17 of .satellite), > :nth-child(17 of o-sector), > :nth-child(17 of .spoke), > :nth-child(17 of .segment), > :nth-child(17 of o-label)) {
|
|
836
|
+
--o-angle: calc(var(--o-range) / (17 - var(--o-fit-range, 0)));
|
|
837
|
+
}
|
|
838
|
+
.orbit:has(> :nth-child(18 of .satellite), > :nth-child(18 of o-sector), > :nth-child(18 of .spoke), > :nth-child(18 of .segment), > :nth-child(18 of o-label)),
|
|
839
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(18 of .satellite), > :nth-child(18 of o-sector), > :nth-child(18 of .spoke), > :nth-child(18 of .segment), > :nth-child(18 of o-label)) {
|
|
840
|
+
--o-angle: calc(var(--o-range) / (18 - var(--o-fit-range, 0)));
|
|
841
|
+
}
|
|
842
|
+
.orbit:has(> :nth-child(19 of .satellite), > :nth-child(19 of o-sector), > :nth-child(19 of .spoke), > :nth-child(19 of .segment), > :nth-child(19 of o-label)),
|
|
843
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(19 of .satellite), > :nth-child(19 of o-sector), > :nth-child(19 of .spoke), > :nth-child(19 of .segment), > :nth-child(19 of o-label)) {
|
|
844
|
+
--o-angle: calc(var(--o-range) / (19 - var(--o-fit-range, 0)));
|
|
845
|
+
}
|
|
846
|
+
.orbit:has(> :nth-child(20 of .satellite), > :nth-child(20 of o-sector), > :nth-child(20 of .spoke), > :nth-child(20 of .segment), > :nth-child(20 of o-label)),
|
|
847
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(20 of .satellite), > :nth-child(20 of o-sector), > :nth-child(20 of .spoke), > :nth-child(20 of .segment), > :nth-child(20 of o-label)) {
|
|
848
|
+
--o-angle: calc(var(--o-range) / (20 - var(--o-fit-range, 0)));
|
|
849
|
+
}
|
|
850
|
+
.orbit:has(> :nth-child(21 of .satellite), > :nth-child(21 of o-sector), > :nth-child(21 of .spoke), > :nth-child(21 of .segment), > :nth-child(21 of o-label)),
|
|
851
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(21 of .satellite), > :nth-child(21 of o-sector), > :nth-child(21 of .spoke), > :nth-child(21 of .segment), > :nth-child(21 of o-label)) {
|
|
852
|
+
--o-angle: calc(var(--o-range) / (21 - var(--o-fit-range, 0)));
|
|
853
|
+
}
|
|
854
|
+
.orbit:has(> :nth-child(22 of .satellite), > :nth-child(22 of o-sector), > :nth-child(22 of .spoke), > :nth-child(22 of .segment), > :nth-child(22 of o-label)),
|
|
855
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(22 of .satellite), > :nth-child(22 of o-sector), > :nth-child(22 of .spoke), > :nth-child(22 of .segment), > :nth-child(22 of o-label)) {
|
|
856
|
+
--o-angle: calc(var(--o-range) / (22 - var(--o-fit-range, 0)));
|
|
857
|
+
}
|
|
858
|
+
.orbit:has(> :nth-child(23 of .satellite), > :nth-child(23 of o-sector), > :nth-child(23 of .spoke), > :nth-child(23 of .segment), > :nth-child(23 of o-label)),
|
|
859
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(23 of .satellite), > :nth-child(23 of o-sector), > :nth-child(23 of .spoke), > :nth-child(23 of .segment), > :nth-child(23 of o-label)) {
|
|
860
|
+
--o-angle: calc(var(--o-range) / (23 - var(--o-fit-range, 0)));
|
|
861
|
+
}
|
|
862
|
+
.orbit:has(> :nth-child(24 of .satellite), > :nth-child(24 of o-sector), > :nth-child(24 of .spoke), > :nth-child(24 of .segment), > :nth-child(24 of o-label)),
|
|
863
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(24 of .satellite), > :nth-child(24 of o-sector), > :nth-child(24 of .spoke), > :nth-child(24 of .segment), > :nth-child(24 of o-label)) {
|
|
864
|
+
--o-angle: calc(var(--o-range) / (24 - var(--o-fit-range, 0)));
|
|
865
|
+
}
|
|
866
|
+
.orbit:has(> :nth-child(25 of .satellite), > :nth-child(25 of o-sector), > :nth-child(25 of .spoke), > :nth-child(25 of .segment), > :nth-child(25 of o-label)),
|
|
867
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(25 of .satellite), > :nth-child(25 of o-sector), > :nth-child(25 of .spoke), > :nth-child(25 of .segment), > :nth-child(25 of o-label)) {
|
|
868
|
+
--o-angle: calc(var(--o-range) / (25 - var(--o-fit-range, 0)));
|
|
869
|
+
}
|
|
870
|
+
.orbit:has(> :nth-child(26 of .satellite), > :nth-child(26 of o-sector), > :nth-child(26 of .spoke), > :nth-child(26 of .segment), > :nth-child(26 of o-label)),
|
|
871
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(26 of .satellite), > :nth-child(26 of o-sector), > :nth-child(26 of .spoke), > :nth-child(26 of .segment), > :nth-child(26 of o-label)) {
|
|
872
|
+
--o-angle: calc(var(--o-range) / (26 - var(--o-fit-range, 0)));
|
|
873
|
+
}
|
|
874
|
+
.orbit:has(> :nth-child(27 of .satellite), > :nth-child(27 of o-sector), > :nth-child(27 of .spoke), > :nth-child(27 of .segment), > :nth-child(27 of o-label)),
|
|
875
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(27 of .satellite), > :nth-child(27 of o-sector), > :nth-child(27 of .spoke), > :nth-child(27 of .segment), > :nth-child(27 of o-label)) {
|
|
876
|
+
--o-angle: calc(var(--o-range) / (27 - var(--o-fit-range, 0)));
|
|
877
|
+
}
|
|
878
|
+
.orbit:has(> :nth-child(28 of .satellite), > :nth-child(28 of o-sector), > :nth-child(28 of .spoke), > :nth-child(28 of .segment), > :nth-child(28 of o-label)),
|
|
879
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(28 of .satellite), > :nth-child(28 of o-sector), > :nth-child(28 of .spoke), > :nth-child(28 of .segment), > :nth-child(28 of o-label)) {
|
|
880
|
+
--o-angle: calc(var(--o-range) / (28 - var(--o-fit-range, 0)));
|
|
881
|
+
}
|
|
882
|
+
.orbit:has(> :nth-child(29 of .satellite), > :nth-child(29 of o-sector), > :nth-child(29 of .spoke), > :nth-child(29 of .segment), > :nth-child(29 of o-label)),
|
|
883
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(29 of .satellite), > :nth-child(29 of o-sector), > :nth-child(29 of .spoke), > :nth-child(29 of .segment), > :nth-child(29 of o-label)) {
|
|
884
|
+
--o-angle: calc(var(--o-range) / (29 - var(--o-fit-range, 0)));
|
|
885
|
+
}
|
|
886
|
+
.orbit:has(> :nth-child(30 of .satellite), > :nth-child(30 of o-sector), > :nth-child(30 of .spoke), > :nth-child(30 of .segment), > :nth-child(30 of o-label)),
|
|
887
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(30 of .satellite), > :nth-child(30 of o-sector), > :nth-child(30 of .spoke), > :nth-child(30 of .segment), > :nth-child(30 of o-label)) {
|
|
888
|
+
--o-angle: calc(var(--o-range) / (30 - var(--o-fit-range, 0)));
|
|
889
|
+
}
|
|
890
|
+
.orbit:has(> :nth-child(31 of .satellite), > :nth-child(31 of o-sector), > :nth-child(31 of .spoke), > :nth-child(31 of .segment), > :nth-child(31 of o-label)),
|
|
891
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(31 of .satellite), > :nth-child(31 of o-sector), > :nth-child(31 of .spoke), > :nth-child(31 of .segment), > :nth-child(31 of o-label)) {
|
|
892
|
+
--o-angle: calc(var(--o-range) / (31 - var(--o-fit-range, 0)));
|
|
893
|
+
}
|
|
894
|
+
.orbit:has(> :nth-child(32 of .satellite), > :nth-child(32 of o-sector), > :nth-child(32 of .spoke), > :nth-child(32 of .segment), > :nth-child(32 of o-label)),
|
|
895
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(32 of .satellite), > :nth-child(32 of o-sector), > :nth-child(32 of .spoke), > :nth-child(32 of .segment), > :nth-child(32 of o-label)) {
|
|
896
|
+
--o-angle: calc(var(--o-range) / (32 - var(--o-fit-range, 0)));
|
|
897
|
+
}
|
|
898
|
+
.orbit:has(> :nth-child(33 of .satellite), > :nth-child(33 of o-sector), > :nth-child(33 of .spoke), > :nth-child(33 of .segment), > :nth-child(33 of o-label)),
|
|
899
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(33 of .satellite), > :nth-child(33 of o-sector), > :nth-child(33 of .spoke), > :nth-child(33 of .segment), > :nth-child(33 of o-label)) {
|
|
900
|
+
--o-angle: calc(var(--o-range) / (33 - var(--o-fit-range, 0)));
|
|
901
|
+
}
|
|
902
|
+
.orbit:has(> :nth-child(34 of .satellite), > :nth-child(34 of o-sector), > :nth-child(34 of .spoke), > :nth-child(34 of .segment), > :nth-child(34 of o-label)),
|
|
903
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(34 of .satellite), > :nth-child(34 of o-sector), > :nth-child(34 of .spoke), > :nth-child(34 of .segment), > :nth-child(34 of o-label)) {
|
|
904
|
+
--o-angle: calc(var(--o-range) / (34 - var(--o-fit-range, 0)));
|
|
905
|
+
}
|
|
906
|
+
.orbit:has(> :nth-child(35 of .satellite), > :nth-child(35 of o-sector), > :nth-child(35 of .spoke), > :nth-child(35 of .segment), > :nth-child(35 of o-label)),
|
|
907
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(35 of .satellite), > :nth-child(35 of o-sector), > :nth-child(35 of .spoke), > :nth-child(35 of .segment), > :nth-child(35 of o-label)) {
|
|
908
|
+
--o-angle: calc(var(--o-range) / (35 - var(--o-fit-range, 0)));
|
|
909
|
+
}
|
|
910
|
+
.orbit:has(> :nth-child(36 of .satellite), > :nth-child(36 of o-sector), > :nth-child(36 of .spoke), > :nth-child(36 of .segment), > :nth-child(36 of o-label)),
|
|
911
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(36 of .satellite), > :nth-child(36 of o-sector), > :nth-child(36 of .spoke), > :nth-child(36 of .segment), > :nth-child(36 of o-label)) {
|
|
912
|
+
--o-angle: calc(var(--o-range) / (36 - var(--o-fit-range, 0)));
|
|
913
|
+
}
|
|
914
|
+
.orbit:has(> :nth-child(37 of .satellite), > :nth-child(37 of o-sector), > :nth-child(37 of .spoke), > :nth-child(37 of .segment), > :nth-child(37 of o-label)),
|
|
915
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(37 of .satellite), > :nth-child(37 of o-sector), > :nth-child(37 of .spoke), > :nth-child(37 of .segment), > :nth-child(37 of o-label)) {
|
|
916
|
+
--o-angle: calc(var(--o-range) / (37 - var(--o-fit-range, 0)));
|
|
917
|
+
}
|
|
918
|
+
.orbit:has(> :nth-child(38 of .satellite), > :nth-child(38 of o-sector), > :nth-child(38 of .spoke), > :nth-child(38 of .segment), > :nth-child(38 of o-label)),
|
|
919
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(38 of .satellite), > :nth-child(38 of o-sector), > :nth-child(38 of .spoke), > :nth-child(38 of .segment), > :nth-child(38 of o-label)) {
|
|
920
|
+
--o-angle: calc(var(--o-range) / (38 - var(--o-fit-range, 0)));
|
|
921
|
+
}
|
|
922
|
+
.orbit:has(> :nth-child(39 of .satellite), > :nth-child(39 of o-sector), > :nth-child(39 of .spoke), > :nth-child(39 of .segment), > :nth-child(39 of o-label)),
|
|
923
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(39 of .satellite), > :nth-child(39 of o-sector), > :nth-child(39 of .spoke), > :nth-child(39 of .segment), > :nth-child(39 of o-label)) {
|
|
924
|
+
--o-angle: calc(var(--o-range) / (39 - var(--o-fit-range, 0)));
|
|
925
|
+
}
|
|
926
|
+
.orbit:has(> :nth-child(40 of .satellite), > :nth-child(40 of o-sector), > :nth-child(40 of .spoke), > :nth-child(40 of .segment), > :nth-child(40 of o-label)),
|
|
927
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(40 of .satellite), > :nth-child(40 of o-sector), > :nth-child(40 of .spoke), > :nth-child(40 of .segment), > :nth-child(40 of o-label)) {
|
|
928
|
+
--o-angle: calc(var(--o-range) / (40 - var(--o-fit-range, 0)));
|
|
929
|
+
}
|
|
930
|
+
.orbit:has(> :nth-child(41 of .satellite), > :nth-child(41 of o-sector), > :nth-child(41 of .spoke), > :nth-child(41 of .segment), > :nth-child(41 of o-label)),
|
|
931
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(41 of .satellite), > :nth-child(41 of o-sector), > :nth-child(41 of .spoke), > :nth-child(41 of .segment), > :nth-child(41 of o-label)) {
|
|
932
|
+
--o-angle: calc(var(--o-range) / (41 - var(--o-fit-range, 0)));
|
|
933
|
+
}
|
|
934
|
+
.orbit:has(> :nth-child(42 of .satellite), > :nth-child(42 of o-sector), > :nth-child(42 of .spoke), > :nth-child(42 of .segment), > :nth-child(42 of o-label)),
|
|
935
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(42 of .satellite), > :nth-child(42 of o-sector), > :nth-child(42 of .spoke), > :nth-child(42 of .segment), > :nth-child(42 of o-label)) {
|
|
936
|
+
--o-angle: calc(var(--o-range) / (42 - var(--o-fit-range, 0)));
|
|
937
|
+
}
|
|
938
|
+
.orbit:has(> :nth-child(43 of .satellite), > :nth-child(43 of o-sector), > :nth-child(43 of .spoke), > :nth-child(43 of .segment), > :nth-child(43 of o-label)),
|
|
939
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(43 of .satellite), > :nth-child(43 of o-sector), > :nth-child(43 of .spoke), > :nth-child(43 of .segment), > :nth-child(43 of o-label)) {
|
|
940
|
+
--o-angle: calc(var(--o-range) / (43 - var(--o-fit-range, 0)));
|
|
941
|
+
}
|
|
942
|
+
.orbit:has(> :nth-child(44 of .satellite), > :nth-child(44 of o-sector), > :nth-child(44 of .spoke), > :nth-child(44 of .segment), > :nth-child(44 of o-label)),
|
|
943
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(44 of .satellite), > :nth-child(44 of o-sector), > :nth-child(44 of .spoke), > :nth-child(44 of .segment), > :nth-child(44 of o-label)) {
|
|
944
|
+
--o-angle: calc(var(--o-range) / (44 - var(--o-fit-range, 0)));
|
|
945
|
+
}
|
|
946
|
+
.orbit:has(> :nth-child(45 of .satellite), > :nth-child(45 of o-sector), > :nth-child(45 of .spoke), > :nth-child(45 of .segment), > :nth-child(45 of o-label)),
|
|
947
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(45 of .satellite), > :nth-child(45 of o-sector), > :nth-child(45 of .spoke), > :nth-child(45 of .segment), > :nth-child(45 of o-label)) {
|
|
948
|
+
--o-angle: calc(var(--o-range) / (45 - var(--o-fit-range, 0)));
|
|
949
|
+
}
|
|
950
|
+
.orbit:has(> :nth-child(46 of .satellite), > :nth-child(46 of o-sector), > :nth-child(46 of .spoke), > :nth-child(46 of .segment), > :nth-child(46 of o-label)),
|
|
951
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(46 of .satellite), > :nth-child(46 of o-sector), > :nth-child(46 of .spoke), > :nth-child(46 of .segment), > :nth-child(46 of o-label)) {
|
|
952
|
+
--o-angle: calc(var(--o-range) / (46 - var(--o-fit-range, 0)));
|
|
953
|
+
}
|
|
954
|
+
.orbit:has(> :nth-child(47 of .satellite), > :nth-child(47 of o-sector), > :nth-child(47 of .spoke), > :nth-child(47 of .segment), > :nth-child(47 of o-label)),
|
|
955
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(47 of .satellite), > :nth-child(47 of o-sector), > :nth-child(47 of .spoke), > :nth-child(47 of .segment), > :nth-child(47 of o-label)) {
|
|
956
|
+
--o-angle: calc(var(--o-range) / (47 - var(--o-fit-range, 0)));
|
|
957
|
+
}
|
|
958
|
+
.orbit:has(> :nth-child(48 of .satellite), > :nth-child(48 of o-sector), > :nth-child(48 of .spoke), > :nth-child(48 of .segment), > :nth-child(48 of o-label)),
|
|
959
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(48 of .satellite), > :nth-child(48 of o-sector), > :nth-child(48 of .spoke), > :nth-child(48 of .segment), > :nth-child(48 of o-label)) {
|
|
960
|
+
--o-angle: calc(var(--o-range) / (48 - var(--o-fit-range, 0)));
|
|
961
|
+
}
|
|
962
|
+
.orbit:has(> :nth-child(49 of .satellite), > :nth-child(49 of o-sector), > :nth-child(49 of .spoke), > :nth-child(49 of .segment), > :nth-child(49 of o-label)),
|
|
963
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(49 of .satellite), > :nth-child(49 of o-sector), > :nth-child(49 of .spoke), > :nth-child(49 of .segment), > :nth-child(49 of o-label)) {
|
|
964
|
+
--o-angle: calc(var(--o-range) / (49 - var(--o-fit-range, 0)));
|
|
965
|
+
}
|
|
966
|
+
.orbit:has(> :nth-child(50 of .satellite), > :nth-child(50 of o-sector), > :nth-child(50 of .spoke), > :nth-child(50 of .segment), > :nth-child(50 of o-label)),
|
|
967
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(50 of .satellite), > :nth-child(50 of o-sector), > :nth-child(50 of .spoke), > :nth-child(50 of .segment), > :nth-child(50 of o-label)) {
|
|
968
|
+
--o-angle: calc(var(--o-range) / (50 - var(--o-fit-range, 0)));
|
|
969
|
+
}
|
|
970
|
+
.orbit:has(> :nth-child(51 of .satellite), > :nth-child(51 of o-sector), > :nth-child(51 of .spoke), > :nth-child(51 of .segment), > :nth-child(51 of o-label)),
|
|
971
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(51 of .satellite), > :nth-child(51 of o-sector), > :nth-child(51 of .spoke), > :nth-child(51 of .segment), > :nth-child(51 of o-label)) {
|
|
972
|
+
--o-angle: calc(var(--o-range) / (51 - var(--o-fit-range, 0)));
|
|
973
|
+
}
|
|
974
|
+
.orbit:has(> :nth-child(52 of .satellite), > :nth-child(52 of o-sector), > :nth-child(52 of .spoke), > :nth-child(52 of .segment), > :nth-child(52 of o-label)),
|
|
975
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(52 of .satellite), > :nth-child(52 of o-sector), > :nth-child(52 of .spoke), > :nth-child(52 of .segment), > :nth-child(52 of o-label)) {
|
|
976
|
+
--o-angle: calc(var(--o-range) / (52 - var(--o-fit-range, 0)));
|
|
977
|
+
}
|
|
978
|
+
.orbit:has(> :nth-child(53 of .satellite), > :nth-child(53 of o-sector), > :nth-child(53 of .spoke), > :nth-child(53 of .segment), > :nth-child(53 of o-label)),
|
|
979
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(53 of .satellite), > :nth-child(53 of o-sector), > :nth-child(53 of .spoke), > :nth-child(53 of .segment), > :nth-child(53 of o-label)) {
|
|
980
|
+
--o-angle: calc(var(--o-range) / (53 - var(--o-fit-range, 0)));
|
|
981
|
+
}
|
|
982
|
+
.orbit:has(> :nth-child(54 of .satellite), > :nth-child(54 of o-sector), > :nth-child(54 of .spoke), > :nth-child(54 of .segment), > :nth-child(54 of o-label)),
|
|
983
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(54 of .satellite), > :nth-child(54 of o-sector), > :nth-child(54 of .spoke), > :nth-child(54 of .segment), > :nth-child(54 of o-label)) {
|
|
984
|
+
--o-angle: calc(var(--o-range) / (54 - var(--o-fit-range, 0)));
|
|
985
|
+
}
|
|
986
|
+
.orbit:has(> :nth-child(55 of .satellite), > :nth-child(55 of o-sector), > :nth-child(55 of .spoke), > :nth-child(55 of .segment), > :nth-child(55 of o-label)),
|
|
987
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(55 of .satellite), > :nth-child(55 of o-sector), > :nth-child(55 of .spoke), > :nth-child(55 of .segment), > :nth-child(55 of o-label)) {
|
|
988
|
+
--o-angle: calc(var(--o-range) / (55 - var(--o-fit-range, 0)));
|
|
989
|
+
}
|
|
990
|
+
.orbit:has(> :nth-child(56 of .satellite), > :nth-child(56 of o-sector), > :nth-child(56 of .spoke), > :nth-child(56 of .segment), > :nth-child(56 of o-label)),
|
|
991
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(56 of .satellite), > :nth-child(56 of o-sector), > :nth-child(56 of .spoke), > :nth-child(56 of .segment), > :nth-child(56 of o-label)) {
|
|
992
|
+
--o-angle: calc(var(--o-range) / (56 - var(--o-fit-range, 0)));
|
|
993
|
+
}
|
|
994
|
+
.orbit:has(> :nth-child(57 of .satellite), > :nth-child(57 of o-sector), > :nth-child(57 of .spoke), > :nth-child(57 of .segment), > :nth-child(57 of o-label)),
|
|
995
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(57 of .satellite), > :nth-child(57 of o-sector), > :nth-child(57 of .spoke), > :nth-child(57 of .segment), > :nth-child(57 of o-label)) {
|
|
996
|
+
--o-angle: calc(var(--o-range) / (57 - var(--o-fit-range, 0)));
|
|
997
|
+
}
|
|
998
|
+
.orbit:has(> :nth-child(58 of .satellite), > :nth-child(58 of o-sector), > :nth-child(58 of .spoke), > :nth-child(58 of .segment), > :nth-child(58 of o-label)),
|
|
999
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(58 of .satellite), > :nth-child(58 of o-sector), > :nth-child(58 of .spoke), > :nth-child(58 of .segment), > :nth-child(58 of o-label)) {
|
|
1000
|
+
--o-angle: calc(var(--o-range) / (58 - var(--o-fit-range, 0)));
|
|
1001
|
+
}
|
|
1002
|
+
.orbit:has(> :nth-child(59 of .satellite), > :nth-child(59 of o-sector), > :nth-child(59 of .spoke), > :nth-child(59 of .segment), > :nth-child(59 of o-label)),
|
|
1003
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(59 of .satellite), > :nth-child(59 of o-sector), > :nth-child(59 of .spoke), > :nth-child(59 of .segment), > :nth-child(59 of o-label)) {
|
|
1004
|
+
--o-angle: calc(var(--o-range) / (59 - var(--o-fit-range, 0)));
|
|
1005
|
+
}
|
|
1006
|
+
.orbit:has(> :nth-child(60 of .satellite), > :nth-child(60 of o-sector), > :nth-child(60 of .spoke), > :nth-child(60 of .segment), > :nth-child(60 of o-label)),
|
|
1007
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(60 of .satellite), > :nth-child(60 of o-sector), > :nth-child(60 of .spoke), > :nth-child(60 of .segment), > :nth-child(60 of o-label)) {
|
|
1008
|
+
--o-angle: calc(var(--o-range) / (60 - var(--o-fit-range, 0)));
|
|
1009
|
+
}
|
|
1010
|
+
.orbit:has(> :nth-child(1 of .segment)),
|
|
1011
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(1 of .segment)) {
|
|
1012
|
+
--o-angle: calc(var(--o-range) / 1);
|
|
1013
|
+
}
|
|
1014
|
+
.orbit:has(> :nth-child(2 of .segment)),
|
|
1015
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(2 of .segment)) {
|
|
1016
|
+
--o-angle: calc(var(--o-range) / 2);
|
|
1017
|
+
}
|
|
1018
|
+
.orbit:has(> :nth-child(3 of .segment)),
|
|
1019
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(3 of .segment)) {
|
|
1020
|
+
--o-angle: calc(var(--o-range) / 3);
|
|
1021
|
+
}
|
|
1022
|
+
.orbit:has(> :nth-child(4 of .segment)),
|
|
1023
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(4 of .segment)) {
|
|
1024
|
+
--o-angle: calc(var(--o-range) / 4);
|
|
1025
|
+
}
|
|
1026
|
+
.orbit:has(> :nth-child(5 of .segment)),
|
|
1027
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(5 of .segment)) {
|
|
1028
|
+
--o-angle: calc(var(--o-range) / 5);
|
|
1029
|
+
}
|
|
1030
|
+
.orbit:has(> :nth-child(6 of .segment)),
|
|
1031
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(6 of .segment)) {
|
|
1032
|
+
--o-angle: calc(var(--o-range) / 6);
|
|
1033
|
+
}
|
|
1034
|
+
.orbit:has(> :nth-child(7 of .segment)),
|
|
1035
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(7 of .segment)) {
|
|
1036
|
+
--o-angle: calc(var(--o-range) / 7);
|
|
1037
|
+
}
|
|
1038
|
+
.orbit:has(> :nth-child(8 of .segment)),
|
|
1039
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(8 of .segment)) {
|
|
1040
|
+
--o-angle: calc(var(--o-range) / 8);
|
|
1041
|
+
}
|
|
1042
|
+
.orbit:has(> :nth-child(9 of .segment)),
|
|
1043
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(9 of .segment)) {
|
|
1044
|
+
--o-angle: calc(var(--o-range) / 9);
|
|
1045
|
+
}
|
|
1046
|
+
.orbit:has(> :nth-child(10 of .segment)),
|
|
1047
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(10 of .segment)) {
|
|
1048
|
+
--o-angle: calc(var(--o-range) / 10);
|
|
1049
|
+
}
|
|
1050
|
+
.orbit:has(> :nth-child(11 of .segment)),
|
|
1051
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(11 of .segment)) {
|
|
1052
|
+
--o-angle: calc(var(--o-range) / 11);
|
|
1053
|
+
}
|
|
1054
|
+
.orbit:has(> :nth-child(12 of .segment)),
|
|
1055
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(12 of .segment)) {
|
|
1056
|
+
--o-angle: calc(var(--o-range) / 12);
|
|
1057
|
+
}
|
|
1058
|
+
.orbit:has(> :nth-child(13 of .segment)),
|
|
1059
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(13 of .segment)) {
|
|
1060
|
+
--o-angle: calc(var(--o-range) / 13);
|
|
1061
|
+
}
|
|
1062
|
+
.orbit:has(> :nth-child(14 of .segment)),
|
|
1063
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(14 of .segment)) {
|
|
1064
|
+
--o-angle: calc(var(--o-range) / 14);
|
|
1065
|
+
}
|
|
1066
|
+
.orbit:has(> :nth-child(15 of .segment)),
|
|
1067
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(15 of .segment)) {
|
|
1068
|
+
--o-angle: calc(var(--o-range) / 15);
|
|
1069
|
+
}
|
|
1070
|
+
.orbit:has(> :nth-child(16 of .segment)),
|
|
1071
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(16 of .segment)) {
|
|
1072
|
+
--o-angle: calc(var(--o-range) / 16);
|
|
1073
|
+
}
|
|
1074
|
+
.orbit:has(> :nth-child(17 of .segment)),
|
|
1075
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(17 of .segment)) {
|
|
1076
|
+
--o-angle: calc(var(--o-range) / 17);
|
|
1077
|
+
}
|
|
1078
|
+
.orbit:has(> :nth-child(18 of .segment)),
|
|
1079
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(18 of .segment)) {
|
|
1080
|
+
--o-angle: calc(var(--o-range) / 18);
|
|
1081
|
+
}
|
|
1082
|
+
.orbit:has(> :nth-child(19 of .segment)),
|
|
1083
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(19 of .segment)) {
|
|
1084
|
+
--o-angle: calc(var(--o-range) / 19);
|
|
1085
|
+
}
|
|
1086
|
+
.orbit:has(> :nth-child(20 of .segment)),
|
|
1087
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(20 of .segment)) {
|
|
1088
|
+
--o-angle: calc(var(--o-range) / 20);
|
|
1089
|
+
}
|
|
1090
|
+
.orbit:has(> :nth-child(21 of .segment)),
|
|
1091
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(21 of .segment)) {
|
|
1092
|
+
--o-angle: calc(var(--o-range) / 21);
|
|
1093
|
+
}
|
|
1094
|
+
.orbit:has(> :nth-child(22 of .segment)),
|
|
1095
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(22 of .segment)) {
|
|
1096
|
+
--o-angle: calc(var(--o-range) / 22);
|
|
1097
|
+
}
|
|
1098
|
+
.orbit:has(> :nth-child(23 of .segment)),
|
|
1099
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(23 of .segment)) {
|
|
1100
|
+
--o-angle: calc(var(--o-range) / 23);
|
|
1101
|
+
}
|
|
1102
|
+
.orbit:has(> :nth-child(24 of .segment)),
|
|
1103
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(24 of .segment)) {
|
|
1104
|
+
--o-angle: calc(var(--o-range) / 24);
|
|
1105
|
+
}
|
|
1106
|
+
.orbit:has(> :nth-child(25 of .segment)),
|
|
1107
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(25 of .segment)) {
|
|
1108
|
+
--o-angle: calc(var(--o-range) / 25);
|
|
1109
|
+
}
|
|
1110
|
+
.orbit:has(> :nth-child(26 of .segment)),
|
|
1111
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(26 of .segment)) {
|
|
1112
|
+
--o-angle: calc(var(--o-range) / 26);
|
|
1113
|
+
}
|
|
1114
|
+
.orbit:has(> :nth-child(27 of .segment)),
|
|
1115
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(27 of .segment)) {
|
|
1116
|
+
--o-angle: calc(var(--o-range) / 27);
|
|
1117
|
+
}
|
|
1118
|
+
.orbit:has(> :nth-child(28 of .segment)),
|
|
1119
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(28 of .segment)) {
|
|
1120
|
+
--o-angle: calc(var(--o-range) / 28);
|
|
1121
|
+
}
|
|
1122
|
+
.orbit:has(> :nth-child(29 of .segment)),
|
|
1123
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(29 of .segment)) {
|
|
1124
|
+
--o-angle: calc(var(--o-range) / 29);
|
|
1125
|
+
}
|
|
1126
|
+
.orbit:has(> :nth-child(30 of .segment)),
|
|
1127
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(30 of .segment)) {
|
|
1128
|
+
--o-angle: calc(var(--o-range) / 30);
|
|
1129
|
+
}
|
|
1130
|
+
.orbit:has(> :nth-child(31 of .segment)),
|
|
1131
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(31 of .segment)) {
|
|
1132
|
+
--o-angle: calc(var(--o-range) / 31);
|
|
1133
|
+
}
|
|
1134
|
+
.orbit:has(> :nth-child(32 of .segment)),
|
|
1135
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(32 of .segment)) {
|
|
1136
|
+
--o-angle: calc(var(--o-range) / 32);
|
|
1137
|
+
}
|
|
1138
|
+
.orbit:has(> :nth-child(33 of .segment)),
|
|
1139
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(33 of .segment)) {
|
|
1140
|
+
--o-angle: calc(var(--o-range) / 33);
|
|
1141
|
+
}
|
|
1142
|
+
.orbit:has(> :nth-child(34 of .segment)),
|
|
1143
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(34 of .segment)) {
|
|
1144
|
+
--o-angle: calc(var(--o-range) / 34);
|
|
1145
|
+
}
|
|
1146
|
+
.orbit:has(> :nth-child(35 of .segment)),
|
|
1147
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(35 of .segment)) {
|
|
1148
|
+
--o-angle: calc(var(--o-range) / 35);
|
|
1149
|
+
}
|
|
1150
|
+
.orbit:has(> :nth-child(36 of .segment)),
|
|
1151
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(36 of .segment)) {
|
|
1152
|
+
--o-angle: calc(var(--o-range) / 36);
|
|
1153
|
+
}
|
|
1154
|
+
.orbit:has(> :nth-child(37 of .segment)),
|
|
1155
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(37 of .segment)) {
|
|
1156
|
+
--o-angle: calc(var(--o-range) / 37);
|
|
1157
|
+
}
|
|
1158
|
+
.orbit:has(> :nth-child(38 of .segment)),
|
|
1159
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(38 of .segment)) {
|
|
1160
|
+
--o-angle: calc(var(--o-range) / 38);
|
|
1161
|
+
}
|
|
1162
|
+
.orbit:has(> :nth-child(39 of .segment)),
|
|
1163
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(39 of .segment)) {
|
|
1164
|
+
--o-angle: calc(var(--o-range) / 39);
|
|
1165
|
+
}
|
|
1166
|
+
.orbit:has(> :nth-child(40 of .segment)),
|
|
1167
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(40 of .segment)) {
|
|
1168
|
+
--o-angle: calc(var(--o-range) / 40);
|
|
1169
|
+
}
|
|
1170
|
+
.orbit:has(> :nth-child(41 of .segment)),
|
|
1171
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(41 of .segment)) {
|
|
1172
|
+
--o-angle: calc(var(--o-range) / 41);
|
|
1173
|
+
}
|
|
1174
|
+
.orbit:has(> :nth-child(42 of .segment)),
|
|
1175
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(42 of .segment)) {
|
|
1176
|
+
--o-angle: calc(var(--o-range) / 42);
|
|
1177
|
+
}
|
|
1178
|
+
.orbit:has(> :nth-child(43 of .segment)),
|
|
1179
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(43 of .segment)) {
|
|
1180
|
+
--o-angle: calc(var(--o-range) / 43);
|
|
1181
|
+
}
|
|
1182
|
+
.orbit:has(> :nth-child(44 of .segment)),
|
|
1183
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(44 of .segment)) {
|
|
1184
|
+
--o-angle: calc(var(--o-range) / 44);
|
|
1185
|
+
}
|
|
1186
|
+
.orbit:has(> :nth-child(45 of .segment)),
|
|
1187
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(45 of .segment)) {
|
|
1188
|
+
--o-angle: calc(var(--o-range) / 45);
|
|
1189
|
+
}
|
|
1190
|
+
.orbit:has(> :nth-child(46 of .segment)),
|
|
1191
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(46 of .segment)) {
|
|
1192
|
+
--o-angle: calc(var(--o-range) / 46);
|
|
1193
|
+
}
|
|
1194
|
+
.orbit:has(> :nth-child(47 of .segment)),
|
|
1195
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(47 of .segment)) {
|
|
1196
|
+
--o-angle: calc(var(--o-range) / 47);
|
|
1197
|
+
}
|
|
1198
|
+
.orbit:has(> :nth-child(48 of .segment)),
|
|
1199
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(48 of .segment)) {
|
|
1200
|
+
--o-angle: calc(var(--o-range) / 48);
|
|
1201
|
+
}
|
|
1202
|
+
.orbit:has(> :nth-child(49 of .segment)),
|
|
1203
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(49 of .segment)) {
|
|
1204
|
+
--o-angle: calc(var(--o-range) / 49);
|
|
1205
|
+
}
|
|
1206
|
+
.orbit:has(> :nth-child(50 of .segment)),
|
|
1207
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(50 of .segment)) {
|
|
1208
|
+
--o-angle: calc(var(--o-range) / 50);
|
|
1209
|
+
}
|
|
1210
|
+
.orbit:has(> :nth-child(51 of .segment)),
|
|
1211
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(51 of .segment)) {
|
|
1212
|
+
--o-angle: calc(var(--o-range) / 51);
|
|
1213
|
+
}
|
|
1214
|
+
.orbit:has(> :nth-child(52 of .segment)),
|
|
1215
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(52 of .segment)) {
|
|
1216
|
+
--o-angle: calc(var(--o-range) / 52);
|
|
1217
|
+
}
|
|
1218
|
+
.orbit:has(> :nth-child(53 of .segment)),
|
|
1219
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(53 of .segment)) {
|
|
1220
|
+
--o-angle: calc(var(--o-range) / 53);
|
|
1221
|
+
}
|
|
1222
|
+
.orbit:has(> :nth-child(54 of .segment)),
|
|
1223
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(54 of .segment)) {
|
|
1224
|
+
--o-angle: calc(var(--o-range) / 54);
|
|
1225
|
+
}
|
|
1226
|
+
.orbit:has(> :nth-child(55 of .segment)),
|
|
1227
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(55 of .segment)) {
|
|
1228
|
+
--o-angle: calc(var(--o-range) / 55);
|
|
1229
|
+
}
|
|
1230
|
+
.orbit:has(> :nth-child(56 of .segment)),
|
|
1231
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(56 of .segment)) {
|
|
1232
|
+
--o-angle: calc(var(--o-range) / 56);
|
|
1233
|
+
}
|
|
1234
|
+
.orbit:has(> :nth-child(57 of .segment)),
|
|
1235
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(57 of .segment)) {
|
|
1236
|
+
--o-angle: calc(var(--o-range) / 57);
|
|
1237
|
+
}
|
|
1238
|
+
.orbit:has(> :nth-child(58 of .segment)),
|
|
1239
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(58 of .segment)) {
|
|
1240
|
+
--o-angle: calc(var(--o-range) / 58);
|
|
1241
|
+
}
|
|
1242
|
+
.orbit:has(> :nth-child(59 of .segment)),
|
|
1243
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(59 of .segment)) {
|
|
1244
|
+
--o-angle: calc(var(--o-range) / 59);
|
|
1245
|
+
}
|
|
1246
|
+
.orbit:has(> :nth-child(60 of .segment)),
|
|
1247
|
+
[class*=orbit-]:not(.orbit-zone):has(> :nth-child(60 of .segment)) {
|
|
1248
|
+
--o-angle: calc(var(--o-range) / 60);
|
|
1249
|
+
}
|
|
1250
|
+
.capsule {
|
|
1251
|
+
--o-angle-composite: 0deg;
|
|
1252
|
+
display: flex;
|
|
1253
|
+
width: inherit;
|
|
1254
|
+
height: auto;
|
|
1255
|
+
position: absolute;
|
|
1256
|
+
align-items: center;
|
|
1257
|
+
justify-content: center;
|
|
1258
|
+
rotate: calc(var(--o-angle-composite));
|
|
1259
|
+
}
|
|
1260
|
+
.at-top-left {
|
|
1261
|
+
align-items: flex-start !important;
|
|
1262
|
+
justify-content: flex-start !important;
|
|
1263
|
+
}
|
|
1264
|
+
.at-top {
|
|
1265
|
+
align-items: flex-start !important;
|
|
1266
|
+
justify-content: center !important;
|
|
1267
|
+
}
|
|
1268
|
+
.at-top-right {
|
|
1269
|
+
align-items: flex-start !important;
|
|
1270
|
+
justify-content: flex-end !important;
|
|
1271
|
+
}
|
|
1272
|
+
.at-bottom-left {
|
|
1273
|
+
align-items: flex-end !important;
|
|
1274
|
+
justify-content: flex-start !important;
|
|
1275
|
+
}
|
|
1276
|
+
.at-bottom {
|
|
1277
|
+
align-items: flex-end !important;
|
|
1278
|
+
justify-content: center !important;
|
|
1279
|
+
}
|
|
1280
|
+
.at-bottom-right {
|
|
1281
|
+
align-items: flex-end !important;
|
|
1282
|
+
justify-content: flex-end !important;
|
|
1283
|
+
}
|
|
1284
|
+
.at-center-left {
|
|
1285
|
+
align-items: center !important;
|
|
1286
|
+
justify-content: flex-start !important;
|
|
1287
|
+
}
|
|
1288
|
+
.at-center {
|
|
1289
|
+
align-items: center !important;
|
|
1290
|
+
justify-content: center !important;
|
|
1291
|
+
}
|
|
1292
|
+
.at-center-right {
|
|
1293
|
+
align-items: center !important;
|
|
1294
|
+
justify-content: flex-end !important;
|
|
1295
|
+
}
|
|
1296
|
+
.range-0 {
|
|
1297
|
+
--o-range: 0deg;
|
|
1298
|
+
}
|
|
1299
|
+
.range-1 {
|
|
1300
|
+
--o-range: 1deg;
|
|
1301
|
+
}
|
|
1302
|
+
.range-2 {
|
|
1303
|
+
--o-range: 2deg;
|
|
1304
|
+
}
|
|
1305
|
+
.range-3 {
|
|
1306
|
+
--o-range: 3deg;
|
|
1307
|
+
}
|
|
1308
|
+
.range-4 {
|
|
1309
|
+
--o-range: 4deg;
|
|
1310
|
+
}
|
|
1311
|
+
.range-5 {
|
|
1312
|
+
--o-range: 5deg;
|
|
1313
|
+
}
|
|
1314
|
+
.range-6 {
|
|
1315
|
+
--o-range: 6deg;
|
|
1316
|
+
}
|
|
1317
|
+
.range-7 {
|
|
1318
|
+
--o-range: 7deg;
|
|
1319
|
+
}
|
|
1320
|
+
.range-8 {
|
|
1321
|
+
--o-range: 8deg;
|
|
1322
|
+
}
|
|
1323
|
+
.range-9 {
|
|
1324
|
+
--o-range: 9deg;
|
|
1325
|
+
}
|
|
1326
|
+
.range-10 {
|
|
1327
|
+
--o-range: 10deg;
|
|
1328
|
+
}
|
|
1329
|
+
.range-11 {
|
|
1330
|
+
--o-range: 11deg;
|
|
1331
|
+
}
|
|
1332
|
+
.range-12 {
|
|
1333
|
+
--o-range: 12deg;
|
|
1334
|
+
}
|
|
1335
|
+
.range-13 {
|
|
1336
|
+
--o-range: 13deg;
|
|
1337
|
+
}
|
|
1338
|
+
.range-14 {
|
|
1339
|
+
--o-range: 14deg;
|
|
1340
|
+
}
|
|
1341
|
+
.range-15 {
|
|
1342
|
+
--o-range: 15deg;
|
|
1343
|
+
}
|
|
1344
|
+
.range-16 {
|
|
1345
|
+
--o-range: 16deg;
|
|
1346
|
+
}
|
|
1347
|
+
.range-17 {
|
|
1348
|
+
--o-range: 17deg;
|
|
1349
|
+
}
|
|
1350
|
+
.range-18 {
|
|
1351
|
+
--o-range: 18deg;
|
|
1352
|
+
}
|
|
1353
|
+
.range-19 {
|
|
1354
|
+
--o-range: 19deg;
|
|
1355
|
+
}
|
|
1356
|
+
.range-20 {
|
|
1357
|
+
--o-range: 20deg;
|
|
1358
|
+
}
|
|
1359
|
+
.range-21 {
|
|
1360
|
+
--o-range: 21deg;
|
|
1361
|
+
}
|
|
1362
|
+
.range-22 {
|
|
1363
|
+
--o-range: 22deg;
|
|
1364
|
+
}
|
|
1365
|
+
.range-23 {
|
|
1366
|
+
--o-range: 23deg;
|
|
1367
|
+
}
|
|
1368
|
+
.range-24 {
|
|
1369
|
+
--o-range: 24deg;
|
|
1370
|
+
}
|
|
1371
|
+
.range-25 {
|
|
1372
|
+
--o-range: 25deg;
|
|
1373
|
+
}
|
|
1374
|
+
.range-26 {
|
|
1375
|
+
--o-range: 26deg;
|
|
1376
|
+
}
|
|
1377
|
+
.range-27 {
|
|
1378
|
+
--o-range: 27deg;
|
|
1379
|
+
}
|
|
1380
|
+
.range-28 {
|
|
1381
|
+
--o-range: 28deg;
|
|
1382
|
+
}
|
|
1383
|
+
.range-29 {
|
|
1384
|
+
--o-range: 29deg;
|
|
1385
|
+
}
|
|
1386
|
+
.range-30 {
|
|
1387
|
+
--o-range: 30deg;
|
|
1388
|
+
}
|
|
1389
|
+
.range-31 {
|
|
1390
|
+
--o-range: 31deg;
|
|
1391
|
+
}
|
|
1392
|
+
.range-32 {
|
|
1393
|
+
--o-range: 32deg;
|
|
1394
|
+
}
|
|
1395
|
+
.range-33 {
|
|
1396
|
+
--o-range: 33deg;
|
|
1397
|
+
}
|
|
1398
|
+
.range-34 {
|
|
1399
|
+
--o-range: 34deg;
|
|
1400
|
+
}
|
|
1401
|
+
.range-35 {
|
|
1402
|
+
--o-range: 35deg;
|
|
1403
|
+
}
|
|
1404
|
+
.range-36 {
|
|
1405
|
+
--o-range: 36deg;
|
|
1406
|
+
}
|
|
1407
|
+
.range-37 {
|
|
1408
|
+
--o-range: 37deg;
|
|
1409
|
+
}
|
|
1410
|
+
.range-38 {
|
|
1411
|
+
--o-range: 38deg;
|
|
1412
|
+
}
|
|
1413
|
+
.range-39 {
|
|
1414
|
+
--o-range: 39deg;
|
|
1415
|
+
}
|
|
1416
|
+
.range-40 {
|
|
1417
|
+
--o-range: 40deg;
|
|
1418
|
+
}
|
|
1419
|
+
.range-41 {
|
|
1420
|
+
--o-range: 41deg;
|
|
1421
|
+
}
|
|
1422
|
+
.range-42 {
|
|
1423
|
+
--o-range: 42deg;
|
|
1424
|
+
}
|
|
1425
|
+
.range-43 {
|
|
1426
|
+
--o-range: 43deg;
|
|
1427
|
+
}
|
|
1428
|
+
.range-44 {
|
|
1429
|
+
--o-range: 44deg;
|
|
1430
|
+
}
|
|
1431
|
+
.range-45 {
|
|
1432
|
+
--o-range: 45deg;
|
|
1433
|
+
}
|
|
1434
|
+
.range-46 {
|
|
1435
|
+
--o-range: 46deg;
|
|
1436
|
+
}
|
|
1437
|
+
.range-47 {
|
|
1438
|
+
--o-range: 47deg;
|
|
1439
|
+
}
|
|
1440
|
+
.range-48 {
|
|
1441
|
+
--o-range: 48deg;
|
|
1442
|
+
}
|
|
1443
|
+
.range-49 {
|
|
1444
|
+
--o-range: 49deg;
|
|
1445
|
+
}
|
|
1446
|
+
.range-50 {
|
|
1447
|
+
--o-range: 50deg;
|
|
1448
|
+
}
|
|
1449
|
+
.range-51 {
|
|
1450
|
+
--o-range: 51deg;
|
|
1451
|
+
}
|
|
1452
|
+
.range-52 {
|
|
1453
|
+
--o-range: 52deg;
|
|
1454
|
+
}
|
|
1455
|
+
.range-53 {
|
|
1456
|
+
--o-range: 53deg;
|
|
1457
|
+
}
|
|
1458
|
+
.range-54 {
|
|
1459
|
+
--o-range: 54deg;
|
|
1460
|
+
}
|
|
1461
|
+
.range-55 {
|
|
1462
|
+
--o-range: 55deg;
|
|
1463
|
+
}
|
|
1464
|
+
.range-56 {
|
|
1465
|
+
--o-range: 56deg;
|
|
1466
|
+
}
|
|
1467
|
+
.range-57 {
|
|
1468
|
+
--o-range: 57deg;
|
|
1469
|
+
}
|
|
1470
|
+
.range-58 {
|
|
1471
|
+
--o-range: 58deg;
|
|
1472
|
+
}
|
|
1473
|
+
.range-59 {
|
|
1474
|
+
--o-range: 59deg;
|
|
1475
|
+
}
|
|
1476
|
+
.range-60 {
|
|
1477
|
+
--o-range: 60deg;
|
|
1478
|
+
}
|
|
1479
|
+
.range-61 {
|
|
1480
|
+
--o-range: 61deg;
|
|
1481
|
+
}
|
|
1482
|
+
.range-62 {
|
|
1483
|
+
--o-range: 62deg;
|
|
1484
|
+
}
|
|
1485
|
+
.range-63 {
|
|
1486
|
+
--o-range: 63deg;
|
|
1487
|
+
}
|
|
1488
|
+
.range-64 {
|
|
1489
|
+
--o-range: 64deg;
|
|
1490
|
+
}
|
|
1491
|
+
.range-65 {
|
|
1492
|
+
--o-range: 65deg;
|
|
1493
|
+
}
|
|
1494
|
+
.range-66 {
|
|
1495
|
+
--o-range: 66deg;
|
|
1496
|
+
}
|
|
1497
|
+
.range-67 {
|
|
1498
|
+
--o-range: 67deg;
|
|
1499
|
+
}
|
|
1500
|
+
.range-68 {
|
|
1501
|
+
--o-range: 68deg;
|
|
1502
|
+
}
|
|
1503
|
+
.range-69 {
|
|
1504
|
+
--o-range: 69deg;
|
|
1505
|
+
}
|
|
1506
|
+
.range-70 {
|
|
1507
|
+
--o-range: 70deg;
|
|
1508
|
+
}
|
|
1509
|
+
.range-71 {
|
|
1510
|
+
--o-range: 71deg;
|
|
1511
|
+
}
|
|
1512
|
+
.range-72 {
|
|
1513
|
+
--o-range: 72deg;
|
|
1514
|
+
}
|
|
1515
|
+
.range-73 {
|
|
1516
|
+
--o-range: 73deg;
|
|
1517
|
+
}
|
|
1518
|
+
.range-74 {
|
|
1519
|
+
--o-range: 74deg;
|
|
1520
|
+
}
|
|
1521
|
+
.range-75 {
|
|
1522
|
+
--o-range: 75deg;
|
|
1523
|
+
}
|
|
1524
|
+
.range-76 {
|
|
1525
|
+
--o-range: 76deg;
|
|
1526
|
+
}
|
|
1527
|
+
.range-77 {
|
|
1528
|
+
--o-range: 77deg;
|
|
1529
|
+
}
|
|
1530
|
+
.range-78 {
|
|
1531
|
+
--o-range: 78deg;
|
|
1532
|
+
}
|
|
1533
|
+
.range-79 {
|
|
1534
|
+
--o-range: 79deg;
|
|
1535
|
+
}
|
|
1536
|
+
.range-80 {
|
|
1537
|
+
--o-range: 80deg;
|
|
1538
|
+
}
|
|
1539
|
+
.range-81 {
|
|
1540
|
+
--o-range: 81deg;
|
|
1541
|
+
}
|
|
1542
|
+
.range-82 {
|
|
1543
|
+
--o-range: 82deg;
|
|
1544
|
+
}
|
|
1545
|
+
.range-83 {
|
|
1546
|
+
--o-range: 83deg;
|
|
1547
|
+
}
|
|
1548
|
+
.range-84 {
|
|
1549
|
+
--o-range: 84deg;
|
|
1550
|
+
}
|
|
1551
|
+
.range-85 {
|
|
1552
|
+
--o-range: 85deg;
|
|
1553
|
+
}
|
|
1554
|
+
.range-86 {
|
|
1555
|
+
--o-range: 86deg;
|
|
1556
|
+
}
|
|
1557
|
+
.range-87 {
|
|
1558
|
+
--o-range: 87deg;
|
|
1559
|
+
}
|
|
1560
|
+
.range-88 {
|
|
1561
|
+
--o-range: 88deg;
|
|
1562
|
+
}
|
|
1563
|
+
.range-89 {
|
|
1564
|
+
--o-range: 89deg;
|
|
1565
|
+
}
|
|
1566
|
+
.range-90 {
|
|
1567
|
+
--o-range: 90deg;
|
|
1568
|
+
}
|
|
1569
|
+
.range-91 {
|
|
1570
|
+
--o-range: 91deg;
|
|
1571
|
+
}
|
|
1572
|
+
.range-92 {
|
|
1573
|
+
--o-range: 92deg;
|
|
1574
|
+
}
|
|
1575
|
+
.range-93 {
|
|
1576
|
+
--o-range: 93deg;
|
|
1577
|
+
}
|
|
1578
|
+
.range-94 {
|
|
1579
|
+
--o-range: 94deg;
|
|
1580
|
+
}
|
|
1581
|
+
.range-95 {
|
|
1582
|
+
--o-range: 95deg;
|
|
1583
|
+
}
|
|
1584
|
+
.range-96 {
|
|
1585
|
+
--o-range: 96deg;
|
|
1586
|
+
}
|
|
1587
|
+
.range-97 {
|
|
1588
|
+
--o-range: 97deg;
|
|
1589
|
+
}
|
|
1590
|
+
.range-98 {
|
|
1591
|
+
--o-range: 98deg;
|
|
1592
|
+
}
|
|
1593
|
+
.range-99 {
|
|
1594
|
+
--o-range: 99deg;
|
|
1595
|
+
}
|
|
1596
|
+
.range-100 {
|
|
1597
|
+
--o-range: 100deg;
|
|
1598
|
+
}
|
|
1599
|
+
.range-101 {
|
|
1600
|
+
--o-range: 101deg;
|
|
1601
|
+
}
|
|
1602
|
+
.range-102 {
|
|
1603
|
+
--o-range: 102deg;
|
|
1604
|
+
}
|
|
1605
|
+
.range-103 {
|
|
1606
|
+
--o-range: 103deg;
|
|
1607
|
+
}
|
|
1608
|
+
.range-104 {
|
|
1609
|
+
--o-range: 104deg;
|
|
1610
|
+
}
|
|
1611
|
+
.range-105 {
|
|
1612
|
+
--o-range: 105deg;
|
|
1613
|
+
}
|
|
1614
|
+
.range-106 {
|
|
1615
|
+
--o-range: 106deg;
|
|
1616
|
+
}
|
|
1617
|
+
.range-107 {
|
|
1618
|
+
--o-range: 107deg;
|
|
1619
|
+
}
|
|
1620
|
+
.range-108 {
|
|
1621
|
+
--o-range: 108deg;
|
|
1622
|
+
}
|
|
1623
|
+
.range-109 {
|
|
1624
|
+
--o-range: 109deg;
|
|
1625
|
+
}
|
|
1626
|
+
.range-110 {
|
|
1627
|
+
--o-range: 110deg;
|
|
1628
|
+
}
|
|
1629
|
+
.range-111 {
|
|
1630
|
+
--o-range: 111deg;
|
|
1631
|
+
}
|
|
1632
|
+
.range-112 {
|
|
1633
|
+
--o-range: 112deg;
|
|
1634
|
+
}
|
|
1635
|
+
.range-113 {
|
|
1636
|
+
--o-range: 113deg;
|
|
1637
|
+
}
|
|
1638
|
+
.range-114 {
|
|
1639
|
+
--o-range: 114deg;
|
|
1640
|
+
}
|
|
1641
|
+
.range-115 {
|
|
1642
|
+
--o-range: 115deg;
|
|
1643
|
+
}
|
|
1644
|
+
.range-116 {
|
|
1645
|
+
--o-range: 116deg;
|
|
1646
|
+
}
|
|
1647
|
+
.range-117 {
|
|
1648
|
+
--o-range: 117deg;
|
|
1649
|
+
}
|
|
1650
|
+
.range-118 {
|
|
1651
|
+
--o-range: 118deg;
|
|
1652
|
+
}
|
|
1653
|
+
.range-119 {
|
|
1654
|
+
--o-range: 119deg;
|
|
1655
|
+
}
|
|
1656
|
+
.range-120 {
|
|
1657
|
+
--o-range: 120deg;
|
|
1658
|
+
}
|
|
1659
|
+
.range-121 {
|
|
1660
|
+
--o-range: 121deg;
|
|
1661
|
+
}
|
|
1662
|
+
.range-122 {
|
|
1663
|
+
--o-range: 122deg;
|
|
1664
|
+
}
|
|
1665
|
+
.range-123 {
|
|
1666
|
+
--o-range: 123deg;
|
|
1667
|
+
}
|
|
1668
|
+
.range-124 {
|
|
1669
|
+
--o-range: 124deg;
|
|
1670
|
+
}
|
|
1671
|
+
.range-125 {
|
|
1672
|
+
--o-range: 125deg;
|
|
1673
|
+
}
|
|
1674
|
+
.range-126 {
|
|
1675
|
+
--o-range: 126deg;
|
|
1676
|
+
}
|
|
1677
|
+
.range-127 {
|
|
1678
|
+
--o-range: 127deg;
|
|
1679
|
+
}
|
|
1680
|
+
.range-128 {
|
|
1681
|
+
--o-range: 128deg;
|
|
1682
|
+
}
|
|
1683
|
+
.range-129 {
|
|
1684
|
+
--o-range: 129deg;
|
|
1685
|
+
}
|
|
1686
|
+
.range-130 {
|
|
1687
|
+
--o-range: 130deg;
|
|
1688
|
+
}
|
|
1689
|
+
.range-131 {
|
|
1690
|
+
--o-range: 131deg;
|
|
1691
|
+
}
|
|
1692
|
+
.range-132 {
|
|
1693
|
+
--o-range: 132deg;
|
|
1694
|
+
}
|
|
1695
|
+
.range-133 {
|
|
1696
|
+
--o-range: 133deg;
|
|
1697
|
+
}
|
|
1698
|
+
.range-134 {
|
|
1699
|
+
--o-range: 134deg;
|
|
1700
|
+
}
|
|
1701
|
+
.range-135 {
|
|
1702
|
+
--o-range: 135deg;
|
|
1703
|
+
}
|
|
1704
|
+
.range-136 {
|
|
1705
|
+
--o-range: 136deg;
|
|
1706
|
+
}
|
|
1707
|
+
.range-137 {
|
|
1708
|
+
--o-range: 137deg;
|
|
1709
|
+
}
|
|
1710
|
+
.range-138 {
|
|
1711
|
+
--o-range: 138deg;
|
|
1712
|
+
}
|
|
1713
|
+
.range-139 {
|
|
1714
|
+
--o-range: 139deg;
|
|
1715
|
+
}
|
|
1716
|
+
.range-140 {
|
|
1717
|
+
--o-range: 140deg;
|
|
1718
|
+
}
|
|
1719
|
+
.range-141 {
|
|
1720
|
+
--o-range: 141deg;
|
|
1721
|
+
}
|
|
1722
|
+
.range-142 {
|
|
1723
|
+
--o-range: 142deg;
|
|
1724
|
+
}
|
|
1725
|
+
.range-143 {
|
|
1726
|
+
--o-range: 143deg;
|
|
1727
|
+
}
|
|
1728
|
+
.range-144 {
|
|
1729
|
+
--o-range: 144deg;
|
|
1730
|
+
}
|
|
1731
|
+
.range-145 {
|
|
1732
|
+
--o-range: 145deg;
|
|
1733
|
+
}
|
|
1734
|
+
.range-146 {
|
|
1735
|
+
--o-range: 146deg;
|
|
1736
|
+
}
|
|
1737
|
+
.range-147 {
|
|
1738
|
+
--o-range: 147deg;
|
|
1739
|
+
}
|
|
1740
|
+
.range-148 {
|
|
1741
|
+
--o-range: 148deg;
|
|
1742
|
+
}
|
|
1743
|
+
.range-149 {
|
|
1744
|
+
--o-range: 149deg;
|
|
1745
|
+
}
|
|
1746
|
+
.range-150 {
|
|
1747
|
+
--o-range: 150deg;
|
|
1748
|
+
}
|
|
1749
|
+
.range-151 {
|
|
1750
|
+
--o-range: 151deg;
|
|
1751
|
+
}
|
|
1752
|
+
.range-152 {
|
|
1753
|
+
--o-range: 152deg;
|
|
1754
|
+
}
|
|
1755
|
+
.range-153 {
|
|
1756
|
+
--o-range: 153deg;
|
|
1757
|
+
}
|
|
1758
|
+
.range-154 {
|
|
1759
|
+
--o-range: 154deg;
|
|
1760
|
+
}
|
|
1761
|
+
.range-155 {
|
|
1762
|
+
--o-range: 155deg;
|
|
1763
|
+
}
|
|
1764
|
+
.range-156 {
|
|
1765
|
+
--o-range: 156deg;
|
|
1766
|
+
}
|
|
1767
|
+
.range-157 {
|
|
1768
|
+
--o-range: 157deg;
|
|
1769
|
+
}
|
|
1770
|
+
.range-158 {
|
|
1771
|
+
--o-range: 158deg;
|
|
1772
|
+
}
|
|
1773
|
+
.range-159 {
|
|
1774
|
+
--o-range: 159deg;
|
|
1775
|
+
}
|
|
1776
|
+
.range-160 {
|
|
1777
|
+
--o-range: 160deg;
|
|
1778
|
+
}
|
|
1779
|
+
.range-161 {
|
|
1780
|
+
--o-range: 161deg;
|
|
1781
|
+
}
|
|
1782
|
+
.range-162 {
|
|
1783
|
+
--o-range: 162deg;
|
|
1784
|
+
}
|
|
1785
|
+
.range-163 {
|
|
1786
|
+
--o-range: 163deg;
|
|
1787
|
+
}
|
|
1788
|
+
.range-164 {
|
|
1789
|
+
--o-range: 164deg;
|
|
1790
|
+
}
|
|
1791
|
+
.range-165 {
|
|
1792
|
+
--o-range: 165deg;
|
|
1793
|
+
}
|
|
1794
|
+
.range-166 {
|
|
1795
|
+
--o-range: 166deg;
|
|
1796
|
+
}
|
|
1797
|
+
.range-167 {
|
|
1798
|
+
--o-range: 167deg;
|
|
1799
|
+
}
|
|
1800
|
+
.range-168 {
|
|
1801
|
+
--o-range: 168deg;
|
|
1802
|
+
}
|
|
1803
|
+
.range-169 {
|
|
1804
|
+
--o-range: 169deg;
|
|
1805
|
+
}
|
|
1806
|
+
.range-170 {
|
|
1807
|
+
--o-range: 170deg;
|
|
1808
|
+
}
|
|
1809
|
+
.range-171 {
|
|
1810
|
+
--o-range: 171deg;
|
|
1811
|
+
}
|
|
1812
|
+
.range-172 {
|
|
1813
|
+
--o-range: 172deg;
|
|
1814
|
+
}
|
|
1815
|
+
.range-173 {
|
|
1816
|
+
--o-range: 173deg;
|
|
1817
|
+
}
|
|
1818
|
+
.range-174 {
|
|
1819
|
+
--o-range: 174deg;
|
|
1820
|
+
}
|
|
1821
|
+
.range-175 {
|
|
1822
|
+
--o-range: 175deg;
|
|
1823
|
+
}
|
|
1824
|
+
.range-176 {
|
|
1825
|
+
--o-range: 176deg;
|
|
1826
|
+
}
|
|
1827
|
+
.range-177 {
|
|
1828
|
+
--o-range: 177deg;
|
|
1829
|
+
}
|
|
1830
|
+
.range-178 {
|
|
1831
|
+
--o-range: 178deg;
|
|
1832
|
+
}
|
|
1833
|
+
.range-179 {
|
|
1834
|
+
--o-range: 179deg;
|
|
1835
|
+
}
|
|
1836
|
+
.range-180 {
|
|
1837
|
+
--o-range: 180deg;
|
|
1838
|
+
}
|
|
1839
|
+
.range-181 {
|
|
1840
|
+
--o-range: 181deg;
|
|
1841
|
+
}
|
|
1842
|
+
.range-182 {
|
|
1843
|
+
--o-range: 182deg;
|
|
1844
|
+
}
|
|
1845
|
+
.range-183 {
|
|
1846
|
+
--o-range: 183deg;
|
|
1847
|
+
}
|
|
1848
|
+
.range-184 {
|
|
1849
|
+
--o-range: 184deg;
|
|
1850
|
+
}
|
|
1851
|
+
.range-185 {
|
|
1852
|
+
--o-range: 185deg;
|
|
1853
|
+
}
|
|
1854
|
+
.range-186 {
|
|
1855
|
+
--o-range: 186deg;
|
|
1856
|
+
}
|
|
1857
|
+
.range-187 {
|
|
1858
|
+
--o-range: 187deg;
|
|
1859
|
+
}
|
|
1860
|
+
.range-188 {
|
|
1861
|
+
--o-range: 188deg;
|
|
1862
|
+
}
|
|
1863
|
+
.range-189 {
|
|
1864
|
+
--o-range: 189deg;
|
|
1865
|
+
}
|
|
1866
|
+
.range-190 {
|
|
1867
|
+
--o-range: 190deg;
|
|
1868
|
+
}
|
|
1869
|
+
.range-191 {
|
|
1870
|
+
--o-range: 191deg;
|
|
1871
|
+
}
|
|
1872
|
+
.range-192 {
|
|
1873
|
+
--o-range: 192deg;
|
|
1874
|
+
}
|
|
1875
|
+
.range-193 {
|
|
1876
|
+
--o-range: 193deg;
|
|
1877
|
+
}
|
|
1878
|
+
.range-194 {
|
|
1879
|
+
--o-range: 194deg;
|
|
1880
|
+
}
|
|
1881
|
+
.range-195 {
|
|
1882
|
+
--o-range: 195deg;
|
|
1883
|
+
}
|
|
1884
|
+
.range-196 {
|
|
1885
|
+
--o-range: 196deg;
|
|
1886
|
+
}
|
|
1887
|
+
.range-197 {
|
|
1888
|
+
--o-range: 197deg;
|
|
1889
|
+
}
|
|
1890
|
+
.range-198 {
|
|
1891
|
+
--o-range: 198deg;
|
|
1892
|
+
}
|
|
1893
|
+
.range-199 {
|
|
1894
|
+
--o-range: 199deg;
|
|
1895
|
+
}
|
|
1896
|
+
.range-200 {
|
|
1897
|
+
--o-range: 200deg;
|
|
1898
|
+
}
|
|
1899
|
+
.range-201 {
|
|
1900
|
+
--o-range: 201deg;
|
|
1901
|
+
}
|
|
1902
|
+
.range-202 {
|
|
1903
|
+
--o-range: 202deg;
|
|
1904
|
+
}
|
|
1905
|
+
.range-203 {
|
|
1906
|
+
--o-range: 203deg;
|
|
1907
|
+
}
|
|
1908
|
+
.range-204 {
|
|
1909
|
+
--o-range: 204deg;
|
|
1910
|
+
}
|
|
1911
|
+
.range-205 {
|
|
1912
|
+
--o-range: 205deg;
|
|
1913
|
+
}
|
|
1914
|
+
.range-206 {
|
|
1915
|
+
--o-range: 206deg;
|
|
1916
|
+
}
|
|
1917
|
+
.range-207 {
|
|
1918
|
+
--o-range: 207deg;
|
|
1919
|
+
}
|
|
1920
|
+
.range-208 {
|
|
1921
|
+
--o-range: 208deg;
|
|
1922
|
+
}
|
|
1923
|
+
.range-209 {
|
|
1924
|
+
--o-range: 209deg;
|
|
1925
|
+
}
|
|
1926
|
+
.range-210 {
|
|
1927
|
+
--o-range: 210deg;
|
|
1928
|
+
}
|
|
1929
|
+
.range-211 {
|
|
1930
|
+
--o-range: 211deg;
|
|
1931
|
+
}
|
|
1932
|
+
.range-212 {
|
|
1933
|
+
--o-range: 212deg;
|
|
1934
|
+
}
|
|
1935
|
+
.range-213 {
|
|
1936
|
+
--o-range: 213deg;
|
|
1937
|
+
}
|
|
1938
|
+
.range-214 {
|
|
1939
|
+
--o-range: 214deg;
|
|
1940
|
+
}
|
|
1941
|
+
.range-215 {
|
|
1942
|
+
--o-range: 215deg;
|
|
1943
|
+
}
|
|
1944
|
+
.range-216 {
|
|
1945
|
+
--o-range: 216deg;
|
|
1946
|
+
}
|
|
1947
|
+
.range-217 {
|
|
1948
|
+
--o-range: 217deg;
|
|
1949
|
+
}
|
|
1950
|
+
.range-218 {
|
|
1951
|
+
--o-range: 218deg;
|
|
1952
|
+
}
|
|
1953
|
+
.range-219 {
|
|
1954
|
+
--o-range: 219deg;
|
|
1955
|
+
}
|
|
1956
|
+
.range-220 {
|
|
1957
|
+
--o-range: 220deg;
|
|
1958
|
+
}
|
|
1959
|
+
.range-221 {
|
|
1960
|
+
--o-range: 221deg;
|
|
1961
|
+
}
|
|
1962
|
+
.range-222 {
|
|
1963
|
+
--o-range: 222deg;
|
|
1964
|
+
}
|
|
1965
|
+
.range-223 {
|
|
1966
|
+
--o-range: 223deg;
|
|
1967
|
+
}
|
|
1968
|
+
.range-224 {
|
|
1969
|
+
--o-range: 224deg;
|
|
1970
|
+
}
|
|
1971
|
+
.range-225 {
|
|
1972
|
+
--o-range: 225deg;
|
|
1973
|
+
}
|
|
1974
|
+
.range-226 {
|
|
1975
|
+
--o-range: 226deg;
|
|
1976
|
+
}
|
|
1977
|
+
.range-227 {
|
|
1978
|
+
--o-range: 227deg;
|
|
1979
|
+
}
|
|
1980
|
+
.range-228 {
|
|
1981
|
+
--o-range: 228deg;
|
|
1982
|
+
}
|
|
1983
|
+
.range-229 {
|
|
1984
|
+
--o-range: 229deg;
|
|
1985
|
+
}
|
|
1986
|
+
.range-230 {
|
|
1987
|
+
--o-range: 230deg;
|
|
1988
|
+
}
|
|
1989
|
+
.range-231 {
|
|
1990
|
+
--o-range: 231deg;
|
|
1991
|
+
}
|
|
1992
|
+
.range-232 {
|
|
1993
|
+
--o-range: 232deg;
|
|
1994
|
+
}
|
|
1995
|
+
.range-233 {
|
|
1996
|
+
--o-range: 233deg;
|
|
1997
|
+
}
|
|
1998
|
+
.range-234 {
|
|
1999
|
+
--o-range: 234deg;
|
|
2000
|
+
}
|
|
2001
|
+
.range-235 {
|
|
2002
|
+
--o-range: 235deg;
|
|
2003
|
+
}
|
|
2004
|
+
.range-236 {
|
|
2005
|
+
--o-range: 236deg;
|
|
2006
|
+
}
|
|
2007
|
+
.range-237 {
|
|
2008
|
+
--o-range: 237deg;
|
|
2009
|
+
}
|
|
2010
|
+
.range-238 {
|
|
2011
|
+
--o-range: 238deg;
|
|
2012
|
+
}
|
|
2013
|
+
.range-239 {
|
|
2014
|
+
--o-range: 239deg;
|
|
2015
|
+
}
|
|
2016
|
+
.range-240 {
|
|
2017
|
+
--o-range: 240deg;
|
|
2018
|
+
}
|
|
2019
|
+
.range-241 {
|
|
2020
|
+
--o-range: 241deg;
|
|
2021
|
+
}
|
|
2022
|
+
.range-242 {
|
|
2023
|
+
--o-range: 242deg;
|
|
2024
|
+
}
|
|
2025
|
+
.range-243 {
|
|
2026
|
+
--o-range: 243deg;
|
|
2027
|
+
}
|
|
2028
|
+
.range-244 {
|
|
2029
|
+
--o-range: 244deg;
|
|
2030
|
+
}
|
|
2031
|
+
.range-245 {
|
|
2032
|
+
--o-range: 245deg;
|
|
2033
|
+
}
|
|
2034
|
+
.range-246 {
|
|
2035
|
+
--o-range: 246deg;
|
|
2036
|
+
}
|
|
2037
|
+
.range-247 {
|
|
2038
|
+
--o-range: 247deg;
|
|
2039
|
+
}
|
|
2040
|
+
.range-248 {
|
|
2041
|
+
--o-range: 248deg;
|
|
2042
|
+
}
|
|
2043
|
+
.range-249 {
|
|
2044
|
+
--o-range: 249deg;
|
|
2045
|
+
}
|
|
2046
|
+
.range-250 {
|
|
2047
|
+
--o-range: 250deg;
|
|
2048
|
+
}
|
|
2049
|
+
.range-251 {
|
|
2050
|
+
--o-range: 251deg;
|
|
2051
|
+
}
|
|
2052
|
+
.range-252 {
|
|
2053
|
+
--o-range: 252deg;
|
|
2054
|
+
}
|
|
2055
|
+
.range-253 {
|
|
2056
|
+
--o-range: 253deg;
|
|
2057
|
+
}
|
|
2058
|
+
.range-254 {
|
|
2059
|
+
--o-range: 254deg;
|
|
2060
|
+
}
|
|
2061
|
+
.range-255 {
|
|
2062
|
+
--o-range: 255deg;
|
|
2063
|
+
}
|
|
2064
|
+
.range-256 {
|
|
2065
|
+
--o-range: 256deg;
|
|
2066
|
+
}
|
|
2067
|
+
.range-257 {
|
|
2068
|
+
--o-range: 257deg;
|
|
2069
|
+
}
|
|
2070
|
+
.range-258 {
|
|
2071
|
+
--o-range: 258deg;
|
|
2072
|
+
}
|
|
2073
|
+
.range-259 {
|
|
2074
|
+
--o-range: 259deg;
|
|
2075
|
+
}
|
|
2076
|
+
.range-260 {
|
|
2077
|
+
--o-range: 260deg;
|
|
2078
|
+
}
|
|
2079
|
+
.range-261 {
|
|
2080
|
+
--o-range: 261deg;
|
|
2081
|
+
}
|
|
2082
|
+
.range-262 {
|
|
2083
|
+
--o-range: 262deg;
|
|
2084
|
+
}
|
|
2085
|
+
.range-263 {
|
|
2086
|
+
--o-range: 263deg;
|
|
2087
|
+
}
|
|
2088
|
+
.range-264 {
|
|
2089
|
+
--o-range: 264deg;
|
|
2090
|
+
}
|
|
2091
|
+
.range-265 {
|
|
2092
|
+
--o-range: 265deg;
|
|
2093
|
+
}
|
|
2094
|
+
.range-266 {
|
|
2095
|
+
--o-range: 266deg;
|
|
2096
|
+
}
|
|
2097
|
+
.range-267 {
|
|
2098
|
+
--o-range: 267deg;
|
|
2099
|
+
}
|
|
2100
|
+
.range-268 {
|
|
2101
|
+
--o-range: 268deg;
|
|
2102
|
+
}
|
|
2103
|
+
.range-269 {
|
|
2104
|
+
--o-range: 269deg;
|
|
2105
|
+
}
|
|
2106
|
+
.range-270 {
|
|
2107
|
+
--o-range: 270deg;
|
|
2108
|
+
}
|
|
2109
|
+
.range-271 {
|
|
2110
|
+
--o-range: 271deg;
|
|
2111
|
+
}
|
|
2112
|
+
.range-272 {
|
|
2113
|
+
--o-range: 272deg;
|
|
2114
|
+
}
|
|
2115
|
+
.range-273 {
|
|
2116
|
+
--o-range: 273deg;
|
|
2117
|
+
}
|
|
2118
|
+
.range-274 {
|
|
2119
|
+
--o-range: 274deg;
|
|
2120
|
+
}
|
|
2121
|
+
.range-275 {
|
|
2122
|
+
--o-range: 275deg;
|
|
2123
|
+
}
|
|
2124
|
+
.range-276 {
|
|
2125
|
+
--o-range: 276deg;
|
|
2126
|
+
}
|
|
2127
|
+
.range-277 {
|
|
2128
|
+
--o-range: 277deg;
|
|
2129
|
+
}
|
|
2130
|
+
.range-278 {
|
|
2131
|
+
--o-range: 278deg;
|
|
2132
|
+
}
|
|
2133
|
+
.range-279 {
|
|
2134
|
+
--o-range: 279deg;
|
|
2135
|
+
}
|
|
2136
|
+
.range-280 {
|
|
2137
|
+
--o-range: 280deg;
|
|
2138
|
+
}
|
|
2139
|
+
.range-281 {
|
|
2140
|
+
--o-range: 281deg;
|
|
2141
|
+
}
|
|
2142
|
+
.range-282 {
|
|
2143
|
+
--o-range: 282deg;
|
|
2144
|
+
}
|
|
2145
|
+
.range-283 {
|
|
2146
|
+
--o-range: 283deg;
|
|
2147
|
+
}
|
|
2148
|
+
.range-284 {
|
|
2149
|
+
--o-range: 284deg;
|
|
2150
|
+
}
|
|
2151
|
+
.range-285 {
|
|
2152
|
+
--o-range: 285deg;
|
|
2153
|
+
}
|
|
2154
|
+
.range-286 {
|
|
2155
|
+
--o-range: 286deg;
|
|
2156
|
+
}
|
|
2157
|
+
.range-287 {
|
|
2158
|
+
--o-range: 287deg;
|
|
2159
|
+
}
|
|
2160
|
+
.range-288 {
|
|
2161
|
+
--o-range: 288deg;
|
|
2162
|
+
}
|
|
2163
|
+
.range-289 {
|
|
2164
|
+
--o-range: 289deg;
|
|
2165
|
+
}
|
|
2166
|
+
.range-290 {
|
|
2167
|
+
--o-range: 290deg;
|
|
2168
|
+
}
|
|
2169
|
+
.range-291 {
|
|
2170
|
+
--o-range: 291deg;
|
|
2171
|
+
}
|
|
2172
|
+
.range-292 {
|
|
2173
|
+
--o-range: 292deg;
|
|
2174
|
+
}
|
|
2175
|
+
.range-293 {
|
|
2176
|
+
--o-range: 293deg;
|
|
2177
|
+
}
|
|
2178
|
+
.range-294 {
|
|
2179
|
+
--o-range: 294deg;
|
|
2180
|
+
}
|
|
2181
|
+
.range-295 {
|
|
2182
|
+
--o-range: 295deg;
|
|
2183
|
+
}
|
|
2184
|
+
.range-296 {
|
|
2185
|
+
--o-range: 296deg;
|
|
2186
|
+
}
|
|
2187
|
+
.range-297 {
|
|
2188
|
+
--o-range: 297deg;
|
|
2189
|
+
}
|
|
2190
|
+
.range-298 {
|
|
2191
|
+
--o-range: 298deg;
|
|
2192
|
+
}
|
|
2193
|
+
.range-299 {
|
|
2194
|
+
--o-range: 299deg;
|
|
2195
|
+
}
|
|
2196
|
+
.range-300 {
|
|
2197
|
+
--o-range: 300deg;
|
|
2198
|
+
}
|
|
2199
|
+
.range-301 {
|
|
2200
|
+
--o-range: 301deg;
|
|
2201
|
+
}
|
|
2202
|
+
.range-302 {
|
|
2203
|
+
--o-range: 302deg;
|
|
2204
|
+
}
|
|
2205
|
+
.range-303 {
|
|
2206
|
+
--o-range: 303deg;
|
|
2207
|
+
}
|
|
2208
|
+
.range-304 {
|
|
2209
|
+
--o-range: 304deg;
|
|
2210
|
+
}
|
|
2211
|
+
.range-305 {
|
|
2212
|
+
--o-range: 305deg;
|
|
2213
|
+
}
|
|
2214
|
+
.range-306 {
|
|
2215
|
+
--o-range: 306deg;
|
|
2216
|
+
}
|
|
2217
|
+
.range-307 {
|
|
2218
|
+
--o-range: 307deg;
|
|
2219
|
+
}
|
|
2220
|
+
.range-308 {
|
|
2221
|
+
--o-range: 308deg;
|
|
2222
|
+
}
|
|
2223
|
+
.range-309 {
|
|
2224
|
+
--o-range: 309deg;
|
|
2225
|
+
}
|
|
2226
|
+
.range-310 {
|
|
2227
|
+
--o-range: 310deg;
|
|
2228
|
+
}
|
|
2229
|
+
.range-311 {
|
|
2230
|
+
--o-range: 311deg;
|
|
2231
|
+
}
|
|
2232
|
+
.range-312 {
|
|
2233
|
+
--o-range: 312deg;
|
|
2234
|
+
}
|
|
2235
|
+
.range-313 {
|
|
2236
|
+
--o-range: 313deg;
|
|
2237
|
+
}
|
|
2238
|
+
.range-314 {
|
|
2239
|
+
--o-range: 314deg;
|
|
2240
|
+
}
|
|
2241
|
+
.range-315 {
|
|
2242
|
+
--o-range: 315deg;
|
|
2243
|
+
}
|
|
2244
|
+
.range-316 {
|
|
2245
|
+
--o-range: 316deg;
|
|
2246
|
+
}
|
|
2247
|
+
.range-317 {
|
|
2248
|
+
--o-range: 317deg;
|
|
2249
|
+
}
|
|
2250
|
+
.range-318 {
|
|
2251
|
+
--o-range: 318deg;
|
|
2252
|
+
}
|
|
2253
|
+
.range-319 {
|
|
2254
|
+
--o-range: 319deg;
|
|
2255
|
+
}
|
|
2256
|
+
.range-320 {
|
|
2257
|
+
--o-range: 320deg;
|
|
2258
|
+
}
|
|
2259
|
+
.range-321 {
|
|
2260
|
+
--o-range: 321deg;
|
|
2261
|
+
}
|
|
2262
|
+
.range-322 {
|
|
2263
|
+
--o-range: 322deg;
|
|
2264
|
+
}
|
|
2265
|
+
.range-323 {
|
|
2266
|
+
--o-range: 323deg;
|
|
2267
|
+
}
|
|
2268
|
+
.range-324 {
|
|
2269
|
+
--o-range: 324deg;
|
|
2270
|
+
}
|
|
2271
|
+
.range-325 {
|
|
2272
|
+
--o-range: 325deg;
|
|
2273
|
+
}
|
|
2274
|
+
.range-326 {
|
|
2275
|
+
--o-range: 326deg;
|
|
2276
|
+
}
|
|
2277
|
+
.range-327 {
|
|
2278
|
+
--o-range: 327deg;
|
|
2279
|
+
}
|
|
2280
|
+
.range-328 {
|
|
2281
|
+
--o-range: 328deg;
|
|
2282
|
+
}
|
|
2283
|
+
.range-329 {
|
|
2284
|
+
--o-range: 329deg;
|
|
2285
|
+
}
|
|
2286
|
+
.range-330 {
|
|
2287
|
+
--o-range: 330deg;
|
|
2288
|
+
}
|
|
2289
|
+
.range-331 {
|
|
2290
|
+
--o-range: 331deg;
|
|
2291
|
+
}
|
|
2292
|
+
.range-332 {
|
|
2293
|
+
--o-range: 332deg;
|
|
2294
|
+
}
|
|
2295
|
+
.range-333 {
|
|
2296
|
+
--o-range: 333deg;
|
|
2297
|
+
}
|
|
2298
|
+
.range-334 {
|
|
2299
|
+
--o-range: 334deg;
|
|
2300
|
+
}
|
|
2301
|
+
.range-335 {
|
|
2302
|
+
--o-range: 335deg;
|
|
2303
|
+
}
|
|
2304
|
+
.range-336 {
|
|
2305
|
+
--o-range: 336deg;
|
|
2306
|
+
}
|
|
2307
|
+
.range-337 {
|
|
2308
|
+
--o-range: 337deg;
|
|
2309
|
+
}
|
|
2310
|
+
.range-338 {
|
|
2311
|
+
--o-range: 338deg;
|
|
2312
|
+
}
|
|
2313
|
+
.range-339 {
|
|
2314
|
+
--o-range: 339deg;
|
|
2315
|
+
}
|
|
2316
|
+
.range-340 {
|
|
2317
|
+
--o-range: 340deg;
|
|
2318
|
+
}
|
|
2319
|
+
.range-341 {
|
|
2320
|
+
--o-range: 341deg;
|
|
2321
|
+
}
|
|
2322
|
+
.range-342 {
|
|
2323
|
+
--o-range: 342deg;
|
|
2324
|
+
}
|
|
2325
|
+
.range-343 {
|
|
2326
|
+
--o-range: 343deg;
|
|
2327
|
+
}
|
|
2328
|
+
.range-344 {
|
|
2329
|
+
--o-range: 344deg;
|
|
2330
|
+
}
|
|
2331
|
+
.range-345 {
|
|
2332
|
+
--o-range: 345deg;
|
|
2333
|
+
}
|
|
2334
|
+
.range-346 {
|
|
2335
|
+
--o-range: 346deg;
|
|
2336
|
+
}
|
|
2337
|
+
.range-347 {
|
|
2338
|
+
--o-range: 347deg;
|
|
2339
|
+
}
|
|
2340
|
+
.range-348 {
|
|
2341
|
+
--o-range: 348deg;
|
|
2342
|
+
}
|
|
2343
|
+
.range-349 {
|
|
2344
|
+
--o-range: 349deg;
|
|
2345
|
+
}
|
|
2346
|
+
.range-350 {
|
|
2347
|
+
--o-range: 350deg;
|
|
2348
|
+
}
|
|
2349
|
+
.range-351 {
|
|
2350
|
+
--o-range: 351deg;
|
|
2351
|
+
}
|
|
2352
|
+
.range-352 {
|
|
2353
|
+
--o-range: 352deg;
|
|
2354
|
+
}
|
|
2355
|
+
.range-353 {
|
|
2356
|
+
--o-range: 353deg;
|
|
2357
|
+
}
|
|
2358
|
+
.range-354 {
|
|
2359
|
+
--o-range: 354deg;
|
|
2360
|
+
}
|
|
2361
|
+
.range-355 {
|
|
2362
|
+
--o-range: 355deg;
|
|
2363
|
+
}
|
|
2364
|
+
.range-356 {
|
|
2365
|
+
--o-range: 356deg;
|
|
2366
|
+
}
|
|
2367
|
+
.range-357 {
|
|
2368
|
+
--o-range: 357deg;
|
|
2369
|
+
}
|
|
2370
|
+
.range-358 {
|
|
2371
|
+
--o-range: 358deg;
|
|
2372
|
+
}
|
|
2373
|
+
.range-359 {
|
|
2374
|
+
--o-range: 359deg;
|
|
2375
|
+
}
|
|
2376
|
+
.range-360 {
|
|
2377
|
+
--o-range: 360deg;
|
|
2378
|
+
}
|
|
2379
|
+
.from-0 {
|
|
2380
|
+
--o-from: 0deg;
|
|
2381
|
+
}
|
|
2382
|
+
.from-1 {
|
|
2383
|
+
--o-from: 1deg;
|
|
2384
|
+
}
|
|
2385
|
+
.from-2 {
|
|
2386
|
+
--o-from: 2deg;
|
|
2387
|
+
}
|
|
2388
|
+
.from-3 {
|
|
2389
|
+
--o-from: 3deg;
|
|
2390
|
+
}
|
|
2391
|
+
.from-4 {
|
|
2392
|
+
--o-from: 4deg;
|
|
2393
|
+
}
|
|
2394
|
+
.from-5 {
|
|
2395
|
+
--o-from: 5deg;
|
|
2396
|
+
}
|
|
2397
|
+
.from-6 {
|
|
2398
|
+
--o-from: 6deg;
|
|
2399
|
+
}
|
|
2400
|
+
.from-7 {
|
|
2401
|
+
--o-from: 7deg;
|
|
2402
|
+
}
|
|
2403
|
+
.from-8 {
|
|
2404
|
+
--o-from: 8deg;
|
|
2405
|
+
}
|
|
2406
|
+
.from-9 {
|
|
2407
|
+
--o-from: 9deg;
|
|
2408
|
+
}
|
|
2409
|
+
.from-10 {
|
|
2410
|
+
--o-from: 10deg;
|
|
2411
|
+
}
|
|
2412
|
+
.from-11 {
|
|
2413
|
+
--o-from: 11deg;
|
|
2414
|
+
}
|
|
2415
|
+
.from-12 {
|
|
2416
|
+
--o-from: 12deg;
|
|
2417
|
+
}
|
|
2418
|
+
.from-13 {
|
|
2419
|
+
--o-from: 13deg;
|
|
2420
|
+
}
|
|
2421
|
+
.from-14 {
|
|
2422
|
+
--o-from: 14deg;
|
|
2423
|
+
}
|
|
2424
|
+
.from-15 {
|
|
2425
|
+
--o-from: 15deg;
|
|
2426
|
+
}
|
|
2427
|
+
.from-16 {
|
|
2428
|
+
--o-from: 16deg;
|
|
2429
|
+
}
|
|
2430
|
+
.from-17 {
|
|
2431
|
+
--o-from: 17deg;
|
|
2432
|
+
}
|
|
2433
|
+
.from-18 {
|
|
2434
|
+
--o-from: 18deg;
|
|
2435
|
+
}
|
|
2436
|
+
.from-19 {
|
|
2437
|
+
--o-from: 19deg;
|
|
2438
|
+
}
|
|
2439
|
+
.from-20 {
|
|
2440
|
+
--o-from: 20deg;
|
|
2441
|
+
}
|
|
2442
|
+
.from-21 {
|
|
2443
|
+
--o-from: 21deg;
|
|
2444
|
+
}
|
|
2445
|
+
.from-22 {
|
|
2446
|
+
--o-from: 22deg;
|
|
2447
|
+
}
|
|
2448
|
+
.from-23 {
|
|
2449
|
+
--o-from: 23deg;
|
|
2450
|
+
}
|
|
2451
|
+
.from-24 {
|
|
2452
|
+
--o-from: 24deg;
|
|
2453
|
+
}
|
|
2454
|
+
.from-25 {
|
|
2455
|
+
--o-from: 25deg;
|
|
2456
|
+
}
|
|
2457
|
+
.from-26 {
|
|
2458
|
+
--o-from: 26deg;
|
|
2459
|
+
}
|
|
2460
|
+
.from-27 {
|
|
2461
|
+
--o-from: 27deg;
|
|
2462
|
+
}
|
|
2463
|
+
.from-28 {
|
|
2464
|
+
--o-from: 28deg;
|
|
2465
|
+
}
|
|
2466
|
+
.from-29 {
|
|
2467
|
+
--o-from: 29deg;
|
|
2468
|
+
}
|
|
2469
|
+
.from-30 {
|
|
2470
|
+
--o-from: 30deg;
|
|
2471
|
+
}
|
|
2472
|
+
.from-31 {
|
|
2473
|
+
--o-from: 31deg;
|
|
2474
|
+
}
|
|
2475
|
+
.from-32 {
|
|
2476
|
+
--o-from: 32deg;
|
|
2477
|
+
}
|
|
2478
|
+
.from-33 {
|
|
2479
|
+
--o-from: 33deg;
|
|
2480
|
+
}
|
|
2481
|
+
.from-34 {
|
|
2482
|
+
--o-from: 34deg;
|
|
2483
|
+
}
|
|
2484
|
+
.from-35 {
|
|
2485
|
+
--o-from: 35deg;
|
|
2486
|
+
}
|
|
2487
|
+
.from-36 {
|
|
2488
|
+
--o-from: 36deg;
|
|
2489
|
+
}
|
|
2490
|
+
.from-37 {
|
|
2491
|
+
--o-from: 37deg;
|
|
2492
|
+
}
|
|
2493
|
+
.from-38 {
|
|
2494
|
+
--o-from: 38deg;
|
|
2495
|
+
}
|
|
2496
|
+
.from-39 {
|
|
2497
|
+
--o-from: 39deg;
|
|
2498
|
+
}
|
|
2499
|
+
.from-40 {
|
|
2500
|
+
--o-from: 40deg;
|
|
2501
|
+
}
|
|
2502
|
+
.from-41 {
|
|
2503
|
+
--o-from: 41deg;
|
|
2504
|
+
}
|
|
2505
|
+
.from-42 {
|
|
2506
|
+
--o-from: 42deg;
|
|
2507
|
+
}
|
|
2508
|
+
.from-43 {
|
|
2509
|
+
--o-from: 43deg;
|
|
2510
|
+
}
|
|
2511
|
+
.from-44 {
|
|
2512
|
+
--o-from: 44deg;
|
|
2513
|
+
}
|
|
2514
|
+
.from-45 {
|
|
2515
|
+
--o-from: 45deg;
|
|
2516
|
+
}
|
|
2517
|
+
.from-46 {
|
|
2518
|
+
--o-from: 46deg;
|
|
2519
|
+
}
|
|
2520
|
+
.from-47 {
|
|
2521
|
+
--o-from: 47deg;
|
|
2522
|
+
}
|
|
2523
|
+
.from-48 {
|
|
2524
|
+
--o-from: 48deg;
|
|
2525
|
+
}
|
|
2526
|
+
.from-49 {
|
|
2527
|
+
--o-from: 49deg;
|
|
2528
|
+
}
|
|
2529
|
+
.from-50 {
|
|
2530
|
+
--o-from: 50deg;
|
|
2531
|
+
}
|
|
2532
|
+
.from-51 {
|
|
2533
|
+
--o-from: 51deg;
|
|
2534
|
+
}
|
|
2535
|
+
.from-52 {
|
|
2536
|
+
--o-from: 52deg;
|
|
2537
|
+
}
|
|
2538
|
+
.from-53 {
|
|
2539
|
+
--o-from: 53deg;
|
|
2540
|
+
}
|
|
2541
|
+
.from-54 {
|
|
2542
|
+
--o-from: 54deg;
|
|
2543
|
+
}
|
|
2544
|
+
.from-55 {
|
|
2545
|
+
--o-from: 55deg;
|
|
2546
|
+
}
|
|
2547
|
+
.from-56 {
|
|
2548
|
+
--o-from: 56deg;
|
|
2549
|
+
}
|
|
2550
|
+
.from-57 {
|
|
2551
|
+
--o-from: 57deg;
|
|
2552
|
+
}
|
|
2553
|
+
.from-58 {
|
|
2554
|
+
--o-from: 58deg;
|
|
2555
|
+
}
|
|
2556
|
+
.from-59 {
|
|
2557
|
+
--o-from: 59deg;
|
|
2558
|
+
}
|
|
2559
|
+
.from-60 {
|
|
2560
|
+
--o-from: 60deg;
|
|
2561
|
+
}
|
|
2562
|
+
.from-61 {
|
|
2563
|
+
--o-from: 61deg;
|
|
2564
|
+
}
|
|
2565
|
+
.from-62 {
|
|
2566
|
+
--o-from: 62deg;
|
|
2567
|
+
}
|
|
2568
|
+
.from-63 {
|
|
2569
|
+
--o-from: 63deg;
|
|
2570
|
+
}
|
|
2571
|
+
.from-64 {
|
|
2572
|
+
--o-from: 64deg;
|
|
2573
|
+
}
|
|
2574
|
+
.from-65 {
|
|
2575
|
+
--o-from: 65deg;
|
|
2576
|
+
}
|
|
2577
|
+
.from-66 {
|
|
2578
|
+
--o-from: 66deg;
|
|
2579
|
+
}
|
|
2580
|
+
.from-67 {
|
|
2581
|
+
--o-from: 67deg;
|
|
2582
|
+
}
|
|
2583
|
+
.from-68 {
|
|
2584
|
+
--o-from: 68deg;
|
|
2585
|
+
}
|
|
2586
|
+
.from-69 {
|
|
2587
|
+
--o-from: 69deg;
|
|
2588
|
+
}
|
|
2589
|
+
.from-70 {
|
|
2590
|
+
--o-from: 70deg;
|
|
2591
|
+
}
|
|
2592
|
+
.from-71 {
|
|
2593
|
+
--o-from: 71deg;
|
|
2594
|
+
}
|
|
2595
|
+
.from-72 {
|
|
2596
|
+
--o-from: 72deg;
|
|
2597
|
+
}
|
|
2598
|
+
.from-73 {
|
|
2599
|
+
--o-from: 73deg;
|
|
2600
|
+
}
|
|
2601
|
+
.from-74 {
|
|
2602
|
+
--o-from: 74deg;
|
|
2603
|
+
}
|
|
2604
|
+
.from-75 {
|
|
2605
|
+
--o-from: 75deg;
|
|
2606
|
+
}
|
|
2607
|
+
.from-76 {
|
|
2608
|
+
--o-from: 76deg;
|
|
2609
|
+
}
|
|
2610
|
+
.from-77 {
|
|
2611
|
+
--o-from: 77deg;
|
|
2612
|
+
}
|
|
2613
|
+
.from-78 {
|
|
2614
|
+
--o-from: 78deg;
|
|
2615
|
+
}
|
|
2616
|
+
.from-79 {
|
|
2617
|
+
--o-from: 79deg;
|
|
2618
|
+
}
|
|
2619
|
+
.from-80 {
|
|
2620
|
+
--o-from: 80deg;
|
|
2621
|
+
}
|
|
2622
|
+
.from-81 {
|
|
2623
|
+
--o-from: 81deg;
|
|
2624
|
+
}
|
|
2625
|
+
.from-82 {
|
|
2626
|
+
--o-from: 82deg;
|
|
2627
|
+
}
|
|
2628
|
+
.from-83 {
|
|
2629
|
+
--o-from: 83deg;
|
|
2630
|
+
}
|
|
2631
|
+
.from-84 {
|
|
2632
|
+
--o-from: 84deg;
|
|
2633
|
+
}
|
|
2634
|
+
.from-85 {
|
|
2635
|
+
--o-from: 85deg;
|
|
2636
|
+
}
|
|
2637
|
+
.from-86 {
|
|
2638
|
+
--o-from: 86deg;
|
|
2639
|
+
}
|
|
2640
|
+
.from-87 {
|
|
2641
|
+
--o-from: 87deg;
|
|
2642
|
+
}
|
|
2643
|
+
.from-88 {
|
|
2644
|
+
--o-from: 88deg;
|
|
2645
|
+
}
|
|
2646
|
+
.from-89 {
|
|
2647
|
+
--o-from: 89deg;
|
|
2648
|
+
}
|
|
2649
|
+
.from-90 {
|
|
2650
|
+
--o-from: 90deg;
|
|
2651
|
+
}
|
|
2652
|
+
.from-91 {
|
|
2653
|
+
--o-from: 91deg;
|
|
2654
|
+
}
|
|
2655
|
+
.from-92 {
|
|
2656
|
+
--o-from: 92deg;
|
|
2657
|
+
}
|
|
2658
|
+
.from-93 {
|
|
2659
|
+
--o-from: 93deg;
|
|
2660
|
+
}
|
|
2661
|
+
.from-94 {
|
|
2662
|
+
--o-from: 94deg;
|
|
2663
|
+
}
|
|
2664
|
+
.from-95 {
|
|
2665
|
+
--o-from: 95deg;
|
|
2666
|
+
}
|
|
2667
|
+
.from-96 {
|
|
2668
|
+
--o-from: 96deg;
|
|
2669
|
+
}
|
|
2670
|
+
.from-97 {
|
|
2671
|
+
--o-from: 97deg;
|
|
2672
|
+
}
|
|
2673
|
+
.from-98 {
|
|
2674
|
+
--o-from: 98deg;
|
|
2675
|
+
}
|
|
2676
|
+
.from-99 {
|
|
2677
|
+
--o-from: 99deg;
|
|
2678
|
+
}
|
|
2679
|
+
.from-100 {
|
|
2680
|
+
--o-from: 100deg;
|
|
2681
|
+
}
|
|
2682
|
+
.from-101 {
|
|
2683
|
+
--o-from: 101deg;
|
|
2684
|
+
}
|
|
2685
|
+
.from-102 {
|
|
2686
|
+
--o-from: 102deg;
|
|
2687
|
+
}
|
|
2688
|
+
.from-103 {
|
|
2689
|
+
--o-from: 103deg;
|
|
2690
|
+
}
|
|
2691
|
+
.from-104 {
|
|
2692
|
+
--o-from: 104deg;
|
|
2693
|
+
}
|
|
2694
|
+
.from-105 {
|
|
2695
|
+
--o-from: 105deg;
|
|
2696
|
+
}
|
|
2697
|
+
.from-106 {
|
|
2698
|
+
--o-from: 106deg;
|
|
2699
|
+
}
|
|
2700
|
+
.from-107 {
|
|
2701
|
+
--o-from: 107deg;
|
|
2702
|
+
}
|
|
2703
|
+
.from-108 {
|
|
2704
|
+
--o-from: 108deg;
|
|
2705
|
+
}
|
|
2706
|
+
.from-109 {
|
|
2707
|
+
--o-from: 109deg;
|
|
2708
|
+
}
|
|
2709
|
+
.from-110 {
|
|
2710
|
+
--o-from: 110deg;
|
|
2711
|
+
}
|
|
2712
|
+
.from-111 {
|
|
2713
|
+
--o-from: 111deg;
|
|
2714
|
+
}
|
|
2715
|
+
.from-112 {
|
|
2716
|
+
--o-from: 112deg;
|
|
2717
|
+
}
|
|
2718
|
+
.from-113 {
|
|
2719
|
+
--o-from: 113deg;
|
|
2720
|
+
}
|
|
2721
|
+
.from-114 {
|
|
2722
|
+
--o-from: 114deg;
|
|
2723
|
+
}
|
|
2724
|
+
.from-115 {
|
|
2725
|
+
--o-from: 115deg;
|
|
2726
|
+
}
|
|
2727
|
+
.from-116 {
|
|
2728
|
+
--o-from: 116deg;
|
|
2729
|
+
}
|
|
2730
|
+
.from-117 {
|
|
2731
|
+
--o-from: 117deg;
|
|
2732
|
+
}
|
|
2733
|
+
.from-118 {
|
|
2734
|
+
--o-from: 118deg;
|
|
2735
|
+
}
|
|
2736
|
+
.from-119 {
|
|
2737
|
+
--o-from: 119deg;
|
|
2738
|
+
}
|
|
2739
|
+
.from-120 {
|
|
2740
|
+
--o-from: 120deg;
|
|
2741
|
+
}
|
|
2742
|
+
.from-121 {
|
|
2743
|
+
--o-from: 121deg;
|
|
2744
|
+
}
|
|
2745
|
+
.from-122 {
|
|
2746
|
+
--o-from: 122deg;
|
|
2747
|
+
}
|
|
2748
|
+
.from-123 {
|
|
2749
|
+
--o-from: 123deg;
|
|
2750
|
+
}
|
|
2751
|
+
.from-124 {
|
|
2752
|
+
--o-from: 124deg;
|
|
2753
|
+
}
|
|
2754
|
+
.from-125 {
|
|
2755
|
+
--o-from: 125deg;
|
|
2756
|
+
}
|
|
2757
|
+
.from-126 {
|
|
2758
|
+
--o-from: 126deg;
|
|
2759
|
+
}
|
|
2760
|
+
.from-127 {
|
|
2761
|
+
--o-from: 127deg;
|
|
2762
|
+
}
|
|
2763
|
+
.from-128 {
|
|
2764
|
+
--o-from: 128deg;
|
|
2765
|
+
}
|
|
2766
|
+
.from-129 {
|
|
2767
|
+
--o-from: 129deg;
|
|
2768
|
+
}
|
|
2769
|
+
.from-130 {
|
|
2770
|
+
--o-from: 130deg;
|
|
2771
|
+
}
|
|
2772
|
+
.from-131 {
|
|
2773
|
+
--o-from: 131deg;
|
|
2774
|
+
}
|
|
2775
|
+
.from-132 {
|
|
2776
|
+
--o-from: 132deg;
|
|
2777
|
+
}
|
|
2778
|
+
.from-133 {
|
|
2779
|
+
--o-from: 133deg;
|
|
2780
|
+
}
|
|
2781
|
+
.from-134 {
|
|
2782
|
+
--o-from: 134deg;
|
|
2783
|
+
}
|
|
2784
|
+
.from-135 {
|
|
2785
|
+
--o-from: 135deg;
|
|
2786
|
+
}
|
|
2787
|
+
.from-136 {
|
|
2788
|
+
--o-from: 136deg;
|
|
2789
|
+
}
|
|
2790
|
+
.from-137 {
|
|
2791
|
+
--o-from: 137deg;
|
|
2792
|
+
}
|
|
2793
|
+
.from-138 {
|
|
2794
|
+
--o-from: 138deg;
|
|
2795
|
+
}
|
|
2796
|
+
.from-139 {
|
|
2797
|
+
--o-from: 139deg;
|
|
2798
|
+
}
|
|
2799
|
+
.from-140 {
|
|
2800
|
+
--o-from: 140deg;
|
|
2801
|
+
}
|
|
2802
|
+
.from-141 {
|
|
2803
|
+
--o-from: 141deg;
|
|
2804
|
+
}
|
|
2805
|
+
.from-142 {
|
|
2806
|
+
--o-from: 142deg;
|
|
2807
|
+
}
|
|
2808
|
+
.from-143 {
|
|
2809
|
+
--o-from: 143deg;
|
|
2810
|
+
}
|
|
2811
|
+
.from-144 {
|
|
2812
|
+
--o-from: 144deg;
|
|
2813
|
+
}
|
|
2814
|
+
.from-145 {
|
|
2815
|
+
--o-from: 145deg;
|
|
2816
|
+
}
|
|
2817
|
+
.from-146 {
|
|
2818
|
+
--o-from: 146deg;
|
|
2819
|
+
}
|
|
2820
|
+
.from-147 {
|
|
2821
|
+
--o-from: 147deg;
|
|
2822
|
+
}
|
|
2823
|
+
.from-148 {
|
|
2824
|
+
--o-from: 148deg;
|
|
2825
|
+
}
|
|
2826
|
+
.from-149 {
|
|
2827
|
+
--o-from: 149deg;
|
|
2828
|
+
}
|
|
2829
|
+
.from-150 {
|
|
2830
|
+
--o-from: 150deg;
|
|
2831
|
+
}
|
|
2832
|
+
.from-151 {
|
|
2833
|
+
--o-from: 151deg;
|
|
2834
|
+
}
|
|
2835
|
+
.from-152 {
|
|
2836
|
+
--o-from: 152deg;
|
|
2837
|
+
}
|
|
2838
|
+
.from-153 {
|
|
2839
|
+
--o-from: 153deg;
|
|
2840
|
+
}
|
|
2841
|
+
.from-154 {
|
|
2842
|
+
--o-from: 154deg;
|
|
2843
|
+
}
|
|
2844
|
+
.from-155 {
|
|
2845
|
+
--o-from: 155deg;
|
|
2846
|
+
}
|
|
2847
|
+
.from-156 {
|
|
2848
|
+
--o-from: 156deg;
|
|
2849
|
+
}
|
|
2850
|
+
.from-157 {
|
|
2851
|
+
--o-from: 157deg;
|
|
2852
|
+
}
|
|
2853
|
+
.from-158 {
|
|
2854
|
+
--o-from: 158deg;
|
|
2855
|
+
}
|
|
2856
|
+
.from-159 {
|
|
2857
|
+
--o-from: 159deg;
|
|
2858
|
+
}
|
|
2859
|
+
.from-160 {
|
|
2860
|
+
--o-from: 160deg;
|
|
2861
|
+
}
|
|
2862
|
+
.from-161 {
|
|
2863
|
+
--o-from: 161deg;
|
|
2864
|
+
}
|
|
2865
|
+
.from-162 {
|
|
2866
|
+
--o-from: 162deg;
|
|
2867
|
+
}
|
|
2868
|
+
.from-163 {
|
|
2869
|
+
--o-from: 163deg;
|
|
2870
|
+
}
|
|
2871
|
+
.from-164 {
|
|
2872
|
+
--o-from: 164deg;
|
|
2873
|
+
}
|
|
2874
|
+
.from-165 {
|
|
2875
|
+
--o-from: 165deg;
|
|
2876
|
+
}
|
|
2877
|
+
.from-166 {
|
|
2878
|
+
--o-from: 166deg;
|
|
2879
|
+
}
|
|
2880
|
+
.from-167 {
|
|
2881
|
+
--o-from: 167deg;
|
|
2882
|
+
}
|
|
2883
|
+
.from-168 {
|
|
2884
|
+
--o-from: 168deg;
|
|
2885
|
+
}
|
|
2886
|
+
.from-169 {
|
|
2887
|
+
--o-from: 169deg;
|
|
2888
|
+
}
|
|
2889
|
+
.from-170 {
|
|
2890
|
+
--o-from: 170deg;
|
|
2891
|
+
}
|
|
2892
|
+
.from-171 {
|
|
2893
|
+
--o-from: 171deg;
|
|
2894
|
+
}
|
|
2895
|
+
.from-172 {
|
|
2896
|
+
--o-from: 172deg;
|
|
2897
|
+
}
|
|
2898
|
+
.from-173 {
|
|
2899
|
+
--o-from: 173deg;
|
|
2900
|
+
}
|
|
2901
|
+
.from-174 {
|
|
2902
|
+
--o-from: 174deg;
|
|
2903
|
+
}
|
|
2904
|
+
.from-175 {
|
|
2905
|
+
--o-from: 175deg;
|
|
2906
|
+
}
|
|
2907
|
+
.from-176 {
|
|
2908
|
+
--o-from: 176deg;
|
|
2909
|
+
}
|
|
2910
|
+
.from-177 {
|
|
2911
|
+
--o-from: 177deg;
|
|
2912
|
+
}
|
|
2913
|
+
.from-178 {
|
|
2914
|
+
--o-from: 178deg;
|
|
2915
|
+
}
|
|
2916
|
+
.from-179 {
|
|
2917
|
+
--o-from: 179deg;
|
|
2918
|
+
}
|
|
2919
|
+
.from-180 {
|
|
2920
|
+
--o-from: 180deg;
|
|
2921
|
+
}
|
|
2922
|
+
.from-181 {
|
|
2923
|
+
--o-from: 181deg;
|
|
2924
|
+
}
|
|
2925
|
+
.from-182 {
|
|
2926
|
+
--o-from: 182deg;
|
|
2927
|
+
}
|
|
2928
|
+
.from-183 {
|
|
2929
|
+
--o-from: 183deg;
|
|
2930
|
+
}
|
|
2931
|
+
.from-184 {
|
|
2932
|
+
--o-from: 184deg;
|
|
2933
|
+
}
|
|
2934
|
+
.from-185 {
|
|
2935
|
+
--o-from: 185deg;
|
|
2936
|
+
}
|
|
2937
|
+
.from-186 {
|
|
2938
|
+
--o-from: 186deg;
|
|
2939
|
+
}
|
|
2940
|
+
.from-187 {
|
|
2941
|
+
--o-from: 187deg;
|
|
2942
|
+
}
|
|
2943
|
+
.from-188 {
|
|
2944
|
+
--o-from: 188deg;
|
|
2945
|
+
}
|
|
2946
|
+
.from-189 {
|
|
2947
|
+
--o-from: 189deg;
|
|
2948
|
+
}
|
|
2949
|
+
.from-190 {
|
|
2950
|
+
--o-from: 190deg;
|
|
2951
|
+
}
|
|
2952
|
+
.from-191 {
|
|
2953
|
+
--o-from: 191deg;
|
|
2954
|
+
}
|
|
2955
|
+
.from-192 {
|
|
2956
|
+
--o-from: 192deg;
|
|
2957
|
+
}
|
|
2958
|
+
.from-193 {
|
|
2959
|
+
--o-from: 193deg;
|
|
2960
|
+
}
|
|
2961
|
+
.from-194 {
|
|
2962
|
+
--o-from: 194deg;
|
|
2963
|
+
}
|
|
2964
|
+
.from-195 {
|
|
2965
|
+
--o-from: 195deg;
|
|
2966
|
+
}
|
|
2967
|
+
.from-196 {
|
|
2968
|
+
--o-from: 196deg;
|
|
2969
|
+
}
|
|
2970
|
+
.from-197 {
|
|
2971
|
+
--o-from: 197deg;
|
|
2972
|
+
}
|
|
2973
|
+
.from-198 {
|
|
2974
|
+
--o-from: 198deg;
|
|
2975
|
+
}
|
|
2976
|
+
.from-199 {
|
|
2977
|
+
--o-from: 199deg;
|
|
2978
|
+
}
|
|
2979
|
+
.from-200 {
|
|
2980
|
+
--o-from: 200deg;
|
|
2981
|
+
}
|
|
2982
|
+
.from-201 {
|
|
2983
|
+
--o-from: 201deg;
|
|
2984
|
+
}
|
|
2985
|
+
.from-202 {
|
|
2986
|
+
--o-from: 202deg;
|
|
2987
|
+
}
|
|
2988
|
+
.from-203 {
|
|
2989
|
+
--o-from: 203deg;
|
|
2990
|
+
}
|
|
2991
|
+
.from-204 {
|
|
2992
|
+
--o-from: 204deg;
|
|
2993
|
+
}
|
|
2994
|
+
.from-205 {
|
|
2995
|
+
--o-from: 205deg;
|
|
2996
|
+
}
|
|
2997
|
+
.from-206 {
|
|
2998
|
+
--o-from: 206deg;
|
|
2999
|
+
}
|
|
3000
|
+
.from-207 {
|
|
3001
|
+
--o-from: 207deg;
|
|
3002
|
+
}
|
|
3003
|
+
.from-208 {
|
|
3004
|
+
--o-from: 208deg;
|
|
3005
|
+
}
|
|
3006
|
+
.from-209 {
|
|
3007
|
+
--o-from: 209deg;
|
|
3008
|
+
}
|
|
3009
|
+
.from-210 {
|
|
3010
|
+
--o-from: 210deg;
|
|
3011
|
+
}
|
|
3012
|
+
.from-211 {
|
|
3013
|
+
--o-from: 211deg;
|
|
3014
|
+
}
|
|
3015
|
+
.from-212 {
|
|
3016
|
+
--o-from: 212deg;
|
|
3017
|
+
}
|
|
3018
|
+
.from-213 {
|
|
3019
|
+
--o-from: 213deg;
|
|
3020
|
+
}
|
|
3021
|
+
.from-214 {
|
|
3022
|
+
--o-from: 214deg;
|
|
3023
|
+
}
|
|
3024
|
+
.from-215 {
|
|
3025
|
+
--o-from: 215deg;
|
|
3026
|
+
}
|
|
3027
|
+
.from-216 {
|
|
3028
|
+
--o-from: 216deg;
|
|
3029
|
+
}
|
|
3030
|
+
.from-217 {
|
|
3031
|
+
--o-from: 217deg;
|
|
3032
|
+
}
|
|
3033
|
+
.from-218 {
|
|
3034
|
+
--o-from: 218deg;
|
|
3035
|
+
}
|
|
3036
|
+
.from-219 {
|
|
3037
|
+
--o-from: 219deg;
|
|
3038
|
+
}
|
|
3039
|
+
.from-220 {
|
|
3040
|
+
--o-from: 220deg;
|
|
3041
|
+
}
|
|
3042
|
+
.from-221 {
|
|
3043
|
+
--o-from: 221deg;
|
|
3044
|
+
}
|
|
3045
|
+
.from-222 {
|
|
3046
|
+
--o-from: 222deg;
|
|
3047
|
+
}
|
|
3048
|
+
.from-223 {
|
|
3049
|
+
--o-from: 223deg;
|
|
3050
|
+
}
|
|
3051
|
+
.from-224 {
|
|
3052
|
+
--o-from: 224deg;
|
|
3053
|
+
}
|
|
3054
|
+
.from-225 {
|
|
3055
|
+
--o-from: 225deg;
|
|
3056
|
+
}
|
|
3057
|
+
.from-226 {
|
|
3058
|
+
--o-from: 226deg;
|
|
3059
|
+
}
|
|
3060
|
+
.from-227 {
|
|
3061
|
+
--o-from: 227deg;
|
|
3062
|
+
}
|
|
3063
|
+
.from-228 {
|
|
3064
|
+
--o-from: 228deg;
|
|
3065
|
+
}
|
|
3066
|
+
.from-229 {
|
|
3067
|
+
--o-from: 229deg;
|
|
3068
|
+
}
|
|
3069
|
+
.from-230 {
|
|
3070
|
+
--o-from: 230deg;
|
|
3071
|
+
}
|
|
3072
|
+
.from-231 {
|
|
3073
|
+
--o-from: 231deg;
|
|
3074
|
+
}
|
|
3075
|
+
.from-232 {
|
|
3076
|
+
--o-from: 232deg;
|
|
3077
|
+
}
|
|
3078
|
+
.from-233 {
|
|
3079
|
+
--o-from: 233deg;
|
|
3080
|
+
}
|
|
3081
|
+
.from-234 {
|
|
3082
|
+
--o-from: 234deg;
|
|
3083
|
+
}
|
|
3084
|
+
.from-235 {
|
|
3085
|
+
--o-from: 235deg;
|
|
3086
|
+
}
|
|
3087
|
+
.from-236 {
|
|
3088
|
+
--o-from: 236deg;
|
|
3089
|
+
}
|
|
3090
|
+
.from-237 {
|
|
3091
|
+
--o-from: 237deg;
|
|
3092
|
+
}
|
|
3093
|
+
.from-238 {
|
|
3094
|
+
--o-from: 238deg;
|
|
3095
|
+
}
|
|
3096
|
+
.from-239 {
|
|
3097
|
+
--o-from: 239deg;
|
|
3098
|
+
}
|
|
3099
|
+
.from-240 {
|
|
3100
|
+
--o-from: 240deg;
|
|
3101
|
+
}
|
|
3102
|
+
.from-241 {
|
|
3103
|
+
--o-from: 241deg;
|
|
3104
|
+
}
|
|
3105
|
+
.from-242 {
|
|
3106
|
+
--o-from: 242deg;
|
|
3107
|
+
}
|
|
3108
|
+
.from-243 {
|
|
3109
|
+
--o-from: 243deg;
|
|
3110
|
+
}
|
|
3111
|
+
.from-244 {
|
|
3112
|
+
--o-from: 244deg;
|
|
3113
|
+
}
|
|
3114
|
+
.from-245 {
|
|
3115
|
+
--o-from: 245deg;
|
|
3116
|
+
}
|
|
3117
|
+
.from-246 {
|
|
3118
|
+
--o-from: 246deg;
|
|
3119
|
+
}
|
|
3120
|
+
.from-247 {
|
|
3121
|
+
--o-from: 247deg;
|
|
3122
|
+
}
|
|
3123
|
+
.from-248 {
|
|
3124
|
+
--o-from: 248deg;
|
|
3125
|
+
}
|
|
3126
|
+
.from-249 {
|
|
3127
|
+
--o-from: 249deg;
|
|
3128
|
+
}
|
|
3129
|
+
.from-250 {
|
|
3130
|
+
--o-from: 250deg;
|
|
3131
|
+
}
|
|
3132
|
+
.from-251 {
|
|
3133
|
+
--o-from: 251deg;
|
|
3134
|
+
}
|
|
3135
|
+
.from-252 {
|
|
3136
|
+
--o-from: 252deg;
|
|
3137
|
+
}
|
|
3138
|
+
.from-253 {
|
|
3139
|
+
--o-from: 253deg;
|
|
3140
|
+
}
|
|
3141
|
+
.from-254 {
|
|
3142
|
+
--o-from: 254deg;
|
|
3143
|
+
}
|
|
3144
|
+
.from-255 {
|
|
3145
|
+
--o-from: 255deg;
|
|
3146
|
+
}
|
|
3147
|
+
.from-256 {
|
|
3148
|
+
--o-from: 256deg;
|
|
3149
|
+
}
|
|
3150
|
+
.from-257 {
|
|
3151
|
+
--o-from: 257deg;
|
|
3152
|
+
}
|
|
3153
|
+
.from-258 {
|
|
3154
|
+
--o-from: 258deg;
|
|
3155
|
+
}
|
|
3156
|
+
.from-259 {
|
|
3157
|
+
--o-from: 259deg;
|
|
3158
|
+
}
|
|
3159
|
+
.from-260 {
|
|
3160
|
+
--o-from: 260deg;
|
|
3161
|
+
}
|
|
3162
|
+
.from-261 {
|
|
3163
|
+
--o-from: 261deg;
|
|
3164
|
+
}
|
|
3165
|
+
.from-262 {
|
|
3166
|
+
--o-from: 262deg;
|
|
3167
|
+
}
|
|
3168
|
+
.from-263 {
|
|
3169
|
+
--o-from: 263deg;
|
|
3170
|
+
}
|
|
3171
|
+
.from-264 {
|
|
3172
|
+
--o-from: 264deg;
|
|
3173
|
+
}
|
|
3174
|
+
.from-265 {
|
|
3175
|
+
--o-from: 265deg;
|
|
3176
|
+
}
|
|
3177
|
+
.from-266 {
|
|
3178
|
+
--o-from: 266deg;
|
|
3179
|
+
}
|
|
3180
|
+
.from-267 {
|
|
3181
|
+
--o-from: 267deg;
|
|
3182
|
+
}
|
|
3183
|
+
.from-268 {
|
|
3184
|
+
--o-from: 268deg;
|
|
3185
|
+
}
|
|
3186
|
+
.from-269 {
|
|
3187
|
+
--o-from: 269deg;
|
|
3188
|
+
}
|
|
3189
|
+
.from-270 {
|
|
3190
|
+
--o-from: 270deg;
|
|
3191
|
+
}
|
|
3192
|
+
.from-271 {
|
|
3193
|
+
--o-from: 271deg;
|
|
3194
|
+
}
|
|
3195
|
+
.from-272 {
|
|
3196
|
+
--o-from: 272deg;
|
|
3197
|
+
}
|
|
3198
|
+
.from-273 {
|
|
3199
|
+
--o-from: 273deg;
|
|
3200
|
+
}
|
|
3201
|
+
.from-274 {
|
|
3202
|
+
--o-from: 274deg;
|
|
3203
|
+
}
|
|
3204
|
+
.from-275 {
|
|
3205
|
+
--o-from: 275deg;
|
|
3206
|
+
}
|
|
3207
|
+
.from-276 {
|
|
3208
|
+
--o-from: 276deg;
|
|
3209
|
+
}
|
|
3210
|
+
.from-277 {
|
|
3211
|
+
--o-from: 277deg;
|
|
3212
|
+
}
|
|
3213
|
+
.from-278 {
|
|
3214
|
+
--o-from: 278deg;
|
|
3215
|
+
}
|
|
3216
|
+
.from-279 {
|
|
3217
|
+
--o-from: 279deg;
|
|
3218
|
+
}
|
|
3219
|
+
.from-280 {
|
|
3220
|
+
--o-from: 280deg;
|
|
3221
|
+
}
|
|
3222
|
+
.from-281 {
|
|
3223
|
+
--o-from: 281deg;
|
|
3224
|
+
}
|
|
3225
|
+
.from-282 {
|
|
3226
|
+
--o-from: 282deg;
|
|
3227
|
+
}
|
|
3228
|
+
.from-283 {
|
|
3229
|
+
--o-from: 283deg;
|
|
3230
|
+
}
|
|
3231
|
+
.from-284 {
|
|
3232
|
+
--o-from: 284deg;
|
|
3233
|
+
}
|
|
3234
|
+
.from-285 {
|
|
3235
|
+
--o-from: 285deg;
|
|
3236
|
+
}
|
|
3237
|
+
.from-286 {
|
|
3238
|
+
--o-from: 286deg;
|
|
3239
|
+
}
|
|
3240
|
+
.from-287 {
|
|
3241
|
+
--o-from: 287deg;
|
|
3242
|
+
}
|
|
3243
|
+
.from-288 {
|
|
3244
|
+
--o-from: 288deg;
|
|
3245
|
+
}
|
|
3246
|
+
.from-289 {
|
|
3247
|
+
--o-from: 289deg;
|
|
3248
|
+
}
|
|
3249
|
+
.from-290 {
|
|
3250
|
+
--o-from: 290deg;
|
|
3251
|
+
}
|
|
3252
|
+
.from-291 {
|
|
3253
|
+
--o-from: 291deg;
|
|
3254
|
+
}
|
|
3255
|
+
.from-292 {
|
|
3256
|
+
--o-from: 292deg;
|
|
3257
|
+
}
|
|
3258
|
+
.from-293 {
|
|
3259
|
+
--o-from: 293deg;
|
|
3260
|
+
}
|
|
3261
|
+
.from-294 {
|
|
3262
|
+
--o-from: 294deg;
|
|
3263
|
+
}
|
|
3264
|
+
.from-295 {
|
|
3265
|
+
--o-from: 295deg;
|
|
3266
|
+
}
|
|
3267
|
+
.from-296 {
|
|
3268
|
+
--o-from: 296deg;
|
|
3269
|
+
}
|
|
3270
|
+
.from-297 {
|
|
3271
|
+
--o-from: 297deg;
|
|
3272
|
+
}
|
|
3273
|
+
.from-298 {
|
|
3274
|
+
--o-from: 298deg;
|
|
3275
|
+
}
|
|
3276
|
+
.from-299 {
|
|
3277
|
+
--o-from: 299deg;
|
|
3278
|
+
}
|
|
3279
|
+
.from-300 {
|
|
3280
|
+
--o-from: 300deg;
|
|
3281
|
+
}
|
|
3282
|
+
.from-301 {
|
|
3283
|
+
--o-from: 301deg;
|
|
3284
|
+
}
|
|
3285
|
+
.from-302 {
|
|
3286
|
+
--o-from: 302deg;
|
|
3287
|
+
}
|
|
3288
|
+
.from-303 {
|
|
3289
|
+
--o-from: 303deg;
|
|
3290
|
+
}
|
|
3291
|
+
.from-304 {
|
|
3292
|
+
--o-from: 304deg;
|
|
3293
|
+
}
|
|
3294
|
+
.from-305 {
|
|
3295
|
+
--o-from: 305deg;
|
|
3296
|
+
}
|
|
3297
|
+
.from-306 {
|
|
3298
|
+
--o-from: 306deg;
|
|
3299
|
+
}
|
|
3300
|
+
.from-307 {
|
|
3301
|
+
--o-from: 307deg;
|
|
3302
|
+
}
|
|
3303
|
+
.from-308 {
|
|
3304
|
+
--o-from: 308deg;
|
|
3305
|
+
}
|
|
3306
|
+
.from-309 {
|
|
3307
|
+
--o-from: 309deg;
|
|
3308
|
+
}
|
|
3309
|
+
.from-310 {
|
|
3310
|
+
--o-from: 310deg;
|
|
3311
|
+
}
|
|
3312
|
+
.from-311 {
|
|
3313
|
+
--o-from: 311deg;
|
|
3314
|
+
}
|
|
3315
|
+
.from-312 {
|
|
3316
|
+
--o-from: 312deg;
|
|
3317
|
+
}
|
|
3318
|
+
.from-313 {
|
|
3319
|
+
--o-from: 313deg;
|
|
3320
|
+
}
|
|
3321
|
+
.from-314 {
|
|
3322
|
+
--o-from: 314deg;
|
|
3323
|
+
}
|
|
3324
|
+
.from-315 {
|
|
3325
|
+
--o-from: 315deg;
|
|
3326
|
+
}
|
|
3327
|
+
.from-316 {
|
|
3328
|
+
--o-from: 316deg;
|
|
3329
|
+
}
|
|
3330
|
+
.from-317 {
|
|
3331
|
+
--o-from: 317deg;
|
|
3332
|
+
}
|
|
3333
|
+
.from-318 {
|
|
3334
|
+
--o-from: 318deg;
|
|
3335
|
+
}
|
|
3336
|
+
.from-319 {
|
|
3337
|
+
--o-from: 319deg;
|
|
3338
|
+
}
|
|
3339
|
+
.from-320 {
|
|
3340
|
+
--o-from: 320deg;
|
|
3341
|
+
}
|
|
3342
|
+
.from-321 {
|
|
3343
|
+
--o-from: 321deg;
|
|
3344
|
+
}
|
|
3345
|
+
.from-322 {
|
|
3346
|
+
--o-from: 322deg;
|
|
3347
|
+
}
|
|
3348
|
+
.from-323 {
|
|
3349
|
+
--o-from: 323deg;
|
|
3350
|
+
}
|
|
3351
|
+
.from-324 {
|
|
3352
|
+
--o-from: 324deg;
|
|
3353
|
+
}
|
|
3354
|
+
.from-325 {
|
|
3355
|
+
--o-from: 325deg;
|
|
3356
|
+
}
|
|
3357
|
+
.from-326 {
|
|
3358
|
+
--o-from: 326deg;
|
|
3359
|
+
}
|
|
3360
|
+
.from-327 {
|
|
3361
|
+
--o-from: 327deg;
|
|
3362
|
+
}
|
|
3363
|
+
.from-328 {
|
|
3364
|
+
--o-from: 328deg;
|
|
3365
|
+
}
|
|
3366
|
+
.from-329 {
|
|
3367
|
+
--o-from: 329deg;
|
|
3368
|
+
}
|
|
3369
|
+
.from-330 {
|
|
3370
|
+
--o-from: 330deg;
|
|
3371
|
+
}
|
|
3372
|
+
.from-331 {
|
|
3373
|
+
--o-from: 331deg;
|
|
3374
|
+
}
|
|
3375
|
+
.from-332 {
|
|
3376
|
+
--o-from: 332deg;
|
|
3377
|
+
}
|
|
3378
|
+
.from-333 {
|
|
3379
|
+
--o-from: 333deg;
|
|
3380
|
+
}
|
|
3381
|
+
.from-334 {
|
|
3382
|
+
--o-from: 334deg;
|
|
3383
|
+
}
|
|
3384
|
+
.from-335 {
|
|
3385
|
+
--o-from: 335deg;
|
|
3386
|
+
}
|
|
3387
|
+
.from-336 {
|
|
3388
|
+
--o-from: 336deg;
|
|
3389
|
+
}
|
|
3390
|
+
.from-337 {
|
|
3391
|
+
--o-from: 337deg;
|
|
3392
|
+
}
|
|
3393
|
+
.from-338 {
|
|
3394
|
+
--o-from: 338deg;
|
|
3395
|
+
}
|
|
3396
|
+
.from-339 {
|
|
3397
|
+
--o-from: 339deg;
|
|
3398
|
+
}
|
|
3399
|
+
.from-340 {
|
|
3400
|
+
--o-from: 340deg;
|
|
3401
|
+
}
|
|
3402
|
+
.from-341 {
|
|
3403
|
+
--o-from: 341deg;
|
|
3404
|
+
}
|
|
3405
|
+
.from-342 {
|
|
3406
|
+
--o-from: 342deg;
|
|
3407
|
+
}
|
|
3408
|
+
.from-343 {
|
|
3409
|
+
--o-from: 343deg;
|
|
3410
|
+
}
|
|
3411
|
+
.from-344 {
|
|
3412
|
+
--o-from: 344deg;
|
|
3413
|
+
}
|
|
3414
|
+
.from-345 {
|
|
3415
|
+
--o-from: 345deg;
|
|
3416
|
+
}
|
|
3417
|
+
.from-346 {
|
|
3418
|
+
--o-from: 346deg;
|
|
3419
|
+
}
|
|
3420
|
+
.from-347 {
|
|
3421
|
+
--o-from: 347deg;
|
|
3422
|
+
}
|
|
3423
|
+
.from-348 {
|
|
3424
|
+
--o-from: 348deg;
|
|
3425
|
+
}
|
|
3426
|
+
.from-349 {
|
|
3427
|
+
--o-from: 349deg;
|
|
3428
|
+
}
|
|
3429
|
+
.from-350 {
|
|
3430
|
+
--o-from: 350deg;
|
|
3431
|
+
}
|
|
3432
|
+
.from-351 {
|
|
3433
|
+
--o-from: 351deg;
|
|
3434
|
+
}
|
|
3435
|
+
.from-352 {
|
|
3436
|
+
--o-from: 352deg;
|
|
3437
|
+
}
|
|
3438
|
+
.from-353 {
|
|
3439
|
+
--o-from: 353deg;
|
|
3440
|
+
}
|
|
3441
|
+
.from-354 {
|
|
3442
|
+
--o-from: 354deg;
|
|
3443
|
+
}
|
|
3444
|
+
.from-355 {
|
|
3445
|
+
--o-from: 355deg;
|
|
3446
|
+
}
|
|
3447
|
+
.from-356 {
|
|
3448
|
+
--o-from: 356deg;
|
|
3449
|
+
}
|
|
3450
|
+
.from-357 {
|
|
3451
|
+
--o-from: 357deg;
|
|
3452
|
+
}
|
|
3453
|
+
.from-358 {
|
|
3454
|
+
--o-from: 358deg;
|
|
3455
|
+
}
|
|
3456
|
+
.from-359 {
|
|
3457
|
+
--o-from: 359deg;
|
|
3458
|
+
}
|
|
3459
|
+
.from-360 {
|
|
3460
|
+
--o-from: 360deg;
|
|
3461
|
+
}
|
|
3462
|
+
.angle-0 {
|
|
3463
|
+
--o-angle-composite: calc(0deg - 90deg) !important;
|
|
3464
|
+
}
|
|
3465
|
+
.angle-1 {
|
|
3466
|
+
--o-angle-composite: calc(1deg - 90deg) !important;
|
|
3467
|
+
}
|
|
3468
|
+
.angle-2 {
|
|
3469
|
+
--o-angle-composite: calc(2deg - 90deg) !important;
|
|
3470
|
+
}
|
|
3471
|
+
.angle-3 {
|
|
3472
|
+
--o-angle-composite: calc(3deg - 90deg) !important;
|
|
3473
|
+
}
|
|
3474
|
+
.angle-4 {
|
|
3475
|
+
--o-angle-composite: calc(4deg - 90deg) !important;
|
|
3476
|
+
}
|
|
3477
|
+
.angle-5 {
|
|
3478
|
+
--o-angle-composite: calc(5deg - 90deg) !important;
|
|
3479
|
+
}
|
|
3480
|
+
.angle-6 {
|
|
3481
|
+
--o-angle-composite: calc(6deg - 90deg) !important;
|
|
3482
|
+
}
|
|
3483
|
+
.angle-7 {
|
|
3484
|
+
--o-angle-composite: calc(7deg - 90deg) !important;
|
|
3485
|
+
}
|
|
3486
|
+
.angle-8 {
|
|
3487
|
+
--o-angle-composite: calc(8deg - 90deg) !important;
|
|
3488
|
+
}
|
|
3489
|
+
.angle-9 {
|
|
3490
|
+
--o-angle-composite: calc(9deg - 90deg) !important;
|
|
3491
|
+
}
|
|
3492
|
+
.angle-10 {
|
|
3493
|
+
--o-angle-composite: calc(10deg - 90deg) !important;
|
|
3494
|
+
}
|
|
3495
|
+
.angle-11 {
|
|
3496
|
+
--o-angle-composite: calc(11deg - 90deg) !important;
|
|
3497
|
+
}
|
|
3498
|
+
.angle-12 {
|
|
3499
|
+
--o-angle-composite: calc(12deg - 90deg) !important;
|
|
3500
|
+
}
|
|
3501
|
+
.angle-13 {
|
|
3502
|
+
--o-angle-composite: calc(13deg - 90deg) !important;
|
|
3503
|
+
}
|
|
3504
|
+
.angle-14 {
|
|
3505
|
+
--o-angle-composite: calc(14deg - 90deg) !important;
|
|
3506
|
+
}
|
|
3507
|
+
.angle-15 {
|
|
3508
|
+
--o-angle-composite: calc(15deg - 90deg) !important;
|
|
3509
|
+
}
|
|
3510
|
+
.angle-16 {
|
|
3511
|
+
--o-angle-composite: calc(16deg - 90deg) !important;
|
|
3512
|
+
}
|
|
3513
|
+
.angle-17 {
|
|
3514
|
+
--o-angle-composite: calc(17deg - 90deg) !important;
|
|
3515
|
+
}
|
|
3516
|
+
.angle-18 {
|
|
3517
|
+
--o-angle-composite: calc(18deg - 90deg) !important;
|
|
3518
|
+
}
|
|
3519
|
+
.angle-19 {
|
|
3520
|
+
--o-angle-composite: calc(19deg - 90deg) !important;
|
|
3521
|
+
}
|
|
3522
|
+
.angle-20 {
|
|
3523
|
+
--o-angle-composite: calc(20deg - 90deg) !important;
|
|
3524
|
+
}
|
|
3525
|
+
.angle-21 {
|
|
3526
|
+
--o-angle-composite: calc(21deg - 90deg) !important;
|
|
3527
|
+
}
|
|
3528
|
+
.angle-22 {
|
|
3529
|
+
--o-angle-composite: calc(22deg - 90deg) !important;
|
|
3530
|
+
}
|
|
3531
|
+
.angle-23 {
|
|
3532
|
+
--o-angle-composite: calc(23deg - 90deg) !important;
|
|
3533
|
+
}
|
|
3534
|
+
.angle-24 {
|
|
3535
|
+
--o-angle-composite: calc(24deg - 90deg) !important;
|
|
3536
|
+
}
|
|
3537
|
+
.angle-25 {
|
|
3538
|
+
--o-angle-composite: calc(25deg - 90deg) !important;
|
|
3539
|
+
}
|
|
3540
|
+
.angle-26 {
|
|
3541
|
+
--o-angle-composite: calc(26deg - 90deg) !important;
|
|
3542
|
+
}
|
|
3543
|
+
.angle-27 {
|
|
3544
|
+
--o-angle-composite: calc(27deg - 90deg) !important;
|
|
3545
|
+
}
|
|
3546
|
+
.angle-28 {
|
|
3547
|
+
--o-angle-composite: calc(28deg - 90deg) !important;
|
|
3548
|
+
}
|
|
3549
|
+
.angle-29 {
|
|
3550
|
+
--o-angle-composite: calc(29deg - 90deg) !important;
|
|
3551
|
+
}
|
|
3552
|
+
.angle-30 {
|
|
3553
|
+
--o-angle-composite: calc(30deg - 90deg) !important;
|
|
3554
|
+
}
|
|
3555
|
+
.angle-31 {
|
|
3556
|
+
--o-angle-composite: calc(31deg - 90deg) !important;
|
|
3557
|
+
}
|
|
3558
|
+
.angle-32 {
|
|
3559
|
+
--o-angle-composite: calc(32deg - 90deg) !important;
|
|
3560
|
+
}
|
|
3561
|
+
.angle-33 {
|
|
3562
|
+
--o-angle-composite: calc(33deg - 90deg) !important;
|
|
3563
|
+
}
|
|
3564
|
+
.angle-34 {
|
|
3565
|
+
--o-angle-composite: calc(34deg - 90deg) !important;
|
|
3566
|
+
}
|
|
3567
|
+
.angle-35 {
|
|
3568
|
+
--o-angle-composite: calc(35deg - 90deg) !important;
|
|
3569
|
+
}
|
|
3570
|
+
.angle-36 {
|
|
3571
|
+
--o-angle-composite: calc(36deg - 90deg) !important;
|
|
3572
|
+
}
|
|
3573
|
+
.angle-37 {
|
|
3574
|
+
--o-angle-composite: calc(37deg - 90deg) !important;
|
|
3575
|
+
}
|
|
3576
|
+
.angle-38 {
|
|
3577
|
+
--o-angle-composite: calc(38deg - 90deg) !important;
|
|
3578
|
+
}
|
|
3579
|
+
.angle-39 {
|
|
3580
|
+
--o-angle-composite: calc(39deg - 90deg) !important;
|
|
3581
|
+
}
|
|
3582
|
+
.angle-40 {
|
|
3583
|
+
--o-angle-composite: calc(40deg - 90deg) !important;
|
|
3584
|
+
}
|
|
3585
|
+
.angle-41 {
|
|
3586
|
+
--o-angle-composite: calc(41deg - 90deg) !important;
|
|
3587
|
+
}
|
|
3588
|
+
.angle-42 {
|
|
3589
|
+
--o-angle-composite: calc(42deg - 90deg) !important;
|
|
3590
|
+
}
|
|
3591
|
+
.angle-43 {
|
|
3592
|
+
--o-angle-composite: calc(43deg - 90deg) !important;
|
|
3593
|
+
}
|
|
3594
|
+
.angle-44 {
|
|
3595
|
+
--o-angle-composite: calc(44deg - 90deg) !important;
|
|
3596
|
+
}
|
|
3597
|
+
.angle-45 {
|
|
3598
|
+
--o-angle-composite: calc(45deg - 90deg) !important;
|
|
3599
|
+
}
|
|
3600
|
+
.angle-46 {
|
|
3601
|
+
--o-angle-composite: calc(46deg - 90deg) !important;
|
|
3602
|
+
}
|
|
3603
|
+
.angle-47 {
|
|
3604
|
+
--o-angle-composite: calc(47deg - 90deg) !important;
|
|
3605
|
+
}
|
|
3606
|
+
.angle-48 {
|
|
3607
|
+
--o-angle-composite: calc(48deg - 90deg) !important;
|
|
3608
|
+
}
|
|
3609
|
+
.angle-49 {
|
|
3610
|
+
--o-angle-composite: calc(49deg - 90deg) !important;
|
|
3611
|
+
}
|
|
3612
|
+
.angle-50 {
|
|
3613
|
+
--o-angle-composite: calc(50deg - 90deg) !important;
|
|
3614
|
+
}
|
|
3615
|
+
.angle-51 {
|
|
3616
|
+
--o-angle-composite: calc(51deg - 90deg) !important;
|
|
3617
|
+
}
|
|
3618
|
+
.angle-52 {
|
|
3619
|
+
--o-angle-composite: calc(52deg - 90deg) !important;
|
|
3620
|
+
}
|
|
3621
|
+
.angle-53 {
|
|
3622
|
+
--o-angle-composite: calc(53deg - 90deg) !important;
|
|
3623
|
+
}
|
|
3624
|
+
.angle-54 {
|
|
3625
|
+
--o-angle-composite: calc(54deg - 90deg) !important;
|
|
3626
|
+
}
|
|
3627
|
+
.angle-55 {
|
|
3628
|
+
--o-angle-composite: calc(55deg - 90deg) !important;
|
|
3629
|
+
}
|
|
3630
|
+
.angle-56 {
|
|
3631
|
+
--o-angle-composite: calc(56deg - 90deg) !important;
|
|
3632
|
+
}
|
|
3633
|
+
.angle-57 {
|
|
3634
|
+
--o-angle-composite: calc(57deg - 90deg) !important;
|
|
3635
|
+
}
|
|
3636
|
+
.angle-58 {
|
|
3637
|
+
--o-angle-composite: calc(58deg - 90deg) !important;
|
|
3638
|
+
}
|
|
3639
|
+
.angle-59 {
|
|
3640
|
+
--o-angle-composite: calc(59deg - 90deg) !important;
|
|
3641
|
+
}
|
|
3642
|
+
.angle-60 {
|
|
3643
|
+
--o-angle-composite: calc(60deg - 90deg) !important;
|
|
3644
|
+
}
|
|
3645
|
+
.angle-61 {
|
|
3646
|
+
--o-angle-composite: calc(61deg - 90deg) !important;
|
|
3647
|
+
}
|
|
3648
|
+
.angle-62 {
|
|
3649
|
+
--o-angle-composite: calc(62deg - 90deg) !important;
|
|
3650
|
+
}
|
|
3651
|
+
.angle-63 {
|
|
3652
|
+
--o-angle-composite: calc(63deg - 90deg) !important;
|
|
3653
|
+
}
|
|
3654
|
+
.angle-64 {
|
|
3655
|
+
--o-angle-composite: calc(64deg - 90deg) !important;
|
|
3656
|
+
}
|
|
3657
|
+
.angle-65 {
|
|
3658
|
+
--o-angle-composite: calc(65deg - 90deg) !important;
|
|
3659
|
+
}
|
|
3660
|
+
.angle-66 {
|
|
3661
|
+
--o-angle-composite: calc(66deg - 90deg) !important;
|
|
3662
|
+
}
|
|
3663
|
+
.angle-67 {
|
|
3664
|
+
--o-angle-composite: calc(67deg - 90deg) !important;
|
|
3665
|
+
}
|
|
3666
|
+
.angle-68 {
|
|
3667
|
+
--o-angle-composite: calc(68deg - 90deg) !important;
|
|
3668
|
+
}
|
|
3669
|
+
.angle-69 {
|
|
3670
|
+
--o-angle-composite: calc(69deg - 90deg) !important;
|
|
3671
|
+
}
|
|
3672
|
+
.angle-70 {
|
|
3673
|
+
--o-angle-composite: calc(70deg - 90deg) !important;
|
|
3674
|
+
}
|
|
3675
|
+
.angle-71 {
|
|
3676
|
+
--o-angle-composite: calc(71deg - 90deg) !important;
|
|
3677
|
+
}
|
|
3678
|
+
.angle-72 {
|
|
3679
|
+
--o-angle-composite: calc(72deg - 90deg) !important;
|
|
3680
|
+
}
|
|
3681
|
+
.angle-73 {
|
|
3682
|
+
--o-angle-composite: calc(73deg - 90deg) !important;
|
|
3683
|
+
}
|
|
3684
|
+
.angle-74 {
|
|
3685
|
+
--o-angle-composite: calc(74deg - 90deg) !important;
|
|
3686
|
+
}
|
|
3687
|
+
.angle-75 {
|
|
3688
|
+
--o-angle-composite: calc(75deg - 90deg) !important;
|
|
3689
|
+
}
|
|
3690
|
+
.angle-76 {
|
|
3691
|
+
--o-angle-composite: calc(76deg - 90deg) !important;
|
|
3692
|
+
}
|
|
3693
|
+
.angle-77 {
|
|
3694
|
+
--o-angle-composite: calc(77deg - 90deg) !important;
|
|
3695
|
+
}
|
|
3696
|
+
.angle-78 {
|
|
3697
|
+
--o-angle-composite: calc(78deg - 90deg) !important;
|
|
3698
|
+
}
|
|
3699
|
+
.angle-79 {
|
|
3700
|
+
--o-angle-composite: calc(79deg - 90deg) !important;
|
|
3701
|
+
}
|
|
3702
|
+
.angle-80 {
|
|
3703
|
+
--o-angle-composite: calc(80deg - 90deg) !important;
|
|
3704
|
+
}
|
|
3705
|
+
.angle-81 {
|
|
3706
|
+
--o-angle-composite: calc(81deg - 90deg) !important;
|
|
3707
|
+
}
|
|
3708
|
+
.angle-82 {
|
|
3709
|
+
--o-angle-composite: calc(82deg - 90deg) !important;
|
|
3710
|
+
}
|
|
3711
|
+
.angle-83 {
|
|
3712
|
+
--o-angle-composite: calc(83deg - 90deg) !important;
|
|
3713
|
+
}
|
|
3714
|
+
.angle-84 {
|
|
3715
|
+
--o-angle-composite: calc(84deg - 90deg) !important;
|
|
3716
|
+
}
|
|
3717
|
+
.angle-85 {
|
|
3718
|
+
--o-angle-composite: calc(85deg - 90deg) !important;
|
|
3719
|
+
}
|
|
3720
|
+
.angle-86 {
|
|
3721
|
+
--o-angle-composite: calc(86deg - 90deg) !important;
|
|
3722
|
+
}
|
|
3723
|
+
.angle-87 {
|
|
3724
|
+
--o-angle-composite: calc(87deg - 90deg) !important;
|
|
3725
|
+
}
|
|
3726
|
+
.angle-88 {
|
|
3727
|
+
--o-angle-composite: calc(88deg - 90deg) !important;
|
|
3728
|
+
}
|
|
3729
|
+
.angle-89 {
|
|
3730
|
+
--o-angle-composite: calc(89deg - 90deg) !important;
|
|
3731
|
+
}
|
|
3732
|
+
.angle-90 {
|
|
3733
|
+
--o-angle-composite: calc(90deg - 90deg) !important;
|
|
3734
|
+
}
|
|
3735
|
+
.angle-91 {
|
|
3736
|
+
--o-angle-composite: calc(91deg - 90deg) !important;
|
|
3737
|
+
}
|
|
3738
|
+
.angle-92 {
|
|
3739
|
+
--o-angle-composite: calc(92deg - 90deg) !important;
|
|
3740
|
+
}
|
|
3741
|
+
.angle-93 {
|
|
3742
|
+
--o-angle-composite: calc(93deg - 90deg) !important;
|
|
3743
|
+
}
|
|
3744
|
+
.angle-94 {
|
|
3745
|
+
--o-angle-composite: calc(94deg - 90deg) !important;
|
|
3746
|
+
}
|
|
3747
|
+
.angle-95 {
|
|
3748
|
+
--o-angle-composite: calc(95deg - 90deg) !important;
|
|
3749
|
+
}
|
|
3750
|
+
.angle-96 {
|
|
3751
|
+
--o-angle-composite: calc(96deg - 90deg) !important;
|
|
3752
|
+
}
|
|
3753
|
+
.angle-97 {
|
|
3754
|
+
--o-angle-composite: calc(97deg - 90deg) !important;
|
|
3755
|
+
}
|
|
3756
|
+
.angle-98 {
|
|
3757
|
+
--o-angle-composite: calc(98deg - 90deg) !important;
|
|
3758
|
+
}
|
|
3759
|
+
.angle-99 {
|
|
3760
|
+
--o-angle-composite: calc(99deg - 90deg) !important;
|
|
3761
|
+
}
|
|
3762
|
+
.angle-100 {
|
|
3763
|
+
--o-angle-composite: calc(100deg - 90deg) !important;
|
|
3764
|
+
}
|
|
3765
|
+
.angle-101 {
|
|
3766
|
+
--o-angle-composite: calc(101deg - 90deg) !important;
|
|
3767
|
+
}
|
|
3768
|
+
.angle-102 {
|
|
3769
|
+
--o-angle-composite: calc(102deg - 90deg) !important;
|
|
3770
|
+
}
|
|
3771
|
+
.angle-103 {
|
|
3772
|
+
--o-angle-composite: calc(103deg - 90deg) !important;
|
|
3773
|
+
}
|
|
3774
|
+
.angle-104 {
|
|
3775
|
+
--o-angle-composite: calc(104deg - 90deg) !important;
|
|
3776
|
+
}
|
|
3777
|
+
.angle-105 {
|
|
3778
|
+
--o-angle-composite: calc(105deg - 90deg) !important;
|
|
3779
|
+
}
|
|
3780
|
+
.angle-106 {
|
|
3781
|
+
--o-angle-composite: calc(106deg - 90deg) !important;
|
|
3782
|
+
}
|
|
3783
|
+
.angle-107 {
|
|
3784
|
+
--o-angle-composite: calc(107deg - 90deg) !important;
|
|
3785
|
+
}
|
|
3786
|
+
.angle-108 {
|
|
3787
|
+
--o-angle-composite: calc(108deg - 90deg) !important;
|
|
3788
|
+
}
|
|
3789
|
+
.angle-109 {
|
|
3790
|
+
--o-angle-composite: calc(109deg - 90deg) !important;
|
|
3791
|
+
}
|
|
3792
|
+
.angle-110 {
|
|
3793
|
+
--o-angle-composite: calc(110deg - 90deg) !important;
|
|
3794
|
+
}
|
|
3795
|
+
.angle-111 {
|
|
3796
|
+
--o-angle-composite: calc(111deg - 90deg) !important;
|
|
3797
|
+
}
|
|
3798
|
+
.angle-112 {
|
|
3799
|
+
--o-angle-composite: calc(112deg - 90deg) !important;
|
|
3800
|
+
}
|
|
3801
|
+
.angle-113 {
|
|
3802
|
+
--o-angle-composite: calc(113deg - 90deg) !important;
|
|
3803
|
+
}
|
|
3804
|
+
.angle-114 {
|
|
3805
|
+
--o-angle-composite: calc(114deg - 90deg) !important;
|
|
3806
|
+
}
|
|
3807
|
+
.angle-115 {
|
|
3808
|
+
--o-angle-composite: calc(115deg - 90deg) !important;
|
|
3809
|
+
}
|
|
3810
|
+
.angle-116 {
|
|
3811
|
+
--o-angle-composite: calc(116deg - 90deg) !important;
|
|
3812
|
+
}
|
|
3813
|
+
.angle-117 {
|
|
3814
|
+
--o-angle-composite: calc(117deg - 90deg) !important;
|
|
3815
|
+
}
|
|
3816
|
+
.angle-118 {
|
|
3817
|
+
--o-angle-composite: calc(118deg - 90deg) !important;
|
|
3818
|
+
}
|
|
3819
|
+
.angle-119 {
|
|
3820
|
+
--o-angle-composite: calc(119deg - 90deg) !important;
|
|
3821
|
+
}
|
|
3822
|
+
.angle-120 {
|
|
3823
|
+
--o-angle-composite: calc(120deg - 90deg) !important;
|
|
3824
|
+
}
|
|
3825
|
+
.angle-121 {
|
|
3826
|
+
--o-angle-composite: calc(121deg - 90deg) !important;
|
|
3827
|
+
}
|
|
3828
|
+
.angle-122 {
|
|
3829
|
+
--o-angle-composite: calc(122deg - 90deg) !important;
|
|
3830
|
+
}
|
|
3831
|
+
.angle-123 {
|
|
3832
|
+
--o-angle-composite: calc(123deg - 90deg) !important;
|
|
3833
|
+
}
|
|
3834
|
+
.angle-124 {
|
|
3835
|
+
--o-angle-composite: calc(124deg - 90deg) !important;
|
|
3836
|
+
}
|
|
3837
|
+
.angle-125 {
|
|
3838
|
+
--o-angle-composite: calc(125deg - 90deg) !important;
|
|
3839
|
+
}
|
|
3840
|
+
.angle-126 {
|
|
3841
|
+
--o-angle-composite: calc(126deg - 90deg) !important;
|
|
3842
|
+
}
|
|
3843
|
+
.angle-127 {
|
|
3844
|
+
--o-angle-composite: calc(127deg - 90deg) !important;
|
|
3845
|
+
}
|
|
3846
|
+
.angle-128 {
|
|
3847
|
+
--o-angle-composite: calc(128deg - 90deg) !important;
|
|
3848
|
+
}
|
|
3849
|
+
.angle-129 {
|
|
3850
|
+
--o-angle-composite: calc(129deg - 90deg) !important;
|
|
3851
|
+
}
|
|
3852
|
+
.angle-130 {
|
|
3853
|
+
--o-angle-composite: calc(130deg - 90deg) !important;
|
|
3854
|
+
}
|
|
3855
|
+
.angle-131 {
|
|
3856
|
+
--o-angle-composite: calc(131deg - 90deg) !important;
|
|
3857
|
+
}
|
|
3858
|
+
.angle-132 {
|
|
3859
|
+
--o-angle-composite: calc(132deg - 90deg) !important;
|
|
3860
|
+
}
|
|
3861
|
+
.angle-133 {
|
|
3862
|
+
--o-angle-composite: calc(133deg - 90deg) !important;
|
|
3863
|
+
}
|
|
3864
|
+
.angle-134 {
|
|
3865
|
+
--o-angle-composite: calc(134deg - 90deg) !important;
|
|
3866
|
+
}
|
|
3867
|
+
.angle-135 {
|
|
3868
|
+
--o-angle-composite: calc(135deg - 90deg) !important;
|
|
3869
|
+
}
|
|
3870
|
+
.angle-136 {
|
|
3871
|
+
--o-angle-composite: calc(136deg - 90deg) !important;
|
|
3872
|
+
}
|
|
3873
|
+
.angle-137 {
|
|
3874
|
+
--o-angle-composite: calc(137deg - 90deg) !important;
|
|
3875
|
+
}
|
|
3876
|
+
.angle-138 {
|
|
3877
|
+
--o-angle-composite: calc(138deg - 90deg) !important;
|
|
3878
|
+
}
|
|
3879
|
+
.angle-139 {
|
|
3880
|
+
--o-angle-composite: calc(139deg - 90deg) !important;
|
|
3881
|
+
}
|
|
3882
|
+
.angle-140 {
|
|
3883
|
+
--o-angle-composite: calc(140deg - 90deg) !important;
|
|
3884
|
+
}
|
|
3885
|
+
.angle-141 {
|
|
3886
|
+
--o-angle-composite: calc(141deg - 90deg) !important;
|
|
3887
|
+
}
|
|
3888
|
+
.angle-142 {
|
|
3889
|
+
--o-angle-composite: calc(142deg - 90deg) !important;
|
|
3890
|
+
}
|
|
3891
|
+
.angle-143 {
|
|
3892
|
+
--o-angle-composite: calc(143deg - 90deg) !important;
|
|
3893
|
+
}
|
|
3894
|
+
.angle-144 {
|
|
3895
|
+
--o-angle-composite: calc(144deg - 90deg) !important;
|
|
3896
|
+
}
|
|
3897
|
+
.angle-145 {
|
|
3898
|
+
--o-angle-composite: calc(145deg - 90deg) !important;
|
|
3899
|
+
}
|
|
3900
|
+
.angle-146 {
|
|
3901
|
+
--o-angle-composite: calc(146deg - 90deg) !important;
|
|
3902
|
+
}
|
|
3903
|
+
.angle-147 {
|
|
3904
|
+
--o-angle-composite: calc(147deg - 90deg) !important;
|
|
3905
|
+
}
|
|
3906
|
+
.angle-148 {
|
|
3907
|
+
--o-angle-composite: calc(148deg - 90deg) !important;
|
|
3908
|
+
}
|
|
3909
|
+
.angle-149 {
|
|
3910
|
+
--o-angle-composite: calc(149deg - 90deg) !important;
|
|
3911
|
+
}
|
|
3912
|
+
.angle-150 {
|
|
3913
|
+
--o-angle-composite: calc(150deg - 90deg) !important;
|
|
3914
|
+
}
|
|
3915
|
+
.angle-151 {
|
|
3916
|
+
--o-angle-composite: calc(151deg - 90deg) !important;
|
|
3917
|
+
}
|
|
3918
|
+
.angle-152 {
|
|
3919
|
+
--o-angle-composite: calc(152deg - 90deg) !important;
|
|
3920
|
+
}
|
|
3921
|
+
.angle-153 {
|
|
3922
|
+
--o-angle-composite: calc(153deg - 90deg) !important;
|
|
3923
|
+
}
|
|
3924
|
+
.angle-154 {
|
|
3925
|
+
--o-angle-composite: calc(154deg - 90deg) !important;
|
|
3926
|
+
}
|
|
3927
|
+
.angle-155 {
|
|
3928
|
+
--o-angle-composite: calc(155deg - 90deg) !important;
|
|
3929
|
+
}
|
|
3930
|
+
.angle-156 {
|
|
3931
|
+
--o-angle-composite: calc(156deg - 90deg) !important;
|
|
3932
|
+
}
|
|
3933
|
+
.angle-157 {
|
|
3934
|
+
--o-angle-composite: calc(157deg - 90deg) !important;
|
|
3935
|
+
}
|
|
3936
|
+
.angle-158 {
|
|
3937
|
+
--o-angle-composite: calc(158deg - 90deg) !important;
|
|
3938
|
+
}
|
|
3939
|
+
.angle-159 {
|
|
3940
|
+
--o-angle-composite: calc(159deg - 90deg) !important;
|
|
3941
|
+
}
|
|
3942
|
+
.angle-160 {
|
|
3943
|
+
--o-angle-composite: calc(160deg - 90deg) !important;
|
|
3944
|
+
}
|
|
3945
|
+
.angle-161 {
|
|
3946
|
+
--o-angle-composite: calc(161deg - 90deg) !important;
|
|
3947
|
+
}
|
|
3948
|
+
.angle-162 {
|
|
3949
|
+
--o-angle-composite: calc(162deg - 90deg) !important;
|
|
3950
|
+
}
|
|
3951
|
+
.angle-163 {
|
|
3952
|
+
--o-angle-composite: calc(163deg - 90deg) !important;
|
|
3953
|
+
}
|
|
3954
|
+
.angle-164 {
|
|
3955
|
+
--o-angle-composite: calc(164deg - 90deg) !important;
|
|
3956
|
+
}
|
|
3957
|
+
.angle-165 {
|
|
3958
|
+
--o-angle-composite: calc(165deg - 90deg) !important;
|
|
3959
|
+
}
|
|
3960
|
+
.angle-166 {
|
|
3961
|
+
--o-angle-composite: calc(166deg - 90deg) !important;
|
|
3962
|
+
}
|
|
3963
|
+
.angle-167 {
|
|
3964
|
+
--o-angle-composite: calc(167deg - 90deg) !important;
|
|
3965
|
+
}
|
|
3966
|
+
.angle-168 {
|
|
3967
|
+
--o-angle-composite: calc(168deg - 90deg) !important;
|
|
3968
|
+
}
|
|
3969
|
+
.angle-169 {
|
|
3970
|
+
--o-angle-composite: calc(169deg - 90deg) !important;
|
|
3971
|
+
}
|
|
3972
|
+
.angle-170 {
|
|
3973
|
+
--o-angle-composite: calc(170deg - 90deg) !important;
|
|
3974
|
+
}
|
|
3975
|
+
.angle-171 {
|
|
3976
|
+
--o-angle-composite: calc(171deg - 90deg) !important;
|
|
3977
|
+
}
|
|
3978
|
+
.angle-172 {
|
|
3979
|
+
--o-angle-composite: calc(172deg - 90deg) !important;
|
|
3980
|
+
}
|
|
3981
|
+
.angle-173 {
|
|
3982
|
+
--o-angle-composite: calc(173deg - 90deg) !important;
|
|
3983
|
+
}
|
|
3984
|
+
.angle-174 {
|
|
3985
|
+
--o-angle-composite: calc(174deg - 90deg) !important;
|
|
3986
|
+
}
|
|
3987
|
+
.angle-175 {
|
|
3988
|
+
--o-angle-composite: calc(175deg - 90deg) !important;
|
|
3989
|
+
}
|
|
3990
|
+
.angle-176 {
|
|
3991
|
+
--o-angle-composite: calc(176deg - 90deg) !important;
|
|
3992
|
+
}
|
|
3993
|
+
.angle-177 {
|
|
3994
|
+
--o-angle-composite: calc(177deg - 90deg) !important;
|
|
3995
|
+
}
|
|
3996
|
+
.angle-178 {
|
|
3997
|
+
--o-angle-composite: calc(178deg - 90deg) !important;
|
|
3998
|
+
}
|
|
3999
|
+
.angle-179 {
|
|
4000
|
+
--o-angle-composite: calc(179deg - 90deg) !important;
|
|
4001
|
+
}
|
|
4002
|
+
.angle-180 {
|
|
4003
|
+
--o-angle-composite: calc(180deg - 90deg) !important;
|
|
4004
|
+
}
|
|
4005
|
+
.angle-181 {
|
|
4006
|
+
--o-angle-composite: calc(181deg - 90deg) !important;
|
|
4007
|
+
}
|
|
4008
|
+
.angle-182 {
|
|
4009
|
+
--o-angle-composite: calc(182deg - 90deg) !important;
|
|
4010
|
+
}
|
|
4011
|
+
.angle-183 {
|
|
4012
|
+
--o-angle-composite: calc(183deg - 90deg) !important;
|
|
4013
|
+
}
|
|
4014
|
+
.angle-184 {
|
|
4015
|
+
--o-angle-composite: calc(184deg - 90deg) !important;
|
|
4016
|
+
}
|
|
4017
|
+
.angle-185 {
|
|
4018
|
+
--o-angle-composite: calc(185deg - 90deg) !important;
|
|
4019
|
+
}
|
|
4020
|
+
.angle-186 {
|
|
4021
|
+
--o-angle-composite: calc(186deg - 90deg) !important;
|
|
4022
|
+
}
|
|
4023
|
+
.angle-187 {
|
|
4024
|
+
--o-angle-composite: calc(187deg - 90deg) !important;
|
|
4025
|
+
}
|
|
4026
|
+
.angle-188 {
|
|
4027
|
+
--o-angle-composite: calc(188deg - 90deg) !important;
|
|
4028
|
+
}
|
|
4029
|
+
.angle-189 {
|
|
4030
|
+
--o-angle-composite: calc(189deg - 90deg) !important;
|
|
4031
|
+
}
|
|
4032
|
+
.angle-190 {
|
|
4033
|
+
--o-angle-composite: calc(190deg - 90deg) !important;
|
|
4034
|
+
}
|
|
4035
|
+
.angle-191 {
|
|
4036
|
+
--o-angle-composite: calc(191deg - 90deg) !important;
|
|
4037
|
+
}
|
|
4038
|
+
.angle-192 {
|
|
4039
|
+
--o-angle-composite: calc(192deg - 90deg) !important;
|
|
4040
|
+
}
|
|
4041
|
+
.angle-193 {
|
|
4042
|
+
--o-angle-composite: calc(193deg - 90deg) !important;
|
|
4043
|
+
}
|
|
4044
|
+
.angle-194 {
|
|
4045
|
+
--o-angle-composite: calc(194deg - 90deg) !important;
|
|
4046
|
+
}
|
|
4047
|
+
.angle-195 {
|
|
4048
|
+
--o-angle-composite: calc(195deg - 90deg) !important;
|
|
4049
|
+
}
|
|
4050
|
+
.angle-196 {
|
|
4051
|
+
--o-angle-composite: calc(196deg - 90deg) !important;
|
|
4052
|
+
}
|
|
4053
|
+
.angle-197 {
|
|
4054
|
+
--o-angle-composite: calc(197deg - 90deg) !important;
|
|
4055
|
+
}
|
|
4056
|
+
.angle-198 {
|
|
4057
|
+
--o-angle-composite: calc(198deg - 90deg) !important;
|
|
4058
|
+
}
|
|
4059
|
+
.angle-199 {
|
|
4060
|
+
--o-angle-composite: calc(199deg - 90deg) !important;
|
|
4061
|
+
}
|
|
4062
|
+
.angle-200 {
|
|
4063
|
+
--o-angle-composite: calc(200deg - 90deg) !important;
|
|
4064
|
+
}
|
|
4065
|
+
.angle-201 {
|
|
4066
|
+
--o-angle-composite: calc(201deg - 90deg) !important;
|
|
4067
|
+
}
|
|
4068
|
+
.angle-202 {
|
|
4069
|
+
--o-angle-composite: calc(202deg - 90deg) !important;
|
|
4070
|
+
}
|
|
4071
|
+
.angle-203 {
|
|
4072
|
+
--o-angle-composite: calc(203deg - 90deg) !important;
|
|
4073
|
+
}
|
|
4074
|
+
.angle-204 {
|
|
4075
|
+
--o-angle-composite: calc(204deg - 90deg) !important;
|
|
4076
|
+
}
|
|
4077
|
+
.angle-205 {
|
|
4078
|
+
--o-angle-composite: calc(205deg - 90deg) !important;
|
|
4079
|
+
}
|
|
4080
|
+
.angle-206 {
|
|
4081
|
+
--o-angle-composite: calc(206deg - 90deg) !important;
|
|
4082
|
+
}
|
|
4083
|
+
.angle-207 {
|
|
4084
|
+
--o-angle-composite: calc(207deg - 90deg) !important;
|
|
4085
|
+
}
|
|
4086
|
+
.angle-208 {
|
|
4087
|
+
--o-angle-composite: calc(208deg - 90deg) !important;
|
|
4088
|
+
}
|
|
4089
|
+
.angle-209 {
|
|
4090
|
+
--o-angle-composite: calc(209deg - 90deg) !important;
|
|
4091
|
+
}
|
|
4092
|
+
.angle-210 {
|
|
4093
|
+
--o-angle-composite: calc(210deg - 90deg) !important;
|
|
4094
|
+
}
|
|
4095
|
+
.angle-211 {
|
|
4096
|
+
--o-angle-composite: calc(211deg - 90deg) !important;
|
|
4097
|
+
}
|
|
4098
|
+
.angle-212 {
|
|
4099
|
+
--o-angle-composite: calc(212deg - 90deg) !important;
|
|
4100
|
+
}
|
|
4101
|
+
.angle-213 {
|
|
4102
|
+
--o-angle-composite: calc(213deg - 90deg) !important;
|
|
4103
|
+
}
|
|
4104
|
+
.angle-214 {
|
|
4105
|
+
--o-angle-composite: calc(214deg - 90deg) !important;
|
|
4106
|
+
}
|
|
4107
|
+
.angle-215 {
|
|
4108
|
+
--o-angle-composite: calc(215deg - 90deg) !important;
|
|
4109
|
+
}
|
|
4110
|
+
.angle-216 {
|
|
4111
|
+
--o-angle-composite: calc(216deg - 90deg) !important;
|
|
4112
|
+
}
|
|
4113
|
+
.angle-217 {
|
|
4114
|
+
--o-angle-composite: calc(217deg - 90deg) !important;
|
|
4115
|
+
}
|
|
4116
|
+
.angle-218 {
|
|
4117
|
+
--o-angle-composite: calc(218deg - 90deg) !important;
|
|
4118
|
+
}
|
|
4119
|
+
.angle-219 {
|
|
4120
|
+
--o-angle-composite: calc(219deg - 90deg) !important;
|
|
4121
|
+
}
|
|
4122
|
+
.angle-220 {
|
|
4123
|
+
--o-angle-composite: calc(220deg - 90deg) !important;
|
|
4124
|
+
}
|
|
4125
|
+
.angle-221 {
|
|
4126
|
+
--o-angle-composite: calc(221deg - 90deg) !important;
|
|
4127
|
+
}
|
|
4128
|
+
.angle-222 {
|
|
4129
|
+
--o-angle-composite: calc(222deg - 90deg) !important;
|
|
4130
|
+
}
|
|
4131
|
+
.angle-223 {
|
|
4132
|
+
--o-angle-composite: calc(223deg - 90deg) !important;
|
|
4133
|
+
}
|
|
4134
|
+
.angle-224 {
|
|
4135
|
+
--o-angle-composite: calc(224deg - 90deg) !important;
|
|
4136
|
+
}
|
|
4137
|
+
.angle-225 {
|
|
4138
|
+
--o-angle-composite: calc(225deg - 90deg) !important;
|
|
4139
|
+
}
|
|
4140
|
+
.angle-226 {
|
|
4141
|
+
--o-angle-composite: calc(226deg - 90deg) !important;
|
|
4142
|
+
}
|
|
4143
|
+
.angle-227 {
|
|
4144
|
+
--o-angle-composite: calc(227deg - 90deg) !important;
|
|
4145
|
+
}
|
|
4146
|
+
.angle-228 {
|
|
4147
|
+
--o-angle-composite: calc(228deg - 90deg) !important;
|
|
4148
|
+
}
|
|
4149
|
+
.angle-229 {
|
|
4150
|
+
--o-angle-composite: calc(229deg - 90deg) !important;
|
|
4151
|
+
}
|
|
4152
|
+
.angle-230 {
|
|
4153
|
+
--o-angle-composite: calc(230deg - 90deg) !important;
|
|
4154
|
+
}
|
|
4155
|
+
.angle-231 {
|
|
4156
|
+
--o-angle-composite: calc(231deg - 90deg) !important;
|
|
4157
|
+
}
|
|
4158
|
+
.angle-232 {
|
|
4159
|
+
--o-angle-composite: calc(232deg - 90deg) !important;
|
|
4160
|
+
}
|
|
4161
|
+
.angle-233 {
|
|
4162
|
+
--o-angle-composite: calc(233deg - 90deg) !important;
|
|
4163
|
+
}
|
|
4164
|
+
.angle-234 {
|
|
4165
|
+
--o-angle-composite: calc(234deg - 90deg) !important;
|
|
4166
|
+
}
|
|
4167
|
+
.angle-235 {
|
|
4168
|
+
--o-angle-composite: calc(235deg - 90deg) !important;
|
|
4169
|
+
}
|
|
4170
|
+
.angle-236 {
|
|
4171
|
+
--o-angle-composite: calc(236deg - 90deg) !important;
|
|
4172
|
+
}
|
|
4173
|
+
.angle-237 {
|
|
4174
|
+
--o-angle-composite: calc(237deg - 90deg) !important;
|
|
4175
|
+
}
|
|
4176
|
+
.angle-238 {
|
|
4177
|
+
--o-angle-composite: calc(238deg - 90deg) !important;
|
|
4178
|
+
}
|
|
4179
|
+
.angle-239 {
|
|
4180
|
+
--o-angle-composite: calc(239deg - 90deg) !important;
|
|
4181
|
+
}
|
|
4182
|
+
.angle-240 {
|
|
4183
|
+
--o-angle-composite: calc(240deg - 90deg) !important;
|
|
4184
|
+
}
|
|
4185
|
+
.angle-241 {
|
|
4186
|
+
--o-angle-composite: calc(241deg - 90deg) !important;
|
|
4187
|
+
}
|
|
4188
|
+
.angle-242 {
|
|
4189
|
+
--o-angle-composite: calc(242deg - 90deg) !important;
|
|
4190
|
+
}
|
|
4191
|
+
.angle-243 {
|
|
4192
|
+
--o-angle-composite: calc(243deg - 90deg) !important;
|
|
4193
|
+
}
|
|
4194
|
+
.angle-244 {
|
|
4195
|
+
--o-angle-composite: calc(244deg - 90deg) !important;
|
|
4196
|
+
}
|
|
4197
|
+
.angle-245 {
|
|
4198
|
+
--o-angle-composite: calc(245deg - 90deg) !important;
|
|
4199
|
+
}
|
|
4200
|
+
.angle-246 {
|
|
4201
|
+
--o-angle-composite: calc(246deg - 90deg) !important;
|
|
4202
|
+
}
|
|
4203
|
+
.angle-247 {
|
|
4204
|
+
--o-angle-composite: calc(247deg - 90deg) !important;
|
|
4205
|
+
}
|
|
4206
|
+
.angle-248 {
|
|
4207
|
+
--o-angle-composite: calc(248deg - 90deg) !important;
|
|
4208
|
+
}
|
|
4209
|
+
.angle-249 {
|
|
4210
|
+
--o-angle-composite: calc(249deg - 90deg) !important;
|
|
4211
|
+
}
|
|
4212
|
+
.angle-250 {
|
|
4213
|
+
--o-angle-composite: calc(250deg - 90deg) !important;
|
|
4214
|
+
}
|
|
4215
|
+
.angle-251 {
|
|
4216
|
+
--o-angle-composite: calc(251deg - 90deg) !important;
|
|
4217
|
+
}
|
|
4218
|
+
.angle-252 {
|
|
4219
|
+
--o-angle-composite: calc(252deg - 90deg) !important;
|
|
4220
|
+
}
|
|
4221
|
+
.angle-253 {
|
|
4222
|
+
--o-angle-composite: calc(253deg - 90deg) !important;
|
|
4223
|
+
}
|
|
4224
|
+
.angle-254 {
|
|
4225
|
+
--o-angle-composite: calc(254deg - 90deg) !important;
|
|
4226
|
+
}
|
|
4227
|
+
.angle-255 {
|
|
4228
|
+
--o-angle-composite: calc(255deg - 90deg) !important;
|
|
4229
|
+
}
|
|
4230
|
+
.angle-256 {
|
|
4231
|
+
--o-angle-composite: calc(256deg - 90deg) !important;
|
|
4232
|
+
}
|
|
4233
|
+
.angle-257 {
|
|
4234
|
+
--o-angle-composite: calc(257deg - 90deg) !important;
|
|
4235
|
+
}
|
|
4236
|
+
.angle-258 {
|
|
4237
|
+
--o-angle-composite: calc(258deg - 90deg) !important;
|
|
4238
|
+
}
|
|
4239
|
+
.angle-259 {
|
|
4240
|
+
--o-angle-composite: calc(259deg - 90deg) !important;
|
|
4241
|
+
}
|
|
4242
|
+
.angle-260 {
|
|
4243
|
+
--o-angle-composite: calc(260deg - 90deg) !important;
|
|
4244
|
+
}
|
|
4245
|
+
.angle-261 {
|
|
4246
|
+
--o-angle-composite: calc(261deg - 90deg) !important;
|
|
4247
|
+
}
|
|
4248
|
+
.angle-262 {
|
|
4249
|
+
--o-angle-composite: calc(262deg - 90deg) !important;
|
|
4250
|
+
}
|
|
4251
|
+
.angle-263 {
|
|
4252
|
+
--o-angle-composite: calc(263deg - 90deg) !important;
|
|
4253
|
+
}
|
|
4254
|
+
.angle-264 {
|
|
4255
|
+
--o-angle-composite: calc(264deg - 90deg) !important;
|
|
4256
|
+
}
|
|
4257
|
+
.angle-265 {
|
|
4258
|
+
--o-angle-composite: calc(265deg - 90deg) !important;
|
|
4259
|
+
}
|
|
4260
|
+
.angle-266 {
|
|
4261
|
+
--o-angle-composite: calc(266deg - 90deg) !important;
|
|
4262
|
+
}
|
|
4263
|
+
.angle-267 {
|
|
4264
|
+
--o-angle-composite: calc(267deg - 90deg) !important;
|
|
4265
|
+
}
|
|
4266
|
+
.angle-268 {
|
|
4267
|
+
--o-angle-composite: calc(268deg - 90deg) !important;
|
|
4268
|
+
}
|
|
4269
|
+
.angle-269 {
|
|
4270
|
+
--o-angle-composite: calc(269deg - 90deg) !important;
|
|
4271
|
+
}
|
|
4272
|
+
.angle-270 {
|
|
4273
|
+
--o-angle-composite: calc(270deg - 90deg) !important;
|
|
4274
|
+
}
|
|
4275
|
+
.angle-271 {
|
|
4276
|
+
--o-angle-composite: calc(271deg - 90deg) !important;
|
|
4277
|
+
}
|
|
4278
|
+
.angle-272 {
|
|
4279
|
+
--o-angle-composite: calc(272deg - 90deg) !important;
|
|
4280
|
+
}
|
|
4281
|
+
.angle-273 {
|
|
4282
|
+
--o-angle-composite: calc(273deg - 90deg) !important;
|
|
4283
|
+
}
|
|
4284
|
+
.angle-274 {
|
|
4285
|
+
--o-angle-composite: calc(274deg - 90deg) !important;
|
|
4286
|
+
}
|
|
4287
|
+
.angle-275 {
|
|
4288
|
+
--o-angle-composite: calc(275deg - 90deg) !important;
|
|
4289
|
+
}
|
|
4290
|
+
.angle-276 {
|
|
4291
|
+
--o-angle-composite: calc(276deg - 90deg) !important;
|
|
4292
|
+
}
|
|
4293
|
+
.angle-277 {
|
|
4294
|
+
--o-angle-composite: calc(277deg - 90deg) !important;
|
|
4295
|
+
}
|
|
4296
|
+
.angle-278 {
|
|
4297
|
+
--o-angle-composite: calc(278deg - 90deg) !important;
|
|
4298
|
+
}
|
|
4299
|
+
.angle-279 {
|
|
4300
|
+
--o-angle-composite: calc(279deg - 90deg) !important;
|
|
4301
|
+
}
|
|
4302
|
+
.angle-280 {
|
|
4303
|
+
--o-angle-composite: calc(280deg - 90deg) !important;
|
|
4304
|
+
}
|
|
4305
|
+
.angle-281 {
|
|
4306
|
+
--o-angle-composite: calc(281deg - 90deg) !important;
|
|
4307
|
+
}
|
|
4308
|
+
.angle-282 {
|
|
4309
|
+
--o-angle-composite: calc(282deg - 90deg) !important;
|
|
4310
|
+
}
|
|
4311
|
+
.angle-283 {
|
|
4312
|
+
--o-angle-composite: calc(283deg - 90deg) !important;
|
|
4313
|
+
}
|
|
4314
|
+
.angle-284 {
|
|
4315
|
+
--o-angle-composite: calc(284deg - 90deg) !important;
|
|
4316
|
+
}
|
|
4317
|
+
.angle-285 {
|
|
4318
|
+
--o-angle-composite: calc(285deg - 90deg) !important;
|
|
4319
|
+
}
|
|
4320
|
+
.angle-286 {
|
|
4321
|
+
--o-angle-composite: calc(286deg - 90deg) !important;
|
|
4322
|
+
}
|
|
4323
|
+
.angle-287 {
|
|
4324
|
+
--o-angle-composite: calc(287deg - 90deg) !important;
|
|
4325
|
+
}
|
|
4326
|
+
.angle-288 {
|
|
4327
|
+
--o-angle-composite: calc(288deg - 90deg) !important;
|
|
4328
|
+
}
|
|
4329
|
+
.angle-289 {
|
|
4330
|
+
--o-angle-composite: calc(289deg - 90deg) !important;
|
|
4331
|
+
}
|
|
4332
|
+
.angle-290 {
|
|
4333
|
+
--o-angle-composite: calc(290deg - 90deg) !important;
|
|
4334
|
+
}
|
|
4335
|
+
.angle-291 {
|
|
4336
|
+
--o-angle-composite: calc(291deg - 90deg) !important;
|
|
4337
|
+
}
|
|
4338
|
+
.angle-292 {
|
|
4339
|
+
--o-angle-composite: calc(292deg - 90deg) !important;
|
|
4340
|
+
}
|
|
4341
|
+
.angle-293 {
|
|
4342
|
+
--o-angle-composite: calc(293deg - 90deg) !important;
|
|
4343
|
+
}
|
|
4344
|
+
.angle-294 {
|
|
4345
|
+
--o-angle-composite: calc(294deg - 90deg) !important;
|
|
4346
|
+
}
|
|
4347
|
+
.angle-295 {
|
|
4348
|
+
--o-angle-composite: calc(295deg - 90deg) !important;
|
|
4349
|
+
}
|
|
4350
|
+
.angle-296 {
|
|
4351
|
+
--o-angle-composite: calc(296deg - 90deg) !important;
|
|
4352
|
+
}
|
|
4353
|
+
.angle-297 {
|
|
4354
|
+
--o-angle-composite: calc(297deg - 90deg) !important;
|
|
4355
|
+
}
|
|
4356
|
+
.angle-298 {
|
|
4357
|
+
--o-angle-composite: calc(298deg - 90deg) !important;
|
|
4358
|
+
}
|
|
4359
|
+
.angle-299 {
|
|
4360
|
+
--o-angle-composite: calc(299deg - 90deg) !important;
|
|
4361
|
+
}
|
|
4362
|
+
.angle-300 {
|
|
4363
|
+
--o-angle-composite: calc(300deg - 90deg) !important;
|
|
4364
|
+
}
|
|
4365
|
+
.angle-301 {
|
|
4366
|
+
--o-angle-composite: calc(301deg - 90deg) !important;
|
|
4367
|
+
}
|
|
4368
|
+
.angle-302 {
|
|
4369
|
+
--o-angle-composite: calc(302deg - 90deg) !important;
|
|
4370
|
+
}
|
|
4371
|
+
.angle-303 {
|
|
4372
|
+
--o-angle-composite: calc(303deg - 90deg) !important;
|
|
4373
|
+
}
|
|
4374
|
+
.angle-304 {
|
|
4375
|
+
--o-angle-composite: calc(304deg - 90deg) !important;
|
|
4376
|
+
}
|
|
4377
|
+
.angle-305 {
|
|
4378
|
+
--o-angle-composite: calc(305deg - 90deg) !important;
|
|
4379
|
+
}
|
|
4380
|
+
.angle-306 {
|
|
4381
|
+
--o-angle-composite: calc(306deg - 90deg) !important;
|
|
4382
|
+
}
|
|
4383
|
+
.angle-307 {
|
|
4384
|
+
--o-angle-composite: calc(307deg - 90deg) !important;
|
|
4385
|
+
}
|
|
4386
|
+
.angle-308 {
|
|
4387
|
+
--o-angle-composite: calc(308deg - 90deg) !important;
|
|
4388
|
+
}
|
|
4389
|
+
.angle-309 {
|
|
4390
|
+
--o-angle-composite: calc(309deg - 90deg) !important;
|
|
4391
|
+
}
|
|
4392
|
+
.angle-310 {
|
|
4393
|
+
--o-angle-composite: calc(310deg - 90deg) !important;
|
|
4394
|
+
}
|
|
4395
|
+
.angle-311 {
|
|
4396
|
+
--o-angle-composite: calc(311deg - 90deg) !important;
|
|
4397
|
+
}
|
|
4398
|
+
.angle-312 {
|
|
4399
|
+
--o-angle-composite: calc(312deg - 90deg) !important;
|
|
4400
|
+
}
|
|
4401
|
+
.angle-313 {
|
|
4402
|
+
--o-angle-composite: calc(313deg - 90deg) !important;
|
|
4403
|
+
}
|
|
4404
|
+
.angle-314 {
|
|
4405
|
+
--o-angle-composite: calc(314deg - 90deg) !important;
|
|
4406
|
+
}
|
|
4407
|
+
.angle-315 {
|
|
4408
|
+
--o-angle-composite: calc(315deg - 90deg) !important;
|
|
4409
|
+
}
|
|
4410
|
+
.angle-316 {
|
|
4411
|
+
--o-angle-composite: calc(316deg - 90deg) !important;
|
|
4412
|
+
}
|
|
4413
|
+
.angle-317 {
|
|
4414
|
+
--o-angle-composite: calc(317deg - 90deg) !important;
|
|
4415
|
+
}
|
|
4416
|
+
.angle-318 {
|
|
4417
|
+
--o-angle-composite: calc(318deg - 90deg) !important;
|
|
4418
|
+
}
|
|
4419
|
+
.angle-319 {
|
|
4420
|
+
--o-angle-composite: calc(319deg - 90deg) !important;
|
|
4421
|
+
}
|
|
4422
|
+
.angle-320 {
|
|
4423
|
+
--o-angle-composite: calc(320deg - 90deg) !important;
|
|
4424
|
+
}
|
|
4425
|
+
.angle-321 {
|
|
4426
|
+
--o-angle-composite: calc(321deg - 90deg) !important;
|
|
4427
|
+
}
|
|
4428
|
+
.angle-322 {
|
|
4429
|
+
--o-angle-composite: calc(322deg - 90deg) !important;
|
|
4430
|
+
}
|
|
4431
|
+
.angle-323 {
|
|
4432
|
+
--o-angle-composite: calc(323deg - 90deg) !important;
|
|
4433
|
+
}
|
|
4434
|
+
.angle-324 {
|
|
4435
|
+
--o-angle-composite: calc(324deg - 90deg) !important;
|
|
4436
|
+
}
|
|
4437
|
+
.angle-325 {
|
|
4438
|
+
--o-angle-composite: calc(325deg - 90deg) !important;
|
|
4439
|
+
}
|
|
4440
|
+
.angle-326 {
|
|
4441
|
+
--o-angle-composite: calc(326deg - 90deg) !important;
|
|
4442
|
+
}
|
|
4443
|
+
.angle-327 {
|
|
4444
|
+
--o-angle-composite: calc(327deg - 90deg) !important;
|
|
4445
|
+
}
|
|
4446
|
+
.angle-328 {
|
|
4447
|
+
--o-angle-composite: calc(328deg - 90deg) !important;
|
|
4448
|
+
}
|
|
4449
|
+
.angle-329 {
|
|
4450
|
+
--o-angle-composite: calc(329deg - 90deg) !important;
|
|
4451
|
+
}
|
|
4452
|
+
.angle-330 {
|
|
4453
|
+
--o-angle-composite: calc(330deg - 90deg) !important;
|
|
4454
|
+
}
|
|
4455
|
+
.angle-331 {
|
|
4456
|
+
--o-angle-composite: calc(331deg - 90deg) !important;
|
|
4457
|
+
}
|
|
4458
|
+
.angle-332 {
|
|
4459
|
+
--o-angle-composite: calc(332deg - 90deg) !important;
|
|
4460
|
+
}
|
|
4461
|
+
.angle-333 {
|
|
4462
|
+
--o-angle-composite: calc(333deg - 90deg) !important;
|
|
4463
|
+
}
|
|
4464
|
+
.angle-334 {
|
|
4465
|
+
--o-angle-composite: calc(334deg - 90deg) !important;
|
|
4466
|
+
}
|
|
4467
|
+
.angle-335 {
|
|
4468
|
+
--o-angle-composite: calc(335deg - 90deg) !important;
|
|
4469
|
+
}
|
|
4470
|
+
.angle-336 {
|
|
4471
|
+
--o-angle-composite: calc(336deg - 90deg) !important;
|
|
4472
|
+
}
|
|
4473
|
+
.angle-337 {
|
|
4474
|
+
--o-angle-composite: calc(337deg - 90deg) !important;
|
|
4475
|
+
}
|
|
4476
|
+
.angle-338 {
|
|
4477
|
+
--o-angle-composite: calc(338deg - 90deg) !important;
|
|
4478
|
+
}
|
|
4479
|
+
.angle-339 {
|
|
4480
|
+
--o-angle-composite: calc(339deg - 90deg) !important;
|
|
4481
|
+
}
|
|
4482
|
+
.angle-340 {
|
|
4483
|
+
--o-angle-composite: calc(340deg - 90deg) !important;
|
|
4484
|
+
}
|
|
4485
|
+
.angle-341 {
|
|
4486
|
+
--o-angle-composite: calc(341deg - 90deg) !important;
|
|
4487
|
+
}
|
|
4488
|
+
.angle-342 {
|
|
4489
|
+
--o-angle-composite: calc(342deg - 90deg) !important;
|
|
4490
|
+
}
|
|
4491
|
+
.angle-343 {
|
|
4492
|
+
--o-angle-composite: calc(343deg - 90deg) !important;
|
|
4493
|
+
}
|
|
4494
|
+
.angle-344 {
|
|
4495
|
+
--o-angle-composite: calc(344deg - 90deg) !important;
|
|
4496
|
+
}
|
|
4497
|
+
.angle-345 {
|
|
4498
|
+
--o-angle-composite: calc(345deg - 90deg) !important;
|
|
4499
|
+
}
|
|
4500
|
+
.angle-346 {
|
|
4501
|
+
--o-angle-composite: calc(346deg - 90deg) !important;
|
|
4502
|
+
}
|
|
4503
|
+
.angle-347 {
|
|
4504
|
+
--o-angle-composite: calc(347deg - 90deg) !important;
|
|
4505
|
+
}
|
|
4506
|
+
.angle-348 {
|
|
4507
|
+
--o-angle-composite: calc(348deg - 90deg) !important;
|
|
4508
|
+
}
|
|
4509
|
+
.angle-349 {
|
|
4510
|
+
--o-angle-composite: calc(349deg - 90deg) !important;
|
|
4511
|
+
}
|
|
4512
|
+
.angle-350 {
|
|
4513
|
+
--o-angle-composite: calc(350deg - 90deg) !important;
|
|
4514
|
+
}
|
|
4515
|
+
.angle-351 {
|
|
4516
|
+
--o-angle-composite: calc(351deg - 90deg) !important;
|
|
4517
|
+
}
|
|
4518
|
+
.angle-352 {
|
|
4519
|
+
--o-angle-composite: calc(352deg - 90deg) !important;
|
|
4520
|
+
}
|
|
4521
|
+
.angle-353 {
|
|
4522
|
+
--o-angle-composite: calc(353deg - 90deg) !important;
|
|
4523
|
+
}
|
|
4524
|
+
.angle-354 {
|
|
4525
|
+
--o-angle-composite: calc(354deg - 90deg) !important;
|
|
4526
|
+
}
|
|
4527
|
+
.angle-355 {
|
|
4528
|
+
--o-angle-composite: calc(355deg - 90deg) !important;
|
|
4529
|
+
}
|
|
4530
|
+
.angle-356 {
|
|
4531
|
+
--o-angle-composite: calc(356deg - 90deg) !important;
|
|
4532
|
+
}
|
|
4533
|
+
.angle-357 {
|
|
4534
|
+
--o-angle-composite: calc(357deg - 90deg) !important;
|
|
4535
|
+
}
|
|
4536
|
+
.angle-358 {
|
|
4537
|
+
--o-angle-composite: calc(358deg - 90deg) !important;
|
|
4538
|
+
}
|
|
4539
|
+
.angle-359 {
|
|
4540
|
+
--o-angle-composite: calc(359deg - 90deg) !important;
|
|
4541
|
+
}
|
|
4542
|
+
.angle-360 {
|
|
4543
|
+
--o-angle-composite: calc(360deg - 90deg) !important;
|
|
4544
|
+
}
|
|
4545
|
+
o-sector.gap-1,
|
|
4546
|
+
o-label.gap-1 {
|
|
4547
|
+
--o-gap: 1;
|
|
4548
|
+
}
|
|
4549
|
+
o-sector.gap-2,
|
|
4550
|
+
o-label.gap-2 {
|
|
4551
|
+
--o-gap: 2;
|
|
4552
|
+
}
|
|
4553
|
+
o-sector.gap-3,
|
|
4554
|
+
o-label.gap-3 {
|
|
4555
|
+
--o-gap: 3;
|
|
4556
|
+
}
|
|
4557
|
+
o-sector.gap-4,
|
|
4558
|
+
o-label.gap-4 {
|
|
4559
|
+
--o-gap: 4;
|
|
4560
|
+
}
|
|
4561
|
+
o-sector.gap-5,
|
|
4562
|
+
o-label.gap-5 {
|
|
4563
|
+
--o-gap: 5;
|
|
4564
|
+
}
|
|
4565
|
+
o-sector.gap-6,
|
|
4566
|
+
o-label.gap-6 {
|
|
4567
|
+
--o-gap: 6;
|
|
4568
|
+
}
|
|
4569
|
+
o-sector.gap-7,
|
|
4570
|
+
o-label.gap-7 {
|
|
4571
|
+
--o-gap: 7;
|
|
4572
|
+
}
|
|
4573
|
+
o-sector.gap-8,
|
|
4574
|
+
o-label.gap-8 {
|
|
4575
|
+
--o-gap: 8;
|
|
4576
|
+
}
|
|
4577
|
+
o-sector.gap-9,
|
|
4578
|
+
o-label.gap-9 {
|
|
4579
|
+
--o-gap: 9;
|
|
4580
|
+
}
|
|
4581
|
+
o-sector.gap-10,
|
|
4582
|
+
o-label.gap-10 {
|
|
4583
|
+
--o-gap: 10;
|
|
4584
|
+
}
|
|
4585
|
+
o-sector.gap-11,
|
|
4586
|
+
o-label.gap-11 {
|
|
4587
|
+
--o-gap: 11;
|
|
4588
|
+
}
|
|
4589
|
+
o-sector.gap-12,
|
|
4590
|
+
o-label.gap-12 {
|
|
4591
|
+
--o-gap: 12;
|
|
4592
|
+
}
|
|
4593
|
+
o-sector.gap-13,
|
|
4594
|
+
o-label.gap-13 {
|
|
4595
|
+
--o-gap: 13;
|
|
4596
|
+
}
|
|
4597
|
+
o-sector.gap-14,
|
|
4598
|
+
o-label.gap-14 {
|
|
4599
|
+
--o-gap: 14;
|
|
4600
|
+
}
|
|
4601
|
+
o-sector.gap-15,
|
|
4602
|
+
o-label.gap-15 {
|
|
4603
|
+
--o-gap: 15;
|
|
4604
|
+
}
|
|
4605
|
+
o-sector.gap-16,
|
|
4606
|
+
o-label.gap-16 {
|
|
4607
|
+
--o-gap: 16;
|
|
4608
|
+
}
|
|
4609
|
+
o-sector.gap-17,
|
|
4610
|
+
o-label.gap-17 {
|
|
4611
|
+
--o-gap: 17;
|
|
4612
|
+
}
|
|
4613
|
+
o-sector.gap-18,
|
|
4614
|
+
o-label.gap-18 {
|
|
4615
|
+
--o-gap: 18;
|
|
4616
|
+
}
|
|
4617
|
+
o-sector.gap-19,
|
|
4618
|
+
o-label.gap-19 {
|
|
4619
|
+
--o-gap: 19;
|
|
4620
|
+
}
|
|
4621
|
+
o-sector.gap-20,
|
|
4622
|
+
o-label.gap-20 {
|
|
4623
|
+
--o-gap: 20;
|
|
4624
|
+
}
|
|
4625
|
+
o-sector.gap-21,
|
|
4626
|
+
o-label.gap-21 {
|
|
4627
|
+
--o-gap: 21;
|
|
4628
|
+
}
|
|
4629
|
+
o-sector.gap-22,
|
|
4630
|
+
o-label.gap-22 {
|
|
4631
|
+
--o-gap: 22;
|
|
4632
|
+
}
|
|
4633
|
+
o-sector.gap-23,
|
|
4634
|
+
o-label.gap-23 {
|
|
4635
|
+
--o-gap: 23;
|
|
4636
|
+
}
|
|
4637
|
+
o-sector.gap-24,
|
|
4638
|
+
o-label.gap-24 {
|
|
4639
|
+
--o-gap: 24;
|
|
4640
|
+
}
|
|
4641
|
+
o-sector.gap-25,
|
|
4642
|
+
o-label.gap-25 {
|
|
4643
|
+
--o-gap: 25;
|
|
4644
|
+
}
|
|
4645
|
+
o-sector.gap-26,
|
|
4646
|
+
o-label.gap-26 {
|
|
4647
|
+
--o-gap: 26;
|
|
4648
|
+
}
|
|
4649
|
+
o-sector.gap-27,
|
|
4650
|
+
o-label.gap-27 {
|
|
4651
|
+
--o-gap: 27;
|
|
4652
|
+
}
|
|
4653
|
+
o-sector.gap-28,
|
|
4654
|
+
o-label.gap-28 {
|
|
4655
|
+
--o-gap: 28;
|
|
4656
|
+
}
|
|
4657
|
+
o-sector.gap-29,
|
|
4658
|
+
o-label.gap-29 {
|
|
4659
|
+
--o-gap: 29;
|
|
4660
|
+
}
|
|
4661
|
+
o-sector.gap-30,
|
|
4662
|
+
o-label.gap-30 {
|
|
4663
|
+
--o-gap: 30;
|
|
4664
|
+
}
|
|
4665
|
+
.orbit.reduce-0,
|
|
4666
|
+
[class*=orbit-]:not(.orbit-zone).reduce-0 {
|
|
4667
|
+
--o-orbit-ratio: 0;
|
|
4668
|
+
}
|
|
4669
|
+
.orbit.reduce-10,
|
|
4670
|
+
[class*=orbit-]:not(.orbit-zone).reduce-10 {
|
|
4671
|
+
--o-orbit-ratio: 0.1;
|
|
4672
|
+
}
|
|
4673
|
+
.orbit.reduce-20,
|
|
4674
|
+
[class*=orbit-]:not(.orbit-zone).reduce-20 {
|
|
4675
|
+
--o-orbit-ratio: 0.2;
|
|
4676
|
+
}
|
|
4677
|
+
.orbit.reduce-30,
|
|
4678
|
+
[class*=orbit-]:not(.orbit-zone).reduce-30 {
|
|
4679
|
+
--o-orbit-ratio: 0.3;
|
|
4680
|
+
}
|
|
4681
|
+
.orbit.reduce-40,
|
|
4682
|
+
[class*=orbit-]:not(.orbit-zone).reduce-40 {
|
|
4683
|
+
--o-orbit-ratio: 0.4;
|
|
4684
|
+
}
|
|
4685
|
+
.orbit.reduce-50,
|
|
4686
|
+
[class*=orbit-]:not(.orbit-zone).reduce-50 {
|
|
4687
|
+
--o-orbit-ratio: 0.5;
|
|
4688
|
+
}
|
|
4689
|
+
.orbit.reduce-60,
|
|
4690
|
+
[class*=orbit-]:not(.orbit-zone).reduce-60 {
|
|
4691
|
+
--o-orbit-ratio: 0.6;
|
|
4692
|
+
}
|
|
4693
|
+
.orbit.reduce-70,
|
|
4694
|
+
[class*=orbit-]:not(.orbit-zone).reduce-70 {
|
|
4695
|
+
--o-orbit-ratio: 0.7;
|
|
4696
|
+
}
|
|
4697
|
+
.orbit.reduce-80,
|
|
4698
|
+
[class*=orbit-]:not(.orbit-zone).reduce-80 {
|
|
4699
|
+
--o-orbit-ratio: 0.8;
|
|
4700
|
+
}
|
|
4701
|
+
.orbit.reduce-90,
|
|
4702
|
+
[class*=orbit-]:not(.orbit-zone).reduce-90 {
|
|
4703
|
+
--o-orbit-ratio: 0.9;
|
|
4704
|
+
}
|
|
4705
|
+
.orbit.reduce-100,
|
|
4706
|
+
[class*=orbit-]:not(.orbit-zone).reduce-100 {
|
|
4707
|
+
--o-orbit-ratio: 1;
|
|
4708
|
+
}
|
|
4709
|
+
.reduce-0 {
|
|
4710
|
+
--o-size-ratio: 1;
|
|
4711
|
+
}
|
|
4712
|
+
.reduce-10 {
|
|
4713
|
+
--o-size-ratio: 0.9;
|
|
4714
|
+
}
|
|
4715
|
+
.reduce-20 {
|
|
4716
|
+
--o-size-ratio: 0.8;
|
|
4717
|
+
}
|
|
4718
|
+
.reduce-30 {
|
|
4719
|
+
--o-size-ratio: 0.7;
|
|
4720
|
+
}
|
|
4721
|
+
.reduce-40 {
|
|
4722
|
+
--o-size-ratio: 0.6;
|
|
4723
|
+
}
|
|
4724
|
+
.reduce-50 {
|
|
4725
|
+
--o-size-ratio: 0.5;
|
|
4726
|
+
}
|
|
4727
|
+
.reduce-60 {
|
|
4728
|
+
--o-size-ratio: 0.4;
|
|
4729
|
+
}
|
|
4730
|
+
.reduce-70 {
|
|
4731
|
+
--o-size-ratio: 0.3;
|
|
4732
|
+
}
|
|
4733
|
+
.reduce-80 {
|
|
4734
|
+
--o-size-ratio: 0.2;
|
|
4735
|
+
}
|
|
4736
|
+
.reduce-90 {
|
|
4737
|
+
--o-size-ratio: 0.1;
|
|
4738
|
+
}
|
|
4739
|
+
.reduce-100 {
|
|
4740
|
+
--o-size-ratio: 0;
|
|
4741
|
+
}
|
|
4742
|
+
.grow-1x {
|
|
4743
|
+
--o-size-ratio: 2;
|
|
4744
|
+
}
|
|
4745
|
+
.grow-2x {
|
|
4746
|
+
--o-size-ratio: 4;
|
|
4747
|
+
}
|
|
4748
|
+
.grow-3x {
|
|
4749
|
+
--o-size-ratio: 6;
|
|
4750
|
+
}
|
|
4751
|
+
.grow-4x {
|
|
4752
|
+
--o-size-ratio: 8;
|
|
4753
|
+
}
|
|
4754
|
+
.grow-5x {
|
|
4755
|
+
--o-size-ratio: 10;
|
|
4756
|
+
}
|
|
4757
|
+
.grow-6x {
|
|
4758
|
+
--o-size-ratio: 12;
|
|
4759
|
+
}
|
|
4760
|
+
.grow-7x {
|
|
4761
|
+
--o-size-ratio: 14;
|
|
4762
|
+
}
|
|
4763
|
+
.grow-8x {
|
|
4764
|
+
--o-size-ratio: 16;
|
|
4765
|
+
}
|
|
4766
|
+
.grow-9x {
|
|
4767
|
+
--o-size-ratio: 18;
|
|
4768
|
+
}
|
|
4769
|
+
.grow-10x {
|
|
4770
|
+
--o-size-ratio: 20;
|
|
4771
|
+
}
|
|
4772
|
+
.grow-11x {
|
|
4773
|
+
--o-size-ratio: 22;
|
|
4774
|
+
}
|
|
4775
|
+
.grow-12x {
|
|
4776
|
+
--o-size-ratio: 24;
|
|
4777
|
+
}
|
|
4778
|
+
.inner-orbit {
|
|
4779
|
+
--o-aligment: calc( var(--o-radius) / var(--o-orbit-number, 1) * var(--o-size-ratio, 1) ) / 2;
|
|
4780
|
+
}
|
|
4781
|
+
.quarter-inner-orbit {
|
|
4782
|
+
--o-aligment: calc( var(--o-radius) / var(--o-orbit-number, 1) * var(--o-size-ratio, 1) ) / 3.75;
|
|
4783
|
+
}
|
|
4784
|
+
.quarter-outer-orbit {
|
|
4785
|
+
--o-aligment: calc( var(--o-radius) / var(--o-orbit-number, 1) * var(--o-size-ratio, 1) ) / -3.75;
|
|
4786
|
+
}
|
|
4787
|
+
.outer-orbit {
|
|
4788
|
+
--o-aligment: calc( var(--o-radius) / var(--o-orbit-number, 1) * var(--o-size-ratio, 1) ) / -2;
|
|
4789
|
+
}
|
|
4790
|
+
.ccw {
|
|
4791
|
+
--o-direction: -1;
|
|
4792
|
+
--o-offset: - -90deg ;
|
|
4793
|
+
}
|
|
4794
|
+
.fit-range {
|
|
4795
|
+
--o-fit-range: 1;
|
|
4796
|
+
}
|
|
4797
|
+
.capsule.flip {
|
|
4798
|
+
--o-angle-composite: 180deg !important;
|
|
4799
|
+
}
|
|
4800
|
+
.capsule.turn-left {
|
|
4801
|
+
margin-top: 25%;
|
|
4802
|
+
--o-angle-composite: 90deg !important;
|
|
4803
|
+
}
|
|
4804
|
+
.capsule.turn-right {
|
|
4805
|
+
margin-top: 25%;
|
|
4806
|
+
--o-angle-composite: 270deg !important;
|
|
4807
|
+
}
|
|
4808
|
+
.capsule.stable {
|
|
4809
|
+
--o-gyro: calc(90deg - ( var(--o-angle) * var(--o-orbit-child-number)));
|
|
4810
|
+
--o-angle-composite: var(--o-gyro);
|
|
4811
|
+
}
|
|
4812
|
+
.satellite > .capsule.stable {
|
|
4813
|
+
--o-gyro: calc(var(--o-angle) * var(--o-orbit-child-number));
|
|
4814
|
+
}
|
|
4815
|
+
.satellite > .capsule.turn-left {
|
|
4816
|
+
margin-top: unset;
|
|
4817
|
+
}
|
|
4818
|
+
.satellite > .capsule.turn-right {
|
|
4819
|
+
margin-top: unset;
|
|
4820
|
+
}
|
|
4821
|
+
.satellite.sync-rotation {
|
|
4822
|
+
transform: var(--o-transform) rotate(calc(var(--o-angle-composite)));
|
|
4823
|
+
}
|
|
4824
|
+
o-progress.rounded,
|
|
4825
|
+
o-label.rounded {
|
|
4826
|
+
--o-linecap: round;
|
|
4827
|
+
}
|
|
4828
|
+
.gooey-fx-light,
|
|
4829
|
+
.gooey-fx {
|
|
4830
|
+
filter: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg"> <filter id="fancy-goo"> <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" /> <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" /> <feComposite in="SourceGraphic" in2="goo" operator="atop" /> </filter> </svg>#fancy-goo');
|
|
4831
|
+
}
|
|
4832
|
+
.gooey-fx-medium {
|
|
4833
|
+
filter: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg"> <filter id="fancy-goo"> <feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur" /> <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" /> <feComposite in="SourceGraphic" in2="goo" operator="atop" /> </filter> </svg>#fancy-goo');
|
|
4834
|
+
}
|
|
4835
|
+
.gooey-fx-max {
|
|
4836
|
+
filter: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg"> <filter id="fancy-goo"> <feGaussianBlur in="SourceGraphic" stdDeviation="9" result="blur" /> <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" /> <feComposite in="SourceGraphic" in2="goo" operator="atop" /> </filter> </svg>#fancy-goo');
|
|
4837
|
+
}
|
|
4838
|
+
@supports not selector(:has(a)) {
|
|
4839
|
+
.orbit-zone {
|
|
4840
|
+
border: 3px dotted red !important;
|
|
4841
|
+
}
|
|
4842
|
+
.orbit-zone > * {
|
|
4843
|
+
display: none;
|
|
4844
|
+
}
|
|
4845
|
+
.orbit-zone::before {
|
|
4846
|
+
content: "Update \1f98a Firefox to use Orbit";
|
|
4847
|
+
font-size: 18px;
|
|
4848
|
+
padding: 10px;
|
|
4849
|
+
text-align: center;
|
|
4850
|
+
}
|
|
4851
|
+
}
|
|
4852
|
+
@supports not (fill:context-stroke) {
|
|
4853
|
+
:not[shape=none] {
|
|
4854
|
+
display: none;
|
|
4855
|
+
}
|
|
4856
|
+
}
|
|
4857
|
+
@container osector not style(--o-ellipse-x: 1) {
|
|
4858
|
+
o-sector,
|
|
4859
|
+
o-progress,
|
|
4860
|
+
o-label {
|
|
4861
|
+
display: none;
|
|
4862
|
+
}
|
|
4863
|
+
}
|
|
4864
|
+
@container osector not style(--o-ellipse-y: 1) {
|
|
4865
|
+
o-sector,
|
|
4866
|
+
o-progress,
|
|
4867
|
+
o-label {
|
|
4868
|
+
display: none;
|
|
4869
|
+
}
|
|
4870
|
+
}
|
|
4871
|
+
.orbit-zone:has(> *:not(.orbit, [class*=orbit-])) {
|
|
4872
|
+
border: 2px dotted red !important;
|
|
4873
|
+
}
|
|
4874
|
+
.orbit-zone:has(> *:not(.orbit, [class*=orbit-])) > * {
|
|
4875
|
+
filter: grayscale(1) opacity(0.2);
|
|
4876
|
+
}
|
|
4877
|
+
.orbit-zone:has(> *:not(.orbit, [class*=orbit-]))::after {
|
|
4878
|
+
content: "\26a0\fe0f";
|
|
4879
|
+
font-size: 130%;
|
|
4880
|
+
animation: pulse 1.5s infinite;
|
|
4881
|
+
z-index: 99;
|
|
4882
|
+
filter: drop-shadow(3px 3px 8px #fffefe);
|
|
4883
|
+
position: absolute;
|
|
4884
|
+
}
|
|
4885
|
+
.orbit:has(> *:is(.orbit, [class*=orbit-])),
|
|
4886
|
+
[class*=orbit-]:not(.orbit-zone):has(> *:is(.orbit, [class*=orbit-])),
|
|
4887
|
+
.satellite:has(> *:not(.orbit-zone, .capsule)) {
|
|
4888
|
+
border: 2px dotted #ff5100 !important;
|
|
4889
|
+
}
|
|
4890
|
+
.orbit:has(> *:is(.orbit, [class*=orbit-])) > *,
|
|
4891
|
+
[class*=orbit-]:not(.orbit-zone):has(> *:is(.orbit, [class*=orbit-])) > *,
|
|
4892
|
+
.satellite:has(> *:not(.orbit-zone, .capsule)) > * {
|
|
4893
|
+
opacity: 0.4;
|
|
4894
|
+
}
|
|
4895
|
+
.orbit:has(> *:is(.orbit, [class*=orbit-]))::after,
|
|
4896
|
+
[class*=orbit-]:not(.orbit-zone):has(> *:is(.orbit, [class*=orbit-]))::after,
|
|
4897
|
+
.satellite:has(> *:not(.orbit-zone, .capsule))::after {
|
|
4898
|
+
content: "\26a0\fe0f";
|
|
4899
|
+
animation: pulse 1.5s infinite;
|
|
4900
|
+
z-index: 999;
|
|
4901
|
+
filter: drop-shadow(1px 1px 8px #fffefe);
|
|
4902
|
+
position: absolute;
|
|
4903
|
+
}
|
|
4904
|
+
@keyframes pulse {
|
|
4905
|
+
0% {
|
|
4906
|
+
transform: scale(1);
|
|
4907
|
+
opacity: 0;
|
|
4908
|
+
}
|
|
4909
|
+
50% {
|
|
4910
|
+
opacity: 1;
|
|
4911
|
+
transform: scale(1.2);
|
|
4912
|
+
}
|
|
4913
|
+
100% {
|
|
4914
|
+
transform: scale(1);
|
|
4915
|
+
opacity: 0;
|
|
4916
|
+
}
|
|
4917
|
+
}
|
|
4918
|
+
:root {
|
|
4919
|
+
--o-red: hsl(3, 100%, 61%);
|
|
4920
|
+
--o-orange: hsl(36, 100%, 51%);
|
|
4921
|
+
--o-yellow: hsl(49, 100%, 51%);
|
|
4922
|
+
--o-green: hsl(129, 67%, 51%);
|
|
4923
|
+
--o-cyan: hsl(197, 88%, 65%);
|
|
4924
|
+
--o-blue: hsl(210, 100%, 51%);
|
|
4925
|
+
--o-indigo: hsl(240, 73%, 63%);
|
|
4926
|
+
--o-purple: hsl(279, 85%, 65%);
|
|
4927
|
+
--o-pink: hsl(348, 100%, 60%);
|
|
4928
|
+
--o-gray: hsl(240, 2%, 60%);
|
|
4929
|
+
--o-hue: 70;
|
|
4930
|
+
--o-saturation: 70%;
|
|
4931
|
+
--o-light: 70%;
|
|
4932
|
+
--o-color: hsl(var(--o-hue), var(--o-saturation), var(--o-light));
|
|
4933
|
+
--o-color-white: color-mix(in oklab, var(--o-color), white 95%);
|
|
4934
|
+
--o-color-lighter: color-mix(in oklab, var(--o-color), white 75%);
|
|
4935
|
+
--o-color-light: color-mix(in oklab, var(--o-color), white 30%);
|
|
4936
|
+
--o-color-dark: color-mix(in oklab, var(--o-color), black 20%);
|
|
4937
|
+
--o-color-darker: color-mix(in oklab, var(--o-color), black 40%);
|
|
4938
|
+
--o-color-black: color-mix(in oklab, var(--o-color), black 78%);
|
|
4939
|
+
--o-red-white: color-mix(in oklab, var(--o-red), white 95%);
|
|
4940
|
+
--o-red-lighter: color-mix(in oklab, var(--o-red), white 75%);
|
|
4941
|
+
--o-red-light: color-mix(in oklab, var(--o-red), white 30%);
|
|
4942
|
+
--o-red-dark: color-mix(in oklab, var(--o-red), black 20%);
|
|
4943
|
+
--o-red-darker: color-mix(in oklab, var(--o-red), black 40%);
|
|
4944
|
+
--o-red-black: color-mix(in oklab, var(--o-red), black 78%);
|
|
4945
|
+
--o-orange-white: color-mix(in oklab, var(--o-orange), white 95%);
|
|
4946
|
+
--o-orange-lighter: color-mix(in oklab, var(--o-orange), white 75%);
|
|
4947
|
+
--o-orange-light: color-mix(in oklab, var(--o-orange), white 30%);
|
|
4948
|
+
--o-orange-dark: color-mix(in oklab, var(--o-orange), black 20%);
|
|
4949
|
+
--o-orange-darker: color-mix(in oklab, var(--o-orange), black 40%);
|
|
4950
|
+
--o-orange-black: color-mix(in oklab, var(--o-orange), black 78%);
|
|
4951
|
+
--o-yellow-white: color-mix(in oklab, var(--o-yellow), white 95%);
|
|
4952
|
+
--o-yellow-lighter: color-mix(in oklab, var(--o-yellow), white 75%);
|
|
4953
|
+
--o-yellow-light: color-mix(in oklab, var(--o-yellow), white 30%);
|
|
4954
|
+
--o-yellow-dark: color-mix(in oklab, var(--o-yellow), black 20%);
|
|
4955
|
+
--o-yellow-darker: color-mix(in oklab, var(--o-yellow), black 40%);
|
|
4956
|
+
--o-yellow-black: color-mix(in oklab, var(--o-yellow), black 78%);
|
|
4957
|
+
--o-green-white: color-mix(in oklab, var(--o-green), white 95%);
|
|
4958
|
+
--o-green-lighter: color-mix(in oklab, var(--o-green), white 75%);
|
|
4959
|
+
--o-green-light: color-mix(in oklab, var(--o-green), white 30%);
|
|
4960
|
+
--o-green-dark: color-mix(in oklab, var(--o-green), black 20%);
|
|
4961
|
+
--o-green-darker: color-mix(in oklab, var(--o-green), black 40%);
|
|
4962
|
+
--o-green-black: color-mix(in oklab, var(--o-green), black 78%);
|
|
4963
|
+
--o-cyan-white: color-mix(in oklab, var(--o-cyan), white 95%);
|
|
4964
|
+
--o-cyan-lighter: color-mix(in oklab, var(--o-cyan), white 75%);
|
|
4965
|
+
--o-cyan-light: color-mix(in oklab, var(--o-cyan), white 30%);
|
|
4966
|
+
--o-cyan-dark: color-mix(in oklab, var(--o-cyan), black 20%);
|
|
4967
|
+
--o-cyan-darker: color-mix(in oklab, var(--o-cyan), black 40%);
|
|
4968
|
+
--o-cyan-black: color-mix(in oklab, var(--o-cyan), black 78%);
|
|
4969
|
+
--o-blue-white: color-mix(in oklab, var(--o-blue), white 95%);
|
|
4970
|
+
--o-blue-lighter: color-mix(in oklab, var(--o-blue), white 75%);
|
|
4971
|
+
--o-blue-light: color-mix(in oklab, var(--o-blue), white 30%);
|
|
4972
|
+
--o-blue-dark: color-mix(in oklab, var(--o-blue), black 20%);
|
|
4973
|
+
--o-blue-darker: color-mix(in oklab, var(--o-blue), black 40%);
|
|
4974
|
+
--o-blue-black: color-mix(in oklab, var(--o-color), black 78%);
|
|
4975
|
+
--o-indigo-white: color-mix(in oklab, var(--o-indigo), white 95%);
|
|
4976
|
+
--o-indigo-lighter: color-mix(in oklab, var(--o-indigo), white 75%);
|
|
4977
|
+
--o-indigo-light: color-mix(in oklab, var(--o-indigo), white 30%);
|
|
4978
|
+
--o-indigo-dark: color-mix(in oklab, var(--o-indigo), black 20%);
|
|
4979
|
+
--o-indigo-darker: color-mix(in oklab, var(--o-indigo), black 40%);
|
|
4980
|
+
--o-indigo-black: color-mix(in oklab, var(--o-indigo), black 78%);
|
|
4981
|
+
--o-purple-white: color-mix(in oklab, var(--o-purple), white 95%);
|
|
4982
|
+
--o-purple-lighter: color-mix(in oklab, var(--o-purple), white 75%);
|
|
4983
|
+
--o-purple-light: color-mix(in oklab, var(--o-purple), white 30%);
|
|
4984
|
+
--o-purple-dark: color-mix(in oklab, var(--o-purple), black 20%);
|
|
4985
|
+
--o-purple-darker: color-mix(in oklab, var(--o-purple), black 40%);
|
|
4986
|
+
--o-purple-black: color-mix(in oklab, var(--o-purple), black 78%);
|
|
4987
|
+
--o-pink-white: color-mix(in oklab, var(--o-pink), white 95%);
|
|
4988
|
+
--o-pink-lighter: color-mix(in oklab, var(--o-pink), white 75%);
|
|
4989
|
+
--o-pink-light: color-mix(in oklab, var(--o-pink), white 30%);
|
|
4990
|
+
--o-pink-dark: color-mix(in oklab, var(--o-pink), black 20%);
|
|
4991
|
+
--o-pink-darker: color-mix(in oklab, var(--o-pink), black 40%);
|
|
4992
|
+
--o-pink-black: color-mix(in oklab, var(--o-pink), black 78%);
|
|
4993
|
+
--o-gray-white: color-mix(in oklab, var(--o-gray), white 95%);
|
|
4994
|
+
--o-gray-lighter: color-mix(in oklab, var(--o-gray), white 75%);
|
|
4995
|
+
--o-gray-light: color-mix(in oklab, var(--o-gray), white 30%);
|
|
4996
|
+
--o-gray-dark: color-mix(in oklab, var(--o-gray), black 20%);
|
|
4997
|
+
--o-gray-darker: color-mix(in oklab, var(--o-gray), black 40%);
|
|
4998
|
+
--o-gray-black: color-mix(in oklab, var(--o-gray), black 78%);
|
|
4999
|
+
}
|
|
5000
|
+
.orbit-zone {
|
|
5001
|
+
background: none;
|
|
5002
|
+
border: none;
|
|
5003
|
+
}
|
|
5004
|
+
.orbit,
|
|
5005
|
+
[class*=orbit-]:not(.orbit-zone) {
|
|
5006
|
+
border: 1px solid transparent;
|
|
5007
|
+
}
|
|
5008
|
+
.satellite {
|
|
5009
|
+
background-color: transparent;
|
|
5010
|
+
border: 1px solid currentcolor;
|
|
5011
|
+
}
|
|
5012
|
+
.spoke {
|
|
5013
|
+
border: none;
|
|
5014
|
+
background: currentcolor;
|
|
5015
|
+
}
|
|
5016
|
+
.segment {
|
|
5017
|
+
border: none;
|
|
5018
|
+
background: currentcolor;
|
|
5019
|
+
}
|
|
5020
|
+
o-progress {
|
|
5021
|
+
--o-progress-color: currentcolor;
|
|
5022
|
+
--o-hover-progress-color: currentcolor;
|
|
5023
|
+
--o-bg-color: transparent;
|
|
5024
|
+
}
|
|
5025
|
+
o-sector {
|
|
5026
|
+
--o-sector-color: currentcolor;
|
|
5027
|
+
--o-hover-sector-color: currentcolor;
|
|
5028
|
+
}
|
|
5029
|
+
o-label {
|
|
5030
|
+
--o-label-color: transparent;
|
|
5031
|
+
--o-hover-label-color: transparent;
|
|
5032
|
+
color: currentColor;
|
|
5033
|
+
}
|
|
5034
|
+
.dev-orbit.orbit-zone {
|
|
5035
|
+
background: none;
|
|
5036
|
+
border: 0.2px dashed var(--o-red-light);
|
|
5037
|
+
}
|
|
5038
|
+
.dev-orbit .orbit-zone {
|
|
5039
|
+
background: none;
|
|
5040
|
+
border: 0.2px dashed var(--o-red-light);
|
|
5041
|
+
}
|
|
5042
|
+
.dev-orbit .orbit,
|
|
5043
|
+
.dev-orbit [class*=orbit-]:not(.orbit-zone) {
|
|
5044
|
+
border: 0.2px solid var(--o-red-light);
|
|
5045
|
+
}
|
|
5046
|
+
.dev-orbit .satellite {
|
|
5047
|
+
background-color: transparent;
|
|
5048
|
+
border: 1px solid currentColor;
|
|
5049
|
+
}
|
|
5050
|
+
.dev-orbit .spoke {
|
|
5051
|
+
border: none;
|
|
5052
|
+
background: currentColor;
|
|
5053
|
+
}
|
|
5054
|
+
.dev-orbit .segment {
|
|
5055
|
+
border: none;
|
|
5056
|
+
background: currentColor;
|
|
5057
|
+
}
|
|
5058
|
+
.dev-orbit o-progress {
|
|
5059
|
+
--o-progress-color: currentColor;
|
|
5060
|
+
--o-hover-progress-color: currentColor;
|
|
5061
|
+
--o-bg-color: transparent;
|
|
5062
|
+
}
|
|
5063
|
+
.dev-orbit o-sector {
|
|
5064
|
+
--o-sector-color: currentColor;
|
|
5065
|
+
--o-hover-sector-color: currentColor;
|
|
5066
|
+
}
|
|
5067
|
+
.dev-orbit o-label {
|
|
5068
|
+
--o-label-color: transparent;
|
|
5069
|
+
--o-hover-label-color: transparent;
|
|
5070
|
+
color: currentcolor;
|
|
5071
|
+
}
|
|
5072
|
+
.theme-cyan .orbit-zone {
|
|
5073
|
+
background: none;
|
|
5074
|
+
border: none;
|
|
5075
|
+
}
|
|
5076
|
+
.theme-cyan .orbit,
|
|
5077
|
+
.theme-cyan [class*=orbit-]:not(.orbit-zone) {
|
|
5078
|
+
border: 1px solid transparent;
|
|
5079
|
+
}
|
|
5080
|
+
.theme-cyan .satellite {
|
|
5081
|
+
background-color: transparent;
|
|
5082
|
+
border: 1px solid var(--o-cyan);
|
|
5083
|
+
}
|
|
5084
|
+
.theme-cyan .spoke {
|
|
5085
|
+
border: none;
|
|
5086
|
+
background: var(--o-cyan);
|
|
5087
|
+
}
|
|
5088
|
+
.theme-cyan .segment {
|
|
5089
|
+
border: none;
|
|
5090
|
+
background: var(--o-cyan);
|
|
5091
|
+
}
|
|
5092
|
+
.theme-cyan o-progress {
|
|
5093
|
+
--o-progress-color: var(--o-cyan);
|
|
5094
|
+
--o-hover-progress-color: var(--o-cyan);
|
|
5095
|
+
--o-bg-color: transparent;
|
|
5096
|
+
}
|
|
5097
|
+
.theme-cyan o-sector {
|
|
5098
|
+
--o-sector-color: var(--o-cyan);
|
|
5099
|
+
--o-hover-sector-color: var(--o-cyan);
|
|
5100
|
+
}
|
|
5101
|
+
.theme-cyan o-label {
|
|
5102
|
+
--o-label-color: transparent;
|
|
5103
|
+
--o-hover-label-color: transparent;
|
|
5104
|
+
color: var(--o-cyan);
|
|
5105
|
+
}
|