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:hover,
#lobbyChat > .header a:hover {
  background: rgba(255, 255, 255, 0.1);
}
#lobbyChat > .header > .whos_online {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#lobbyChat > .header > .whos_online > span > #showhide_members {
  font-size: 16px;
}
#lobbyChat > .header > .members {
  display: none;
  height: 20em;
  overflow: auto;
}
html.chat_open #lobbyChat > .header button .fa-window-maximize {
  display: none;
}
html.chat_open #lobbyChat > .header button .fa-window-minimize {
  display: block;
}
html.chat_open #lobbyChat > .chat {
  display: block;
}
@media screen and (max-width: 30em) {
  html.chat_open {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
  }
  html.chat_open body {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
  }
  html.chat_open #lobbyChat {
    position: absolute;
    z-index: 260;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 230;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  html.chat_open #lobbyChat .chat {
    height: calc(100% - 2.5em);
  }
  html.chat_open #lobbyChat .chat .top {
    height: calc(100% - 4em);
  }
  html.chat_open #lobbyChat .chat .top .members {
    height: 100%;
  }
  html.chat_open #lobbyChat .chat .top .messages {
    height: 100%;
  }
  html.chat_open #lobbyChat .chat .bottom {
    height: 4em;
  }
}
.chat > .top > .messages {
  box-sizing: border-box;
  padding: 0.5em;
  padding-bottom: 0;
  height: 60em;
  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;
}
.chat > .top > .messages > div .from {
  font-size: 12px;
  font-weight: 700;
  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;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.chat > .bottom > form > .message {
  width: 100%;
  border-radius: 24px;
  padding: 10px;
}
@media screen and (max-width: 30em) {
  .chat .messages > div .from {
    display: block;
  }
  .chat .messages > div .time {
    white-space: nowrap;
  }
  .chat .messages > div .message {
    margin-bottom: 0.5em;
    display: block;
  }
}
/*# sourceMappingURL=z_chat.module.css.map */