body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height-topbar);
  z-index: 9999;
  background: var(--w);
  border: 1px solid var(--border-color);
  border-bottom: 1px solid rgba(27, 31, 35, 0.15);
  background: var(--w) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: none !important;
}
body header .main {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 1em;
  margin-top: auto;
  height: 10vh;
}
body header .tabs_header {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  height: 6vh;
  background: var(--topbar);
}
body header .tabs_header a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 0.5em;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  color: var(--b);
}
body header .tabs_header a:hover {
  color: var(--active-color);
}
@media screen and (min-width: 1800px) {
  body header .tabs_header a:first-child {
    padding-left: 0;
  }
}
body header .tabs_header label {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 0.5em;
  width: fit-content;
  padding: 0 0.5em;
  margin: auto 1em auto auto;
  border-radius: 5px;
  height: 70%;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  color: var(--b);
  cursor: pointer;
}
body header .tabs_header label input {
  display: none;
}
body header .tabs_header label i {
  transition: 0.5s;
}
body header #website-title {
  text-decoration: none;
  font-size: 1.8em;
  color: var(--b);
}
body header #server-logo {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 2px;
}
body header .logo-server {
  margin-left: auto;
}
body header .hamburger-menu {
  display: none;
  width: fit-content;
  border-color: var(--border-color) !important;
}
body header .hamburger-menu .icon {
  position: absolute;
  top: -0.8em;
  right: -1em;
  background: var(--active-color);
  border-radius: 1000px;
  width: 2em;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
body header .hamburger-menu .icon i {
  color: var(--w);
}
body header .loading-bar {
  height: 5px;
  width: 100vw;
  background: var(--topbar);
  position: absolute;
  bottom: -1px;
  left: -1px;
  overflow: hidden;
}
body header .loading-bar .container {
  width: 100%;
  height: 100%;
  position: relative;
}
body header .loading-bar .container .loader {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 100%;
  border-radius: 100px;
  background: var(--active-color);
  animation: 3s loading infinite ease-in;
}
body header .loading-bar .container .loader:nth-child(1) {
  animation-delay: 1s;
}
@keyframes loading {
  0% {
    width: 0;
    margin-left: -100%;
  }
  100% {
    width: 100%;
    margin-left: 100%;
  }
}
@media screen and (max-width: 1300px) {
  body header *:not(.pages) #website-title,
body header *:not(.pages) .right-align {
    display: none;
  }
  body header *:not(.pages) .hamburger-menu {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  body header {
    --height-topbar: 20vh!important;
  }
  body header .tabs_header span[class^=tabs] {
    display: none;
  }
}

/*# sourceMappingURL=header.css.map */
