/* Variables  */
/* Aliases  */
.sr-only {
  position: absolute;
  /* Outside the DOM flow */
  height: 1px;
  width: 1px;
  /* Nearly collapsed */
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  left: -9999px;
  text-indent: -5000px;
  clip: rect(1px, 1px, 1px, 1px);
  /* All other browsers */
}

/* Variables  */
/* Aliases  */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

:host(:focus) {
  outline: none !important;
  border: none !important;
}

:host {
  display: block;
  width: 100%;
  background-color: var(--bi-basic-white);
  color: var(--bi-primary-95);
}

:host(.dark) {
  background-color: var(--bi-primary-95);
  color: var(--bi-basic-white);
}

:host(.fixed) {
  padding-bottom: var(--bi-layout-navbar-height);
}

header {
  background-color: inherit;
  color: inherit;
  height: var(--bi-layout-navbar-height);
  width: 100%;
  padding: 0 var(--bi-scale-3x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header nav a:focus {
  border-radius: 4px;
  outline-offset: 2px;
  outline: 1.5px solid var(--bi-primary-50);
  box-shadow: 0 0 0 2px white;
}
header .content {
  display: flex;
  flex-direction: row;
  justify-self: center;
  align-items: center;
  gap: var(--bi-scale-6x);
}
header .skip-link {
  font-size: 0.75rem;
  background: var(--bi-primary-50);
  color: var(--bi-basic-white);
  font-weight: 400;
  height: 44px;
  left: 50%;
  padding: 0 7px;
  position: absolute;
  transform: translate(-50%, -62px);
  outline-offset: 0px;
  border-radius: 4px;
  align-content: center;
}
header .skip-link:focus {
  transform: translate(-50%, 0px);
  transition: transform 0.3s;
  border-radius: 4px;
  outline-offset: 2px;
  outline: 1.5px solid var(--bi-primary-50);
  box-shadow: 0 0 0 2px white;
}