#head_menu {
  font-size: 12px;
  font-family: 'Open Sans';
  color: #F5EEDC;
  background: #2B2C36;
  height: 50px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  box-sizing: border-box;
  z-index: 9998;

  display: flex;
  flex-direction: row;

  border-bottom: 1px solid #4A4C5D;
}

.menu_avatar {
  width: 100px;
  height: 200px;
  background: #353747;
  margin-left: 50px;
  margin-top: 5px;
  border: 10px solid #4A4C5D;
  z-index: 9999;
}

.menu_buttons {
  margin-left: 20px;
  margin-top: 5px;
  display: flex;  
}

.menu_button {
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: #F5EEDC;
}

.menu_button:hover {
  color: #F5EEDC;
}

.menu_icon {
  color: #B8A7D9;
}

#head_menu #accountswitcher_header {
  position: relative;
  float: none;
  display: inline-block;
  cursor: pointer;
  z-index: 99999;
}

#head_menu #accountswitcher_header_popup {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 0;
  z-index: 99999;
}

#head_menu #accountswitcher_header_popup ul {
  position: static;
  margin: 8px 0 0 0;
  padding: 10px;

  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px 12px;

  min-width: 120px;

  background: #353747;
  border: 1px solid #4A4C5D;
  border-radius: 8px;

  list-style: none;
  white-space: nowrap;
}

#head_menu .as_head_drop,
#head_menu .as_head_userbit {
  list-style: none;
  margin: 0;
  padding: 0;
}

#head_menu .as_head_drop img,
#head_menu .as_head_userbit img {
  height: 22px;
  width: auto;
}

.menu_button,
.menu_button a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #F5EEDC;
  text-decoration: none;
}

.menu_buttons {
  margin-left: 20px;
  margin-top: 5px;
  display: flex;
  align-items: center;
}