/* 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%;
  height: var(--bi-layout-navbar-height);
}

.in-page-links {
  background-color: var(--bi-basic-white);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  height: var(--bi-layout-navbar-height);
  padding: var(--bi-scale-2x) var(--bi-scale-4x);
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  border-bottom: 1px solid var(--bi-neutral-15);
}
.in-page-links.fixed {
  position: fixed;
  top: 0;
  z-index: 110;
}
.in-page-links.navbar-visible {
  z-index: 120;
}
.in-page-links.fixed.navbar-visible {
  top: var(--bi-layout-navbar-height);
}
.in-page-links .title {
  font-size: 1rem;
  font-family: "museo-sans", arial, sans-serif;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--bi-primary-60);
}
@media (max-width: 450px) {
  .in-page-links {
    justify-content: flex-end;
  }
  .in-page-links .title {
    display: none;
  }
}
.in-page-links .icon {
  transition: rotate 0.2s;
}
.in-page-links .icon.open {
  rotate: 180deg;
}