
html {
    overflow: hidden;
    height: 100%;
}

.one video {
    object-fit: contain;
}

.localVideo {
    width: 30%;
    position: absolute;
    cursor: move;
    z-index: 10;
    bottom: 10px;
    right: 10px;
    display: block;
    border-radius: 5px;

    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);

    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.remoteVideos {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    text-align: center;
}

.remoteVideos video {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0px;
    min-height: 0px;
    height: 100%;
    width: 100%;
}

body {
    background-color: #000000;
    background-image: url("/img/waiting.gif");
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


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

#icons {
    bottom: 10px;
    left: 20px;
    position: absolute;
}

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;
}

#switch-video {
    transition: 200ms;
}

#switch-video:hover {
    background: #407cf7;
}

#switch-video:hover circle {
    fill: #407cf7;
}

#fullscreen {
    transition: 280ms;
}

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

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

#hangup {
    transition: 360ms;
}

#hangup:hover {
    background: #dd2c00;
}

#hangup:hover circle {
    fill: #dd2c00;
}

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