/** {
  outline: none;
}

button, .msg-toast, label {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#join {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  z-index: 2;
}
#join #join-form {
  position: relative;
  width: 20%;
  left: 40%;
  height: 50%;
  top: 25%;
}
@media screen and (max-width: 992px) {
  #join #join-form {
    width: 95%;
    left: 2.5%;
  }
}
#join #join-form .user-icon {
  font-size: 200%;
  margin-right: 5px;
}

#chat {
    background-color: red;
  top: 0;
  left: 0;
  position: fixed;
  width: 30%;
  height: 30%;
  z-index: 1;
}
#messages {
  top: 0;
  height: calc(30% - 60px);
  60px = message-form size
  width: calc(30% + 17px);
  overflow-y: scroll;
  position: fixed;
  background-color: #fafafa;
}
#chat #messages strong.msg {
  font-size: 16px;
}
#chat #messages span.msg {
  font-size: 16px;
  display: block;
  word-wrap: break-word;
}
#chat #messages .notification-alert {
  color: #f44336;
  background-color: #ffcdd2;
}
#chat #messages .notification-succes {
  color: #388e3c;
  background-color: #c8e6c9;
}
#chat #message-form {
  bottom: 10px;
  height: 50px;
  width: 30%;
  position: fixed;
}
#chat #message-form input {
  position: fixed;
  width: 87.5%;
  left: 2.5%;
}
@media screen and (max-width: 768px) {
  #chat #message-form input {
    width: 85%;
  }
}
#chat #message-form button {
  position: fixed;
  width: 7%;
  right: 1.5% !important;
  padding: 0 0;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  #chat #message-form input {
  position: fixed;
  width: 68.5%;
  left: 2.5%;
}

  #chat #message-form button {
    width: 26%;
    right: 2%;
    font-size: 11px;
  }
}*/