html, body, #app {
  background-color: transparent;
}

.app-container {
  width: 500px;
  max-width: 500px;
  margin: 2rem auto;
}

.chat-container {
  height: 380px;
  overflow: auto;
  margin-bottom: 3px;
  border: 1px solid #ddd;
}
.chat-container .status {
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
  color: #888888;
  font-size: 10px;
  text-align: right;
  padding: 0 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.chat-container .status.disconnected {
  background-color: black;
}
.chat-container .status .heartbeat {
  color: #eeeeee;
}
.chat-container .status .heartbeat.ping {
  color: red;
}
.chat-container .chat {
  display: flex;
  border-bottom: 1px solid #dddddd;
  font-size: 13px;
  padding-right: 3px;
  background-color: white;
  /* padding: 0 3px; */
  flex-direction: row;
  flex-wrap: wrap;
}
.chat-container .chat .chat-name {
  color: #444;
  display: inline;
  padding: 0 0.25rem;
  background-color: #eeeeee;
  min-width: 5rem;
}
.chat-container .chat .chat-text {
  display: inline;
  color: #444444;
  margin-left: 3px;
  margin-right: 3px;
}
.chat-container .new-chat .chat {
  border-color: #666666;
  background-color: lightblue;
}
.smiley-hint-list {
  overflow: auto;
  white-space: nowrap;
}
.smiley-hint-list .smiley-hint {
  display: inline-block;
  height: 2.5rem;
  cursor: pointer;
}
.smiley-hint-list .smiley-hint img {
  max-height: 100%;
}

body.metal .chat-container {
  padding-top: calc(1rem - 1px);
}
body.metal .chat-container .status {
  position: fixed;
  top: 0;
  left: 0;
  width: 95vw;
  height: 1rem;
  border-bottom-width: 0;
}
body.metal .chat-container .chat {
  border-top: 1px solid #416371;
  background-color: transparent;
  margin-bottom: 0.5rem;
  border-bottom: none;
}
body.metal .chat-container .chat .chat-name {
  color: #FF9621;
  background: linear-gradient(to bottom, #7f487d, #2d3c57);
  margin-left: -3px;
  border: 1px solid #416371;
  border-top-width: 0;
  border-left-width: 0;
  cursor: pointer;
}
body.metal .chat-container .chat .chat-name:hover {
  background: linear-gradient(to bottom, #2d3c57, #7f487d);
}
body.metal .chat-container .chat .chat-name a {
  color: #66b0ff;
}
body.metal .chat-container .chat .chat-text {
  color: #CCCCCC;
}
body.metal .form-control {
  background-color: transparent;
  color: #CCCCCC;
}
body.metal .input-group-text {
  background-color: rgba(255, 255, 255, 0.15);
  color: #CCCCCC;
}

/*# sourceMappingURL=gt6.css.map */
