header {
  height: 3.5rem;
  background-color: #8CC6FF;
  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: 6.5rem;
  }
}
header nav {
  height: 3.5rem;
  margin: 0;
  padding: 0;
}

.buttons_row {
  height: 3.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo {
  cursor: pointer;
  height: 2.5rem;
  width: 3.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../images/wheat_1.png);
}

#openCalculator_button {
  height: 40px;
  width: 40px;
  background-size: 70%;
  background-repeat: no-repeat;
  background-image: url(../../images/calculator_icon.png);
  background-color: rgba(0, 0, 0, 0);
  border: none;
  background-position: center;
}
#openCalculator_button:hover {
  background-color: rgba(0, 0, 0, 0.3843137255);
}

#menu_button #openMenu_button {
  height: 40px;
  width: 40px;
  margin: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../images/menu_icon.png);
  background-color: rgba(0, 0, 0, 0);
  border: none;
}

#navbarSupportedContent {
  display: none;
  position: absolute;
  right: 60px;
  top: 13px;
}

.logout_button a {
  margin: auto 10px;
  background-color: rgba(0, 81, 255, 0.5411764706);
  color: #ffffff;
  height: 40px;
  display: block;
  padding: 5px;
  line-height: 30px;
  /*border: solid 1px #000;*/
  border-radius: 7px;
  text-decoration-line: none;
  min-width: 70px;
  text-align: center;
  font-weight: 100;
  transition-property: background-color;
  transition-duration: 200ms !important;
}

.logout_button a:hover {
  background-color: rgba(119, 0, 255, 0.5019607843);
}/*# sourceMappingURL=header.css.map */