#divvcpanel {
    position: absolute;
    width: 80%;
    text-align: center;
    right: 0;
    bottom: 220px;
    max-height: 370px;
    height: 370px;
    z-index: 2000;
    background-color: black;
    overflow-x: hidden;
    overflow-y: hidden;
    visibility: hidden;
    left: 10%;
}

#divVideos {
    text-align: center;
    width: 100%;
    height: 378px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: green;
}

#divLargeVideo {
    width: 100%;
    height: 100%;
    background:black;
    display: block;
    z-index: 3000;
}

#divSmallVideo {
    position: absolute;
    background: blue;
    max-width: 15%;
    max-height: 15%;
    display: block;
    z-index: 3001;
    top: 10px;
    right: 10px;
    visibility: hidden;
}

#largeVideo {
    width: 100%;
    height: 100%;
    background: black;
    display: block;
}

#smallVideo {
    background: black;
    width: 100%;
    height: 100%;
    display: block;
}

#divButtons {
    position: absolute;
    bottom: 0px;
    left: 0px;
    text-align: center;
    width: 95%;
    height: 15px;
    background-color: black;
    z-index: 3001;
}
    #divMuteSpeaker{
        position: absolute;
        top: 2px;
        left: 5px;
        width: 8px;
        height: 8px;
        background-color: red;
        border-radius: 50%;
        visibility: hidden;
    }
    #divMuteVideo{
        position: absolute;
        top: 2px;
        left: 55px;
        width: 8px;
        height: 8px;
        background-color: yellowgreen;
        border-radius: 5%;
        visibility: hidden;
    }
    #divMuteMic{
        position: absolute;
        top: 2px;
        left: 105px;
        background-color: black;
        visibility: hidden;
        
        width: 0; 
        height: 0; 
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid red;
    }
#divVideoResolutions{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color:black;
    display: none;
    z-index: 3001;
}
    #divResolutionLow{
        width: 100%;
        height: 50%;
        background-color: lightgray;
    }
    #divResolutionHigh{
        width: 100%;
        height: 50%;
        background-color: slategray;
    }

#divVideoResolutionsBtn{
    position: absolute;
    float: right;
    bottom: 0px;
    right: 0px;
    width: 5%;
    height: 15px;
    background-color: gray;
    z-index: 3001;
}
