.topbar
{
  background-color: black;
  color: white;
  display: flex;
  height: 35px;
  align-items: center;
  vertical-align: middle;
  width: 100%;
}

.topbar  a {
  color: white;
  vertical-align: middle;
}

.topsections {
  flex: 8;
  vertical-align: middle;
  padding-left: 10px;
}

.topsections a {
  width: 30px;
  padding-right: 20px;
}

.langselector {
  flex:1;
  cursor: pointer;
  vertical-align: middle;
  align-self: center;
}

#languagelist {
  display:none;
  z-index: 10;
  position: absolute;
  background-color: black;
  color: white;
  width:fit-content
  /* top: 20px;
  left: 800px; */
}

.signonbutton {
  flex: 1;
  
  vertical-align: middle;
  align-content: flex-end;
  justify-content: flex-end;
} 

.mobileheader {
  display : none;
}

.mobiletop {
  display:flex;
  flex-direction: row;
}

.burgermenu {
  flex: 2;
  align-self: center;
  align-items: center;
}

.burgermenu img {
  height:40px;
  width:auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  
}

.mobilelogo {
  flex: 8;
}

.mobilelogo img {
  height: 50px;
  width: auto;
  display: block;
  margin-left: 0;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.mobilelogin {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.mobilelogin #loginbutton {
  height:50px;
  background: red;
  width: 80%;
  height: 60%;
  line-height: 20px;
  display:block;
  text-align:center;
  margin-top: auto;
  margin-bottom: auto;
  
}

/* Responsive Elements */
@media only screen and (max-width: 768px) {
  header {
    height: 52px;
  }
  div.webheader {
    display: none;
  }
  div.mobileheader {
    display: block;
  }
}

@media only screen and (min-width: 769px) {
  div.webheader {
    display: block;
  }
  div.mobileheader {
    display: none;
  }  
}