first part of syncing LCARStrek with Firefox 49/50 windows theme changes
[themes.git] / LCARStrek / browser / preferences / in-content / preferences.css
CommitLineData
bb9362a9
RK
1/* - This Source Code Form is subject to the terms of the Mozilla Public
2 - License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 - You can obtain one at http://mozilla.org/MPL/2.0/. */
4
13875a54 5/* === BEGIN shared/incontentprefs/preferences.inc.css === */
bb9362a9
RK
6
7@namespace html "http://www.w3.org/1999/xhtml";
8
bb9362a9 9.main-content {
0b8749a4 10 padding: 1.5em 0 0; /* That padding needs to match the upper stripe. */
bb9362a9 11 overflow: auto;
0b8749a4
RK
12
13 /* This actually results in two black boxes extending to the right and bottom,
14 * leaving the LCARS-gray background only in a top stripe and
15 * a bit larger area on the top left.
16 * The prefpane will overlay that with the rounded shape we want. */
17 background-color: #A09090;
18 background-position: 3em 1.5em, 0px 5em;
19 background-image: linear-gradient(0deg, #000, #000), linear-gradient(0deg, #000, #000);
20 background-repeat: no-repeat;
bb9362a9
RK
21}
22
c1080df6 23#mainPrefPane {
0b8749a4
RK
24 padding: 10px 20px 0px;
25 border-radius: 1em 0 0 0;
26 background-color: #000000;
27
589b5528 28 max-width: 800px;
93c91f62 29 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
bb9362a9 30 font-size: 1.25rem;
6edbc6e8 31 color: #FF9F00;
bb9362a9
RK
32}
33
8922acc9
RK
34* {
35 -moz-user-select: text;
36}
37
38button,
39treecol {
40 /* override the * rule */
41 -moz-user-select: none;
42}
d7b7f7e1
RK
43/*
44#engineList treechildren::-moz-tree-image(engineShown, checked),
45#blocklistsTree treechildren::-moz-tree-image(selectionCol, checked) {
46 list-style-image: url("chrome://global/skin/in-content/check.svg#check");
47 width: 21px;
48 height: 21px;
49}
50
51#engineList treechildren::-moz-tree-image(engineShown, checked, selected),
52#blocklistsTree treechildren::-moz-tree-image(selectionCol, checked, selected) {
53 list-style-image: url("chrome://global/skin/in-content/check.svg#check-inverted");
54}
55
56#engineList treechildren::-moz-tree-row,
57#blocklistsTree treechildren::-moz-tree-row {
58 min-height: 36px;
59}
60*/
61#selectionCol {
62 min-width: 26px;
63}
8922acc9 64
bb9362a9
RK
65/* Category List */
66
67#categories {
d533ec21 68 max-height: 100vh;
bb9362a9
RK
69}
70
d533ec21
RK
71#categories > scrollbox {
72 overflow-x: hidden !important;
73}
74
d533ec21
RK
75/**
76 * We want the last category to always have non-0 getBoundingClientRect().bottom
77 * so we can use the value to figure out the max-height of the list in
78 * preferences.js, so use collapse instead of display: none; if it's hidden
79 */
80#categories > .category[hidden="true"] {
81 display: -moz-box;
82 visibility: collapse;
83}
84
bb9362a9 85#category-general > .category-icon {
e184b661 86 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#general");
bb9362a9
RK
87}
88
89#category-general:hover > .category-icon,
90#category-general[selected] > .category-icon {
e184b661 91 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#general-active");
bb9362a9
RK
92}
93
58036cb8 94#category-search > .category-icon {
e184b661 95 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#search");
58036cb8
RK
96}
97
98#category-search:hover > .category-icon,
99#category-search[selected] > .category-icon {
e184b661 100 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#search-active");
58036cb8
RK
101}
102
bb9362a9 103#category-content > .category-icon {
e184b661 104 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#content");
bb9362a9
RK
105}
106
107#category-content:hover > .category-icon,
108#category-content[selected] > .category-icon {
e184b661 109 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#content-active");
bb9362a9
RK
110}
111
112#category-application > .category-icon {
e184b661 113 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#applications");
bb9362a9
RK
114}
115
116#category-application:hover > .category-icon,
117#category-application[selected] > .category-icon {
e184b661 118 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#applications-active");
bb9362a9
RK
119}
120
121#category-privacy > .category-icon {
e184b661 122 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#privacy");
bb9362a9
RK
123}
124
125#category-privacy:hover > .category-icon,
126#category-privacy[selected] > .category-icon {
e184b661 127 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#privacy-active");
bb9362a9
RK
128}
129
130#category-security > .category-icon {
e184b661 131 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#security");
bb9362a9
RK
132}
133
134#category-security:hover > .category-icon,
135#category-security[selected] > .category-icon {
e184b661 136 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#security-active");
bb9362a9
RK
137}
138
139#category-sync > .category-icon {
e184b661 140 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#sync");
bb9362a9
RK
141}
142
143#category-sync:hover > .category-icon,
144#category-sync[selected] > .category-icon {
e184b661 145 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#sync-active");
bb9362a9
RK
146}
147
148#category-advanced > .category-icon {
e184b661 149 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#advanced");
bb9362a9
RK
150}
151
152#category-advanced:hover > .category-icon,
153#category-advanced[selected] > .category-icon {
e184b661 154 list-style-image: url("chrome://browser/skin/preferences/in-content/icons.svg#advanced-active");
bb9362a9
RK
155}
156
b3bf08b1
RK
157@media (max-width: 800px) {
158 .category-name {
159 display: none;
160 }
161}
162
bb9362a9
RK
163/* header */
164
d4d77dc0
RK
165#header-advanced {
166 border-bottom: none;
167 padding-bottom: 0;
bb9362a9
RK
168}
169
bb9362a9
RK
170.indent {
171 margin-top: 7px;
172 margin-bottom: 7px;
173}
174
175/* General Pane */
bb9362a9 176
d533ec21
RK
177#startupTable {
178 border-collapse: collapse;
179}
180
181#startupTable > tr > td {
182 padding: 0; /* remove the padding from html.css */
183}
184
185#startupTable > tr:not(:first-child) > td {
186 padding-top: 0.5em; /* add a spacing between the rows */
187}
188
189#startupTable > tr > .label-cell {
190 text-align: end;
191 width: 0; /* make the column as small as possible */
192}
193
194#startupTable > tr > .label-cell > label {
195 white-space: nowrap;
196}
197
198#startupTable > tr > .content-cell > menulist,
199#startupTable > tr > .content-cell > textbox {
200 width: calc(100% - 8px);
201 margin-left: 4px;
202 margin-right: 4px;
203}
204
205#startupTable > tr > .homepage-buttons {
206 display: flex;
207 flex-wrap: wrap;
208}
209
210#startupTable > tr > .homepage-buttons > .content-cell-item {
211 flex-grow: 1;
212}
213
e548e22e
RK
214#useFirefoxSync {
215 font-size: 90%;
dae45075 216 margin-inline-end: 8px !important;
e548e22e
RK
217}
218
219#getStarted {
220 font-size: 90%;
221}
222
a21f2959
RK
223#isNotDefaultLabel {
224 font-weight: bold;
bb9362a9
RK
225}
226
20752032
RK
227/* Content pane */
228#playDRMContentLink {
229 /* Line up with the buttons in the other grid bits: */
230 margin-left: 4px !important;
231 margin-right: 4px !important;
232}
233
fa703ff4 234#notificationsPolicyLearnMore {
dae45075 235 margin-inline-start: 1.5em !important;
fa703ff4
RK
236}
237
05148fed
RK
238#defaultFontSizeLabel {
239 /* !important needed to override common !important rule */
dae45075 240 margin-inline-start: 4px !important;
05148fed
RK
241}
242
bb9362a9
RK
243/* Applications Pane Styles */
244
3d64e0ce 245#applicationsContent {
3d64e0ce
RK
246 padding: 15px 0;
247}
248
249#filter {
dae45075 250 margin-inline-start: 0;
bb9362a9
RK
251}
252
368d0b7f
RK
253#handlersView {
254 height: 25em;
255}
256
bb9362a9 257#handlersView > richlistitem {
b3bf08b1 258 min-height: 36px !important;
bb9362a9
RK
259}
260
261.typeIcon {
dae45075
RK
262 margin-inline-start: 10px !important;
263 margin-inline-end: 9px !important;
bb9362a9
RK
264}
265
266.actionIcon {
dae45075
RK
267 margin-inline-start: 11px !important;
268 margin-inline-end: 8px !important;
bb9362a9
RK
269}
270
271.actionsMenu {
b3bf08b1 272 min-height: 36px;
bb9362a9
RK
273}
274
275.actionsMenu > menupopup > menuitem {
dae45075 276 padding-inline-start: 10px !important;
bb9362a9
RK
277}
278
279.actionsMenu > menupopup > menuitem > .menu-iconic-left {
dae45075 280 margin-inline-end: 8px !important;
bb9362a9
RK
281}
282
b1dfcf32
RK
283/* Privacy pane */
284
7327c957 285.doNotTrackLearnMore,
b1dfcf32
RK
286#trackingProtectionPBMLearnMore,
287#trackingProtectionLearnMore {
dae45075 288 margin-inline-start: 1.5em !important;
b1dfcf32 289 margin-top: 0;
7327c957 290 font-weight: normal;
b1dfcf32
RK
291}
292
e184b661
RK
293/* Collapse the non-active vboxes in decks to use only the height the
294 active vbox needs */
295#historyPane:not([selectedIndex="1"]) > #historyDontRememberPane,
296#historyPane:not([selectedIndex="2"]) > #historyCustomPane,
297#weavePrefsDeck:not([selectedIndex="1"]) > #hasAccount,
298#weavePrefsDeck:not([selectedIndex="2"]) > #needsUpdate,
13875a54
RK
299#weavePrefsDeck:not([selectedIndex="3"]) > #noFxaAccount,
300#weavePrefsDeck:not([selectedIndex="4"]) > #hasFxaAccount,
e184b661
RK
301#fxaLoginStatus:not([selectedIndex="1"]) > #fxaLoginUnverified,
302#fxaLoginStatus:not([selectedIndex="2"]) > #fxaLoginRejected {
303 visibility: collapse;
304}
305
bb9362a9
RK
306/* XXX This style is for bug 740213 and should be removed once that
307 bug has a solution. */
308description > html|a {
309 cursor: pointer;
310}
311
9168a62c
RK
312#noFxaAccount {
313 /* Overriding the margins from the base preferences.css theme file.
314 These overrides can be simplified by fixing bug 1027174 */
315 margin: 0;
316}
317
318#weavePrefsDeck > vbox > label,
319#weavePrefsDeck > vbox > groupbox,
320#weavePrefsDeck > vbox > description,
321#weavePrefsDeck > vbox > #pairDevice > label,
322#weavePrefsDeck > #needsUpdate > hbox > #loginError,
d74db938
RK
323#weavePrefsDeck > #hasFxaAccount > vbox > label,
324#weavePrefsDeck > #hasFxaAccount > hbox:not(#tosPP-normal) > label {
9ff3770c 325 /* no margin-inline-start for elements at the begin of a line */
dae45075 326 margin-inline-start: 0;
9168a62c
RK
327}
328
bb9362a9
RK
329#advancedPrefs {
330 padding-bottom: 0; /* no padding needed in inContent prefs */
331}
332
20752032 333#tabsElement {
dae45075 334/* margin-inline-end: 4px; / add the 4px end-margin of other elements */
20752032
RK
335}
336
bb9362a9
RK
337#telemetryLearnMore,
338#FHRLearnMore,
339#crashReporterLearnMore {
31bc2dc1
RK
340 /* provide some margin between the links and the label text */
341 /* !important is needed to override the rules defined in common.css */
dae45075 342 margin-inline-start: 20px !important;
bb9362a9
RK
343 /* center the links */
344 margin-top: 8px;
345 margin-bottom: 8px;
346}
347
fa703ff4 348.indent {
dae45075 349 /* !important needed to override margin-inline-start:0 !important; rule
fa703ff4 350 define in common.css for labels - but not in LCARStrek*/
dae45075 351 margin-inline-start: 33px /*!important*/;
fa703ff4
RK
352}
353
1437a48c
RK
354.text-link {
355 margin-bottom: 0;
8c5bee4f 356}
6edbc6e8 357
e184b661 358#showUpdateHistory {
dae45075 359 margin-inline-start: 0;
e184b661
RK
360}
361
7327c957
RK
362#fxaProfileImage {
363 -moz-user-focus: normal;
364}
365
6edbc6e8 366/**
c1080df6 367 * Dialog
6edbc6e8
RK
368 */
369
370#dialogOverlay {
371 background-color: rgba(0,0,0,0.75);
372 visibility: hidden;
373}
374
375#dialogBox {
c1080df6 376 background-color: #000000;
20752032 377 background-clip: content-box;
c1080df6
RK
378 color: #FF9F00;
379 /* font-size: 14px; */
6edbc6e8 380 border: 1px solid #9C9CFF;
c1080df6 381 border-radius: 10px;
6edbc6e8
RK
382 display: -moz-box;
383 margin: 0;
384 padding-right: 6px;
385 padding-left: 6px;
386}
387
388#dialogBox[resizable="true"] {
389 resize: both;
390 overflow: hidden;
c1080df6 391 min-height: 20em;
6edbc6e8
RK
392 min-width: 66ch;
393}
394
de5e780d 395#dialogBox > .groupbox-title {
dae45075
RK
396 margin-inline-start: 0;
397 margin-inline-end: 0;
de5e780d
RK
398/* padding: 3.5px 0;
399 background-color: #F1F1F1; */
400}
401
402#dialogTitle {
403 text-align: center;
b336389b 404 -moz-user-select: none;
c1080df6
RK
405}
406
6edbc6e8
RK
407.close-icon {
408 background-color: transparent !important;
409 border: none;
410 box-shadow: none;
6edbc6e8 411 padding: 0;
c9b0a396
RK
412 height: auto;
413 min-height: 16px;
414 min-width: 0;
6edbc6e8
RK
415}
416
d4d77dc0
RK
417#dialogBox > .groupbox-title > caption {
418 margin: 0;
419 border-radius: 1000px;
420 background-color: #A09090;
421}
422
6edbc6e8
RK
423#dialogBox > .groupbox-body {
424 -moz-appearance: none;
425 padding: 0;
426}
427
428#dialogFrame {
429 -moz-box-flex: 1;
430 /* Default dialog dimensions */
c1080df6 431 height: 20em;
6edbc6e8
RK
432 width: 66ch;
433}
434
e184b661
RK
435.largeDialogContainer.doScroll {
436 overflow-y: auto;
437 -moz-box-flex: 1;
438}
439
6edbc6e8 440/**
c1080df6 441 * End Dialog
6edbc6e8
RK
442 */
443
31bc2dc1
RK
444/**
445 * Font dialog menulist fixes
446 */
447
448#defaultFontType,
449#serif,
450#sans-serif,
451#monospace {
452 min-width: 30ch;
453}
454
b336389b
RK
455/**
456 * Sync
457 */
458
13875a54
RK
459#fxaProfileImage {
460 max-width: 60px;
461 border-radius: 50%;
7c1e433b 462 list-style-image: url(chrome://browser/skin/fxa/default-avatar.svg);
13875a54 463 margin-inline-end: 15px;
7c1e433b
RK
464 image-rendering: -moz-crisp-edges;
465}
466
467#fxaLoginStatus[hasName] #fxaProfileImage {
468 max-width: 80px;
13875a54
RK
469}
470
471#fxaProfileImage.actionable {
472 cursor: pointer;
473}
474
475#fxaProfileImage.actionable:hover {
1437a48c 476 box-shadow: 0px 0px 0px 1px #FFCF00;
13875a54
RK
477}
478
479#fxaProfileImage.actionable:hover:active {
1437a48c 480 box-shadow: 0px 0px 0px 1px #FF9F00;
13875a54
RK
481}
482
483#noFxaAccount {
484 /* Overriding the margins from the base preferences.css theme file.
485 These overrides can be simplified by fixing bug 1027174 */
486 margin: 0;
487 padding-top: 15px;
488}
489
490#fxaContentWrapper {
491 -moz-box-flex: 1;
492}
493
494#noFxaGroup {
495 -moz-box-flex: 1;
496 margin: 0;
497}
498
499#fxaContentWrapper {
500 padding-right: 15px;
501}
502
503#noFxaGroup > vbox,
504#fxaGroup {
505 -moz-box-align: start;
506}
507
508#syncStatusMessage {
509 visibility: collapse;
510 opacity: 0;
511 transition: opacity 1s linear;
512 padding: 14px 8px 14px 14px;
513 border-radius: 2px;
b336389b
RK
514}
515
13875a54
RK
516#syncStatusMessage[message-type] {
517 visibility: visible;
b336389b
RK
518 opacity: 1;
519}
520
13875a54
RK
521#syncStatusMessage[message-type="verify-success"] {
522 background-color: #008484;
523}
524
525#syncStatusMessage[message-type="verify-error"] {
526 background-color: #FF0000;
527}
528
529#syncStatusMessage[message-type="migration"] {
530 background-color: #FF9F00;
531}
532
533#syncStatusMessageWrapper {
534 -moz-box-flex: 1;
535 padding-right: 5px;
536}
537
538#syncStatusMessageTitle, #syncStatusMessageDescription {
539 color: #9C9CFF;
540}
541
542#syncStatusMessage[message-type="migration"] #syncStatusMessageTitle {
543 display: none;
544}
545
546#syncStatusMessageTitle {
547 font-weight: bold !important;
548 font-size: 16px;
549 line-height: 157%;
550 margin: 0 0 20px;
551}
552
e9fbfc3a
RK
553#syncStatusMessageDescription {
554 font-size: 14px;
555 line-height: 158%;
556 margin: 0 !important;
557}
558
559#syncStatusMessageClose {
560 margin: 0px;
561}
562
563#syncStatusMessage {
564 visibility: collapse;
565 opacity: 0;
566 transition: opacity 1s linear;
567 padding: 14px 8px 14px 14px;
568 border-radius: 2px;
569}
570
571#syncStatusMessage[message-type] {
572 visibility: visible;
573 opacity: 1;
574}
575
576#syncStatusMessage[message-type="verify-success"] {
577 background-color: #008484;
578}
579
580#syncStatusMessage[message-type="verify-error"] {
581 background-color: #FF0000;
582}
583
584#syncStatusMessage[message-type="migration"] {
585 background-color: #FFCF00;
586}
587
e9fbfc3a
RK
588#syncStatusMessageWrapper {
589 -moz-box-flex: 1;
590 padding-right: 5px;
591}
592
593#syncStatusMessageTitle, #syncStatusMessageDescription {
594 color: #A09090;
595}
596
597#syncStatusMessage[message-type="migration"] #syncStatusMessageTitle {
598 display: none;
599}
600
601#syncStatusMessageTitle {
602 font-weight: bold !important;
603 font-size: 16px;
604 line-height: 157%;
605 margin: 0 0 20px;
606}
607
13875a54
RK
608#syncStatusMessageDescription {
609 font-size: 14px;
610 line-height: 158%;
611 margin: 0 !important;
612}
613
614#syncStatusMessageClose {
615 margin: 0px;
616}
617
618#fxaSyncEngines > vbox:first-child {
619 margin-right: 80px;
620}
621
622#fxaSyncComputerName {
623 margin-inline-start: 0px;
624 -moz-box-flex: 1;
625}
626
627#tosPP-small-ToS {
19988d2d
RK
628 margin-bottom: 1em;
629}
630
631#fxaLoginRejectedWarning {
632 list-style-image: url("chrome://browser/skin/warning.svg");
633 margin: 4px 8px 0px 0px;
13875a54
RK
634}
635
636#noFxaCaption {
637 font-weight: bold;
638 margin-bottom: 11px;
639}
640
641.fxaSyncIllustration {
642 margin-top: 35px;
643}
644
645#syncOptions caption {
646 margin-bottom: 11px;
647}
648
19988d2d
RK
649#fxaSyncComputerName {
650 margin-left: 0px;
13875a54
RK
651}
652
653#noFxaDescription {
654 margin-bottom: 20px !important;
655}
656
657.separator {
658 border-bottom: 1px solid var(--in-content-header-border-color);
659}
660
661.fxaAccountBox {
662 border: 1px solid #A09090;
663 border-radius: 5px;
664 padding: 14px 20px 14px 14px;
665}
666
667#signedOutAccountBoxTitle {
668 font-weight: bold;
669}
670
671.fxaAccountBoxButtons {
672 margin-bottom: 0 !important;
673 margin-top: 11px;
674}
675
676.fxaAccountBoxButtons > * {
677 -moz-box-flex: 1;
678}
679
680.fxaAccountBoxButtons > button {
681 text-align: center;
682 padding-left: 11px;
683 padding-right: 11px;
684 margin: 0;
685 min-width: 0;
686}
687
688.fxaAccountBoxButtons > button:first-child {
689 margin-right: 14px !important;
690}
691
692.fxaSyncIllustration {
693 width: 231px;
694 list-style-image: url(chrome://browser/skin/fxa/sync-illustration.png)
695}
696
7c1e433b
RK
697#fxaLoginStatus[hasName] #fxaEmailAddress1 {
698 font-size: 1.1rem;
699}
700
13875a54
RK
701#fxaEmailAddress1,
702#fxaEmailAddress2,
703#fxaEmailAddress3 {
704 word-break: break-all;
705}
706
707.fxaFirefoxLogo {
708 list-style-image: url(chrome://browser/skin/fxa/logo.png);
709 max-width: 64px;
710 margin-inline-end: 14px;
711}
712
713.fxaMobilePromo {
7327c957
RK
714 margin-bottom: 20px;
715 margin-top: 25px;
13875a54
RK
716}
717
718#fxaLoginRejectedWarning {
719 list-style-image: url(chrome://browser/skin/warning.svg);
720 filter: drop-shadow(0 1px 0 hsla(206, 50%, 10%, .15));
721 margin: 4px 8px 0px 0px;
722}
723
724#syncOptions {
725 margin-bottom: 27.5px;
726}
727
7327c957
RK
728.androidLink {
729 background-image: url("chrome://browser/skin/fxa/android.png");
730}
731
732.iOSLink {
733 background-image: url("chrome://browser/skin/fxa/ios.png");
734}
735
13875a54
RK
736.androidLink,
737.iOSLink {
7327c957
RK
738 margin: 0 0 0 2px;
739 padding-left: 28px;
740 padding-top: 6px;
741 height: 28px;
742 background-repeat: no-repeat;
743 background-size: 24px 28px;
13875a54
RK
744}
745
746#tosPP-small {
747 margin-top: 20px;
748 margin-bottom: 20px;
749}
750
751@media (min-resolution: 1.1dppx) {
7327c957
RK
752 .androidLink {
753 background-image: url("chrome://browser/skin/fxa/android@2x.png");
754 }
755 .iOSLink {
756 background-image: url("chrome://browser/skin/fxa/ios@2x.png");
757 }
13875a54
RK
758 .fxaSyncIllustration {
759 list-style-image: url(chrome://browser/skin/fxa/sync-illustration@2x.png)
760 }
761 .fxaFirefoxLogo {
762 list-style-image: url(chrome://browser/skin/fxa/logo@2x.png);
763 }
13875a54
RK
764}
765
766/* === END shared/incontentprefs/preferences.inc.css === */
bb9362a9 767
0bcd5587
RK
768caption {
769}
770
bb9362a9 771.indent-small {
dae45075 772 margin-inline-start: 10px;
bb9362a9
RK
773}
774
775@media (min-resolution: 2dppx) {
776 checkbox:hover::before,
777 checkbox[checked]::before {
778 }
779
780 checkbox[checked]::before {
781 }
bb9362a9 782}