@charset "UTF-8";
@font-face {
  font-family: "awesome-solid";
  src: url("/fonts/awesome-solid.ttf");
}
header {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  height: 72px;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  align-items: center;
  transition: background-color 0.6s ease 0s;
  will-change: background-color;
}
header.opaque {
  background-color: #000;
}

@media (min-width: 0) {
  header#h-normal {
    display: none;
  }
}
@media (min-width: 1000px) {
  header#h-normal {
    display: flex;
  }
}
header#h-normal #hn-logo {
  height: 100%;
  width: 250px;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 0 15px;
}
header#h-normal #hn-top {
  height: 100%;
  width: calc(100% - 250px);
  display: flex;
}
header#h-normal #hn-top #hn-top-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
header#h-normal #hn-top #hn-top-left #hn-monitor-wrap {
  width: 100%;
  overflow: hidden;
  height: 40px;
}
header#h-normal #hn-top #hn-top-left #hn-monitor-wrap #hn-monitor {
  height: 100%;
  width: calc(100% + 20px);
  padding: 0 20px 0 5px;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
}
header#h-normal #hn-top #hn-top-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
}
header#h-normal #hn-top #hn-top-right #hn-time {
  background-color: rgba(255, 255, 255, 0.1);
  height: 40px;
  padding: 0 15px;
  font-size: 20px;
  line-height: 40px;
  margin-left: 5px;
}
header#h-normal #hn-top #hn-top-right #hn-btns {
  display: flex;
  height: 100%;
  align-items: center;
}
header#h-normal #hn-top #hn-top-right #hn-btns a {
  text-decoration: none;
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn {
  height: 40px;
  width: 40px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-align: center;
  line-height: 40px;
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn span {
  font-size: 24px;
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn span::before {
  font-family: "awesome-solid";
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn span#logout::before {
  content: "";
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn span#options::before {
  content: "";
}
header#h-normal #hn-top #hn-top-right #hn-btns .hn-btn span#leave::before {
  content: "";
}

header#h-mobile {
  padding: 0 15px;
  justify-content: space-between;
}
@media (min-width: 0) {
  header#h-mobile {
    display: flex;
  }
}
@media (min-width: 1000px) {
  header#h-mobile {
    display: none;
  }
}
header#h-mobile #hm-left, header#h-mobile #hm-right {
  display: flex;
  align-items: center;
  height: 100%;
}
header#h-mobile #hm-left .hm-btns .hm-btn {
  margin-right: 5px;
}
header#h-mobile #hm-right .hm-btns .hm-btn {
  margin-left: 5px;
}
header#h-mobile .hm-btns {
  display: flex;
  height: 100%;
  align-items: center;
}
header#h-mobile .hm-btns a {
  text-decoration: none;
}
header#h-mobile .hm-btns .hm-btn {
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-align: center;
  line-height: 40px;
}
header#h-mobile .hm-btns .hm-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header#h-mobile .hm-btns .hm-btn span {
  font-size: 24px;
}
header#h-mobile .hm-btns .hm-btn span::before {
  font-family: "awesome-solid";
}
header#h-mobile .hm-btns .hm-btn span#logout::before {
  content: "";
}
header#h-mobile .hm-btns .hm-btn span#menu::before {
  content: "";
}
header#h-mobile .hm-btns .hm-btn span#options::before {
  content: "";
}
header#h-mobile .hm-btns .hm-btn span#leave::before {
  content: "";
}
