/* 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;
  flex: 1;
}

button,
a {
  position: relative;
  display: flex;
  flex-direction: inherit;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border: none;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
button:not(.disabled):focus-visible,
a:not(.disabled):focus-visible {
  border-radius: 4px;
  outline-offset: 2px;
  outline: 1.5px solid var(--bi-primary-50);
  box-shadow: 0 0 0 2px white;
}
button:not(.disabled):hover,
a:not(.disabled):hover {
  box-shadow: 0px 0px 0px 2px var(--bi-neutral-50), 0px 0px 20px var(--bi-scale-1-5x) rgba(0, 0, 0, 0.05), 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
button:not(.disabled):active,
a:not(.disabled):active {
  box-shadow: 0px 0px 0px var(--bi-stroke-default) var(--bi-primary-50) inset, 0px 0px 20px var(--bi-scale-1-5x) rgba(0, 0, 0, 0.05), 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
button.disabled,
a.disabled {
  cursor: not-allowed;
}

a.disabled {
  pointer-events: none;
}