1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228 |
- @import "svg-dimensions";
- @import "font";
- $highlight-color: hsl(205,90%,60%);
- $color: hsl(207,7%,29%);
- $light-color: hsl(206,8%,50%);
- $dark-color: hsl(207,7%,19%);
- $subtle-color: hsl(207,14%,67%);
- $dropshadow: 0 2px 10px hsla(0,0%,0%,.13);
- $light-bg: hsl(209,26%,98%);
- $dark-bg: hsl(209,22%,96%);
- $border: hsl(209,13%,95%);
- $dark-border: hsl(210,14%,91%);
- @mixin desktop {
- @media screen and (min-width: 1260px) {
- @content;
- }
- }
- @mixin small-desktop {
- @media screen and (max-width: 1260px) {
- @content;
- }
- }
- @mixin tablet {
- @media screen and (min-width: 768px) {
- @content;
- }
- }
- @mixin phone {
- @media screen and (max-width: 920px) {
- @content;
- }
- }
- /* sets LTR and RTL within the same style call */
- @mixin bidi-style($prop, $value, $inverse-prop, $default-value) {
- #{$prop}: $value;
- html[dir=rtl] & {
- #{$inverse-prop}: $value;
- #{$prop}: $default-value;
- }
- }
- /* adds a property only in RTL */
- @mixin rtl($prop, $value) {
- html[dir=rtl] & {
- #{$prop}: $value;
- }
- }
- /* adds a property only in LTR */
- @mixin ltr($prop, $value) {
- html[dir=ltr] & {
- #{$prop}: $value;
- }
- }
- %clickable {
- cursor: pointer;
- user-select: none;
- touch-action: manipulation;
- }
- %box {
- margin: 10px;
- border-radius: 2px;
- background: white;
- color: $color;
- box-shadow: $dropshadow;
- @include phone {
- margin: 5px;
- }
- }
- * {
- box-sizing: border-box;
- outline: none;
- }
- html {
- font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 16px;
- line-height: 1.5;
- color: $light-color;
-
- @include phone {
- font-size: 17px;
- }
- }
- body {
- margin: 0;
- overflow-y: scroll;
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- }
- h1 {
- font-size: 2.5em;
- line-height: 1.12;
- margin: .8em 0 .6em;
- font-weight: normal;
- overflow-wrap: break-word;
- word-wrap: break-word;
- word-break: break-word;
- hyphens: auto;
-
- &:first-child {
- margin-top: 0;
- }
-
- @include phone {
- font-size: 28px;
- margin: 1em 0 .8em;
- }
- }
- h2 {
- font-size: 1.8em;
- font-weight: 500;
- line-height: 1.1;
- margin: 1em 0 .4em;
-
- @include phone {
- font-size: 24px;
- margin: 1.2em 0 .5em;
- }
- }
- h3 {
- font-size: 1.4em;
- font-weight: 500;
- line-height: 1.2;
- margin: 1.33em 0 .55em;
- letter-spacing: .015em;
-
- @include phone {
- font-size: 19px;
- line-height: 1.3;
- margin: 1.2em 0 .75em;
- }
- }
- h4 {
- font-size: 1em;
- font-weight: bold;
- line-height: 1.25;
- margin: 1.33em 0 .5em;
- letter-spacing: .015em;
- }
- p,
- ul,
- ol {
- margin: 0 0 1em;
-
- &:last-child {
- margin-bottom: 0;
- }
- }
- ul,
- ol {
- padding-left: 1.5em;
- }
- strong,
- b {
- font-weight: 500;
- }
- .topbar {
- font-size: 0.875em;
- display: flex;
- align-items: center;
- background: hsl(200,87%,45%);
- color: #fff;
- height: 45px;
- padding: 0 17px;
- box-shadow: 0 -1px hsla(0,0%,0%,.1) inset;
- &[data-color="yellow"] {
- color: hsl(45,98%,17%);
- background: hsl(45,98%,63%);
- }
- &[data-color="green"] {
- color: white;
- background: hsl(145,52%,45%);
- }
- &[data-color="red"] {
- color: white;
- background: hsl(19,90%,51%);
- }
- &[data-color="grey"] {
- color: hsl(45,98%,17%);
- background: hsl(0,0%,80%);
- }
- &-tag {
- font-weight: bold;
- margin-right: 17px;
- text-transform: uppercase;
- letter-spacing: 0.05em;
- }
- &-hint {
- font-size: 13px;
- }
- &-controls {
- margin-left: auto;
- display: flex;
- }
- &-btn {
- display: flex;
- align-items: center;
- text-decoration: none;
- color: inherit;
- text-transform: uppercase;
- font-size: 12px;
- letter-spacing: 0.05em;
- border-radius: 4px;
- height: 30px;
- padding: 0 11px;
- border: 1px solid hsla(0,0%,0%,.1);
-
- & + & {
- margin-left: 10px;
- }
- }
- }
- .header {
- background: $light-bg;
- border-bottom: 1px solid $dark-border;
- position: relative;
- padding: .3em 0 .9em;
- .container {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- .logo {
- margin: 0;
- display: flex;
- align-items: center;
- font-size: inherit;
-
- a {
- text-decoration: none;
- display: block;
- color: inherit;
- }
-
- img {
- height: 2em;
- width: auto;
- vertical-align: middle;
- }
- }
- .menu {
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- display: flex;
- align-items: center;
- margin-right: -1em;
- font-size: 14px;
- &-item {
- padding: .5em 1em;
- white-space: nowrap;
- text-decoration: none;
- color: inherit;
- line-height: 2em;
- }
- .icon {
- fill: currentColor;
- vertical-align: text-top;
- }
- }
- .search {
- width: 100%;
- margin: .9em 0 .6em;
-
- &-field {
- position: relative;
- font-size: 17px;
-
- input[type="search"] {
- appearance: none;
- width: 100%;
- font-size: inherit;
- font-family: inherit;
- background: white;
- border: 1px solid $border;
- border-radius: 999px;
- padding: .75em 1.1em .75em 2.8em;
- outline: none;
- font-weight: 300;
-
- &::placeholder {
- color: $subtle-color;
- text-overflow: ellipsis;
- }
- }
- .icon {
- position: absolute;
- left: 1.1em;
- top: 50%;
- margin-top: -.54em;
- fill: $dark-color;
- width: 1.08em;
- height: 1.08em;
- }
- }
- &-results {
- list-style: none;
- padding: .5em 0 0;
-
- .section {
- margin-bottom: 2px;
- }
- }
- &-message {
- display: block;
- margin: 2em 2em 1em;
- text-align: center;
- color: $subtle-color;
- }
- }
- .result {
- margin: 0 .25em;
-
- a {
- color: inherit;
- text-decoration: none;
- display: block;
- border: 1px solid transparent;
- border-radius: 3px;
- padding: .8em;
- padding-left: 2.75em;
- position: relative;
-
- &:hover {
- border-color: hsl(209,13%,93%);
- background: $dark-bg;
- }
- }
- &-icon {
- position: absolute;
- left: .6em;
- top: .6em;
- color: hsl(210,22%,84%);
-
- .icon {
- width: 1.5em;
- height: 1.5em;
- fill: currentColor;
- vertical-align: top;
- }
- [data-font]{
- font-size: 1.5em;
- line-height: 1em;
- }
- }
- &-title {
- font-size: inherit;
- font-weight: 500;
- color: hsl(206,8%,38%);
- margin: 0 0 .25em;
- }
-
- &-category {
- color: $subtle-color;
-
- &:after {
- content: " — ";
- }
- }
- &-category,
- &-preview {
- font-size: 14px;
- }
- &-preview {
- color: hsl(207,12%,50%);
- }
- }
- .container {
- margin: 0 auto;
- width: 100%;
- max-width: 900px;
-
- @include phone {
- padding-left: 1em;
- padding-right: 1em;
- }
- }
- .main {
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- margin: 30px 0 40px;
-
- .header + & {
- margin-top: 0;
- }
-
- .container {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- }
- .main--categories {
- h1 {
- color: $dark-color;
- }
- }
- .main--error {
- text-align: center;
-
- .container {
- margin: auto;
- flex: none;
- align-items: center;
- }
- .box {
- display: table;
- margin: 0 auto;
- }
-
- .icon {
- width: 120px;
- height: 118px;
- fill: hsl(41,100%,49%);
- + h1 {
- margin-top: .66em;
- }
- }
- ul {
- display: table;
- margin: 0 auto;
- text-align: left;
- }
- }
- .breadcrumbs {
- margin: 0;
- padding: 0;
- list-style: none;
- font-size: 13px;
-
- .container {
- padding-top: 11px;
- padding-bottom: 11px;
- display: flex;
- border-bottom: 1px solid $border;
- }
- }
- .breadcrumb {
- position: relative;
- padding: 6px 20px 6px 11px;
- color: inherit;
- text-decoration: none;
- white-space: nowrap;
- overflow: hidden;
- line-height: 20px;
- text-overflow: ellipsis;
-
- @include phone {
- .icon-knowledge-base + span {
- display: none;
- }
- }
-
- &:first-child {
- padding-left: 2px;
- }
- &[href]:hover {
- color: $dark-color;
- }
- &:last-child {
- &:before,
- &:after {
- display: none;
- }
- }
- &:before,
- &:after {
- content: "";
- position: absolute;
- width: 1px;
- height: 40%;
- background: $color;
- opacity: .2;
- right: 0;
- top: 0;
- transform-origin: bottom;
- transform: translateY(13%) rotate(-37deg);
- }
- &:after {
- top: 50%;
- transform-origin: top;
- transform: translateY(-13%) rotate(37deg);
- }
- .icon {
- fill: currentColor;
- object-fit: contain;
- margin-top: -1px;
- width: 16px;
- height: 16px;
-
- &-knowledge-base {
- width: 20px;
- height: 20px;
- }
- }
- .icon,
- [data-font] {
- margin-right: 3px;
- vertical-align: middle;
- opacity: .75;
- }
- [data-font] {
- display: inline-block;
- margin-top: -3px;
- text-align: center;
- }
- }
- .sections-empty {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- padding: 1em;
- margin-top: 2.05em;
- color: $subtle-color;
- border: 1px dashed $dark-border;
- border-radius: 3px;
- }
- .sections {
- margin: 0;
- padding: 0;
- list-style: none;
- &:first-child {
- margin-top: 30px;
- }
- & + hr {
- border: none;
- border-top: 1px solid hsl(219,13%,95%);
- margin: 28px 0 13px;
- }
- }
- %box-link {
- display: block;
- text-decoration: none;
- }
- .box {
- @extend %box;
- padding: 20px;
- }
- .sections--list {
- &:first-child {
- margin-top: 20px;
- }
- a {
- @extend %box-link;
- }
- .section-inner {
- @extend %box;
- margin: 15px 0;
- padding: 10px 15px;
- display: flex;
- align-items: center;
-
- span {
- display: block;
- }
- }
- .not-published-note {
- margin-left: .5em;
- }
- }
- .sections--grid {
- display: flex;
- flex-wrap: wrap;
- margin: -10px;
-
- @include phone {
- margin: -5px;
- }
- .section {
- width: 33.33%;
-
- @include phone {
- width: 50%;
- }
- @include desktop {
- width: 25%;
- }
- a {
- padding-bottom: 72%;
- position: relative;
- line-height: 1.3;
- @extend %box-link;
- }
- &--subsection {
- display: none;
- }
- &-inner {
- @extend %box;
- position: absolute;
- padding: 10px;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- text-align: center;
-
- span {
- display: block;
- }
- }
- &-category,
- &-preview {
- display: none;
- }
- }
- }
- .sections--compact-text {
- display: grid;
- grid-gap: 20px;
- grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
- font-size: 14px;
-
- @include phone {
- display: block;
- }
- .section {
- margin: 0;
-
- @include phone {
- margin-bottom: 10px;
-
- &:last-child {
- margin-bottom: 0;
- }
- }
-
- a {
- line-height: 1.5;
- text-decoration: none;
- }
- > a {
- flex: 1 1 0%;
- color: inherit;
- }
- &-inner {
- flex: 1 1 0%;
- margin: 0;
- padding: 1.1em;
- display: block;
- color: inherit;
- overflow: hidden;
- background: white;
- }
- &-title {
- font-size: 17px;
- margin: 0 0 1px;
- }
- &-category {
- margin-bottom: 1px;
- order: -1;
- opacity: .6;
- }
- &-preview {
- &:before {
- content: " — ";
- color: initial;
- }
- }
- }
- }
- .section-category {
- font-size: 14px;
- }
- .section-preview {
- margin-bottom: 1em;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .button {
- @extend %box;
- appearance: none;
- font-family: inherit;
- font-size: 16px;
- border: none;
- background: hsl(210,14%,97%);
- margin: 0;
- padding: 5px 10px;
- min-width: 62px;
- position: relative;
- outline: none;
- text-decoration: none;
- &--small {
- padding: 3px 8px;
- font-size: 14px;
- }
- }
- .icon,
- [data-font] {
- .section-inner & {
- color: $highlight-color;
- fill: currentColor;
- margin: 0 9px 0 3px;
- line-height: inherit;
- }
- }
- [data-font] {
- font-style: normal;
- text-rendering: auto;
- font-feature-settings: 'liga';
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-size: 16px;
- .sections--grid .section-inner & {
- font-size: 42px;
- margin: 10px 0 20px;
- line-height: 1;
-
- @include phone {
- font-size: 35px;
- margin: 10px 0 13px;
- }
- }
- }
- .article {
- flex: 1;
- color: $dark-color;
- }
- .article-content {
- display: block;
- p,
- ol,
- ul {
- margin: 0 0 1em;
- }
- table, pre, blockquote {
- margin-bottom: 16px;
-
- &:first-child {
- margin-top: 6px;
- }
- &:last-child {
- margin-bottom: 6px;
- }
- }
- table {
- table-layout: auto;
- word-break: break-all;
- border-style: hidden;
- border-collapse: collapse;
- font-variant-numeric: lining-nums tabular-nums;
- box-shadow:
- 0 0 0 1px hsl(210,5%,92%),
- 0 2px hsl(210,5%,92%);
- border-radius: 2px;
- }
- thead tr:first-child {
- th {
- &:first-child {
- border-top-left-radius: 2px;
- }
- &:last-child {
- border-top-right-radius: 2px;
- }
- }
- }
- tbody tr:last-child {
- td {
- &:first-child {
- border-bottom-left-radius: 2px;
- }
- &:last-child {
- border-bottom-right-radius: 2px;
- }
- }
- }
- td, th {
- padding: 6px 10px;
- border: 1px solid hsl(210,5%,92%);
- }
- th {
- background: hsl(210,5%,96%);
- }
- td {
- text-align: "." center;
- }
- table col {
- width: auto;
- }
- blockquote {
- padding: 8px 12px;
- border-left: 5px solid #eee;
- }
- code {
- border: none;
- background: hsl(0,0%,97%);
- white-space: pre-wrap;
- }
- pre {
- padding: 12px 15px;
- font-size: 13px;
- line-height: 1.45;
- background: hsl(0,0%,97%);
- white-space: pre-wrap;
- border-radius: 3px;
- border: none;
- overflow: auto;
- }
- hr {
- margin-top: 13px;
- margin-bottom: 13px;
- border: none;
- border-top: 1px solid hsl(210,14%,91%);
- }
- }
- .attachments {
- padding: 2rem 0 2rem 4rem;
- margin: 2rem 0 !important;
- list-style: none;
- border-top: 1px solid $border;
- position: relative;
-
- @include phone {
- padding-left: 2.8rem;
- }
-
- .icon-paperclip {
- position: absolute;
- left: 1.2rem;
- top: 2rem;
- width: 2rem;
- height: 2rem;
- fill: hsl(208,13%,81%);
-
- @include phone {
- left: .5rem;
- }
- }
-
- &-title {
- text-transform: uppercase;
- font-size: .8em;
- font-weight: bold;
- color: $light-color;
- padding: 0 .8rem .2rem;
- }
- }
- .attachment {
- text-decoration: none;
- border-bottom: 1px solid $border;
- display: block;
- padding: .5rem .8rem;
- font-size: .8em;
-
- &:hover {
- background: $light-bg;
- }
-
- &:last-child {
- border-bottom: none;
- }
-
- &-size {
- color: $subtle-color;
- font-size: .9em;
- }
- }
- .feedback {
- @extend %box;
- &-buttons {
- margin-top: 10px;
- }
- }
- .footer {
- border-top: 1px solid $dark-border;
- background: $light-bg;
- color: hsl(210,8%,50%);
- font-size: 12px;
- &-menu {
- padding: 10px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- .language-picker {
- display: flex;
- position: relative;
- }
- .not-published-note {
- margin: .1em 0 0;
- font-size: .65em;
- color: hsl(0,0,50%);
- }
- .btn {
- display: inline-block;
- padding: 10px 24px 9px;
- border: 1px solid hsla(0,0%,0%,.1);
- color: inherit;
- outline: none !important;
- border-radius: 4px;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- @extend %clickable;
-
- &--onDark {
- border-color: hsla(0,0%,100%,.3);
- color: white;
- }
-
- &--action {
- text-transform: uppercase;
- font-size: 0.9em;
- letter-spacing: 0.07em;
- height: 2.75em;
- padding: 0 11px !important;
- display: inline-flex;
- align-items: center;
-
- .icon {
- margin: 0 5px 0 -2px;
- fill: currentColor;
- &:only-child {
- margin: 0;
- }
- &:last-child {
- margin: 0 -2px 0 7px;
- }
- }
- &.btn--slim {
- padding-left: 7px !important;
- padding-right: 7px !important;
-
- .btn-label {
- @include bidi-style(margin-left, 0, margin-right, 0);
- }
- }
- }
- &--split--first {
- @include bidi-style(border-radius, 3px 0 0 3px, border-radius, 0 3px 3px 0);
- }
- &--split,
- &--split--last {
- border-radius: 0;
- @include bidi-style(border-left-width, 0, border-right-width, 1px);
- @include ltr(margin-left, 0 !important);
- @include rtl(margin-right, 0 !important);
- }
- &--split--last {
- @include bidi-style(border-radius, 0 3px 3px 0, border-radius, 3px 0 0 3px);
- }
- }
- .btn[data-toggle="dropdown"] {
- text-decoration: none;
- }
- .dropdown {
- &-menu {
- display: none;
- position: absolute;
- z-index: 1;
- top: 100%;
- left: 0;
- margin: 12px 0 0;
- padding: 0;
- list-style: none;
- font-size: 14px;
- border-radius: 3px;
- box-shadow:
- 0 50px 100px hsla(200,30%,30%,.1),
- 0 15px 35px hsla(200,30%,30%,.15),
- 0 5px 15px hsla(0,0%,0%,.1);
- background: white;
- padding: 10px;
-
- &.is-open {
- display: block;
- }
-
- &:before {
- content: "";
- position: absolute;
- top: -6px;
- left: 30px;
- width: 20px;
- height: 20px;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- border-radius: 3px 0 20px 0;
- background: white;
- }
- &-right {
- left: auto;
- right: 0;
-
- &:before {
- left: auto;
- right: 30px;
- }
- }
- &-up {
- top: auto;
- bottom: 100%;
- margin-top: 0;
- margin-bottom: 12px !important;
-
- &:before {
- top: auto;
- bottom: -6px;
- border-radius: 20px 0 3px 0;
- }
- }
- li {
- &:last-child a {
- margin-bottom: 0;
- }
- &.is-selected {
- a {
- font-weight: bold;
- }
- .icon {
- display: block;
- }
- }
- &.is-disabled {
- cursor: default;
-
- a {
- color: hsl(0,0%,72%);
-
- &:hover,
- &:focus {
- background: none;
- }
- }
- }
- }
-
- a {
- color: black;
- display: flex;
- align-items: center;
- padding: 8px 12px;
- white-space: nowrap;
- text-decoration: none;
- border-radius: 3px;
-
- &:hover,
- &:focus {
- background: hsl(200,5%,95%);
- }
- }
- .icon {
- display: none;
- margin-right: 7px;
- vertical-align: middle;
- }
- }
- }
- .kb-item--empty {
- opacity: .5;
- }
- .language-banner {
- background: hsl(234,10%,19%);
- color: hsl(234,5%,80%);
- display: flex;
-
- &-text {
- font-size: 14px;
- line-height: 22px;
- margin: 7px;
- }
-
- .button {
- margin-left: 5px;
- }
- .icon-mood-supergood {
- fill: currentColor;
- width: 22px;
- height: 22px;
- margin: 8px 2px 0 10px;
- vertical-align: middle;
- }
- .close {
- margin-left: auto;
- padding: 7px 5px 0;
- fill: currentColor;
- width: 34px;
- @extend %clickable;
- }
- }
|