body,html{
    background-color:#36393E;
    height:100%;
    min-height:100%;
    margin:0;
    padding:0
}
.container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    padding:8px;
    height:100%;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
@media screen and (orientation:landscape) and (min-width: 600px){
    #video,.chat,.video{
        height:100%
    }
    .video{
        -webkit-box-flex:3;
            -ms-flex:3;
                flex:3;
        margin-right:10px
    }
    .chat{
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
        min-width: 200px;
        max-width: 300px;
    }
}
@media screen and (orientation:portrait), screen and (max-width: 600px) {
    .container{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
    }
    .video{
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }
    .chat{
        overflow: auto;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        width:100%;
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
        -webkit-flex:1;
        margin-top:5px;
 
    }
    #mlg_player{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
 
.info{
    margin: 0px 8px 4px 8px;
    background-color: #fff;
    padding: 3px 6px 3px 12px;
    border-radius: 12px;
    opacity: 0.8;
}
