.room-section {
  background: deepskyblue;
  min-height: 400px;
}

.broadcaster {
  position: absolute;
  height: 100%;
  margin: 0 auto;
}

.coordinator {
  position: absolute;
  height: 100%;
  width: 35%;
  left: 0;
}

.video-container {
  display: block;
  position: absolute;
  top: 50px;
  left: 0;
  margin: 0 auto;
  width: 35%;
  height: auto;
}

.media-elements {
  display: flex;
  flex-wrap: wrap;
  height: 400px;
  align-content: space-between;
}

.v {
  position: absolute;
  background-color: green;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.urlBox {
  text-align: center;
  display: none;
  background: #F1EDED;
  margin: 15px -10px;
  border: 1px solid rgb(189, 189, 189);
  border-left: 0;
  border-right: 0;
}

.make-fill {
  width: 100%;
  height:100%;
}

.blue-button {
  color: #ffffff;
  font-size: 120%;
  font-family: stormfaze;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .75rem;
  display: block;
  width: 100%;
  background-color: rgba(19, 102, 180, 0.945);
  border: none;
  cursor: pointer;
}

.blue-button:hover {
 background-color: rgba(237, 17, 17, 1);
}

#room-id{

}

.blue-label {
  color: #01222a;
  font-size: 100%;
  font-family: stormfaze;
  text-transform: none;
  width: 89.2%;
  letter-spacing: 1px;
  padding: 0.75rem;
  border-radius: 0.2rem;
  display: block;
  background-color: rgb(180 229 255 / 95%);
  border: 1px solid;
  margin: 0px 10px 15px 8px;
  height: 8px;
}

.blue-label:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.leftOrder {
  text-align: left;
  color: #5c8494;
  padding-left: 10px;
}

.title {
  color: #ffffff;
  font-size: 100%;
  font-family: stormfaze;
  text-transform: none;
  letter-spacing: 1px;
  padding: .75rem;
  border-radius: 0.2rem;
  display: block;
  background-color: rgba(19, 102, 180, 0.945);
  border: none;
  cursor: default;
  margin: 10px 10px 26px 10px;
}

.broadcastLabel {
  color: white;
  font-size: small;
  width: 50%;
  padding: 0.5rem 1rem;
  border: 2px solid black;
  outline: none;
  margin: 2px 2px;
  border-radius: 0.2rem;
  background-color: rgb(12 31 43 / 95%);
  letter-spacing: 1px;
  border: 2px solid white;
}

.broadcastLabel:disabled {
  background-color: #444444;
  color: rgba(3, 3, 3, 1);
  border: 2px solid gray;
}

.broadcastLabel:hover {
  /** background-color: rgba(70, 182, 242, 0.9); */
  color: rgba(99, 203, 255, 0.9);
  border: 2px solid white;
}

.broadcastLabel:hover:disabled {
  background-color: rgba(104, 104, 104, 0.9);
  color: rgba(206, 206, 206, 0.9);
}

.red-link {
  display: block;
  text-align: center;
  color:white;
  background-color: rgba(237, 17, 17, 0.75);
  font-size: 16px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.popup-right-box {
  position: absolute;
  margin: 0;
  left : 80%;
  top: 0;
  width: 23vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 -20px 150px -20px rgba(8, 81, 163, 0.5);
  z-index: 200;
}

.chat-input {
  position:absolute;
  bottom:0;
  left:0;
  z-index: 100;
}

.share-btn {
  position:absolute;
  bottom:8%;
  left:9px;
  width:48%;
  z-index: 100;
  /* background: url("../imgs/share-files.png"); */
  background-repeat: no-repeat;
}

.share-btn:hover {
  background-color: #444444;
}

.leave-btn {
  position:absolute;
  bottom:8%;
  left:50%;
  width:48%;
  z-index: 100;
}

button {
  font-family: stormfaze;
}

label {
  color:white;
}



.network-panel-hide-animation {
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: rightmove;
  -webkit-animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: rightmove;
  animation-duration: 1.2s;
}

.network-panel-show-animation {
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: leftmove;
  -webkit-animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: leftmove;
  animation-duration: 1.2s;
}

.network-panel-hide-ver-animation {
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: goBottom;
  -webkit-animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: goBottom;
  animation-duration: 1.2s;
}

.network-panel-show-ver-animation {
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: goUp;
  -webkit-animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: goUp;
  animation-duration: 1.2s;
}