body {
  background-color: #ffffff;
}

header {
  height: 11vw;
  background-color: #5b86a3;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1607843137);
  position: sticky;
  right: 0;
  top: 0;
  left: 0;
  z-index: 99;
}
@media screen and (orientation: portrait) {
  header {
    height: 11vh;
  }
}
header nav {
  height: 6vh;
  margin: 0;
  padding: 0;
}

.buttons_row {
  height: 7vh;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.buttons_row .search_row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.buttons_row .search_row input {
  height: 7vw;
  font-size: 4vw;
  vertical-align: middle;
  width: 70%;
}
.buttons_row .search_row button {
  border: none;
  background-color: rgba(212, 241, 247, 0.2705882353);
  height: 7vw;
  width: 10vw;
  font-size: 3vw;
}

.logo {
  cursor: pointer;
  height: 11vw;
  width: 11vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../images/logo.png);
}

#menu_button #openMenu_button {
  height: 7vw;
  width: 7vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../images/menu_icon.png);
  background-color: rgba(0, 0, 0, 0);
  border: none;
  vertical-align: middle;
}

#navbarSupportedContent {
  display: none;
  position: absolute;
  right: 11vw;
  top: 8vw;
}

.logout_button a,
.qr-code {
  margin: auto 10px;
  background-color: rgba(0, 0, 0, 0.9058823529);
  color: #ffffff;
  height: 10vw;
  display: block;
  padding: 0px;
  line-height: 10vw;
  /* border: solid 1px #000; */
  border-radius: 7px;
  text-decoration-line: none;
  min-width: 100px;
  text-align: center;
  font-weight: bold;
  transition-property: background-color;
  transition-duration: 200ms !important;
  font-size: 2.3vw;
  margin-bottom: 10px;
}

.logout_button a:hover {
  background-color: rgba(119, 0, 255, 0.5019607843);
}

#qrcode {
  position: fixed;
  background-color: #000000;
  width: 0;
  background-image: url(../../images/qr-code.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 11%;
  left: 10%;
  right: 10%;
  height: 36%;
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity;
}/*# sourceMappingURL=header.css.map */