HTML,
BODY
{
  overflow-y: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#container
{
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#video
{
  flex-grow: 1;
  height: 100%;
  margin: 0;
  padding: 0;
}

#chat
{
  flex: 0 0 350px;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#chat #log
{
  flex-grow: 1;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}

#chat .message
{
  margin: 5px;
  padding: 5px 10px 10px 10px;
  background: linear-gradient(rgba(0,0,0,0.0) 95%, rgba(0,0,0,0.5) 100%);
  border: 1px solid rgba(0,0,0,0.25);
}

#chat #message-template
{
  display: none;
}

#chat .message .name
{
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: bolder;
  font-size: 12pt;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0,0,0,0.75);
}

#chat .message .title
{
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 10pt;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0,0,0,0.75);
}

#chat .message .org
{
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 10pt;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0,0,0,0.75);
}

#chat .message .text
{
  display: block;
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 12pt;
  margin-top: 5px;
}

#chat #speak
{
  flex: 0 0 60px;
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
}

#chat #speak #say-what
{
  text-align: center;
  font-family: Lato, sans-serif;
  font-weight: bold;
  font-size: 10pt;
  background-color: black;
  color: white;
}

#chat #speak #say
{
  width: 350px;
  height: 60px;
  vertical-align: top;
  word-wrap: break-word;
  qqword-break: break-all;
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 12pt;
  margin: 0;
  padding: 10px;
}
