@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: normal;
  src: url('/assets/fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: bold;
  src: url('/assets/fonts/poppins-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  background: var(--background-color);
  color: var(--text-color);
  transition: background-color 500ms ease-in-out, color 200ms ease;
  min-height: 100vh;
  font-size: 0.9rem;
}

body {
  padding: 0 var(--standard-size);
  min-height: 100vh;
}

@media screen and (max-width: 960px) {
  html,
  body {
    min-height: 100%;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  background: #FFFFFF11;
  border: 1px solid #FFFFFF11;
  border-radius: 0.4rem;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 0.8rem transparent;
  border: 0.2rem solid transparent;
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 0.8rem #FFFFFF66;
  border: 0.2rem solid transparent;
  border-radius: 0.4rem;
}

dialog {
  background: var(--dialog-background-color);
  border: 2px solid rgb(255,255,255, 0.1);
  border-radius: 0.5rem;
  color: var(--text-color);
  padding: 0;
  overflow: visible;
}

dialog > div {
  max-height: calc(100dvh - 5rem);
  overflow: hidden;
  padding: 1rem 0.5rem
}

dialog > div > div {
  max-height: min(32rem, calc(100dvh - 10rem));
  overflow: auto;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

dialog::backdrop {
  background: rgb(0,0,0, 0.5);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

dialog h2 {
  margin: 0 0 1rem 0 !important;
  font-size: var(--large-size);
}

dialog h3 {
  margin: 0 0 1rem 0 !important;
}

dialog button.close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--dialog-background-color);
  border: 2px solid #FFFFFF66;
  color: #FFFFFF66;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: all 0.25s ease-in-out;
}

dialog button.close:hover {
  color: #FFF;
  border-color: #FFF;
  transition: all 0.25s ease-in-out;
}

@media screen and (max-width: 960px)  {
  .non-critical {
    display: none;
  }
}

main.page {
  max-width: 50rem;
  margin: 2rem auto;
  padding: 4rem;
  background-color: #FFFFFF11;
  border-radius: 0.5rem;
}

main.page h1 {
  margin: 0 0 2rem 0;
  font-size: 2rem;
}

main.page h2 {
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
}

body,
button,
input,
textarea,
select {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
summary {
  cursor: pointer
}

button {
  font-size: var(--three-quarter-size);
}

button:disabled {
  cursor: not-allowed;
}

button.plain {
  appearance: none;
  background-color: transparent;
  border: none;
  color: var(--text-color);
  padding: 0;
  margin: 0;
}

button.simple {
  appearance: none;
  background-color: transparent;
  border: none;
  color: var(--text-color);
  padding: var(--three-quarter-size) var(--standard-size);
  margin: 0;
  border: 1px solid #FFF4;
  border-radius: var(--half-size);
}

button.simple:hover {
  border-color: #FFF;
}

button.standard {
  background: var(--button-background-color);
  color: var(--button-text-color);
  border-radius: var(--half-size);
  border: none;
  padding: var(--three-quarter-size) var(--standard-size);
  margin: 0;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  min-width: 8rem;
  box-sizing: border-box;
}

html:not([data-scope=login]):not([data-scope=register])[data-scope] body:after {
  display: block;
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-image: var(--logo-ring-url);
  background-size: 150%;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0.33;
  z-index: -1;
}

html[data-modal-open=true] body {
  overflow: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
}

input[type=number].counter {
  padding: var(--half-size);
  appearance: none;
  -moz-appearance:textfield;
  border: none;
  background: var(--form-input-background-color);
  color: var(--form-input-text-color);
  font-size: var(--standard-size);
  width: 3ch;
  max-width: 5ch;
  text-align: center;
  border-radius: var(--quarter-size);
  pointer-events: none;
}

.counter::-webkit-outer-spin-button,
.counter::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

ul.standard {
  display: block;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

ul.standard li {
  display: inline-block;
  background: url(/assets/images/bullet.svg) no-repeat top left;
  background-size: 1.25rem;
  padding: 0 0 0 1.75rem;
  margin: 0 0 1rem 0;
}

#app {
  display: block
}

@media screen and (min-width: 960px)  {
  #app {
    display: flex;
    justify-content: space-between;
    gap: var(--standard-size);
    min-height: 100vh;
  }
}

.tempTranslationPreview {
  padding: var(--standard-size);
  border-radius: var(--half-size);
  border: 0.5px solid var(--form-input-border-color, #FFFFFF44);
  box-sizing: border-box;
}

.tempTranslationPreview button {
  appearance: none;
  padding: var(--half-size) var(--standard-size);
  background-color: var(--button-background-color);
  color: var(--button-text-color);
  font-weight: bold;
  font-size: var(--three-quarter-size);
  text-align: center;
  border-radius: var(--half-size);
  border: none;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  width: 6rem;
}

svg {
  max-width: 100%;
}

@media screen and (min-width: 960px)  {
  svg {
    max-width: unset;
  }
}

svg.icon {
  vertical-align: text-bottom;
  display: inline-block;
  margin: 0;
}

#prompter {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
  background: rgb(0,0,0, 0.5);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#prompter {
  z-index: 2147483632; /* Higher than modal and support widget icon thing */
}

#prompter dialog {
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto;
  width: min(36rem, 100%);
  background: var(--dialog-background-color);
  color: var(--text-color);
  border-radius: 1rem;
  border: 2px solid rgb(255,255,255, 0.1);
  box-shadow: 0 0 16px 0 rgba(255,255,255, 0.1);
  position: relative;
  
  animation-duration: 0.5s;
  animation-name: fadein;
  max-height: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(0); /* Establish containing block for any fixed position descendants */
  animation-duration: 0.5s;
  animation-name: fadein;
}

#prompter dialog:focus {
  outline: none;
}

#prompter form {
  margin: 0;
}

#prompter fieldset {
  border: none;
  margin: 0;
  padding: var(--double-size);
}

#prompter legend {
  font-size: larger;
  font-weight: 600;
  position: relative;
  top: var(--double-size);
  padding: 0;
}

#prompter .actions {
  display: flex;
  align-items: center;
  gap: var(--standard-size);
  margin: var(--double-size) 0 0 0;
  padding: 0;
  list-style: none;
}
/* 
#prompter button {
  appearance: none;
  background: var(--button-background-color);
  border: 1px solid var(--button-background-color);
  font-size: var(--three-quarter-size);
  color: var(--button-text-color);
  font-weight: 600;
  padding: var(--half-size) var(--double-size);
  border-radius: var(--quarter-size);
}

#prompter button:focus {
  box-shadow: 0 0 0px 2px var(--brand-dark-green);
} */

#prompter .actions li:nth-child(1) {
  margin: 0 auto 0 0;
}

/* #prompter .actions li:nth-child(1) button {
  background: none;
  color: var(--button-background-color);
} */

#prompter .actions li:nth-child(2) {
  margin: 0 0 0 auto;
}

#toaster {
  position: fixed;
  z-index: 2147483634; /* Above modal, support widget, and prompts */
  bottom: 0;
  width: 40rem;
  max-width: calc(100% - 2rem);
  left: 50%;
  transform: translateX(-50%);
}

#toaster > .toast {
  background: var(--toast-background-color);
  color: var(--text-color);
  border-radius: var(--half-size);
  border: 1px solid var(--neutral-color);
  padding: var(--standard-size);
  margin: 0 auto var(--standard-size) auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  cursor: pointer;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  box-shadow: 0 0 4px 1px rgba(255,255,255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--standard-size);
}

.toast .message {
  margin: 0 auto 0 0;
}

.toast .choices {
  margin: 0 0 0 auto;
}

.toast svg {
  stroke: var(--neutral-color);
}

.toast ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: var(--standard-size);
}

.toast li {
  display: block;
  padding: 0;
  margin: 0;
}

.toast li button {
  min-width: 4rem;
}

#toaster > .toast[data-nature=failure] {
  border-color: var(--negative-color);
}

#toaster > .toast[data-nature=failure] svg {
  stroke: var(--negative-color);
}

#toaster > .toast[data-nature=success] {
  border-color: var(--positive-color);
}

#toaster > .toast[data-nature=success] svg {
  stroke: var(--positive-color);
}

#toaster > .toast:nth-child(1) {
  animation-name: popUp;
}

@keyframes popUp {
  to {
    bottom: 0;
  }
}

.checklist {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  /* max-width: 30rem; */
}

.checklist li {
  display: flex;
  gap: var(--standard-size);
  align-items: center;
  padding: var(--half-size) var(--standard-size);
  margin: 0 0 var(--quarter-size) 0;
  font-weight: 600;
  border-radius: var(--half-size);
  background-color: var(--brand-tint-color2);
}

.checklist li a {
  text-decoration: none;
}

.checklist li.done {
  color: var(--positive-color);
  text-decoration: line-through;
  pointer-events: none;
}

.checklist li.todo {
  color: #FFF8
}

.checklist li.todo a {
  text-decoration: underline;
}

.checklist li.pending {
  opacity: 0.33;
}

main > header {
  height: calc(9 * var(--standard-size));
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 0;
}

@media screen and (max-width: 960px) {
  main > header {
    padding: 1rem 0 1.5rem 0;
    height: auto;
  }
}

main > header > div {
  margin: auto 0;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 960px)  {
  main {
    width: calc(100% - 210px - 3rem);
    padding-bottom: 1rem;
  }
}

/* main > header > div > *:nth-child(1) {
  order: 2
}

main > header > div > *:nth-child(2) {
  order: 1
} */

h1 {
  font-size: calc(var(--standard-size) * 1.5);
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: capitalize;
}

h1 span {
  opacity: 0.5;
  font-size: var(--standard-size);
  display: block;
}

h2 {
  margin: 0 0 var(--standard-size) 0;
}

h3 {
  font-size: 1rem;
  margin: 0;
}

p.dev,
p.info {
  margin: var(--standard-size) 0;
  padding: var(--standard-size) var(--standard-size) var(--standard-size) var(--quadruple-size);
  border: 1px solid #FFFFFF44;
  border-radius: var(--half-size);
  background-repeat: no-repeat;
  background-position: var(--standard-size) 50%;
  background-size: var(--double-size);
}

p.info {
  background-image: url(/assets/images/info.svg);
}

p.dev {
  background-image: url(/assets/images/dev.svg);
}

.graphic {
  background: #FFF1;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
}

a {
  color: var(--nav-link-color);
  text-decoration: underline;
}

a.launch {
  display: block;
  margin: 0 auto;
  padding: var(--standard-size);
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--quarter-size);
  color: var(--nav-link-color);
  text-decoration: none;
}

a:has(svg) {
  text-decoration: none;
}

input:not([type=radio]):not([type=checkbox]):not([readonly]):focus,
select:focus,
textarea:focus,
button:focus {
  outline:none;
  border: 0.5px solid  #000;
  box-shadow: 0 0 0px 2px var(--brand-light-green); /* Using shadow rather than outline to get round Safari bug with lack of radius on custom outlines https://bugs.webkit.org/show_bug.cgi?id=20807 */
}

.split,
.split-half,
.split-third,
.split-quarter {
  display: flex;
  gap: var(--quarter-size) var(--standard-size);
  align-content: flex-start;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.split > *,
.split-half > *,
.split-third > *,
.split-quarter > * {
  display: block;
  margin: 0;
  padding: 0;
}

.split-half > * {
  flex-basis: calc(50% - calc(var(--standard-size) * 1.5));
}

.split-third > * {
  flex-basis: calc(33% - calc(var(--standard-size) * 1.75));
}

.split-quarter > * {
  flex-basis: calc(25% - calc(var(--standard-size) * 1.75));
}

.grow {
  flex: 1 0;
}

.shrink {
  flex: 0 1;
}

@media screen and (max-width: 800px) {
  .split,
  .split-half,
  .split-third {
    flex-direction: column;
    gap: var(--standard-size) 0;
    justify-content: stretch;
  }

  .split > *,
  .split-half > *,
  .split-third > *  {
    flex: 1 0 100%;
    width: calc(100% - 2px);
    box-sizing: border-box;
  }

  .split-quarter {
    justify-content: space-evenly;
    gap: var(--standard-size);
  }

  .split-quarter > * {
    flex-basis: 1 0 calc(50% - var(--standard-size));
  }
}

.pagelet {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rows {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: var(--standard-size);
}

.columns {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: var(--standard-size);
}

@media screen and (min-width: 800px) {
  .columns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1px var(--standard-size);
  }

  .columns > * {
    flex: 1;
  }
}

.lozenge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  padding: 0 1em;
  line-height: 4em;
  border-radius: var(--half-size);
  background: var(--panel-background-color);
  color: var(--text-color);
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.5rem;
}

.lozenge span {
  display: inline-block;
  border: 2px solid #FFF;
  padding: var(--three-quarter-size);
  border-radius: 50%;
  line-height: 1;
  box-sizing: border-box;
}

[data-temp=true] {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

[data-temp=true]:after {
  position: absolute;
  display: block;
  content: 'TEMPORARY';
  top: 2rem;
  right: -3rem;
  width: 12rem;
  line-height: 2rem;
  background: #900;
  color: #FF9;
  text-align: center;
  font-weight: bold;
  font-size: 0.85rem;
  transform: rotate(45deg);
  box-shadow: 0 3px 3px 0 rgba(0,0,0, 0.25);
}

select {
    appearance: none;
    -webkit-appearance: none;
    border: 0.5px solid var(--form-input-border-color, #FFFFFF44);
    font-size: var(--four-fifths-size);
    line-height: 1;
    padding: var(--three-quarter-size) var(--half-size);
    margin: 3px;
    color: var(--form-input-text-color);
    background: var(--form-input-background-color) url(/assets/images/filter-chevron.svg) no-repeat calc(100% - 1rem) center;
    border-radius: var(--quarter-size);
    /* width: 18.5em; */
    cursor: pointer;
}

select::-webkit-scrollbar {
  width: 0.8rem;
  background: #FFF;
  border: 1px solid #DDD;
  border-radius: 0.4rem;
}

select::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 0.8rem transparent;
  border: 0.2rem solid transparent;
}

select::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 0.8rem #666;
  border: 0.2rem solid transparent;
  border-radius: 0.4rem;
}

select optgroup {
  background: #FFF;
  color: #666;
}

option {
    background: #FFF;
    color: #000;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: var(--half-size) 0;
  gap: var(--standard-size);
  background-color: var(--background-color);
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 10;
}

h1 + .options {
  padding-top: 0;
}

.options > div {
  display: flex;
  gap: var(--standard-size);
}

.fakewarn {
  font-size: 0.8rem;
  position: absolute;
  padding: 0.25rem 4rem;
  background-color: #FFF2;
  border: 2px solid #FFF1;
  color: #FFF;
  box-shadow: 4px 4px 2px rgba(0,0,0, 0.1);
  top: 1.5rem;
  right: -4rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  font-weight: bold;
  z-index: 100;
}

.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FFF1;
  border-radius: var(--half-size);
  flex-grow: 1;
  color: #FFF8;
}

.pill {
  display: inline-block;
  /* text-transform: uppercase; */
  /* font-size: 0.9em; */
  min-width: 6rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pill::before {
  display: inline-block;
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.pill.state-active::before,
.pill.state-authorised::before,
.pill.state-valid::before,
.pill.state-passed::before {
  background-color: var(--positive-color);
  border: 2px solid var(--positive-color);
}

.pill.state-pending::before {
  border: 2px solid var(--neutral-color);
}

.pill.state-expires-soon::before,
.pill.state-skipped::before {
  background-color: orange;
  border: 2px solid orange;
}

.pill.state-revoked::before,
.pill.state-rejected::before,
.pill.state-expired::before,
.pill.state-failed::before {
  background-color: var(--negative-color);
  border: 2px solid var(--negative-color);
}

ol.tabs,
ul.tabs {
  margin: var(--standard-size) var(--standard-size) 0 var(--standard-size);
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 100%;
}

@media screen and (max-width: 960px) {
  ol.tabs,
  ul.tabs {
    display: none;
  }
}

ul.tabs {
  gap: 2px;
}

.tabs li {
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  position: relative;
  overflow: visible;
  background: var(--tab-background-color);
  line-height: 1;
}

.tabs li:nth-child(1) { z-index: 9 }
.tabs li:nth-child(2) { z-index: 8 }
.tabs li:nth-child(3) { z-index: 7 }
.tabs li:nth-child(4) { z-index: 6 }
.tabs li:nth-child(5) { z-index: 5 }
.tabs li:nth-child(6) { z-index: 4 }
.tabs li:nth-child(7) { z-index: 3 }
.tabs li:nth-child(8) { z-index: 2 }
.tabs li:nth-child(9) { z-index: 1 }

ol.tabs li:not(:last-child):before {
  border: 1.5rem solid transparent;
  border-left: 1rem solid var(--background-color);
  border-right: none;
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  display: block;
  content: ''; 
}

ol.tabs li:not(:last-child):after {
  border: 1.5rem solid transparent;
  border-left: 1rem solid var(--tab-background-color);
  border-right: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: ''; 
}

.tabs button {
  display: block;
  line-height: 1;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: var(--standard-size) 1.5rem var(--standard-size) var(--standard-size);
  text-align: center;
  color: var(--text-color);
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
  font-size: var(--standard-size);
  height: 100%;
  white-space: nowrap;
  position: relative;
  z-index: 20;
}

.tabs li:last-child button {
  padding-right: var(--standard-size);
}

.tabs:has(:nth-child(5)) li {
  max-width: 16ch;
}

.tabs button span {
  display: block;
}

.tabs:has(:nth-child(5)) li button span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabs li[aria-current=true] button:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  content: '';
  border-bottom: 2px solid var(--brand-light-green);
}

ol.tabs li[aria-current=true] button:after {
  left: -1rem;
  right: 1rem;
}

ol.tabs li[aria-current=true]:first-child button:after {
  left: 0;
}

ol.tabs li[aria-current=true]:last-child button:after {
  right: 0;
}

.tabs button:focus {
  box-shadow: none !important;
}

[aria-label] {
  position: relative;
}

[aria-label]::before,
[aria-label]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease-in-out 0s;
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

[aria-label]::before {
  background-size: 100% auto !important;
  content: "";
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%28255,%20255,%20255,%201%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 7px;
  width: 18px;
  margin-bottom: 5px;
  transform: translate3d(-50%, 0, 0);
  bottom: 80%;
  left: 50%;
}

[aria-label]::after {
  background: #FFF;
  border-radius: 4px;
  color: #000;
  content: attr(aria-label);
  font-size: 12px;
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
  margin-bottom: 11px;
  white-space: initial;
  width: fit-content;
  transform: translate3d(-50%, 0, 0);
  bottom: 80%;
  left: 50%;
}

[aria-label]:hover::before,
[aria-label]:hover::after,
[aria-label]:focus::before,
[aria-label]:focus::after {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.18s ease-in-out 1s;
}

[aria-label]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}

[aria-label]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}

button[aria-label][disabled=true]:before,
button[aria-label][disabled=true]:after,
nav [aria-label]:before,
nav [aria-label]:after,
#videoPlayer [aria-label]:before,
#videoPlayer [aria-label]:after,
div[role=dialog]:before,
div[role=dialog]:after
 {
    display: none;
}

a.button {
  border: 1px solid #999;
  border-radius: var(--half-size);
  display: flex;
  align-items: center;
  text-decoration: none !important;
  padding: 0.25rem 0.5rem;
  font-size: var(--three-quarter-size);
}

a.button:hover {
  background-color: #FFF1;
  box-shadow: 0 4px 4px #FFF0;
}

.attention {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--panel-background-color);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  margin: 1rem 0;
  color: var(--text-color);
  border-radius: var(--standard-size);
}

.badge {
  display: block;
  position: absolute;
  top: -1rem;
  right: -0.95rem;
  font-size: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 50%;
  background-color: var(--badge-background);
  color: var(--badge-foreground);
  border: 0.2rem solid var(--background-color);
}

table.standard {
  width: 100%;
  max-width: 100%;
  margin: 0 0 var(--standard-size) 0;
  border-collapse: collapse
}

table.standard th,
table.standard td {
  text-align: left;
  padding: 2px;
}

table.standard tbody th {
  white-space: nowrap;
}