#communications.on {
  box-shadow: 0px 0px 15px 5px #007bff;
}
#communications-screen {
  background: #000;
}
.header-comm {
  padding: 10px 15px;
  position: relative;
  height: 44px;
}
.header-comm span {
  display: none;
  transition: all 0.5s ease-in-out;
}
.header-comm span.on {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}
.text-red {
    color: #dc3545;
}
.text-red.on {
  text-shadow: 0 0 0.5em #dc3545, 0 0 0.5em #dc3545, 0 0 0.5em #dc3545;
}
.text-green {
    color: #00bb00;
}
.text-green.on {
  text-shadow: 0 0 0.5em #00bb00, 0 0 0.5em #00bb00, 0 0 0.5em #00bb00;
}
.body-comm {
  height: 150px;
  padding: 10px 15px;
  border-bottom: 1px solid white;
}
#registering {
  visibility: hidden;
  color: #00bb00;
}
#registering.on {
  visibility: visible;
}
.footer-comm {
  padding: 10px 15px;
}
.footer-comm button {
  height: 30px;
}
#send-message.on {
  box-shadow: 0px 0px 15px 5px #dc3545;
}
#onoff {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}
#onoff.on {
  box-shadow: 0px 0px 15px 5px #dc3545;
  transition: all 0.5s ease-in-out;
}
