.body-wrapper > .content > .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background-color: #fff;*/
  padding-left: 16px;
  padding-right: 16px;
}

.body-wrapper > .content > .header > .actions {

}

.body-wrapper > .content > .header > .actions > .action {
  width: 28px;
  height: 28px;
  background-color: rgba(0,0,0,0.05);
  border-radius: 8px;
  outline: none;
  border: none;
  font-size: 12px;
  margin-right: 4px;
  cursor: pointer;
}

.body-wrapper > .content > .header > .actions > .action.far {
}

.body-wrapper > .content > .header > .actions > .action:hover {
  background-color: #f4f8f9;
}

.body-wrapper > .content > .header > .title {
  flex: 1;
  margin: 0 24px;
  font-size: 16px;
  font-weight: 500;
}

.body-wrapper > .content > .header > .account {
  display: flex;
  align-items: center;
  align-self: normal;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}

.body-wrapper > .content > .header > .account:hover {
  background-color: #edeeef;
}

.body-wrapper > .content > .header > .account > .avatar {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border: 2px solid #2a333a;
  border-radius: 50%;
  background-image: url(/jumboo/cdn/images/icons/145867.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.body-wrapper > .content > .header > .account > .detail {
  margin: 0 8px;
  text-align: left;
}

.body-wrapper > .content > .header > .account > .detail > .name {
  font-size: 14px;
  font-weight: 700;
}

.body-wrapper > .content > .header > .account > .detail > .username {
  font-size: 12px;
  font-weight: 500;
  margin-top: -2px;
}

#account-menu {
  display: none;
  list-style: none;
  width: 220px;
  padding: 0 0 12px 0;
  background-color: #fff;
  position: fixed;
  right: 0;
  top: 52px;
  /* bottom: 0; */
  z-index: 1003;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: -10px 0px 12px 0 rgba(0, 0, 0, 0.1);
}

#chat_messages > button[data-action="collapsable-close"],
#account-menu > button[data-action="collapsable-close"]
{
  background-color: #f85557;
  position: absolute;
  z-index: 2;
  /* float: right; */
  /* margin: 8px; */
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  outline: none;
  border: none;
  border-bottom-left-radius: 20px;
  /* border-top-right-radius: 10px; */
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

#account-menu > li.title
{
  font-weight: 500;
  font-size: 13px;
  word-break: break-word;
  margin: 18px 24px;
}

#account-menu > li.item > .content
{
  display: flex;
  align-items: center;
  padding: 8px 24px;
  font-size: 13px;
  color: inherit;
}

#account-menu > li.item > a.content
{
  text-decoration: none;
}

#account-menu > li.item > .content:hover
{
  background-color: #edeeef;
}

#account-menu > li.item > .content > .icon
{
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  margin-right: 12px;
}

#account-menu > li.item > .content > .icon.material-icons
{
  font-size: 16px;
  font-weight: 600;
}

#account-menu > li.item > .content > .text
{
  flex: 1;
  font-weight: 500;
}
