diff --git a/.gitmodules b/.gitmodules index 6546fac8da03df6a198464e0d146d07330e48bc6..6962d19ed2e4299f7daae2c0b3e78e4b0a4a10a3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "style/vanillaframework"] - path = style/vanillaframework - url = https://github.com/vanilla-framework/vanilla-framework.git +[submodule "themes/docdock"] + path = themes/docdock + url = https://git.card10.badge.events.ccc.de/card10/dockdock.git diff --git a/config.toml b/config.toml index f4a437f6826ac7ae08979f89c5a6869441c33ada..dd6c0d283ce318775b6b53d0eeb8838ae50a32a8 100644 --- a/config.toml +++ b/config.toml @@ -1,20 +1,23 @@ baseURL = "/" languageCode = "en-us" title = "card10" - -enableGitInfo = true +theme = "docdock" [params] -wiki_url = "https://git.card10.badge.events.ccc.de/card10/logix" -wiki_branch = "master" +editURL = "https://git.card10.badge.events.ccc.de/card10/logix/-/blob/master/" +disableNextPrev = true +ordersectionsby = "weight" +disableNavChevron = true +[outputs] +home = [ "HTML", "RSS", "JSON"] -[[menus.upper]] - name = "Firmware Documentation" +[[menu.shortcuts]] + name = "<i class='fa fa-book'></i> <div class='sc-text'>Firmware Documentation</div>" url = "https://firmware.card10.badge.events.ccc.de" weight = 10 -[[menus.upper]] - name = "GitLab" +[[menu.shortcuts]] + name = "<i class='fa fa-gitlab'></i> <div class='sc-text'>GitLab</div>" url = "https://git.card10.badge.events.ccc.de/card10" weight = 20 diff --git a/layouts/404.html b/layouts/404.html index 985278a74a02f127b169c0775e3238f109febe0d..05ed50848928c9087002450d42dedd880c6a6b23 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -1,4 +1,5 @@ -{{ partial "default_header.html" . }} +{{ partial "flex/head.html" . }} +{{ partial "flex/body-beforecontent.html" . }} <div class="p-content"> <h1 class="p-heading--one">404 - NotFound</h1> <div class="p-notification--caution"> @@ -24,4 +25,4 @@ document.getElementById("filenameHREF").href = "{{$.Site.Params.Wiki_URL}}/new/{{$.Site.Params.Wiki_Branch}}/" + path + ".md"; </script> </div> -{{ partial "default_footer.html" . }} +{{ partial "flex/body-aftercontent.html" . }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html deleted file mode 100644 index ee2596da9e47972a6325d2ee143523a3efebe6ac..0000000000000000000000000000000000000000 --- a/layouts/_default/list.html +++ /dev/null @@ -1,65 +0,0 @@ -{{ partial "default_header.html" . }} -<aside class="p-aside"> - <div id="tree"> - <div class="mobile"> - <a href="#no-tree" class="p-button has-icon"> - <i class="p-icon--plus"></i> - <span>Hide Tree</span> - </a> - </div> - {{if not .Page.IsHome }} - <div class="p-aside__section"> - <h4 class="p-aside__header">{{.Title}}</h4> - <nav class="p-aside__nav"> - <ul class="p-list"> - {{range .Page.Pages}} - <li><a class="p-aside__link" href="{{.Permalink}}">{{.Title}}</a></li> - {{end}} - </ul> - </nav> - </div> - {{end}} - {{range .Sections}} - {{if not .Draft}} - <div class="p-aside__section"> - <h4 class="p-aside__header"><a class="p-aside__link" href="{{.Permalink}}">{{.Title}}</a></h4> - <nav class="p-aside__nav"> - <ul class="p-list"> - {{range .Sections}} - {{if not .Draft}} - <li><a class="p-aside__link" href="{{.Permalink}}">{{.Title}}</a></li> - {{end}} - {{end}} - - {{if and (ne (len .Sections) 0) (ne (len .Pages) 0) }} - <li class="divider"></li> - {{end}} - - {{range .Pages}} - {{if not .Draft}} - <li><a class="p-aside__link" href="{{.Permalink}}">{{.Title}}</a></li> - {{end}} - {{end}} - </ul> - </nav> - </div> - {{end}} - {{end}} - </div> - <div id="no-tree" class="mobile"> - <a href="#tree" class="p-button has-icon"> - <i class="p-icon--plus"></i> - <span>Show Tree</span> - </a> - </div> -</aside> -<div class="p-content"> - <h1 class="p-heading--one">{{.Title}}</h1> - {{if not .Draft }} - {{.Content}} - {{else}} - This document is in progress, and could not be rendered yet. - <a href="https://github.com/gohugoio/hugo/issues/6215">Track hugo bug of this if</a> - {{end}} -</div> -{{ partial "default_footer.html" . }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html deleted file mode 100644 index eb0878d1b7e57b99ad65c6269ea5b53846497294..0000000000000000000000000000000000000000 --- a/layouts/_default/single.html +++ /dev/null @@ -1,6 +0,0 @@ -{{ partial "default_header.html" . }} -<div class="p-content"> - <h1 class="p-heading--one">{{.Title}}</h1> - {{ .Content }} -</div> -{{ partial "default_footer.html" . }} diff --git a/layouts/partials/default_footer.html b/layouts/partials/default_footer.html deleted file mode 100644 index 58d1f3bd6f454aa39bd55d07ed7d936f0262ba18..0000000000000000000000000000000000000000 --- a/layouts/partials/default_footer.html +++ /dev/null @@ -1,9 +0,0 @@ - {{ if ne .Page.GitInfo nil }} - <footer class="p-footer"> - <span>{{.Lastmod}}</span> - <a href="{{.Site.Params.Wiki_URL}}/commit/{{.GitInfo.Hash}}">{{.GitInfo.AbbreviatedHash}}</a> - <span>{{.GitInfo.Subject}}</span> - </footer> - {{ end }} - </body> -</html> diff --git a/layouts/partials/default_header.html b/layouts/partials/default_header.html deleted file mode 100644 index ea7dce750bc7bb6bcc29f630a0e2a9e0bd91534e..0000000000000000000000000000000000000000 --- a/layouts/partials/default_header.html +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <title>{{.Site.Title}} - {{.Title}}</title> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="stylesheet" href="/css/main.css" /> - <link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> - <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> - <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> - <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> - <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> - <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> - <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> - <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> - <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> - <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> - <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> - <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> - <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> - <link rel="manifest" href="/manifest.json"> - <meta name="msapplication-TileColor" content="#ffffff"> - <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> - <meta name="theme-color" content="#ffffff"> - </head> - <body> - <div id="app"> - <header id="navigation" class="p-navigation"> - <div class="p-navigation__links logo"> - <a class="p-navigation__link" href="/">card10</a> - </div> - <div class="p-navigation__banner"> - <a href="#navigation" class="p-navigation__toggle--open" title="menu">Menu</a> - <a href="#navigation-closed" class="p-navigation__toggle--close" title="close menu">Close menu</a> - </div> - <nav class="p-navigation__nav" role="menubar"> - <span class="u-off-screen"> - <a href="#main-content">Jump to main content</a> - </span> - <ul class="p-navigation__links" role="menu"> - {{ range site.Menus.upper }} - <li class="p-navigation__link"><a{{ if eq "http" (slicestr .URL 0 4) }} target="_blank"{{ end }} href="{{.URL}}">{{.Name}}</a></li> - {{ end }} - </ul> - <ul class="p-navigation__links u-float-right" role="menu"> - <li class="p-navigation__link edit"> - {{ with $.File }} - <a target="_blank" href="{{$.Site.Params.Wiki_URL}}/edit/{{$.Site.Params.Wiki_Branch}}/{{.Path}}">Edit</a> - {{ else }} - not source found - {{ end }} - </li> - </ul> - </nav> - </header> - <ul class="p-breadcrumbs"> - {{ template "breadcrumbnav" (dict "p1" . "p2" .) }} - </ul> - {{ define "breadcrumbnav" }} - {{ if .p1.Parent }} - {{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }} - {{ else if not .p1.IsHome }} - {{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }} - {{ end }} - <li class="p-breadcrumbs__item{{ if eq .p1 .p2 }} active{{ end }}"> - <a href="{{ .p1.Permalink }}">{{ .p1.Title }}</a> - </li> - {{ end }} diff --git a/static/css/main.css b/static/css/main.css deleted file mode 100644 index ebb6d60f2ae87dbca39b553725ea91876929c086..0000000000000000000000000000000000000000 --- a/static/css/main.css +++ /dev/null @@ -1,5807 +0,0 @@ -@charset "UTF-8"; -.p-switch__slider::before, .p-switch__slider, .p-notification--information, .p-notification--negative, .p-notification--caution, .p-notification--positive, .p-notification, .p-subnav__items, .p-modal__dialog, .p-contextual-menu__dropdown, .p-code-copyable, .p-card--muted, .p-card--highlighted, .p-card { - border-radius: 0.125rem; -} - -.p-switch__slider::before, .p-notification--information, .p-notification--negative, .p-notification--caution, .p-notification--positive, .p-notification, .p-subnav__items, .p-modal__dialog, .p-contextual-menu__dropdown, .p-card--muted, .p-card--highlighted { - box-shadow: 0 1px 5px 1px rgba(17, 17, 17, 0.2); -} - -.p-subnav__items, .p-code-copyable, .p-card { - border: 1px solid #cdcdcd; -} - -.p-card--muted { - background-color: #f7f7f7; - color: #111; -} - -.p-code-copyable, .p-notification--information, .p-notification--negative, .p-notification--caution, .p-notification--positive, .p-notification, .p-modal__dialog, .p-contextual-menu__dropdown, .p-card--highlighted, .p-card { - background-color: #fff; - color: #111; -} - -.p-notification--information, .p-notification--negative, .p-notification--caution, .p-notification--positive, .p-notification, .p-modal__dialog, .p-contextual-menu__dropdown, .p-card--highlighted, .p-card { - margin-bottom: 1.5rem; - overflow: auto; - padding: 1rem; -} - -.p-accordion__group + .p-accordion__group::after, .p-tabs__list::after, [class*=p-strip].is-bordered::after { - background-color: #cdcdcd; - content: ""; - height: 1px; - left: 0; - position: absolute; - right: 0; -} - -.p-tabs__list::after, [class*=p-strip].is-bordered::after { - bottom: 0; -} - -.p-accordion__group + .p-accordion__group::after { - top: 0; -} - -.u-hide-text, .p-switch__slider span, .p-code-copyable__action, .p-icon--ubuntu, .p-icon--canonical, .p-icon--youtube, .p-icon--linkedin, .p-icon--instagram, .p-icon--twitter, .p-icon--google, .p-icon--facebook, .p-icon--spinner, .p-icon--question, .p-icon--user, .p-icon--share, .p-icon--success, .p-icon--search, .p-icon--copy, .p-icon--menu, .p-icon--code, .p-icon--drag, .p-icon--external-link, .p-icon--warning, .p-icon--error, .p-icon--delete, .p-icon--information, .p-icon--help, .p-icon--close, .p-icon--collapse, .p-icon--expand, .p-icon--anchor, .p-icon--contextual-menu, .p-icon--plus, .p-icon--minus { - overflow: hidden; - text-indent: calc(100% + 10rem); - white-space: nowrap; -} - -.u-clearfix::after, .p-stepped-list::after, .p-list::after, .p-inline-images::after { - clear: both; - content: ""; - display: block; -} - -.u-no-margin--bottom:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(p):not(small):not([class*=p-heading]) { - margin-bottom: 0 !important; -} - -@media (max-width: 772px) { - .p-media-object--large .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-heading--one, h1.u-no-margin--bottom { - margin-bottom: -0.165rem !important; - } -} -@media (min-width: 772px) { - .p-media-object--large .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-heading--one, h1.u-no-margin--bottom { - margin-bottom: -0.2rem !important; - } -} -@media (min-width: 1680px) { - .p-media-object--large .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-heading--one, h1.u-no-margin--bottom { - margin-bottom: -0.15rem !important; - } -} - -@media (max-width: 772px) { - .u-no-margin--bottom.p-heading--two, h2.u-no-margin--bottom { - margin-bottom: -0.1rem !important; - } -} -@media (min-width: 772px) { - .u-no-margin--bottom.p-heading--two, h2.u-no-margin--bottom { - margin-bottom: -0.2rem !important; - } -} - -@media (max-width: 772px) { - .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-heading--three, h3.u-no-margin--bottom { - margin-bottom: -0.5rem !important; - } -} -@media (min-width: 772px) { - .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-heading--three, h3.u-no-margin--bottom { - margin-bottom: -0.1rem !important; - } -} - -@media (max-width: 772px) { - .p-pull-quote .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-modal__title, .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-matrix__title, .u-no-margin--bottom.p-heading--four, h4.u-no-margin--bottom { - margin-bottom: -0.3rem !important; - } -} -@media (min-width: 772px) { - .p-pull-quote .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-modal__title, .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-matrix__title, .u-no-margin--bottom.p-heading--four, h4.u-no-margin--bottom { - margin-bottom: -0.05rem !important; - } -} -@media (min-width: 1680px) { - .p-pull-quote .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-modal__title, .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-matrix__title, .u-no-margin--bottom.p-heading--four, h4.u-no-margin--bottom { - margin-bottom: -0 !important; - } -} - -.p-notification__response, .p-card__content, dd.u-no-margin--bottom, p.u-no-margin--bottom, .u-no-margin--bottom.p-heading--six, h6.u-no-margin--bottom, .u-no-margin--bottom.p-heading--five, h5.u-no-margin--bottom { - margin-bottom: 0.1rem !important; -} - -.p-table--mobile-card td.u-no-margin--bottom::before, -.p-table--mobile-card tbody th.u-no-margin--bottom::before, .u-no-margin--bottom.p-muted-heading, thead th.u-no-margin--bottom, .u-no-margin--bottom.p-tooltip__message, .u-no-margin--bottom.p-form-validation__message, .u-no-margin--bottom.p-form-help-text, small.u-no-margin--bottom, -.u-no-margin--bottom.p-text--small, .u-no-margin--bottom.p-media-object__meta-list-item, .u-no-margin--bottom.p-media-object__meta-list-item--venue, .u-no-margin--bottom.p-media-object__meta-list-item--location, .u-no-margin--bottom.p-media-object__meta-list-item--date { - margin-bottom: -0.2rem !important; -} - -.p-icon--spinner, .p-icon--question, .p-icon--user, .p-icon--share, .p-icon--success, .p-icon--search, .p-icon--copy, .p-icon--menu, .p-icon--code, .p-icon--drag, .p-icon--external-link, .p-icon--warning, .p-icon--error, .p-icon--delete, .p-icon--information, .p-icon--help, .p-icon--close, .p-icon--collapse, .p-icon--expand, .p-icon--anchor, .p-icon--contextual-menu, .p-icon--plus, .p-icon--minus { - background-size: contain; - height: 1rem; - width: 1rem; - background-position: center; - background-repeat: no-repeat; - background-size: contain; - display: inline-block; - margin: 0; - padding: 0; - position: relative; - top: 2px; -} - -.p-icon--ubuntu, .p-icon--canonical, .p-icon--youtube, .p-icon--linkedin, .p-icon--instagram, .p-icon--twitter, .p-icon--google, .p-icon--facebook { - background-size: contain; - height: 2rem; - width: 2rem; - display: inline-block; -} - -.p-icon--minus { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M0 8.889V7.111h16v1.778z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--minus, .p-icon--minus.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M0 8.889V7.111h16v1.778z'/%3E%3C/svg%3E"); -} - -.p-icon--plus { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23666' fill-rule='nonzero'%3E%3Cpath d='M7.111 0h1.778v16H7.111z'/%3E%3Cpath d='M0 8.889V7.111h16v1.778z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--plus, .p-icon--plus.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23e5e5e5' fill-rule='nonzero'%3E%3Cpath d='M7.111 0h1.778v16H7.111z'/%3E%3Cpath d='M0 8.889V7.111h16v1.778z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--spinner, .p-icon--question, .p-icon--user, .p-icon--share, .p-icon--success, .p-icon--search, .p-icon--copy, .p-icon--menu, .p-icon--code, .p-icon--drag, .p-icon--external-link, .p-icon--warning, .p-icon--error, .p-icon--delete, .p-icon--information, .p-icon--help, .p-icon--close, .p-icon--collapse, .p-icon--expand, .p-icon--anchor, .p-icon--contextual-menu, .p-icon--minus, .p-icon--plus { - background-size: contain; - height: 1rem; - width: 1rem; - background-position: center; - background-repeat: no-repeat; - background-size: contain; - display: inline-block; - margin: 0; - padding: 0; - position: relative; - top: 2px; -} - -.p-icon--ubuntu, .p-icon--canonical, .p-icon--youtube, .p-icon--linkedin, .p-icon--instagram, .p-icon--twitter, .p-icon--google, .p-icon--facebook { - background-size: contain; - height: 2rem; - width: 2rem; - display: inline-block; -} - -.u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - margin-left: auto; - margin-right: auto; - max-width: 72rem; - width: 100%; -} -@media (max-width: 620px) { - .u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - padding-left: 1rem; - padding-right: 1rem; - } -} -@media (min-width: 620px) and (max-width: 772px) { - .u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - padding-left: 1.5rem; - padding-right: 1.5rem; - } -} -@media (min-width: 772px) { - .u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - padding-left: 1.5rem; - padding-right: 1.5rem; - } -} - -.p-icon--spinner, .p-icon--question, .p-icon--user, .p-icon--share, .p-icon--success, .p-icon--search, .p-icon--copy, .p-icon--menu, .p-icon--code, .p-icon--drag, .p-icon--external-link, .p-icon--warning, .p-icon--error, .p-icon--delete, .p-icon--information, .p-icon--help, .p-icon--close, .p-icon--collapse, .p-icon--expand, .p-icon--anchor, .p-icon--contextual-menu, .p-icon--minus, .p-icon--plus { - background-size: contain; - height: 1rem; - width: 1rem; - background-position: center; - background-repeat: no-repeat; - background-size: contain; - display: inline-block; - margin: 0; - padding: 0; - position: relative; - top: 2px; -} - -.p-icon--ubuntu, .p-icon--canonical, .p-icon--youtube, .p-icon--linkedin, .p-icon--instagram, .p-icon--twitter, .p-icon--google, .p-icon--facebook { - background-size: contain; - height: 2rem; - width: 2rem; - display: inline-block; -} - -.p-label--deprecated, .p-label--updated, .p-label--new, .p-label--in-progress, .p-label--validated { - border-radius: 0.125rem; - display: inline-block; - font-size: 0.875rem; - line-height: 1.3125rem; - padding: calc(0.3125rem - 1px) 0.5rem; - text-align: center; - text-decoration: none; -} - -.p-stepped-list--detailed, .p-stepped-list { - counter-reset: li; - display: flex; - flex-direction: column; - list-style: none; - padding-left: 0; -} - -.p-stepped-list__title { - display: flex; -} -.p-stepped-list__title::before { - align-self: start; - background-color: #e5e5e5; - border-radius: 100%; - content: counter(li); - counter-increment: li; - direction: rtl; - display: block; - text-align: center; -} - -h6.p-stepped-list__title::before { - flex-shrink: 0; - margin-right: 1rem; -} -@media (max-width: 772px) { - h6.p-stepped-list__title::before { - width: 1.5rem; - } -} -@media (min-width: 772px) { - h6.p-stepped-list__title::before { - width: 1.5rem; - } -} - -h5.p-stepped-list__title::before { - flex-shrink: 0; - margin-right: 1rem; -} -@media (max-width: 772px) { - h5.p-stepped-list__title::before { - width: 1.5rem; - } -} -@media (min-width: 772px) { - h5.p-stepped-list__title::before { - width: 1.5rem; - } -} - -h4.p-stepped-list__title::before { - flex-shrink: 0; - margin-right: 1rem; -} -@media (max-width: 772px) { - h4.p-stepped-list__title::before { - width: 1.5rem; - } -} -@media (min-width: 772px) { - h4.p-stepped-list__title::before { - width: 2rem; - } -} - -h3.p-stepped-list__title::before { - flex-shrink: 0; - margin-right: 1rem; -} -@media (max-width: 772px) { - h3.p-stepped-list__title::before { - width: 2rem; - } -} -@media (min-width: 772px) { - h3.p-stepped-list__title::before { - width: 2.5rem; - } -} - -h2.p-stepped-list__title::before { - flex-shrink: 0; - margin-right: 1rem; -} -@media (max-width: 772px) { - h2.p-stepped-list__title::before { - width: 2.5rem; - } -} -@media (min-width: 772px) { - h2.p-stepped-list__title::before { - width: 3rem; - } -} - -h1.p-stepped-list__title::before { - flex-shrink: 0; - margin-right: 1rem; -} -@media (max-width: 772px) { - h1.p-stepped-list__title::before { - width: 3rem; - } -} -@media (min-width: 772px) { - h1.p-stepped-list__title::before { - width: 3.5rem; - } -} - -.p-media-object--large, .p-media-object { - display: flex; - flex-shrink: 0; - margin-bottom: 1.5rem; -} - -.p-media-object__meta-list-item, .p-media-object__meta-list-item--venue, .p-media-object__meta-list-item--location, .p-media-object__meta-list-item--date { - color: #111; - padding-left: 2rem; -} - -.p-media-object__meta-list-item--venue, .p-media-object__meta-list-item--location, .p-media-object__meta-list-item--date { - background-position: 0 75%; - background-repeat: no-repeat; - background-size: 1rem; -} - -.p-icon--spinner, .p-icon--question, .p-icon--user, .p-icon--share, .p-icon--success, .p-icon--search, .p-icon--copy, .p-icon--menu, .p-icon--code, .p-icon--drag, .p-icon--external-link, .p-icon--warning, .p-icon--error, .p-icon--delete, .p-icon--information, .p-icon--help, .p-icon--close, .p-icon--collapse, .p-icon--expand, .p-icon--anchor, .p-icon--contextual-menu, .p-icon--minus, .p-icon--plus { - background-size: contain; - height: 1rem; - width: 1rem; - background-position: center; - background-repeat: no-repeat; - background-size: contain; - display: inline-block; - margin: 0; - padding: 0; - position: relative; - top: 2px; -} - -.p-icon--ubuntu, .p-icon--canonical, .p-icon--youtube, .p-icon--linkedin, .p-icon--instagram, .p-icon--twitter, .p-icon--google, .p-icon--facebook { - background-size: contain; - height: 2rem; - width: 2rem; - display: inline-block; -} - -.p-icon--contextual-menu { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='4' width='10'%3E%3Cpath d='M3.637 3.138A26.335 26.335 0 0 1 0 0h1.541a21.242 21.242 0 0 0 1.364 1.187 16.899 16.899 0 0 0 .752.563c.397.282.935.626 1.315.848h.054c.38-.222.918-.566 1.315-.848.398-.28.788-.583 1.169-.904.327-.275.643-.557.947-.846h1.541a26.335 26.335 0 0 1-3.637 3.138c-.519.365-.973.652-1.362.862-.39-.21-.844-.497-1.362-.862z' fill='%23666' fill-rule='evenodd'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--contextual-menu, .p-icon--contextual-menu.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='4' width='10'%3E%3Cpath d='M3.637 3.138A26.335 26.335 0 0 1 0 0h1.541a21.242 21.242 0 0 0 1.364 1.187 16.899 16.899 0 0 0 .752.563c.397.282.935.626 1.315.848h.054c.38-.222.918-.566 1.315-.848.398-.28.788-.583 1.169-.904.327-.275.643-.557.947-.846h1.541a26.335 26.335 0 0 1-3.637 3.138c-.519.365-.973.652-1.362.862-.39-.21-.844-.497-1.362-.862z' fill='%23e5e5e5' fill-rule='evenodd'/%3E%3C/svg%3E"); -} - -.u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - margin-left: auto; - margin-right: auto; - max-width: 72rem; - width: 100%; -} -@media (max-width: 620px) { - .u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - padding-left: 1rem; - padding-right: 1rem; - } -} -@media (min-width: 620px) and (max-width: 772px) { - .u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - padding-left: 1.5rem; - padding-right: 1.5rem; - } -} -@media (min-width: 772px) { - .u-fixed-width, .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - padding-left: 1.5rem; - padding-right: 1.5rem; - } -} - -.u-no-margin--bottom:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(p):not(small):not([class*=p-heading]) { - margin-bottom: 0 !important; -} - -@media (max-width: 772px) { - .p-media-object--large .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-heading--one, h1.u-no-margin--bottom { - margin-bottom: -0.165rem !important; - } -} -@media (min-width: 772px) { - .p-media-object--large .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-heading--one, h1.u-no-margin--bottom { - margin-bottom: -0.2rem !important; - } -} -@media (min-width: 1680px) { - .p-media-object--large .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-heading--one, h1.u-no-margin--bottom { - margin-bottom: -0.15rem !important; - } -} - -@media (max-width: 772px) { - .u-no-margin--bottom.p-heading--two, h2.u-no-margin--bottom { - margin-bottom: -0.1rem !important; - } -} -@media (min-width: 772px) { - .u-no-margin--bottom.p-heading--two, h2.u-no-margin--bottom { - margin-bottom: -0.2rem !important; - } -} - -@media (max-width: 772px) { - .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-heading--three, h3.u-no-margin--bottom { - margin-bottom: -0.5rem !important; - } -} -@media (min-width: 772px) { - .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote--large .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-heading--three, h3.u-no-margin--bottom { - margin-bottom: -0.1rem !important; - } -} - -@media (max-width: 772px) { - .p-pull-quote .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-modal__title, .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-matrix__title, .u-no-margin--bottom.p-heading--four, h4.u-no-margin--bottom { - margin-bottom: -0.3rem !important; - } -} -@media (min-width: 772px) { - .p-pull-quote .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-modal__title, .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-matrix__title, .u-no-margin--bottom.p-heading--four, h4.u-no-margin--bottom { - margin-bottom: -0.05rem !important; - } -} -@media (min-width: 1680px) { - .p-pull-quote .u-no-margin--bottom.p-pull-quote__citation, .p-pull-quote .u-no-margin--bottom.p-pull-quote__quote, .u-no-margin--bottom.p-modal__title, .u-no-margin--bottom.p-media-object__title, .u-no-margin--bottom.p-matrix__title, .u-no-margin--bottom.p-heading--four, h4.u-no-margin--bottom { - margin-bottom: -0 !important; - } -} - -.p-notification__response, .p-card__content, dd.u-no-margin--bottom, p.u-no-margin--bottom, .u-no-margin--bottom.p-heading--six, h6.u-no-margin--bottom, .u-no-margin--bottom.p-heading--five, h5.u-no-margin--bottom { - margin-bottom: 0.1rem !important; -} - -.p-table--mobile-card td.u-no-margin--bottom::before, -.p-table--mobile-card tbody th.u-no-margin--bottom::before, .u-no-margin--bottom.p-muted-heading, thead th.u-no-margin--bottom, .u-no-margin--bottom.p-tooltip__message, .u-no-margin--bottom.p-form-validation__message, .u-no-margin--bottom.p-form-help-text, small.u-no-margin--bottom, -.u-no-margin--bottom.p-text--small, .u-no-margin--bottom.p-media-object__meta-list-item, .u-no-margin--bottom.p-media-object__meta-list-item--venue, .u-no-margin--bottom.p-media-object__meta-list-item--location, .u-no-margin--bottom.p-media-object__meta-list-item--date { - margin-bottom: -0.2rem !important; -} - -/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ -/* Document - ========================================================================== */ -/** -* 1. Correct the line height in all browsers. -* 2. Prevent adjustments of font size after orientation changes in iOS. -*/ -html { - line-height: 1.15; - /* 1 */ - -webkit-text-size-adjust: 100%; - /* 2 */ -} - -/* Sections - ========================================================================== */ -/** -* Remove the margin in all browsers. -*/ -body { - margin: 0; -} - -/** -* Correct the font size and margin on `h1` elements within `section` and -* `article` contexts in Chrome, Firefox, and Safari. -*/ -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - ========================================================================== */ -/** -* 1. Add the correct box sizing in Firefox. -* 2. Show the overflow in Edge and IE. -*/ -hr { - box-sizing: content-box; - /* 1 */ - height: 0; - /* 1 */ - overflow: visible; - /* 2 */ -} - -/** -* 1. Correct the inheritance and scaling of font size in all browsers. -* 2. Correct the odd `em` font sizing in all browsers. -*/ -pre { - font-family: monospace, monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/* Text-level semantics - ========================================================================== */ -/** -* Remove the gray background on active links in IE 10. -*/ -a { - background-color: transparent; -} - -/** -* 1. Remove the bottom border in Chrome 57- -* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. -*/ -abbr[title] { - border-bottom: none; - /* 1 */ - text-decoration: underline; - /* 2 */ - text-decoration: underline dotted; - /* 2 */ -} - -/** -* Add the correct font weight in Chrome, Edge, and Safari. -*/ -b, -strong { - font-weight: bolder; -} - -/** -* 1. Correct the inheritance and scaling of font size in all browsers. -* 2. Correct the odd `em` font sizing in all browsers. -*/ -code, -kbd, -samp { - font-family: monospace, monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/** -* Add the correct font size in all browsers. -*/ -small { - font-size: 80%; -} - -/** -* Prevent `sub` and `sup` elements from affecting the line height in -* all browsers. -*/ -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ -/** -* Remove the border on images inside links in IE 10. -*/ -img { - border-style: none; -} - -/* Forms - ========================================================================== */ -/** -* 1. Change the font styles in all browsers. -* 2. Remove the margin in Firefox and Safari. -*/ -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - /* 1 */ - font-size: 100%; - /* 1 */ -} - -/** -* Show the overflow in IE. -* 1. Show the overflow in Edge. -*/ -button, -input { - /* 1 */ - overflow: visible; -} - -/** -* Remove the inheritance of text transform in Edge, Firefox, and IE. -* 1. Remove the inheritance of text transform in Firefox. -*/ -button, -select { - /* 1 */ - text-transform: none; -} - -/** -* Correct the inability to style clickable types in iOS and Safari. -*/ -button, -[type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; -} - -/** -* Remove the inner border and padding in Firefox. -*/ -button::-moz-focus-inner, -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** -* Restore the focus styles unset by the previous rule. -*/ -button:-moz-focusring, -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** -* Correct the padding in Firefox. -*/ -fieldset { - padding: 0.35em 0.75em 0.625em; -} - -/** -* 1. Correct the text wrapping in Edge and IE. -* 2. Correct the color inheritance from `fieldset` elements in IE. -* 3. Remove the padding so developers are not caught out when they zero out -* `fieldset` elements in all browsers. -*/ -legend { - box-sizing: border-box; - /* 1 */ - color: inherit; - /* 2 */ - display: table; - /* 1 */ - max-width: 100%; - /* 1 */ - padding: 0; - /* 3 */ - white-space: normal; - /* 1 */ -} - -/** -* Add the correct vertical alignment in Chrome, Firefox, and Opera. -*/ -progress { - vertical-align: baseline; -} - -/** -* Remove the default vertical scrollbar in IE 10+. -*/ -textarea { - overflow: auto; -} - -/** -* 1. Add the correct box sizing in IE 10. -* 2. Remove the padding in IE 10. -*/ -[type=checkbox], -[type=radio] { - box-sizing: border-box; - /* 1 */ - padding: 0; - /* 2 */ -} - -/** -* Correct the cursor style of increment and decrement buttons in Chrome. -*/ -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; -} - -/** -* 1. Correct the odd appearance in Chrome and Safari. -* 2. Correct the outline style in Safari. -*/ -[type=search] { - -webkit-appearance: textfield; - /* 1 */ - outline-offset: -2px; - /* 2 */ -} - -/** -* Remove the inner padding in Chrome and Safari on macOS. -*/ -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** -* 1. Correct the inability to style clickable types in iOS and Safari. -* 2. Change font properties to `inherit` in Safari. -*/ -::-webkit-file-upload-button { - -webkit-appearance: button; - /* 1 */ - font: inherit; - /* 2 */ -} - -/* Interactive - ========================================================================== */ -/* -* Add the correct display in Edge, IE 10+, and Firefox. -*/ -details { - display: block; -} - -/* -* Add the correct display in all browsers. -*/ -summary { - display: list-item; -} - -/* Misc - ========================================================================== */ -/** -* Add the correct display in IE 10+. -*/ -template { - display: none; -} - -/** -* Add the correct display in IE 10. -*/ -[hidden] { - display: none; -} - -html { - background: #fff; -} - -@font-face { - font-family: "Ubuntu"; - font-style: normal; - font-weight: 300; - src: url("/assets/e8c07df6-Ubuntu-L_W.woff2") format("woff2"), url("/assets/8619add2-Ubuntu-L_W.woff") format("woff"); -} -@font-face { - font-family: "Ubuntu"; - font-style: normal; - font-weight: 400; - src: url("/assets/fff37993-Ubuntu-R_W.woff2") format("woff2"), url("/assets/7af50859-Ubuntu-R_W.woff") format("woff"); -} -@font-face { - font-family: "Ubuntu"; - font-style: italic; - font-weight: 300; - src: url("/assets/f8097dea-Ubuntu-LI_W.woff2") format("woff2"), url("/assets/8be89d02-Ubuntu-LI_W.woff") format("woff"); -} -@font-face { - font-family: "Ubuntu"; - font-style: italic; - font-weight: 400; - src: url("/assets/fca66073-ubuntu-ri-webfont.woff2") format("woff2"), url("/assets/f0898c72-ubuntu-ri-webfont.woff") format("woff"); -} -@font-face { - font-family: "Ubuntu"; - font-style: normal; - font-weight: 100; - src: url("/assets/7f100985-Ubuntu-Th_W.woff2") format("woff2"), url("/assets/502cc3a1-Ubuntu-Th_W.woff") format("woff"); -} -@font-face { - font-family: "Ubuntu Mono"; - font-style: normal; - font-weight: 300; - src: url("/assets/fdd692b9-UbuntuMono-R_W.woff2") format("woff2"), url("/assets/85edb898-UbuntuMono-R_W.woff") format("woff"); -} -@font-face { - font-family: "Ubuntu Mono"; - font-style: normal; - font-weight: 400; - src: url("/assets/fdd692b9-UbuntuMono-R_W.woff2") format("woff2"), url("/assets/85edb898-UbuntuMono-R_W.woff") format("woff"); -} -.p-media-object--large .p-media-object__title, .p-heading--one, h1 { - max-width: 20em; - font-style: normal; - font-weight: 100; - margin-top: -0.5rem; -} -@media (max-width: 772px) { - .p-media-object--large .p-media-object__title, .p-heading--one, h1 { - font-size: 2.2281872349rem; - line-height: 3rem; - margin-bottom: 0.835rem; - padding-top: 0.166rem; - } -} -@media (min-width: 772px) { - .p-media-object--large .p-media-object__title, .p-heading--one, h1 { - font-size: 2.910285368rem; - line-height: 3.5rem; - margin-bottom: 1.3rem; - padding-top: 0.201rem; - } -} -@media (min-width: 1680px) { - .p-media-object--large .p-media-object__title, .p-heading--one, h1 { - margin-bottom: 1.35rem; - padding-top: 0.151rem; - } -} -.p-heading--two, h2 { - max-width: 20em; - font-style: normal; - font-weight: 100; - margin-top: -0.5rem; -} -@media (max-width: 772px) { - .p-heading--two, h2 { - font-size: 1.83274rem; - line-height: 2.5rem; - margin-bottom: 0.9rem; - padding-top: 0.101rem; - } -} -@media (min-width: 772px) { - .p-heading--two, h2 { - font-size: 2.2281872349rem; - line-height: 3rem; - margin-bottom: 1.3rem; - padding-top: 0.201rem; - } -} -.p-pull-quote--large .p-pull-quote__citation, .p-pull-quote--large .p-pull-quote__quote, .p-heading--three, h3 { - max-width: 30em; - font-style: normal; - font-weight: 300; - margin-top: -0.5rem; -} -@media (max-width: 772px) { - .p-pull-quote--large .p-pull-quote__citation, .p-pull-quote--large .p-pull-quote__quote, .p-heading--three, h3 { - font-size: 1.4927113703rem; - line-height: 2rem; - margin-bottom: 0.5rem; - padding-top: 0.5rem; - } -} -@media (min-width: 772px) { - .p-pull-quote--large .p-pull-quote__citation, .p-pull-quote--large .p-pull-quote__quote, .p-heading--three, h3 { - font-size: 1.7059558517rem; - line-height: 2.5rem; - margin-bottom: 1.4rem; - padding-top: 0.101rem; - } -} -.p-pull-quote .p-pull-quote__citation, .p-pull-quote .p-pull-quote__quote, .p-modal__title, .p-media-object__title, .p-matrix__title, .p-heading--four, h4 { - max-width: 30em; - font-style: normal; - font-weight: 300; - margin-top: 0; -} -@media (max-width: 772px) { - .p-pull-quote .p-pull-quote__citation, .p-pull-quote .p-pull-quote__quote, .p-modal__title, .p-media-object__title, .p-matrix__title, .p-heading--four, h4 { - font-size: 1.22176rem; - line-height: 1.5rem; - margin-bottom: 0.7rem; - padding-top: 0.301rem; - } -} -@media (min-width: 772px) { - .p-pull-quote .p-pull-quote__citation, .p-pull-quote .p-pull-quote__quote, .p-modal__title, .p-media-object__title, .p-matrix__title, .p-heading--four, h4 { - font-size: 1.306122449rem; - line-height: 2rem; - margin-bottom: 0.95rem; - padding-top: 0.051rem; - } -} -@media (min-width: 1680px) { - .p-pull-quote .p-pull-quote__citation, .p-pull-quote .p-pull-quote__quote, .p-modal__title, .p-media-object__title, .p-matrix__title, .p-heading--four, h4 { - margin-bottom: 1rem; - padding-top: 0.001rem; - } -} -.p-heading--five, h5 { - font-size: 1rem; - font-style: normal; - font-weight: 500; - line-height: 1.5rem; - margin-bottom: 1.1rem; - margin-top: 0; - padding-top: 0.401rem; -} -.p-heading--six, h6 { - font-size: 1rem; - font-style: italic; - font-weight: 300; - line-height: 1.5rem; - margin-bottom: 1.1rem; - margin-top: 0; - padding-top: 0.338rem; -} -@media (min-width: 1680px) { - .p-heading--six, h6 { - padding-top: 0.345rem; - } -} -dd, p, .p-pull-quote--small .p-pull-quote__citation, .p-pull-quote--small .p-pull-quote__quote, .p-breadcrumbs__item, dt, cite, .p-text--default { - line-height: 1.5rem; - margin-top: 0; - padding-top: 0.4005rem; -} - -.p-pull-quote--small .p-pull-quote__citation, .p-pull-quote--small .p-pull-quote__quote, .p-breadcrumbs__item, dt, cite, .p-text--default { - margin-bottom: 0.1rem; -} - -dd, p { - margin-bottom: 1.1rem; -} -.p-tooltip__message, .p-form-validation__message, .p-form-help-text, small, -.p-text--small, .p-table--mobile-card td::before, -.p-table--mobile-card tbody th::before, .p-muted-heading, thead th, .p-media-object__meta-list-item, .p-media-object__meta-list-item--venue, .p-media-object__meta-list-item--location, .p-media-object__meta-list-item--date { - font-size: 0.875rem; - line-height: 1rem; - margin-bottom: 0.8rem; - padding-top: 0.2005rem; -} -@media (min-width: 1680px) { - .p-tooltip__message, .p-form-validation__message, .p-form-help-text, small, -.p-text--small, .p-table--mobile-card td::before, -.p-table--mobile-card tbody th::before, .p-muted-heading, thead th, .p-media-object__meta-list-item, .p-media-object__meta-list-item--venue, .p-media-object__meta-list-item--location, .p-media-object__meta-list-item--date { - padding-top: 0.2006rem; - } -} -.p-table--mobile-card td::before, -.p-table--mobile-card tbody th::before, .p-muted-heading, thead th { - color: #666; - margin-bottom: 0.8rem; - margin-top: 0; - padding-top: 0.2rem; - text-transform: uppercase; -} -.p-notification__status, dt, strong { - font-weight: 400; -} - -p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h1, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--one { - padding-top: 1.7rem; -} -@media (max-width: 772px) { - p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h1, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--one { - padding-top: 1.665rem; - } -} - -p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h2, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--two { - padding-top: 1.7rem; -} -@media (max-width: 772px) { - p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h2, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--two { - padding-top: 1.6rem; - } -} - -@media (max-width: 772px) { - p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h3, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--three { - padding-top: 2rem; - } -} -@media (min-width: 772px) { - p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h3, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--three { - padding-top: 1.6rem; - } -} - -@media (max-width: 772px) { - p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h4, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--four { - padding-top: 1.8rem; - } -} -@media (min-width: 772px) { - p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h4, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--four { - padding-top: 1.55rem; - } -} - -p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h5, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--five, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + h6, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-heading--six { - padding-top: 1.9rem; -} - -p:not([class*=p-heading--]):not([class*=p-muted-heading]) + .p-muted-heading { - padding-top: 1.7rem; -} - -.p-matrix__desc:last-child, p:not([class*=p-heading--]):not([class*=p-muted-heading]) + p:not([class*=p-heading--]):not([class*=p-muted-heading]), h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h1 + p:not([class*=p-muted-heading]), -.p-heading--one + h1, -.p-heading--one + h2, -.p-heading--one + h3, -.p-heading--one + h4, -.p-heading--one + h5, -.p-heading--one + h6, -.p-heading--one + p:not([class*=p-muted-heading]), -h2 + h1, -h2 + h2, -h2 + h3, -h2 + h4, -h2 + h5, -h2 + h6, -h2 + p:not([class*=p-muted-heading]), -.p-heading--two + h1, -.p-heading--two + h2, -.p-heading--two + h3, -.p-heading--two + h4, -.p-heading--two + h5, -.p-heading--two + h6, -.p-heading--two + p:not([class*=p-muted-heading]), -h3 + h1, -h3 + h2, -h3 + h3, -h3 + h4, -h3 + h5, -h3 + h6, -h3 + p:not([class*=p-muted-heading]), -.p-heading--three + h1, -.p-heading--three + h2, -.p-heading--three + h3, -.p-heading--three + h4, -.p-heading--three + h5, -.p-heading--three + h6, -.p-heading--three + p:not([class*=p-muted-heading]), -h4 + h1, -h4 + h2, -h4 + h3, -h4 + h4, -h4 + h5, -h4 + h6, -h4 + p:not([class*=p-muted-heading]), -.p-heading--four + h1, -.p-heading--four + h2, -.p-heading--four + h3, -.p-heading--four + h4, -.p-heading--four + h5, -.p-heading--four + h6, -.p-heading--four + p:not([class*=p-muted-heading]), -h5 + h1, -h5 + h2, -h5 + h3, -h5 + h4, -h5 + h5, -h5 + h6, -h5 + p:not([class*=p-muted-heading]), -.p-heading--five + h1, -.p-heading--five + h2, -.p-heading--five + h3, -.p-heading--five + h4, -.p-heading--five + h5, -.p-heading--five + h6, -.p-heading--five + p:not([class*=p-muted-heading]), -h6 + h1, -h6 + h2, -h6 + h3, -h6 + h4, -h6 + h5, -h6 + h6, -h6 + p:not([class*=p-muted-heading]), -.p-heading--six + h1, -.p-heading--six + h2, -.p-heading--six + h3, -.p-heading--six + h4, -.p-heading--six + h5, -.p-heading--six + h6, -.p-heading--six + p:not([class*=p-muted-heading]), -.p-muted-heading + h1, -.p-muted-heading + h2, -.p-muted-heading + h3, -.p-muted-heading + h4, -.p-muted-heading + h5, -.p-muted-heading + h6, -.p-muted-heading + p:not([class*=p-muted-heading]) { - margin-top: -0.5rem; -} - -label, p, -.measure--p, .p-heading--five, h5, .p-heading--six, h6 { - max-width: 40em; -} - -html { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - color: #111; - font-family: "Ubuntu", -apple-system, "Segoe UI", "Roboto", "Oxygen", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; - font-smoothing: subpixel-antialiased; - font-weight: 300; - line-height: 1.5rem; -} -@media screen and (max-width: 1680px) { - html { - font-size: 1rem; - } -} -@media screen and (min-width: 1680px) { - html { - font-size: 1.125rem; - line-height: 1.6875rem; - } -} - -small.dense, -.p-text--small.dense { - margin-bottom: 1.3rem; -} - -p:not([class*=p-heading--]):not([class*=p-muted-heading]):empty { - line-height: 0; - margin: 0; - padding: 0; -} - -sub, -sup { - line-height: 0; - position: relative; - vertical-align: baseline; -} - -abbr[title] { - border-bottom: 0.1em dotted; - cursor: help; - text-decoration: none; -} - -blockquote { - border-left: 2px solid #666; - margin-bottom: 1rem; - margin-left: 0; - margin-top: 0; - overflow: auto; - padding-bottom: 0.5rem; - padding-left: 1.5rem; -} -blockquote > :last-child { - margin-bottom: 0.1rem; -} -blockquote > cite { - display: block; - font-style: normal; -} - -html { - box-sizing: border-box; -} - -*, -*::before, -*::after { - box-sizing: inherit; -} - -button { - background-color: #fff; - border-color: #999; - color: #000; -} -button:visited { - color: #000; -} -button:active, button:active:hover { - background-color: #d9d9d9; - border-color: #999; - transition-duration: 0s; -} -button:hover { - background-color: #e6e6e6; - border-color: #999; -} -button:disabled:active, button:disabled:hover, button.is-disabled:active, button.is-disabled:hover { - background-color: transparent; - border-color: #999; -} -button .p-link--external { - color: currentColor; -} - -.p-button--base, .p-button--negative, .p-button--positive, .p-button--brand, .p-button--neutral, .p-button, [type=submit], button { - transition-duration: 0.165s; - transition-property: background-color, border-color; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - border-radius: 0.125rem; - border-style: solid; - border-width: 1px; - cursor: pointer; - display: inline-block; - font-size: 1rem; - font-weight: 300; - line-height: 1.5rem; - margin: 0 0 1.7rem 0; - padding: calc(0.4rem - 1px) 0.75rem; - text-align: center; - text-decoration: none; -} -.p-button--base:focus, .p-button--negative:focus, .p-button--positive:focus, .p-button--brand:focus, .p-button--neutral:focus, .p-button:focus, [type=submit]:focus, button:focus { - outline: 2px solid #19b6ee; -} -.p-button--base:active, .p-button--negative:active, .p-button--positive:active, .p-button--brand:active, .p-button--neutral:active, .p-button:active, [type=submit]:active, button:active, .p-button--base:focus, .p-button--negative:focus, .p-button--positive:focus, .p-button--brand:focus, .p-button--neutral:focus, .p-button:focus, [type=submit]:focus, button:focus, .p-button--base:hover, .p-button--negative:hover, .p-button--positive:hover, .p-button--brand:hover, .p-button--neutral:hover, .p-button:hover, [type=submit]:hover, button:hover { - text-decoration: none; -} -.p-button--base:disabled, .p-button--negative:disabled, .p-button--positive:disabled, .p-button--brand:disabled, .p-button--neutral:disabled, .p-button:disabled, [type=submit]:disabled, button:disabled, .is-disabled.p-button--base, .is-disabled.p-button--negative, .is-disabled.p-button--positive, .is-disabled.p-button--brand, .is-disabled.p-button--neutral, .is-disabled.p-button, .is-disabled[type=submit], button.is-disabled { - cursor: not-allowed; - opacity: 0.5; -} -@media only screen and (max-width: 460px) { - .p-button--base, .p-button--negative, .p-button--positive, .p-button--brand, .p-button--neutral, .p-button, [type=submit], button { - width: 100%; - } -} -@media only screen and (min-width: 461px) { - .p-button--base, .p-button--negative, .p-button--positive, .p-button--brand, .p-button--neutral, .p-button, [type=submit], button { - width: auto; - } - .p-button--base:not(:last-of-type):not(:only-of-type), .p-button--negative:not(:last-of-type):not(:only-of-type), .p-button--positive:not(:last-of-type):not(:only-of-type), .p-button--brand:not(:last-of-type):not(:only-of-type), .p-button--neutral:not(:last-of-type):not(:only-of-type), .p-button:not(:last-of-type):not(:only-of-type), [type=submit]:not(:last-of-type):not(:only-of-type), button:not(:last-of-type):not(:only-of-type) { - margin-right: 1rem; - } -} -table .p-button--base, table .p-button--negative, table .p-button--positive, table .p-button--brand, table .p-button--neutral, table .p-button, table [type=submit], table button { - margin-bottom: 0.1rem; - padding-bottom: calc(0.15rem - 1px); - padding-top: calc(0.15rem - 1px); -} -p .p-button--base, p .p-button--negative, p .p-button--positive, p .p-button--brand, p .p-button--neutral, p .p-button, p [type=submit], p button { - margin-bottom: 0.6rem; - margin-top: -0.4rem; -} -p + p > .p-button--base, p + p > .p-button--negative, p + p > .p-button--positive, p + p > .p-button--brand, p + p > .p-button--neutral, p + p > .p-button, p + p > [type=submit], p + p > button { - margin-top: 0.1rem; -} -@media only screen and (max-width: 460px) { - p .p-button--base + .p-button--base, p .p-button--negative + .p-button--base, p .p-button--base + .p-button--negative, p .p-button--negative + .p-button--negative, p .p-button--positive + .p-button--base, p .p-button--positive + .p-button--negative, p .p-button--base + .p-button--positive, p .p-button--negative + .p-button--positive, p .p-button--positive + .p-button--positive, p .p-button--brand + .p-button--base, p .p-button--brand + .p-button--negative, p .p-button--brand + .p-button--positive, p .p-button--base + .p-button--brand, p .p-button--negative + .p-button--brand, p .p-button--positive + .p-button--brand, p .p-button--brand + .p-button--brand, p .p-button--neutral + .p-button--base, p .p-button--neutral + .p-button--negative, p .p-button--neutral + .p-button--positive, p .p-button--neutral + .p-button--brand, p .p-button--base + .p-button--neutral, p .p-button--negative + .p-button--neutral, p .p-button--positive + .p-button--neutral, p .p-button--brand + .p-button--neutral, p .p-button--neutral + .p-button--neutral, p .p-button + .p-button--base, p .p-button + .p-button--negative, p .p-button + .p-button--positive, p .p-button + .p-button--brand, p .p-button + .p-button--neutral, p .p-button--base + .p-button, p .p-button--negative + .p-button, p .p-button--positive + .p-button, p .p-button--brand + .p-button, p .p-button--neutral + .p-button, p .p-button + .p-button, p [type=submit] + .p-button--base, p [type=submit] + .p-button--negative, p [type=submit] + .p-button--positive, p [type=submit] + .p-button--brand, p [type=submit] + .p-button--neutral, p [type=submit] + .p-button, p .p-button--base + [type=submit], p .p-button--negative + [type=submit], p .p-button--positive + [type=submit], p .p-button--brand + [type=submit], p .p-button--neutral + [type=submit], p .p-button + [type=submit], p [type=submit] + [type=submit], p button + .p-button--base, p button + .p-button--negative, p button + .p-button--positive, p button + .p-button--brand, p button + .p-button--neutral, p button + .p-button, p button + [type=submit], p .p-button--base + button, p .p-button--negative + button, p .p-button--positive + button, p .p-button--brand + button, p .p-button--neutral + button, p .p-button + button, p [type=submit] + button, p button + button { - margin-top: 0.6rem; - } -} - -code, -samp, -kbd { - background-color: #e5e5e5; - box-shadow: 0 0 0 0.25rem #e5e5e5; - font-family: "Ubuntu Mono", Consolas, Monaco, Courier, monospace; - font-weight: 300; - margin-left: 0.25rem; - margin-right: 0.25rem; - text-align: left; -} - -pre, -code { - direction: ltr; - -webkit-hyphens: none; - -ms-hyphens: none; - hyphens: none; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - word-spacing: normal; - word-wrap: break-word; -} - -pre code { - display: inline-block; -} - -pre { - background-color: #f7f7f7; - border: 1px solid #cdcdcd; - border-radius: 0.125rem; - color: #111; - display: block; - margin-bottom: 1.5rem; - margin-top: 0; - overflow: auto; - padding: calc(0.45rem - 1px) 1rem calc(0.45rem - 1px); - text-align: left; - text-shadow: none; - white-space: pre; -} - -pre code { - background: none; - box-shadow: none; - margin-left: 0; - margin-right: 0; -} - -.p-code-copyable__action, .p-code-copyable, [type=file], textarea, [type=text], -[type=date], -[type=datetime], -[type=datetime-local], -[type=month], -[type=time], -[type=week], -[type=number], -[type=search], -[type=password], -[type=email], -[type=url], -[type=tel], -select { - margin-bottom: 0.7rem; - padding-bottom: calc(0.4rem - 1px); - padding-top: calc(0.4rem - 1px); -} - -textarea, [type=text], -[type=date], -[type=datetime], -[type=datetime-local], -[type=month], -[type=time], -[type=week], -[type=number], -[type=search], -[type=password], -[type=email], -[type=url], -[type=tel], -select { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - background-color: #fff; - border: 1px solid #999; - border-radius: 0.125rem; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.12); - color: #111; - font-family: "Ubuntu", -apple-system, "Segoe UI", "Roboto", "Oxygen", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; - font-size: 1rem; - font-weight: 300; - line-height: 1.5rem; - min-width: 10em; - padding-left: 0.5rem; - padding-right: 0.5rem; - vertical-align: baseline; - width: 100%; -} -textarea:focus, [type=text]:focus, -[type=date]:focus, -[type=datetime]:focus, -[type=datetime-local]:focus, -[type=month]:focus, -[type=time]:focus, -[type=week]:focus, -[type=number]:focus, -[type=search]:focus, -[type=password]:focus, -[type=email]:focus, -[type=url]:focus, -[type=tel]:focus, -select:focus { - outline: 2px solid #19b6ee; -} -table textarea, table [type=text], -table [type=date], -table [type=datetime], -table [type=datetime-local], -table [type=month], -table [type=time], -table [type=week], -table [type=number], -table [type=search], -table [type=password], -table [type=email], -table [type=url], -table [type=tel], -table select { - margin: 0 0 0.1rem 0; - padding-bottom: calc(0.15rem - 1px); - padding-top: calc(0.15rem - 1px); -} -textarea:active, [type=text]:active, -[type=date]:active, -[type=datetime]:active, -[type=datetime-local]:active, -[type=month]:active, -[type=time]:active, -[type=week]:active, -[type=number]:active, -[type=search]:active, -[type=password]:active, -[type=email]:active, -[type=url]:active, -[type=tel]:active, -select:active { - border-color: #666; - color: #111; - outline: none; -} -textarea::-webkit-placeholder, [type=text]::-webkit-placeholder, -[type=date]::-webkit-placeholder, -[type=datetime]::-webkit-placeholder, -[type=datetime-local]::-webkit-placeholder, -[type=month]::-webkit-placeholder, -[type=time]::-webkit-placeholder, -[type=week]::-webkit-placeholder, -[type=number]::-webkit-placeholder, -[type=search]::-webkit-placeholder, -[type=password]::-webkit-placeholder, -[type=email]::-webkit-placeholder, -[type=url]::-webkit-placeholder, -[type=tel]::-webkit-placeholder, -select::-webkit-placeholder, textarea::-ms-placeholder, [type=text]::-ms-placeholder, -[type=date]::-ms-placeholder, -[type=datetime]::-ms-placeholder, -[type=datetime-local]::-ms-placeholder, -[type=month]::-ms-placeholder, -[type=time]::-ms-placeholder, -[type=week]::-ms-placeholder, -[type=number]::-ms-placeholder, -[type=search]::-ms-placeholder, -[type=password]::-ms-placeholder, -[type=email]::-ms-placeholder, -[type=url]::-ms-placeholder, -[type=tel]::-ms-placeholder, -select::-ms-placeholder, textarea:-ms-placeholder, [type=text]:-ms-placeholder, -[type=date]:-ms-placeholder, -[type=datetime]:-ms-placeholder, -[type=datetime-local]:-ms-placeholder, -[type=month]:-ms-placeholder, -[type=time]:-ms-placeholder, -[type=week]:-ms-placeholder, -[type=number]:-ms-placeholder, -[type=search]:-ms-placeholder, -[type=password]:-ms-placeholder, -[type=email]:-ms-placeholder, -[type=url]:-ms-placeholder, -[type=tel]:-ms-placeholder, -select:-ms-placeholder, textarea::placeholder, [type=text]::placeholder, -[type=date]::placeholder, -[type=datetime]::placeholder, -[type=datetime-local]::placeholder, -[type=month]::placeholder, -[type=time]::placeholder, -[type=week]::placeholder, -[type=number]::placeholder, -[type=search]::placeholder, -[type=password]::placeholder, -[type=email]::placeholder, -[type=url]::placeholder, -[type=tel]::placeholder, -select::placeholder { - color: #666; - opacity: 1; -} -textarea:focus, [type=text]:focus, -[type=date]:focus, -[type=datetime]:focus, -[type=datetime-local]:focus, -[type=month]:focus, -[type=time]:focus, -[type=week]:focus, -[type=number]:focus, -[type=search]:focus, -[type=password]:focus, -[type=email]:focus, -[type=url]:focus, -[type=tel]:focus, -select:focus { - border-color: #666; -} -textarea.has-error, .has-error[type=text], -.has-error[type=date], -.has-error[type=datetime], -.has-error[type=datetime-local], -.has-error[type=month], -.has-error[type=time], -.has-error[type=week], -.has-error[type=number], -.has-error[type=search], -.has-error[type=password], -.has-error[type=email], -.has-error[type=url], -.has-error[type=tel], -select.has-error { - border: 1px solid #c7162b; -} -textarea.has-caution, .has-caution[type=text], -.has-caution[type=date], -.has-caution[type=datetime], -.has-caution[type=datetime-local], -.has-caution[type=month], -.has-caution[type=time], -.has-caution[type=week], -.has-caution[type=number], -.has-caution[type=search], -.has-caution[type=password], -.has-caution[type=email], -.has-caution[type=url], -.has-caution[type=tel], -select.has-caution { - border: 1px solid #f99b11; -} -textarea.has-success, .has-success[type=text], -.has-success[type=date], -.has-success[type=datetime], -.has-success[type=datetime-local], -.has-success[type=month], -.has-success[type=time], -.has-success[type=week], -.has-success[type=number], -.has-success[type=search], -.has-success[type=password], -.has-success[type=email], -.has-success[type=url], -.has-success[type=tel], -select.has-success { - border: 1px solid #0e8420; -} -textarea.has-information, .has-information[type=text], -.has-information[type=date], -.has-information[type=datetime], -.has-information[type=datetime-local], -.has-information[type=month], -.has-information[type=time], -.has-information[type=week], -.has-information[type=number], -.has-information[type=search], -.has-information[type=password], -.has-information[type=email], -.has-information[type=url], -.has-information[type=tel], -select.has-information { - border: 1px solid #335280; -} - -[type=radio], [type=checkbox] { - opacity: 0; - position: absolute; -} -[type=radio] + label, [type=checkbox] + label { - padding-left: 2rem; - position: relative; -} -[type=radio] + label::before, [type=checkbox] + label::before, [type=radio] + label::after, [type=checkbox] + label::after { - transition-duration: 0.333s; - transition-property: all; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - position: absolute; -} -[type=radio] + label::before, [type=checkbox] + label::before { - border: 1px solid #999; - content: ""; - height: 1rem; - left: 0; - top: 0.65rem; - width: 1rem; -} -[type=radio] + label::after, [type=checkbox] + label::after { - content: ""; - opacity: 0; -} -[type=radio] + label.is-inline-label, [type=checkbox] + label.is-inline-label { - display: inline; - padding-top: 0; -} -[type=radio] + label.is-inline-label::before, [type=checkbox] + label.is-inline-label::before { - top: 0; -} -[type=radio]:checked + label::after, [type=checkbox]:checked + label::after { - opacity: 1; -} -[type=radio]:focus + label, [type=checkbox]:focus + label { - outline: 2px solid #19b6ee; -} -.p-switch:disabled + .p-switch__slider, textarea[disabled], [disabled][type=text], -[disabled][type=date], -[disabled][type=datetime], -[disabled][type=datetime-local], -[disabled][type=month], -[disabled][type=time], -[disabled][type=week], -[disabled][type=number], -[disabled][type=search], -[disabled][type=password], -[disabled][type=email], -[disabled][type=url], -[disabled][type=tel], -select[disabled], textarea[disabled=disabled], [disabled=disabled][type=text], -[disabled=disabled][type=date], -[disabled=disabled][type=datetime], -[disabled=disabled][type=datetime-local], -[disabled=disabled][type=month], -[disabled=disabled][type=time], -[disabled=disabled][type=week], -[disabled=disabled][type=number], -[disabled=disabled][type=search], -[disabled=disabled][type=password], -[disabled=disabled][type=email], -[disabled=disabled][type=url], -[disabled=disabled][type=tel], -select[disabled=disabled], [disabled][type=radio] + label, [disabled][type=checkbox] + label, [disabled=disabled][type=radio] + label, [disabled=disabled][type=checkbox] + label { - cursor: not-allowed; - opacity: 0.5; -} - -textarea[readonly], [readonly][type=text], -[readonly][type=date], -[readonly][type=datetime], -[readonly][type=datetime-local], -[readonly][type=month], -[readonly][type=time], -[readonly][type=week], -[readonly][type=number], -[readonly][type=search], -[readonly][type=password], -[readonly][type=email], -[readonly][type=url], -[readonly][type=tel], -select[readonly], textarea[readonly=readonly], [readonly=readonly][type=text], -[readonly=readonly][type=date], -[readonly=readonly][type=datetime], -[readonly=readonly][type=datetime-local], -[readonly=readonly][type=month], -[readonly=readonly][type=time], -[readonly=readonly][type=week], -[readonly=readonly][type=number], -[readonly=readonly][type=search], -[readonly=readonly][type=password], -[readonly=readonly][type=email], -[readonly=readonly][type=url], -[readonly=readonly][type=tel], -select[readonly=readonly] { - color: #cdcdcd; - cursor: default; -} -textarea[readonly]:hover, [readonly][type=text]:hover, -[readonly][type=date]:hover, -[readonly][type=datetime]:hover, -[readonly][type=datetime-local]:hover, -[readonly][type=month]:hover, -[readonly][type=time]:hover, -[readonly][type=week]:hover, -[readonly][type=number]:hover, -[readonly][type=search]:hover, -[readonly][type=password]:hover, -[readonly][type=email]:hover, -[readonly][type=url]:hover, -[readonly][type=tel]:hover, -select[readonly]:hover, textarea[readonly=readonly]:hover, [readonly=readonly][type=text]:hover, -[readonly=readonly][type=date]:hover, -[readonly=readonly][type=datetime]:hover, -[readonly=readonly][type=datetime-local]:hover, -[readonly=readonly][type=month]:hover, -[readonly=readonly][type=time]:hover, -[readonly=readonly][type=week]:hover, -[readonly=readonly][type=number]:hover, -[readonly=readonly][type=search]:hover, -[readonly=readonly][type=password]:hover, -[readonly=readonly][type=email]:hover, -[readonly=readonly][type=url]:hover, -[readonly=readonly][type=tel]:hover, -select[readonly=readonly]:hover, textarea[readonly]:active, [readonly][type=text]:active, -[readonly][type=date]:active, -[readonly][type=datetime]:active, -[readonly][type=datetime-local]:active, -[readonly][type=month]:active, -[readonly][type=time]:active, -[readonly][type=week]:active, -[readonly][type=number]:active, -[readonly][type=search]:active, -[readonly][type=password]:active, -[readonly][type=email]:active, -[readonly][type=url]:active, -[readonly][type=tel]:active, -select[readonly]:active, textarea[readonly=readonly]:active, [readonly=readonly][type=text]:active, -[readonly=readonly][type=date]:active, -[readonly=readonly][type=datetime]:active, -[readonly=readonly][type=datetime-local]:active, -[readonly=readonly][type=month]:active, -[readonly=readonly][type=time]:active, -[readonly=readonly][type=week]:active, -[readonly=readonly][type=number]:active, -[readonly=readonly][type=search]:active, -[readonly=readonly][type=password]:active, -[readonly=readonly][type=email]:active, -[readonly=readonly][type=url]:active, -[readonly=readonly][type=tel]:active, -select[readonly=readonly]:active { - border-color: #666; - outline: none; -} - -label { - cursor: pointer; - display: block; - margin-bottom: 0.6rem; - margin-top: 0; - padding-top: 0.4rem; - width: fit-content; -} -label.is-required::after { - color: #c7162b; - content: "*"; - left: 0.25rem; - position: relative; -} -label.has-error { - color: #c7162b; -} -label.has-caution { - color: #f99b11; -} -label.has-success { - color: #0e8420; -} -label.has-information { - color: #335280; -} - -[type=file] { - width: 100%; -} -[type=file]:focus { - outline: 2px solid #19b6ee; -} - -[type=search] { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - border-radius: 0; -} -[type=search]::-webkit-search-results-decoration { - display: none; -} -[type=search]::-webkit-search-cancel-button { - -webkit-appearance: searchfield-cancel-button; - cursor: pointer; -} - -[type=checkbox] + label::before { - border-radius: 0.125rem; -} -[type=checkbox] + label::after { - border-bottom: 2px solid; - border-left: 2px solid; - color: #fff; - height: 0.375rem; - left: 0.1875rem; - top: 0.8375rem; - transform: rotate(-45deg); - width: 0.625rem; -} -[type=checkbox]:checked + label::before { - background-color: #335280; - border-color: #335280; -} -[type=checkbox]:checked + .is-inline-label::after { - top: 0.25rem; -} - -[type=radio] + label::before, [type=radio] + label::after { - border-radius: 50%; -} -[type=radio] + label::after { - background-color: #fff; - border-radius: 50%; - height: 6px; - left: calc(0.5rem - 3px); - top: calc(1.15rem - 3px); - width: 6px; -} -[type=radio]:checked + label::before { - background-color: #335280; - border-color: #335280; -} -[type=radio]:checked + .is-inline-label::after { - top: calc(0.5rem - 3px); -} - -[type=submit] { - background-color: #0e8420; - border-color: #0e8420; - color: #fff; -} -[type=submit]:visited { - color: #fff; -} -[type=submit]:active, [type=submit]:active:hover { - background-color: #d9d9d9; - border-color: #999; - transition-duration: 0s; -} -[type=submit]:hover { - background-color: #095615; - border-color: #095615; -} -[type=submit]:disabled:active, [type=submit]:disabled:hover, [type=submit].is-disabled:active, [type=submit].is-disabled:hover { - background-color: #0e8420; - border-color: #0e8420; -} -[type=submit] .p-link--external { - color: currentColor; -} - -select { - background-image: url("data:image/svg+xml, %3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='chevron_down' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpolygon id='chevron' fill='%23666' transform='translate(8.000000, 8.193853) rotate(90.000000) translate(-8.000000, -8.193853) ' points='4.80614657 14.3333333 8.64539007 8.17730496 4.80614657 2.05437352 6.16312057 1.19385343 11.1938534 8.17730496 6.16312057 15.1938534'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E"); - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - background-color: #fff; - background-position: right 0.5rem center; - background-repeat: no-repeat; - background-size: 1rem; - box-shadow: none; - color: #111; - min-height: 1.5rem; - padding-right: 1.5rem; - text-indent: 0.01px; - text-overflow: ""; -} -select:hover { - cursor: pointer; -} -select[multiple], select[size] { - background-image: none; - box-shadow: none; - height: auto; -} -select[multiple] option, select[size] option { - font-weight: 300; - line-height: calc(1rem - 2px); - padding: 0.5rem 0.5rem; -} - -textarea { - margin-bottom: 0.7rem; - overflow: auto; - vertical-align: top; -} - -fieldset { - background-color: #f7f7f7; - border: 1px solid #cdcdcd; - border-radius: 0.125rem; - color: #111; - margin-bottom: 1.5rem; - padding: calc(0.5rem - 1px) 0.5rem; -} - -hr { - background-color: #cdcdcd; - border: 0; - height: 1px; - margin-bottom: calc(1rem - 1px); - margin-top: 0; - position: relative; - width: 100%; -} -hr + p { - margin-top: -0.5rem; -} - -.row.is-bordered { - position: relative; -} -.row.is-bordered::before { - background: #cdcdcd; - content: ""; - height: 1px; - margin-bottom: calc(1rem - 1px); - position: absolute; -} -@media (max-width: 620px) { - .row.is-bordered::before { - left: 1rem; - right: 1rem; - } -} -@media (min-width: 620px) and (max-width: 772px) { - .row.is-bordered::before { - left: 1.5rem; - right: 1.5rem; - } -} -@media (min-width: 772px) { - .row.is-bordered::before { - left: 1.5rem; - right: 1.5rem; - } -} - -a { - color: #007aa6; - text-decoration: none; -} -a:focus { - outline: thin dotted #cdcdcd; -} -a:hover { - cursor: pointer; - text-decoration: underline; -} -a:visited { - color: #005573; -} - -li > ul, -li > ol { - margin-bottom: 0; - padding-top: 0; -} - -li > ul > li:last-of-type, -li > ol > li:last-of-type { - padding-bottom: 0; -} - -ol, -ul { - margin-bottom: 1.5rem; - margin-left: 1rem; - margin-top: 0; - padding-left: 1rem; -} -nav ol, -nav ul { - list-style: none; - list-style-image: none; -} - -li, -dl { - margin: 0; - padding: 0; -} - -dd { - margin-left: 1rem; -} - -dt { - border-top: 1px solid #cdcdcd; -} -dt:first-of-type { - border-top: 0; -} - -img { - border: 0; - border-radius: 0.125rem; - height: auto; - max-width: 100%; -} - -svg:not(:root) { - overflow: hidden; -} - -figure { - margin-bottom: 1.5rem; - margin-left: 0; - width: 100%; -} -figure caption, -figure figcaption { - display: block; - font-style: italic; - margin-top: 0.25rem; - width: 100%; -} - -figure.floatright { - max-width: 30%; - float: right; -} - -figure.floatleft { - max-width: 30%; - float: left; -} - -object, -iframe, -embed, -canvas, -video, -audio { - display: block; - margin: 0 auto 20px; - max-width: 100%; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -[hidden] { - display: none; -} - -table { - border: 0; - border-collapse: collapse; - line-height: 1.5rem; - overflow-x: auto; - padding-bottom: 1.5rem; - width: 100%; - table-layout: fixed; -} - -td, -th { - font-weight: 300; - padding-left: 0; - text-align: left; - text-overflow: ellipsis; - vertical-align: top; -} -@media screen and (min-width: 772px) { - td:not(:last-child), -th:not(:last-child) { - padding-right: 1rem; - } -} - -thead th { - line-height: 1rem; - padding-bottom: 0.8rem; -} -thead tr { - border-bottom: 1px solid #111; - vertical-align: top; -} - -tbody tr:not(:first-child), tfoot tr { - border-top: 1px solid #cdcdcd; -} - -.p-accordion__tab, td, -th { - padding-bottom: 0.5rem; - padding-top: calc(0.5rem - 1px); -} - -.p-accordion__list { - list-style-type: none; - margin: 0 0 1.5rem 0; - padding: 0; -} - -.p-accordion__group { - position: relative; -} -.p-accordion__tab { - background-position: top 50% left 1rem; - background-repeat: no-repeat; - background-color: inherit; - border: 0; - border-radius: 0; - margin-bottom: 0; - padding-left: 2.75rem; - padding-right: 1rem; - text-align: left; - transition-duration: 0s; - width: 100%; - z-index: 2; -} -.p-accordion__tab:focus { - outline: 2px solid #19b6ee; -} -.p-accordion__tab[aria-expanded=true] { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M0 8.889V7.111h16v1.778z'/%3E%3C/svg%3E"); - background-size: 0.75rem; -} -.p-accordion__tab[aria-expanded=false] { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23666' fill-rule='nonzero'%3E%3Cpath d='M7.111 0h1.778v16H7.111z'/%3E%3Cpath d='M0 8.889V7.111h16v1.778z'/%3E%3C/g%3E%3C/svg%3E"); - background-size: 0.75rem; -} - -.p-accordion__panel { - margin: 0; - overflow: auto; - padding-left: 3.75rem; -} -.p-accordion__panel[aria-hidden=true] { - display: none; -} - -.p-article-pagination__link--next::after, .p-article-pagination__link--previous::before { - color: #666; - content: "›"; - font-size: 2em; - position: absolute; - top: 1rem; -} - -.p-article-pagination { - display: flex; - width: 100%; -} - -.p-article-pagination__label, -.p-article-pagination__title { - color: #111; - display: block; - margin-top: 0; - width: 100%; -} - -.p-article-pagination__label { - margin-bottom: 0.25rem; -} - -.p-article-pagination__title { - font-size: 1.125em; -} -@media (min-width: 620px) { - .p-article-pagination__title { - font-size: 1.25em; - } -} - -.p-article-pagination__link, .p-article-pagination__link--next, .p-article-pagination__link--previous { - margin-top: 0; - padding: 1rem; - position: relative; - width: 50%; -} -.p-article-pagination__link:hover, .p-article-pagination__link--next:hover, .p-article-pagination__link--previous:hover { - background: #f7f7f7; - text-decoration: none; -} - -.p-article-pagination__link--previous { - padding-left: 2.5rem; - text-align: left; -} -@media (max-width: 460px) { - .p-article-pagination__link--previous { - width: auto; - } - .p-article-pagination__link--previous:only-child { - width: 100%; - } - .p-article-pagination__link--previous:not(:only-child) * { - display: none; - max-width: 0.25rem; - padding-left: 1.5rem; - } -} -.p-article-pagination__link--previous::before { - left: 0.5rem; - transform: scaleX(-1); -} - -.p-article-pagination__link--next { - padding-right: 2.5rem; - text-align: right; -} -@media (max-width: 460px) { - .p-article-pagination__link--next { - width: 100%; - } -} -.p-article-pagination__link--next:only-child { - margin-left: auto; -} -.p-article-pagination__link--next::after { - right: 0.5rem; -} - -.p-breadcrumbs { - list-style: none; - margin: 0; - padding: 0; - width: 100%; -} - -.p-breadcrumbs__item { - display: inline-block; - margin-bottom: 0.6rem; -} -.p-breadcrumbs__item:not(:first-of-type) { - text-indent: 1rem; -} -.p-breadcrumbs__item:not(:first-of-type)::before { - content: "›"; - margin-left: -0.75rem; - margin-right: 0.5rem; -} - -.p-button { - background-color: #fff; - border-color: #999; - color: #000; -} -.p-button:visited { - color: #000; -} -.p-button:active { - background-color: #d1d1d1; - border-color: #fff; - transition-duration: 0s; -} -.p-button:hover { - background-color: #e6e6e6; - border-color: #999; -} -.p-button:disabled:active, .p-button:disabled:hover, .is-disabled.p-button:active, .is-disabled.p-button:hover { - background-color: #fff; - border-color: #fff; -} -.p-button .p-link--external { - color: currentColor; -} - -.p-button--neutral { - background-color: #fff; - border-color: #999; - color: #000; -} -.p-button--neutral:visited { - color: #000; -} -.p-button--neutral:active { - background-color: #d9d9d9; - border-color: #999; - transition-duration: 0s; -} -.p-button--neutral:hover { - background-color: #e6e6e6; - border-color: #999; -} -.p-button--neutral:disabled:active, .p-button--neutral:disabled:hover, .is-disabled.p-button--neutral:active, .is-disabled.p-button--neutral:hover { - background-color: transparent; - border-color: #999; -} -.p-button--neutral .p-link--external { - color: currentColor; -} - -.p-button--brand { - background-color: #333; - border-color: #333; - color: #fff; -} -.p-button--brand:visited { - color: #fff; -} -.p-button--brand:active { - background-color: #0d0d0d; - border-color: #0d0d0d; - transition-duration: 0s; -} -.p-button--brand:hover { - background-color: #1a1a1a; - border-color: #1a1a1a; -} -.p-button--brand:disabled:active, .p-button--brand:disabled:hover, .is-disabled.p-button--brand:active, .is-disabled.p-button--brand:hover { - background-color: #333; - border-color: #333; -} -.p-button--brand .p-link--external { - color: currentColor; -} - -.p-button--positive { - background-color: #0e8420; - border-color: #0e8420; - color: #fff; -} -.p-button--positive:visited { - color: #fff; -} -.p-button--positive:active { - background-color: #073f0f; - border-color: #073f0f; - transition-duration: 0s; -} -.p-button--positive:hover { - background-color: #095615; - border-color: #095615; -} -.p-button--positive:disabled:active, .p-button--positive:disabled:hover, .is-disabled.p-button--positive:active, .is-disabled.p-button--positive:hover { - background-color: #0e8420; - border-color: #0e8420; -} -.p-button--positive .p-link--external { - color: currentColor; -} - -.p-button--negative { - background-color: #c7162b; - border-color: #c7162b; - color: #fff; -} -.p-button--negative:visited { - color: #fff; -} -.p-button--negative:active { - background-color: #820e1c; - border-color: #820e1c; - transition-duration: 0s; -} -.p-button--negative:hover { - background-color: #991121; - border-color: #991121; -} -.p-button--negative:disabled:active, .p-button--negative:disabled:hover, .is-disabled.p-button--negative:active, .is-disabled.p-button--negative:hover { - background-color: #c7162b; - border-color: #c7162b; -} -.p-button--negative .p-link--external { - color: currentColor; -} - -.p-button--base { - background-color: transparent; - border-color: transparent; - color: #000; -} -.p-button--base:visited { - color: #000; -} -.p-button--base:active { - background-color: #d1d1d1; - border-color: transparent; - transition-duration: 0s; -} -.p-button--base:hover { - background-color: #e6e6e6; - border-color: transparent; -} -.p-button--base:disabled:active, .p-button--base:disabled:hover, .is-disabled.p-button--base:active, .is-disabled.p-button--base:hover { - background-color: transparent; - border-color: #999; -} -.p-button--base .p-link--external { - color: currentColor; -} - -@media (min-width: 772px) { - [class~=p-button].is-inline { - margin-left: 1rem; - width: auto; - } -} - -[class~=p-button].has-icon { - width: auto; -} -[class~=p-button].has-icon [class*=p-icon]:only-child { - margin-left: -2px; - margin-right: -2px; -} -[class~=p-button].has-icon [class*=p-icon] + * { - margin-left: 0.25rem; -} - -.p-card { - padding: calc(1rem - 1px); -} - -.p-card--overlay { - background: rgba(255, 255, 255, 0.9); - color: #111; - margin-bottom: 1.5rem; - overflow: auto; - padding: 1rem; -} - -.p-card--muted { - margin-bottom: 1.5rem; - overflow: auto; - padding: 1rem; -} - -.p-card__image { - margin-bottom: 1rem; - vertical-align: top; - width: 100%; -} - -.p-card__header { - border-bottom: 1px solid #cdcdcd; - padding-bottom: 1rem; -} -.p-card__header > .p-link--soft { - display: inline-block; - overflow: auto; -} - -.p-card__thumbnail { - max-height: 2rem; -} - -[class*=p-card] > p:not([class^=p-heading--]):last-child, -[class*=p-card] > h5:last-child, -[class*=p-card] > h6:last-child { - margin-bottom: 0.1rem; -} -[class*=p-card] > p:not([class^=p-heading--]):first-child, -[class*=p-card] > h5:first-child, -[class*=p-card] > h6:first-child { - margin-top: -0.5rem; -} - -.p-code-copyable { - display: flex; - overflow: hidden; - position: relative; -} -.p-code-copyable + .p-code-copyable { - margin-top: 0; -} -.p-code-copyable::before { - color: #999; - content: "$"; - display: block; - left: 0; - line-height: 1.5rem; - padding: 0 calc(36px + 0.5rem) 0 0.5rem; - position: absolute; - top: 0.25rem; - width: 1rem; -} - -.p-code-copyable__input { - border: 0; - color: #666; - font-family: "Ubuntu Mono", Consolas, Monaco, Courier, monospace; - line-height: 1.5rem; - padding: 0 calc(36px + 0.5rem) 0 1.5rem; - width: 100%; -} - -.p-code-copyable__action { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='17' width='16'%3E%3Cg fill='%23666' fill-rule='evenodd'%3E%3Cpath d='M10.587 1.8h3.259c.472 0 .846.053 1.161.2s.567.412.716.748c.298.67.266 1.491.277 2.613V13.84c-.011 1.121.021 1.942-.277 2.613-.149.335-.401.6-.716.747s-.689.2-1.161.2H4.154c-.472 0-.846-.053-1.16-.2s-.568-.412-.717-.747c-.246-.554-.268-1.21-.273-2.053h.803c.016.854.058 1.428.178 1.707.072.166.151.26.336.348s.477.145.896.145h9.566c.42 0 .712-.057.897-.145a.602.602 0 0 0 .335-.348c.143-.331.175-1.081.185-2.222V5.309c-.01-1.137-.042-1.885-.185-2.216a.603.603 0 0 0-.335-.348c-.185-.088-.477-.145-.897-.145h-3.538c.182-.225.304-.5.342-.8zm-3.174 0c.038.3.16.575.341.8H4.217c-.42 0-.712.057-.896.145a.603.603 0 0 0-.336.348c-.143.33-.175 1.079-.185 2.216V10.8H2V5.361c.01-1.122-.021-1.942.277-2.613.149-.336.401-.601.716-.748s.689-.2 1.16-.2h3.26z'/%3E%3Cpath fill-rule='nonzero' d='M11.398 1.8v2.4H6.6V1.8h1.6c0 .447.353.8.8.8.445 0 .799-.353.799-.8h1.6z'/%3E%3Cpath fill-rule='nonzero' d='M10.6 1.6c0 .879-.722 1.6-1.6 1.6-.879 0-1.6-.721-1.6-1.6C7.4.72 8.121 0 9 0c.879 0 1.6.72 1.6 1.6zm-.8 0c0-.447-.354-.8-.8-.8-.447 0-.8.353-.8.8 0 .446.353.8.8.8.446 0 .8-.354.8-.8z'/%3E%3Cpath d='M8.4 7.2H14v1H8.4zM8.4 9.6H14v1H8.4zM10 12h4v1h-4z'/%3E%3Cpath fill-rule='nonzero' d='M4.4 10s2.134 1.026 4 2.505h-.002C6.427 14.03 4.4 15 4.4 15v-5z'/%3E%3Cpath d='M0 11.6h4.4v2H0z'/%3E%3C/g%3E%3C/svg%3E"); - background-color: #f7f7f7; - border-color: #999; - color: #000; - background-position: center; - background-repeat: no-repeat; - border: 0; - border-left: 1px solid #cdcdcd; - border-radius: 0; - line-height: 1.5rem; - margin: 0; - position: absolute; - right: 0; - top: 0; - width: 36px; -} -.p-code-copyable__action:visited { - color: #000; -} -.p-code-copyable__action:active, .p-code-copyable__action:active:hover { - background-color: #d9d9d9; - border-color: #999; - transition-duration: 0s; -} -.p-code-copyable__action:hover { - background-color: #dedede; - border-color: #999; -} -.p-code-copyable__action:disabled:active, .p-code-copyable__action:disabled:hover, .p-code-copyable__action.is-disabled:active, .p-code-copyable__action.is-disabled:hover { - background-color: transparent; - border-color: #999; -} -.p-code-copyable__action .p-link--external { - color: currentColor; -} - -.p-code-numbered { - counter-reset: line-numbering; - padding: 0; -} - -.p-code-numbered__line { - display: inline-block; - padding: 0.5rem 1rem 0 5.5rem; - position: relative; - width: 100%; -} -.p-code-numbered__line:empty { - display: block; - min-height: 2.5rem; -} -.p-code-numbered__line:last-of-type, .p-code-numbered__line:last-of-type::before { - padding-bottom: 0.5rem; -} -.p-code-numbered__line::before { - background: #fff; - border-right: 1px solid #cdcdcd; - color: #666; - content: counter(line-numbering); - counter-increment: line-numbering; - display: inline-block; - height: 100%; - left: 0; - padding: 0.5rem 1rem 0 1rem; - pointer-events: none; - position: absolute; - text-align: right; - top: 0; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - width: 4.5rem; -} - -.p-contextual-menu, .p-contextual-menu--center, .p-contextual-menu--left { - display: inline-block; - margin: 0; - position: relative; -} - -.p-contextual-menu--left .p-contextual-menu__dropdown { - left: 0; -} -.p-contextual-menu--left .p-contextual-menu__dropdown::before, .p-contextual-menu--left .p-contextual-menu__dropdown::after { - left: 0.5rem; - right: initial; -} -.p-contextual-menu--left .p-contextual-menu__dropdown::after { - left: 0.6rem; -} - -.p-contextual-menu--center .p-contextual-menu__dropdown { - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} -.p-contextual-menu--center .p-contextual-menu__dropdown::before, .p-contextual-menu--center .p-contextual-menu__dropdown::after { - left: 50%; - right: initial; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} - -.p-contextual-menu__dropdown { - display: none; - margin: 0; - max-width: 21rem; - min-width: 10rem; - padding: 0; - position: absolute; - right: 0; - top: calc(100% + 0.25rem); - z-index: 1; -} -.p-contextual-menu__dropdown::before, .p-contextual-menu__dropdown::after { - border-bottom: 8px solid rgba(17, 17, 17, 0.05); - border-left: 8px solid transparent; - border-right: 8px solid transparent; - bottom: 100%; - content: ""; - height: 0; - pointer-events: none; - position: absolute; - right: 0.5rem; - width: 0; -} -.p-contextual-menu__dropdown::after { - border-bottom: 6px solid #fff; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - right: 0.6rem; -} -.p-contextual-menu__dropdown[aria-hidden=false] { - display: block; -} - -.p-contextual-menu__group { - display: block; - padding: 0.125rem 0; -} -.p-contextual-menu__group + .p-contextual-menu__group { - border-top: 1px solid #cdcdcd; - margin: 0; -} - -.p-contextual-menu__toggle { - margin-bottom: 0.7rem; -} - -.p-contextual-menu__link { - border: 0; - clear: both; - color: #111; - display: block; - line-height: 1.5rem; - margin: 0; - overflow: hidden; - padding: 0.125rem 0.5rem; - text-align: left; - text-overflow: ellipsis; - white-space: nowrap; - width: 100%; -} -.p-contextual-menu__link:hover { - background-color: #f7f7f7; - text-decoration: none; -} - -.p-divider__block { - position: relative; -} -@media (max-width: 772px) { - .p-divider__block { - padding-bottom: 1.5rem; - padding-top: 1rem; - } - .p-divider__block:not(:first-child)::before { - background-color: #cdcdcd; - content: ""; - height: 1px; - left: 0; - position: absolute; - right: 0; - top: 0; - } -} -@media (min-width: 772px) { - .p-divider__block:not(:nth-child(1))::before { - background-color: #cdcdcd; - bottom: 0.5rem; - content: ""; - left: -1rem; - position: absolute; - top: 0.5rem; - width: 1px; - } -} - -.p-form-help-text { - color: #666; - margin-top: -0.5rem; -} - -.p-form-validation { - color: #111; - position: relative; -} -.p-form-validation :not(select).p-form-validation__input { - background-position: calc(100% - 0.5rem) 50%; - background-repeat: no-repeat; -} - -.p-form-validation__message { - margin-top: -0.5rem; -} - -.p-form-validation__icon { - position: relative; -} -.p-form-validation__icon::after { - position: absolute; - right: 0.5rem; - top: calc(50% - 0.25rem); -} - -.is-error .p-form-validation__select-wrapper, -.is-caution .p-form-validation__select-wrapper, -.is-success .p-form-validation__select-wrapper { - min-width: 10em; - position: relative; -} -.is-error .p-form-validation__select-wrapper::after, -.is-caution .p-form-validation__select-wrapper::after, -.is-success .p-form-validation__select-wrapper::after { - background-repeat: no-repeat; - background-size: contain; - content: " "; - display: block; - height: 1rem; - pointer-events: none; - position: absolute; - right: 2rem; - top: calc(50% - (1rem / 2) - (0.7rem / 2)); - width: 1rem; - z-index: 100; -} -.is-error .p-form-validation__select-wrapper .p-form-validation__input, -.is-caution .p-form-validation__select-wrapper .p-form-validation__input, -.is-success .p-form-validation__select-wrapper .p-form-validation__input { - padding-right: 4rem; -} - -.is-error .p-form-validation__input { - border-color: #c7162b; -} -.is-error :not(select).p-form-validation__input, -.is-error .p-form-validation__select-wrapper::after { - background-image: url("/assets/4b0cd7fc-icon-error.svg"); -} - -.is-success .p-form-validation__input { - border-color: #0e8420; -} -.is-success :not(select).p-form-validation__input, -.is-success .p-form-validation__select-wrapper::after { - background-image: url("/assets/94949185-icon-success.svg"); -} - -.is-caution .p-form-validation__input { - border-color: #f99b11; -} -.is-caution :not(select).p-form-validation__input, -.is-caution .p-form-validation__select-wrapper::after { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Cg color='%23000'%3E%3Cpath fill='none' d='M0 0h16v16H0z'/%3E%3Cpath stroke-linejoin='round' fill='%23f99b11' transform='matrix%282.28 0 0 2.437 -2180.8 -490.52%29' stroke='%23f99b11' stroke-width='.848' d='M963.07 207.03h-6.15l3.08-5.33z'/%3E%3Cpath d='M7 5v5h2V5H7zm0 6v2h2v-2H7z' fill='%23111'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-form--stacked { - width: 100%; -} -@media screen and (min-width: 772px) { - .p-form--stacked .p-form__group { - align-items: baseline; - } - .p-form--stacked .p-form__group + .p-form__group { - margin-top: 0.5rem; - } -} - -@media screen and (min-width: 772px) { - .p-form--inline { - align-items: baseline; - display: inline-flex; - flex-direction: row; - } - .p-form--inline > * { - margin: 0; - } -} -@media screen and (min-width: 772px) { - .p-form--inline .p-form__group { - display: flex; - width: auto; - } - .p-form--inline .p-form__group + .p-form__group, -.p-form--inline .p-form__group + [class*=p-button] { - margin-left: 1.5rem; - } - .p-form--inline .p-form__group .p-form__label, -.p-form--inline .p-form__group .p-form__control, -.p-form--inline .p-form__group .p-form-validation__message { - align-self: baseline; - box-sizing: border-box; - } - .p-form--inline .p-form__group .p-form__label { - flex-shrink: 0; - padding-right: 1rem; - } - .p-form--inline .p-form__group .p-form__control { - display: inline-block; - } - .p-form--inline .p-form__group .p-form-validation__message, -.p-form--inline .p-form__group .p-form-help-text { - clear: both; - min-width: 100%; - width: 0; - } -} -.p-form--inline [class*=p-button] { - flex: initial; - flex-shrink: 0; - margin-top: 0; -} - -form + [class*=p-button] { - margin-top: 1.5rem; -} - -.row { - width: 100%; -} - -@media (max-width: 620px) { - .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-medium-6, .col-medium-5, .col-medium-4, .col-medium-3, .col-medium-2, .col-medium-1 { - grid-column: 1/span 4; - } -} - -@media (min-width: 620px) and (max-width: 772px) { - .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-small-4, .col-small-3, .col-small-2, .col-small-1 { - grid-column: 1/span 6; - } -} - -@media (min-width: 772px) { - .col-medium-6, .col-medium-5, .col-medium-4, .col-medium-3, .col-medium-2, .col-medium-1, .col-small-4, .col-small-3, .col-small-2, .col-small-1 { - grid-column: 1/span 12; - } -} - -.grid-demo [class*=col-] { - background: rgba(199, 22, 43, 0.1); - margin-bottom: 0.5rem; -} - -.col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-medium-6, .col-medium-5, .col-medium-4, .col-medium-3, .col-medium-2, .col-medium-1, .col-small-4, .col-small-3, .col-small-2, .col-small-1 { - display: block; -} - -.p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - display: grid; - grid-template-rows: auto; - margin-left: auto; - margin-right: auto; - max-width: 72rem; -} -.p-stepped-list--detailed .p-stepped-list__item [class*=col-], .row [class*=col-], .p-divider [class*=col-] { - grid-column-start: auto; -} -.p-stepped-list--detailed .p-stepped-list__item .p-stepped-list__item, .row .p-stepped-list--detailed .p-stepped-list__item, .p-stepped-list--detailed .row .p-stepped-list__item, .p-stepped-list--detailed .p-stepped-list__item .row, .row .row, .p-divider .p-stepped-list--detailed .p-stepped-list__item, .p-stepped-list--detailed .p-divider .p-stepped-list__item, .p-divider .row, .p-stepped-list--detailed .p-stepped-list__item .p-divider, .row .p-divider, .p-divider .p-divider { - margin-left: 0; - margin-right: 0; - padding-left: 0; - padding-right: 0; -} -@media (max-width: 620px) { - .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - grid-gap: 0 1.5rem; - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - .p-stepped-list--detailed .p-stepped-list__item > *, .row > *, .p-divider > * { - grid-column-end: span 4; - } -} -@media (min-width: 620px) and (max-width: 772px) { - .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - grid-gap: 0 2rem; - grid-template-columns: repeat(6, minmax(0, 1fr)); - } - .p-stepped-list--detailed .p-stepped-list__item > *, .row > *, .p-divider > * { - grid-column-end: span 6; - } -} -@media (min-width: 772px) { - .p-stepped-list--detailed .p-stepped-list__item, .row, .p-divider { - grid-gap: 0 2rem; - grid-template-columns: repeat(12, minmax(0, 1fr)); - } - .p-stepped-list--detailed .p-stepped-list__item > *, .row > *, .p-divider > * { - grid-column-end: span 12; - } -} - -@media (max-width: 620px) { - .col-small-4 { - grid-column-end: span 4; - } - .col-small-4 .row { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - - .col-small-3 { - grid-column-end: span 3; - } - .col-small-3 .row { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .col-small-2 { - grid-column-end: span 2; - } - .col-small-2 .row { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .col-small-1 { - grid-column-end: span 1; - } -} -@media (min-width: 620px) and (max-width: 772px) { - .col-medium-6 { - grid-column-end: span 6; - } - .col-medium-6 .row { - grid-template-columns: repeat(6, minmax(0, 1fr)); - } - - .col-medium-5 { - grid-column-end: span 5; - } - .col-medium-5 .row { - grid-template-columns: repeat(5, minmax(0, 1fr)); - } - - .col-medium-4 { - grid-column-end: span 4; - } - .col-medium-4 .row { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - - .col-medium-3 { - grid-column-end: span 3; - } - .col-medium-3 .row { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .col-medium-2 { - grid-column-end: span 2; - } - .col-medium-2 .row { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .col-medium-1 { - grid-column-end: span 1; - } -} -@media (min-width: 772px) { - .col-12 { - grid-column-end: span 12; - } - .col-12 .row { - grid-template-columns: repeat(12, minmax(0, 1fr)); - } - - .col-11 { - grid-column-end: span 11; - } - .col-11 .row { - grid-template-columns: repeat(11, minmax(0, 1fr)); - } - - .col-10 { - grid-column-end: span 10; - } - .col-10 .row { - grid-template-columns: repeat(10, minmax(0, 1fr)); - } - - .col-9 { - grid-column-end: span 9; - } - .col-9 .row { - grid-template-columns: repeat(9, minmax(0, 1fr)); - } - - .col-8 { - grid-column-end: span 8; - } - .col-8 .row { - grid-template-columns: repeat(8, minmax(0, 1fr)); - } - - .col-7 { - grid-column-end: span 7; - } - .col-7 .row { - grid-template-columns: repeat(7, minmax(0, 1fr)); - } - - .col-6 { - grid-column-end: span 6; - } - .col-6 .row { - grid-template-columns: repeat(6, minmax(0, 1fr)); - } - - .col-5 { - grid-column-end: span 5; - } - .col-5 .row { - grid-template-columns: repeat(5, minmax(0, 1fr)); - } - - .col-4 { - grid-column-end: span 4; - } - .col-4 .row { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - - .col-3 { - grid-column-end: span 3; - } - .col-3 .row { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .col-2 { - grid-column-end: span 2; - } - .col-2 .row { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .col-1 { - grid-column-end: span 1; - } -} -@media (max-width: 620px) { - .row [class*=col-].col-start-small-1 { - grid-column-start: 1; - } - - .col-order-small-1 { - order: 1; - } - - .row [class*=col-].col-start-small-2 { - grid-column-start: 2; - } - - .col-order-small-2 { - order: 2; - } - - .row [class*=col-].col-start-small-3 { - grid-column-start: 3; - } - - .col-order-small-3 { - order: 3; - } -} -@media (min-width: 620px) and (max-width: 772px) { - .row [class*=col-].col-start-medium-1 { - grid-column-start: 1; - } - - .col-order-medium-1 { - order: 1; - } - - .row [class*=col-].col-start-medium-2 { - grid-column-start: 2; - } - - .col-order-medium-2 { - order: 2; - } - - .row [class*=col-].col-start-medium-3 { - grid-column-start: 3; - } - - .col-order-medium-3 { - order: 3; - } - - .row [class*=col-].col-start-medium-4 { - grid-column-start: 4; - } - - .col-order-medium-4 { - order: 4; - } - - .row [class*=col-].col-start-medium-5 { - grid-column-start: 5; - } - - .col-order-medium-5 { - order: 5; - } -} -@media (min-width: 772px) { - .row [class*=col-].col-start-large-1 { - grid-column-start: 1; - } - - .col-order-large-1 { - order: 1; - } - - .row [class*=col-].col-start-large-2 { - grid-column-start: 2; - } - - .col-order-large-2 { - order: 2; - } - - .row [class*=col-].col-start-large-3 { - grid-column-start: 3; - } - - .col-order-large-3 { - order: 3; - } - - .row [class*=col-].col-start-large-4 { - grid-column-start: 4; - } - - .col-order-large-4 { - order: 4; - } - - .row [class*=col-].col-start-large-5 { - grid-column-start: 5; - } - - .col-order-large-5 { - order: 5; - } - - .row [class*=col-].col-start-large-6 { - grid-column-start: 6; - } - - .col-order-large-6 { - order: 6; - } - - .row [class*=col-].col-start-large-7 { - grid-column-start: 7; - } - - .col-order-large-7 { - order: 7; - } - - .row [class*=col-].col-start-large-8 { - grid-column-start: 8; - } - - .col-order-large-8 { - order: 8; - } - - .row [class*=col-].col-start-large-9 { - grid-column-start: 9; - } - - .col-order-large-9 { - order: 9; - } - - .row [class*=col-].col-start-large-10 { - grid-column-start: 10; - } - - .col-order-large-10 { - order: 10; - } - - .row [class*=col-].col-start-large-11 { - grid-column-start: 11; - } - - .col-order-large-11 { - order: 11; - } -} -.p-heading-icon { - margin-bottom: 1rem; -} -@media (min-width: 772px) { - .p-heading-icon { - margin-bottom: 0; - } -} - -.p-heading-icon__header { - display: flex; - margin-bottom: -0.5rem; -} -.p-heading-icon__header.is-stacked { - display: inherit; -} - -.p-heading-icon__img { - flex-shrink: 0; - height: 2rem; - margin-bottom: 0.5rem; - margin-right: 1rem; - width: 2rem; -} -@media (max-width: 772px) { - .p-heading-icon__img { - margin-top: 0; - } -} -@media (min-width: 772px) { - .p-heading-icon__img { - height: 2.5rem; - margin-top: -0.5rem; - width: 2.5rem; - } -} - -.p-heading-icon--small .p-heading-icon__img { - height: 1.5rem; - width: 1.5rem; -} -@media (max-width: 772px) { - .p-heading-icon--small .p-heading-icon__img { - margin-top: 0.25rem; - } -} -@media (min-width: 772px) { - .p-heading-icon--small .p-heading-icon__img { - height: 2rem; - margin-top: 0; - width: 2rem; - } -} - -.p-icon--anchor { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M9.002 13.974a11.19 11.19 0 0 0 2.801-.574 12.166 12.166 0 0 0 3.273-1.702l.926 1.405a12.636 12.636 0 0 1-3.653 2.116c-1.356.518-2.805.777-4.347.777-1.543 0-2.998-.26-4.364-.777a12.695 12.695 0 0 1-3.636-2.116l.925-1.405c.98.727 2.066 1.295 3.256 1.702.893.306 1.833.498 2.819.574V5.996h-3v-1h3V3.733a1.999 1.999 0 1 1 2-.004v1.267h2.997v1H9.002v7.978z' fill='%23666' fill-rule='nonzero'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--anchor, .p-icon--anchor.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M9.002 13.974a11.19 11.19 0 0 0 2.801-.574 12.166 12.166 0 0 0 3.273-1.702l.926 1.405a12.636 12.636 0 0 1-3.653 2.116c-1.356.518-2.805.777-4.347.777-1.543 0-2.998-.26-4.364-.777a12.695 12.695 0 0 1-3.636-2.116l.925-1.405c.98.727 2.066 1.295 3.256 1.702.893.306 1.833.498 2.819.574V5.996h-3v-1h3V3.733a1.999 1.999 0 1 1 2-.004v1.267h2.997v1H9.002v7.978z' fill='%23e5e5e5' fill-rule='nonzero'/%3E%3C/svg%3E"); -} - -.p-icon--plus { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23666' fill-rule='nonzero'%3E%3Cpath d='M7.111 0h1.778v16H7.111z'/%3E%3Cpath d='M0 8.889V7.111h16v1.778z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--plus, .p-icon--plus.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23e5e5e5' fill-rule='nonzero'%3E%3Cpath d='M7.111 0h1.778v16H7.111z'/%3E%3Cpath d='M0 8.889V7.111h16v1.778z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--minus { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M0 8.889V7.111h16v1.778z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--minus, .p-icon--minus.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M0 8.889V7.111h16v1.778z'/%3E%3C/svg%3E"); -} - -.p-icon--expand { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%23666' d='M.533.533h14.933v14.933H.533z'/%3E%3Cpath fill='%23666' fill-rule='nonzero' d='M7.467 4.267h1.067v7.467H7.467z'/%3E%3Cpath fill='%23666' fill-rule='nonzero' d='M4.267 8.533V7.467h7.466v1.066z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--expand, .p-icon--expand.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h16v16H0z'/%3E%3Cpath stroke='%23e5e5e5' d='M.533.533h14.933v14.933H.533z'/%3E%3Cpath fill='%23e5e5e5' fill-rule='nonzero' d='M7.467 4.267h1.067v7.467H7.467z'/%3E%3Cpath fill='%23e5e5e5' fill-rule='nonzero' d='M4.267 8.533V7.467h7.466v1.066z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--collapse { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='15' width='15' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h15v15H0z'/%3E%3C/defs%3E%3Cg fill-rule='evenodd' fill='none'%3E%3Cuse xlink:href='%23a' fill='none'/%3E%3Cpath stroke='%23666' d='M.5.5h14v14H.5z'/%3E%3Cpath fill='%23666' d='M4 8V7h7v1z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--collapse, .p-icon--collapse.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='15' width='15' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h15v15H0z'/%3E%3C/defs%3E%3Cg fill-rule='evenodd' fill='none'%3E%3Cuse xlink:href='%23a' fill='none'/%3E%3Cpath stroke='%23e5e5e5' d='M.5.5h14v14H.5z'/%3E%3Cpath fill='%23e5e5e5' d='M4 8V7h7v1z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--contextual-menu { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='4' width='10'%3E%3Cpath d='M3.637 3.138A26.335 26.335 0 0 1 0 0h1.541a21.242 21.242 0 0 0 1.364 1.187 16.899 16.899 0 0 0 .752.563c.397.282.935.626 1.315.848h.054c.38-.222.918-.566 1.315-.848.398-.28.788-.583 1.169-.904.327-.275.643-.557.947-.846h1.541a26.335 26.335 0 0 1-3.637 3.138c-.519.365-.973.652-1.362.862-.39-.21-.844-.497-1.362-.862z' fill='%23666' fill-rule='evenodd'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--contextual-menu, .p-icon--contextual-menu.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='4' width='10'%3E%3Cpath d='M3.637 3.138A26.335 26.335 0 0 1 0 0h1.541a21.242 21.242 0 0 0 1.364 1.187 16.899 16.899 0 0 0 .752.563c.397.282.935.626 1.315.848h.054c.38-.222.918-.566 1.315-.848.398-.28.788-.583 1.169-.904.327-.275.643-.557.947-.846h1.541a26.335 26.335 0 0 1-3.637 3.138c-.519.365-.973.652-1.362.862-.39-.21-.844-.497-1.362-.862z' fill='%23e5e5e5' fill-rule='evenodd'/%3E%3C/svg%3E"); -} - -.p-icon--close { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M1.748 0L0 1.748 6.252 8 0 14.254 1.748 16 8 9.748 14.252 16 16 14.254 9.748 8 16 1.748 14.252 0 8 6.254z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--close, .p-icon--close.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M1.748 0L0 1.748 6.252 8 0 14.254 1.748 16 8 9.748 14.252 16 16 14.254 9.748 8 16 1.748 14.252 0 8 6.254z'/%3E%3C/svg%3E"); -} - -.p-icon--help { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23666' fill-rule='nonzero'%3E%3Cpath d='M8.007 4.83c-.328 0-.642.043-.942.127a4.05 4.05 0 0 0-.943.38l-.478-1.309a4.778 4.778 0 0 1 1.181-.464c.45-.122.91-.183 1.38-.183.562 0 1.026.08 1.392.24.366.15.657.342.873.576.215.235.365.493.45.774.084.282.127.554.127.816 0 .32-.061.605-.183.859a3.036 3.036 0 0 1-.437.703c-.178.216-.37.422-.576.62a6.845 6.845 0 0 0-.577.59 3.247 3.247 0 0 0-.45.633 1.675 1.675 0 0 0-.17.76v.169c0 .056.005.112.015.169H7.205a2.808 2.808 0 0 1-.042-.296 3.744 3.744 0 0 1-.014-.31c0-.309.052-.586.155-.83a3.03 3.03 0 0 1 .394-.675 6.02 6.02 0 0 1 .506-.577 9.21 9.21 0 0 0 .52-.534c.16-.179.292-.362.395-.55.103-.187.155-.393.155-.618a.982.982 0 0 0-.324-.76c-.206-.206-.52-.31-.943-.31zm1.12 7.75c0 .327-.108.595-.323.801-.216.206-.483.31-.802.31-.31 0-.577-.104-.802-.31-.216-.206-.324-.474-.324-.802 0-.328.108-.596.324-.802a1.12 1.12 0 0 1 .802-.323c.319 0 .586.107.802.323.215.206.323.474.323.802z'/%3E%3Cpath d='M1.219 0C.543 0 0 .543 0 1.219V14.78c0 .676.543 1.22 1.219 1.22H14.78c.676 0 1.22-.544 1.22-1.22V1.22C16 .543 15.456 0 14.78 0H1.22zm-.076 1.143h13.714v13.714H1.143V1.143z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--help, .p-icon--help.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23e5e5e5' fill-rule='nonzero'%3E%3Cpath d='M8.007 4.83c-.328 0-.642.043-.942.127a4.05 4.05 0 0 0-.943.38l-.478-1.309a4.778 4.778 0 0 1 1.181-.464c.45-.122.91-.183 1.38-.183.562 0 1.026.08 1.392.24.366.15.657.342.873.576.215.235.365.493.45.774.084.282.127.554.127.816 0 .32-.061.605-.183.859a3.036 3.036 0 0 1-.437.703c-.178.216-.37.422-.576.62a6.845 6.845 0 0 0-.577.59 3.247 3.247 0 0 0-.45.633 1.675 1.675 0 0 0-.17.76v.169c0 .056.005.112.015.169H7.205a2.808 2.808 0 0 1-.042-.296 3.744 3.744 0 0 1-.014-.31c0-.309.052-.586.155-.83a3.03 3.03 0 0 1 .394-.675 6.02 6.02 0 0 1 .506-.577 9.21 9.21 0 0 0 .52-.534c.16-.179.292-.362.395-.55.103-.187.155-.393.155-.618a.982.982 0 0 0-.324-.76c-.206-.206-.52-.31-.943-.31zm1.12 7.75c0 .327-.108.595-.323.801-.216.206-.483.31-.802.31-.31 0-.577-.104-.802-.31-.216-.206-.324-.474-.324-.802 0-.328.108-.596.324-.802a1.12 1.12 0 0 1 .802-.323c.319 0 .586.107.802.323.215.206.323.474.323.802z'/%3E%3Cpath d='M1.219 0C.543 0 0 .543 0 1.219V14.78c0 .676.543 1.22 1.219 1.22H14.78c.676 0 1.22-.544 1.22-1.22V1.22C16 .543 15.456 0 14.78 0H1.22zm-.076 1.143h13.714v13.714H1.143V1.143z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--information { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23666' fill-rule='nonzero'%3E%3Cpath d='M1.219 0C.543 0 0 .543 0 1.219V14.78C0 15.456.543 16 1.219 16H14.78C15.456 16 16 15.456 16 14.78V1.219C16 .543 15.456 0 14.78 0H1.219zm-.076 1.143h13.714v13.714H1.143V1.143z'/%3E%3Cpath d='M6.853 3.429v2.285h2.286V3.43H6.853zm0 3.428v5.714h2.286V6.857H6.853z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--information, .p-icon--information.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23e5e5e5' fill-rule='nonzero'%3E%3Cpath d='M1.219 0C.543 0 0 .543 0 1.219V14.78C0 15.456.543 16 1.219 16H14.78C15.456 16 16 15.456 16 14.78V1.219C16 .543 15.456 0 14.78 0H1.219zm-.076 1.143h13.714v13.714H1.143V1.143z'/%3E%3Cpath d='M6.853 3.429v2.285h2.286V3.43H6.853zm0 3.428v5.714h2.286V6.857H6.853z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--delete { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M2.5 4.998h-1v-1.5C1.5 2.678 2.178 2 3 2h2.5V0h5v2H13c.822 0 1.5.677 1.5 1.499v1.5h-13v-1h2v1h-1v-.001zm10 8.503V5.998h2V14.5c0 .822-.678 1.499-1.5 1.499H3c-.822 0-1.5-.677-1.5-1.5v-8.5h2V13.5c0 .285.214.5.5.5h8c.286 0 .5-.215.5-.5v.001zm-3-11.502V1h-3v1h3v-.001zm-5 3.999h1v5.998h-1V5.998zm3 0h1v5.998h-1V5.998zm3 0h1v5.998h-1V5.998z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--delete, .p-icon--delete.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M2.5 4.998h-1v-1.5C1.5 2.678 2.178 2 3 2h2.5V0h5v2H13c.822 0 1.5.677 1.5 1.499v1.5h-13v-1h2v1h-1v-.001zm10 8.503V5.998h2V14.5c0 .822-.678 1.499-1.5 1.499H3c-.822 0-1.5-.677-1.5-1.5v-8.5h2V13.5c0 .285.214.5.5.5h8c.286 0 .5-.215.5-.5v.001zm-3-11.502V1h-3v1h3v-.001zm-5 3.999h1v5.998h-1V5.998zm3 0h1v5.998h-1V5.998zm3 0h1v5.998h-1V5.998z'/%3E%3C/svg%3E"); -} - -.p-icon--error { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Cg stroke-width='1.5' color='%23000'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0z' fill='%23c7162b'/%3E%3Cpath fill='none' d='M0 0h16v16H0z'/%3E%3Cpath d='M5 5l6 6M11 5l-6 6' stroke-dashoffset='.8' stroke='%23fff' fill='none'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--warning { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Cg color='%23000'%3E%3Cpath fill='none' d='M0 0h16v16H0z'/%3E%3Cpath stroke-linejoin='round' fill='%23f99b11' transform='matrix(2.28 0 0 2.437 -2180.8 -490.52)' stroke='%23f99b11' stroke-width='.85' d='M963.07 207.03h-6.15l3.08-5.33z'/%3E%3Cpath d='M7 5v5h2V5H7zm0 6v2h2v-2H7z' fill='%23111'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--external-link { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23666' fill-rule='nonzero' d='M9.003 2.07S12.423.713 16 .112l.002.002V.12h.002c-.667 3.743-1.962 6.992-1.962 6.992L9.003 2.071V2.07z'/%3E%3Cpath stroke='%23666' stroke-linejoin='round' stroke-width='2' d='M7.003 9.112l6-6'/%3E%3Cpath fill='%23666' fill-rule='nonzero' d='M1.503 2.112c-.822 0-1.5.678-1.5 1.5v11c0 .822.678 1.5 1.5 1.5h11c.822 0 1.5-.678 1.5-1.5v-5.5h-2v4.5c0 .286-.215.5-.5.5h-9a.488.488 0 0 1-.5-.5v-9c0-.285.215-.5.5-.5h4.5v-2h-5.5z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--external-link, .p-icon--external-link.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23e5e5e5' fill-rule='nonzero' d='M9.003 2.07S12.423.713 16 .112l.002.002V.12h.002c-.667 3.743-1.962 6.992-1.962 6.992L9.003 2.071V2.07z'/%3E%3Cpath stroke='%23e5e5e5' stroke-linejoin='round' stroke-width='2' d='M7.003 9.112l6-6'/%3E%3Cpath fill='%23e5e5e5' fill-rule='nonzero' d='M1.503 2.112c-.822 0-1.5.678-1.5 1.5v11c0 .822.678 1.5 1.5 1.5h11c.822 0 1.5-.678 1.5-1.5v-5.5h-2v4.5c0 .286-.215.5-.5.5h-9a.488.488 0 0 1-.5-.5v-9c0-.285.215-.5.5-.5h4.5v-2h-5.5z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--drag { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='14' width='6' viewBox='0 0 6 14'%3E%3Cg fill-rule='evenodd' fill='none'%3E%3Cpath d='M-10-6h26v26h-26z'/%3E%3Cpath fill-rule='nonzero' fill='%23666' d='M0 0v2h6V0M0 6v2h6V6m-6 6v2h6v-2'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--drag, .p-icon--drag.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='14' width='6' viewBox='0 0 6 14'%3E%3Cg fill-rule='evenodd' fill='none'%3E%3Cpath d='M-10-6h26v26h-26z'/%3E%3Cpath fill-rule='nonzero' fill='%23e5e5e5' d='M0 0v2h6V0M0 6v2h6V6m-6 6v2h6v-2'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--code { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M2.666 1.5C.888 1.5 0 1.501 0 3.568v8.866C0 14.501.888 14.5 2.666 14.5h10.668c1.778 0 2.666.001 2.666-2.066v-8.8c0-2.133-.888-2.134-2.666-2.134H2.666zm1.28 1.89h1.1v1.143c.34.028.643.078.911.149.268.063.48.127.635.191L6.328 5.92a6.601 6.601 0 0 0-.73-.223 3.858 3.858 0 0 0-.954-.105c-.38 0-.668.072-.859.213a.646.646 0 0 0-.285.56c0 .141.027.26.084.36a.875.875 0 0 0 .256.254c.113.07.25.142.412.212.162.064.346.131.55.202.29.112.561.232.815.359.261.12.487.266.678.436.19.162.34.356.445.582.113.225.17.494.17.804 0 .466-.144.868-.433 1.207-.29.339-.767.558-1.43.657v1.324H3.945v-1.293c-.508-.036-.922-.103-1.24-.201a4.692 4.692 0 0 1-.697-.286l.36-1.005c.225.113.496.214.814.306.324.092.692.139 1.101.139.487 0 .822-.072 1.006-.213a.703.703 0 0 0 .287-.582.764.764 0 0 0-.117-.424 1.09 1.09 0 0 0-.328-.318 2.828 2.828 0 0 0-.508-.254c-.19-.078-.404-.158-.637-.242a8.505 8.505 0 0 1-.656-.266 2.866 2.866 0 0 1-.582-.36 1.786 1.786 0 0 1-.412-.529 1.622 1.622 0 0 1-.16-.752c0-.487.146-.901.435-1.24.29-.346.734-.567 1.334-.666V3.391zM8 11.487h3.99v.996H8v-.996z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--code, .p-icon--code.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M2.666 1.5C.888 1.5 0 1.501 0 3.568v8.866C0 14.501.888 14.5 2.666 14.5h10.668c1.778 0 2.666.001 2.666-2.066v-8.8c0-2.133-.888-2.134-2.666-2.134H2.666zm1.28 1.89h1.1v1.143c.34.028.643.078.911.149.268.063.48.127.635.191L6.328 5.92a6.601 6.601 0 0 0-.73-.223 3.858 3.858 0 0 0-.954-.105c-.38 0-.668.072-.859.213a.646.646 0 0 0-.285.56c0 .141.027.26.084.36a.875.875 0 0 0 .256.254c.113.07.25.142.412.212.162.064.346.131.55.202.29.112.561.232.815.359.261.12.487.266.678.436.19.162.34.356.445.582.113.225.17.494.17.804 0 .466-.144.868-.433 1.207-.29.339-.767.558-1.43.657v1.324H3.945v-1.293c-.508-.036-.922-.103-1.24-.201a4.692 4.692 0 0 1-.697-.286l.36-1.005c.225.113.496.214.814.306.324.092.692.139 1.101.139.487 0 .822-.072 1.006-.213a.703.703 0 0 0 .287-.582.764.764 0 0 0-.117-.424 1.09 1.09 0 0 0-.328-.318 2.828 2.828 0 0 0-.508-.254c-.19-.078-.404-.158-.637-.242a8.505 8.505 0 0 1-.656-.266 2.866 2.866 0 0 1-.582-.36 1.786 1.786 0 0 1-.412-.529 1.622 1.622 0 0 1-.16-.752c0-.487.146-.901.435-1.24.29-.346.734-.567 1.334-.666V3.391zM8 11.487h3.99v.996H8v-.996z'/%3E%3C/svg%3E"); -} - -.p-icon--menu { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23666' fill-rule='nonzero'%3E%3Cpath d='M0 2.7h16v2.462H0zM0 6.751h16v2.462H0zM0 10.802h16v2.462H0z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--menu, .p-icon--menu.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='%23e5e5e5' fill-rule='nonzero'%3E%3Cpath d='M0 2.7h16v2.462H0zM0 6.751h16v2.462H0zM0 10.802h16v2.462H0z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--copy { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='17' width='16'%3E%3Cg fill='%23666' fill-rule='evenodd'%3E%3Cpath d='M10.587 1.8h3.259c.472 0 .846.053 1.161.2s.567.412.716.748c.298.67.266 1.491.277 2.613V13.84c-.011 1.121.021 1.942-.277 2.613-.149.335-.401.6-.716.747s-.689.2-1.161.2H4.154c-.472 0-.846-.053-1.16-.2s-.568-.412-.717-.747c-.246-.554-.268-1.21-.273-2.053h.803c.016.854.058 1.428.178 1.707.072.166.151.26.336.348s.477.145.896.145h9.566c.42 0 .712-.057.897-.145a.602.602 0 0 0 .335-.348c.143-.331.175-1.081.185-2.222V5.309c-.01-1.137-.042-1.885-.185-2.216a.603.603 0 0 0-.335-.348c-.185-.088-.477-.145-.897-.145h-3.538c.182-.225.304-.5.342-.8zm-3.174 0c.038.3.16.575.341.8H4.217c-.42 0-.712.057-.896.145a.603.603 0 0 0-.336.348c-.143.33-.175 1.079-.185 2.216V10.8H2V5.361c.01-1.122-.021-1.942.277-2.613.149-.336.401-.601.716-.748s.689-.2 1.16-.2h3.26z'/%3E%3Cpath fill-rule='nonzero' d='M11.398 1.8v2.4H6.6V1.8h1.6c0 .447.353.8.8.8.445 0 .799-.353.799-.8h1.6z'/%3E%3Cpath fill-rule='nonzero' d='M10.6 1.6c0 .879-.722 1.6-1.6 1.6-.879 0-1.6-.721-1.6-1.6C7.4.72 8.121 0 9 0c.879 0 1.6.72 1.6 1.6zm-.8 0c0-.447-.354-.8-.8-.8-.447 0-.8.353-.8.8 0 .446.353.8.8.8.446 0 .8-.354.8-.8z'/%3E%3Cpath d='M8.4 7.2H14v1H8.4zM8.4 9.6H14v1H8.4zM10 12h4v1h-4z'/%3E%3Cpath fill-rule='nonzero' d='M4.4 10s2.134 1.026 4 2.505h-.002C6.427 14.03 4.4 15 4.4 15v-5z'/%3E%3Cpath d='M0 11.6h4.4v2H0z'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--copy, .p-icon--copy.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='17' width='16'%3E%3Cg fill='%23e5e5e5' fill-rule='evenodd'%3E%3Cpath d='M10.587 1.8h3.259c.472 0 .846.053 1.161.2s.567.412.716.748c.298.67.266 1.491.277 2.613V13.84c-.011 1.121.021 1.942-.277 2.613-.149.335-.401.6-.716.747s-.689.2-1.161.2H4.154c-.472 0-.846-.053-1.16-.2s-.568-.412-.717-.747c-.246-.554-.268-1.21-.273-2.053h.803c.016.854.058 1.428.178 1.707.072.166.151.26.336.348s.477.145.896.145h9.566c.42 0 .712-.057.897-.145a.602.602 0 0 0 .335-.348c.143-.331.175-1.081.185-2.222V5.309c-.01-1.137-.042-1.885-.185-2.216a.603.603 0 0 0-.335-.348c-.185-.088-.477-.145-.897-.145h-3.538c.182-.225.304-.5.342-.8zm-3.174 0c.038.3.16.575.341.8H4.217c-.42 0-.712.057-.896.145a.603.603 0 0 0-.336.348c-.143.33-.175 1.079-.185 2.216V10.8H2V5.361c.01-1.122-.021-1.942.277-2.613.149-.336.401-.601.716-.748s.689-.2 1.16-.2h3.26z'/%3E%3Cpath fill-rule='nonzero' d='M11.398 1.8v2.4H6.6V1.8h1.6c0 .447.353.8.8.8.445 0 .799-.353.799-.8h1.6z'/%3E%3Cpath fill-rule='nonzero' d='M10.6 1.6c0 .879-.722 1.6-1.6 1.6-.879 0-1.6-.721-1.6-1.6C7.4.72 8.121 0 9 0c.879 0 1.6.72 1.6 1.6zm-.8 0c0-.447-.354-.8-.8-.8-.447 0-.8.353-.8.8 0 .446.353.8.8.8.446 0 .8-.354.8-.8z'/%3E%3Cpath d='M8.4 7.2H14v1H8.4zM8.4 9.6H14v1H8.4zM10 12h4v1h-4z'/%3E%3Cpath fill-rule='nonzero' d='M4.4 10s2.134 1.026 4 2.505h-.002C6.427 14.03 4.4 15 4.4 15v-5z'/%3E%3Cpath d='M0 11.6h4.4v2H0z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--search { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23666' fill-rule='nonzero' d='M11.633 10L10 11.635 14.367 16 16 14.368z'/%3E%3Ccircle cx='7' cy='7' r='6' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.361'/%3E%3C/g%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--search, .p-icon--search.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23e5e5e5' fill-rule='nonzero' d='M11.633 10L10 11.635 14.367 16 16 14.368z'/%3E%3Ccircle cx='7' cy='7' r='6' stroke='%23e5e5e5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.361'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--success { - background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate%281 1%29' fill='none' fill-rule='evenodd'%3E%3Ccircle stroke='%230e8420' stroke-width='1.5' fill='%230e8420' cx='7.25' cy='7.25' r='7.25'/%3E%3Cpath fill='%23fff' d='M11.05 4.173l-.066.058L6.25 8.378l-2.776-2.38-.839.948L6.25 10.75l5.5-5.787-.7-.79z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--share { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M10.672.002A2.481 2.481 0 0 0 9.171.6l-.952.798v.574c0 .544-.05 1.037-.153 1.49-.103.451-.287.84-.544 1.158a2.334 2.334 0 0 1-1 .756c-.42.185-.952.278-1.59.278-.622 0-1.073-.04-1.569-.112C2.434 6.086 2 6.924 2 8.035c0 1.112.53 1.733 1.363 2.53a14.298 14.298 0 0 1 1.57-.077c.637 0 1.168.093 1.59.278.421.175.752.428.999.757.257.318.44.7.544 1.152.102.452.153.951.153 1.496v.414l.922.78a2.49 2.49 0 0 0 1.814.63 2.49 2.49 0 0 0 1.714-.866 2.49 2.49 0 0 0 .569-1.834 2.49 2.49 0 0 0-.922-1.684l-.65-.55H9.968c-.441 0-.849-.06-1.23-.183a2.59 2.59 0 0 1-.993-.55 2.54 2.54 0 0 1-.65-.933c-.16-.373-.242-.819-.242-1.336 0-.518.082-.967.242-1.348.16-.38.376-.69.65-.934.282-.243.613-.428.993-.55.38-.114.789-.17 1.23-.171h1.537l.821-.686c.798-.646 1.116-1.822.753-2.782-.364-.96-1.382-1.63-2.408-1.586z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--share, .p-icon--share.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M10.672.002A2.481 2.481 0 0 0 9.171.6l-.952.798v.574c0 .544-.05 1.037-.153 1.49-.103.451-.287.84-.544 1.158a2.334 2.334 0 0 1-1 .756c-.42.185-.952.278-1.59.278-.622 0-1.073-.04-1.569-.112C2.434 6.086 2 6.924 2 8.035c0 1.112.53 1.733 1.363 2.53a14.298 14.298 0 0 1 1.57-.077c.637 0 1.168.093 1.59.278.421.175.752.428.999.757.257.318.44.7.544 1.152.102.452.153.951.153 1.496v.414l.922.78a2.49 2.49 0 0 0 1.814.63 2.49 2.49 0 0 0 1.714-.866 2.49 2.49 0 0 0 .569-1.834 2.49 2.49 0 0 0-.922-1.684l-.65-.55H9.968c-.441 0-.849-.06-1.23-.183a2.59 2.59 0 0 1-.993-.55 2.54 2.54 0 0 1-.65-.933c-.16-.373-.242-.819-.242-1.336 0-.518.082-.967.242-1.348.16-.38.376-.69.65-.934.282-.243.613-.428.993-.55.38-.114.789-.17 1.23-.171h1.537l.821-.686c.798-.646 1.116-1.822.753-2.782-.364-.96-1.382-1.63-2.408-1.586z'/%3E%3C/svg%3E"); -} - -.p-icon--user { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23666' d='M7.976 0C7.39 0 6.835.109 6.325.328a3.798 3.798 0 0 0-1.328.913h-.004a4.235 4.235 0 0 0-.844 1.426 5.128 5.128 0 0 0-.3 1.786c0 .654.098 1.257.3 1.803.2.538.48 1.012.844 1.41h.004c.249.264.53.49.84.676-.257.066-.701.144-.955.237-.879.321-1.617.766-2.197 1.334h-.004a5.586 5.586 0 0 0-1.285 2.03h-.002A7.54 7.54 0 0 0 1 14.405v1.572L14.955 16v-1.572c0-.89-.139-1.7-.42-2.467a5.19 5.19 0 0 0-1.291-2.038c-.58-.568-1.316-1.012-2.194-1.333-.249-.093-.686-.17-.94-.236.31-.187.59-.415.834-.681.373-.398.661-.872.86-1.412a5.17 5.17 0 0 0 .3-1.802c0-.645-.098-1.243-.3-1.788a4.108 4.108 0 0 0-.86-1.427A3.652 3.652 0 0 0 9.63.33 4.14 4.14 0 0 0 7.977 0V0z'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--user, .p-icon--user.is-light { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23e5e5e5' d='M7.976 0C7.39 0 6.835.109 6.325.328a3.798 3.798 0 0 0-1.328.913h-.004a4.235 4.235 0 0 0-.844 1.426 5.128 5.128 0 0 0-.3 1.786c0 .654.098 1.257.3 1.803.2.538.48 1.012.844 1.41h.004c.249.264.53.49.84.676-.257.066-.701.144-.955.237-.879.321-1.617.766-2.197 1.334h-.004a5.586 5.586 0 0 0-1.285 2.03h-.002A7.54 7.54 0 0 0 1 14.405v1.572L14.955 16v-1.572c0-.89-.139-1.7-.42-2.467a5.19 5.19 0 0 0-1.291-2.038c-.58-.568-1.316-1.012-2.194-1.333-.249-.093-.686-.17-.94-.236.31-.187.59-.415.834-.681.373-.398.661-.872.86-1.412a5.17 5.17 0 0 0 .3-1.802c0-.645-.098-1.243-.3-1.788a4.108 4.108 0 0 0-.86-1.427A3.652 3.652 0 0 0 9.63.33 4.14 4.14 0 0 0 7.977 0V0z'/%3E%3C/svg%3E"); -} - -.p-icon--question { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Cpath fill='none' color='%23000' d='M-.003.002h16v16h-16z'/%3E%3Cpath d='M7.997.002c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.589 8-8-3.589-8-8-8z' fill='%23335280' color='%23000'/%3E%3Cpath d='M8.004 5.23q-.431 0-.825.11-.394.098-.825.332l-.419-1.145q.456-.258 1.035-.406.59-.16 1.206-.16.739 0 1.219.21.48.196.763.504.283.308.394.677.111.37.111.714 0 .419-.16.751-.148.333-.382.616t-.504.542q-.271.246-.505.517-.234.258-.394.554-.148.295-.148.664v.148q0 .074.012.148h-1.28q-.025-.123-.037-.259-.012-.147-.012-.27 0-.407.135-.727.136-.32.345-.59t.443-.506q.246-.234.456-.467.209-.234.344-.48.136-.247.136-.542 0-.407-.283-.665-.271-.271-.825-.271zM8.984 12.01q0 .43-.283.7-.284.272-.702.272-.406 0-.702-.271-.283-.271-.283-.702 0-.43.283-.702.296-.283.702-.283.418 0 .702.283.283.271.283.702z' fill='%23fff'/%3E%3C/svg%3E"); -} - -.p-icon--spinner { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' width='24'%3E%3Cpath d='M7.5 23.1a12 12 0 0 0 16.4-9.8l-1.1-.2a10.9 10.9 0 0 1-14.9 9l-.4 1zM5.3 22A12 12 0 0 1 5.3 2l.6 1a10.9 10.9 0 0 0 0 18l-.6 1zm18.6-11.2A12 12 0 0 0 7.5 1l.4 1a10.8 10.8 0 0 1 14.9 9l1-.2z' fill='%23666'/%3E%3C/svg%3E"); -} -[class*="--dark"] .p-icon--spinner, .p-icon--spinner.is-light { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' width='24'%3E%3Cpath d='M7.5 23.1a12 12 0 0 0 16.4-9.8l-1.1-.2a10.9 10.9 0 0 1-14.9 9l-.4 1zM5.3 22A12 12 0 0 1 5.3 2l.6 1a10.9 10.9 0 0 0 0 18l-.6 1zm18.6-11.2A12 12 0 0 0 7.5 1l.4 1a10.8 10.8 0 0 1 14.9 9l1-.2z' fill='%23e5e5e5'/%3E%3C/svg%3E"); -} - -.p-icon--facebook { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' width='40' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Ccircle id='a' cx='20' cy='20' r='20'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%23666' fill-rule='nonzero' xlink:href='%23a'/%3E%3Cpath d='M30.037 10.001c-3.92 0-6.603 2.449-6.603 6.945v3.526H19v5.255h4.434V40c1.82-.246 3.6-.728 5.3-1.438V25.727h4.423l.66-5.255h-5.084V17.47c0-1.522.48-3.085 2.55-2.563H34v-4.7c-.47-.064-2.085-.207-3.963-.207v.001z' fill='%23e5e5e5' fill-rule='nonzero' mask='url%28%23b%29'/%3E%3C/g%3E%3C/svg%3E"); -} -.p-icon--facebook:hover { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' width='40' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Ccircle id='a' cx='20' cy='20' r='20'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cuse fill='%233b5998' fill-rule='nonzero' xlink:href='%23a'/%3E%3Cpath d='M30.037 10.001c-3.92 0-6.603 2.449-6.603 6.945v3.526H19v5.255h4.434V40c1.82-.246 3.6-.728 5.3-1.438V25.727h4.423l.66-5.255h-5.084V17.47c0-1.522.48-3.085 2.55-2.563H34v-4.7c-.47-.064-2.085-.207-3.963-.207v.001z' fill='%23e5e5e5' fill-rule='nonzero' mask='url%28%23b%29'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--google { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cpath d='M20 0C8.955 0 0 8.955 0 20s8.955 20 20 20 20-8.955 20-20S31.045 0 20 0zm-4.862 26.805A6.799 6.799 0 0 1 8.333 20a6.799 6.799 0 0 1 6.805-6.805c1.839 0 3.374.67 4.559 1.778l-1.845 1.78c-.507-.486-1.39-1.05-2.714-1.05-2.323 0-4.218 1.925-4.218 4.299 0 2.373 1.897 4.298 4.218 4.298 2.694 0 3.707-1.937 3.86-2.937h-3.86V19.03h6.425c.06.34.107.68.107 1.128.002 3.887-2.605 6.647-6.532 6.647zm16.529-5.833H28.75v2.916h-1.945v-2.916h-2.917v-1.944h2.917v-2.916h1.945v2.916h2.917v1.944z' fill='%23666' fill-rule='nonzero'/%3E%3C/svg%3E"); -} -.p-icon--google:hover { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cpath d='M20 0C8.955 0 0 8.955 0 20s8.955 20 20 20 20-8.955 20-20S31.045 0 20 0zm-4.862 26.805A6.799 6.799 0 0 1 8.333 20a6.799 6.799 0 0 1 6.805-6.805c1.839 0 3.374.67 4.559 1.778l-1.845 1.78c-.507-.486-1.39-1.05-2.714-1.05-2.323 0-4.218 1.925-4.218 4.299 0 2.373 1.897 4.298 4.218 4.298 2.694 0 3.707-1.937 3.86-2.937h-3.86V19.03h6.425c.06.34.107.68.107 1.128.002 3.887-2.605 6.647-6.532 6.647zm16.529-5.833H28.75v2.916h-1.945v-2.916h-2.917v-1.944h2.917v-2.916h1.945v2.916h2.917v1.944z' fill='%23dd4b39' fill-rule='nonzero'/%3E%3C/svg%3E"); -} - -.p-icon--twitter { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='nonzero' fill='none'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23666'/%3E%3Cpath d='M16.34 30.55c8.87 0 13.72-7.35 13.72-13.72 0-.21 0-.42-.01-.62.94-.68 1.76-1.53 2.41-2.5-.86.38-1.79.64-2.77.76 1-.6 1.76-1.54 2.12-2.67-.93.55-1.96.95-3.06 1.17a4.799 4.799 0 0 0-3.52-1.52c-2.66 0-4.82 2.16-4.82 4.82 0 .38.04.75.13 1.1a13.68 13.68 0 0 1-9.94-5.04c-.41.71-.65 1.54-.65 2.42a4.8 4.8 0 0 0 2.15 4.01c-.79-.02-1.53-.24-2.18-.6v.06c0 2.34 1.66 4.28 3.87 4.73a4.807 4.807 0 0 1-2.18.08 4.815 4.815 0 0 0 4.5 3.35 9.693 9.693 0 0 1-7.14 1.99c2.11 1.38 4.65 2.18 7.37 2.18' fill='%23e5e5e5'/%3E%3C/g%3E%3C/svg%3E"); -} -.p-icon--twitter:hover { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='nonzero' fill='none'%3E%3Ccircle cx='20' cy='20' r='20' fill='%231da1f2'/%3E%3Cpath d='M16.34 30.55c8.87 0 13.72-7.35 13.72-13.72 0-.21 0-.42-.01-.62.94-.68 1.76-1.53 2.41-2.5-.86.38-1.79.64-2.77.76 1-.6 1.76-1.54 2.12-2.67-.93.55-1.96.95-3.06 1.17a4.799 4.799 0 0 0-3.52-1.52c-2.66 0-4.82 2.16-4.82 4.82 0 .38.04.75.13 1.1a13.68 13.68 0 0 1-9.94-5.04c-.41.71-.65 1.54-.65 2.42a4.8 4.8 0 0 0 2.15 4.01c-.79-.02-1.53-.24-2.18-.6v.06c0 2.34 1.66 4.28 3.87 4.73a4.807 4.807 0 0 1-2.18.08 4.815 4.815 0 0 0 4.5 3.35 9.693 9.693 0 0 1-7.14 1.99c2.11 1.38 4.65 2.18 7.37 2.18' fill='%23e5e5e5'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--instagram { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M0 28.479h28.473V.009H0z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23666' fill-rule='nonzero'/%3E%3Cg transform='translate%286 6%29'%3E%3Cmask id='b' fill='%23e5e5e5'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath d='M14.237.009c-3.867 0-4.352.016-5.87.086-1.515.069-2.55.31-3.456.661-.936.364-1.73.851-2.522 1.642A6.978 6.978 0 0 0 .747 4.92C.395 5.826.155 6.86.086 8.376.016 9.894 0 10.379 0 14.246c0 3.866.016 4.35.086 5.87.069 1.515.31 2.55.661 3.455.364.936.851 1.73 1.642 2.522a6.98 6.98 0 0 0 2.522 1.642c.906.352 1.94.592 3.456.661 1.518.07 2.003.086 5.87.086 3.866 0 4.35-.016 5.87-.086 1.515-.069 2.55-.31 3.455-.661a6.98 6.98 0 0 0 2.522-1.642 6.98 6.98 0 0 0 1.642-2.522c.352-.905.592-1.94.661-3.456.07-1.518.086-2.003.086-5.87 0-3.866-.016-4.35-.086-5.87-.069-1.514-.31-2.55-.661-3.455a6.98 6.98 0 0 0-1.642-2.522A6.978 6.978 0 0 0 23.562.756c-.905-.352-1.94-.592-3.456-.661-1.518-.07-2.003-.086-5.87-.086zm0 2.565c3.8 0 4.251.015 5.752.083 1.388.063 2.142.295 2.644.49a4.41 4.41 0 0 1 1.637 1.065 4.41 4.41 0 0 1 1.065 1.637c.195.502.427 1.256.49 2.644.068 1.501.083 1.951.083 5.753 0 3.8-.015 4.251-.083 5.752-.063 1.388-.295 2.142-.49 2.644a4.41 4.41 0 0 1-1.065 1.637 4.41 4.41 0 0 1-1.637 1.065c-.502.195-1.256.427-2.644.49-1.5.068-1.95.083-5.752.083-3.802 0-4.252-.015-5.753-.083-1.388-.063-2.142-.295-2.644-.49a4.41 4.41 0 0 1-1.637-1.065 4.411 4.411 0 0 1-1.065-1.637c-.195-.502-.427-1.256-.49-2.644-.068-1.5-.083-1.951-.083-5.752 0-3.802.015-4.252.083-5.753.063-1.388.295-2.142.49-2.644a4.41 4.41 0 0 1 1.065-1.637A4.41 4.41 0 0 1 5.84 3.147c.502-.195 1.256-.427 2.644-.49 1.501-.068 1.951-.083 5.753-.083z' fill='%23e5e5e5' mask='url%28%23b%29'/%3E%3C/g%3E%3Cpath d='M20.24 24.991a4.746 4.746 0 1 1 0-9.49 4.746 4.746 0 0 1 0 9.49zm0-12.056a7.31 7.31 0 1 0 0 14.621 7.31 7.31 0 0 0 0-14.621zM29.54 12.646a1.708 1.708 0 1 1-3.416 0 1.708 1.708 0 0 1 3.417 0' fill='%23e5e5e5'/%3E%3C/g%3E%3C/svg%3E"); -} -.p-icon--instagram:hover { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M0 28.479h28.473V.009H0z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23fb3958' fill-rule='nonzero'/%3E%3Cg transform='translate%286 6%29'%3E%3Cmask id='b' fill='%23e5e5e5'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath d='M14.237.009c-3.867 0-4.352.016-5.87.086-1.515.069-2.55.31-3.456.661-.936.364-1.73.851-2.522 1.642A6.978 6.978 0 0 0 .747 4.92C.395 5.826.155 6.86.086 8.376.016 9.894 0 10.379 0 14.246c0 3.866.016 4.35.086 5.87.069 1.515.31 2.55.661 3.455.364.936.851 1.73 1.642 2.522a6.98 6.98 0 0 0 2.522 1.642c.906.352 1.94.592 3.456.661 1.518.07 2.003.086 5.87.086 3.866 0 4.35-.016 5.87-.086 1.515-.069 2.55-.31 3.455-.661a6.98 6.98 0 0 0 2.522-1.642 6.98 6.98 0 0 0 1.642-2.522c.352-.905.592-1.94.661-3.456.07-1.518.086-2.003.086-5.87 0-3.866-.016-4.35-.086-5.87-.069-1.514-.31-2.55-.661-3.455a6.98 6.98 0 0 0-1.642-2.522A6.978 6.978 0 0 0 23.562.756c-.905-.352-1.94-.592-3.456-.661-1.518-.07-2.003-.086-5.87-.086zm0 2.565c3.8 0 4.251.015 5.752.083 1.388.063 2.142.295 2.644.49a4.41 4.41 0 0 1 1.637 1.065 4.41 4.41 0 0 1 1.065 1.637c.195.502.427 1.256.49 2.644.068 1.501.083 1.951.083 5.753 0 3.8-.015 4.251-.083 5.752-.063 1.388-.295 2.142-.49 2.644a4.41 4.41 0 0 1-1.065 1.637 4.41 4.41 0 0 1-1.637 1.065c-.502.195-1.256.427-2.644.49-1.5.068-1.95.083-5.752.083-3.802 0-4.252-.015-5.753-.083-1.388-.063-2.142-.295-2.644-.49a4.41 4.41 0 0 1-1.637-1.065 4.411 4.411 0 0 1-1.065-1.637c-.195-.502-.427-1.256-.49-2.644-.068-1.5-.083-1.951-.083-5.752 0-3.802.015-4.252.083-5.753.063-1.388.295-2.142.49-2.644a4.41 4.41 0 0 1 1.065-1.637A4.41 4.41 0 0 1 5.84 3.147c.502-.195 1.256-.427 2.644-.49 1.501-.068 1.951-.083 5.753-.083z' fill='%23e5e5e5' mask='url%28%23b%29'/%3E%3C/g%3E%3Cpath d='M20.24 24.991a4.746 4.746 0 1 1 0-9.49 4.746 4.746 0 0 1 0 9.49zm0-12.056a7.31 7.31 0 1 0 0 14.621 7.31 7.31 0 0 0 0-14.621zM29.54 12.646a1.708 1.708 0 1 1-3.416 0 1.708 1.708 0 0 1 3.417 0' fill='%23e5e5e5'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--linkedin { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23666' fill-rule='nonzero' cx='20' cy='20' r='20'/%3E%3Cg fill='%23e5e5e5'%3E%3Cpath d='M11.07 8.406a2.743 2.743 0 0 1 2.731 2.75c0 1.52-1.225 2.753-2.731 2.753a2.743 2.743 0 0 1-2.734-2.752 2.742 2.742 0 0 1 2.734-2.751zM8.712 31.268h4.713V15.997H8.712v15.271zM16.382 15.997h4.52v2.087h.064c.63-1.201 2.167-2.467 4.46-2.467 4.773 0 5.654 3.163 5.654 7.274v8.377h-4.71v-7.426c0-1.771-.032-4.05-2.45-4.05-2.452 0-2.828 1.93-2.828 3.921v7.555h-4.71V15.997'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -} -.p-icon--linkedin:hover { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%230071a1' fill-rule='nonzero' cx='20' cy='20' r='20'/%3E%3Cg fill='%23e5e5e5'%3E%3Cpath d='M11.07 8.406a2.743 2.743 0 0 1 2.731 2.75c0 1.52-1.225 2.753-2.731 2.753a2.743 2.743 0 0 1-2.734-2.752 2.742 2.742 0 0 1 2.734-2.751zM8.712 31.268h4.713V15.997H8.712v15.271zM16.382 15.997h4.52v2.087h.064c.63-1.201 2.167-2.467 4.46-2.467 4.773 0 5.654 3.163 5.654 7.274v8.377h-4.71v-7.426c0-1.771-.032-4.05-2.45-4.05-2.452 0-2.828 1.93-2.828 3.921v7.555h-4.71V15.997'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--youtube { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M.009 18.367V.006h26.06v18.36z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23666' fill-rule='nonzero' cx='20' cy='20' r='20'/%3E%3Cg transform='translate%287 11%29'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath d='M25.524 2.868A3.275 3.275 0 0 0 23.22.548C21.187 0 13.034 0 13.034 0S4.882 0 2.85.548a3.275 3.275 0 0 0-2.305 2.32C0 4.914 0 9.183 0 9.183s0 4.27.545 6.316a3.276 3.276 0 0 0 2.305 2.32c2.032.548 10.184.548 10.184.548s8.153 0 10.185-.548a3.276 3.276 0 0 0 2.305-2.32c.545-2.047.545-6.316.545-6.316s0-4.269-.545-6.315' fill='%23e5e5e5' mask='url%28%23b%29'/%3E%3C/g%3E%3Cpath fill='%23666' d='M17.368 24.06l6.814-3.876-6.814-3.877v7.753'/%3E%3C/g%3E%3C/svg%3E"); -} -.p-icon--youtube:hover { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M.009 18.367V.006h26.06v18.36z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23d9252a' fill-rule='nonzero' cx='20' cy='20' r='20'/%3E%3Cg transform='translate%287 11%29'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath d='M25.524 2.868A3.275 3.275 0 0 0 23.22.548C21.187 0 13.034 0 13.034 0S4.882 0 2.85.548a3.275 3.275 0 0 0-2.305 2.32C0 4.914 0 9.183 0 9.183s0 4.27.545 6.316a3.276 3.276 0 0 0 2.305 2.32c2.032.548 10.184.548 10.184.548s8.153 0 10.185-.548a3.276 3.276 0 0 0 2.305-2.32c.545-2.047.545-6.316.545-6.316s0-4.269-.545-6.315' fill='%23e5e5e5' mask='url%28%23b%29'/%3E%3C/g%3E%3Cpath fill='%23d9252a' d='M17.368 24.06l6.814-3.876-6.814-3.877v7.753'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--canonical { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cpath d='M20 32.735c-7.036 0-12.736-5.7-12.736-12.736 0-7.034 5.7-12.734 12.736-12.734 7.036 0 12.736 5.7 12.736 12.734 0 7.036-5.7 12.736-12.736 12.736zM40 20c0 11.045-8.955 20-20 20S0 31.045 0 20C0 8.954 8.955 0 20 0s20 8.954 20 20zM20 4.865C11.636 4.865 4.864 11.642 4.864 20c0 8.36 6.772 15.135 15.136 15.135 8.364 0 15.136-6.775 15.136-15.135 0-8.358-6.772-15.135-15.136-15.135z' fill='%23666' fill-rule='nonzero'/%3E%3C/svg%3E"); -} -.p-icon--canonical:hover { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cpath d='M20 32.735c-7.036 0-12.736-5.7-12.736-12.736 0-7.034 5.7-12.734 12.736-12.734 7.036 0 12.736 5.7 12.736 12.734 0 7.036-5.7 12.736-12.736 12.736zM40 20c0 11.045-8.955 20-20 20S0 31.045 0 20C0 8.954 8.955 0 20 0s20 8.954 20 20zM20 4.865C11.636 4.865 4.864 11.642 4.864 20c0 8.36 6.772 15.135 15.136 15.135 8.364 0 15.136-6.775 15.136-15.135 0-8.358-6.772-15.135-15.136-15.135z' fill='%23772953' fill-rule='nonzero'/%3E%3C/svg%3E"); -} - -.p-icon--ubuntu { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='nonzero' fill='none'%3E%3Cpath d='M39.906 20.013c0 10.987-8.905 19.893-19.892 19.893C9.028 39.906.122 31 .122 20.013.122 9.028 9.028.122 20.014.122c10.987 0 19.892 8.905 19.892 19.891z' fill='%23666'/%3E%3Cpath d='M9.69 20.013a2.558 2.558 0 1 1-5.116 0 2.558 2.558 0 0 1 5.116 0zM24.241 32.45a2.559 2.559 0 0 0 4.43-2.558 2.557 2.557 0 1 0-4.43 2.558zm4.429-22.313a2.557 2.557 0 1 0-4.43-2.556 2.557 2.557 0 0 0 4.43 2.556zm-8.656 2.584a7.292 7.292 0 0 1 7.265 6.648l3.701-.059a10.954 10.954 0 0 0-3.227-7.094 3.591 3.591 0 0 1-3.097-.24A3.592 3.592 0 0 1 22.9 9.41c-.92-.25-1.888-.384-2.886-.384-1.75 0-3.404.41-4.874 1.137l1.801 3.234a7.278 7.278 0 0 1 3.073-.677zm-7.294 7.293a7.283 7.283 0 0 1 3.102-5.967l-1.9-3.177a11.005 11.005 0 0 0-4.533 6.341 3.59 3.59 0 0 1 1.343 2.803 3.592 3.592 0 0 1-1.343 2.804 11.01 11.01 0 0 0 4.532 6.343l1.9-3.177a7.286 7.286 0 0 1-3.1-5.97zm7.294 7.295a7.267 7.267 0 0 1-3.073-.678l-1.8 3.234a10.938 10.938 0 0 0 4.873 1.137c.998 0 1.966-.132 2.886-.383a3.587 3.587 0 0 1 1.756-2.564 3.591 3.591 0 0 1 3.097-.24 10.958 10.958 0 0 0 3.227-7.096l-3.701-.058a7.293 7.293 0 0 1-7.265 6.648z' fill='%23e5e5e5'/%3E%3C/g%3E%3C/svg%3E"); -} -.p-icon--ubuntu:hover { - background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='nonzero' fill='none'%3E%3Cpath d='M39.906 20.013c0 10.987-8.905 19.893-19.892 19.893C9.028 39.906.122 31 .122 20.013.122 9.028 9.028.122 20.014.122c10.987 0 19.892 8.905 19.892 19.891z' fill='%23e95420'/%3E%3Cpath d='M9.69 20.013a2.558 2.558 0 1 1-5.116 0 2.558 2.558 0 0 1 5.116 0zM24.241 32.45a2.559 2.559 0 0 0 4.43-2.558 2.557 2.557 0 1 0-4.43 2.558zm4.429-22.313a2.557 2.557 0 1 0-4.43-2.556 2.557 2.557 0 0 0 4.43 2.556zm-8.656 2.584a7.292 7.292 0 0 1 7.265 6.648l3.701-.059a10.954 10.954 0 0 0-3.227-7.094 3.591 3.591 0 0 1-3.097-.24A3.592 3.592 0 0 1 22.9 9.41c-.92-.25-1.888-.384-2.886-.384-1.75 0-3.404.41-4.874 1.137l1.801 3.234a7.278 7.278 0 0 1 3.073-.677zm-7.294 7.293a7.283 7.283 0 0 1 3.102-5.967l-1.9-3.177a11.005 11.005 0 0 0-4.533 6.341 3.59 3.59 0 0 1 1.343 2.803 3.592 3.592 0 0 1-1.343 2.804 11.01 11.01 0 0 0 4.532 6.343l1.9-3.177a7.286 7.286 0 0 1-3.1-5.97zm7.294 7.295a7.267 7.267 0 0 1-3.073-.678l-1.8 3.234a10.938 10.938 0 0 0 4.873 1.137c.998 0 1.966-.132 2.886-.383a3.587 3.587 0 0 1 1.756-2.564 3.591 3.591 0 0 1 3.097-.24 10.958 10.958 0 0 0 3.227-7.096l-3.701-.058a7.293 7.293 0 0 1-7.265 6.648z' fill='%23e5e5e5'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-icon--medium { - background-size: contain; - height: 1.25rem; - width: 1.25rem; -} - -.p-icon--large { - background-size: contain; - height: 1.5rem; - width: 1.5rem; -} - -.p-icon--x-large { - background-size: contain; - height: 1.75rem; - width: 1.75rem; -} - -.p-icon--x-large { - background-size: contain; - height: 2.25rem; - width: 2.25rem; -} - -.p-icon--xx-large { - background-size: contain; - height: 3rem; - width: 3rem; -} - -[class*=p-button-] [class*=p-icon-] { - top: -1px; - vertical-align: middle; -} - -.p-image--bordered { - border-color: #cdcdcd; - border-style: solid; - border-width: 1px; -} - -.p-image--shadowed { - box-shadow: 0 1px 5px 1px rgba(205, 205, 205, 0.2); -} - -.p-inline-images { - display: block; - list-style: none; - margin-left: 0; - padding-left: 0; - text-align: center; -} - -.p-inline-images__item { - display: inline-block; - margin: 1rem; - overflow: hidden; - text-align: center; - vertical-align: middle; -} -@media only screen and (min-width: 772px) { - .p-inline-images__item { - margin: 1.875rem; - } -} - -.p-inline-images__logo { - max-height: 3rem; - max-width: 7rem; - width: auto; -} -@media screen and (min-width: 772px) { - .p-inline-images__logo { - max-height: 5.5rem; - max-width: 9rem; - } -} - -.p-label--validated { - background-color: #006b75; - color: #fff; -} - -.p-label--in-progress { - background-color: #f99b11; - color: #111; -} - -.p-label--new { - background-color: #0e8420; - color: #fff; -} - -.p-label--updated { - background-color: #335280; - color: #fff; -} - -.p-label--deprecated { - background-color: #c7162b; - color: #fff; -} - -.p-link--soft { - color: #111; -} -.p-link--soft:visited { - color: #111; - text-decoration: none; -} -.p-link--soft:hover { - color: #007aa6; -} -.p-link--soft.is-selected { - font-weight: 400; -} - -.p-link--inverted { - color: #f7f7f7; - font-weight: 400; -} -.p-link--inverted:hover { - color: #f7f7f7; -} -.p-link--inverted:visited { - color: #dedede; -} - -@supports (mask-size: 1em) or (-webkit-mask-size: 1em) { - .p-link--external::after { - -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23111' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E") no-repeat 0 0/cover; - background-color: currentColor; - content: ""; - margin: 0 0 0 0.25em; - mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23111' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E") no-repeat 0 0/cover; - padding-right: 0.75em; - } -} -@supports not ((mask-size: 1em) or (-webkit-mask-size: 1em)) { - .p-link--external { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23007aa6' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23007aa6' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23007aa6' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - background-position: top right; - background-repeat: no-repeat; - background-size: 0.75em; - margin-top: -0.25em; - padding: 0.25em 1em 0 0; - } - .p-link--external.p-link--soft, .p-link--external.sidebar__link { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23111' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - } - .p-link--external.p-link--soft:hover, .p-link--external.sidebar__link:hover { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23007aa6' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23007aa6' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23007aa6' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - } - .p-link--external.p-link--inverted { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23f7f7f7' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23f7f7f7' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23f7f7f7' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - } - .p-link--external.p-link--inverted:visited { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23dedede' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23dedede' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23dedede' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - } - .p-link--external.sidebar__link { - display: inline-block; - padding: 0 1em 1em 0; - } - - .p-button .p-link--external, .p-button--neutral .p-link--external, .p-button--base .p-link--external { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23111' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23111' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - padding-top: 0; - } - .p-button--positive .p-link--external { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23fff' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - padding-top: 0; - } - .p-button--negative .p-link--external { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23fff' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - padding-top: 0; - } - .p-button--brand .p-link--external { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23fff' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - padding-top: 0; - } - - .p-strip--dark * .p-link--external.p-link--soft, -.p-strip--accent * .p-link--external.p-link--soft, -.p-strip--image.is-dark * .p-link--external.p-link--soft { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23fff' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23fff' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - } - .p-strip--dark * .p-link--external.p-link--soft:hover, -.p-strip--accent * .p-link--external.p-link--soft:hover, -.p-strip--image.is-dark * .p-link--external.p-link--soft:hover { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='0.75em' height='0.75em' viewBox='0 0 16 16' %3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23007aa6' d='M4.867 1.313C.6 1.32.067 1.443.067 4.51v6.4c0 3.2.533 3.2 5.333 3.2h2.133c4.8 0 5.334 0 5.334-3.2v-1.6h-1.6v1.068c0 2.133 0 2.133-4.267 2.133H5.933c-4.266 0-4.266 0-4.266-2.132V5.044c0-1.93.034-2.112 3.2-2.13v-1.6z'/%3E%3Cpath d='M-1-1h16v16H-1'/%3E%3Cpath fill='%23007aa6' d='M6.435 2.16c.11-.446 7.113-2.196 7.448-1.86.335.334-1.416 7.335-1.863 7.447-.447.112-5.697-5.14-5.586-5.586z'/%3E%3Cpath fill='%23007aa6' d='M9.032 3.38L4.705 7.708l1.767 1.767L10.8 5.148'/%3E%3C/g%3E%3C/svg%3E"); - } -} -.p-top { - border-bottom: 1px dotted #cdcdcd; - clear: both; - margin: 20px 0; -} - -.p-top__link { - background: #fff; - color: #111; - float: right; - margin-right: 5px; - padding: 0 5px; - position: relative; - text-decoration: none; - top: -0.725rem; -} - -.p-list-tree__item--group::after, .p-list-tree .p-list-tree[aria-hidden=false]::after { - background-position: center; - background-repeat: no-repeat; - content: " "; - display: block; - height: 0.9375rem; - left: -0.75rem; - pointer-events: none; - position: absolute; - top: 0.4rem; - width: 0.9375rem; -} - -.p-list-tree { - border-left: 1px solid #cdcdcd; - list-style-type: none; - margin-left: 1rem; - padding: 0 0 0 0.25rem; -} -.p-list-tree .p-list-tree { - display: none; - margin-left: 0; -} -.p-list-tree .p-list-tree[aria-hidden=false] { - display: block; -} -.p-list-tree .p-list-tree[aria-hidden=false]::after { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='15' width='15' viewBox='0 0 15 15'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h15v15H0z'/%3E%3C/defs%3E%3Cg fill-rule='evenodd' fill='none'%3E%3Cuse xlink:href='%23a' fill='%23FFF'/%3E%3Cpath stroke='%23888' d='M.5.5h14v14H.5z'/%3E%3Cpath fill='%23888' d='M4 8V7h7v1z'/%3E%3C/g%3E%3C/svg%3E"); - z-index: 1; -} - -.p-list-tree__item { - margin-top: 0.125rem; - padding-left: 0.8rem; - position: relative; -} -.p-list-tree__item::before { - background: #cdcdcd; - content: " "; - display: block; - height: 1px; - left: -0.25rem; - pointer-events: none; - position: absolute; - top: 0.8rem; - width: 0.625rem; -} - -.p-list-tree__item--group::after { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='15' width='15' viewBox='0 0 15 15'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h15v15H0z'/%3E%3C/defs%3E%3Cg fill-rule='evenodd' fill='none'%3E%3Cuse xlink:href='%23a' fill='%23FFF'/%3E%3Cpath stroke='%23888' d='M.5.5h14v14H.5z'/%3E%3Cpath fill='%23888' d='M7 4h1v7H7z'/%3E%3Cpath fill='%23888' d='M4 8V7h7v1z'/%3E%3C/g%3E%3C/svg%3E"); -} - -.p-list-tree__toggle { - background: transparent; - border: 0; - font-weight: normal; - margin: 0 0 0 -1.75rem; - padding: 0 0 0 1.75rem; - transition-duration: 0s; - width: auto; -} -.p-list-tree__toggle:hover { - background: transparent; - color: #007aa6; - text-decoration: underline; -} -.p-list-tree__toggle:focus { - background: transparent; - outline: 1px dotted #cdcdcd; -} - -.p-list { - list-style: none; - margin-left: 0; - padding-left: 0; -} -.p-list .p-list__item { - padding-bottom: 0.25rem; - padding-top: 0.25rem; -} -form .p-list .p-list__item { - padding-bottom: 0; - padding-top: 0; -} -form .p-list .p-list__item label { - margin-bottom: 0.1rem; -} -.p-list--divided { - list-style: none; - margin-left: 0; - padding-left: 0; -} -.p-list--divided .p-list__item { - padding-bottom: 0.25rem; - padding-top: 0.25rem; -} -form .p-list--divided .p-list__item { - padding-bottom: 0; - padding-top: 0; -} -form .p-list--divided .p-list__item label { - margin-bottom: 0.1rem; -} -.p-list--divided .p-list__item { - position: relative; -} -.p-list--divided .p-list__item::after { - border-bottom: 1px solid #cdcdcd; - bottom: 0; - content: ""; - height: 1px; - left: 0; - position: absolute; - right: 0; -} -.p-list--divided .p-list__item:last-of-type::after, -.p-list--divided .p-list__item .last-item::after { - border-bottom: 0; -} -.p-list--divided.is-split .p-list__item:last-of-type { - border-bottom: 1px solid #cdcdcd; -} - -.is-ticked { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Ccircle fill='%23333' cx='7' cy='7' r='7'/%3E%3Cpath fill='%23fff' d='M6.1 10.813L2.41 8.105l1.184-1.613L5.9 8.187l4.393-4.394 1.414 1.414z' /%3E%3C/svg%3E"); - background-position-y: 0.65rem; - background-repeat: no-repeat; - background-size: 0.875rem; - padding-left: 2rem; -} - -.p-inline-list { - margin-left: 0; - padding-left: 0; -} - -.p-inline-list__item { - display: inline; - list-style: none; - margin-right: 1.25rem; -} -.p-inline-list__item:last-of-type, -.p-inline-list__item .last-item { - margin-right: 0; -} - -.p-inline-list--middot { - margin-left: 0; - padding-left: 0; -} -.p-inline-list--middot .p-inline-list__item { - display: inline; - list-style: none; - margin-right: 1.25rem; - margin-right: 1.25em; - position: relative; -} -.p-inline-list--middot .p-inline-list__item:last-of-type, -.p-inline-list--middot .p-inline-list__item .last-item { - margin-right: 0; -} -.p-inline-list--middot .p-inline-list__item::after { - color: #666; - content: "·"; - font-size: 1.4em; - line-height: 0; - position: absolute; - right: -0.5em; - top: 0.4em; -} -.p-inline-list--middot .p-inline-list__item:hover::after { - color: #666; -} -.p-inline-list--middot .p-inline-list__item:last-of-type::after, -.p-inline-list--middot .p-inline-list__item .last-item::after { - content: ""; -} - -.p-stepped-list { - margin-bottom: 0; -} - -.p-stepped-list__item { - float: none; - margin-left: 0; - overflow: visible; - padding-bottom: 1.5rem; - position: relative; - width: 100%; -} - -.p-stepped-list__bullet { - display: none; -} - -.p-stepped-list--detailed { - margin-left: auto; -} -@media (min-width: 772px) { - .p-stepped-list--detailed .p-stepped-list__content { - grid-column-end: span 6; - margin-top: 0; - } -} -.p-stepped-list--detailed .p-stepped-list__title { - display: flex; - grid-column-end: span 6; - margin-left: 0; -} -.row .p-stepped-list--detailed .p-stepped-list__item { - margin-left: 0; - margin-right: 0; - padding-left: 0; - padding-right: 0; -} - -@media (min-width: 772px) { - @supports (-webkit-columns: 1) or (columns: 1) { - [class*=p-list].is-split { - column-gap: 2rem; - columns: 2; - } - [class*=p-list].is-split .p-list__item { - display: inline-block; - width: 100%; - } - } - @supports not ((-webkit-columns: 1) or (columns: 1)) { - [class*=p-list].is-split { - display: flex; - flex-wrap: wrap; - } - [class*=p-list].is-split .p-list__item { - width: calc(50% - 0.5rem); - } - } - [class*=p-list].is-split:nth-child(2n-1) { - margin-right: 1rem; - } -} - -.p-matrix { - display: flex; - flex-wrap: wrap; - list-style: none; - margin-bottom: 1.5rem; - margin-left: 0; - padding-left: 0; -} -.p-matrix > p:last-child { - margin-bottom: 0.1rem; -} - -.p-matrix__item { - border-top: 1px solid #cdcdcd; - display: flex; - flex: 1 1 auto; - padding-bottom: 1rem; - padding-top: calc(1rem - 1px); -} -@media (min-width: 620px) { - .p-matrix__item { - display: flex; - flex-wrap: wrap; - width: 33.333%; - } -} -@media (min-width: 620px) and (max-width: 1036px) { - .p-matrix__item { - flex-direction: column; - } -} -@media (min-width: 772px) { - .p-matrix__item { - border-right: 1px solid #cdcdcd; - padding-left: 1rem; - padding-right: 1rem; - width: 33.333%; - } - .p-matrix__item:empty { - display: block; - } - .p-matrix__item:nth-child(3n+1) { - padding-left: 0; - } - .p-matrix__item:nth-child(3n+3) { - border-right: 0; - } - .p-matrix__item:nth-child(1), .p-matrix__item:nth-child(2), .p-matrix__item:nth-child(3) { - border-top: 0; - } -} -@media (min-width: 1036px) { - .p-matrix__item { - border-right: 1px solid #cdcdcd; - width: 33.333%; - } - .p-matrix__item:empty { - display: block; - } - .p-matrix__item:nth-child(3n+1) { - padding-left: 0; - } - .p-matrix__item:nth-child(3n+3) { - border-right: 0; - padding-right: 0; - } - .p-matrix__item:nth-last-child(1), .p-matrix__item:nth-last-child(2), .p-matrix__item:nth-last-child(3) { - border-bottom: 0; - } -} - -.p-matrix__img { - align-self: flex-start; - margin-bottom: 1rem; - margin-right: 1rem; - max-height: 3rem; - max-width: 3rem; - width: auto; -} - -.p-matrix__content { - display: flex; - flex: 1 1 auto; - flex-direction: column; - padding-right: 1rem; -} -@media (min-width: 1036px) { - .p-matrix__content { - width: calc(100% - 4rem); - } -} - -.p-matrix__desc:last-child { - margin-bottom: 0.1rem; -} -.p-matrix__desc > p:last-child { - margin-bottom: 0.1rem; -} -@media (max-width: 772px) { - .p-matrix__desc { - margin-top: -0.5rem; - } -} - -.p-media-object__image { - align-self: flex-start; - border-radius: 0.125rem; - flex-basis: inherit; - flex-shrink: 0; - margin-right: 1rem; - max-height: 3rem; - max-width: 3rem; - vertical-align: middle; - width: auto; -} - -.p-media-object__content { - margin-bottom: 0.6rem; - margin-top: 0; -} - -.p-media-object__image.is-round { - border-radius: 50%; -} - -.p-media-object__meta-list { - list-style: none; - margin: 0; - padding-left: 0; - padding-top: 0.5rem; -} - -.p-media-object__meta-list-item--date { - background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90"><g transform="translate(0 -962.362)"><path color="%23000" fill="none" stroke-width="7.5" overflow="visible" enable-background="accumulate" d="M0 962.362h90v90H0z"/><path d="M35.914 968.362v9c0 4.837-4.078 8.914-8.914 8.914-4.836 0-8.914-4.077-8.914-8.914v-8.547C7.56 969.892 6 973.59 6 986.362v42c0 18 3 18 30 18h18c27 0 30 0 30-18v-42c0-12.773-1.56-16.47-12.086-17.547v8.547c0 4.837-4.078 8.914-8.914 8.914-4.836 0-8.914-4.077-8.914-8.914v-9H35.914zm.086 24h18c24 0 24 0 24 12v24c0 12 0 12-24 12H36c-24 0-24 0-24-12v-24c0-12 0-12 24-12z" fill="%23666"/><rect width="6" height="18" x="24" y="962.362" ry="3" color="%23000" fill="%23666" stroke-width=".1" overflow="visible" enable-background="accumulate"/><rect ry="3" y="962.362" x="60" height="18" width="6" color="%23000" fill="%23666" stroke-width=".1" overflow="visible" enable-background="accumulate"/><path style="text-align:center;line-height:125%;-inkscape-font-specification:Ubuntu Medium" d="M33.336 1001.364v.01c-1.8 0-3.5.348-5.087 1.043-1.548.663-2.913 1.553-4.08 2.664l-.352.337 3.06 4.335.474-.472c.158-.158.425-.388.787-.673l.01-.013.01-.012c.342-.295.74-.582 1.194-.86.467-.27 1.002-.507 1.607-.71.577-.19 1.206-.288 1.896-.288 1.048 0 1.885.26 2.58.768.626.46.964 1.222.964 2.497 0 .56-.114 1.1-.35 1.647-.246.538-.58 1.082-1.006 1.635h-.002c-.408.535-.896 1.088-1.466 1.658-.582.582-1.192 1.176-1.827 1.785h-.004c-.827.8-1.653 1.613-2.48 2.44-.846.845-1.61 1.748-2.292 2.704h-.002c-.692.967-1.26 2.02-1.702 3.15-.426 1.134-.635 2.372-.635 3.707v.72c0 .31.015.583.046.828l.064.493h18.65v-5.197H31.386c.072-.144.057-.21.18-.392l.006-.012h.002c.33-.507.727-1.034 1.192-1.576.47-.548.966-1.096 1.488-1.645l.008-.01c.527-.553.998-1.027 1.413-1.416h.007c.8-.775 1.6-1.56 2.4-2.36h.007c.813-.844 1.534-1.7 2.163-2.576h.002c.66-.906 1.197-1.83 1.613-2.773.428-.994.645-2.02.645-3.054 0-2.528-.756-4.605-2.28-6.102-1.524-1.55-3.862-2.28-6.9-2.28zm16.626.635v.01l-.024.537c-.106 2.31-.24 4.618-.4 6.927-.158 2.277-.384 4.688-.676 7.233l-.07.628h.632c2.187 0 3.982.12 5.37.353h.004c1.42.23 2.518.58 3.283 1.01h.01c.804.44 1.316.945 1.6 1.512.302.606.46 1.297.46 2.1 0 .514-.094.994-.278 1.457-.174.414-.456.79-.876 1.14h-.016c-.375.333-.9.615-1.582.836-.677.193-1.514.298-2.51.298-1.48 0-2.72-.144-3.718-.42-1.012-.31-1.79-.596-2.3-.84l-.638-.304-1.17 5.187.394.198c.32.16.74.313 1.287.477.553.167 1.168.315 1.847.45.703.163 1.43.3 2.184.407.77.11 1.527.163 2.273.163 1.826 0 3.44-.214 4.84-.66h.008c1.386-.473 2.56-1.12 3.502-1.948.94-.827 1.647-1.823 2.105-2.967.454-1.135.68-2.365.68-3.678 0-2.868-1.023-5.22-3.034-6.892-1.888-1.617-4.76-2.472-8.434-2.75.033-.27.064-.51.097-.834.055-.535.096-1.096.123-1.68l.002-.025c.052-.575.09-1.138.117-1.688l.003-.027c.035-.38.054-.693.077-1.02h10.055V1002H49.962z" font-size="35.345" font-weight="500" letter-spacing="0" word-spacing="0" text-anchor="middle" fill="%23666" font-family="Ubuntu"/></g></svg>'); -} -.p-media-object__meta-list-item--location { - background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90"><g color="%23000"><path d="M45 0C30.088 0 18 12.088 18 27c0 .562.03 1.103.063 1.656.013.248.012.497.03.75.02.23.07.46.095.688C20.22 51.854 41.922 90 45 90c3.078 0 24.78-38.146 26.813-59.906.02-.232.076-.46.093-.688.022-.248.016-.5.03-.75.032-.56.064-1.12.064-1.656C72 12.088 59.912 0 45 0zm0 18c4.97 0 9 4.03 9 9s-4.03 9-9 9-9-4.03-9-9 4.03-9 9-9z" fill="%23666" stroke-width="3" overflow="visible" enable-background="accumulate"/><path fill="none" stroke-width="7.5" overflow="visible" enable-background="accumulate" d="M0 0h90v90H0z"/></g></svg>'); -} -.p-media-object__meta-list-item--venue { - background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90.000001"><g transform="translate(-111.967 -929.337)" color="%23000"><path fill="none" stroke-width="4" overflow="visible" enable-background="accumulate" d="M111.967 929.336h90v90h-90z"/><circle r="6.5" cy="24.5" cx="23.5" transform="matrix(1.846 0 0 1.846 113.583 929.105)" fill="%23666" stroke-width="2" overflow="visible" enable-background="accumulate"/><circle r="21" cy="45" cx="45" transform="matrix(1.429 0 0 1.429 92.682 910.05)" fill="none" stroke="%23666" stroke-width="4.2" stroke-linejoin="round" overflow="visible" enable-background="accumulate"/><path d="M152.967 931.736l8-2.4v15h-8zM160.967 1016.336h-8v-12h8zM198.967 970.336v8h-12v-8zM114.967 978.336v-8h12v8z" overflow="visible" fill="%23666" stroke-width="6" enable-background="accumulate"/></g></svg>'); -} - -.p-media-object--large .p-media-object__image { - max-height: 6rem; - max-width: 6rem; -} -.p-modal { - align-items: center; - background: rgba(17, 17, 17, 0.85); - content: ""; - display: flex; - height: 100vh; - justify-content: center; - left: 0; - margin: 0; - overflow: scroll; - padding: 1.5rem; - position: absolute; - top: 0; - width: 100%; -} - -.p-modal__dialog { - bottom: 1.5rem; - left: 1.5rem; - max-width: 72rem; - overflow: scroll; - position: absolute; - right: 1.5rem; - top: 1.5rem; - width: auto; -} -@media screen and (min-width: 772px) { - .p-modal__dialog { - bottom: initial; - left: initial; - overflow: visible; - position: relative; - right: initial; - top: initial; - } -} - -.p-modal__header { - display: flex; - justify-content: space-between; -} - -.p-modal__title { - align-self: flex-end; -} - -.p-modal__close { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='90' width='90'%3E%3Cg color='%23000'%3E%3Cpath fill='none' d='M0 0h90v90H0z'/%3E%3Cpath d='M14.52 6L6 14.52 36.48 45 6 75.49 14.52 84 45 53.52 75.48 84 84 75.49 53.52 45 84 14.52 75.48 6 45 36.49z' fill='%23888'/%3E%3C/g%3E%3C/svg%3E"); - background-position: center; - background-repeat: no-repeat; - background-size: 1rem; - border: 0; - box-sizing: content-box; - height: 1rem; - margin: -1rem -1rem 0 0; - padding: 1rem; - text-indent: -999em; - width: 1rem; -} -.p-modal__close:focus { - outline: 2px solid #19b6ee; -} - -.p-navigation { - background-color: #fff; - display: flex; - flex-shrink: 0; - position: relative; - z-index: 10; -} -@media (max-width: 772px) { - .p-navigation { - flex-direction: column; - } -} -.p-navigation a, -.p-navigation a:visited, -.p-navigation a:focus { - color: #111; - text-decoration: none; -} -.p-navigation a:hover { - color: #757575; - text-decoration: none; -} -.p-navigation::after { - background: #cdcdcd; - bottom: 0; - content: ""; - height: 1px; - left: 0; - position: absolute; - right: 0; -} -.p-navigation__banner { - display: flex; - flex: 0 0 auto; - justify-content: space-between; -} -.p-navigation__image { - align-self: center; - max-height: 2rem; - min-height: 1.5rem; -} -@media (min-width: 772px) { - .p-navigation__link { - max-width: 20em; - } -} -.p-navigation__link > a { - display: block; - margin-bottom: 0; - overflow: hidden; - position: relative; - text-overflow: ellipsis; - white-space: nowrap; -} -@media (max-width: 772px) { - .p-navigation__link > a { - padding: 0.75rem 1.5rem; - } - .p-navigation__link > a::before { - background: #f7f7f7; - content: ""; - height: 1px; - left: 0; - position: absolute; - right: 0; - top: 0; - } -} -@media (min-width: 773px) { - .p-navigation__link > a { - padding: 0.75rem 1rem; - } - .p-navigation__link > a::before { - background: #cdcdcd; - bottom: 0; - content: ""; - height: 1px; - left: 0; - position: absolute; - right: 0; - } -} -.p-navigation__link > a:hover { - color: #757575; -} -@media (max-width: 772px) { - .p-navigation__link:first-child > a::before { - background: #cdcdcd; - } -} -.p-navigation__link.is-selected > a { - color: #757575; -} -.p-navigation__links { - list-style: none; - margin: 0; - padding: 0; -} -@media (max-width: 772px) { - .p-navigation__links { - margin-top: -1px; - } -} -@media (min-width: 773px) { - .p-navigation__links { - display: flex; - flex-wrap: wrap; - } -} -.p-navigation__logo { - display: flex; - flex: 0 0 auto; - height: 3rem; - margin: 0 1rem 0 1.5rem; -} -.p-navigation__logo .p-navigation__link { - display: flex; -} -.p-navigation__nav { - display: none; -} -@media (max-width: 772px) { - .p-navigation__nav { - flex-direction: column; - } -} -@media (min-width: 773px) { - .p-navigation__nav { - display: flex; - justify-content: space-between; - width: 100%; - } -} -.p-navigation .p-search-box { - min-width: 10em; -} -@media (max-width: 772px) { - .p-navigation .p-search-box { - flex: 1 0 auto; - margin: -1px 1.5rem 0.5rem 1.5rem; - order: -1; - } -} -@media (min-width: 773px) { - .p-navigation .p-search-box { - display: flex; - flex: 1 1 auto; - margin: 0.35rem 1rem auto auto; - max-width: 20rem; - order: 1; - } -} -.p-navigation__row, .p-navigation .row { - display: flex; - padding-left: 0; - padding-right: 0; - width: 100%; -} -@media (max-width: 772px) { - .p-navigation__row, .p-navigation .row { - flex-direction: column; - } -} -.p-navigation:target::after { - display: none; -} -.p-navigation:target .p-navigation__nav { - display: flex; -} -.p-navigation:target .p-navigation__toggle--open { - display: none; -} -@media (max-width: 772px) { - .p-navigation:target .p-navigation__toggle--close { - display: block; - } -} -.p-navigation__toggle--open, .p-navigation__toggle--close { - display: none; - margin: 0 1.5rem auto 1rem; - padding: 0.75rem 0; -} -@media (max-width: 772px) { - .p-navigation__toggle--open { - display: block; - } -} -.p-navigation .u-image-position .u-image-position--right { - order: 2; - position: relative; - right: unset; -} - -.p-subnav { - position: relative; -} -.p-subnav::after { - background-image: url("data:image/svg+xml, %3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='chevron_down' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpolygon id='chevron' fill='%23666' transform='translate(8.000000, 8.193853) rotate(90.000000) translate(-8.000000, -8.193853) ' points='4.80614657 14.3333333 8.64539007 8.17730496 4.80614657 2.05437352 6.16312057 1.19385343 11.1938534 8.17730496 6.16312057 15.1938534'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E"); - background-position: center; - background-repeat: no-repeat; - background-size: contain; - content: ""; - display: block; - height: 1rem; - pointer-events: none; - position: absolute; - right: 1rem; - text-indent: calc(100% + 10rem); - top: 1rem; - width: 1rem; -} -.p-subnav.is-active::after { - transform: rotate(180deg); -} -.p-subnav.is-active .p-subnav__items { - display: block; -} -.p-subnav > a { - padding-right: 2.5rem; -} - -.p-subnav__items { - display: none; - margin: 0; - padding: 0; - z-index: 5; -} -@media (min-width: 773px) { - .p-subnav__items { - clip: rect(0, 1000px, 1000px, -10px); - /* Clip the top of the box-shadow off */ - position: absolute; - top: calc(3rem - 1px); - } -} -@media (max-width: 772px) { - .p-subnav__items { - border: 0; - box-shadow: none; - } -} - -.p-subnav__item { - background-color: #fff; - display: block; - padding: 0.75rem 1.5rem; - white-space: nowrap; -} - -.p-notification--information, .p-notification--negative, .p-notification--caution, .p-notification--positive, .p-notification { - display: flex; - overflow: hidden; - padding: 0; -} -.p-notification--information .p-icon--close, .p-notification--negative .p-icon--close, .p-notification--caution .p-icon--close, .p-notification--positive .p-icon--close, .p-notification .p-icon--close { - background-color: transparent; - background-size: 1rem; - border: 0; - margin: 1rem 1rem auto auto; - padding: 0.5rem; -} - -.p-notification { - position: relative; -} -.p-notification::before { - top: 0; - background-color: #666; - content: ""; - position: absolute; -} -.p-notification::before { - height: 3px; - width: auto; - left: 0; - right: 0; -} -.p-notification + .p-notification { - margin-top: 1.5rem; -} - -.p-notification__response { - background-position: 1rem 1.15rem; - background-repeat: no-repeat; - background-size: 1rem; - padding: 0.9rem 1rem 0.5rem; -} - -.p-notification__status::after, -.p-notification__action::before { - content: " "; -} - -.p-notification__response, -.p-notification--floating { - max-width: 60em; -} - -.p-notification--positive { - position: relative; -} -.p-notification--positive::before { - top: 0; - background-color: #0e8420; - content: ""; - position: absolute; -} -.p-notification--positive::before { - height: 3px; - width: auto; - left: 0; - right: 0; -} -.p-notification--positive .p-notification__response { - background-image: url("data:image/svg+xml,%3Csvg width='17px' height='17px' viewBox='0 0 17 17' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='notification-success' transform='translate(1.000000, 1.000000)'%3E%3Cg id='Page-3---colours'%3E%3Cg id='Notifications---single'%3E%3Cg id='Group'%3E%3Cg id='ICON'%3E%3Ccircle id='circle6710' stroke='%230e8420' stroke-width='1.5' fill='%230e8420' cx='7.2500086' cy='7.2500086' r='7.2500086'%3E%3C/circle%3E%3Cpolygon id='path6712' fill='%23fff' points='11.0502986 4.1734486 10.9843986 4.2311486 6.2496486 8.3783686 3.4740786 5.9974286 2.6350186 6.9463086 6.2503386 10.7500186 11.7500086 4.9627786 11.0502986 4.1734886'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); - padding-left: 3rem; -} - -.p-notification--caution { - position: relative; -} -.p-notification--caution::before { - top: 0; - background-color: #f99b11; - content: ""; - position: absolute; -} -.p-notification--caution::before { - height: 3px; - width: auto; - left: 0; - right: 0; -} -.p-notification--caution .p-notification__response { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Cg color='%23000'%3E%3Cpath fill='none' d='M0 0h16v16H0z'/%3E%3Cpath stroke-linejoin='round' fill='%23f99b11' transform='matrix%282.28 0 0 2.437 -2180.8 -490.52%29' stroke='%23f99b11' stroke-width='.848' d='M963.07 207.03h-6.15l3.08-5.33z'/%3E%3Cpath d='M7 5v5h2V5H7zm0 6v2h2v-2H7z' fill='%23111'/%3E%3C/g%3E%3C/svg%3E"); - padding-left: 3rem; -} - -.p-notification--negative { - position: relative; -} -.p-notification--negative::before { - top: 0; - background-color: #c7162b; - content: ""; - position: absolute; -} -.p-notification--negative::before { - height: 3px; - width: auto; - left: 0; - right: 0; -} -.p-notification--negative .p-notification__response { - background-image: url("data:image/svg+xml,%3Csvg width='16px' height='17px' viewBox='0 0 16 17' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-3---colours' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Notifications---single' transform='translate(-215.000000, -271.000000)'%3E%3Cg id='Group' transform='translate(205.000000, 254.000000)'%3E%3Cg id='ICON' transform='translate(10.000000, 17.000000)'%3E%3Crect id='rect6415' x='0' y='0.36218' width='16' height='16'%3E%3C/rect%3E%3Ccircle id='circle6417' stroke='%23c7162b' stroke-width='1.5' fill='%23c7162b' cx='8' cy='8.36218' r='7.2500086'%3E%3C/circle%3E%3Cpath d='M5.00001,5.36218 L11.00001,11.36218' id='path6479-8' stroke='%23fff' stroke-width='1.5'%3E%3C/path%3E%3Cpath d='M11.00001,5.36218 L5.00001,11.36218' id='path6481-8' stroke='%23fff' stroke-width='1.5'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); - padding-left: 3rem; -} - -.p-notification--information { - position: relative; -} -.p-notification--information::before { - top: 0; - background-color: #335280; - content: ""; - position: absolute; -} -.p-notification--information::before { - height: 3px; - width: auto; - left: 0; - right: 0; -} - -.p-pagination__link--previous, -.p-pagination__link--next, .p-pagination__link { - border-color: #999; - border-radius: 0.125rem; - border-style: solid; - border-width: 1px; - color: #000; - display: block; - padding: 0.5rem 1rem; - text-decoration: none; -} -.is-disabled.p-pagination__link--previous, -.is-disabled.p-pagination__link--next, .is-disabled.p-pagination__link { - opacity: 0.5; -} -.is-disabled.p-pagination__link--previous:hover, -.is-disabled.p-pagination__link--next:hover, .is-disabled.p-pagination__link:hover { - background-color: transparent; -} -.p-pagination__link--previous:hover, -.p-pagination__link--next:hover, .p-pagination__link:hover, .p-pagination__link--previous:focus, -.p-pagination__link--next:focus, .p-pagination__link:focus, .is-active.p-pagination__link--previous, -.is-active.p-pagination__link--next, .is-active.p-pagination__link { - background-color: #e6e6e6; - border-color: #999; - text-decoration: none; -} -.p-pagination__link--previous:active, -.p-pagination__link--next:active, .p-pagination__link:active { - background-color: #d9d9d9; - border-color: #999; -} - -.p-pagination { - display: flex; - flex-direction: row; - list-style: none; - margin-left: 0; - padding-left: 0; -} - -.p-pagination__item { - margin-right: 0.5rem; - width: auto; -} -.p-pagination__item:first-child, .p-pagination__item:nth-last-child(2) { - margin-right: 1rem; -} -.p-pagination__item--truncation { - margin: 0.3rem 1rem 0 0.5rem; -} - -.p-pagination__link--previous, -.p-pagination__link--next { - padding-left: 0.5rem; - padding-right: 0.5rem; -} - -.p-pagination__link--previous .p-icon--contextual-menu { - transform: rotate(0.25turn); -} - -.p-pagination__link--next .p-icon--contextual-menu { - transform: rotate(-0.25turn); -} - -.p-pull-quote { - padding: 0 2rem; - position: relative; -} -.p-pull-quote .p-pull-quote__image { - height: 2rem; - position: absolute; - top: -2.75rem; -} -.p-pull-quote .p-pull-quote__quote::before, .p-pull-quote .p-pull-quote__quote::after { - font-size: 2em; -} -.p-pull-quote .p-pull-quote__quote:last-of-type::after { - bottom: 4rem; -} -@media (max-width: 772px) { - .p-pull-quote .p-pull-quote__quote:last-of-type::after { - bottom: 3.5rem; - } -} -.p-pull-quote--small { - padding: 0 1.5rem; -} -.p-pull-quote--small .p-pull-quote__quote::before, .p-pull-quote--small .p-pull-quote__quote::after { - font-size: 1.5em; -} -.p-pull-quote--small .p-pull-quote__quote:last-of-type::after { - bottom: 3rem; -} -.p-pull-quote--large { - padding: 0 2.5rem; -} -.p-pull-quote--large .p-pull-quote__quote::before, .p-pull-quote--large .p-pull-quote__quote::after { - font-size: 2em; - max-width: 1em; -} -.p-pull-quote--large .p-pull-quote__quote:last-of-type::after { - bottom: 4rem; -} -@media (max-width: 772px) { - .p-pull-quote--large .p-pull-quote__quote:last-of-type::after { - bottom: 3.5rem; - } -} -.p-pull-quote, -.p-pull-quote--small, -.p-pull-quote--large { - border: 0; - margin: 1.5rem 0 2rem; - overflow: visible; - position: relative; -} -.p-pull-quote .p-pull-quote__image, -.p-pull-quote--small .p-pull-quote__image, -.p-pull-quote--large .p-pull-quote__image { - height: 2rem; - position: absolute; - top: -2.75rem; -} -.p-pull-quote .p-pull-quote__citation, -.p-pull-quote--small .p-pull-quote__citation, -.p-pull-quote--large .p-pull-quote__citation { - font-style: italic; - margin-top: 0.5rem; -} - -.p-pull-quote.has-image, -.p-pull-quote--small.has-image, -.p-pull-quote--large.has-image { - margin-top: calc(2.75rem + 1.5rem); -} - -.p-pull-quote__quote:first-of-type::before { - color: #666; - display: inline-block; - position: absolute; - content: "“"; - left: 0.25rem; - top: 0.5rem; -} -@media (max-width: 772px) { - .p-pull-quote__quote:first-of-type::before { - top: 0.75rem; - } -} -.p-pull-quote__quote:last-of-type { - margin-bottom: 0; -} -.p-pull-quote__quote:last-of-type::after { - color: #666; - display: inline-block; - position: absolute; - content: "„"; - margin-left: 0.5rem; -} - -.p-search-box__reset, .p-search-box__button { - background: #fff; - border: 1px solid #999; - display: block; - height: 100%; - margin: 0; - padding: 0 0.5rem; - position: absolute; - top: 0; - width: 2.5rem; -} -.p-search-box__reset:hover, .p-search-box__button:hover { - background: inherit; -} -.p-search-box__reset:hover:disabled, .p-search-box__button:hover:disabled { - cursor: not-allowed; -} - -.p-search-box { - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12); - display: flex; - margin-bottom: 1.7rem; - position: relative; -} - -.p-search-box__input { - flex-grow: 2; - margin-bottom: 0; -} -.p-search-box__input::-webkit-search-cancel-button { - -webkit-appearance: none; -} -.p-search-box__input:not(:valid) ~ .p-search-box__reset { - display: none; -} - -.p-search-box__button { - right: 0; -} - -.p-search-box__reset { - border-left: 0; - border-right: 0; - right: 2.5rem; -} - -.p-slider { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border-radius: 3px; - margin: 0.5rem 0; - padding: 0; - width: 100%; -} -.p-slider::-webkit-slider-runnable-track { - border: 1px solid #cdcdcd; - border-radius: 3px; - height: 6px; -} -.p-slider::-webkit-slider-thumb { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: #fff; - border: 0; - border-radius: 2px; - box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); - height: 24px; - margin-top: -10.5px; - width: 24px; -} -.p-slider::-webkit-slider-thumb:hover { - cursor: pointer; -} -.p-slider::-moz-range-track { - background: #fff; - border: 1px solid #cdcdcd; - border-radius: 2px; - height: 4px; -} -.p-slider::-moz-range-progress { - background-color: #335280; - border-radius: 2px; - height: 4px; -} -.p-slider::-moz-range-thumb { - background: #fff; - border: 0; - border-radius: 2px; - box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); - height: 24px; - width: 24px; -} -.p-slider::-moz-range-thumb:hover { - cursor: pointer; -} -.p-slider::-moz-focus-outer { - border: 0; -} -.p-slider::-ms-track { - background: transparent; - border-color: transparent; - border-width: 12px; - color: transparent; - height: 6px; - width: calc(100% - (24px / 2)); -} -.p-slider::-ms-fill-lower { - background: #335280; - border: 1px solid #cdcdcd; - border-radius: 2px; -} -.p-slider::-ms-fill-upper { - background: #fff; - border: 1px solid #cdcdcd; - border-radius: 2px; -} -.p-slider::-ms-thumb { - background: #fff; - border: 0; - border-radius: 2px; - box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); - height: 24px; - margin: 0 2px; - width: 24px; -} -.p-slider::-ms-thumb:hover { - cursor: pointer; -} -.p-slider::-ms-tooltip { - display: none; -} -.p-slider:focus { - outline: none; -} -.p-slider:focus::-webkit-slider-thumb { - outline: 2px solid #19b6ee; -} -.p-slider:focus::-moz-range-thumb { - outline: 2px solid #19b6ee; -} -.p-slider:focus::-ms-thumb { - outline: 2px solid #19b6ee; -} -.p-slider:disabled { - opacity: 0.5; -} - -.p-slider__wrapper { - align-items: center; - display: inline-flex; - width: 100%; -} - -.p-slider__input { - height: 2.625rem; - margin: 0 0 0 1rem; - min-width: 5rem; - text-align: center; - width: 5%; -} - -@media only screen and (max-width: 1036px) { - [class*=p-strip].is-shallow { - padding-bottom: 1rem; - padding-top: 1rem; - } -} -@media only screen and (min-width: 1036px) { - [class*=p-strip].is-shallow { - padding-bottom: 2rem; - padding-top: 2rem; - } -} - -@media only screen and (max-width: 1036px) { - .p-strip--image, .p-strip--accent, .p-strip--dark, .p-strip--light, .p-strip { - padding-bottom: 2rem; - padding-top: 2rem; - } -} -@media only screen and (min-width: 1036px) { - .p-strip--image, .p-strip--accent, .p-strip--dark, .p-strip--light, .p-strip { - padding-bottom: 4rem; - padding-top: 4rem; - } -} - -@media only screen and (max-width: 1036px) { - [class*=p-strip].is-deep { - padding: 3rem 0 3rem; - } -} -@media only screen and (min-width: 1036px) { - [class*=p-strip].is-deep { - padding: 6rem 0; - } -} - -.p-strip--image, .p-strip--accent, .p-strip--dark, .p-strip--light, .p-strip { - clear: both; - position: relative; - width: 100%; -} - -.p-strip { - background-color: transparent; -} -.p-strip--light { - background-color: #f7f7f7; -} -.p-strip--dark { - background-color: #111; - color: #f7f7f7; -} - -.p-strip--accent { - background-color: #333; - color: #fff; -} - -.p-strip--image { - background-repeat: no-repeat; - background-size: cover; -} -.p-strip--image.is-light { - color: #000; -} -.p-strip--image.is-dark { - color: #fff; -} - -.p-switch { - height: 1.5rem; - margin: 0; - position: relative; - width: 3rem; -} -.p-switch:checked + .p-switch__slider::before { - left: 50%; -} -.p-switch:focus { - outline: none; -} -.p-switch:focus + .p-switch__slider { - outline: 2px solid #19b6ee; -} - -.p-switch__slider { - background: linear-gradient(to right, #335280 50%, #cdcdcd 50%); - box-shadow: inset 0 2px 5px 0 rgba(17, 17, 17, 0.2); - height: 1.5rem; - margin: 0.1rem 0 1rem 0; - position: relative; - width: 3rem; -} -.p-switch__slider::before { - transition-duration: 0.5s; - transition-property: all; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - background: #fff; - content: ""; - height: 1.5rem; - left: 0; - position: absolute; - width: 1.5rem; -} -.p-table-expanding { - display: flex; - flex-flow: column nowrap; - justify-content: space-between; -} -.p-table-expanding tbody { - margin: 0; -} -.p-table-expanding tr { - display: flex; - flex-flow: row; - flex-wrap: wrap; - margin: 0; - width: 100%; -} -.p-table-expanding tr + tr { - margin: 0; -} -.p-table-expanding th, -.p-table-expanding td { - display: flex; - flex-basis: 0; - flex-flow: row nowrap; - flex-grow: 1; - margin: 0; - word-break: break-word; -} -.p-table-expanding th.p-table-expanding__panel, -.p-table-expanding td.p-table-expanding__panel { - flex-basis: 100%; - max-width: 100%; -} -.p-table-expanding th.p-table-expanding__panel[aria-hidden=true], -.p-table-expanding td.p-table-expanding__panel[aria-hidden=true] { - display: none; -} -.p-table-expanding th.p-table-expanding__panel .row, -.p-table-expanding td.p-table-expanding__panel .row { - max-width: 100%; - padding: 0; - width: 100%; -} - -.p-table-of-contents { - border-top: 1px solid #cdcdcd; - font-size: 0.875rem; - padding: 0 1.5rem; -} -@media (min-width: 772px) { - .p-table-of-contents { - border-left: 1px solid #cdcdcd; - border-top: 0; - padding: 0 1rem; - } -} - -.p-table-of-contents__header { - color: #666; - font-size: 1rem; - line-height: 1.5; - margin-bottom: 1rem; - text-transform: uppercase; -} - -.p-table-of-contents__section { - padding: 1rem 0; -} -.p-table-of-contents__section:not(:last-child) { - border-bottom: 1px dotted #cdcdcd; -} - -.p-table-of-contents__nav { - list-style: none; - margin: 0; - padding: 0; -} -.p-table-of-contents__nav .p-table-of-contents__link { - border-bottom: 0; - color: #111; - margin-bottom: 0.25rem; -} -.p-table-of-contents__nav .p-table-of-contents__link:visited { - color: #111; -} -.p-table-of-contents__nav .p-table-of-contents__link:hover { - color: #007aa6; -} -.p-table-of-contents__nav .p-table-of-contents__link.is-active { - font-weight: 400; - padding-left: 0.25rem; -} - -@media screen and (max-width: 1036px) { - .p-table--mobile-card thead { - display: none; - } - .p-table--mobile-card tbody { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - } - .p-table--mobile-card tr { - border-top: 1px solid #cdcdcd; - display: flex; - flex-wrap: wrap; - margin: -1px 0 0.5rem; - width: 100%; - } - .p-table--mobile-card td, -.p-table--mobile-card tbody th { - align-items: flex-start; - display: flex; - flex: 0 1 auto; - flex-direction: column; - justify-content: left !important; - margin: 0; - overflow: visible; - padding-bottom: 0; - padding-top: 0; - text-align: left !important; - width: 25%; - } - .p-table--mobile-card td[aria-label], -.p-table--mobile-card tbody th[aria-label] { - text-align: right; - } - .p-table--mobile-card td[aria-label]::before, -.p-table--mobile-card tbody th[aria-label]::before { - content: attr(aria-label); - display: block; - flex: 0 1 auto; - margin-bottom: 0.3rem; - width: 100%; - } - .p-table--mobile-card td.u-align--right, -.p-table--mobile-card tbody th.u-align--right { - justify-content: unset !important; - } - .p-table--mobile-card .p-contextual-menu, .p-table--mobile-card .p-contextual-menu--left, .p-table--mobile-card .p-contextual-menu--center { - width: 100%; - } - .p-table--mobile-card .p-contextual-menu [role=menuitem], .p-table--mobile-card .p-contextual-menu--left [role=menuitem], .p-table--mobile-card .p-contextual-menu--center [role=menuitem] { - display: none; - } - .p-table--mobile-card .p-contextual-menu__dropdown { - box-shadow: none; - display: block; - max-width: 100%; - position: relative; - } - .p-table--mobile-card .p-contextual-menu__dropdown::before { - display: none; - } - .p-table--mobile-card .p-contextual-menu__group { - padding: 0; - } - .p-table--mobile-card .p-contextual-menu__group + .p-contextual-menu__group { - margin-top: 0.5rem; - padding-top: 0.5rem; - } - .p-table--mobile-card .p-contextual-menu__link { - border-color: #cdcdcd; - border-radius: 0.125rem; - border-style: solid; - border-width: 1px; - box-sizing: border-box; - color: #000; - cursor: pointer; - display: block; - line-height: 1rem; - outline: none; - padding: 0.5rem 1.5rem; - text-align: center; - text-decoration: none; - width: 100%; - } - .p-table--mobile-card .p-contextual-menu__link + .p-contextual-menu__link { - margin-top: 0.25rem; - } -} - -.p-table--sortable th[role=columnheader][aria-sort=descending]::after, .p-table--sortable th[role=columnheader][aria-sort=ascending]::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='4' width='10' viewBox='0 0 10 4'%3E%3Cpath d='M3.637 3.138c-.518-.365-1.052-.778-1.6-1.238C1.486 1.44.946.948.414.423.273.283.135.14 0 0h1.54c.305.29.62.57.948.846.138.116.277.23.417.34.163.13.328.257.495.38.085.062.17.123.257.184.397.282.935.626 1.315.848h.054c.38-.222.918-.566 1.315-.848.4-.28.79-.583 1.17-.904C7.837.57 8.153.29 8.457 0h1.54c-.134.14-.272.282-.414.422C9.05.948 8.51 1.442 7.963 1.9c-.55.46-1.084.873-1.602 1.238S5.39 3.79 5 4c-.39-.21-.845-.497-1.363-.862z' fill='%23888' fill-rule='evenodd'/%3E%3C/svg%3E"); - background-position: center; - background-repeat: no-repeat; - background-size: 100%; - content: ""; - display: inline-block; - height: 0.4rem; - margin-left: 0.25rem; - vertical-align: middle; - width: 1rem; -} - -.p-table--sortable { - table-layout: fixed; -} -.p-table--sortable th[role=columnheader][aria-sort] { - align-items: center; - cursor: pointer; - white-space: nowrap; -} -.p-table--sortable th[role=columnheader][aria-sort=descending]::after { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -.p-table--sortable th[role=columnheader][aria-sort]:hover { - color: #007aa6; - text-decoration: underline; -} - -.p-tabs { - border-radius: 0; - overflow: hidden; - padding: 0; - position: relative; -} -.p-tabs::before { - background: linear-gradient(to right, transparent 0%, #fff 45%, #fff 100%); - color: #666; - content: "›"; - display: block; - font-size: 2rem; - line-height: calc(100% + 1rem - 3px); - padding-left: 1.5rem; - padding-right: 1.5rem; - pointer-events: none; - position: absolute; - right: 0; - text-align: right; - top: 0; - width: 1rem; - z-index: 10; -} -@media screen and (min-width: 772px) { - .p-tabs::before { - display: none; - } -} -.p-tabs__list { - display: flex; - font-size: 0; - margin: 0 auto 1rem; - overflow-x: auto; - padding: 0; - position: relative; - white-space: nowrap; - width: 100%; -} -.p-tabs__item { - display: inline-block; - float: none; - font-size: 1rem; - margin: 0; - padding: 0; - width: auto; -} -.p-tabs__item:last-child { - margin-right: 3rem; -} -.p-tabs__link { - color: #000; - display: inline-block; - padding: 0.75rem 1rem; -} -.p-tabs__link:visited, .p-tabs__link:active, .p-tabs__link:hover { - color: #000; - text-decoration: none; -} -.p-tabs__link:hover, .p-tabs__link[aria-selected=true] { - position: relative; -} -.p-tabs__link:hover::before, .p-tabs__link[aria-selected=true]::before { - bottom: 0; - background-color: #666; - content: ""; - position: absolute; -} -.p-tabs__link:hover::before, .p-tabs__link[aria-selected=true]::before { - height: 3px; - width: auto; - left: -1px; - right: -1px; - z-index: 1; -} - -.p-tooltip--left, .p-tooltip--right, .p-tooltip--top-right, .p-tooltip--top-center, .p-tooltip--top-left, .p-tooltip--btm-right, .p-tooltip--btm-center, .p-tooltip { - position: relative; -} -.p-tooltip--left:focus .p-tooltip__message, .p-tooltip--right:focus .p-tooltip__message, .p-tooltip--top-right:focus .p-tooltip__message, .p-tooltip--top-center:focus .p-tooltip__message, .p-tooltip--top-left:focus .p-tooltip__message, .p-tooltip--btm-right:focus .p-tooltip__message, .p-tooltip--btm-center:focus .p-tooltip__message, .p-tooltip:focus .p-tooltip__message, .p-tooltip--left:hover .p-tooltip__message, .p-tooltip--right:hover .p-tooltip__message, .p-tooltip--top-right:hover .p-tooltip__message, .p-tooltip--top-center:hover .p-tooltip__message, .p-tooltip--top-left:hover .p-tooltip__message, .p-tooltip--btm-right:hover .p-tooltip__message, .p-tooltip--btm-center:hover .p-tooltip__message, .p-tooltip:hover .p-tooltip__message { - display: inline; - text-decoration: initial; -} - -.p-tooltip__message { - background-color: #111; - border: 0; - border-radius: 0.125rem; - color: #fff; - display: none; - left: -1rem; - margin-bottom: 0; - padding: 0.5rem 1rem; - position: absolute; - text-align: left; - text-decoration: initial; - top: 100%; - -webkit-transform: translateX(0%) translateY(13px); - transform: translateX(0%) translateY(13px); - white-space: pre; - z-index: 1; -} -.p-tooltip__message::before { - border-bottom: 0.5rem solid #111; - border-left: 0.5rem solid transparent; - border-right: 0.5rem solid transparent; - bottom: 100%; - content: ""; - height: 0; - left: 1rem; - pointer-events: none; - position: absolute; - width: 0; -} - -.p-tooltip--btm-center .p-tooltip__message { - bottom: inherit; - left: 50%; - top: 100%; - -webkit-transform: translateX(-50%) translateY(13px); - transform: translateX(-50%) translateY(13px); -} -.p-tooltip--btm-center .p-tooltip__message::before { - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} - -.p-tooltip--btm-right .p-tooltip__message { - bottom: inherit; - left: initial; - right: -1rem; - top: 100%; - -webkit-transform: translateY(13px); - transform: translateY(13px); -} -.p-tooltip--btm-right .p-tooltip__message::before { - left: initial; - right: 1rem; -} - -.p-tooltip--top-left .p-tooltip__message { - bottom: 100%; - left: -1rem; - top: initial; - -webkit-transform: translateX(0%) translateY(-13px); - transform: translateX(0%) translateY(-13px); -} -.p-tooltip--top-left .p-tooltip__message::before { - border-bottom: 0.5rem solid transparent; - border-left: 0.5rem solid transparent; - border-right: 0.5rem solid transparent; - border-top: 0.5rem solid #111; - bottom: -1rem; - left: 1rem; -} - -.p-tooltip--top-center .p-tooltip__message { - bottom: 100%; - left: 50%; - top: initial; - -webkit-transform: translateX(-50%) translateY(-13px); - transform: translateX(-50%) translateY(-13px); -} -.p-tooltip--top-center .p-tooltip__message::before { - border-bottom: 0.5rem solid transparent; - border-left: 0.5rem solid transparent; - border-right: 0.5rem solid transparent; - border-top: 0.5rem solid #111; - bottom: -1rem; - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} - -.p-tooltip--top-right .p-tooltip__message { - bottom: 100%; - left: initial; - right: -1rem; - top: initial; - -webkit-transform: translateX(0%) translateY(-13px); - transform: translateX(0%) translateY(-13px); -} -.p-tooltip--top-right .p-tooltip__message::before { - border-bottom: 0.5rem solid transparent; - border-left: 0.5rem solid transparent; - border-right: 0.5rem solid transparent; - border-top: 0.5rem solid #111; - bottom: -1rem; - left: initial; - right: 1rem; -} - -.p-tooltip--right .p-tooltip__message { - bottom: inherit; - left: 100%; - top: 50%; - -webkit-transform: translateX(14px) translateY(-50%); - transform: translateX(14px) translateY(-50%); -} -.p-tooltip--right .p-tooltip__message::before { - border-bottom: 0.5rem solid transparent; - border-left: 0.5rem solid transparent; - border-right: 0.5rem solid #111; - border-top: 0.5rem solid transparent; - bottom: inherit; - left: 0; - top: 50%; - -webkit-transform: translateX(-16px) translateY(-50%); - transform: translateX(-16px) translateY(-50%); -} - -.p-tooltip--left .p-tooltip__message { - bottom: inherit; - left: -16px; - top: 50%; - -webkit-transform: translateX(-100%) translateY(-50%); - transform: translateX(-100%) translateY(-50%); -} -.p-tooltip--left .p-tooltip__message::before { - border-bottom: 0.5rem solid transparent; - border-left: 0.5rem solid #111; - border-right: 0.5rem solid transparent; - border-top: 0.5rem solid transparent; - bottom: inherit; - left: 100%; - top: 50%; - -webkit-transform: translateX(0) translateY(-50%); - transform: translateX(0) translateY(-50%); -} - -.u-align--center { - justify-content: center !important; - text-align: center !important; -} - -.u-align--left { - justify-content: flex-start !important; - text-align: left !important; -} - -.u-align--right { - justify-content: flex-end !important; - text-align: right !important; -} - -.u-align--bottom { - margin-top: auto !important; -} - -.u-align-text--center { - margin-left: auto !important; - margin-right: auto !important; - text-align: center !important; -} -.u-align-text--left { - margin-right: auto !important; - text-align: left !important; -} -.u-align-text--right { - margin-left: auto !important; - text-align: right !important; -} - -@media (prefers-reduced-motion: reduce) { - * { - animation: none !important; - transition: none !important; - } -} -.u-animation--spin { - -webkit-animation: spin 1s infinite linear; - animation: spin 1s infinite linear; -} - -@keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} -.u-baseline-grid { - position: relative; -} -.u-baseline-grid::after { - background: linear-gradient(to top, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.3) 1px, transparent 1px, transparent); - background-size: 100% 0.5rem; - bottom: 0; - content: ""; - display: block; - left: 0; - pointer-events: none; - position: absolute; - right: 0; - top: 0; - z-index: 100; -} - -.u-baseline-grid__toggle { - bottom: 1.5rem; - position: fixed; - right: 1.5rem; - z-index: 101; -} - -.u-embedded-media { - height: 0; - margin-top: 0.5rem; - max-width: 100%; - overflow: hidden; - padding-bottom: 56.25%; - position: relative; -} - -.u-embedded-media__element { - height: 100%; - left: 0; - position: absolute; - top: 0; - width: 100%; -} - -@media only screen and (min-width: 772px) { - .u-equal-height { - display: flex; - } - .u-equal-height.row { - display: grid; - } -} - -.u-float-right { - float: right !important; -} -@media (max-width: 620px) { - .u-float-right--small { - float: right !important; - } -} -@media (min-width: 772px) and (max-width: 1036px) { - .u-float-right--medium { - float: right !important; - } -} -@media (min-width: 1036px) { - .u-float-right--large { - float: right !important; - } -} - -.u-float-left { - float: left !important; -} -@media (max-width: 620px) { - .u-float-left--small { - float: left !important; - } -} -@media (min-width: 772px) and (max-width: 1036px) { - .u-float-left--medium { - float: left !important; - } -} -@media (min-width: 1036px) { - .u-float-left--large { - float: left !important; - } -} - -.u-hide { - display: none !important; -} -@media screen and (max-width: 772px) { - .u-hide--small { - display: none !important; - } -} -@media (min-width: 772px) and (max-width: 1036px) { - .u-hide--medium { - display: none !important; - } -} -@media screen and (min-width: 1036px) { - .u-hide--large { - display: none !important; - } -} - -@media (min-width: 772px) { - .u-image-position { - overflow: hidden; - position: relative; - } - .u-image-position .u-image-position--right, .u-image-position .u-image-position--left, .u-image-position .u-image-position--bottom, .u-image-position .u-image-position--top { - margin: 0; - position: absolute; - } - .u-image-position [class*=col-] { - position: static; - } - .u-image-position--top { - top: 0; - } - .u-image-position--bottom { - bottom: 0; - } - .u-image-position--left { - left: 0; - } - .u-image-position--right { - right: 0; - } -} - -.u-table-layout--fixed { - table-layout: fixed !important; -} - -.u-no-margin { - margin: 0 !important; -} -.u-no-margin--top { - margin-top: 0 !important; -} -.u-no-margin--right { - margin-right: 0 !important; -} -.u-no-margin--left { - margin-left: 0 !important; -} - -.u-off-screen { - height: 1px !important; - left: -10000px !important; - overflow: hidden !important; - position: absolute !important; - top: auto !important; - width: 1px !important; -} - -.u-no-padding { - padding: 0 !important; -} -.u-no-padding--top { - padding-top: 0 !important; -} -.u-no-padding--right { - padding-right: 0 !important; -} -.u-no-padding--bottom { - padding-bottom: 0 !important; -} -.u-no-padding--left { - padding-left: 0 !important; -} - -.u-show { - display: inherit !important; -} -@media screen and (max-width: 772px) { - .u-show--small { - display: inherit !important; - } -} -@media (min-width: 772px) and (max-width: 1036px) { - .u-show--medium { - display: inherit !important; - } -} -@media screen and (min-width: 1036px) { - .u-show--large { - display: inherit !important; - } -} - -.u-sv3::after, .u-sv2::after, .u-sv1::after, .u-sv0::after, .u-sv-1::after, .u-sv-2::after, .u-sv-3::after { - content: ""; - display: block; - height: 1px; - position: relative; -} - -.u-sv-3::after { - margin-top: calc(-1.5rem - 1px); -} - -.u-sv-2::after { - margin-top: calc(-1rem - 1px); -} - -.u-sv-1::after { - margin-top: calc(-0.5rem - 1px); -} - -.u-sv0::after { - margin-top: calc(0rem - 1px); -} - -.u-sv1::after { - margin-top: calc(0.5rem - 1px); -} - -.u-sv2::after { - margin-top: calc(1rem - 1px); -} - -.u-sv3::after { - margin-top: calc(1.5rem - 1px); -} - -.u-vertically-center { - align-items: center !important; - display: grid; - justify-content: flex-start; -} -.u-vertically-center > img { - align-self: center !important; -} - -@media print { - .u-no-print { - display: none !important; - } -} -html { - background-color: #f3f3f3; -} - -#app { - display: flex; - flex-flow: row wrap; - max-width: 100vw; -} - -#app > * { - flex: 1 100%; -} - -#app > aside { - flex: 1 auto; -} - -#app > .p-content { - flex: 10 auto; - border: solid #eeeeee; - border-width: 1px 1px 0.2em; - box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02); - background-color: #ffffff; - padding: 1em 2em 3em; - margin: 0 10px; -} - -.p-aside__section { - background: #fcfcfc; - border: solid #eeeeee; - border-width: 1px 1px 0.2em; - box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02); - padding: 1.5em 1.5em 0; - margin: 0 1em 1em; -} - -.p-aside__header { - padding-bottom: 0.5em; - border-bottom: solid 2px #cccccc; -} - -.divider { - border-bottom: solid 2px #cccccc; -} - -.p-navigation::after, -.p-navigation__link > a::before { - content: none; -} - -#navigation > .logo { - border-bottom: 6px solid #0076ba; - z-index: 2; - width: 30%; - padding: 0px 50px; - font-size: 1.5rem; - line-height: 3rem; -} - -#navigation .edit { - font-weight: bold; -} - -#navigation .edit > a { - color: #99ba00; -} - -#navigation .p-navigation__nav > .p-navigation__links { - border-bottom: 6px solid #ffc600; - width: 50%; -} - -#navigation .p-navigation__links.u-float-right { - border-bottom: 6px solid #99ba00; - flex-direction: row-reverse; -} - -.mobile { - display: none; -} - -@media (max-width: 1200px) { - .mobile { - display: block; - } - - #app > aside > #tree, -#app > aside > :target ~ #no-tree { - display: none; - } - - #app > aside > #no-tree, -#app > aside > #tree:target, -#app > aside > #no-tree:target { - display: block; - } - - #app { - flex-direction: column; - } - - #app > .p-content { - margin: 0px; - } -} -.p-breadcrumbs { - margin: 0.5em 0 -0.25em 1em; -} - -th { - width: auto !important; -} - -/*# sourceMappingURL=main.css.map */ diff --git a/static/css/main.css.map b/static/css/main.css.map deleted file mode 100644 index 7b6369aac61801fc7a28291d8b41f37baa14cfa1..0000000000000000000000000000000000000000 --- a/static/css/main.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../style/vanillaframework/scss/_base_placeholders.scss","../../style/vanillaframework/scss/_settings_placeholders.scss","../../style/vanillaframework/scss/_settings_colors.scss","../../style/vanillaframework/scss/_settings_spacing.scss","../../style/vanillaframework/scss/_base_placeholders-margin-collapse.scss","../../style/vanillaframework/scss/_patterns_icons.scss","../../style/vanillaframework/scss/_base_placeholders-fixed-width-container.scss","../../style/vanillaframework/scss/_settings_grid.scss","../../style/vanillaframework/scss/_patterns_label.scss","../../style/vanillaframework/scss/_patterns_lists.scss","../../style/vanillaframework/scss/_patterns_media-object.scss","../../style/vanillaframework/scss/_base_reset.scss","../../style/vanillaframework/scss/_base_background.scss","../../style/vanillaframework/scss/_base_fontfaces.scss","../../style/vanillaframework/scss/_base_typography-definitions.scss","../../style/vanillaframework/scss/_base_typography-max-widths.scss","../../style/vanillaframework/scss/_settings_font.scss","../../style/vanillaframework/scss/_base_typography.scss","../../style/vanillaframework/scss/_base_blockquotes.scss","../../style/vanillaframework/scss/_base_box-sizing.scss","../../style/vanillaframework/scss/_base_button.scss","../../style/vanillaframework/scss/_settings_animations.scss","../../style/vanillaframework/scss/_global_functions.scss","../../style/vanillaframework/scss/_base_code.scss","../../style/vanillaframework/scss/_base_forms.scss","../../style/vanillaframework/scss/_base_hr.scss","../../style/vanillaframework/scss/_base_links.scss","../../style/vanillaframework/scss/_base_lists.scss","../../style/vanillaframework/scss/_base_media.scss","../../style/vanillaframework/scss/_base_tables.scss","../../style/vanillaframework/scss/_patterns_accordion.scss","../../style/vanillaframework/scss/_patterns_article-pagination.scss","../../style/vanillaframework/scss/_patterns_breadcrumbs.scss","../../style/vanillaframework/scss/_patterns_buttons.scss","../../style/vanillaframework/scss/_patterns_card.scss","../../style/vanillaframework/scss/_patterns_code-copyable.scss","../../style/vanillaframework/scss/_patterns_code-numbered.scss","../../style/vanillaframework/scss/_patterns_contextual-menu.scss","../../style/vanillaframework/scss/_patterns_divider.scss","../../style/vanillaframework/scss/_patterns_form-help-text.scss","../../style/vanillaframework/scss/_patterns_form-validation.scss","../../style/vanillaframework/scss/_patterns_forms.scss","../../style/vanillaframework/scss/_patterns_grid.scss","../../style/vanillaframework/scss/_patterns_heading-icon.scss","../../style/vanillaframework/scss/_patterns_image.scss","../../style/vanillaframework/scss/_patterns_inline-images.scss","../../style/vanillaframework/scss/_patterns_links.scss","../../style/vanillaframework/scss/_patterns_list-tree.scss","../../style/vanillaframework/scss/_patterns_matrix.scss","../../style/vanillaframework/scss/_patterns_modal.scss","../../style/vanillaframework/scss/_patterns_navigation.scss","../../style/vanillaframework/scss/_patterns_subnav.scss","../../style/vanillaframework/scss/_patterns_notifications.scss","../../style/vanillaframework/scss/_patterns_pagination.scss","../../style/vanillaframework/scss/_patterns_pull-quotes.scss","../../style/vanillaframework/scss/_patterns_search-box.scss","../../style/vanillaframework/scss/_patterns_slider.scss","../../style/vanillaframework/scss/_patterns_strip.scss","../../style/vanillaframework/scss/_patterns_switch.scss","../../style/vanillaframework/scss/_patterns_table-expanding.scss","../../style/vanillaframework/scss/_patterns_table-of-contents.scss","../../style/vanillaframework/scss/_patterns_table-mobile-card.scss","../../style/vanillaframework/scss/_patterns_table-sortable.scss","../../style/vanillaframework/scss/_patterns_tabs.scss","../../style/vanillaframework/scss/_patterns_tooltips.scss","../../style/vanillaframework/scss/_utilities_content-align.scss","../../style/vanillaframework/scss/_utilities_animations.scss","../../style/vanillaframework/scss/_utilities_baseline-grid.scss","../../style/vanillaframework/scss/_utilities_embedded-media.scss","../../style/vanillaframework/scss/_utilities_equal-height.scss","../../style/vanillaframework/scss/_utilities_floats.scss","../../style/vanillaframework/scss/_utilities_hide.scss","../../style/vanillaframework/scss/_utilities_image-position.scss","../../style/vanillaframework/scss/_utilities_layout.scss","../../style/vanillaframework/scss/_utilities_margin-collapse.scss","../../style/vanillaframework/scss/_utilities_off-screen.scss","../../style/vanillaframework/scss/_utilities_padding-collapse.scss","../../style/vanillaframework/scss/_utilities_show.scss","../../style/vanillaframework/scss/_utilities_vertical-spacing.scss","../../style/vanillaframework/scss/_utilities_vertically-center.scss","../../style/vanillaframework/scss/_utilities_no-print.scss","../../style/main.scss"],"names":[],"mappings":"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EkBkFd,clB9EU;EkB+EV,OlB3Ea;;AkB6Eb;EACE,OlB9EW;;AkBiFb;EAEE,kBazDmC;Eb0DnC,clBxFQ;EkByFR;;AAGF;EACE,kBajEkC;EbkElC,clB9FQ;;AkBmGR;EAEE,kBlB9Gc;EkB+Gd,clBtGM;;AkB0GV;EACE;;;AalEF;EboCA,kBlBpFY;EkBqFZ,clBrFY;EkBsFZ,OahCwB;;AbkCxB;EACE,OanCsB;;AbsCxB;EAEE,kBanCmC;EboCnC,canC+B;EboC/B;;AAGF;EACE,kBa7CkC;Eb8ClC,ca7C8B;;AbkD9B;EAEE,kBlB5GQ;EkB6GR,clB7GQ;;AkBiHZ;EACE;;;Aa5CF;EbcA,kBlBrEe;EkBsEf,clBtEe;EkBuEf,OlBnFc;;AkBqFd;EACE,OlBtFY;;AkByFd;EAEE,kBabmC;EbcnC,cab+B;Ebc/B;;AAGF;EACE,kBavBkC;EbwBlC,cavB8B;;Ab4B9B;EAEE,kBlB7FW;EkB8FX,clB9FW;;AkBkGf;EACE;;;AatBF;EbRA,kBlBvEe;EkBwEf,clBxEe;EkByEf,OlBnFc;;AkBqFd;EACE,OlBtFY;;AkByFd;EAEE,kBaSmC;EbRnC,caS+B;EbR/B;;AAGF;EACE,kBaDkC;EbElC,caD8B;;AbM9B;EAEE,kBlB/FW;EkBgGX,clBhGW;;AkBoGf;EACE;;;AaAF;Eb9BA,kBlBtFkB;EkBuFlB,clBvFkB;EkBwFlB,OlB3Ea;;AkB6Eb;EACE,OlB9EW;;AkBiFb;EAEE,kBa6BmC;Eb5BnC,clBjGgB;EkBkGhB;;AAGF;EACE,kBaqBkC;EbpBlC,clBvGgB;;AkB4GhB;EAEE,kBlB9Gc;EkB+Gd,clBtGM;;AkB0GV;EACE;;;AaqBA;EADF;IAEI,a9BpCM;I8BqCN;;;;AAMJ;EACE;;AAIE;EACE;EACA;;AAGF;EACE;;;AClJN;EAIE;;;AAiBF;EACE;EACA,OhCrBS;EgCsBT,e/B0DmB;E+BzDnB;EACA,S/BiDe;;;A+B5CjB;EAIE,e/B+CmB;E+B9CnB;EACA,S/BsCe;;;A+B9BjB;EACE,e/BkCyB;E+BjCzB;EACA;;;AAGF;EACE;EACA,gB/BsBe;;A+BpBf;EACE;EA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;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;;AAaN;EAGI;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;EAIE;IACE;;;EANN;IACE;;;AAsDJ;EAEI;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;AAPN;EAEI;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;AAPN;EAEI;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;EALF;IACE;;;EAGF;IACE;;;ACtMR;EACE,exCwFgB;;AwCtFhB;EAHF;IAII;;;;AAIJ;EACE;EAGA,exC4G6B;;AwC1G7B;EACE;;;AAIJ;EACE;EACA;EACA,exCjBM;EwCkBN,cxC6EQ;EwC5ER;;AAEA;EAPF;IAQI;;;AAGF;EAXF;IAYI;IACA;IACA;;;;AAKF;EACE;EACA;;AAEA;EAJF;IAKI,YxCmCa;;;AwChCf;EARF;IASI;IACA;IACA;;;;AtCoJN;EA5HA;;AAgIE;EAhIF;;;AAwIA;EApIA;;AAwIE;EAxIF;;;AAgJA;EA5IA;;AAgJE;EAhJF;;;AAwJA;EApJA;;AAwJE;EAxJF;;;AAgKA;EA5JA;;AAgKE;EAhKF;;;AAwKA;EApKA;;AAwKE;EAxKF;;;AAg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AAGA;EAEI;EACA;EACA;EACA;EAEF;EACA,M7DnBI;;;A6D4BR;EAEE;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;EACA;EACA;EAEF;EACA;EACA;EACA;;;AAUJ;EAEE;EACA;EACA;EACA;EACA;EACA;;AAGA;EAEI;EACA;EACA;EACA;EAEF;EACA;EACA,O7D3EI;;;A6DoFR;EACE;EACA;EACA;EAEA;EACA;;AAGA;EAGI;EACA;EACA;EACA;EAEF;EACA;EACA;EACA;EACA;;;AAUJ;EAEE;EACA;EACA;EACA;EACA;;AAGA;EAGI;EACA;EACA;EACA;EAEF;EACA;EACA;EACA;EACA;;;AClON;EACE;EACA;;;AAMF;EACE;EACA;;;AAMF;EACE;EACA;;;AAKF;EACE;;;AAOA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;ACvDJ;EACE;IACE;IACA;;;AAIJ;EAEE;EACA;;;AAIF;EAEE;IACE;IACA;;EAGF;IACE;IACA;;;AClBJ;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,KAhBc;EAiBd;;;AAIJ;EACE,QhEmEmB;EgElEnB;EACA,OhEgFe;EgE/Ef;;;ACzBF;EACE;EACA,YjEEM;EiEDN;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACZA;EADF;IAEI;;EAEA;IACE;;;;ACNN;EACE;;AAGE;EADF;IAEI;;;AAKF;EADF;IAEI;;;AAKF;EADF;IAEI;;;;AAKN;EACE;;AAGE;EADF;IAEI;;;AAKF;EADF;IAEI;;;AAKF;EADF;IAEI;;;;ACnCN;EACE;;AAGE;EADF;IAEI;;;AAKF;EADF;IAEI;;;AAKF;EADF;IAEI;;;;ACtBJ;EADF;IAEI;IACA;;EAEA;IACE;IACA;;EAGF;IACE;;EAGF;IAEE;;EAGF;IAEE;;EAGF;IAEE;;EAGF;IAEE;;;;ACrBJ;EACE;;;ACTJ;EACE;;AAEA;EACE;;AAGF;EACE;;AAOF;EACE;;;AChBJ;EACE;EACA;EACA;EACA;EACA;EACA;;;ACNF;EACE;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;;AChBJ;EACE;;AAGE;EADF;IAEI;;;AAKF;EADF;IAEI;;;AAKF;EADF;IAEI;;;;ACjBN;EACE;EACA;EACA;EACA;;;AAOE;EAME;;;AANF;EAME;;;AANF;EAME;;;AANF;EAME;;;AANF;EAME;;;AANF;EAME;;;AANF;EAME;;;ACjBN;EACE;EACA;EACA;;AAEA;EACE;;;ACRJ;EACE;IACE;;;ACGN;EACC;;;AAED;EACC;EACA;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;;;AAED;EACC;EACA;;;AAED;EACC;;;AAED;AAAA;EAEC;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;EACA;;;AAED;EACC;EACA;;;AAGD;EACC;;;AAID;EACC;IACC;;;EAED;AAAA;IAEC;;;EAED;AAAA;AAAA;IAGC;;;EAED;IACC;;;EAED;IACC;;;AAIF;EACE;;;AAEF;EACC","file":"main.css"} \ No newline at end of file diff --git a/style/main.scss b/style/main.scss deleted file mode 100644 index 16c9aaccbc8bc18e008da08bc335d70993f6af77..0000000000000000000000000000000000000000 --- a/style/main.scss +++ /dev/null @@ -1,104 +0,0 @@ -// Download font from local only -$font-import: '/fonts/'; -$assets-path: '/assets/'; - -@import "vanillaframework/scss/vanilla"; -@include vanilla; - -html { - background-color: #f3f3f3; -} -#app { - display: flex; - flex-flow: row wrap; - max-width: 100vw; -} -#app > * { - flex: 1 100%; -} -#app > aside { - flex: 1 auto; -} -#app > .p-content { - flex: 10 auto; - border: solid #eeeeee; - border-width: 1px 1px 0.2em; - box-shadow: 0 1px 2px 1px rgba(0,0,0,0.02); - background-color: #ffffff; - padding: 1em 2em 3em; - margin: 0 10px; -} -.p-aside__section { - background: #fcfcfc; - border: solid #eeeeee; - border-width: 1px 1px 0.2em; - box-shadow: 0 1px 2px 1px rgba(0,0,0,0.02); - padding: 1.5em 1.5em 0; - margin: 0 1em 1em; -} -.p-aside__header { - padding-bottom: 0.5em; - border-bottom: solid 2px #cccccc; -} -.divider { - border-bottom: solid 2px #cccccc; -} -.p-navigation::after, -.p-navigation__link > a::before { - content: none; -} -#navigation > .logo { - border-bottom: 6px solid #0076ba; - z-index: 2; - width: 30%; - padding: 0px 50px; - font-size: 1.5rem; - line-height: 3rem; -} -#navigation .edit { - font-weight: bold; -} -#navigation .edit > a { - color: #99ba00; -} -#navigation .p-navigation__nav >.p-navigation__links { - border-bottom: 6px solid #ffc600; - width: 50%; -} -#navigation .p-navigation__links.u-float-right { - border-bottom: 6px solid #99ba00; - flex-direction: row-reverse; -} - -.mobile { - display: none; -} - - -@media (max-width: 800px) { - .mobile { - display: block; - } - #app > aside > #tree, - #app > aside > :target ~ #no-tree { - display: none; - } - #app > aside > #no-tree, - #app > aside > #tree:target, - #app > aside > #no-tree:target { - display: block; - } - #app { - flex-direction: column; - } - #app > .p-content { - margin: 0px; - } -} - -.p-breadcrumbs { - margin: 0.5em 0 -0.25em 1em; -} -th { - width: auto !important; -} diff --git a/style/vanillaframework b/style/vanillaframework deleted file mode 160000 index 8b915ae82baea3df528a95f005a2a66d832f024e..0000000000000000000000000000000000000000 --- a/style/vanillaframework +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8b915ae82baea3df528a95f005a2a66d832f024e diff --git a/themes/docdock b/themes/docdock new file mode 160000 index 0000000000000000000000000000000000000000..b208a895a15b40facf2ef59ea3bde6dbda871c16 --- /dev/null +++ b/themes/docdock @@ -0,0 +1 @@ +Subproject commit b208a895a15b40facf2ef59ea3bde6dbda871c16