header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 7vh;
  background-color: black;
  color: white;
  z-index: 2;
  padding-bottom: 5px;
}

header.top {
  position: relative;
}

sticky-header {
  display: block;
  position: sticky;
  transition: top 1s;
  top: 0;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 7vh;
  background-color: black;
  color: white;
  z-index: 2;
  padding-bottom: 5px;
}
sticky-header #header-open {
  position: absolute;
  left: 49%;
  bottom: -20px;
  width: 2%;
  height: 20px;
  min-width: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  outline: none;
  border-radius: 0 0 5px 5px;
  color: white;
}

sticky-header.open {
  top: 0;
  transition: top 1s;
}/*# sourceMappingURL=header.css.map */