body.cordova #lobbyChat {
  display: none;
}
#lobbyChat {
  font-size: 0.8em;
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  margin-bottom: 1em;
  color: white;
}
#lobbyChat > .header {
  width: 100%;
  text-align: left;
  background: var(--header-bg-color);
  color: #fff;
  line-height: 2.5em;
  box-sizing: border-box;
  cursor: pointer;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border-color);
}
#lobbyChat > .header > .title_text {
  font-weight: 700;
  font-size: 40px;
}
#lobbyChat > .header button,
#lobbyChat > .header a {
  outline: none;
  float: right;
  display: block;
  height: 2.5em;
  box-sizing: border-box;
  width: 2.5em;
  border: none;
  color: white;
  background: transparent;
  font-size: 1em;
  text-align: center;
  margin-left: 0.5em;
}
#lobbyChat > .header button .fa-window-minimize,
#lobbyChat > .header a .fa-window-minimize {
  display: none;
}
#lobbyChat > .header button .fa-window-maximize,
#lobbyChat > .header a .fa-window-maximize {
  display: none;
}
#lobbyChat > .header button > .fa-external-link-alt,
#lobbyChat > .header a > .fa-external-link-alt {
  color: var(--inactive-tab-color);
}
#lobbyChat > .header button > .fa-external-link-alt:hover,
#lobbyChat > .header a > .fa-external-link-alt:hover {
  color: var(--variable-collection-NFC-red-500);
}
#lobbyChat > .header > .whos_online {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  margin-left: -7px;
}
#lobbyChat > .header > .whos_online > span:nth-child(1) {
  background-image: url("/frontend/img/redesign/icons/green_whos_online.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 33px;
  width: 33px;
}
#lobbyChat > .header > .whos_online > span > #showhide_members {
  font-size: 16px;
}
#lobbyChat > .header > .members {
  display: none;
  height: 20em;
  overflow: auto;
}
.chat > .top > .messages {
  padding: 0.5em;
  padding-bottom: 0;
  height: 55em;
  margin-bottom: 0.25em;
  overflow: auto;
}
.chat > .top > .messages > div {
  margin-bottom: 0.5em;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}
.chat > .top > .messages > div > span {
  white-space: nowrap;
  flex: 0 0 auto;
}
.chat > .top > .messages > div > span.admin {
  background-image: url("/frontend/img/redesign/icons/admin_crown.svg");
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 19px;
}
.chat > .top > .messages > div .from {
  font-size: 12px;
  font-weight: 700;
  min-width: fit-content;
  flex: 2;
}
.chat > .top > .messages > div .time {
  text-transform: uppercase;
  text-align: right;
  font-weight: 400;
  color: var(--variable-collection-NFC-grey-500);
  font-size: 10px;
  flex: 1;
}
.chat > .top > .messages > div .time:before {
  content: "(";
}
.chat > .top > .messages > div .time:after {
  content: "): ";
}
.chat > .top > .messages > div > .message {
  flex-basis: 100%;
  font-weight: 400;
  color: #ffffff;
  font-size: 10px;
  padding: 1em 0;
  white-space: wrap;
}
.chat > .top > .members {
  width: 15em;
  float: right;
  box-sizing: border-box;
  padding: 0.3em;
  height: 15em;
  overflow-y: auto;
}
.chat > .top > .members > .header {
  font-style: italic;
  color: var(--italic-color);
}
.chat > .bottom {
  border-top: 1px solid var(--border-color);
}
.chat > .bottom > form {
  clear: both;
  display: flex;
  padding: 0.5em;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.chat > .bottom > form > .message {
  width: 100%;
  border-radius: 24px;
  padding: 10px;
}
#lobbyChat > .chat {
  display: flex;
  flex-direction: column-reverse;
}
#lobbyChat > .chat > .bottom {
  border-top: none;
  border-bottom: 1px solid var(--border-color);
}
#lobbyChat > .chat > .bottom > form {
  padding: 1em;
  flex-direction: row;
}
#lobbyChat > .chat > .bottom > form > .message {
  width: auto;
  flex: 1;
}
/*# sourceMappingURL=./z_chat.module.css.map */