@import url("https://use.fontawesome.com/releases/v5.6.3/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000&display=swap");

.color-0 {
  color: rgb(255, 255, 255);
}

.color-1 {
  color: rgb(255, 68, 68);
  display: none;
}

.color-2 {
  color: rgb(0, 136, 204);
  color: rgb(255, 68, 68);
  display: none;
}

.color-3 {
  color: rgb(255, 187, 51);
}

.color-4 {
  color: rgb(255, 187, 51);
}

.color-5 {
  color: rgb(51, 181, 229);
}

.color-6 {
  color: rgb(170, 102, 204);
}

.color-8 {
  color: rgb(0, 190, 204);
}

.color-9 {
  color: rgb(0, 190, 204);
}

.no-grow {
  flex-grow: 0;
}

em {
  font-style: normal;
}

#app {
  font-family: Nunito, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: rgb(255, 255, 255);
  background-color: transparent;
}

.chat-window {
  position: absolute;
  left: 15px;
  background: linear-gradient(to right, rgba(37, 37, 37, 0), rgb(238, 255, 0));
  top: 1vh;
  animation-duration: 2s;
}

.pointed {
  width: 7px;
  height: 7px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
}

.chat-messages {
  max-height: 100%;
  font-size: 12px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
}

.prefix {
  font-size: 1.8vh;
  position: absolute;
  margin-top: 0.8%;
  margin-left: 1.5%;
  left: 0.208%;
}

.chat-input {
  font-size: 0.9rem;
  position: absolute;
  top: 27vh;
  left: 15px;
  width: 28vw;
  box-sizing: border-box;
}

.input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

textarea {
  font-family: Nunito, sans-serif;
  font-size: 15px;
  border: none;
  display: block;
  border-left: 3px solid #960000;
  box-sizing: border-box;
  padding: 0.6vw 0.6vw 0.6vw 2.5vw;
  color: rgb(204, 204, 204);
  width: 100%;
  border-radius: 5px;
  font-weight: 400;
  min-height: 3.8vh;
  max-height: 3.8vh;
  background-color: #24242452;
  overflow: hidden;
  animation: 400ms ease 0s 1 normal forwards running InitChatInputPart;
  text-overflow: ellipsis;
  resize: none;
  outline: none !important;
}

textarea::placeholder {
  color: rgb(204, 204, 204);
}

.logo {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
}

@keyframes InitChatInputPart {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes slidein {
  0% {
    margin-left: 10%;
    width: 30%;
  }

  100% {
    margin-left: 0%;
    width: 10%;
  }
}

textarea:focus,
input:focus {
  outline: none;
}

.msg {
  margin-bottom: 5px;
}

.suggestions {
  list-style-type: none;
  padding: 5px 5px 5px 15px;
  font-size: 0.9rem;
  box-sizing: border-box;
  background-color: #24242452;
  width: 100%;
  animation: 400ms ease 0s 1 normal forwards running InitChatInputPart;
  border-radius: 3px;
}

.help {
  margin-top: -10px;
  color: rgb(231, 231, 231);
}

.disabled {
  margin-top: -10px;
  color: rgb(231, 231, 231);
}

.suggestion {
  margin-bottom: 5px;
  color: rgb(231, 231, 231);
}

.chat-message {
  display: inline-block !important;
  padding: 0.65vw;
  margin: 0.1vw;
  border-radius: 5px;
  background-color: rgba(47, 114, 181, 0.9);
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  word-break: break-word;
}

.restart {
  padding: 0.65vw;
  margin: 0.1vw;
  border-radius: 5px;
  background-color: rgb(172, 30, 30);
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  word-break: break-word;
  display: inline-block !important;
}

.chat-message-body {}

.chat-message.advert {
  background-color: rgba(47, 92, 115, 0.8);
}

.warning {
  background-color: rgba(255, 136, 0, 0.8);
}

.normal {
  background-color: rgba(47, 114, 181, 0.9);
}

.error {
  background-color: rgba(191, 36, 36, 0.9);
}

.me {
  background-color: rgba(0, 0, 0, 0.75);
  font-weight: bold;
}

.do {
  background-color: #ffdad9a9;
  color: #111;
  font-weight: bold;
}

.chat-message.system {
  background-color: rgb(67, 57, 111);
}

.chat-message.emergency {
  background-color: rgba(224, 50, 50, 0.8);
}

.chat-message.nonemergency {
  background-color: rgba(112, 25, 25, 0.8);
}

.chat-message.report {
  background-color: rgba(86, 173, 10, 0.8);
}

.buttons button {
  margin-top: 10px;
  background-color: #242424ce;
  padding: 0.5vh 1.5vh;
  border-radius: 3px;
  font-size: 1.2vh;
  margin-left: 0.4vw;
  outline: none;
  animation: 400ms ease 0s 1 normal forwards running InitChatInputPart;
  text-decoration: none;
  border: none;
  font-weight: 400;
  color: #cccccc;
}
