
.stream-wraper {
    height: calc(100vh - 90px - 1.5rem);
}
.mediaWraper {
    cursor: pointer;
    position: relative;
}

.mediadiv {
    height: 100%;
    width: 100%;
}

.mediadiv {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121519;
    border-radius: 20px;
}

.mediadiv video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.participant-media-item video {
    border-radius: 20px;
}

.mediaWraper .user-name {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    z-index: 9;
    padding: 2px 10px;
    margin-top: 0px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mediaWraper .meet-mic-status {
    position: absolute;
    top: 11px;
    left: 16px;
    z-index: 9;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #323348;
    display: flex;
    justify-content: center;
    align-items: center;
}

.participant-media-item .meet-mic-status {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #323348;
}

.participant-media-item .meet-mic-status svg {
    width: 80%;
    height: 80%;
}