.popup-calling {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
}

.popup-calling-box {
    position: fixed;
    top: 40%;
    left: 50%;
    width: 300px;
    min-height: 150px;
    margin: -75px 0 0 -150px;
    z-index: 500;
    background: #666;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    border: 2px solid #fff;
    color: #fff;
}

.calling-lbl-name {
    margin: 0 auto;
    margin-top: 20px;
    display: block;
}

.calling-lbl-status {
    margin: 0 auto;
    margin-top: 20px;
    display: block;
}

.calling-lbl-device-status {
    margin: 0 auto;
    margin-top: 20px;
    display: block;
}

.icon-cancel-call {
    margin: 0 auto;
    position: relative;
    bottom: 20px;
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 110px;
    cursor: pointer;
}

.scaled {
    transform: scale(0.2); /* Equal to scaleX(0.7) scaleY(0.7) */
    top: unset !important;
    bottom: 10px !important;
    left: 10px !important;
    transform-origin: left bottom;
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.scale-to-origin{
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    transform: scale(1.0);
    transform-origin: left bottom;
}

#video_container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #03aeef;
}

#video_container #top_bar {
    width: 100%;
    background: #ccc;
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
}

#video_container #top_bar a{
    cursor: pointer;
}

#video_container #video_iframe {
	width: 100%; 
    height: 100%;
}
/*	视频左右大小  */
/* #video_container .video-iframe{
	width: 70%;
    height: 100%;
}
#video_container .questionnaire-iframe{
	width: 30%;
    height: 100%;
} */

#video_container_mask{
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
}