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

.drawer {
  position: fixed;
  border: none;
  z-index: 1200;
  height: 100vh;
  width: 100vw;
  display: flex;
}
.drawer.left {
  justify-content: flex-start;
  align-items: center;
  transform: translateX(-100%);
  overflow-y: hidden;
  overflow-x: auto;
}
.drawer.left.open {
  transform: translateX(0);
}
.drawer.right {
  justify-content: flex-end;
  align-items: flex-end;
  transform: translateX(100%);
  overflow-y: hidden;
  overflow-x: auto;
}
.drawer.right.open {
  transform: translateX(0);
}
.drawer.top {
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-100%);
}
.drawer.top.open {
  transform: translateY(0);
}
.drawer.bottom {
  justify-content: center;
  align-items: flex-end;
  transform: translateY(100%);
}
.drawer.bottom.open {
  transform: translateY(0);
}

.modal-drawer-content {
  position: relative;
  z-index: 1201;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.modal-drawer-content.background-primary {
  background-color: var(--bi-primary-95);
  color: white;
}
.modal-drawer-content.background-white {
  background-color: white;
}
.modal-drawer-content.background-neutral {
  background-color: var(--bi-neutral-5);
}
.modal-drawer-content.right, .modal-drawer-content.left {
  max-width: 632px;
  width: fit-content;
  height: 100%;
}
.modal-drawer-content.top, .modal-drawer-content.bottom {
  width: 100%;
  max-width: 100vw;
}