
body {
    font-family: 'Poppins', sans-serif !important;
    /* background: #000 url('../images/back.png') repeat center;
     background-size: cover;  */
     background-color: #000;
     background-image: url('../images/back.png');
   background-size: 100%; /* or cover */

  background-repeat: no-repeat;   /* prevents tiling */
}

#video_container{
    display: none;
}

#video_info {
    color: white !important;
    position: absolute;
    top:30%;
    left: 50%;
    text-align:center;
    font-size: 27px !important;
    font-family: inherit !important;
    line-height: 1.4 !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
       
    /* background: #000 url('../images/back.png') no-repeat center center;
    background-size: 100% 100%; */
 
}
#video-player{
    position: absolute;
    top: 0;
    left: 0; 
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
    text-align: center;
}

#remoteVideo{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100% !important;
    width: 100% !important; 
    display: none; 
}

#networkWarning {
    color: #856404;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    padding: 1em;
    margin: 1em;
    background-color: #fff3cd;
    border-color: #ffeeba;
    border-radius: .25em;
    display: none;
}
#unmuteButton {
    /* display: none; */
    position: fixed;
    bottom: 0px;
    left: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    /* background-color: red;
    color: white; */
    width: 89px;
    height: 40px;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}
._unmute {
     background: url('../images/speaker.png') no-repeat center top;
}
._mute {
     background: url('../images/speaker.png') no-repeat center bottom;
}
#unmuteButton:hover {
   /* background-color: #555; */
}

#video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
    /*
    bottom: 50%;
    right: 50%;

    */
    display: none; 
    z-index: 9999999;
    text-align: center;
}
#video-overlay img{
    width: 25%;
}