.chat .header {
  display: block;
}

.chat .header > div {
  display: flex;
}

.chat .header .logo {
  position: relative;
}

.chat .header .logo img {
  height: 1.5rem;
  margin-top: 0.75rem;
  margin-left: 1rem;
}

@media only screen and (max-width: 750px) {
  .chat .header .logo.desktop-only {
    display: none;
  }
}

@media only screen and (min-width: 751px) {
  .chat .header .logo.mobile-only {
    display: none;
  }
}

.chat .header .logo .unread {
  position: absolute;
  background: #FF8CAE;
  border-radius: 1em;
  margin-top: 0.65rem;
  height: 1em;
  width: 1em;
  margin-left: 0.75rem;
}

.chat .header .title {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 3rem;
  font-family: LucidaGrande, sans-serif;
  margin-left: 1rem;
}

.chat .header .title.primary {
  flex-grow: 1;
  flex: 0 0 1;
}

@media only screen and (max-width: 750px) {
  .chat .header .title {
    text-align: center;
    margin-left: 0;
    flex-grow: 1;
    flex: 0 0 1;
  }
}

.chat .header .description {
  flex-grow: 1;
  flex: 0 0 1;
  color: #ffffff;
  line-height: 3rem;
  max-height: 3rem;
  margin-left: 2rem;
  font-size: 0.9rem;
  overflow: hidden;
  font-family: "Muli", sans-serif;
  font-weight: 200;
}

@media only screen and (max-width: 750px) {
  .chat .header .description {
    display: none;
  }
}

.chat .header .description a {
  color: #fff;
  text-decoration: underline;
}

.chat .header .description a:hover {
  color: #fff;
}

.chat .header .close {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.5rem;
  margin-right: 1rem;
  margin-top: 1rem;
  font-family: LucidaGrande, sans-serif;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chat .header .menu-mobile {
  margin-right: 1rem;
  margin-top: 1rem;
}

.chat .header .menu-mobile img {
  height: 1.5rem;
  fill: #ffffff;
}

@media only screen and (min-width: 751px) {
  .chat .header .menu-mobile img {
    display: none;
  }
}

.chat .header .icon {
  cursor: pointer;
  margin-right: 1rem;
  margin-top: 1rem;
  position: relative;
}

.chat .header .icon img {
  height: 1.5rem;
  width: 1.5rem;
  fill: #ffffff;
}

@media only screen and (max-width: 750px) {
  .chat .header .menu-desktop.icon {
    margin-top: 0.75rem;
  }
}

.chat .header .menu-desktop .menu {
  position: absolute;
  top: 1.5rem;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 1rem 2rem;
  z-index: 10001;
  width: max-content;
}

.chat .header .menu-desktop .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.chat .header .menu-desktop .menu ul li {
  cursor: pointer;
  font-family: "Muli", sans-serif;
  font-weight: 200;
  padding: 1rem 0;
}
