/* Screen pour whiteboard / lexique dictionnaire */
.split_screen_info {
    flex: 0.5;
    background: #d2d4d5;
    border-radius: 10px;
    margin-bottom: 10px;
    display: none;
    overflow-y: scroll;
}
.Scenary {
    position: absolute;
    top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Container of Screen and Dish */
.Conference {
    display: flex;
    flex: 1;
    border-radius: 10px;
    max-height: 100%;
    max-width: 100%;
}

/* Container of Cameras */
.Dish {
    /* overflow: scroll; */
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    flex: 1;
    background: #ffffff;
}

/* Camera */
.Dish>div {
    position: relative;
    vertical-align: middle;
    align-self: center;
    border-radius: 25%;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0px 4px 6px -6px #000000;
    background: #343a4038;
}

.selected_user_videosdk_active{
    box-shadow:#00e1ce 0px 0px 6px 0px!important;
    min-width:265px;
    min-height:200px;
}

/* Video (check the nice property object-fit) */
.Dish>div video {
    cursor: pointer;
    position: absolute;
    right: 0;
    object-fit: cover;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background: #000; */
    border-radius: 25%;
    overflow: hidden;
    left: 0;
    top: 0;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: margin-top 1s ease-in-out;
    -moz-transition: margin-top 1s ease-in-out;
    -o-transition: margin-top 1s ease-in-out;
    transition: margin-top 1s ease-in-out;
}