html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

/* --------------------------------------------------------------------- */

.left-card {
  margin-bottom: 18px;
}

/* --------------------------------------------------------------------- */

.chip {
  display: inline-flex;
  flex-direction: row;
  background-color: #e5e5e5;
  border: none;
  cursor: default;
  height: 36px;
  outline: none;
  padding: 0;
  font-size: 14px;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
  align-items: center;
  border-radius: 16px;
  vertical-align: middle;
  text-decoration: none;
  justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
}

.chip-content {
  cursor: inherit;
  display: flex;
  align-items: center;
  user-select: none;
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}

/* --------------------------------------------------------------------- */

.button {
  display: inline-block;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  padding: 5px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button:hover {
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.24),
    0 10px 20px 0 rgba(0, 0, 0, 0.19);
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/* --------------------------------------------------------------------- */

.chat-title {
  margin-bottom: 10px;
}

.chat-header {
  height: 300px;
}
#chat-list {
  overflow: auto;
  width: 100%;
  height: 325px;
}

.chat-join {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #009688;
  font-size: 13px;
  font-weight: bold;
}
.chat-leave {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c93609;
  font-size: 13px;
  font-weight: bold;
}

.chat {
  padding: 10px 15px 10px 15px;
  border: 2px solid cadetblue;
  border-radius: 0px 10px 10px 10px;
  margin: 5px;
}
.chat-ip {
  color: #009688;
  font-size: 10px;
}
.chat-me {
  border-radius: 10px 0px 10px 10px;
  text-align: right;
  background-color: lightblue;
  color: black;
}

.chat-input {
  /* border-radius: 5px; */
  margin-top: 30px;
}

.chat-auto-scroll {
  margin-left: 8px;
  margin-top: 10px;
  margin-bottom: 5px;
}

#chat-button {
  background-color: #009688;
}

/* --------------------------------------------------------------------- */
