@font-face {
  font-family: "Roboto";
  src: url("../static/assets/fonts/Roboto-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../static/assets/fonts/Roboto-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Roboto";
}
* html, * body, * div, * span, * object, * iframe, * h1, * h2, * h3, * h4, * h5, * h6, * p, * blockquote, * pre, * abbr, * address, * cite, * code, * del, * dfn, * em, * img, * ins, * kbd, * q, * samp, * small, * strong, * sub, * sup, * var, * b, * i, * dl, * dt, * dd, * ol, * ul, * li, * fieldset, * form, * label, * legend, * table, * caption, * tbody, * tfoot, * thead, * tr, * th, * td, * article, * aside, * canvas, * details, * figcaption, * figure, * footer, * header, * hgroup, * menu, * nav, * section, * summary, * time, * mark, * audio, * video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
* body {
  line-height: 1;
}
* article, * aside, * details, * figcaption, * figure, * footer, * header, * hgroup, * menu, * nav, * section {
  display: block;
}
* nav ul {
  list-style: none;
}
* blockquote, * q {
  quotes: none;
}
* blockquote:before, * blockquote:after, * q:before, * q:after {
  content: none;
}
* a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
* ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
* mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
* del {
  text-decoration: line-through;
}
* abbr[title], * dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
* table {
  border-collapse: collapse;
  border-spacing: 0;
}
* hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
* input, * select {
  vertical-align: middle;
}

.navigation-outer-wrapper {
  position: fixed;
  width: 100%;
  padding: 0 10px;
  z-index: 9999;
}

#navigation {
  padding: 6px;
  background-color: #f2f2f2;
  border-radius: 8px;
  margin: 10px auto;
  max-width: 400px;
  width: 100%;
  max-height: 44px;
  overflow: hidden;
  height: fit-content;
  backdrop-filter: blur(12px);
  transition: max-height 0.3s cubic-bezier(0.38, 0, 0.06, 1.06);
}

.navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 5px;
}
.navigation-wrapper > p {
  font-weight: 700;
  margin: 0 5px;
}
.navigation-wrapper > img {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  object-fit: cover;
}

#nav-control {
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#nav-control:hover {
  opacity: 0.5;
}
#nav-control > div {
  height: 1.8px;
  width: 14px;
  background-color: black;
  margin: 4px 0;
  transition: all 0.1s ease-in-out;
  border-radius: 5px;
}

.navigation-content {
  padding: 0px 10px 10px 10px;
  display: flex;
  flex-direction: column;
}
.navigation-content > a {
  margin-top: 16px;
  padding: 2px 0px;
  font-size: 16px;
  color: black;
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
}
.navigation-content > a > svg {
  width: 18px;
}
.navigation-content > a:hover {
  opacity: 0.5 !important;
}
.navigation-content > hr {
  margin-bottom: 0;
  opacity: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-active {
  max-height: 357px !important;
  height: fit-content;
}
.nav-active > .navigation-wrapper > #nav-control > div:nth-child(1) {
  transform: translate(0px, 5px) rotate(45deg);
}
.nav-active > .navigation-wrapper > #nav-control > div:nth-child(2) {
  transform: translate(0px, -5px) rotate(-45deg);
}
.nav-active > .navigation-content > a, .nav-active > .navigation-content > hr {
  opacity: 1;
  animation: NavOpenLinks 0.2s cubic-bezier(0.38, 0, 0.06, 1.06) forwards;
}
.nav-active > .navigation-content > a:nth-child(1), .nav-active > .navigation-content > hr:nth-child(1) {
  animation-delay: 0.016s;
}
.nav-active > .navigation-content > a:nth-child(2), .nav-active > .navigation-content > hr:nth-child(2) {
  animation-delay: 0.032s;
}
.nav-active > .navigation-content > a:nth-child(3), .nav-active > .navigation-content > hr:nth-child(3) {
  animation-delay: 0.048s;
}
.nav-active > .navigation-content > a:nth-child(4), .nav-active > .navigation-content > hr:nth-child(4) {
  animation-delay: 0.064s;
}
.nav-active > .navigation-content > a:nth-child(5), .nav-active > .navigation-content > hr:nth-child(5) {
  animation-delay: 0.08s;
}
.nav-active > .navigation-content > a:nth-child(6), .nav-active > .navigation-content > hr:nth-child(6) {
  animation-delay: 0.096s;
}
.nav-active > .navigation-content > a:nth-child(7), .nav-active > .navigation-content > hr:nth-child(7) {
  animation-delay: 0.112s;
}
.nav-active > .navigation-content > a:nth-child(8), .nav-active > .navigation-content > hr:nth-child(8) {
  animation-delay: 0.128s;
}
.nav-active > .navigation-content > a:nth-child(9), .nav-active > .navigation-content > hr:nth-child(9) {
  animation-delay: 0.144s;
}
.nav-active > .navigation-content > a:nth-child(10), .nav-active > .navigation-content > hr:nth-child(10) {
  animation-delay: 0.16s;
}

@keyframes NavOpenLinks {
  0% {
    opacity: 0;
    transform: translate(0px, -20px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}