body {
    background-color: #333;
    color: #fff;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#body {
    background-color: #333;
    color: #fff;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#footer {
    position:absolute;
    margin: auto auto 0 auto;
    width: 100%;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 8px;
    font-style: normal;
    text-align: center;
    bottom: 0;
    opacity: 0.2;
    z-index: 1000;
}

#logo {
    display: inline-block;
    vertical-align: middle;
    max-height: 66%;
    max-width: 66%;
    z-index: 10;
}

#logo_span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

#logo_div {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

#remoteVideo {
    display: block;
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    transition: opacity 1s;
    z-index: 100;
}

#localVideo {
    display: block;
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    transition: opacity 1s;
    z-index: 100;
}

.inverted {
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.managerVideo {
    display: block;
    float: left;
    height: 99%;
    width: 99%;
    max-height: 99%;
    max-width: 99%;
    object-fit: cover;
    border-color: #444;
    border-width: 2px;
    border-style: solid;
    border-radius: 1px;
    transition: opacity 1s;
}

.live {
    border-color: red;
    border-width: 2px;
    border-style: solid;
}

.tolive {
    border-color: green;
    border-width: 2px;
    border-style: solid;
}

/*////// icons CSS start ////////////////////////*/

#icons {
  bottom: 77px;
  left: 6vw;
  position: absolute;
  z-index: 1000;
}

circle {
  fill: #666;
  fill-opacity: 0.6;
}

svg.on circle {
  fill-opacity: 0;
}

/* on icons are hidden by default */
path.on {
  display: none;
}

/* off icons are displayed by default */
path.off {
  display: block;
}

/* on icons are displayed when parent svg has class 'on' */
svg.on path.on {
  display: block;
}

/* off icons are hidden when parent svg has class 'on' */
svg.on path.off {
  display: none;
}

svg {
  border-radius: 48px;
  box-shadow: 2px 2px 24px #444;
  display: block;
  margin: 0 0 3vh 0;
  transform: translateX(calc(-6vw - 96px));
  transition: all .1s;
  transition-timing-function: ease-in-out;
}

svg:hover {
  box-shadow: 4px 4px 48px #666;
}

#icons.active svg {
  transform: translateX(0);
}

#mute_audio {
  transition: 40ms;
}

#mute_audio:hover,
#mute_audio.on {
  background: #407cf7;
}

#mute_audio:hover circle {
  fill: #407cf7;
}

#mute_video {
  transition: 120ms;
}

#mute_video:hover,
#mute_video.on {
  background: #407cf7;
}

#mute_video:hover circle {
  fill: #407cf7;
}

/*////// icons CSS end /////////////////////////*/
